12345678910111213141516171819202122232425262728 |
- 'use strict';
- /**
- * Licensed Materials - Property of IBM
- * IBM Cognos Products: BI Cloud (C) Copyright IBM Corp. 2018
- * US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
- */
- // Used to generate the requirejs layers bundle
- // Only declare the entry points, not all modules!
- define([
- // services
- './dataSources/services/DatasetExecutionService', './dataSources/services/DataSourcesService', './filters/pagecontext/PageContextService', './drill-through/models/DrillThroughService', './drill-through/models/DrillThroughModel', './dataSources/models/synchronizeData/SynchronizeService',
- // navbar contributions
- './dataSources/glassControllers/SourceActionHandler', './dataSources/glassControllers/AddSourceActionHandler', './visualizations/LiveVisualizationActionHandler',
- // filter dock contributions
- './filters/dock/FilterContainerView', './filters/dock/FilterContainerCollapseView',
- // datasource panel contributions
- './dataSources/views/DataSourcePanel', './dataSources/views/DataSourceList',
- // colorSet extension
- './util/AnalyticsColorSet'], function () {
- 'use strict';
- });
- //# sourceMappingURL=layers.js.map
|