-
Notifications
You must be signed in to change notification settings - Fork 0
/
cumulocity.config.ts
784 lines (783 loc) · 29.6 KB
/
cumulocity.config.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
import { ConfigurationOptions } from '@c8y/devkit';
import { DefinePlugin } from 'webpack';
import { author, description, name, version } from './package.json';
export default {
runTime: {
author,
description,
version,
name,
globalTitle: 'Tutorial application IoT',
tabsHorizontal: true,
rightDrawer: true,
contextHelp: true,
icon: {
class: 'c8y-icon-tools'
},
docs: {
links: [
{
label: 'Legacy link',
icon: 'c8y-icon c8y-icon-tools',
url: 'https://legacy-link.com',
type: 'doc'
},
{
label: 'Doc link from package.json',
icon: 'c8y-icon c8y-icon-c8y',
url: 'https://new-doc-link.com',
type: 'doc'
},
{
label: 'Quick link from package.json',
icon: 'c8y-icon c8y-icon-atom',
url: 'https://cumulocity.com/guides/web/angular/',
type: 'quicklink'
}
]
},
languages: {
it: {
name: 'Italian',
nativeName: 'Italian'
}
},
exports: [
{
name: 'Introduction to asset selector',
module: 'AssetSelectorExampleModule',
path: './src/selector/asset-selector-example/general-example/asset-selector-example.module.ts',
description: 'An introduction to asset selector',
scope: 'self'
},
{
name: 'Introduction Example Module',
module: 'IntroductionExampleModule',
path: './src/dynamic-forms/introduction-example/introduction-example.module.ts',
description: 'An introduction to dynamic forms.',
scope: 'self'
},
{
name: 'Introduction Example Module',
module: 'NamedContextDashboardModule',
path: './src/dashboard/named-context-dashboard/named-context-dashboard.module.ts',
description: 'An introduction to named context dashboards forms.',
scope: 'self'
},
{
name: 'Miller options',
module: 'AssetSelectorMillerExampleModule',
path: './src/selector/asset-selector-example/miller-columns-options/asset-selector-miller-example.module.ts',
description: 'Options for the miller columns',
scope: 'self'
},
{
name: 'Tree options',
module: 'AssetSelectorTreeExampleModule',
path: './src/selector/asset-selector-example/tree-options/asset-selector-tree-example.module.ts',
description: 'Options for the hierarchy tree',
scope: 'self'
},
{
name: 'Introduction to asset selector different root',
module: 'AssetSelectorDifferentRootModule',
path: './src/selector/asset-selector-example/different-root/asset-selector-different-root.module.ts',
description: 'An introduction to asset selector different root example.',
scope: 'self'
},
{
name: 'Introduction to service dashboard module',
module: 'ServiceDashboardModule',
path: './src/dashboard/service-dashboard/service-dashboard.module.ts',
description: 'An introduction to dynamic forms.',
scope: 'self'
},
{
name: 'Introduction cotext dashboard module',
module: 'ContextDashboardModule',
path: './src/dashboard/context-dashboard/context-dashboard.module.ts',
description: 'An introduction to dynamic forms.',
scope: 'self'
},
{
name: 'Introduction custom dashboard module',
module: 'CustomDashboardModule',
path: './src/dashboard/custom-dashboard/custom-dashboard.module.ts',
description: 'An introduction to custom dashboards.',
scope: 'self'
},
{
name: 'Dashboard module with example of dynamic component usage',
module: 'WidgetGuideDashboardModule',
path: './src/dashboard/widget-guide-dashboard/widget-guide-dashboard.module.ts',
description: 'An example showing usage of custom widget in dashboard.',
scope: 'self'
},
{
name: 'Context dashboard module with example of dynamic component usage',
module: 'WidgetGuideContextDashboardModule',
path: './src/dashboard/widget-guide-context-dashboard/widget-guide-context-dashboard.module.ts',
description: 'An example showing usage of custom widget in context dashboard.',
scope: 'self'
},
{
name: 'Introduction datapoint selection module',
module: 'DatapointSelectionExampleModule',
path: './src/selector/datapoint-selection-example/general-example/datapoint-selection-example.module.ts',
description: 'An introduction to dynamic forms.',
scope: 'self'
},
{
name: 'Introduction widget dashboard module',
module: 'WidgetDashboardModule',
path: './src/dashboard/widget-dashboard/widget-dashboard.module.ts',
description: 'An introduction to dynamic forms.',
scope: 'self'
},
{
name: 'JSON Schema Example Module',
module: 'JsonSchemaExampleModule',
path: './src/dynamic-forms/json-schema-example/json-schema-example.module.ts',
description: 'A JSON Schema sample for dynamic forms.',
scope: 'self'
},
{
name: 'Custom Elements Example Module',
module: 'CustomElementExampleModule',
path: './src/dynamic-forms/custom-element-example/custom-element-example.module.ts',
description: 'A sample for a custom element in dynamic forms.',
scope: 'self'
},
{
name: 'Validation Example Module',
module: 'ValidationExampleModule',
path: './src/dynamic-forms/validation-example/validation-example.module.ts',
description: 'A sample for validation options in dynamic forms.',
scope: 'self'
},
{
name: 'Forms validation example module',
module: 'FormsTutorialModule',
path: './src/forms/form-validation/forms.module.ts',
description: 'A sample for forms validation example.',
scope: 'self'
},
{
name: 'CSS Component styles Example',
module: 'CascadingStyleSheetsExampleModule',
path: './src/component-styles/cascading-style-sheets-example/cascading-style-sheets-example.module.ts',
description: 'A sample for component styles using CSS.',
scope: 'self'
},
{
name: 'LESS Component styles Example',
module: 'LeanerStyleSheetsExampleModule',
path: './src/component-styles/leaner-style-sheets-example/leaner-style-sheets-example.module.ts',
description: 'A sample for component styles using LESS.',
scope: 'self'
},
{
name: 'SCSS Component styles Example',
module: 'SyntacticallyAwesomeStyleSheetsExampleModule',
path: './src/component-styles/syntactically-awesome-style-sheets-example/syntactically-awesome-style-sheets-example.module.ts',
description: 'A sample for component styles using SCSS.',
scope: 'self'
},
{
name: 'Simple map',
module: 'SimpleMapExampleModule',
path: './src/maps/simple-map/simple-map-example.module.ts',
description: 'A sample for simple map.',
scope: 'self'
},
{
name: 'Cluster map',
module: 'ClusterMapExampleModule',
path: './src/maps/cluster-map/cluster-map-example.module.ts',
description: 'A sample for cluster map.',
scope: 'self'
},
{
name: 'Action',
module: 'ActionModule',
path: './src/hooks/action/action.module.ts',
description: 'A sample for action hook.',
scope: 'self'
},
{
name: 'Action bar',
module: 'ActionBarModule',
path: './src/hooks/action-bar/action-bar.module.ts',
description: 'A sample for action bar hook.',
scope: 'self'
},
{
name: 'Breadcrumbs hook',
module: 'BreadcrumbsModule',
path: './src/hooks/breadcrumbs/breadcrumbs.module.ts',
description: 'A sample for breadcrumbs hook.',
scope: 'self'
},
{
name: 'Breadcrumbs expand',
module: 'BreadcrumbsExpandExampleModule',
path: './src/breadcrumbs/expand-example/breadcrumbs-expand-example.module.ts',
description: 'A sample for breadcrumbs.',
scope: 'self'
},
{
name: 'Breadcrumbs outlet',
module: 'BreadcrumbsOutletExampleModule',
path: './src/breadcrumbs/outlet/breadcrumbs-outlet-example.module.ts',
description: 'A sample for breadcrumb outlet.',
scope: 'self'
},
{
name: 'Breadcrumbs basic',
module: 'BreadcrumbsExampleModule',
path: './src/breadcrumbs/basic-example/breadcrumbs-example.module.ts',
description: 'A sample for breadcrumbs.',
scope: 'self'
},
{
name: 'Breadcrumbs content projection',
module: 'BreadcrumbsContentProjectionExampleModule',
path: './src/breadcrumbs/content-projection/breadcrumbs-content-projection-example.module.ts',
description: 'A sample for breadcrumbs content projection.',
scope: 'self'
},
{
name: 'Component',
module: 'ComponentModule',
path: './src/hooks/component/component.module.ts',
description: 'A sample for component hook.',
scope: 'self'
},
{
name: 'Wizard',
module: 'WizardModule',
path: './src/hooks/generic-wizard/wizard.module.ts',
description: 'A sample for wizard hook.',
scope: 'self'
},
{
name: 'Service hook Codex sample',
module: 'ServiceHookCodexSampleModule',
path: './src/hooks/service/service-hook-codex-sample.module.ts',
description: 'A sample for hookService.',
scope: 'self'
},
{
name: 'Stepper',
module: 'StepperHookModule',
path: './src/hooks/stepper/stepper-hook.module.ts',
description: 'A sample for stepper hook.',
scope: 'self'
},
{
name: 'Tabs',
module: 'TabsModule',
path: './src/hooks/tabs/tabs.module.ts',
description: 'A sample for tabs hook.',
scope: 'self'
},
{
name: 'Navigator-route',
module: 'NavigatorRouteModule',
path: './src/hooks/navigator-route/navigator-route.module.ts',
description: 'A sample for navigator and route hooks.',
scope: 'self'
},
{
name: 'Map popup',
module: 'MapPopupExampleModule',
path: './src/maps/map-popup/map-popup-example.module.ts',
description: 'A popup example for the map component.',
scope: 'self'
},
{
name: 'Cluster map root node',
module: 'ClusterMapRootNodeExampleModule',
path: './src/maps/cluster-map-root-node/cluster-map-root-node-example.module.ts',
description: 'A cluster map with a different root node.',
scope: 'self'
},
{
name: 'List basic with checkboxes',
module: 'ListCheckModule',
path: './src/list/list/list-check/list-check.module.ts',
description: 'A sample for basic list with checkboxes.',
scope: 'self'
},
{
name: 'List basic with timeline',
module: 'ListTimelineModule',
path: './src/list/list/list-timeline/list-timeline.module.ts',
description: 'A sample for basic list with timeline.',
scope: 'self'
},
{
name: 'List virtal scroll with checkboxes',
module: 'ListVirtualScrollCheckModule',
path: './src/list/list-virtual-scroll/list-virtual-scroll-check/list-virtual-scroll-check.module.ts',
description: 'A sample for list with virtual scroll witch checkboxes.',
scope: 'self'
},
{
name: 'List virtal scroll with timeline',
module: 'ListVirtualScrollTimelineModule',
path: './src/list/list-virtual-scroll/list-virtual-scroll-timeline/list-virtual-scroll-timeline.module.ts',
description: 'A sample for list with virtual scroll with timeline.',
scope: 'self'
},
{
name: 'Text translation NgNonBindable',
module: 'TextTranslationNgnonbindableModule',
path: './src/translations/text-translation/ngNonBindable-translation/text-translation-ngnonbindable.module.ts',
description: 'A sample for text nonBindable translation module.',
scope: 'self'
},
{
name: 'Text translation by service',
module: 'TextTranslationByServiceModule',
path: './src/translations/text-translation/service-translation/text-translation-by-service.module.ts',
description: 'A sample for text translation module by service.',
scope: 'self'
},
{
name: 'Text translation by gettext',
module: 'TextTranslationGettextModule',
path: './src/translations/text-translation/gettext-translation/text-translation-gettext.module.ts',
description: 'A sample for text translation module by gettext.',
scope: 'self'
},
{
name: 'Date translation by c8y pipe',
module: 'C8yDateTranslationModule',
path: './src/translations/date-translation/c8y-translation/c8y-date-translation.module.ts',
description: 'A sample for text translation module by c8y pipe.',
scope: 'self'
},
{
name: 'Date translation by Angular pipe',
module: 'DateTranslationModule',
path: './src/translations/date-translation/ng-translation/date-translation.module.ts',
description: 'A sample for date translation module by Angular pipe.',
scope: 'self'
},
{
name: 'Dynamic form translation',
module: 'DynamicFormTranslationModule',
path: './src/translations/dynamic-form-translation/dynamic-form-translation.module.ts',
description: 'A sample for Dynamic form translation.',
scope: 'self'
},
{
name: 'New language',
module: 'NewLanguageModule',
path: './src/translations/new-language/new-language.module.ts',
description: 'A sample for new language module.',
scope: 'self'
},
{
name: 'Dynamic form translation',
module: 'NewTranslationModule',
path: './src/translations/new-translate/new-translation.module.ts',
description: 'A sample for new translation module.',
scope: 'self'
},
{
name: 'Alert example',
module: 'AlertExampleModule',
path: './src/alert/alert-example.module.ts',
description: 'A sample for alerts.',
scope: 'self'
},
{
name: 'App icon example',
module: 'AppIconExampleModule',
path: './src/app-icon/app-icon-example.module.ts',
description: 'An example for App Icon component.',
scope: 'self'
},
{
name: 'Client grid example',
module: 'ClientGridExampleModule',
path: './src/grids/client-grid-example/client-grid-example.module.ts',
description: 'An example for a client data grid.',
scope: 'self'
},
{
name: 'Server grid example',
module: 'ServerGridExampleModule',
path: './src/grids/server-grid-example/server-grid-example.module.ts',
description: 'An example for a server data grid.',
scope: 'self'
},
{
name: 'Device grid example',
module: 'DeviceGridExampleModule',
path: './src/grids/device-grid-example/device-grid-example.module.ts',
description: 'An example for a device data grid.',
scope: 'self'
},
{
name: 'Empty grid example',
module: 'EmptyGridExampleModule',
path: './src/grids/empty-grid-example/empty-grid-example.module.ts',
description: 'An example for an empty data grid.',
scope: 'self'
},
{
name: 'Sync expandable rows example',
module: 'SyncExpandableRowsGridExampleModule',
path: './src/grids/sync-expandable-rows-grid-example/sync-expandable-rows-grid-example.module.ts',
description: 'An example for synchronous expandable rows.',
scope: 'self'
},
{
name: 'Async expandable rows example',
module: 'AsyncExpandableRowsGridExampleModule',
path: './src/grids/async-expandable-rows-grid-example/async-expandable-rows-grid-example.module.ts',
description: 'An example for asynchronous expandable rows.',
scope: 'self'
},
{
name: 'Right drawer hook sample',
module: 'RightDrawerModule',
path: './src/hooks/drawer/right-drawer-tutorial/right-drawer.module.ts',
description: 'An example for hooking into the right drawer.',
scope: 'self'
},
{
name: 'Left drawer hook sample',
module: 'LeftDrawerModule',
path: './src/hooks/drawer/left-drawer-tutorial/left-drawer.module.ts',
description: 'An example for hooking into the left drawer.',
scope: 'self'
},
{
name: 'Version hook sample',
module: 'TutorialVersionModule',
path: './src/hooks/version/version.module.ts',
description: 'An example for hooking into the shown versions.',
scope: 'self'
},
{
name: 'pop confirm example',
module: 'PopConfirmExampleModule',
path: './src/popconfirm/pop-confirm-example.module.ts',
description: 'An example for pop confirm.',
scope: 'self'
},
{
name: 'Quick link example',
module: 'QuickLinkExampleModule',
path: './src/quick-link/quick-link-example.module.ts',
description: 'An example of using quick links.',
scope: 'self'
},
{
name: 'Properties list example',
module: 'PropertiesListExampleModule',
path: './src/properties-list/properties-list-example.module.ts',
description: 'An example of using properties list.',
scope: 'self'
},
{
name: 'Confirm modal example',
module: 'ConfirmModalExampleModule',
path: './src/modal/confirm-modal/confirm-modal-example.module.ts',
description: 'An example for using confirm Modal.',
scope: 'self'
},
{
name: 'For of directive example',
module: 'ForOfModule',
path: './src/for-of-directive/for-of.module.ts',
description: 'An example for For of directive.',
scope: 'self'
},
{
name: 'Example of ngx modal',
module: 'NgxModalExampleModule',
path: './src/modal/ngx-modal/ngx-modal-example.module.ts',
description: 'An example for ngx modal.',
scope: 'self'
},
{
name: 'Example of ngx modal sizes',
module: 'NgxModalSizesExampleModule',
path: './src/modal/ngx-modal-sizes/ngx-modal-sizes-example.module.ts',
description: 'An example for ngx modal of different sizes.',
scope: 'self'
},
{
name: 'Example of ngx modal selectors',
module: 'NgxModalSelectorsExampleModule',
path: './src/modal/ngx-modal-selectors/ngx-modal-selectors-example.module.ts',
description: 'An example for ngx modal using ng-content selectors.',
scope: 'self'
},
{
name: 'Example of ngx modal accessibility',
module: 'NgxModalAccessibilityExampleModule',
path: './src/modal/ngx-modal-accessibility/ngx-modal-accessibility-example.module.ts',
description: 'An example for ngx modal accessibility.',
scope: 'self'
},
{
name: 'Example of realtime',
module: 'RealtimeTutorialModule',
path: './src/realtime/realtime-tutorial.module.ts',
description: 'An example for realtime.',
scope: 'self'
},
{
name: 'Example of provider configuration',
module: 'ProviderConfigurationTutorialModule',
path: './src/provider-configuration/provider-configuration-example/provider-configuration.module.ts',
description: 'An example for provider configuration.',
scope: 'self'
},
{
name: 'Example of help',
module: 'HelpExampleModule',
path: './src/help/help-example.module.ts',
description: 'An example for help.',
scope: 'self'
},
{
name: 'Example of extendable input list',
module: 'ExtendableInputListExampleModule',
path: './src/input-group/extendable-input-list-example.module.ts',
description: 'An example for extendable input list.',
scope: 'self'
},
{
name: 'Example of time picker',
module: 'TimePickerExampleModule',
path: './src/time/time-picker-example.module.ts',
description: 'An example for time picker.',
scope: 'self'
},
{
name: 'Example of date time range picker',
module: 'DateTimeRangeExampleModule',
path: './src/date-time-range/date-time-range-example.module.ts',
description: 'An example for date time range picker.',
scope: 'self'
},
{
name: 'Example of range input',
module: 'RangeInputExampleModule',
path: './src/input/range-input-example.module.ts',
description: 'An example for range input.',
scope: 'self'
},
{
name: 'Introduction to datapoint selection list example',
module: 'DatapointSelectionListExampleModule',
path: './src/selector/datapoint-selection-example/list-example/datapoint-selection-list-example.module.ts',
description: 'An introduction to datapoint selection list example.',
scope: 'self'
},
{
name: 'Introduction to datapoint validation example',
module: 'DatapointSelectionModalExampleModule',
path: './src/selector/datapoint-selection-example/modal-example/datapoint-selection-modal-example.module.ts',
description: 'An introduction to datapoint modal example.',
scope: 'self'
},
{
name: 'Introduction to datapoint validation example',
module: 'DatapointSelectionValidationExampleModule',
path: './src/selector/datapoint-selection-example/validation-example/datapoint-selection-validation-example.module.ts',
description: 'An introduction to datapoint validation example.',
scope: 'self'
},
{
name: 'Introduction to datapoint drag and drop example',
module: 'DatapointSelectionDragdropExampleModule',
path: './src/selector/datapoint-selection-example/dragdrop-example/datapoint-selection-dragdrop-example.module.ts',
description: 'An introduction to datapoint drag and drop example.',
scope: 'self'
},
{
name: 'Introduction to datapoint selector example',
module: 'DatapointSelectionSelectorExampleModule',
path: './src/selector/datapoint-selection-example/selector/datapoint-selection-selector-example.module.ts',
description: 'An introduction to datapoint selector example.',
scope: 'self'
},
{
name: 'Introduction to datapoint context example',
module: 'DatapointSelectionContextExampleModule',
path: './src/selector/datapoint-selection-example/context-example/datapoint-selection-context-example.module.ts',
description: 'An introduction to datapoint context example.',
scope: 'self'
},
{
name: 'Introduction to datapoint without templates',
module: 'DatapointSelectionNotemplatesExampleModule',
path: './src/selector/datapoint-selection-example/no-templates-example/datapoint-selection-notemplates-example.module.ts',
description: 'An introduction to datapoint without templates example.',
scope: 'self'
},
{
name: 'Introduction to alarm event selector',
module: 'AlarmEventSlectorExampleModule',
path: './src/selector/alarm-event-selector-example/alarm-event-selector.module.ts',
description: 'An introduction to alarm event selector example.',
scope: 'self'
},
{
name: 'Introduction to asset selector device child',
module: 'AssetSingleSelectModule',
path: './src/selector/asset-selector-example/single-select/asset-single-select.module.ts',
description: 'An introduction to asset selector device child example.',
scope: 'self'
},
{
name: 'Introduction to asset selector single select',
module: 'AssetSelectorChildDevicesModule',
path: './src/selector/asset-selector-example/child-devices/asset-selector-child-devices.module.ts',
description: 'An introduction to asset selector single select example.',
scope: 'self'
},
{
name: 'Introduction to asset selector only devices',
module: 'AssetSelectorOnlyDevicesModule',
path: './src/selector/asset-selector-example/only-devices/asset-selector-only-devices.module.ts',
description: 'An introduction to asset selector only devices example.',
scope: 'self'
},
{
name: 'Introduction to asset selector column header',
module: 'AssetSelectorColumnHeaderModule',
path: './src/selector/asset-selector-example/column-header/asset-selector-column-header.module.ts',
description: 'An introduction to asset selector column header and filter example.',
scope: 'self'
},
{
name: 'Introduction to asset selector global search',
module: 'AssetSelectorGlobalSearchModule',
path: './src/selector/asset-selector-example/global-search/asset-selector-global-search.module.ts',
description: 'An introduction to asset selector global search example.',
scope: 'self'
},
{
name: 'Introduction to asset selector multi select',
module: 'AssetSelectorMultiSelectModule',
path: './src/selector/asset-selector-example/multi-select/asset-selector-multi-select.module.ts',
description: 'An introduction to asset selector multi select example.',
scope: 'self'
},
{
name: 'Introduction to asset selector single search',
module: 'AssetSelectorSingleSearchModule',
path: './src/selector/asset-selector-example/single-search/asset-selector-single-search.module.ts',
description: 'An introduction to asset selector single search example.',
scope: 'self'
},
{
name: 'Introduction to asset selector tree single',
module: 'AssetSelectorTreeSingleModule',
path: './src/selector/asset-selector-example/tree-single/asset-selector-tree-single.module.ts',
description: 'An introduction to asset selector tree single example.',
scope: 'self'
},
{
name: 'Introduction to asset selector tree devices',
module: 'AssetSelectorTreeDevicesModule',
path: './src/selector/asset-selector-example/tree-devices/asset-selector-tree-devices.module.ts',
description: 'An introduction to asset selector tree devices example.',
scope: 'self'
},
{
name: 'Introduction to asset selector tree search',
module: 'AssetSelectorTreeSearchModule',
path: './src/selector/asset-selector-example/tree-search/asset-selector-tree-search.module.ts',
description: 'An introduction to asset selector tree search example.',
scope: 'self'
},
{
name: 'Stepper',
module: 'StepperModule',
path: './src/stepper/stepper.module.ts',
description: 'A simple stepper example.',
scope: 'self'
},
{
name: 'ApplicationCard',
module: 'ApplicationCardExampleModule',
path: './src/application-card/application-card-example.module.ts',
description: 'Application card example.',
scope: 'self'
},
{
name: 'Hooking via service',
module: 'HookStateModule',
path: './src/hooks/state/hook-state.module.ts',
description: 'This is an example for an Action added via service or factory.',
scope: 'self'
},
{
name: 'Device connection status',
module: 'DeviceConnectionStatusExampleModule',
path: './src/device-connection-status/device-connection-status-example.module.ts',
description: 'This is an example of Device connection status icons.',
scope: 'self'
},
{
name: 'Pagination',
module: 'PaginationExampleModule',
path: './src/pagination/pagination-example.module.ts',
description: 'This is an example for pagination.',
scope: 'self'
},
{
name: 'Typeahead',
module: 'TypeaheadExampleModule',
path: './src/typeahead/typeahead-example.module.ts',
description: 'This is an example for the typeahead component.',
scope: 'self'
},
{
name: 'Countdown',
module: 'CountdownExampleModule',
path: './src/countdown/countdown-example.module.ts',
description: 'This is an example for the countdown component.',
scope: 'self'
}
]
},
buildTime: {
extraWebpackConfig: {
plugins: [
new DefinePlugin({
HELLO_WORLD: JSON.stringify('HELLO WORLD')
})
]
},
// The embedded.css is used by codex for iframe embeddings.
copy: [{ from: './node_modules/@c8y/style/embedded.css', to: './embedded.css' }],
federation: [
'@angular/animations',
'@angular/cdk',
'@angular/common',
'@angular/compiler',
'@angular/core',
'@angular/forms',
'@angular/platform-browser',
'@angular/platform-browser-dynamic',
'@angular/router',
'@angular/upgrade',
'@c8y/client',
'@c8y/ngx-components',
'ngx-bootstrap',
'@ngx-translate/core',
'@ngx-formly/core'
]
}
} as const satisfies ConfigurationOptions;