@c8y/ngx-components 1023.63.1 → 1023.64.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (54) hide show
  1. package/datapoints-export-selector/index.d.ts +213 -48
  2. package/datapoints-export-selector/index.d.ts.map +1 -1
  3. package/echart/index.d.ts +1 -0
  4. package/echart/index.d.ts.map +1 -1
  5. package/fesm2022/c8y-ngx-components-datapoints-export-selector.mjs +568 -138
  6. package/fesm2022/c8y-ngx-components-datapoints-export-selector.mjs.map +1 -1
  7. package/fesm2022/c8y-ngx-components-echart.mjs +6 -3
  8. package/fesm2022/c8y-ngx-components-echart.mjs.map +1 -1
  9. package/fesm2022/c8y-ngx-components-global-context.mjs +36 -1
  10. package/fesm2022/c8y-ngx-components-global-context.mjs.map +1 -1
  11. package/fesm2022/c8y-ngx-components-widgets-definitions-datapoints-list.mjs +80 -0
  12. package/fesm2022/c8y-ngx-components-widgets-definitions-datapoints-list.mjs.map +1 -0
  13. package/fesm2022/c8y-ngx-components-widgets-definitions.mjs +1 -0
  14. package/fesm2022/c8y-ngx-components-widgets-definitions.mjs.map +1 -1
  15. package/fesm2022/c8y-ngx-components-widgets-exports.mjs +8 -1
  16. package/fesm2022/c8y-ngx-components-widgets-exports.mjs.map +1 -1
  17. package/fesm2022/c8y-ngx-components-widgets-implementations-datapoints-list.mjs +702 -0
  18. package/fesm2022/c8y-ngx-components-widgets-implementations-datapoints-list.mjs.map +1 -0
  19. package/fesm2022/c8y-ngx-components-widgets-implementations-datapoints-table.mjs +3 -110
  20. package/fesm2022/c8y-ngx-components-widgets-implementations-datapoints-table.mjs.map +1 -1
  21. package/fesm2022/c8y-ngx-components.mjs +116 -6
  22. package/fesm2022/c8y-ngx-components.mjs.map +1 -1
  23. package/global-context/index.d.ts +2 -0
  24. package/global-context/index.d.ts.map +1 -1
  25. package/index.d.ts +59 -2
  26. package/index.d.ts.map +1 -1
  27. package/locales/de.po +94 -23
  28. package/locales/es.po +96 -23
  29. package/locales/fr.po +95 -23
  30. package/locales/ja_JP.po +82 -23
  31. package/locales/ko.po +97 -23
  32. package/locales/locales.pot +62 -11
  33. package/locales/nl.po +94 -23
  34. package/locales/pl.po +98 -23
  35. package/locales/pt_BR.po +97 -23
  36. package/locales/zh_CN.po +98 -23
  37. package/locales/zh_TW.po +98 -23
  38. package/package.json +1 -1
  39. package/widgets/cockpit-exports/index.d.ts +6 -0
  40. package/widgets/cockpit-exports/index.d.ts.map +1 -1
  41. package/widgets/definitions/datapoints-list/index.d.ts +51 -0
  42. package/widgets/definitions/datapoints-list/index.d.ts.map +1 -0
  43. package/widgets/definitions/index.d.ts +1 -0
  44. package/widgets/definitions/index.d.ts.map +1 -1
  45. package/widgets/device-management-exports/index.d.ts +6 -0
  46. package/widgets/device-management-exports/index.d.ts.map +1 -1
  47. package/widgets/exports/index.d.ts +8 -1
  48. package/widgets/exports/index.d.ts.map +1 -1
  49. package/widgets/implementations/alarms/index.d.ts +2 -0
  50. package/widgets/implementations/alarms/index.d.ts.map +1 -1
  51. package/widgets/implementations/datapoints-list/index.d.ts +286 -0
  52. package/widgets/implementations/datapoints-list/index.d.ts.map +1 -0
  53. package/widgets/implementations/datapoints-table/index.d.ts +5 -66
  54. package/widgets/implementations/datapoints-table/index.d.ts.map +1 -1
