component.bridge.js 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. 'use strict';
  2. /*
  3. *+------------------------------------------------------------------------+
  4. *| Licensed Materials - Property of IBM
  5. *| IBM Cognos Products: Explore
  6. *| (C) Copyright IBM Corp. 2018
  7. *|
  8. *| US Government Users Restricted Rights - Use, duplication or disclosure
  9. *| restricted by GSA ADP Schedule Contract with IBM Corp.
  10. *+------------------------------------------------------------------------+
  11. */
  12. /**
  13. * WARNING: The files in the src/js/bridges directory are bundle dropins.
  14. * Please exercise extra caution while modifying paths.
  15. */
  16. define('explore/view', ['explore/bundles/component.min'], function (entry) {
  17. return entry.default;
  18. });
  19. define('explore/layout/ExploreContainer', ['explore/bundles/component.min'], function (entry) {
  20. return entry.ExploreContainer;
  21. });
  22. define('explore/layout/base', ['explore/bundles/component.min'], function (entry) {
  23. return entry.LayoutBase;
  24. });
  25. define('explore/layout/ExploreContainerAuthoring', ['explore/bundles/component.min'], function (entry) {
  26. return entry.ExploreContainerAuthoring;
  27. });
  28. define('explore/layout/ExploreCardAuthoring', ['explore/bundles/component.min'], function (entry) {
  29. return entry.ExploreCardAuthoring;
  30. });
  31. define('explore/layout/ExploreCard', ['explore/bundles/component.min'], function (entry) {
  32. return entry.ExploreCard;
  33. });
  34. define('explore/layout/ExploreWidget', ['explore/bundles/component.min'], function (entry) {
  35. return entry.ExploreWidget;
  36. });
  37. define('explore/layout/VisPlaceholder', ['explore/bundles/component.min'], function (entry) {
  38. return entry.VisPlaceholder;
  39. });
  40. define('explore/layout/container/authoring', ['explore/bundles/component.min'], function (entry) {
  41. return entry.AuthoringExploreContainer;
  42. });
  43. define('explore/interactions/selection', ['explore/bundles/component.min'], function (entry) {
  44. return entry.Selection;
  45. });
  46. define('explore/interactions/deselection', ['explore/bundles/component.min'], function (entry) {
  47. return entry.Deselection;
  48. });
  49. define('explore/links', ['explore/bundles/component.min'], function (entry) {
  50. return entry.Links;
  51. });
  52. define('explore/bundles/component.bridge', function () {});
  53. //# sourceMappingURL=component.bridge.js.map