InlineFeatures.js 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  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. 'use strict';
  10. // Temporary array of live widget feature specs. This can be used to quickly test a live widget feature without adding to the perspective collection
  11. // Example:
  12. // {
  13. // "containerId": "com.ibm.bi.dashboard.live-features",
  14. // "name": "summaryFeature",
  15. // "id": "com.ibm.bi.dashboard.live-features.summaryFeature",
  16. // "class": "dashboard-analytics/widgets/livewidget/features/summary/SummaryFeature"
  17. // }
  18. return [{
  19. 'containerId': 'com.ibm.bi.dashboard.content-features',
  20. 'name': 'Renderer',
  21. 'id': 'com.ibm.bi.dashboard.content-features.renderer',
  22. 'class': 'dashboard-core/js/view/features/content/contentView/api/impl/ContentView',
  23. 'dependencies': ['Dashboard.API']
  24. }, {
  25. 'containerId': 'com.ibm.bi.dashboard.content-features',
  26. 'name': 'Properties',
  27. 'id': 'com.ibm.bi.dashboard.content-features.properties',
  28. 'class': 'dashboard-core/js/features/common/properties/api/impl/Properties',
  29. 'dependencies': ['Dashboard.API']
  30. }, {
  31. 'containerId': 'com.ibm.bi.dashboard.content-features',
  32. 'name': 'AlignPropertiesProvider',
  33. 'id': 'com.ibm.bi.dashboard.content-features.alignPropertiesProvider',
  34. 'class': 'dashboard-core/js/features/content/alignProperties/AlignPropertiesProvider',
  35. 'types': ['widget', 'group'],
  36. 'dependencies': ['Properties', 'Dashboard.Icons']
  37. }, {
  38. 'containerId': 'com.ibm.bi.dashboard.content-features',
  39. 'name': 'PagePropertiesProvider',
  40. 'id': 'com.ibm.bi.dashboard.content-features.pageProperties',
  41. 'class': 'dashboard-core/js/features/content/pageProperties/PagePropertiesProvider',
  42. 'types': ['page'],
  43. 'dependencies': ['Properties', 'Dashboard.Icons']
  44. }, {
  45. 'containerId': 'com.ibm.bi.dashboard.content-features',
  46. 'name': 'ContentMenu',
  47. 'id': 'com.ibm.bi.dashboard.content-features.ContentMenu',
  48. 'class': 'dashboard-core/js/features/dashboard/contentMenu/ContentMenu',
  49. 'types': ['widget']
  50. }, {
  51. 'containerId': 'com.ibm.bi.dashboard.content-features',
  52. 'name': 'ContentFilterPropertiesProvider',
  53. 'id': 'com.ibm.bi.dashboard.content-features.contentFilterPropertiesProvider',
  54. 'class': 'dashboard-core/js/features/content/contentFilter/ContentFilterPropertiesProvider',
  55. 'dependencies': ['ContentFilter']
  56. }];
  57. });
  58. //# sourceMappingURL=InlineFeatures.js.map