@@ -0,0 +1,80 @@
1
+ import { DynamicComponentErrorStrategy, DynamicDatapointsResolver, hookWidget } from '@c8y/ngx-components';
2
+ import { hookWidgetConfig } from '@c8y/ngx-components/context-dashboard';
3
+ import { gettext } from '@c8y/ngx-components/gettext';
4
+ import { PRESET_NAME } from '@c8y/ngx-components/global-context';
5
+ import { defaultWidgetIds } from '@c8y/ngx-components/widgets/definitions';
6
+ import { importConfigWithTargets, exportConfigWithTargets } from '@c8y/ngx-components/widgets/import-export-config';
7
+
8
+ const dataPointsListWidgetDefinition = {
9
+ id: defaultWidgetIds.DATA_POINTS_LIST,
10
+ label: gettext('Data points list'),
11
+ description: gettext('A list displaying current values for selected measurements'),
12
+ loadComponent: () => import('@c8y/ngx-components/widgets/implementations/datapoints-list').then(m => m.DatapointsListViewComponent),
13
+ loadConfigComponent: () => import('@c8y/ngx-components/widgets/implementations/datapoints-list').then(m => m.DatapointsListConfigComponent),
14
+ previewImage: 'c8y-style-assets/data-points-list-widget.png',
15
+ resolve: {
16
+ datapoints: DynamicDatapointsResolver
17
+ },
18
+ errorStrategy: DynamicComponentErrorStrategy.OVERLAY_ERROR,
19
+ data: {
20
+ schema: () => import('c8y-schema-loader?interfaceName=DatapointsListConfig!@c8y/ngx-components/widgets/implementations/datapoints-list'),
21
+ export: exportConfigWithTargets,
22
+ import: importConfigWithTargets,
23
+ controls: PRESET_NAME.DATA_POINTS_LIST_CONFIG,
24
+ settings: {
25
+ noNewWidgets: false,
26
+ widgetDefaults: {
27
+ _width: 8,
28
+ _height: 4
29
+ },
30
+ ng1: {
31
+ options: {
32
+ noDeviceTarget: true,
33
+ minCol: 6
34
+ }
35
+ }
36
+ },
37
+ displaySettings: {
38
+ globalAutoRefreshContext: true,
39
+ globalTimeContext: true,
40
+ globalRealtimeContext: false,
41
+ globalAggregationContext: true
42
+ }
43
+ }
44
+ };
45
+ const DATAPOINT_SELECT_DEFAULT_OPTIONS = {
46
+ showTarget: true,
47
+ showRange: true,
48
+ showRedRange: true,
49
+ showYellowRange: true
50
+ };
51
+ const dataPointsListWidgetProviders = [
52
+ hookWidget(dataPointsListWidgetDefinition),
53
+ hookWidgetConfig({
54
+ widgetId: defaultWidgetIds.DATA_POINTS_LIST,
55
+ priority: 10,
56
+ label: gettext('Time context'),
57
+ initialState: {
58
+ controls: PRESET_NAME.DATA_POINTS_LIST_CONFIG
59
+ },
60
+ loadComponent: () => import('@c8y/ngx-components/context-dashboard').then(m => m.GlobalContextSectionComponent)
61
+ }),
62
+ hookWidgetConfig({
63
+ widgetId: defaultWidgetIds.DATA_POINTS_LIST,
64
+ label: gettext('Data point selection'),
65
+ loadComponent: () => import('@c8y/ngx-components/datapoint-selector').then(m => m.WidgetDatapointsSelectorComponent),
66
+ initialState: {
67
+ minActiveCount: 1,
68
+ defaultFormOptions: DATAPOINT_SELECT_DEFAULT_OPTIONS
69
+ },
70
+ expanded: true,
71
+ priority: 20
72
+ })
73
+ ];
74
+
75
+ /**
76
+ * Generated bundle index. Do not edit.
77
+ */
78
+
79
+ export { dataPointsListWidgetDefinition, dataPointsListWidgetProviders };
80
+ //# sourceMappingURL=c8y-ngx-components-widgets-definitions-datapoints-list.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"c8y-ngx-components-widgets-definitions-datapoints-list.mjs","sources":["../../widgets/definitions/datapoints-list/index.ts","../../widgets/definitions/datapoints-list/c8y-ngx-components-widgets-definitions-datapoints-list.ts"],"sourcesContent":["import {\n DynamicComponentErrorStrategy,\n DynamicDatapointsResolver,\n DynamicWidgetDefinition,\n hookWidget\n} from '@c8y/ngx-components';\nimport {\n GlobalContextSectionComponent,\n hookWidgetConfig\n} from '@c8y/ngx-components/context-dashboard';\nimport { gettext } from '@c8y/ngx-components/gettext';\nimport { PRESET_NAME } from '@c8y/ngx-components/global-context';\nimport { defaultWidgetIds } from '@c8y/ngx-components/widgets/definitions';\nimport {\n exportConfigWithTargets,\n importConfigWithTargets\n} from '@c8y/ngx-components/widgets/import-export-config';\n\nexport const dataPointsListWidgetDefinition = {\n id: defaultWidgetIds.DATA_POINTS_LIST,\n label: gettext('Data points list'),\n description: gettext('A list displaying current values for selected measurements'),\n loadComponent: () =>\n import('@c8y/ngx-components/widgets/implementations/datapoints-list').then(\n m => m.DatapointsListViewComponent\n ),\n loadConfigComponent: () =>\n import('@c8y/ngx-components/widgets/implementations/datapoints-list').then(\n m => m.DatapointsListConfigComponent\n ),\n previewImage: 'c8y-style-assets/data-points-list-widget.png',\n resolve: {\n datapoints: DynamicDatapointsResolver\n },\n errorStrategy: DynamicComponentErrorStrategy.OVERLAY_ERROR,\n data: {\n schema: () =>\n import(\n 'c8y-schema-loader?interfaceName=DatapointsListConfig!@c8y/ngx-components/widgets/implementations/datapoints-list'\n ),\n export: exportConfigWithTargets,\n import: importConfigWithTargets,\n controls: PRESET_NAME.DATA_POINTS_LIST_CONFIG,\n settings: {\n noNewWidgets: false,\n widgetDefaults: {\n _width: 8,\n _height: 4\n },\n ng1: {\n options: {\n noDeviceTarget: true,\n minCol: 6\n }\n }\n },\n displaySettings: {\n globalAutoRefreshContext: true,\n globalTimeContext: true,\n globalRealtimeContext: false,\n globalAggregationContext: true\n }\n }\n} satisfies DynamicWidgetDefinition;\n\nconst DATAPOINT_SELECT_DEFAULT_OPTIONS: Partial<\n import('@c8y/ngx-components/datapoint-selector').DatapointAttributesFormConfig\n> = {\n showTarget: true,\n showRange: true,\n showRedRange: true,\n showYellowRange: true\n};\n\nexport const dataPointsListWidgetProviders = [\n hookWidget(dataPointsListWidgetDefinition),\n hookWidgetConfig<GlobalContextSectionComponent>({\n widgetId: defaultWidgetIds.DATA_POINTS_LIST,\n priority: 10,\n label: gettext('Time context'),\n initialState: {\n controls: PRESET_NAME.DATA_POINTS_LIST_CONFIG\n },\n loadComponent: () =>\n import('@c8y/ngx-components/context-dashboard').then(m => m.GlobalContextSectionComponent)\n }),\n hookWidgetConfig({\n widgetId: defaultWidgetIds.DATA_POINTS_LIST,\n label: gettext('Data point selection'),\n loadComponent: () =>\n import('@c8y/ngx-components/datapoint-selector').then(\n m => m.WidgetDatapointsSelectorComponent\n ),\n initialState: {\n minActiveCount: 1,\n defaultFormOptions: DATAPOINT_SELECT_DEFAULT_OPTIONS\n },\n expanded: true,\n priority: 20\n })\n];\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":[],"mappings":";;;;;;;AAkBO,MAAM,8BAA8B,GAAG;IAC5C,EAAE,EAAE,gBAAgB,CAAC,gBAAgB;AACrC,IAAA,KAAK,EAAE,OAAO,CAAC,kBAAkB,CAAC;AAClC,IAAA,WAAW,EAAE,OAAO,CAAC,4DAA4D,CAAC;AAClF,IAAA,aAAa,EAAE,MACb,OAAO,6DAA6D,CAAC,CAAC,IAAI,CACxE,CAAC,IAAI,CAAC,CAAC,2BAA2B,CACnC;AACH,IAAA,mBAAmB,EAAE,MACnB,OAAO,6DAA6D,CAAC,CAAC,IAAI,CACxE,CAAC,IAAI,CAAC,CAAC,6BAA6B,CACrC;AACH,IAAA,YAAY,EAAE,8CAA8C;AAC5D,IAAA,OAAO,EAAE;AACP,QAAA,UAAU,EAAE;AACb,KAAA;IACD,aAAa,EAAE,6BAA6B,CAAC,aAAa;AAC1D,IAAA,IAAI,EAAE;AACJ,QAAA,MAAM,EAAE,MACN,OACE,kHAAkH,CACnH;AACH,QAAA,MAAM,EAAE,uBAAuB;AAC/B,QAAA,MAAM,EAAE,uBAAuB;QAC/B,QAAQ,EAAE,WAAW,CAAC,uBAAuB;AAC7C,QAAA,QAAQ,EAAE;AACR,YAAA,YAAY,EAAE,KAAK;AACnB,YAAA,cAAc,EAAE;AACd,gBAAA,MAAM,EAAE,CAAC;AACT,gBAAA,OAAO,EAAE;AACV,aAAA;AACD,YAAA,GAAG,EAAE;AACH,gBAAA,OAAO,EAAE;AACP,oBAAA,cAAc,EAAE,IAAI;AACpB,oBAAA,MAAM,EAAE;AACT;AACF;AACF,SAAA;AACD,QAAA,eAAe,EAAE;AACf,YAAA,wBAAwB,EAAE,IAAI;AAC9B,YAAA,iBAAiB,EAAE,IAAI;AACvB,YAAA,qBAAqB,EAAE,KAAK;AAC5B,YAAA,wBAAwB,EAAE;AAC3B;AACF;;AAGH,MAAM,gCAAgC,GAElC;AACF,IAAA,UAAU,EAAE,IAAI;AAChB,IAAA,SAAS,EAAE,IAAI;AACf,IAAA,YAAY,EAAE,IAAI;AAClB,IAAA,eAAe,EAAE;CAClB;AAEM,MAAM,6BAA6B,GAAG;IAC3C,UAAU,CAAC,8BAA8B,CAAC;AAC1C,IAAA,gBAAgB,CAAgC;QAC9C,QAAQ,EAAE,gBAAgB,CAAC,gBAAgB;AAC3C,QAAA,QAAQ,EAAE,EAAE;AACZ,QAAA,KAAK,EAAE,OAAO,CAAC,cAAc,CAAC;AAC9B,QAAA,YAAY,EAAE;YACZ,QAAQ,EAAE,WAAW,CAAC;AACvB,SAAA;AACD,QAAA,aAAa,EAAE,MACb,OAAO,uCAAuC,CAAC,CAAC,IAAI,CAAC,CAAC,IAAI,CAAC,CAAC,6BAA6B;KAC5F,CAAC;AACF,IAAA,gBAAgB,CAAC;QACf,QAAQ,EAAE,gBAAgB,CAAC,gBAAgB;AAC3C,QAAA,KAAK,EAAE,OAAO,CAAC,sBAAsB,CAAC;AACtC,QAAA,aAAa,EAAE,MACb,OAAO,wCAAwC,CAAC,CAAC,IAAI,CACnD,CAAC,IAAI,CAAC,CAAC,iCAAiC,CACzC;AACH,QAAA,YAAY,EAAE;AACZ,YAAA,cAAc,EAAE,CAAC;AACjB,YAAA,kBAAkB,EAAE;AACrB,SAAA;AACD,QAAA,QAAQ,EAAE,IAAI;AACd,QAAA,QAAQ,EAAE;KACX;;;ACnGH;;AAEG;;;;"}
@@ -25,6 +25,7 @@ const defaultWidgetIds = {
25
25
  DATAPOINTS_GRAPH: 'Data points graph',
26
26
  QUICK_LINKS: 'Quick Links',
27
27
  EVENT_LIST: 'Event list',
28
+ DATA_POINTS_LIST: 'KPI List',
28
29
  PIE_CHART: 'KPI Pie Chart'
29
30
  };
