1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- 'use strict';
- /*
- *+------------------------------------------------------------------------+
- *| Licensed Materials - Property of IBM
- *| IBM Cognos Products: Explore
- *| (C) Copyright IBM Corp. 2018
- *|
- *| US Government Users Restricted Rights - Use, duplication or disclosure
- *| restricted by GSA ADP Schedule Contract with IBM Corp.
- *+------------------------------------------------------------------------+
- */
- /**
- * WARNING: The files in the src/js/bridges directory are bundle dropins.
- * Please exercise extra caution while modifying paths.
- */
- define('explore/badges', ['explore/bundles/dashboard-extensions.min'], function (entry) {
- return entry.BadgesFeature;
- });
- define('explore/chartInsights', ['explore/bundles/dashboard-extensions.min'], function (entry) {
- return entry.ChartInsights;
- });
- define('explore/crosshairs', ['explore/bundles/dashboard-extensions.min'], function (entry) {
- return entry.CrosshairsFeature;
- });
- define('explore/summarizer', ['explore/bundles/dashboard-extensions.min'], function (entry) {
- return entry.SummarizerFeature;
- });
- define('explore/image-capture', ['explore/bundles/dashboard-extensions.min'], function (entry) {
- return entry.ImageCaptureFeature;
- });
- define('explore/visTitleFetcher', ['explore/bundles/dashboard-extensions.min'], function (entry) {
- return entry.VisTitleFetcherFeature;
- });
- define('explore/visProperties', ['explore/bundles/dashboard-extensions.min'], function (entry) {
- return entry.ExploreLayoutPropertiesProvider;
- });
- define('explore/showByAction', ['explore/bundles/dashboard-extensions.min'], function (entry) {
- return entry.ShowByAction;
- });
- define('explore/showByView', ['explore/bundles/dashboard-extensions.min'], function (entry) {
- return entry.ShowByView;
- });
- define('explore/bundles/dashboard-extensions.bridge', function () {});
- //# sourceMappingURL=dashboard-extensions.bridge.js.map
|