@vonage/vivid 3.0.0-next.119 → 3.0.0-next.120
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.
- package/README.md +11 -6
- package/accordion/index.js +4 -51
- package/accordion-item/index.js +11 -109
- package/action-group/index.js +4 -36
- package/avatar/index.js +8 -64
- package/badge/index.js +9 -48
- package/banner/index.js +15 -117
- package/breadcrumb/index.js +5 -97
- package/breadcrumb-item/index.js +14 -53
- package/button/index.js +14 -92
- package/calendar/index.js +5 -1520
- package/calendar-event/index.js +7 -107
- package/card/index.js +10 -117
- package/checkbox/index.js +13 -175
- package/custom-elements.json +1827 -8
- package/dialog/index.js +14 -227
- package/divider/index.js +4 -25
- package/elevation/index.js +4 -24
- package/fab/index.js +13 -89
- package/focus/index.js +4 -17
- package/header/index.js +7 -12
- package/icon/index.js +7 -28
- package/index.js +49 -55
- package/layout/index.js +4 -42
- package/lib/accordion/definition.d.ts +3 -0
- package/lib/accordion/index.d.ts +1 -2
- package/lib/accordion-item/definition.d.ts +3 -0
- package/lib/accordion-item/index.d.ts +1 -2
- package/lib/action-group/definition.d.ts +3 -0
- package/lib/action-group/index.d.ts +1 -2
- package/lib/avatar/definition.d.ts +3 -0
- package/lib/avatar/index.d.ts +1 -2
- package/lib/badge/definition.d.ts +3 -0
- package/lib/badge/index.d.ts +1 -2
- package/lib/banner/definition.d.ts +3 -0
- package/lib/banner/index.d.ts +1 -2
- package/lib/breadcrumb/definition.d.ts +3 -0
- package/lib/breadcrumb/index.d.ts +1 -2
- package/lib/breadcrumb-item/definition.d.ts +3 -0
- package/lib/breadcrumb-item/index.d.ts +1 -2
- package/lib/button/definition.d.ts +3 -0
- package/lib/calendar/definition.d.ts +3 -0
- package/lib/calendar/index.d.ts +1 -2
- package/lib/calendar-event/definition.d.ts +3 -0
- package/lib/calendar-event/index.d.ts +1 -2
- package/lib/card/definition.d.ts +3 -0
- package/lib/card/index.d.ts +1 -2
- package/lib/checkbox/definition.d.ts +3 -0
- package/lib/checkbox/index.d.ts +1 -2
- package/lib/components.d.ts +38 -38
- package/lib/dialog/definition.d.ts +3 -0
- package/lib/dialog/index.d.ts +1 -2
- package/lib/divider/definition.d.ts +3 -0
- package/lib/divider/index.d.ts +1 -2
- package/lib/elevation/definition.d.ts +3 -0
- package/lib/elevation/index.d.ts +1 -2
- package/lib/fab/definition.d.ts +3 -0
- package/lib/fab/index.d.ts +1 -2
- package/lib/focus/definition.d.ts +3 -0
- package/lib/focus/index.d.ts +1 -2
- package/lib/header/definition.d.ts +3 -0
- package/lib/header/index.d.ts +1 -2
- package/lib/icon/definition.d.ts +3 -0
- package/lib/icon/index.d.ts +1 -2
- package/lib/layout/definition.d.ts +3 -0
- package/lib/layout/index.d.ts +1 -2
- package/lib/listbox/definition.d.ts +3 -0
- package/lib/menu/definition.d.ts +7 -0
- package/lib/menu/index.d.ts +1 -10
- package/lib/menu-item/definition.d.ts +3 -0
- package/lib/menu-item/index.d.ts +1 -2
- package/lib/nav/definition.d.ts +3 -0
- package/lib/nav/index.d.ts +1 -2
- package/lib/nav-disclosure/definition.d.ts +3 -0
- package/lib/nav-disclosure/index.d.ts +1 -2
- package/lib/nav-item/definition.d.ts +3 -0
- package/lib/nav-item/index.d.ts +1 -2
- package/lib/note/definition.d.ts +3 -0
- package/lib/note/index.d.ts +1 -2
- package/lib/number-field/definition.d.ts +3 -0
- package/lib/number-field/index.d.ts +1 -2
- package/lib/option/definition.d.ts +3 -0
- package/lib/option/index.d.ts +1 -2
- package/lib/popup/definition.d.ts +4 -0
- package/lib/popup/index.d.ts +1 -2
- package/lib/progress/definition.d.ts +3 -0
- package/lib/progress/index.d.ts +1 -2
- package/lib/progress-ring/definition.d.ts +3 -0
- package/lib/progress-ring/index.d.ts +1 -2
- package/lib/radio/definition.d.ts +3 -0
- package/lib/radio/index.d.ts +1 -2
- package/lib/radio-group/definition.d.ts +7 -0
- package/lib/radio-group/index.d.ts +1 -10
- package/lib/side-drawer/definition.d.ts +3 -0
- package/lib/side-drawer/index.d.ts +1 -2
- package/lib/slider/definition.d.ts +3 -0
- package/lib/slider/index.d.ts +1 -2
- package/lib/switch/definition.d.ts +3 -0
- package/lib/switch/index.d.ts +1 -2
- package/lib/text-anchor/definition.d.ts +3 -0
- package/lib/text-anchor/index.d.ts +1 -2
- package/lib/text-area/definition.d.ts +3 -0
- package/lib/text-area/index.d.ts +1 -2
- package/lib/text-field/definition.d.ts +3 -0
- package/lib/text-field/index.d.ts +1 -2
- package/lib/tooltip/definition.d.ts +3 -0
- package/lib/tooltip/index.d.ts +1 -2
- package/listbox/index.js +18 -1080
- package/menu/index.js +27 -354
- package/menu-item/index.js +11 -81
- package/nav/index.js +3 -16
- package/nav-disclosure/index.js +13 -77
- package/nav-item/index.js +13 -35
- package/note/index.js +13 -60
- package/number-field/index.js +14 -16
- package/option/index.js +13 -68
- package/package.json +2 -2
- package/popup/index.js +17 -55
- package/progress/index.js +6 -92
- package/progress-ring/index.js +6 -75
- package/radio/index.js +8 -48
- package/radio-group/index.js +9 -433
- package/shared/anchor.js +1 -1
- package/shared/apply-mixins.js +1 -1
- package/shared/base-progress.js +1 -1
- package/shared/breadcrumb-item.js +1 -1
- package/shared/button.js +195 -18
- package/shared/calendar-event.js +1 -1
- package/shared/definition.js +53 -0
- package/shared/definition10.js +99 -0
- package/shared/definition11.js +48 -0
- package/shared/definition12.js +1523 -0
- package/shared/definition13.js +111 -0
- package/shared/definition14.js +114 -0
- package/shared/definition15.js +32 -0
- package/shared/definition16.js +172 -0
- package/shared/definition17.js +223 -0
- package/shared/{divider.js → definition18.js} +25 -2
- package/shared/definition19.js +87 -0
- package/shared/definition2.js +106 -0
- package/shared/definition20.js +44 -0
- package/shared/definition21.js +1078 -0
- package/shared/{listbox-option.js → definition22.js} +71 -11
- package/shared/definition23.js +348 -0
- package/shared/{popup.js → definition24.js} +46 -3
- package/shared/{menu-item.js → definition25.js} +87 -13
- package/shared/definition26.js +18 -0
- package/shared/definition27.js +75 -0
- package/shared/definition28.js +31 -0
- package/shared/definition29.js +56 -0
- package/shared/definition3.js +29 -0
- package/shared/definition30.js +94 -0
- package/shared/definition31.js +77 -0
- package/shared/definition32.js +45 -0
- package/shared/definition33.js +435 -0
- package/shared/definition34.js +86 -0
- package/shared/definition35.js +592 -0
- package/shared/definition36.js +147 -0
- package/shared/definition37.js +279 -0
- package/shared/definition38.js +119 -0
- package/shared/definition39.js +77 -0
- package/shared/definition4.js +19 -0
- package/shared/definition5.js +38 -0
- package/shared/definition6.js +60 -0
- package/shared/definition7.js +45 -0
- package/shared/definition8.js +113 -0
- package/shared/definition9.js +107 -0
- package/shared/design-system/index.d.ts +1 -2
- package/shared/es.object.assign.js +58 -1
- package/shared/es.regexp.to-string.js +2 -1
- package/shared/focus.js +3 -9
- package/shared/focus2.js +9 -3
- package/shared/form-associated.js +1 -1
- package/shared/form-elements.js +2 -2
- package/shared/icon.js +1096 -9
- package/shared/index.js +385 -2501
- package/shared/patterns/form-elements/form-elements.d.ts +2 -2
- package/shared/radio.js +1 -1
- package/shared/ref.js +1 -1
- package/shared/slotted.js +1 -1
- package/shared/string-trim.js +2 -1
- package/shared/text-anchor.template.js +1 -1
- package/shared/to-string.js +51 -0
- package/side-drawer/index.js +5 -84
- package/slider/index.js +14 -593
- package/styles/core/all.css +1 -1
- package/styles/core/theme.css +1 -1
- package/styles/core/typography.css +1 -1
- package/styles/tokens/theme-dark.css +4 -4
- package/styles/tokens/theme-light.css +4 -4
- package/switch/index.js +13 -149
- package/text-anchor/index.js +8 -7
- package/text-area/index.js +16 -282
- package/text-field/index.js +14 -121
- package/tooltip/index.js +24 -82
- package/vivid.api.json +1640 -850
- package/shared/button2.js +0 -200
- package/shared/elevation.js +0 -10
- package/shared/es.promise.resolve.js +0 -944
- package/shared/index2.js +0 -9
- package/shared/utils/index.d.ts +0 -1
package/custom-elements.json
CHANGED
|
@@ -84,6 +84,49 @@
|
|
|
84
84
|
}
|
|
85
85
|
]
|
|
86
86
|
},
|
|
87
|
+
{
|
|
88
|
+
"kind": "javascript-module",
|
|
89
|
+
"path": "libs/components/src/lib/accordion/definition.ts",
|
|
90
|
+
"declarations": [
|
|
91
|
+
{
|
|
92
|
+
"kind": "variable",
|
|
93
|
+
"name": "accordionElements",
|
|
94
|
+
"type": {
|
|
95
|
+
"text": "array"
|
|
96
|
+
},
|
|
97
|
+
"default": "[accordion]"
|
|
98
|
+
},
|
|
99
|
+
{
|
|
100
|
+
"kind": "variable",
|
|
101
|
+
"name": "registerAccordion",
|
|
102
|
+
"description": "Registers the accordion elements with the design system.",
|
|
103
|
+
"parameters": [
|
|
104
|
+
{
|
|
105
|
+
"description": "the prefix to use for the component name",
|
|
106
|
+
"name": "prefix"
|
|
107
|
+
}
|
|
108
|
+
]
|
|
109
|
+
}
|
|
110
|
+
],
|
|
111
|
+
"exports": [
|
|
112
|
+
{
|
|
113
|
+
"kind": "js",
|
|
114
|
+
"name": "accordionElements",
|
|
115
|
+
"declaration": {
|
|
116
|
+
"name": "accordionElements",
|
|
117
|
+
"module": "libs/components/src/lib/accordion/definition.ts"
|
|
118
|
+
}
|
|
119
|
+
},
|
|
120
|
+
{
|
|
121
|
+
"kind": "js",
|
|
122
|
+
"name": "registerAccordion",
|
|
123
|
+
"declaration": {
|
|
124
|
+
"name": "registerAccordion",
|
|
125
|
+
"module": "libs/components/src/lib/accordion/definition.ts"
|
|
126
|
+
}
|
|
127
|
+
}
|
|
128
|
+
]
|
|
129
|
+
},
|
|
87
130
|
{
|
|
88
131
|
"kind": "javascript-module",
|
|
89
132
|
"path": "libs/components/src/lib/accordion-item/accordion-item.ts",
|
|
@@ -216,6 +259,49 @@
|
|
|
216
259
|
}
|
|
217
260
|
]
|
|
218
261
|
},
|
|
262
|
+
{
|
|
263
|
+
"kind": "javascript-module",
|
|
264
|
+
"path": "libs/components/src/lib/accordion-item/definition.ts",
|
|
265
|
+
"declarations": [
|
|
266
|
+
{
|
|
267
|
+
"kind": "variable",
|
|
268
|
+
"name": "accordionItemElements",
|
|
269
|
+
"type": {
|
|
270
|
+
"text": "array"
|
|
271
|
+
},
|
|
272
|
+
"default": "[accordionItem, ...iconElements, ...focusElements]"
|
|
273
|
+
},
|
|
274
|
+
{
|
|
275
|
+
"kind": "variable",
|
|
276
|
+
"name": "registerAccordionItem",
|
|
277
|
+
"description": "Registers the accordion item elements with the design system.",
|
|
278
|
+
"parameters": [
|
|
279
|
+
{
|
|
280
|
+
"description": "the prefix to use for the component name",
|
|
281
|
+
"name": "prefix"
|
|
282
|
+
}
|
|
283
|
+
]
|
|
284
|
+
}
|
|
285
|
+
],
|
|
286
|
+
"exports": [
|
|
287
|
+
{
|
|
288
|
+
"kind": "js",
|
|
289
|
+
"name": "accordionItemElements",
|
|
290
|
+
"declaration": {
|
|
291
|
+
"name": "accordionItemElements",
|
|
292
|
+
"module": "libs/components/src/lib/accordion-item/definition.ts"
|
|
293
|
+
}
|
|
294
|
+
},
|
|
295
|
+
{
|
|
296
|
+
"kind": "js",
|
|
297
|
+
"name": "registerAccordionItem",
|
|
298
|
+
"declaration": {
|
|
299
|
+
"name": "registerAccordionItem",
|
|
300
|
+
"module": "libs/components/src/lib/accordion-item/definition.ts"
|
|
301
|
+
}
|
|
302
|
+
}
|
|
303
|
+
]
|
|
304
|
+
},
|
|
219
305
|
{
|
|
220
306
|
"kind": "javascript-module",
|
|
221
307
|
"path": "libs/components/src/lib/action-group/action-group.ts",
|
|
@@ -297,6 +383,49 @@
|
|
|
297
383
|
}
|
|
298
384
|
]
|
|
299
385
|
},
|
|
386
|
+
{
|
|
387
|
+
"kind": "javascript-module",
|
|
388
|
+
"path": "libs/components/src/lib/action-group/definition.ts",
|
|
389
|
+
"declarations": [
|
|
390
|
+
{
|
|
391
|
+
"kind": "variable",
|
|
392
|
+
"name": "actionGroupElements",
|
|
393
|
+
"type": {
|
|
394
|
+
"text": "array"
|
|
395
|
+
},
|
|
396
|
+
"default": "[actionGroup]"
|
|
397
|
+
},
|
|
398
|
+
{
|
|
399
|
+
"kind": "variable",
|
|
400
|
+
"name": "registerActionGroup",
|
|
401
|
+
"description": "Registers the action-group elements with the design system.",
|
|
402
|
+
"parameters": [
|
|
403
|
+
{
|
|
404
|
+
"description": "the prefix to use for the component name",
|
|
405
|
+
"name": "prefix"
|
|
406
|
+
}
|
|
407
|
+
]
|
|
408
|
+
}
|
|
409
|
+
],
|
|
410
|
+
"exports": [
|
|
411
|
+
{
|
|
412
|
+
"kind": "js",
|
|
413
|
+
"name": "actionGroupElements",
|
|
414
|
+
"declaration": {
|
|
415
|
+
"name": "actionGroupElements",
|
|
416
|
+
"module": "libs/components/src/lib/action-group/definition.ts"
|
|
417
|
+
}
|
|
418
|
+
},
|
|
419
|
+
{
|
|
420
|
+
"kind": "js",
|
|
421
|
+
"name": "registerActionGroup",
|
|
422
|
+
"declaration": {
|
|
423
|
+
"name": "registerActionGroup",
|
|
424
|
+
"module": "libs/components/src/lib/action-group/definition.ts"
|
|
425
|
+
}
|
|
426
|
+
}
|
|
427
|
+
]
|
|
428
|
+
},
|
|
300
429
|
{
|
|
301
430
|
"kind": "javascript-module",
|
|
302
431
|
"path": "libs/components/src/lib/avatar/avatar.ts",
|
|
@@ -428,6 +557,49 @@
|
|
|
428
557
|
}
|
|
429
558
|
]
|
|
430
559
|
},
|
|
560
|
+
{
|
|
561
|
+
"kind": "javascript-module",
|
|
562
|
+
"path": "libs/components/src/lib/avatar/definition.ts",
|
|
563
|
+
"declarations": [
|
|
564
|
+
{
|
|
565
|
+
"kind": "variable",
|
|
566
|
+
"name": "avatarElements",
|
|
567
|
+
"type": {
|
|
568
|
+
"text": "array"
|
|
569
|
+
},
|
|
570
|
+
"default": "[avatar, ...iconElements]"
|
|
571
|
+
},
|
|
572
|
+
{
|
|
573
|
+
"kind": "variable",
|
|
574
|
+
"name": "registerAvatar",
|
|
575
|
+
"description": "Registers the avatar elements with the design system.",
|
|
576
|
+
"parameters": [
|
|
577
|
+
{
|
|
578
|
+
"description": "the prefix to use for the component name",
|
|
579
|
+
"name": "prefix"
|
|
580
|
+
}
|
|
581
|
+
]
|
|
582
|
+
}
|
|
583
|
+
],
|
|
584
|
+
"exports": [
|
|
585
|
+
{
|
|
586
|
+
"kind": "js",
|
|
587
|
+
"name": "avatarElements",
|
|
588
|
+
"declaration": {
|
|
589
|
+
"name": "avatarElements",
|
|
590
|
+
"module": "libs/components/src/lib/avatar/definition.ts"
|
|
591
|
+
}
|
|
592
|
+
},
|
|
593
|
+
{
|
|
594
|
+
"kind": "js",
|
|
595
|
+
"name": "registerAvatar",
|
|
596
|
+
"declaration": {
|
|
597
|
+
"name": "registerAvatar",
|
|
598
|
+
"module": "libs/components/src/lib/avatar/definition.ts"
|
|
599
|
+
}
|
|
600
|
+
}
|
|
601
|
+
]
|
|
602
|
+
},
|
|
431
603
|
{
|
|
432
604
|
"kind": "javascript-module",
|
|
433
605
|
"path": "libs/components/src/lib/badge/badge.ts",
|
|
@@ -525,6 +697,49 @@
|
|
|
525
697
|
}
|
|
526
698
|
]
|
|
527
699
|
},
|
|
700
|
+
{
|
|
701
|
+
"kind": "javascript-module",
|
|
702
|
+
"path": "libs/components/src/lib/badge/definition.ts",
|
|
703
|
+
"declarations": [
|
|
704
|
+
{
|
|
705
|
+
"kind": "variable",
|
|
706
|
+
"name": "badgeElements",
|
|
707
|
+
"type": {
|
|
708
|
+
"text": "array"
|
|
709
|
+
},
|
|
710
|
+
"default": "[badge, ...iconElements]"
|
|
711
|
+
},
|
|
712
|
+
{
|
|
713
|
+
"kind": "variable",
|
|
714
|
+
"name": "registerBadge",
|
|
715
|
+
"description": "Registers the badge elements with the design system.",
|
|
716
|
+
"parameters": [
|
|
717
|
+
{
|
|
718
|
+
"description": "the prefix to use for the component name",
|
|
719
|
+
"name": "prefix"
|
|
720
|
+
}
|
|
721
|
+
]
|
|
722
|
+
}
|
|
723
|
+
],
|
|
724
|
+
"exports": [
|
|
725
|
+
{
|
|
726
|
+
"kind": "js",
|
|
727
|
+
"name": "badgeElements",
|
|
728
|
+
"declaration": {
|
|
729
|
+
"name": "badgeElements",
|
|
730
|
+
"module": "libs/components/src/lib/badge/definition.ts"
|
|
731
|
+
}
|
|
732
|
+
},
|
|
733
|
+
{
|
|
734
|
+
"kind": "js",
|
|
735
|
+
"name": "registerBadge",
|
|
736
|
+
"declaration": {
|
|
737
|
+
"name": "registerBadge",
|
|
738
|
+
"module": "libs/components/src/lib/badge/definition.ts"
|
|
739
|
+
}
|
|
740
|
+
}
|
|
741
|
+
]
|
|
742
|
+
},
|
|
528
743
|
{
|
|
529
744
|
"kind": "javascript-module",
|
|
530
745
|
"path": "libs/components/src/lib/banner/banner.ts",
|
|
@@ -677,6 +892,49 @@
|
|
|
677
892
|
}
|
|
678
893
|
]
|
|
679
894
|
},
|
|
895
|
+
{
|
|
896
|
+
"kind": "javascript-module",
|
|
897
|
+
"path": "libs/components/src/lib/banner/definition.ts",
|
|
898
|
+
"declarations": [
|
|
899
|
+
{
|
|
900
|
+
"kind": "variable",
|
|
901
|
+
"name": "bannerElements",
|
|
902
|
+
"type": {
|
|
903
|
+
"text": "array"
|
|
904
|
+
},
|
|
905
|
+
"default": "[banner, ...iconElements, ...buttonElements]"
|
|
906
|
+
},
|
|
907
|
+
{
|
|
908
|
+
"kind": "variable",
|
|
909
|
+
"name": "registerBanner",
|
|
910
|
+
"description": "Registers the banner elements with the design system.",
|
|
911
|
+
"parameters": [
|
|
912
|
+
{
|
|
913
|
+
"description": "the prefix to use for the component name",
|
|
914
|
+
"name": "prefix"
|
|
915
|
+
}
|
|
916
|
+
]
|
|
917
|
+
}
|
|
918
|
+
],
|
|
919
|
+
"exports": [
|
|
920
|
+
{
|
|
921
|
+
"kind": "js",
|
|
922
|
+
"name": "bannerElements",
|
|
923
|
+
"declaration": {
|
|
924
|
+
"name": "bannerElements",
|
|
925
|
+
"module": "libs/components/src/lib/banner/definition.ts"
|
|
926
|
+
}
|
|
927
|
+
},
|
|
928
|
+
{
|
|
929
|
+
"kind": "js",
|
|
930
|
+
"name": "registerBanner",
|
|
931
|
+
"declaration": {
|
|
932
|
+
"name": "registerBanner",
|
|
933
|
+
"module": "libs/components/src/lib/banner/definition.ts"
|
|
934
|
+
}
|
|
935
|
+
}
|
|
936
|
+
]
|
|
937
|
+
},
|
|
680
938
|
{
|
|
681
939
|
"kind": "javascript-module",
|
|
682
940
|
"path": "libs/components/src/lib/breadcrumb/breadcrumb.ts",
|
|
@@ -702,6 +960,49 @@
|
|
|
702
960
|
}
|
|
703
961
|
]
|
|
704
962
|
},
|
|
963
|
+
{
|
|
964
|
+
"kind": "javascript-module",
|
|
965
|
+
"path": "libs/components/src/lib/breadcrumb/definition.ts",
|
|
966
|
+
"declarations": [
|
|
967
|
+
{
|
|
968
|
+
"kind": "variable",
|
|
969
|
+
"name": "breadcrumbElements",
|
|
970
|
+
"type": {
|
|
971
|
+
"text": "array"
|
|
972
|
+
},
|
|
973
|
+
"default": "[breadcrumb]"
|
|
974
|
+
},
|
|
975
|
+
{
|
|
976
|
+
"kind": "variable",
|
|
977
|
+
"name": "registerBreadcrumb",
|
|
978
|
+
"description": "Registers the breadcrumb elements with the design system.",
|
|
979
|
+
"parameters": [
|
|
980
|
+
{
|
|
981
|
+
"description": "the prefix to use for the component name",
|
|
982
|
+
"name": "prefix"
|
|
983
|
+
}
|
|
984
|
+
]
|
|
985
|
+
}
|
|
986
|
+
],
|
|
987
|
+
"exports": [
|
|
988
|
+
{
|
|
989
|
+
"kind": "js",
|
|
990
|
+
"name": "breadcrumbElements",
|
|
991
|
+
"declaration": {
|
|
992
|
+
"name": "breadcrumbElements",
|
|
993
|
+
"module": "libs/components/src/lib/breadcrumb/definition.ts"
|
|
994
|
+
}
|
|
995
|
+
},
|
|
996
|
+
{
|
|
997
|
+
"kind": "js",
|
|
998
|
+
"name": "registerBreadcrumb",
|
|
999
|
+
"declaration": {
|
|
1000
|
+
"name": "registerBreadcrumb",
|
|
1001
|
+
"module": "libs/components/src/lib/breadcrumb/definition.ts"
|
|
1002
|
+
}
|
|
1003
|
+
}
|
|
1004
|
+
]
|
|
1005
|
+
},
|
|
705
1006
|
{
|
|
706
1007
|
"kind": "javascript-module",
|
|
707
1008
|
"path": "libs/components/src/lib/breadcrumb-item/breadcrumb-item.ts",
|
|
@@ -745,6 +1046,49 @@
|
|
|
745
1046
|
}
|
|
746
1047
|
]
|
|
747
1048
|
},
|
|
1049
|
+
{
|
|
1050
|
+
"kind": "javascript-module",
|
|
1051
|
+
"path": "libs/components/src/lib/breadcrumb-item/definition.ts",
|
|
1052
|
+
"declarations": [
|
|
1053
|
+
{
|
|
1054
|
+
"kind": "variable",
|
|
1055
|
+
"name": "breadcrumbItemElements",
|
|
1056
|
+
"type": {
|
|
1057
|
+
"text": "array"
|
|
1058
|
+
},
|
|
1059
|
+
"default": "[breadcrumbItem, ...iconElements, ...focusElements]"
|
|
1060
|
+
},
|
|
1061
|
+
{
|
|
1062
|
+
"kind": "variable",
|
|
1063
|
+
"name": "registerBreadcrumbItem",
|
|
1064
|
+
"description": "Registers the breadcrumb-item elements with the design system.",
|
|
1065
|
+
"parameters": [
|
|
1066
|
+
{
|
|
1067
|
+
"description": "the prefix to use for the component name",
|
|
1068
|
+
"name": "prefix"
|
|
1069
|
+
}
|
|
1070
|
+
]
|
|
1071
|
+
}
|
|
1072
|
+
],
|
|
1073
|
+
"exports": [
|
|
1074
|
+
{
|
|
1075
|
+
"kind": "js",
|
|
1076
|
+
"name": "breadcrumbItemElements",
|
|
1077
|
+
"declaration": {
|
|
1078
|
+
"name": "breadcrumbItemElements",
|
|
1079
|
+
"module": "libs/components/src/lib/breadcrumb-item/definition.ts"
|
|
1080
|
+
}
|
|
1081
|
+
},
|
|
1082
|
+
{
|
|
1083
|
+
"kind": "js",
|
|
1084
|
+
"name": "registerBreadcrumbItem",
|
|
1085
|
+
"declaration": {
|
|
1086
|
+
"name": "registerBreadcrumbItem",
|
|
1087
|
+
"module": "libs/components/src/lib/breadcrumb-item/definition.ts"
|
|
1088
|
+
}
|
|
1089
|
+
}
|
|
1090
|
+
]
|
|
1091
|
+
},
|
|
748
1092
|
{
|
|
749
1093
|
"kind": "javascript-module",
|
|
750
1094
|
"path": "libs/components/src/lib/button/button.ts",
|
|
@@ -878,6 +1222,49 @@
|
|
|
878
1222
|
}
|
|
879
1223
|
]
|
|
880
1224
|
},
|
|
1225
|
+
{
|
|
1226
|
+
"kind": "javascript-module",
|
|
1227
|
+
"path": "libs/components/src/lib/button/definition.ts",
|
|
1228
|
+
"declarations": [
|
|
1229
|
+
{
|
|
1230
|
+
"kind": "variable",
|
|
1231
|
+
"name": "buttonElements",
|
|
1232
|
+
"type": {
|
|
1233
|
+
"text": "array"
|
|
1234
|
+
},
|
|
1235
|
+
"default": "[button, ...iconElements, ...focusElements]"
|
|
1236
|
+
},
|
|
1237
|
+
{
|
|
1238
|
+
"kind": "variable",
|
|
1239
|
+
"name": "registerButton",
|
|
1240
|
+
"description": "Registers the button elements with the design system.",
|
|
1241
|
+
"parameters": [
|
|
1242
|
+
{
|
|
1243
|
+
"description": "the prefix to use for the component name",
|
|
1244
|
+
"name": "prefix"
|
|
1245
|
+
}
|
|
1246
|
+
]
|
|
1247
|
+
}
|
|
1248
|
+
],
|
|
1249
|
+
"exports": [
|
|
1250
|
+
{
|
|
1251
|
+
"kind": "js",
|
|
1252
|
+
"name": "buttonElements",
|
|
1253
|
+
"declaration": {
|
|
1254
|
+
"name": "buttonElements",
|
|
1255
|
+
"module": "libs/components/src/lib/button/definition.ts"
|
|
1256
|
+
}
|
|
1257
|
+
},
|
|
1258
|
+
{
|
|
1259
|
+
"kind": "js",
|
|
1260
|
+
"name": "registerButton",
|
|
1261
|
+
"declaration": {
|
|
1262
|
+
"name": "registerButton",
|
|
1263
|
+
"module": "libs/components/src/lib/button/definition.ts"
|
|
1264
|
+
}
|
|
1265
|
+
}
|
|
1266
|
+
]
|
|
1267
|
+
},
|
|
881
1268
|
{
|
|
882
1269
|
"kind": "javascript-module",
|
|
883
1270
|
"path": "libs/components/src/lib/calendar/calendar.ts",
|
|
@@ -1066,12 +1453,55 @@
|
|
|
1066
1453
|
},
|
|
1067
1454
|
{
|
|
1068
1455
|
"kind": "javascript-module",
|
|
1069
|
-
"path": "libs/components/src/lib/calendar
|
|
1456
|
+
"path": "libs/components/src/lib/calendar/definition.ts",
|
|
1070
1457
|
"declarations": [
|
|
1071
1458
|
{
|
|
1072
|
-
"kind": "
|
|
1073
|
-
"
|
|
1074
|
-
"
|
|
1459
|
+
"kind": "variable",
|
|
1460
|
+
"name": "calendarElements",
|
|
1461
|
+
"type": {
|
|
1462
|
+
"text": "array"
|
|
1463
|
+
},
|
|
1464
|
+
"default": "[calendar]"
|
|
1465
|
+
},
|
|
1466
|
+
{
|
|
1467
|
+
"kind": "variable",
|
|
1468
|
+
"name": "registerCalendar",
|
|
1469
|
+
"description": "Registers the calendar elements with the design system.",
|
|
1470
|
+
"parameters": [
|
|
1471
|
+
{
|
|
1472
|
+
"description": "the prefix to use for the component name",
|
|
1473
|
+
"name": "prefix"
|
|
1474
|
+
}
|
|
1475
|
+
]
|
|
1476
|
+
}
|
|
1477
|
+
],
|
|
1478
|
+
"exports": [
|
|
1479
|
+
{
|
|
1480
|
+
"kind": "js",
|
|
1481
|
+
"name": "calendarElements",
|
|
1482
|
+
"declaration": {
|
|
1483
|
+
"name": "calendarElements",
|
|
1484
|
+
"module": "libs/components/src/lib/calendar/definition.ts"
|
|
1485
|
+
}
|
|
1486
|
+
},
|
|
1487
|
+
{
|
|
1488
|
+
"kind": "js",
|
|
1489
|
+
"name": "registerCalendar",
|
|
1490
|
+
"declaration": {
|
|
1491
|
+
"name": "registerCalendar",
|
|
1492
|
+
"module": "libs/components/src/lib/calendar/definition.ts"
|
|
1493
|
+
}
|
|
1494
|
+
}
|
|
1495
|
+
]
|
|
1496
|
+
},
|
|
1497
|
+
{
|
|
1498
|
+
"kind": "javascript-module",
|
|
1499
|
+
"path": "libs/components/src/lib/calendar-event/calendar-event.ts",
|
|
1500
|
+
"declarations": [
|
|
1501
|
+
{
|
|
1502
|
+
"kind": "class",
|
|
1503
|
+
"description": "Base class for calendar-event",
|
|
1504
|
+
"name": "CalendarEvent",
|
|
1075
1505
|
"members": [
|
|
1076
1506
|
{
|
|
1077
1507
|
"kind": "field",
|
|
@@ -1210,6 +1640,49 @@
|
|
|
1210
1640
|
}
|
|
1211
1641
|
]
|
|
1212
1642
|
},
|
|
1643
|
+
{
|
|
1644
|
+
"kind": "javascript-module",
|
|
1645
|
+
"path": "libs/components/src/lib/calendar-event/definition.ts",
|
|
1646
|
+
"declarations": [
|
|
1647
|
+
{
|
|
1648
|
+
"kind": "variable",
|
|
1649
|
+
"name": "calendarEventElements",
|
|
1650
|
+
"type": {
|
|
1651
|
+
"text": "array"
|
|
1652
|
+
},
|
|
1653
|
+
"default": "[calendarEvent]"
|
|
1654
|
+
},
|
|
1655
|
+
{
|
|
1656
|
+
"kind": "variable",
|
|
1657
|
+
"name": "registerCalendarEvent",
|
|
1658
|
+
"description": "Registers the calendar-event elements with the design system.",
|
|
1659
|
+
"parameters": [
|
|
1660
|
+
{
|
|
1661
|
+
"description": "the prefix to use for the component name",
|
|
1662
|
+
"name": "prefix"
|
|
1663
|
+
}
|
|
1664
|
+
]
|
|
1665
|
+
}
|
|
1666
|
+
],
|
|
1667
|
+
"exports": [
|
|
1668
|
+
{
|
|
1669
|
+
"kind": "js",
|
|
1670
|
+
"name": "calendarEventElements",
|
|
1671
|
+
"declaration": {
|
|
1672
|
+
"name": "calendarEventElements",
|
|
1673
|
+
"module": "libs/components/src/lib/calendar-event/definition.ts"
|
|
1674
|
+
}
|
|
1675
|
+
},
|
|
1676
|
+
{
|
|
1677
|
+
"kind": "js",
|
|
1678
|
+
"name": "registerCalendarEvent",
|
|
1679
|
+
"declaration": {
|
|
1680
|
+
"name": "registerCalendarEvent",
|
|
1681
|
+
"module": "libs/components/src/lib/calendar-event/definition.ts"
|
|
1682
|
+
}
|
|
1683
|
+
}
|
|
1684
|
+
]
|
|
1685
|
+
},
|
|
1213
1686
|
{
|
|
1214
1687
|
"kind": "javascript-module",
|
|
1215
1688
|
"path": "libs/components/src/lib/card/card.ts",
|
|
@@ -1338,6 +1811,49 @@
|
|
|
1338
1811
|
}
|
|
1339
1812
|
]
|
|
1340
1813
|
},
|
|
1814
|
+
{
|
|
1815
|
+
"kind": "javascript-module",
|
|
1816
|
+
"path": "libs/components/src/lib/card/definition.ts",
|
|
1817
|
+
"declarations": [
|
|
1818
|
+
{
|
|
1819
|
+
"kind": "variable",
|
|
1820
|
+
"name": "cardElements",
|
|
1821
|
+
"type": {
|
|
1822
|
+
"text": "array"
|
|
1823
|
+
},
|
|
1824
|
+
"default": "[card, ...iconElements, ...elevationElements]"
|
|
1825
|
+
},
|
|
1826
|
+
{
|
|
1827
|
+
"kind": "variable",
|
|
1828
|
+
"name": "registerCard",
|
|
1829
|
+
"description": "Registers the card elements with the design system.",
|
|
1830
|
+
"parameters": [
|
|
1831
|
+
{
|
|
1832
|
+
"description": "the prefix to use for the component name",
|
|
1833
|
+
"name": "prefix"
|
|
1834
|
+
}
|
|
1835
|
+
]
|
|
1836
|
+
}
|
|
1837
|
+
],
|
|
1838
|
+
"exports": [
|
|
1839
|
+
{
|
|
1840
|
+
"kind": "js",
|
|
1841
|
+
"name": "cardElements",
|
|
1842
|
+
"declaration": {
|
|
1843
|
+
"name": "cardElements",
|
|
1844
|
+
"module": "libs/components/src/lib/card/definition.ts"
|
|
1845
|
+
}
|
|
1846
|
+
},
|
|
1847
|
+
{
|
|
1848
|
+
"kind": "js",
|
|
1849
|
+
"name": "registerCard",
|
|
1850
|
+
"declaration": {
|
|
1851
|
+
"name": "registerCard",
|
|
1852
|
+
"module": "libs/components/src/lib/card/definition.ts"
|
|
1853
|
+
}
|
|
1854
|
+
}
|
|
1855
|
+
]
|
|
1856
|
+
},
|
|
1341
1857
|
{
|
|
1342
1858
|
"kind": "javascript-module",
|
|
1343
1859
|
"path": "libs/components/src/lib/checkbox/checkbox.ts",
|
|
@@ -1400,6 +1916,92 @@
|
|
|
1400
1916
|
}
|
|
1401
1917
|
]
|
|
1402
1918
|
},
|
|
1919
|
+
{
|
|
1920
|
+
"kind": "javascript-module",
|
|
1921
|
+
"path": "libs/components/src/lib/checkbox/definition.ts",
|
|
1922
|
+
"declarations": [
|
|
1923
|
+
{
|
|
1924
|
+
"kind": "variable",
|
|
1925
|
+
"name": "checkboxElements",
|
|
1926
|
+
"type": {
|
|
1927
|
+
"text": "array"
|
|
1928
|
+
},
|
|
1929
|
+
"default": "[checkbox, ...iconElements, ...focusElements]"
|
|
1930
|
+
},
|
|
1931
|
+
{
|
|
1932
|
+
"kind": "variable",
|
|
1933
|
+
"name": "registerCheckbox",
|
|
1934
|
+
"description": "Registers the checkbox elements with the design system.",
|
|
1935
|
+
"parameters": [
|
|
1936
|
+
{
|
|
1937
|
+
"description": "the prefix to use for the component name",
|
|
1938
|
+
"name": "prefix"
|
|
1939
|
+
}
|
|
1940
|
+
]
|
|
1941
|
+
}
|
|
1942
|
+
],
|
|
1943
|
+
"exports": [
|
|
1944
|
+
{
|
|
1945
|
+
"kind": "js",
|
|
1946
|
+
"name": "checkboxElements",
|
|
1947
|
+
"declaration": {
|
|
1948
|
+
"name": "checkboxElements",
|
|
1949
|
+
"module": "libs/components/src/lib/checkbox/definition.ts"
|
|
1950
|
+
}
|
|
1951
|
+
},
|
|
1952
|
+
{
|
|
1953
|
+
"kind": "js",
|
|
1954
|
+
"name": "registerCheckbox",
|
|
1955
|
+
"declaration": {
|
|
1956
|
+
"name": "registerCheckbox",
|
|
1957
|
+
"module": "libs/components/src/lib/checkbox/definition.ts"
|
|
1958
|
+
}
|
|
1959
|
+
}
|
|
1960
|
+
]
|
|
1961
|
+
},
|
|
1962
|
+
{
|
|
1963
|
+
"kind": "javascript-module",
|
|
1964
|
+
"path": "libs/components/src/lib/dialog/definition.ts",
|
|
1965
|
+
"declarations": [
|
|
1966
|
+
{
|
|
1967
|
+
"kind": "variable",
|
|
1968
|
+
"name": "dialogElements",
|
|
1969
|
+
"type": {
|
|
1970
|
+
"text": "array"
|
|
1971
|
+
},
|
|
1972
|
+
"default": "[dialog, ...iconElements, ...buttonElements, ...elevationElements]"
|
|
1973
|
+
},
|
|
1974
|
+
{
|
|
1975
|
+
"kind": "variable",
|
|
1976
|
+
"name": "registerDialog",
|
|
1977
|
+
"description": "Registers the dialog elements with the design system.",
|
|
1978
|
+
"parameters": [
|
|
1979
|
+
{
|
|
1980
|
+
"description": "the prefix to use for the component name",
|
|
1981
|
+
"name": "prefix"
|
|
1982
|
+
}
|
|
1983
|
+
]
|
|
1984
|
+
}
|
|
1985
|
+
],
|
|
1986
|
+
"exports": [
|
|
1987
|
+
{
|
|
1988
|
+
"kind": "js",
|
|
1989
|
+
"name": "dialogElements",
|
|
1990
|
+
"declaration": {
|
|
1991
|
+
"name": "dialogElements",
|
|
1992
|
+
"module": "libs/components/src/lib/dialog/definition.ts"
|
|
1993
|
+
}
|
|
1994
|
+
},
|
|
1995
|
+
{
|
|
1996
|
+
"kind": "js",
|
|
1997
|
+
"name": "registerDialog",
|
|
1998
|
+
"declaration": {
|
|
1999
|
+
"name": "registerDialog",
|
|
2000
|
+
"module": "libs/components/src/lib/dialog/definition.ts"
|
|
2001
|
+
}
|
|
2002
|
+
}
|
|
2003
|
+
]
|
|
2004
|
+
},
|
|
1403
2005
|
{
|
|
1404
2006
|
"kind": "javascript-module",
|
|
1405
2007
|
"path": "libs/components/src/lib/dialog/dialog.ts",
|
|
@@ -1646,6 +2248,49 @@
|
|
|
1646
2248
|
}
|
|
1647
2249
|
]
|
|
1648
2250
|
},
|
|
2251
|
+
{
|
|
2252
|
+
"kind": "javascript-module",
|
|
2253
|
+
"path": "libs/components/src/lib/divider/definition.ts",
|
|
2254
|
+
"declarations": [
|
|
2255
|
+
{
|
|
2256
|
+
"kind": "variable",
|
|
2257
|
+
"name": "dividerElements",
|
|
2258
|
+
"type": {
|
|
2259
|
+
"text": "array"
|
|
2260
|
+
},
|
|
2261
|
+
"default": "[divider]"
|
|
2262
|
+
},
|
|
2263
|
+
{
|
|
2264
|
+
"kind": "variable",
|
|
2265
|
+
"name": "registerDivider",
|
|
2266
|
+
"description": "Registers the divider elements with the design system.",
|
|
2267
|
+
"parameters": [
|
|
2268
|
+
{
|
|
2269
|
+
"description": "the prefix to use for the component name",
|
|
2270
|
+
"name": "prefix"
|
|
2271
|
+
}
|
|
2272
|
+
]
|
|
2273
|
+
}
|
|
2274
|
+
],
|
|
2275
|
+
"exports": [
|
|
2276
|
+
{
|
|
2277
|
+
"kind": "js",
|
|
2278
|
+
"name": "dividerElements",
|
|
2279
|
+
"declaration": {
|
|
2280
|
+
"name": "dividerElements",
|
|
2281
|
+
"module": "libs/components/src/lib/divider/definition.ts"
|
|
2282
|
+
}
|
|
2283
|
+
},
|
|
2284
|
+
{
|
|
2285
|
+
"kind": "js",
|
|
2286
|
+
"name": "registerDivider",
|
|
2287
|
+
"declaration": {
|
|
2288
|
+
"name": "registerDivider",
|
|
2289
|
+
"module": "libs/components/src/lib/divider/definition.ts"
|
|
2290
|
+
}
|
|
2291
|
+
}
|
|
2292
|
+
]
|
|
2293
|
+
},
|
|
1649
2294
|
{
|
|
1650
2295
|
"kind": "javascript-module",
|
|
1651
2296
|
"path": "libs/components/src/lib/divider/divider.ts",
|
|
@@ -1671,6 +2316,49 @@
|
|
|
1671
2316
|
}
|
|
1672
2317
|
]
|
|
1673
2318
|
},
|
|
2319
|
+
{
|
|
2320
|
+
"kind": "javascript-module",
|
|
2321
|
+
"path": "libs/components/src/lib/elevation/definition.ts",
|
|
2322
|
+
"declarations": [
|
|
2323
|
+
{
|
|
2324
|
+
"kind": "variable",
|
|
2325
|
+
"name": "elevationElements",
|
|
2326
|
+
"type": {
|
|
2327
|
+
"text": "array"
|
|
2328
|
+
},
|
|
2329
|
+
"default": "[elevation]"
|
|
2330
|
+
},
|
|
2331
|
+
{
|
|
2332
|
+
"kind": "variable",
|
|
2333
|
+
"name": "registerElevation",
|
|
2334
|
+
"description": "Registers the elevation elements with the design system.",
|
|
2335
|
+
"parameters": [
|
|
2336
|
+
{
|
|
2337
|
+
"description": "the prefix to use for the component name",
|
|
2338
|
+
"name": "prefix"
|
|
2339
|
+
}
|
|
2340
|
+
]
|
|
2341
|
+
}
|
|
2342
|
+
],
|
|
2343
|
+
"exports": [
|
|
2344
|
+
{
|
|
2345
|
+
"kind": "js",
|
|
2346
|
+
"name": "elevationElements",
|
|
2347
|
+
"declaration": {
|
|
2348
|
+
"name": "elevationElements",
|
|
2349
|
+
"module": "libs/components/src/lib/elevation/definition.ts"
|
|
2350
|
+
}
|
|
2351
|
+
},
|
|
2352
|
+
{
|
|
2353
|
+
"kind": "js",
|
|
2354
|
+
"name": "registerElevation",
|
|
2355
|
+
"declaration": {
|
|
2356
|
+
"name": "registerElevation",
|
|
2357
|
+
"module": "libs/components/src/lib/elevation/definition.ts"
|
|
2358
|
+
}
|
|
2359
|
+
}
|
|
2360
|
+
]
|
|
2361
|
+
},
|
|
1674
2362
|
{
|
|
1675
2363
|
"kind": "javascript-module",
|
|
1676
2364
|
"path": "libs/components/src/lib/elevation/elevation.ts",
|
|
@@ -1734,6 +2422,49 @@
|
|
|
1734
2422
|
}
|
|
1735
2423
|
]
|
|
1736
2424
|
},
|
|
2425
|
+
{
|
|
2426
|
+
"kind": "javascript-module",
|
|
2427
|
+
"path": "libs/components/src/lib/fab/definition.ts",
|
|
2428
|
+
"declarations": [
|
|
2429
|
+
{
|
|
2430
|
+
"kind": "variable",
|
|
2431
|
+
"name": "fabElements",
|
|
2432
|
+
"type": {
|
|
2433
|
+
"text": "array"
|
|
2434
|
+
},
|
|
2435
|
+
"default": "[fab, ...iconElements, ...focusElements]"
|
|
2436
|
+
},
|
|
2437
|
+
{
|
|
2438
|
+
"kind": "variable",
|
|
2439
|
+
"name": "registerFab",
|
|
2440
|
+
"description": "Registers the FAB elements with the design system.",
|
|
2441
|
+
"parameters": [
|
|
2442
|
+
{
|
|
2443
|
+
"description": "the prefix to use for the component name",
|
|
2444
|
+
"name": "prefix"
|
|
2445
|
+
}
|
|
2446
|
+
]
|
|
2447
|
+
}
|
|
2448
|
+
],
|
|
2449
|
+
"exports": [
|
|
2450
|
+
{
|
|
2451
|
+
"kind": "js",
|
|
2452
|
+
"name": "fabElements",
|
|
2453
|
+
"declaration": {
|
|
2454
|
+
"name": "fabElements",
|
|
2455
|
+
"module": "libs/components/src/lib/fab/definition.ts"
|
|
2456
|
+
}
|
|
2457
|
+
},
|
|
2458
|
+
{
|
|
2459
|
+
"kind": "js",
|
|
2460
|
+
"name": "registerFab",
|
|
2461
|
+
"declaration": {
|
|
2462
|
+
"name": "registerFab",
|
|
2463
|
+
"module": "libs/components/src/lib/fab/definition.ts"
|
|
2464
|
+
}
|
|
2465
|
+
}
|
|
2466
|
+
]
|
|
2467
|
+
},
|
|
1737
2468
|
{
|
|
1738
2469
|
"kind": "javascript-module",
|
|
1739
2470
|
"path": "libs/components/src/lib/fab/fab.ts",
|
|
@@ -1814,6 +2545,49 @@
|
|
|
1814
2545
|
}
|
|
1815
2546
|
]
|
|
1816
2547
|
},
|
|
2548
|
+
{
|
|
2549
|
+
"kind": "javascript-module",
|
|
2550
|
+
"path": "libs/components/src/lib/focus/definition.ts",
|
|
2551
|
+
"declarations": [
|
|
2552
|
+
{
|
|
2553
|
+
"kind": "variable",
|
|
2554
|
+
"name": "focusElements",
|
|
2555
|
+
"type": {
|
|
2556
|
+
"text": "array"
|
|
2557
|
+
},
|
|
2558
|
+
"default": "[focus]"
|
|
2559
|
+
},
|
|
2560
|
+
{
|
|
2561
|
+
"kind": "variable",
|
|
2562
|
+
"name": "registerFocus",
|
|
2563
|
+
"description": "Registers the focus component",
|
|
2564
|
+
"parameters": [
|
|
2565
|
+
{
|
|
2566
|
+
"description": "the prefix to use for the component name",
|
|
2567
|
+
"name": "prefix"
|
|
2568
|
+
}
|
|
2569
|
+
]
|
|
2570
|
+
}
|
|
2571
|
+
],
|
|
2572
|
+
"exports": [
|
|
2573
|
+
{
|
|
2574
|
+
"kind": "js",
|
|
2575
|
+
"name": "focusElements",
|
|
2576
|
+
"declaration": {
|
|
2577
|
+
"name": "focusElements",
|
|
2578
|
+
"module": "libs/components/src/lib/focus/definition.ts"
|
|
2579
|
+
}
|
|
2580
|
+
},
|
|
2581
|
+
{
|
|
2582
|
+
"kind": "js",
|
|
2583
|
+
"name": "registerFocus",
|
|
2584
|
+
"declaration": {
|
|
2585
|
+
"name": "registerFocus",
|
|
2586
|
+
"module": "libs/components/src/lib/focus/definition.ts"
|
|
2587
|
+
}
|
|
2588
|
+
}
|
|
2589
|
+
]
|
|
2590
|
+
},
|
|
1817
2591
|
{
|
|
1818
2592
|
"kind": "javascript-module",
|
|
1819
2593
|
"path": "libs/components/src/lib/focus/focus.ts",
|
|
@@ -1839,6 +2613,49 @@
|
|
|
1839
2613
|
}
|
|
1840
2614
|
]
|
|
1841
2615
|
},
|
|
2616
|
+
{
|
|
2617
|
+
"kind": "javascript-module",
|
|
2618
|
+
"path": "libs/components/src/lib/header/definition.ts",
|
|
2619
|
+
"declarations": [
|
|
2620
|
+
{
|
|
2621
|
+
"kind": "variable",
|
|
2622
|
+
"name": "headerElements",
|
|
2623
|
+
"type": {
|
|
2624
|
+
"text": "array"
|
|
2625
|
+
},
|
|
2626
|
+
"default": "[header, ...elevationElements]"
|
|
2627
|
+
},
|
|
2628
|
+
{
|
|
2629
|
+
"kind": "variable",
|
|
2630
|
+
"name": "registerHeader",
|
|
2631
|
+
"description": "Registers the header elements with the design system.",
|
|
2632
|
+
"parameters": [
|
|
2633
|
+
{
|
|
2634
|
+
"description": "the prefix to use for the component name",
|
|
2635
|
+
"name": "prefix"
|
|
2636
|
+
}
|
|
2637
|
+
]
|
|
2638
|
+
}
|
|
2639
|
+
],
|
|
2640
|
+
"exports": [
|
|
2641
|
+
{
|
|
2642
|
+
"kind": "js",
|
|
2643
|
+
"name": "headerElements",
|
|
2644
|
+
"declaration": {
|
|
2645
|
+
"name": "headerElements",
|
|
2646
|
+
"module": "libs/components/src/lib/header/definition.ts"
|
|
2647
|
+
}
|
|
2648
|
+
},
|
|
2649
|
+
{
|
|
2650
|
+
"kind": "js",
|
|
2651
|
+
"name": "registerHeader",
|
|
2652
|
+
"declaration": {
|
|
2653
|
+
"name": "registerHeader",
|
|
2654
|
+
"module": "libs/components/src/lib/header/definition.ts"
|
|
2655
|
+
}
|
|
2656
|
+
}
|
|
2657
|
+
]
|
|
2658
|
+
},
|
|
1842
2659
|
{
|
|
1843
2660
|
"kind": "javascript-module",
|
|
1844
2661
|
"path": "libs/components/src/lib/header/header.ts",
|
|
@@ -1905,6 +2722,49 @@
|
|
|
1905
2722
|
}
|
|
1906
2723
|
]
|
|
1907
2724
|
},
|
|
2725
|
+
{
|
|
2726
|
+
"kind": "javascript-module",
|
|
2727
|
+
"path": "libs/components/src/lib/icon/definition.ts",
|
|
2728
|
+
"declarations": [
|
|
2729
|
+
{
|
|
2730
|
+
"kind": "variable",
|
|
2731
|
+
"name": "iconElements",
|
|
2732
|
+
"type": {
|
|
2733
|
+
"text": "array"
|
|
2734
|
+
},
|
|
2735
|
+
"default": "[icon]"
|
|
2736
|
+
},
|
|
2737
|
+
{
|
|
2738
|
+
"kind": "variable",
|
|
2739
|
+
"name": "registerIcon",
|
|
2740
|
+
"description": "Registers the icon component & its prerequisite components with the design system.",
|
|
2741
|
+
"parameters": [
|
|
2742
|
+
{
|
|
2743
|
+
"description": "the prefix to use for the component name",
|
|
2744
|
+
"name": "prefix"
|
|
2745
|
+
}
|
|
2746
|
+
]
|
|
2747
|
+
}
|
|
2748
|
+
],
|
|
2749
|
+
"exports": [
|
|
2750
|
+
{
|
|
2751
|
+
"kind": "js",
|
|
2752
|
+
"name": "iconElements",
|
|
2753
|
+
"declaration": {
|
|
2754
|
+
"name": "iconElements",
|
|
2755
|
+
"module": "libs/components/src/lib/icon/definition.ts"
|
|
2756
|
+
}
|
|
2757
|
+
},
|
|
2758
|
+
{
|
|
2759
|
+
"kind": "js",
|
|
2760
|
+
"name": "registerIcon",
|
|
2761
|
+
"declaration": {
|
|
2762
|
+
"name": "registerIcon",
|
|
2763
|
+
"module": "libs/components/src/lib/icon/definition.ts"
|
|
2764
|
+
}
|
|
2765
|
+
}
|
|
2766
|
+
]
|
|
2767
|
+
},
|
|
1908
2768
|
{
|
|
1909
2769
|
"kind": "javascript-module",
|
|
1910
2770
|
"path": "libs/components/src/lib/icon/icon.placeholder.ts",
|
|
@@ -2008,6 +2868,49 @@
|
|
|
2008
2868
|
}
|
|
2009
2869
|
]
|
|
2010
2870
|
},
|
|
2871
|
+
{
|
|
2872
|
+
"kind": "javascript-module",
|
|
2873
|
+
"path": "libs/components/src/lib/layout/definition.ts",
|
|
2874
|
+
"declarations": [
|
|
2875
|
+
{
|
|
2876
|
+
"kind": "variable",
|
|
2877
|
+
"name": "layoutElements",
|
|
2878
|
+
"type": {
|
|
2879
|
+
"text": "array"
|
|
2880
|
+
},
|
|
2881
|
+
"default": "[layout]"
|
|
2882
|
+
},
|
|
2883
|
+
{
|
|
2884
|
+
"kind": "variable",
|
|
2885
|
+
"name": "registerLayout",
|
|
2886
|
+
"description": "Registers the layout elements with the design system.",
|
|
2887
|
+
"parameters": [
|
|
2888
|
+
{
|
|
2889
|
+
"description": "the prefix to use for the component name",
|
|
2890
|
+
"name": "prefix"
|
|
2891
|
+
}
|
|
2892
|
+
]
|
|
2893
|
+
}
|
|
2894
|
+
],
|
|
2895
|
+
"exports": [
|
|
2896
|
+
{
|
|
2897
|
+
"kind": "js",
|
|
2898
|
+
"name": "layoutElements",
|
|
2899
|
+
"declaration": {
|
|
2900
|
+
"name": "layoutElements",
|
|
2901
|
+
"module": "libs/components/src/lib/layout/definition.ts"
|
|
2902
|
+
}
|
|
2903
|
+
},
|
|
2904
|
+
{
|
|
2905
|
+
"kind": "js",
|
|
2906
|
+
"name": "registerLayout",
|
|
2907
|
+
"declaration": {
|
|
2908
|
+
"name": "registerLayout",
|
|
2909
|
+
"module": "libs/components/src/lib/layout/definition.ts"
|
|
2910
|
+
}
|
|
2911
|
+
}
|
|
2912
|
+
]
|
|
2913
|
+
},
|
|
2011
2914
|
{
|
|
2012
2915
|
"kind": "javascript-module",
|
|
2013
2916
|
"path": "libs/components/src/lib/layout/layout.ts",
|
|
@@ -2108,6 +3011,49 @@
|
|
|
2108
3011
|
}
|
|
2109
3012
|
]
|
|
2110
3013
|
},
|
|
3014
|
+
{
|
|
3015
|
+
"kind": "javascript-module",
|
|
3016
|
+
"path": "libs/components/src/lib/listbox/definition.ts",
|
|
3017
|
+
"declarations": [
|
|
3018
|
+
{
|
|
3019
|
+
"kind": "variable",
|
|
3020
|
+
"name": "listboxElements",
|
|
3021
|
+
"type": {
|
|
3022
|
+
"text": "array"
|
|
3023
|
+
},
|
|
3024
|
+
"default": "[listbox, ...listboxOptionElements, ...focusElements]"
|
|
3025
|
+
},
|
|
3026
|
+
{
|
|
3027
|
+
"kind": "variable",
|
|
3028
|
+
"name": "registerListbox",
|
|
3029
|
+
"description": "Registers the listbox elements with the design system.",
|
|
3030
|
+
"parameters": [
|
|
3031
|
+
{
|
|
3032
|
+
"description": "the prefix to use for the component name",
|
|
3033
|
+
"name": "prefix"
|
|
3034
|
+
}
|
|
3035
|
+
]
|
|
3036
|
+
}
|
|
3037
|
+
],
|
|
3038
|
+
"exports": [
|
|
3039
|
+
{
|
|
3040
|
+
"kind": "js",
|
|
3041
|
+
"name": "listboxElements",
|
|
3042
|
+
"declaration": {
|
|
3043
|
+
"name": "listboxElements",
|
|
3044
|
+
"module": "libs/components/src/lib/listbox/definition.ts"
|
|
3045
|
+
}
|
|
3046
|
+
},
|
|
3047
|
+
{
|
|
3048
|
+
"kind": "js",
|
|
3049
|
+
"name": "registerListbox",
|
|
3050
|
+
"declaration": {
|
|
3051
|
+
"name": "registerListbox",
|
|
3052
|
+
"module": "libs/components/src/lib/listbox/definition.ts"
|
|
3053
|
+
}
|
|
3054
|
+
}
|
|
3055
|
+
]
|
|
3056
|
+
},
|
|
2111
3057
|
{
|
|
2112
3058
|
"kind": "javascript-module",
|
|
2113
3059
|
"path": "libs/components/src/lib/listbox/listbox.ts",
|
|
@@ -2181,6 +3127,49 @@
|
|
|
2181
3127
|
}
|
|
2182
3128
|
]
|
|
2183
3129
|
},
|
|
3130
|
+
{
|
|
3131
|
+
"kind": "javascript-module",
|
|
3132
|
+
"path": "libs/components/src/lib/menu/definition.ts",
|
|
3133
|
+
"declarations": [
|
|
3134
|
+
{
|
|
3135
|
+
"kind": "variable",
|
|
3136
|
+
"name": "menuElements",
|
|
3137
|
+
"type": {
|
|
3138
|
+
"text": "array"
|
|
3139
|
+
},
|
|
3140
|
+
"default": "[menu, ...popupElements, ...menuItemElements]"
|
|
3141
|
+
},
|
|
3142
|
+
{
|
|
3143
|
+
"kind": "variable",
|
|
3144
|
+
"name": "registerMenu",
|
|
3145
|
+
"description": "Registers the calendar-event elements with the design system.",
|
|
3146
|
+
"parameters": [
|
|
3147
|
+
{
|
|
3148
|
+
"description": "the prefix to use for the component name",
|
|
3149
|
+
"name": "prefix"
|
|
3150
|
+
}
|
|
3151
|
+
]
|
|
3152
|
+
}
|
|
3153
|
+
],
|
|
3154
|
+
"exports": [
|
|
3155
|
+
{
|
|
3156
|
+
"kind": "js",
|
|
3157
|
+
"name": "menuElements",
|
|
3158
|
+
"declaration": {
|
|
3159
|
+
"name": "menuElements",
|
|
3160
|
+
"module": "libs/components/src/lib/menu/definition.ts"
|
|
3161
|
+
}
|
|
3162
|
+
},
|
|
3163
|
+
{
|
|
3164
|
+
"kind": "js",
|
|
3165
|
+
"name": "registerMenu",
|
|
3166
|
+
"declaration": {
|
|
3167
|
+
"name": "registerMenu",
|
|
3168
|
+
"module": "libs/components/src/lib/menu/definition.ts"
|
|
3169
|
+
}
|
|
3170
|
+
}
|
|
3171
|
+
]
|
|
3172
|
+
},
|
|
2184
3173
|
{
|
|
2185
3174
|
"kind": "javascript-module",
|
|
2186
3175
|
"path": "libs/components/src/lib/menu/menu.ts",
|
|
@@ -2273,6 +3262,49 @@
|
|
|
2273
3262
|
}
|
|
2274
3263
|
]
|
|
2275
3264
|
},
|
|
3265
|
+
{
|
|
3266
|
+
"kind": "javascript-module",
|
|
3267
|
+
"path": "libs/components/src/lib/menu-item/definition.ts",
|
|
3268
|
+
"declarations": [
|
|
3269
|
+
{
|
|
3270
|
+
"kind": "variable",
|
|
3271
|
+
"name": "menuItemElements",
|
|
3272
|
+
"type": {
|
|
3273
|
+
"text": "array"
|
|
3274
|
+
},
|
|
3275
|
+
"default": "[menuItem, ...iconElements, ...focusElements]"
|
|
3276
|
+
},
|
|
3277
|
+
{
|
|
3278
|
+
"kind": "variable",
|
|
3279
|
+
"name": "registerMenuItem",
|
|
3280
|
+
"description": "Registers the menu-item elements with the design system.",
|
|
3281
|
+
"parameters": [
|
|
3282
|
+
{
|
|
3283
|
+
"description": "the prefix to use for the component name",
|
|
3284
|
+
"name": "prefix"
|
|
3285
|
+
}
|
|
3286
|
+
]
|
|
3287
|
+
}
|
|
3288
|
+
],
|
|
3289
|
+
"exports": [
|
|
3290
|
+
{
|
|
3291
|
+
"kind": "js",
|
|
3292
|
+
"name": "menuItemElements",
|
|
3293
|
+
"declaration": {
|
|
3294
|
+
"name": "menuItemElements",
|
|
3295
|
+
"module": "libs/components/src/lib/menu-item/definition.ts"
|
|
3296
|
+
}
|
|
3297
|
+
},
|
|
3298
|
+
{
|
|
3299
|
+
"kind": "js",
|
|
3300
|
+
"name": "registerMenuItem",
|
|
3301
|
+
"declaration": {
|
|
3302
|
+
"name": "registerMenuItem",
|
|
3303
|
+
"module": "libs/components/src/lib/menu-item/definition.ts"
|
|
3304
|
+
}
|
|
3305
|
+
}
|
|
3306
|
+
]
|
|
3307
|
+
},
|
|
2276
3308
|
{
|
|
2277
3309
|
"kind": "javascript-module",
|
|
2278
3310
|
"path": "libs/components/src/lib/menu-item/menu-item.ts",
|
|
@@ -2319,6 +3351,49 @@
|
|
|
2319
3351
|
}
|
|
2320
3352
|
]
|
|
2321
3353
|
},
|
|
3354
|
+
{
|
|
3355
|
+
"kind": "javascript-module",
|
|
3356
|
+
"path": "libs/components/src/lib/nav/definition.ts",
|
|
3357
|
+
"declarations": [
|
|
3358
|
+
{
|
|
3359
|
+
"kind": "variable",
|
|
3360
|
+
"name": "navElements",
|
|
3361
|
+
"type": {
|
|
3362
|
+
"text": "array"
|
|
3363
|
+
},
|
|
3364
|
+
"default": "[nav]"
|
|
3365
|
+
},
|
|
3366
|
+
{
|
|
3367
|
+
"kind": "variable",
|
|
3368
|
+
"name": "registerNav",
|
|
3369
|
+
"description": "Registers the nav elements with the design system.",
|
|
3370
|
+
"parameters": [
|
|
3371
|
+
{
|
|
3372
|
+
"description": "the prefix to use for the component name",
|
|
3373
|
+
"name": "prefix"
|
|
3374
|
+
}
|
|
3375
|
+
]
|
|
3376
|
+
}
|
|
3377
|
+
],
|
|
3378
|
+
"exports": [
|
|
3379
|
+
{
|
|
3380
|
+
"kind": "js",
|
|
3381
|
+
"name": "navElements",
|
|
3382
|
+
"declaration": {
|
|
3383
|
+
"name": "navElements",
|
|
3384
|
+
"module": "libs/components/src/lib/nav/definition.ts"
|
|
3385
|
+
}
|
|
3386
|
+
},
|
|
3387
|
+
{
|
|
3388
|
+
"kind": "js",
|
|
3389
|
+
"name": "registerNav",
|
|
3390
|
+
"declaration": {
|
|
3391
|
+
"name": "registerNav",
|
|
3392
|
+
"module": "libs/components/src/lib/nav/definition.ts"
|
|
3393
|
+
}
|
|
3394
|
+
}
|
|
3395
|
+
]
|
|
3396
|
+
},
|
|
2322
3397
|
{
|
|
2323
3398
|
"kind": "javascript-module",
|
|
2324
3399
|
"path": "libs/components/src/lib/nav/nav.ts",
|
|
@@ -2344,6 +3419,49 @@
|
|
|
2344
3419
|
}
|
|
2345
3420
|
]
|
|
2346
3421
|
},
|
|
3422
|
+
{
|
|
3423
|
+
"kind": "javascript-module",
|
|
3424
|
+
"path": "libs/components/src/lib/nav-disclosure/definition.ts",
|
|
3425
|
+
"declarations": [
|
|
3426
|
+
{
|
|
3427
|
+
"kind": "variable",
|
|
3428
|
+
"name": "navDisclosureElements",
|
|
3429
|
+
"type": {
|
|
3430
|
+
"text": "array"
|
|
3431
|
+
},
|
|
3432
|
+
"default": "[navDisclosure, ...iconElements, ...focusElements]"
|
|
3433
|
+
},
|
|
3434
|
+
{
|
|
3435
|
+
"kind": "variable",
|
|
3436
|
+
"name": "registerNavDisclosure",
|
|
3437
|
+
"description": "Registers the nav-disclosure elements with the design system.",
|
|
3438
|
+
"parameters": [
|
|
3439
|
+
{
|
|
3440
|
+
"description": "the prefix to use for the component name",
|
|
3441
|
+
"name": "prefix"
|
|
3442
|
+
}
|
|
3443
|
+
]
|
|
3444
|
+
}
|
|
3445
|
+
],
|
|
3446
|
+
"exports": [
|
|
3447
|
+
{
|
|
3448
|
+
"kind": "js",
|
|
3449
|
+
"name": "navDisclosureElements",
|
|
3450
|
+
"declaration": {
|
|
3451
|
+
"name": "navDisclosureElements",
|
|
3452
|
+
"module": "libs/components/src/lib/nav-disclosure/definition.ts"
|
|
3453
|
+
}
|
|
3454
|
+
},
|
|
3455
|
+
{
|
|
3456
|
+
"kind": "js",
|
|
3457
|
+
"name": "registerNavDisclosure",
|
|
3458
|
+
"declaration": {
|
|
3459
|
+
"name": "registerNavDisclosure",
|
|
3460
|
+
"module": "libs/components/src/lib/nav-disclosure/definition.ts"
|
|
3461
|
+
}
|
|
3462
|
+
}
|
|
3463
|
+
]
|
|
3464
|
+
},
|
|
2347
3465
|
{
|
|
2348
3466
|
"kind": "javascript-module",
|
|
2349
3467
|
"path": "libs/components/src/lib/nav-disclosure/nav-disclosure.ts",
|
|
@@ -2419,6 +3537,49 @@
|
|
|
2419
3537
|
}
|
|
2420
3538
|
]
|
|
2421
3539
|
},
|
|
3540
|
+
{
|
|
3541
|
+
"kind": "javascript-module",
|
|
3542
|
+
"path": "libs/components/src/lib/nav-item/definition.ts",
|
|
3543
|
+
"declarations": [
|
|
3544
|
+
{
|
|
3545
|
+
"kind": "variable",
|
|
3546
|
+
"name": "navItemElements",
|
|
3547
|
+
"type": {
|
|
3548
|
+
"text": "array"
|
|
3549
|
+
},
|
|
3550
|
+
"default": "[navItem, ...iconElements, ...focusElements]"
|
|
3551
|
+
},
|
|
3552
|
+
{
|
|
3553
|
+
"kind": "variable",
|
|
3554
|
+
"name": "registerNavItem",
|
|
3555
|
+
"description": "Registers the nav-item elements with the design system.",
|
|
3556
|
+
"parameters": [
|
|
3557
|
+
{
|
|
3558
|
+
"description": "the prefix to use for the component name",
|
|
3559
|
+
"name": "prefix"
|
|
3560
|
+
}
|
|
3561
|
+
]
|
|
3562
|
+
}
|
|
3563
|
+
],
|
|
3564
|
+
"exports": [
|
|
3565
|
+
{
|
|
3566
|
+
"kind": "js",
|
|
3567
|
+
"name": "navItemElements",
|
|
3568
|
+
"declaration": {
|
|
3569
|
+
"name": "navItemElements",
|
|
3570
|
+
"module": "libs/components/src/lib/nav-item/definition.ts"
|
|
3571
|
+
}
|
|
3572
|
+
},
|
|
3573
|
+
{
|
|
3574
|
+
"kind": "js",
|
|
3575
|
+
"name": "registerNavItem",
|
|
3576
|
+
"declaration": {
|
|
3577
|
+
"name": "registerNavItem",
|
|
3578
|
+
"module": "libs/components/src/lib/nav-item/definition.ts"
|
|
3579
|
+
}
|
|
3580
|
+
}
|
|
3581
|
+
]
|
|
3582
|
+
},
|
|
2422
3583
|
{
|
|
2423
3584
|
"kind": "javascript-module",
|
|
2424
3585
|
"path": "libs/components/src/lib/nav-item/nav-item.ts",
|
|
@@ -2475,12 +3636,55 @@
|
|
|
2475
3636
|
},
|
|
2476
3637
|
{
|
|
2477
3638
|
"kind": "javascript-module",
|
|
2478
|
-
"path": "libs/components/src/lib/note/
|
|
3639
|
+
"path": "libs/components/src/lib/note/definition.ts",
|
|
2479
3640
|
"declarations": [
|
|
2480
3641
|
{
|
|
2481
|
-
"kind": "
|
|
2482
|
-
"
|
|
2483
|
-
"
|
|
3642
|
+
"kind": "variable",
|
|
3643
|
+
"name": "noteElements",
|
|
3644
|
+
"type": {
|
|
3645
|
+
"text": "array"
|
|
3646
|
+
},
|
|
3647
|
+
"default": "[note, ...iconElements]"
|
|
3648
|
+
},
|
|
3649
|
+
{
|
|
3650
|
+
"kind": "variable",
|
|
3651
|
+
"name": "registerNote",
|
|
3652
|
+
"description": "Registers the note elements with the design system.",
|
|
3653
|
+
"parameters": [
|
|
3654
|
+
{
|
|
3655
|
+
"description": "the prefix to use for the component name",
|
|
3656
|
+
"name": "prefix"
|
|
3657
|
+
}
|
|
3658
|
+
]
|
|
3659
|
+
}
|
|
3660
|
+
],
|
|
3661
|
+
"exports": [
|
|
3662
|
+
{
|
|
3663
|
+
"kind": "js",
|
|
3664
|
+
"name": "noteElements",
|
|
3665
|
+
"declaration": {
|
|
3666
|
+
"name": "noteElements",
|
|
3667
|
+
"module": "libs/components/src/lib/note/definition.ts"
|
|
3668
|
+
}
|
|
3669
|
+
},
|
|
3670
|
+
{
|
|
3671
|
+
"kind": "js",
|
|
3672
|
+
"name": "registerNote",
|
|
3673
|
+
"declaration": {
|
|
3674
|
+
"name": "registerNote",
|
|
3675
|
+
"module": "libs/components/src/lib/note/definition.ts"
|
|
3676
|
+
}
|
|
3677
|
+
}
|
|
3678
|
+
]
|
|
3679
|
+
},
|
|
3680
|
+
{
|
|
3681
|
+
"kind": "javascript-module",
|
|
3682
|
+
"path": "libs/components/src/lib/note/note.ts",
|
|
3683
|
+
"declarations": [
|
|
3684
|
+
{
|
|
3685
|
+
"kind": "class",
|
|
3686
|
+
"description": "Base class for note",
|
|
3687
|
+
"name": "Note",
|
|
2484
3688
|
"members": [
|
|
2485
3689
|
{
|
|
2486
3690
|
"kind": "field",
|
|
@@ -2533,6 +3737,49 @@
|
|
|
2533
3737
|
}
|
|
2534
3738
|
]
|
|
2535
3739
|
},
|
|
3740
|
+
{
|
|
3741
|
+
"kind": "javascript-module",
|
|
3742
|
+
"path": "libs/components/src/lib/number-field/definition.ts",
|
|
3743
|
+
"declarations": [
|
|
3744
|
+
{
|
|
3745
|
+
"kind": "variable",
|
|
3746
|
+
"name": "numberFieldElement",
|
|
3747
|
+
"type": {
|
|
3748
|
+
"text": "array"
|
|
3749
|
+
},
|
|
3750
|
+
"default": "[numberField, ...buttonElements, ...dividerElements]"
|
|
3751
|
+
},
|
|
3752
|
+
{
|
|
3753
|
+
"kind": "variable",
|
|
3754
|
+
"name": "registerNumberField",
|
|
3755
|
+
"description": "Registers the number-field elements with the design system.",
|
|
3756
|
+
"parameters": [
|
|
3757
|
+
{
|
|
3758
|
+
"description": "the prefix to use for the component name",
|
|
3759
|
+
"name": "prefix"
|
|
3760
|
+
}
|
|
3761
|
+
]
|
|
3762
|
+
}
|
|
3763
|
+
],
|
|
3764
|
+
"exports": [
|
|
3765
|
+
{
|
|
3766
|
+
"kind": "js",
|
|
3767
|
+
"name": "numberFieldElement",
|
|
3768
|
+
"declaration": {
|
|
3769
|
+
"name": "numberFieldElement",
|
|
3770
|
+
"module": "libs/components/src/lib/number-field/definition.ts"
|
|
3771
|
+
}
|
|
3772
|
+
},
|
|
3773
|
+
{
|
|
3774
|
+
"kind": "js",
|
|
3775
|
+
"name": "registerNumberField",
|
|
3776
|
+
"declaration": {
|
|
3777
|
+
"name": "registerNumberField",
|
|
3778
|
+
"module": "libs/components/src/lib/number-field/definition.ts"
|
|
3779
|
+
}
|
|
3780
|
+
}
|
|
3781
|
+
]
|
|
3782
|
+
},
|
|
2536
3783
|
{
|
|
2537
3784
|
"kind": "javascript-module",
|
|
2538
3785
|
"path": "libs/components/src/lib/number-field/number-field.ts",
|
|
@@ -2604,6 +3851,49 @@
|
|
|
2604
3851
|
}
|
|
2605
3852
|
]
|
|
2606
3853
|
},
|
|
3854
|
+
{
|
|
3855
|
+
"kind": "javascript-module",
|
|
3856
|
+
"path": "libs/components/src/lib/option/definition.ts",
|
|
3857
|
+
"declarations": [
|
|
3858
|
+
{
|
|
3859
|
+
"kind": "variable",
|
|
3860
|
+
"name": "listboxOptionElements",
|
|
3861
|
+
"type": {
|
|
3862
|
+
"text": "array"
|
|
3863
|
+
},
|
|
3864
|
+
"default": "[listboxOption, ...iconElements, ...focusElements]"
|
|
3865
|
+
},
|
|
3866
|
+
{
|
|
3867
|
+
"kind": "variable",
|
|
3868
|
+
"name": "registerOption",
|
|
3869
|
+
"description": "Registers the listbox-option elements with the design system.",
|
|
3870
|
+
"parameters": [
|
|
3871
|
+
{
|
|
3872
|
+
"description": "the prefix to use for the component name",
|
|
3873
|
+
"name": "prefix"
|
|
3874
|
+
}
|
|
3875
|
+
]
|
|
3876
|
+
}
|
|
3877
|
+
],
|
|
3878
|
+
"exports": [
|
|
3879
|
+
{
|
|
3880
|
+
"kind": "js",
|
|
3881
|
+
"name": "listboxOptionElements",
|
|
3882
|
+
"declaration": {
|
|
3883
|
+
"name": "listboxOptionElements",
|
|
3884
|
+
"module": "libs/components/src/lib/option/definition.ts"
|
|
3885
|
+
}
|
|
3886
|
+
},
|
|
3887
|
+
{
|
|
3888
|
+
"kind": "js",
|
|
3889
|
+
"name": "registerOption",
|
|
3890
|
+
"declaration": {
|
|
3891
|
+
"name": "registerOption",
|
|
3892
|
+
"module": "libs/components/src/lib/option/definition.ts"
|
|
3893
|
+
}
|
|
3894
|
+
}
|
|
3895
|
+
]
|
|
3896
|
+
},
|
|
2607
3897
|
{
|
|
2608
3898
|
"kind": "javascript-module",
|
|
2609
3899
|
"path": "libs/components/src/lib/option/option.ts",
|
|
@@ -2653,6 +3943,62 @@
|
|
|
2653
3943
|
}
|
|
2654
3944
|
]
|
|
2655
3945
|
},
|
|
3946
|
+
{
|
|
3947
|
+
"kind": "javascript-module",
|
|
3948
|
+
"path": "libs/components/src/lib/popup/definition.ts",
|
|
3949
|
+
"declarations": [
|
|
3950
|
+
{
|
|
3951
|
+
"kind": "variable",
|
|
3952
|
+
"name": "popup",
|
|
3953
|
+
"description": "Represents a popup custom element.\npopup is..."
|
|
3954
|
+
},
|
|
3955
|
+
{
|
|
3956
|
+
"kind": "variable",
|
|
3957
|
+
"name": "popupElements",
|
|
3958
|
+
"type": {
|
|
3959
|
+
"text": "array"
|
|
3960
|
+
},
|
|
3961
|
+
"default": "[popup, ...elevationElements, ...buttonElements]"
|
|
3962
|
+
},
|
|
3963
|
+
{
|
|
3964
|
+
"kind": "variable",
|
|
3965
|
+
"name": "registerPopup",
|
|
3966
|
+
"description": "Registers the popup elements with the design system.",
|
|
3967
|
+
"parameters": [
|
|
3968
|
+
{
|
|
3969
|
+
"description": "the prefix to use for the component name",
|
|
3970
|
+
"name": "prefix"
|
|
3971
|
+
}
|
|
3972
|
+
]
|
|
3973
|
+
}
|
|
3974
|
+
],
|
|
3975
|
+
"exports": [
|
|
3976
|
+
{
|
|
3977
|
+
"kind": "js",
|
|
3978
|
+
"name": "popup",
|
|
3979
|
+
"declaration": {
|
|
3980
|
+
"name": "popup",
|
|
3981
|
+
"module": "libs/components/src/lib/popup/definition.ts"
|
|
3982
|
+
}
|
|
3983
|
+
},
|
|
3984
|
+
{
|
|
3985
|
+
"kind": "js",
|
|
3986
|
+
"name": "popupElements",
|
|
3987
|
+
"declaration": {
|
|
3988
|
+
"name": "popupElements",
|
|
3989
|
+
"module": "libs/components/src/lib/popup/definition.ts"
|
|
3990
|
+
}
|
|
3991
|
+
},
|
|
3992
|
+
{
|
|
3993
|
+
"kind": "js",
|
|
3994
|
+
"name": "registerPopup",
|
|
3995
|
+
"declaration": {
|
|
3996
|
+
"name": "registerPopup",
|
|
3997
|
+
"module": "libs/components/src/lib/popup/definition.ts"
|
|
3998
|
+
}
|
|
3999
|
+
}
|
|
4000
|
+
]
|
|
4001
|
+
},
|
|
2656
4002
|
{
|
|
2657
4003
|
"kind": "javascript-module",
|
|
2658
4004
|
"path": "libs/components/src/lib/popup/popup.ts",
|
|
@@ -2950,6 +4296,49 @@
|
|
|
2950
4296
|
}
|
|
2951
4297
|
]
|
|
2952
4298
|
},
|
|
4299
|
+
{
|
|
4300
|
+
"kind": "javascript-module",
|
|
4301
|
+
"path": "libs/components/src/lib/progress/definition.ts",
|
|
4302
|
+
"declarations": [
|
|
4303
|
+
{
|
|
4304
|
+
"kind": "variable",
|
|
4305
|
+
"name": "progressElements",
|
|
4306
|
+
"type": {
|
|
4307
|
+
"text": "array"
|
|
4308
|
+
},
|
|
4309
|
+
"default": "[progress]"
|
|
4310
|
+
},
|
|
4311
|
+
{
|
|
4312
|
+
"kind": "variable",
|
|
4313
|
+
"name": "registerProgress",
|
|
4314
|
+
"description": "Registers the progress elements with the design system.",
|
|
4315
|
+
"parameters": [
|
|
4316
|
+
{
|
|
4317
|
+
"description": "the prefix to use for the component name",
|
|
4318
|
+
"name": "prefix"
|
|
4319
|
+
}
|
|
4320
|
+
]
|
|
4321
|
+
}
|
|
4322
|
+
],
|
|
4323
|
+
"exports": [
|
|
4324
|
+
{
|
|
4325
|
+
"kind": "js",
|
|
4326
|
+
"name": "progressElements",
|
|
4327
|
+
"declaration": {
|
|
4328
|
+
"name": "progressElements",
|
|
4329
|
+
"module": "libs/components/src/lib/progress/definition.ts"
|
|
4330
|
+
}
|
|
4331
|
+
},
|
|
4332
|
+
{
|
|
4333
|
+
"kind": "js",
|
|
4334
|
+
"name": "registerProgress",
|
|
4335
|
+
"declaration": {
|
|
4336
|
+
"name": "registerProgress",
|
|
4337
|
+
"module": "libs/components/src/lib/progress/definition.ts"
|
|
4338
|
+
}
|
|
4339
|
+
}
|
|
4340
|
+
]
|
|
4341
|
+
},
|
|
2953
4342
|
{
|
|
2954
4343
|
"kind": "javascript-module",
|
|
2955
4344
|
"path": "libs/components/src/lib/progress/progress.ts",
|
|
@@ -3022,6 +4411,49 @@
|
|
|
3022
4411
|
}
|
|
3023
4412
|
]
|
|
3024
4413
|
},
|
|
4414
|
+
{
|
|
4415
|
+
"kind": "javascript-module",
|
|
4416
|
+
"path": "libs/components/src/lib/progress-ring/definition.ts",
|
|
4417
|
+
"declarations": [
|
|
4418
|
+
{
|
|
4419
|
+
"kind": "variable",
|
|
4420
|
+
"name": "progressRingElements",
|
|
4421
|
+
"type": {
|
|
4422
|
+
"text": "array"
|
|
4423
|
+
},
|
|
4424
|
+
"default": "[progressRing]"
|
|
4425
|
+
},
|
|
4426
|
+
{
|
|
4427
|
+
"kind": "variable",
|
|
4428
|
+
"name": "registerProgressRing",
|
|
4429
|
+
"description": "Registers the progress-ring elements with the design system.",
|
|
4430
|
+
"parameters": [
|
|
4431
|
+
{
|
|
4432
|
+
"description": "the prefix to use for the component name",
|
|
4433
|
+
"name": "prefix"
|
|
4434
|
+
}
|
|
4435
|
+
]
|
|
4436
|
+
}
|
|
4437
|
+
],
|
|
4438
|
+
"exports": [
|
|
4439
|
+
{
|
|
4440
|
+
"kind": "js",
|
|
4441
|
+
"name": "progressRingElements",
|
|
4442
|
+
"declaration": {
|
|
4443
|
+
"name": "progressRingElements",
|
|
4444
|
+
"module": "libs/components/src/lib/progress-ring/definition.ts"
|
|
4445
|
+
}
|
|
4446
|
+
},
|
|
4447
|
+
{
|
|
4448
|
+
"kind": "js",
|
|
4449
|
+
"name": "registerProgressRing",
|
|
4450
|
+
"declaration": {
|
|
4451
|
+
"name": "registerProgressRing",
|
|
4452
|
+
"module": "libs/components/src/lib/progress-ring/definition.ts"
|
|
4453
|
+
}
|
|
4454
|
+
}
|
|
4455
|
+
]
|
|
4456
|
+
},
|
|
3025
4457
|
{
|
|
3026
4458
|
"kind": "javascript-module",
|
|
3027
4459
|
"path": "libs/components/src/lib/progress-ring/progress-ring.ts",
|
|
@@ -3079,6 +4511,49 @@
|
|
|
3079
4511
|
}
|
|
3080
4512
|
]
|
|
3081
4513
|
},
|
|
4514
|
+
{
|
|
4515
|
+
"kind": "javascript-module",
|
|
4516
|
+
"path": "libs/components/src/lib/radio/definition.ts",
|
|
4517
|
+
"declarations": [
|
|
4518
|
+
{
|
|
4519
|
+
"kind": "variable",
|
|
4520
|
+
"name": "radioElements",
|
|
4521
|
+
"type": {
|
|
4522
|
+
"text": "array"
|
|
4523
|
+
},
|
|
4524
|
+
"default": "[radio, ...focusElements]"
|
|
4525
|
+
},
|
|
4526
|
+
{
|
|
4527
|
+
"kind": "variable",
|
|
4528
|
+
"name": "registerRadio",
|
|
4529
|
+
"description": "Registers the radio elements with the design system.",
|
|
4530
|
+
"parameters": [
|
|
4531
|
+
{
|
|
4532
|
+
"description": "the prefix to use for the component name",
|
|
4533
|
+
"name": "prefix"
|
|
4534
|
+
}
|
|
4535
|
+
]
|
|
4536
|
+
}
|
|
4537
|
+
],
|
|
4538
|
+
"exports": [
|
|
4539
|
+
{
|
|
4540
|
+
"kind": "js",
|
|
4541
|
+
"name": "radioElements",
|
|
4542
|
+
"declaration": {
|
|
4543
|
+
"name": "radioElements",
|
|
4544
|
+
"module": "libs/components/src/lib/radio/definition.ts"
|
|
4545
|
+
}
|
|
4546
|
+
},
|
|
4547
|
+
{
|
|
4548
|
+
"kind": "js",
|
|
4549
|
+
"name": "registerRadio",
|
|
4550
|
+
"declaration": {
|
|
4551
|
+
"name": "registerRadio",
|
|
4552
|
+
"module": "libs/components/src/lib/radio/definition.ts"
|
|
4553
|
+
}
|
|
4554
|
+
}
|
|
4555
|
+
]
|
|
4556
|
+
},
|
|
3082
4557
|
{
|
|
3083
4558
|
"kind": "javascript-module",
|
|
3084
4559
|
"path": "libs/components/src/lib/radio/radio.ts",
|
|
@@ -3125,6 +4600,49 @@
|
|
|
3125
4600
|
}
|
|
3126
4601
|
]
|
|
3127
4602
|
},
|
|
4603
|
+
{
|
|
4604
|
+
"kind": "javascript-module",
|
|
4605
|
+
"path": "libs/components/src/lib/radio-group/definition.ts",
|
|
4606
|
+
"declarations": [
|
|
4607
|
+
{
|
|
4608
|
+
"kind": "variable",
|
|
4609
|
+
"name": "radioGroupElements",
|
|
4610
|
+
"type": {
|
|
4611
|
+
"text": "array"
|
|
4612
|
+
},
|
|
4613
|
+
"default": "[radioGroup]"
|
|
4614
|
+
},
|
|
4615
|
+
{
|
|
4616
|
+
"kind": "variable",
|
|
4617
|
+
"name": "registerRadioGroup",
|
|
4618
|
+
"description": "Registers the radio-group elements with the design system.",
|
|
4619
|
+
"parameters": [
|
|
4620
|
+
{
|
|
4621
|
+
"description": "the prefix to use for the component name",
|
|
4622
|
+
"name": "prefix"
|
|
4623
|
+
}
|
|
4624
|
+
]
|
|
4625
|
+
}
|
|
4626
|
+
],
|
|
4627
|
+
"exports": [
|
|
4628
|
+
{
|
|
4629
|
+
"kind": "js",
|
|
4630
|
+
"name": "radioGroupElements",
|
|
4631
|
+
"declaration": {
|
|
4632
|
+
"name": "radioGroupElements",
|
|
4633
|
+
"module": "libs/components/src/lib/radio-group/definition.ts"
|
|
4634
|
+
}
|
|
4635
|
+
},
|
|
4636
|
+
{
|
|
4637
|
+
"kind": "js",
|
|
4638
|
+
"name": "registerRadioGroup",
|
|
4639
|
+
"declaration": {
|
|
4640
|
+
"name": "registerRadioGroup",
|
|
4641
|
+
"module": "libs/components/src/lib/radio-group/definition.ts"
|
|
4642
|
+
}
|
|
4643
|
+
}
|
|
4644
|
+
]
|
|
4645
|
+
},
|
|
3128
4646
|
{
|
|
3129
4647
|
"kind": "javascript-module",
|
|
3130
4648
|
"path": "libs/components/src/lib/radio-group/radio-group.ts",
|
|
@@ -3171,6 +4689,49 @@
|
|
|
3171
4689
|
}
|
|
3172
4690
|
]
|
|
3173
4691
|
},
|
|
4692
|
+
{
|
|
4693
|
+
"kind": "javascript-module",
|
|
4694
|
+
"path": "libs/components/src/lib/side-drawer/definition.ts",
|
|
4695
|
+
"declarations": [
|
|
4696
|
+
{
|
|
4697
|
+
"kind": "variable",
|
|
4698
|
+
"name": "sideDrawerElements",
|
|
4699
|
+
"type": {
|
|
4700
|
+
"text": "array"
|
|
4701
|
+
},
|
|
4702
|
+
"default": "[sideDrawer]"
|
|
4703
|
+
},
|
|
4704
|
+
{
|
|
4705
|
+
"kind": "variable",
|
|
4706
|
+
"name": "registerSideDrawer",
|
|
4707
|
+
"description": "Registers the side-drawer elements with the design system.",
|
|
4708
|
+
"parameters": [
|
|
4709
|
+
{
|
|
4710
|
+
"description": "the prefix to use for the component name",
|
|
4711
|
+
"name": "prefix"
|
|
4712
|
+
}
|
|
4713
|
+
]
|
|
4714
|
+
}
|
|
4715
|
+
],
|
|
4716
|
+
"exports": [
|
|
4717
|
+
{
|
|
4718
|
+
"kind": "js",
|
|
4719
|
+
"name": "sideDrawerElements",
|
|
4720
|
+
"declaration": {
|
|
4721
|
+
"name": "sideDrawerElements",
|
|
4722
|
+
"module": "libs/components/src/lib/side-drawer/definition.ts"
|
|
4723
|
+
}
|
|
4724
|
+
},
|
|
4725
|
+
{
|
|
4726
|
+
"kind": "js",
|
|
4727
|
+
"name": "registerSideDrawer",
|
|
4728
|
+
"declaration": {
|
|
4729
|
+
"name": "registerSideDrawer",
|
|
4730
|
+
"module": "libs/components/src/lib/side-drawer/definition.ts"
|
|
4731
|
+
}
|
|
4732
|
+
}
|
|
4733
|
+
]
|
|
4734
|
+
},
|
|
3174
4735
|
{
|
|
3175
4736
|
"kind": "javascript-module",
|
|
3176
4737
|
"path": "libs/components/src/lib/side-drawer/side-drawer.ts",
|
|
@@ -3290,6 +4851,49 @@
|
|
|
3290
4851
|
}
|
|
3291
4852
|
]
|
|
3292
4853
|
},
|
|
4854
|
+
{
|
|
4855
|
+
"kind": "javascript-module",
|
|
4856
|
+
"path": "libs/components/src/lib/slider/definition.ts",
|
|
4857
|
+
"declarations": [
|
|
4858
|
+
{
|
|
4859
|
+
"kind": "variable",
|
|
4860
|
+
"name": "sliderElements",
|
|
4861
|
+
"type": {
|
|
4862
|
+
"text": "array"
|
|
4863
|
+
},
|
|
4864
|
+
"default": "[slider, ...focusElements]"
|
|
4865
|
+
},
|
|
4866
|
+
{
|
|
4867
|
+
"kind": "variable",
|
|
4868
|
+
"name": "registerSlider",
|
|
4869
|
+
"description": "Registers the slider elements with the design system.",
|
|
4870
|
+
"parameters": [
|
|
4871
|
+
{
|
|
4872
|
+
"description": "the prefix to use for the component name",
|
|
4873
|
+
"name": "prefix"
|
|
4874
|
+
}
|
|
4875
|
+
]
|
|
4876
|
+
}
|
|
4877
|
+
],
|
|
4878
|
+
"exports": [
|
|
4879
|
+
{
|
|
4880
|
+
"kind": "js",
|
|
4881
|
+
"name": "sliderElements",
|
|
4882
|
+
"declaration": {
|
|
4883
|
+
"name": "sliderElements",
|
|
4884
|
+
"module": "libs/components/src/lib/slider/definition.ts"
|
|
4885
|
+
}
|
|
4886
|
+
},
|
|
4887
|
+
{
|
|
4888
|
+
"kind": "js",
|
|
4889
|
+
"name": "registerSlider",
|
|
4890
|
+
"declaration": {
|
|
4891
|
+
"name": "registerSlider",
|
|
4892
|
+
"module": "libs/components/src/lib/slider/definition.ts"
|
|
4893
|
+
}
|
|
4894
|
+
}
|
|
4895
|
+
]
|
|
4896
|
+
},
|
|
3293
4897
|
{
|
|
3294
4898
|
"kind": "javascript-module",
|
|
3295
4899
|
"path": "libs/components/src/lib/slider/slider.ts",
|
|
@@ -3337,6 +4941,49 @@
|
|
|
3337
4941
|
}
|
|
3338
4942
|
]
|
|
3339
4943
|
},
|
|
4944
|
+
{
|
|
4945
|
+
"kind": "javascript-module",
|
|
4946
|
+
"path": "libs/components/src/lib/switch/definition.ts",
|
|
4947
|
+
"declarations": [
|
|
4948
|
+
{
|
|
4949
|
+
"kind": "variable",
|
|
4950
|
+
"name": "switchElements",
|
|
4951
|
+
"type": {
|
|
4952
|
+
"text": "array"
|
|
4953
|
+
},
|
|
4954
|
+
"default": "[switchCE, ...iconElements, ...focusElements]"
|
|
4955
|
+
},
|
|
4956
|
+
{
|
|
4957
|
+
"kind": "variable",
|
|
4958
|
+
"name": "registerSwitch",
|
|
4959
|
+
"description": "Registers the switch elements with the design system.",
|
|
4960
|
+
"parameters": [
|
|
4961
|
+
{
|
|
4962
|
+
"description": "the prefix to use for the component name",
|
|
4963
|
+
"name": "prefix"
|
|
4964
|
+
}
|
|
4965
|
+
]
|
|
4966
|
+
}
|
|
4967
|
+
],
|
|
4968
|
+
"exports": [
|
|
4969
|
+
{
|
|
4970
|
+
"kind": "js",
|
|
4971
|
+
"name": "switchElements",
|
|
4972
|
+
"declaration": {
|
|
4973
|
+
"name": "switchElements",
|
|
4974
|
+
"module": "libs/components/src/lib/switch/definition.ts"
|
|
4975
|
+
}
|
|
4976
|
+
},
|
|
4977
|
+
{
|
|
4978
|
+
"kind": "js",
|
|
4979
|
+
"name": "registerSwitch",
|
|
4980
|
+
"declaration": {
|
|
4981
|
+
"name": "registerSwitch",
|
|
4982
|
+
"module": "libs/components/src/lib/switch/definition.ts"
|
|
4983
|
+
}
|
|
4984
|
+
}
|
|
4985
|
+
]
|
|
4986
|
+
},
|
|
3340
4987
|
{
|
|
3341
4988
|
"kind": "javascript-module",
|
|
3342
4989
|
"path": "libs/components/src/lib/switch/switch.ts",
|
|
@@ -3397,6 +5044,49 @@
|
|
|
3397
5044
|
}
|
|
3398
5045
|
]
|
|
3399
5046
|
},
|
|
5047
|
+
{
|
|
5048
|
+
"kind": "javascript-module",
|
|
5049
|
+
"path": "libs/components/src/lib/text-anchor/definition.ts",
|
|
5050
|
+
"declarations": [
|
|
5051
|
+
{
|
|
5052
|
+
"kind": "variable",
|
|
5053
|
+
"name": "textAnchorElements",
|
|
5054
|
+
"type": {
|
|
5055
|
+
"text": "array"
|
|
5056
|
+
},
|
|
5057
|
+
"default": "[textAnchor]"
|
|
5058
|
+
},
|
|
5059
|
+
{
|
|
5060
|
+
"kind": "variable",
|
|
5061
|
+
"name": "registerTextAnchor",
|
|
5062
|
+
"description": "Registers the text-anchor elements with the design system.",
|
|
5063
|
+
"parameters": [
|
|
5064
|
+
{
|
|
5065
|
+
"description": "the prefix to use for the component name",
|
|
5066
|
+
"name": "prefix"
|
|
5067
|
+
}
|
|
5068
|
+
]
|
|
5069
|
+
}
|
|
5070
|
+
],
|
|
5071
|
+
"exports": [
|
|
5072
|
+
{
|
|
5073
|
+
"kind": "js",
|
|
5074
|
+
"name": "textAnchorElements",
|
|
5075
|
+
"declaration": {
|
|
5076
|
+
"name": "textAnchorElements",
|
|
5077
|
+
"module": "libs/components/src/lib/text-anchor/definition.ts"
|
|
5078
|
+
}
|
|
5079
|
+
},
|
|
5080
|
+
{
|
|
5081
|
+
"kind": "js",
|
|
5082
|
+
"name": "registerTextAnchor",
|
|
5083
|
+
"declaration": {
|
|
5084
|
+
"name": "registerTextAnchor",
|
|
5085
|
+
"module": "libs/components/src/lib/text-anchor/definition.ts"
|
|
5086
|
+
}
|
|
5087
|
+
}
|
|
5088
|
+
]
|
|
5089
|
+
},
|
|
3400
5090
|
{
|
|
3401
5091
|
"kind": "javascript-module",
|
|
3402
5092
|
"path": "libs/components/src/lib/text-anchor/text-anchor.ts",
|
|
@@ -3443,6 +5133,49 @@
|
|
|
3443
5133
|
}
|
|
3444
5134
|
]
|
|
3445
5135
|
},
|
|
5136
|
+
{
|
|
5137
|
+
"kind": "javascript-module",
|
|
5138
|
+
"path": "libs/components/src/lib/text-area/definition.ts",
|
|
5139
|
+
"declarations": [
|
|
5140
|
+
{
|
|
5141
|
+
"kind": "variable",
|
|
5142
|
+
"name": "textAreaElements",
|
|
5143
|
+
"type": {
|
|
5144
|
+
"text": "array"
|
|
5145
|
+
},
|
|
5146
|
+
"default": "[textArea, ...iconElements, ...focusElements]"
|
|
5147
|
+
},
|
|
5148
|
+
{
|
|
5149
|
+
"kind": "variable",
|
|
5150
|
+
"name": "registerTextArea",
|
|
5151
|
+
"description": "Registers the text-field elements with the design system.",
|
|
5152
|
+
"parameters": [
|
|
5153
|
+
{
|
|
5154
|
+
"description": "the prefix to use for the component name",
|
|
5155
|
+
"name": "prefix"
|
|
5156
|
+
}
|
|
5157
|
+
]
|
|
5158
|
+
}
|
|
5159
|
+
],
|
|
5160
|
+
"exports": [
|
|
5161
|
+
{
|
|
5162
|
+
"kind": "js",
|
|
5163
|
+
"name": "textAreaElements",
|
|
5164
|
+
"declaration": {
|
|
5165
|
+
"name": "textAreaElements",
|
|
5166
|
+
"module": "libs/components/src/lib/text-area/definition.ts"
|
|
5167
|
+
}
|
|
5168
|
+
},
|
|
5169
|
+
{
|
|
5170
|
+
"kind": "js",
|
|
5171
|
+
"name": "registerTextArea",
|
|
5172
|
+
"declaration": {
|
|
5173
|
+
"name": "registerTextArea",
|
|
5174
|
+
"module": "libs/components/src/lib/text-area/definition.ts"
|
|
5175
|
+
}
|
|
5176
|
+
}
|
|
5177
|
+
]
|
|
5178
|
+
},
|
|
3446
5179
|
{
|
|
3447
5180
|
"kind": "javascript-module",
|
|
3448
5181
|
"path": "libs/components/src/lib/text-area/text-area.ts",
|
|
@@ -3486,6 +5219,49 @@
|
|
|
3486
5219
|
}
|
|
3487
5220
|
]
|
|
3488
5221
|
},
|
|
5222
|
+
{
|
|
5223
|
+
"kind": "javascript-module",
|
|
5224
|
+
"path": "libs/components/src/lib/text-field/definition.ts",
|
|
5225
|
+
"declarations": [
|
|
5226
|
+
{
|
|
5227
|
+
"kind": "variable",
|
|
5228
|
+
"name": "textFieldElements",
|
|
5229
|
+
"type": {
|
|
5230
|
+
"text": "array"
|
|
5231
|
+
},
|
|
5232
|
+
"default": "[textField, ...iconElements, ...focusElements]"
|
|
5233
|
+
},
|
|
5234
|
+
{
|
|
5235
|
+
"kind": "variable",
|
|
5236
|
+
"name": "registerTextField",
|
|
5237
|
+
"description": "Registers the text-field elements with the design system.",
|
|
5238
|
+
"parameters": [
|
|
5239
|
+
{
|
|
5240
|
+
"description": "the prefix to use for the component name",
|
|
5241
|
+
"name": "prefix"
|
|
5242
|
+
}
|
|
5243
|
+
]
|
|
5244
|
+
}
|
|
5245
|
+
],
|
|
5246
|
+
"exports": [
|
|
5247
|
+
{
|
|
5248
|
+
"kind": "js",
|
|
5249
|
+
"name": "textFieldElements",
|
|
5250
|
+
"declaration": {
|
|
5251
|
+
"name": "textFieldElements",
|
|
5252
|
+
"module": "libs/components/src/lib/text-field/definition.ts"
|
|
5253
|
+
}
|
|
5254
|
+
},
|
|
5255
|
+
{
|
|
5256
|
+
"kind": "js",
|
|
5257
|
+
"name": "registerTextField",
|
|
5258
|
+
"declaration": {
|
|
5259
|
+
"name": "registerTextField",
|
|
5260
|
+
"module": "libs/components/src/lib/text-field/definition.ts"
|
|
5261
|
+
}
|
|
5262
|
+
}
|
|
5263
|
+
]
|
|
5264
|
+
},
|
|
3489
5265
|
{
|
|
3490
5266
|
"kind": "javascript-module",
|
|
3491
5267
|
"path": "libs/components/src/lib/text-field/text-field.ts",
|
|
@@ -3557,6 +5333,49 @@
|
|
|
3557
5333
|
}
|
|
3558
5334
|
]
|
|
3559
5335
|
},
|
|
5336
|
+
{
|
|
5337
|
+
"kind": "javascript-module",
|
|
5338
|
+
"path": "libs/components/src/lib/tooltip/definition.ts",
|
|
5339
|
+
"declarations": [
|
|
5340
|
+
{
|
|
5341
|
+
"kind": "variable",
|
|
5342
|
+
"name": "tooltipElements",
|
|
5343
|
+
"type": {
|
|
5344
|
+
"text": "array"
|
|
5345
|
+
},
|
|
5346
|
+
"default": "[tooltip, ...popupElements]"
|
|
5347
|
+
},
|
|
5348
|
+
{
|
|
5349
|
+
"kind": "variable",
|
|
5350
|
+
"name": "registerTooltip",
|
|
5351
|
+
"description": "Registers the tooltip elements with the design system.",
|
|
5352
|
+
"parameters": [
|
|
5353
|
+
{
|
|
5354
|
+
"description": "the prefix to use for the component name",
|
|
5355
|
+
"name": "prefix"
|
|
5356
|
+
}
|
|
5357
|
+
]
|
|
5358
|
+
}
|
|
5359
|
+
],
|
|
5360
|
+
"exports": [
|
|
5361
|
+
{
|
|
5362
|
+
"kind": "js",
|
|
5363
|
+
"name": "tooltipElements",
|
|
5364
|
+
"declaration": {
|
|
5365
|
+
"name": "tooltipElements",
|
|
5366
|
+
"module": "libs/components/src/lib/tooltip/definition.ts"
|
|
5367
|
+
}
|
|
5368
|
+
},
|
|
5369
|
+
{
|
|
5370
|
+
"kind": "js",
|
|
5371
|
+
"name": "registerTooltip",
|
|
5372
|
+
"declaration": {
|
|
5373
|
+
"name": "registerTooltip",
|
|
5374
|
+
"module": "libs/components/src/lib/tooltip/definition.ts"
|
|
5375
|
+
}
|
|
5376
|
+
}
|
|
5377
|
+
]
|
|
5378
|
+
},
|
|
3560
5379
|
{
|
|
3561
5380
|
"kind": "javascript-module",
|
|
3562
5381
|
"path": "libs/components/src/lib/tooltip/tooltip.ts",
|