dashboard-extensions.bridge.js 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  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/badges', ['explore/bundles/dashboard-extensions.min'], function (entry) {
  17. return entry.BadgesFeature;
  18. });
  19. define('explore/chartInsights', ['explore/bundles/dashboard-extensions.min'], function (entry) {
  20. return entry.ChartInsights;
  21. });
  22. define('explore/crosshairs', ['explore/bundles/dashboard-extensions.min'], function (entry) {
  23. return entry.CrosshairsFeature;
  24. });
  25. define('explore/summarizer', ['explore/bundles/dashboard-extensions.min'], function (entry) {
  26. return entry.SummarizerFeature;
  27. });
  28. define('explore/image-capture', ['explore/bundles/dashboard-extensions.min'], function (entry) {
  29. return entry.ImageCaptureFeature;
  30. });
  31. define('explore/visTitleFetcher', ['explore/bundles/dashboard-extensions.min'], function (entry) {
  32. return entry.VisTitleFetcherFeature;
  33. });
  34. define('explore/visProperties', ['explore/bundles/dashboard-extensions.min'], function (entry) {
  35. return entry.ExploreLayoutPropertiesProvider;
  36. });
  37. define('explore/showByAction', ['explore/bundles/dashboard-extensions.min'], function (entry) {
  38. return entry.ShowByAction;
  39. });
  40. define('explore/showByView', ['explore/bundles/dashboard-extensions.min'], function (entry) {
  41. return entry.ShowByView;
  42. });
  43. define('explore/bundles/dashboard-extensions.bridge', function () {});
  44. //# sourceMappingURL=dashboard-extensions.bridge.js.map