layers.js 1.2 KB

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