30
31
 
@@ -1 +1 @@
1
- {"version":3,"file":"c8y-ngx-components-widgets-definitions.mjs","sources":["../../widgets/definitions/index.ts","../../widgets/definitions/c8y-ngx-components-widgets-definitions.ts"],"sourcesContent":["export const defaultWidgetIds = {\n APPLICATIONS: 'Applications',\n ASSET_NOTES: 'Asset Notes',\n ASSET_TABLE: 'Asset table',\n LEGACY_COCKPIT_WELCOME: 'Cockpit Welcome',\n COCKPIT_WELCOME: 'cockpit.welcome.widget',\n DATA_POINTS_TABLE: 'Data points table',\n DEVICE_MANAGEMENT_WELCOME: 'devicemanagement.welcome.widget',\n IMAGE: 'Image',\n KPI: 'kpi.widget',\n MARKDOWN: 'markdown',\n HELP_AND_SERVICE: 'HelpAndService',\n THREE_D_ROTATION: 'rotation3d',\n MAP: 'Map',\n DEVICE_CONTROL_MESSAGE_WIDGET: 'deviceControlMessageWidget',\n INFO_GAUGE: 'infoGauge',\n ALARM_LIST: 'Alarm list',\n ALL_CRITICAL_ALARMS: 'Asset Alarms',\n RECENT_ALARMS: 'Recent Alarms',\n LINEAR_GAUGE: 'KPI Linear Gauge',\n SILO: 'KPI Silo',\n HTML: 'Html widget',\n RADIAL_GAUGE: 'KPI Radial Gauge',\n DATAPOINTS_GRAPH_NEW: 'Data points graph 2',\n DATAPOINTS_GRAPH: 'Data points graph',\n QUICK_LINKS: 'Quick Links',\n EVENT_LIST: 'Event list',\n PIE_CHART: 'KPI Pie Chart'\n} as const;\n\nexport type DefaultWidgetIdKeys = keyof typeof defaultWidgetIds;\nexport type DefaultWidgetIdValues = (typeof defaultWidgetIds)[DefaultWidgetIdKeys];\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":[],"mappings":"AAAO,MAAM,gBAAgB,GAAG;AAC9B,IAAA,YAAY,EAAE,cAAc;AAC5B,IAAA,WAAW,EAAE,aAAa;AAC1B,IAAA,WAAW,EAAE,aAAa;AAC1B,IAAA,sBAAsB,EAAE,iBAAiB;AACzC,IAAA,eAAe,EAAE,wBAAwB;AACzC,IAAA,iBAAiB,EAAE,mBAAmB;AACtC,IAAA,yBAAyB,EAAE,iCAAiC;AAC5D,IAAA,KAAK,EAAE,OAAO;AACd,IAAA,GAAG,EAAE,YAAY;AACjB,IAAA,QAAQ,EAAE,UAAU;AACpB,IAAA,gBAAgB,EAAE,gBAAgB;AAClC,IAAA,gBAAgB,EAAE,YAAY;AAC9B,IAAA,GAAG,EAAE,KAAK;AACV,IAAA,6BAA6B,EAAE,4BAA4B;AAC3D,IAAA,UAAU,EAAE,WAAW;AACvB,IAAA,UAAU,EAAE,YAAY;AACxB,IAAA,mBAAmB,EAAE,cAAc;AACnC,IAAA,aAAa,EAAE,eAAe;AAC9B,IAAA,YAAY,EAAE,kBAAkB;AAChC,IAAA,IAAI,EAAE,UAAU;AAChB,IAAA,IAAI,EAAE,aAAa;AACnB,IAAA,YAAY,EAAE,kBAAkB;AAChC,IAAA,oBAAoB,EAAE,qBAAqB;AAC3C,IAAA,gBAAgB,EAAE,mBAAmB;AACrC,IAAA,WAAW,EAAE,aAAa;AAC1B,IAAA,UAAU,EAAE,YAAY;AACxB,IAAA,SAAS,EAAE;;;AC3Bb;;AAEG;;;;"}
1
+ {"version":3,"file":"c8y-ngx-components-widgets-definitions.mjs","sources":["../../widgets/definitions/index.ts","../../widgets/definitions/c8y-ngx-components-widgets-definitions.ts"],"sourcesContent":["export const defaultWidgetIds = {\n APPLICATIONS: 'Applications',\n ASSET_NOTES: 'Asset Notes',\n ASSET_TABLE: 'Asset table',\n LEGACY_COCKPIT_WELCOME: 'Cockpit Welcome',\n COCKPIT_WELCOME: 'cockpit.welcome.widget',\n DATA_POINTS_TABLE: 'Data points table',\n DEVICE_MANAGEMENT_WELCOME: 'devicemanagement.welcome.widget',\n IMAGE: 'Image',\n KPI: 'kpi.widget',\n MARKDOWN: 'markdown',\n HELP_AND_SERVICE: 'HelpAndService',\n THREE_D_ROTATION: 'rotation3d',\n MAP: 'Map',\n DEVICE_CONTROL_MESSAGE_WIDGET: 'deviceControlMessageWidget',\n INFO_GAUGE: 'infoGauge',\n ALARM_LIST: 'Alarm list',\n ALL_CRITICAL_ALARMS: 'Asset Alarms',\n RECENT_ALARMS: 'Recent Alarms',\n LINEAR_GAUGE: 'KPI Linear Gauge',\n SILO: 'KPI Silo',\n HTML: 'Html widget',\n RADIAL_GAUGE: 'KPI Radial Gauge',\n DATAPOINTS_GRAPH_NEW: 'Data points graph 2',\n DATAPOINTS_GRAPH: 'Data points graph',\n QUICK_LINKS: 'Quick Links',\n EVENT_LIST: 'Event list',\n DATA_POINTS_LIST: 'KPI List',\n PIE_CHART: 'KPI Pie Chart'\n} as const;\n\nexport type DefaultWidgetIdKeys = keyof typeof defaultWidgetIds;\nexport type DefaultWidgetIdValues = (typeof defaultWidgetIds)[DefaultWidgetIdKeys];\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":[],"mappings":"AAAO,MAAM,gBAAgB,GAAG;AAC9B,IAAA,YAAY,EAAE,cAAc;AAC5B,IAAA,WAAW,EAAE,aAAa;AAC1B,IAAA,WAAW,EAAE,aAAa;AAC1B,IAAA,sBAAsB,EAAE,iBAAiB;AACzC,IAAA,eAAe,EAAE,wBAAwB;AACzC,IAAA,iBAAiB,EAAE,mBAAmB;AACtC,IAAA,yBAAyB,EAAE,iCAAiC;AAC5D,IAAA,KAAK,EAAE,OAAO;AACd,IAAA,GAAG,EAAE,YAAY;AACjB,IAAA,QAAQ,EAAE,UAAU;AACpB,IAAA,gBAAgB,EAAE,gBAAgB;AAClC,IAAA,gBAAgB,EAAE,YAAY;AAC9B,IAAA,GAAG,EAAE,KAAK;AACV,IAAA,6BAA6B,EAAE,4BAA4B;AAC3D,IAAA,UAAU,EAAE,WAAW;AACvB,IAAA,UAAU,EAAE,YAAY;AACxB,IAAA,mBAAmB,EAAE,cAAc;AACnC,IAAA,aAAa,EAAE,eAAe;AAC9B,IAAA,YAAY,EAAE,kBAAkB;AAChC,IAAA,IAAI,EAAE,UAAU;AAChB,IAAA,IAAI,EAAE,aAAa;AACnB,IAAA,YAAY,EAAE,kBAAkB;AAChC,IAAA,oBAAoB,EAAE,qBAAqB;AAC3C,IAAA,gBAAgB,EAAE,mBAAmB;AACrC,IAAA,WAAW,EAAE,aAAa;AAC1B,IAAA,UAAU,EAAE,YAAY;AACxB,IAAA,gBAAgB,EAAE,UAAU;AAC5B,IAAA,SAAS,EAAE;;;AC5Bb;;AAEG;;;;"}
@@ -189,10 +189,17 @@ const pieChartWidgetProviders = {
189
189
  description: 'Pie Chart widget',
190
190
  scope: 'self'
191
191
  };
192
+ const dataPointsListWidgetExport = {
193
+ name: 'Widgets: Data Points List',
194
+ module: 'dataPointsListWidgetProviders',
195
+ path: '@c8y/ngx-components/widgets/definitions/datapoints-list',
196
+ description: 'Data Points List widget',
197
+ scope: 'self'
198
+ };
192
199
 
193
200
  /**
194
201
  * Generated bundle index. Do not edit.
195
202
  */
196
203
 
197
- export { alarmListWidgetExport, applicationsWidgetExport, assetNotesWidgetExport, assetTableWidgetExport, cockpitWelcomeWidgetExport, criticalAlarmsWidgetExport, dataPointsTableWidgetExport, datapointGraphWidgetExport, deviceControlMessageWidgetExport, deviceManagementWelcomeWidgetExport, eventListWidgetExport, helpAndServiceWidgetExport, htmlWidgetAIChat, htmlWidgetExport, imageWidgetExport, infoGaugeWidgetExport, kpiWidgetExport, legacyCockpitWelcomeWidgetExport, linearGaugeWidgetExport, mapWidgetExport, markdownWidgetExport, pieChartWidgetProviders, quickLinksWidgetExport, radialGaugeWidgetExport, recentAlarmsWidgetExport, siloWidgetExport, threeDRotationWidgetExport };
204
+ export { alarmListWidgetExport, applicationsWidgetExport, assetNotesWidgetExport, assetTableWidgetExport, cockpitWelcomeWidgetExport, criticalAlarmsWidgetExport, dataPointsListWidgetExport, dataPointsTableWidgetExport, datapointGraphWidgetExport, deviceControlMessageWidgetExport, deviceManagementWelcomeWidgetExport, eventListWidgetExport, helpAndServiceWidgetExport, htmlWidgetAIChat, htmlWidgetExport, imageWidgetExport, infoGaugeWidgetExport, kpiWidgetExport, legacyCockpitWelcomeWidgetExport, linearGaugeWidgetExport, mapWidgetExport, markdownWidgetExport, pieChartWidgetProviders, quickLinksWidgetExport, radialGaugeWidgetExport, recentAlarmsWidgetExport, siloWidgetExport, threeDRotationWidgetExport };
198
205
  //# sourceMappingURL=c8y-ngx-components-widgets-exports.mjs.map
@@ -1 +1 @@
1
- {"version":3,"file":"c8y-ngx-components-widgets-exports.mjs","sources":["../../widgets/exports/index.ts","../../widgets/exports/c8y-ngx-components-widgets-exports.ts"],"sourcesContent":["import { PluginsExports } from '@c8y/options';\nimport { gettext } from '@c8y/ngx-components/gettext';\n\nexport const radialGaugeWidgetExport = {\n name: gettext('Widgets: Radial Gauge widget'),\n module: 'radialGaugeWidgetProviders',\n path: '@c8y/ngx-components/widgets/definitions/radial-gauge',\n description: gettext('Radial gauge widget'),\n scope: 'self'\n} as const satisfies PluginsExports;\n\nexport const kpiWidgetExport = {\n name: gettext('Widgets: KPI widget'),\n module: 'kpiWidgetProviders',\n path: '@c8y/ngx-components/widgets/definitions/kpi',\n description: gettext('KPI widget'),\n scope: 'self'\n} as const satisfies PluginsExports;\n\nexport const alarmListWidgetExport = {\n name: gettext('Widgets: Alarm list'),\n module: 'alarmListWidgetProviders',\n path: '@c8y/ngx-components/widgets/definitions/alarms/alarm-list',\n description: gettext('Alarm list widget'),\n scope: 'self'\n} as const satisfies PluginsExports;\n\nexport const criticalAlarmsWidgetExport = {\n name: gettext('Widgets: All critical alarms'),\n module: 'criticalAlarmsWidgetProviders',\n path: '@c8y/ngx-components/widgets/definitions/alarms/all-critical-alarms',\n description: gettext('All critical alarms widget'),\n scope: 'self'\n} as const satisfies PluginsExports;\n\nexport const recentAlarmsWidgetExport = {\n name: gettext('Widgets: Recent alarms'),\n module: 'recentAlarmsWidgetProviders',\n path: '@c8y/ngx-components/widgets/definitions/alarms/recent-alarms',\n description: gettext('Recent alarms widget'),\n scope: 'self'\n} as const satisfies PluginsExports;\n\nexport const applicationsWidgetExport = {\n name: gettext('Widgets: Applications'),\n module: 'applicationsWidgetProviders',\n path: '@c8y/ngx-components/widgets/definitions/applications',\n description: gettext('Applications widget'),\n scope: 'self'\n} as const satisfies PluginsExports;\n\nexport const legacyCockpitWelcomeWidgetExport = {\n name: gettext('Widgets: Legacy welcome to Cockpit'),\n module: 'legacyCockpitWelcomeWidgetProviders',\n path: '@c8y/ngx-components/widgets/definitions/cockpit-legacy-welcome',\n description: gettext('Legacy welcome to Cockpit widget'),\n scope: 'self'\n} as const satisfies PluginsExports;\n\nexport const cockpitWelcomeWidgetExport = {\n name: gettext('Widgets: Welcome to Cockpit'),\n module: 'cockpitWelcomeWidgetProviders',\n path: '@c8y/ngx-components/widgets/definitions/cockpit-welcome',\n description: gettext('Welcome to Cockpit widget'),\n scope: 'self'\n} as const satisfies PluginsExports;\n\nexport const deviceControlMessageWidgetExport = {\n name: gettext('Widgets: Message sending'),\n module: 'deviceControlMessageWidgetProviders',\n path: '@c8y/ngx-components/widgets/definitions/device-control-message',\n description: gettext('Message sending widget'),\n scope: 'self'\n} as const satisfies PluginsExports;\n\nexport const helpAndServiceWidgetExport = {\n name: gettext('Widgets: Help and service'),\n module: 'helpAndServiceWidgetProviders',\n path: '@c8y/ngx-components/widgets/definitions/help-and-service',\n description: gettext('Help and service widget'),\n scope: 'self'\n} as const satisfies PluginsExports;\n\nexport const imageWidgetExport = {\n name: gettext('Widgets: Image'),\n module: 'imageWidgetProviders',\n path: '@c8y/ngx-components/widgets/definitions/image',\n description: gettext('Image widget'),\n scope: 'self'\n} as const satisfies PluginsExports;\n\nexport const infoGaugeWidgetExport = {\n name: gettext('Widgets: Info gauge'),\n module: 'infoGaugeWidgetProviders',\n path: '@c8y/ngx-components/widgets/definitions/info-gauge',\n description: gettext('Info gauge widget'),\n scope: 'self'\n} as const satisfies PluginsExports;\n\nexport const mapWidgetExport = {\n name: gettext('Widgets: Map'),\n module: 'mapWidgetProviders',\n path: '@c8y/ngx-components/widgets/definitions/map',\n description: gettext('Map widget'),\n scope: 'self'\n} as const satisfies PluginsExports;\n\nexport const markdownWidgetExport = {\n name: gettext('Widgets: Markdown'),\n module: 'markdownWidgetProviders',\n path: '@c8y/ngx-components/widgets/definitions/markdown',\n description: gettext('Markdown widget'),\n scope: 'self'\n} as const satisfies PluginsExports;\n\nexport const threeDRotationWidgetExport = {\n name: gettext('Widgets: Rotation'),\n module: 'threeDRotationWidgetProviders',\n path: '@c8y/ngx-components/widgets/definitions/three-d-rotation',\n description: gettext('Rotation widget'),\n scope: 'self'\n} as const satisfies PluginsExports;\n\nexport const siloWidgetExport = {\n name: gettext('Widgets: Silo'),\n module: 'siloWidgetProviders',\n path: '@c8y/ngx-components/widgets/definitions/silo',\n description: gettext('Silo widget'),\n scope: 'self'\n} as const satisfies PluginsExports;\n\nexport const linearGaugeWidgetExport = {\n name: gettext('Widgets: Linear Gauge'),\n module: 'linearGaugeWidgetProviders',\n path: '@c8y/ngx-components/widgets/definitions/linear-gauge',\n description: gettext('Linear Gauge widget'),\n scope: 'self'\n} as const satisfies PluginsExports;\n\nexport const datapointGraphWidgetExport = {\n name: gettext('Widgets: Data points graph'),\n module: 'datapointGraphWidgetproviders',\n path: '@c8y/ngx-components/widgets/definitions/datapoints-graph',\n description: gettext('Data points graph widget'),\n scope: 'self'\n} as const satisfies PluginsExports;\n\nexport const dataPointsTableWidgetExport = {\n name: gettext('Widgets: Data Points Table'),\n module: 'dataPointsTableWidgetProviders',\n path: '@c8y/ngx-components/widgets/definitions/datapoints-table',\n description: gettext('Data Points Table widget'),\n scope: 'self'\n} as const satisfies PluginsExports;\n\nexport const htmlWidgetExport = {\n name: gettext('Widgets: HTML Widget'),\n module: 'htmlWidgetProviders',\n path: '@c8y/ngx-components/widgets/definitions/html-widget',\n description: gettext('Allows to set custom HTML on a dashboard'),\n scope: 'self'\n} as const satisfies PluginsExports;\n\nexport const quickLinksWidgetExport = {\n name: gettext('Widgets: Quick Links'),\n module: 'quickLinksWidgetProviders',\n path: '@c8y/ngx-components/widgets/definitions/quick-links',\n description: gettext('Quick Links widget'),\n scope: 'self'\n} as const satisfies PluginsExports;\n\nexport const deviceManagementWelcomeWidgetExport = {\n name: gettext('Widgets: Welcome to Device Management'),\n module: 'deviceManagementWelcomeWidgetProviders',\n path: '@c8y/ngx-components/widgets/definitions/device-management-welcome',\n description: gettext('Welcome to Device Management widget'),\n scope: 'self'\n} as const satisfies PluginsExports;\n\nexport const assetNotesWidgetExport = {\n name: gettext('Widgets: Asset notes'),\n module: 'assetNotesWidgetProviders',\n path: '@c8y/ngx-components/widgets/definitions/asset-notes',\n description: gettext('Asset notes widget'),\n scope: 'self'\n} as const satisfies PluginsExports;\n\nexport const assetTableWidgetExport = {\n name: gettext('Widgets: Asset table'),\n module: 'assetTableWidgetProviders',\n path: '@c8y/ngx-components/widgets/definitions/asset-table',\n description: gettext('Displays a table of assets with configurable columns and filters.'),\n scope: 'self'\n} as const satisfies PluginsExports;\n\nexport const eventListWidgetExport = {\n name: gettext('Widgets: Event list'),\n module: 'eventListWidgetProviders',\n path: '@c8y/ngx-components/widgets/definitions/event-list',\n description: gettext('Event list widget'),\n scope: 'self'\n} as const satisfies PluginsExports;\n\nexport const htmlWidgetAIChat = {\n name: gettext('Widgets: HTML Widget AI Code Assistant'),\n module: 'htmlWidgetAIChatProviders',\n path: '@c8y/ngx-components/widgets/definitions/html-widget-ai-config',\n description: gettext('Adds AI Code Assistant capabilities to the HTML Widget'),\n scope: 'self'\n} as const satisfies PluginsExports;\n\nexport const pieChartWidgetProviders = {\n name: 'Widgets: Pie Chart widget',\n module: 'pieChartWidgetProviders',\n path: '@c8y/ngx-components/widgets/definitions/pie-chart',\n description: 'Pie Chart widget',\n scope: 'self'\n} as const satisfies PluginsExports;\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"c8y-ngx-components-widgets-exports.mjs","sources":["../../widgets/exports/index.ts","../../widgets/exports/c8y-ngx-components-widgets-exports.ts"],"sourcesContent":["import { PluginsExports } from '@c8y/options';\nimport { gettext } from '@c8y/ngx-components/gettext';\n\nexport const radialGaugeWidgetExport = {\n name: gettext('Widgets: Radial Gauge widget'),\n module: 'radialGaugeWidgetProviders',\n path: '@c8y/ngx-components/widgets/definitions/radial-gauge',\n description: gettext('Radial gauge widget'),\n scope: 'self'\n} as const satisfies PluginsExports;\n\nexport const kpiWidgetExport = {\n name: gettext('Widgets: KPI widget'),\n module: 'kpiWidgetProviders',\n path: '@c8y/ngx-components/widgets/definitions/kpi',\n description: gettext('KPI widget'),\n scope: 'self'\n} as const satisfies PluginsExports;\n\nexport const alarmListWidgetExport = {\n name: gettext('Widgets: Alarm list'),\n module: 'alarmListWidgetProviders',\n path: '@c8y/ngx-components/widgets/definitions/alarms/alarm-list',\n description: gettext('Alarm list widget'),\n scope: 'self'\n} as const satisfies PluginsExports;\n\nexport const criticalAlarmsWidgetExport = {\n name: gettext('Widgets: All critical alarms'),\n module: 'criticalAlarmsWidgetProviders',\n path: '@c8y/ngx-components/widgets/definitions/alarms/all-critical-alarms',\n description: gettext('All critical alarms widget'),\n scope: 'self'\n} as const satisfies PluginsExports;\n\nexport const recentAlarmsWidgetExport = {\n name: gettext('Widgets: Recent alarms'),\n module: 'recentAlarmsWidgetProviders',\n path: '@c8y/ngx-components/widgets/definitions/alarms/recent-alarms',\n description: gettext('Recent alarms widget'),\n scope: 'self'\n} as const satisfies PluginsExports;\n\nexport const applicationsWidgetExport = {\n name: gettext('Widgets: Applications'),\n module: 'applicationsWidgetProviders',\n path: '@c8y/ngx-components/widgets/definitions/applications',\n description: gettext('Applications widget'),\n scope: 'self'\n} as const satisfies PluginsExports;\n\nexport const legacyCockpitWelcomeWidgetExport = {\n name: gettext('Widgets: Legacy welcome to Cockpit'),\n module: 'legacyCockpitWelcomeWidgetProviders',\n path: '@c8y/ngx-components/widgets/definitions/cockpit-legacy-welcome',\n description: gettext('Legacy welcome to Cockpit widget'),\n scope: 'self'\n} as const satisfies PluginsExports;\n\nexport const cockpitWelcomeWidgetExport = {\n name: gettext('Widgets: Welcome to Cockpit'),\n module: 'cockpitWelcomeWidgetProviders',\n path: '@c8y/ngx-components/widgets/definitions/cockpit-welcome',\n description: gettext('Welcome to Cockpit widget'),\n scope: 'self'\n} as const satisfies PluginsExports;\n\nexport const deviceControlMessageWidgetExport = {\n name: gettext('Widgets: Message sending'),\n module: 'deviceControlMessageWidgetProviders',\n path: '@c8y/ngx-components/widgets/definitions/device-control-message',\n description: gettext('Message sending widget'),\n scope: 'self'\n} as const satisfies PluginsExports;\n\nexport const helpAndServiceWidgetExport = {\n name: gettext('Widgets: Help and service'),\n module: 'helpAndServiceWidgetProviders',\n path: '@c8y/ngx-components/widgets/definitions/help-and-service',\n description: gettext('Help and service widget'),\n scope: 'self'\n} as const satisfies PluginsExports;\n\nexport const imageWidgetExport = {\n name: gettext('Widgets: Image'),\n module: 'imageWidgetProviders',\n path: '@c8y/ngx-components/widgets/definitions/image',\n description: gettext('Image widget'),\n scope: 'self'\n} as const satisfies PluginsExports;\n\nexport const infoGaugeWidgetExport = {\n name: gettext('Widgets: Info gauge'),\n module: 'infoGaugeWidgetProviders',\n path: '@c8y/ngx-components/widgets/definitions/info-gauge',\n description: gettext('Info gauge widget'),\n scope: 'self'\n} as const satisfies PluginsExports;\n\nexport const mapWidgetExport = {\n name: gettext('Widgets: Map'),\n module: 'mapWidgetProviders',\n path: '@c8y/ngx-components/widgets/definitions/map',\n description: gettext('Map widget'),\n scope: 'self'\n} as const satisfies PluginsExports;\n\nexport const markdownWidgetExport = {\n name: gettext('Widgets: Markdown'),\n module: 'markdownWidgetProviders',\n path: '@c8y/ngx-components/widgets/definitions/markdown',\n description: gettext('Markdown widget'),\n scope: 'self'\n} as const satisfies PluginsExports;\n\nexport const threeDRotationWidgetExport = {\n name: gettext('Widgets: Rotation'),\n module: 'threeDRotationWidgetProviders',\n path: '@c8y/ngx-components/widgets/definitions/three-d-rotation',\n description: gettext('Rotation widget'),\n scope: 'self'\n} as const satisfies PluginsExports;\n\nexport const siloWidgetExport = {\n name: gettext('Widgets: Silo'),\n module: 'siloWidgetProviders',\n path: '@c8y/ngx-components/widgets/definitions/silo',\n description: gettext('Silo widget'),\n scope: 'self'\n} as const satisfies PluginsExports;\n\nexport const linearGaugeWidgetExport = {\n name: gettext('Widgets: Linear Gauge'),\n module: 'linearGaugeWidgetProviders',\n path: '@c8y/ngx-components/widgets/definitions/linear-gauge',\n description: gettext('Linear Gauge widget'),\n scope: 'self'\n} as const satisfies PluginsExports;\n\nexport const datapointGraphWidgetExport = {\n name: gettext('Widgets: Data points graph'),\n module: 'datapointGraphWidgetproviders',\n path: '@c8y/ngx-components/widgets/definitions/datapoints-graph',\n description: gettext('Data points graph widget'),\n scope: 'self'\n} as const satisfies PluginsExports;\n\nexport const dataPointsTableWidgetExport = {\n name: gettext('Widgets: Data Points Table'),\n module: 'dataPointsTableWidgetProviders',\n path: '@c8y/ngx-components/widgets/definitions/datapoints-table',\n description: gettext('Data Points Table widget'),\n scope: 'self'\n} as const satisfies PluginsExports;\n\nexport const htmlWidgetExport = {\n name: gettext('Widgets: HTML Widget'),\n module: 'htmlWidgetProviders',\n path: '@c8y/ngx-components/widgets/definitions/html-widget',\n description: gettext('Allows to set custom HTML on a dashboard'),\n scope: 'self'\n} as const satisfies PluginsExports;\n\nexport const quickLinksWidgetExport = {\n name: gettext('Widgets: Quick Links'),\n module: 'quickLinksWidgetProviders',\n path: '@c8y/ngx-components/widgets/definitions/quick-links',\n description: gettext('Quick Links widget'),\n scope: 'self'\n} as const satisfies PluginsExports;\n\nexport const deviceManagementWelcomeWidgetExport = {\n name: gettext('Widgets: Welcome to Device Management'),\n module: 'deviceManagementWelcomeWidgetProviders',\n path: '@c8y/ngx-components/widgets/definitions/device-management-welcome',\n description: gettext('Welcome to Device Management widget'),\n scope: 'self'\n} as const satisfies PluginsExports;\n\nexport const assetNotesWidgetExport = {\n name: gettext('Widgets: Asset notes'),\n module: 'assetNotesWidgetProviders',\n path: '@c8y/ngx-components/widgets/definitions/asset-notes',\n description: gettext('Asset notes widget'),\n scope: 'self'\n} as const satisfies PluginsExports;\n\nexport const assetTableWidgetExport = {\n name: gettext('Widgets: Asset table'),\n module: 'assetTableWidgetProviders',\n path: '@c8y/ngx-components/widgets/definitions/asset-table',\n description: gettext('Displays a table of assets with configurable columns and filters.'),\n scope: 'self'\n} as const satisfies PluginsExports;\n\nexport const eventListWidgetExport = {\n name: gettext('Widgets: Event list'),\n module: 'eventListWidgetProviders',\n path: '@c8y/ngx-components/widgets/definitions/event-list',\n description: gettext('Event list widget'),\n scope: 'self'\n} as const satisfies PluginsExports;\n\nexport const htmlWidgetAIChat = {\n name: gettext('Widgets: HTML Widget AI Code Assistant'),\n module: 'htmlWidgetAIChatProviders',\n path: '@c8y/ngx-components/widgets/definitions/html-widget-ai-config',\n description: gettext('Adds AI Code Assistant capabilities to the HTML Widget'),\n scope: 'self'\n} as const satisfies PluginsExports;\n\nexport const pieChartWidgetProviders = {\n name: 'Widgets: Pie Chart widget',\n module: 'pieChartWidgetProviders',\n path: '@c8y/ngx-components/widgets/definitions/pie-chart',\n description: 'Pie Chart widget',\n scope: 'self'\n} as const satisfies PluginsExports;\n\nexport const dataPointsListWidgetExport = {\n name: 'Widgets: Data Points List',\n module: 'dataPointsListWidgetProviders',\n path: '@c8y/ngx-components/widgets/definitions/datapoints-list',\n description: 'Data Points List widget',\n scope: 'self'\n} as const satisfies PluginsExports;\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":[],"mappings":"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"}