DeprecatedInlineFeatures.js 1.2 KB

123456789101112131415161718192021222324252627282930
  1. 'use strict';
  2. /**
  3. * Licensed Materials - Property of IBM
  4. * IBM Cognos Products: BI Cloud (C) Copyright IBM Corp. 2018, 2020
  5. * US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
  6. *
  7. */
  8. define([], function () {
  9. // Temporary array of dashboard feature specs. This can be used to quickly test a dashboard feature without adding to the perspective collection
  10. // Example:
  11. // {
  12. // "containerId": "com.ibm.bi.dashboard.core-features",
  13. // "name": "myFeature",
  14. // "id": "com.ibm.bi.dashboard.core-features.myFeature",
  15. // "class": "dashboard-core/features/dashboard/actions/content/deleteAction/api/impl/DeleteAction"
  16. // }
  17. return [{
  18. 'containerId': 'com.ibm.bi.dashboard.core-features',
  19. 'name': 'segment',
  20. 'id': 'com.ibm.bi.dashboard.core-features.segment',
  21. 'class': 'dashboard-core/js/features/dashboard/segment/SegmentFeature'
  22. }, {
  23. 'containerId': 'com.ibm.bi.dashboard.core-features',
  24. 'name': 'CoachMark',
  25. 'id': 'com.ibm.bi.dashboard.core-features.coachMark',
  26. 'class': 'dashboard-core/js/features/dashboard/coachMark/api/impl/CoachMark'
  27. }];
  28. });
  29. //# sourceMappingURL=DeprecatedInlineFeatures.js.map