@momentum-design/components 0.87.3 → 0.89.0
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/dist/custom-elements.json +648 -648
- package/dist/react/index.d.ts +3 -3
- package/dist/react/index.js +3 -3
- package/package.json +1 -1
@@ -2,279 +2,6 @@
|
|
2
2
|
"schemaVersion": "1.0.0",
|
3
3
|
"readme": "",
|
4
4
|
"modules": [
|
5
|
-
{
|
6
|
-
"kind": "javascript-module",
|
7
|
-
"path": "components/animation/animation.component.js",
|
8
|
-
"declarations": [
|
9
|
-
{
|
10
|
-
"kind": "class",
|
11
|
-
"description": "The `mdc-animation` component is a wrapper around the Lottie animation library.\nIt fetches the animation data dynamically based on the provided name and renders it.\nThis is a display only component that does not have any interactive functionality.\nFrom accessibility perspective, (by default) it is a decorative image component.",
|
12
|
-
"name": "Animation",
|
13
|
-
"members": [
|
14
|
-
{
|
15
|
-
"kind": "field",
|
16
|
-
"name": "name",
|
17
|
-
"type": {
|
18
|
-
"text": "AnimationNames | undefined"
|
19
|
-
},
|
20
|
-
"description": "Name of the animation (= filename)",
|
21
|
-
"attribute": "name",
|
22
|
-
"reflects": true
|
23
|
-
},
|
24
|
-
{
|
25
|
-
"kind": "field",
|
26
|
-
"name": "loop",
|
27
|
-
"type": {
|
28
|
-
"text": "LoopType | undefined"
|
29
|
-
},
|
30
|
-
"description": "How many times to loop the animation\n- \"true\" - infinite\n- \"false\" - no loop\n- number - number of times to loop",
|
31
|
-
"attribute": "loop",
|
32
|
-
"reflects": true
|
33
|
-
},
|
34
|
-
{
|
35
|
-
"kind": "field",
|
36
|
-
"name": "autoplay",
|
37
|
-
"type": {
|
38
|
-
"text": "boolean | undefined"
|
39
|
-
},
|
40
|
-
"description": "Weather start the animation automatically",
|
41
|
-
"attribute": "autoplay",
|
42
|
-
"reflects": true
|
43
|
-
},
|
44
|
-
{
|
45
|
-
"kind": "field",
|
46
|
-
"name": "ariaLabel",
|
47
|
-
"type": {
|
48
|
-
"text": "string | null"
|
49
|
-
},
|
50
|
-
"default": "null",
|
51
|
-
"description": "Aria-label attribute to be set for accessibility",
|
52
|
-
"attribute": "aria-label"
|
53
|
-
},
|
54
|
-
{
|
55
|
-
"kind": "field",
|
56
|
-
"name": "ariaLabelledBy",
|
57
|
-
"type": {
|
58
|
-
"text": "string | null"
|
59
|
-
},
|
60
|
-
"default": "null",
|
61
|
-
"description": "Aria-labelledby attribute to be set for accessibility",
|
62
|
-
"attribute": "aria-labelledby"
|
63
|
-
},
|
64
|
-
{
|
65
|
-
"kind": "field",
|
66
|
-
"name": "lottieInstance",
|
67
|
-
"type": {
|
68
|
-
"text": "AnimationItem | undefined"
|
69
|
-
},
|
70
|
-
"privacy": "private",
|
71
|
-
"description": "Lottie animation instance"
|
72
|
-
},
|
73
|
-
{
|
74
|
-
"kind": "field",
|
75
|
-
"name": "containerRef",
|
76
|
-
"type": {
|
77
|
-
"text": "Ref<HTMLDivElement>"
|
78
|
-
},
|
79
|
-
"privacy": "private",
|
80
|
-
"description": "Container for the animation"
|
81
|
-
},
|
82
|
-
{
|
83
|
-
"kind": "field",
|
84
|
-
"name": "animation",
|
85
|
-
"description": "Exposed API of the animation library (lottie)",
|
86
|
-
"readonly": true
|
87
|
-
},
|
88
|
-
{
|
89
|
-
"kind": "method",
|
90
|
-
"name": "getLoopValue",
|
91
|
-
"privacy": "private"
|
92
|
-
},
|
93
|
-
{
|
94
|
-
"kind": "method",
|
95
|
-
"name": "onLoadSuccessHandler",
|
96
|
-
"privacy": "private",
|
97
|
-
"parameters": [
|
98
|
-
{
|
99
|
-
"name": "animationData",
|
100
|
-
"type": {
|
101
|
-
"text": "any"
|
102
|
-
}
|
103
|
-
}
|
104
|
-
],
|
105
|
-
"description": "Create new lotty instance for the loaded data"
|
106
|
-
},
|
107
|
-
{
|
108
|
-
"kind": "method",
|
109
|
-
"name": "onLoadFailHandler",
|
110
|
-
"privacy": "private",
|
111
|
-
"parameters": [
|
112
|
-
{
|
113
|
-
"name": "error",
|
114
|
-
"type": {
|
115
|
-
"text": "Error"
|
116
|
-
}
|
117
|
-
}
|
118
|
-
],
|
119
|
-
"description": "Error handler for animation loading"
|
120
|
-
},
|
121
|
-
{
|
122
|
-
"kind": "method",
|
123
|
-
"name": "getAnimationData",
|
124
|
-
"privacy": "private",
|
125
|
-
"description": "Import animation data dynamically"
|
126
|
-
},
|
127
|
-
{
|
128
|
-
"kind": "field",
|
129
|
-
"name": "onCompleteHandler",
|
130
|
-
"description": "Re-dispatch the complete event from the animation library\n\nThis handler called with the animation instance instead of the component instance\nso we need to bind it to the component instance. The arrow function just does that."
|
131
|
-
}
|
132
|
-
],
|
133
|
-
"events": [
|
134
|
-
{
|
135
|
-
"name": "load",
|
136
|
-
"type": {
|
137
|
-
"text": "CustomEvent"
|
138
|
-
},
|
139
|
-
"description": "(React: onLoad) This event is dispatched when the animation is loaded",
|
140
|
-
"reactName": "onLoad"
|
141
|
-
},
|
142
|
-
{
|
143
|
-
"description": "(React: onComplete) This event is dispatched when all animation loops completed",
|
144
|
-
"name": "complete",
|
145
|
-
"reactName": "onComplete"
|
146
|
-
},
|
147
|
-
{
|
148
|
-
"description": "(React: onError) This event is dispatched when animation loading failed",
|
149
|
-
"name": "error",
|
150
|
-
"reactName": "onError"
|
151
|
-
}
|
152
|
-
],
|
153
|
-
"attributes": [
|
154
|
-
{
|
155
|
-
"name": "name",
|
156
|
-
"type": {
|
157
|
-
"text": "AnimationNames | undefined"
|
158
|
-
},
|
159
|
-
"description": "Name of the animation (= filename)",
|
160
|
-
"fieldName": "name"
|
161
|
-
},
|
162
|
-
{
|
163
|
-
"name": "loop",
|
164
|
-
"type": {
|
165
|
-
"text": "LoopType | undefined"
|
166
|
-
},
|
167
|
-
"description": "How many times to loop the animation\n- \"true\" - infinite\n- \"false\" - no loop\n- number - number of times to loop",
|
168
|
-
"fieldName": "loop"
|
169
|
-
},
|
170
|
-
{
|
171
|
-
"name": "autoplay",
|
172
|
-
"type": {
|
173
|
-
"text": "boolean | undefined"
|
174
|
-
},
|
175
|
-
"description": "Weather start the animation automatically",
|
176
|
-
"fieldName": "autoplay"
|
177
|
-
},
|
178
|
-
{
|
179
|
-
"name": "aria-label",
|
180
|
-
"type": {
|
181
|
-
"text": "string | null"
|
182
|
-
},
|
183
|
-
"default": "null",
|
184
|
-
"description": "Aria-label attribute to be set for accessibility",
|
185
|
-
"fieldName": "ariaLabel"
|
186
|
-
},
|
187
|
-
{
|
188
|
-
"name": "aria-labelledby",
|
189
|
-
"type": {
|
190
|
-
"text": "string | null"
|
191
|
-
},
|
192
|
-
"default": "null",
|
193
|
-
"description": "Aria-labelledby attribute to be set for accessibility",
|
194
|
-
"fieldName": "ariaLabelledBy"
|
195
|
-
}
|
196
|
-
],
|
197
|
-
"superclass": {
|
198
|
-
"name": "Component",
|
199
|
-
"module": "/src/models"
|
200
|
-
},
|
201
|
-
"tagName": "mdc-animation",
|
202
|
-
"jsDoc": "/**\n * The `mdc-animation` component is a wrapper around the Lottie animation library.\n * It fetches the animation data dynamically based on the provided name and renders it.\n * This is a display only component that does not have any interactive functionality.\n * From accessibility perspective, (by default) it is a decorative image component.\n *\n * @tagname mdc-animation\n *\n * @event load - (React: onLoad) This event is dispatched when the animation is loaded\n * @event complete - (React: onComplete) This event is dispatched when all animation loops completed\n * @event error - (React: onError) This event is dispatched when animation loading failed\n */",
|
203
|
-
"customElement": true
|
204
|
-
}
|
205
|
-
],
|
206
|
-
"exports": [
|
207
|
-
{
|
208
|
-
"kind": "js",
|
209
|
-
"name": "default",
|
210
|
-
"declaration": {
|
211
|
-
"name": "Animation",
|
212
|
-
"module": "components/animation/animation.component.js"
|
213
|
-
}
|
214
|
-
}
|
215
|
-
]
|
216
|
-
},
|
217
|
-
{
|
218
|
-
"kind": "javascript-module",
|
219
|
-
"path": "components/appheader/appheader.component.js",
|
220
|
-
"declarations": [
|
221
|
-
{
|
222
|
-
"kind": "class",
|
223
|
-
"description": "The `mdc-appheader` component provides a structured and accessible app header layout.\nIt consists of three primary sections: leading, center, and trailing.\n\n- The **leading section** typically holds a **brand logo**, **brand name** or **menu icon**.\n- The **center section** can contain a **search bar**, **icons** or action controls.\n- The **trailing section** generally includes a **profile avatar**, **additional icons** or **action controls**.",
|
224
|
-
"name": "Appheader",
|
225
|
-
"cssParts": [
|
226
|
-
{
|
227
|
-
"description": "The main container for styling the header.",
|
228
|
-
"name": "container"
|
229
|
-
},
|
230
|
-
{
|
231
|
-
"description": "The leading section of the header.",
|
232
|
-
"name": "leading-section"
|
233
|
-
},
|
234
|
-
{
|
235
|
-
"description": "The center section of the header.",
|
236
|
-
"name": "center-section"
|
237
|
-
},
|
238
|
-
{
|
239
|
-
"description": "The trailing section of the header.",
|
240
|
-
"name": "trailing-section"
|
241
|
-
}
|
242
|
-
],
|
243
|
-
"slots": [
|
244
|
-
{
|
245
|
-
"description": "Slot for the leading section (e.g., brand logo, brand name).",
|
246
|
-
"name": "leading"
|
247
|
-
},
|
248
|
-
{
|
249
|
-
"description": "Slot for the center section (e.g., search bar, icons).",
|
250
|
-
"name": "center"
|
251
|
-
},
|
252
|
-
{
|
253
|
-
"description": "Slot for the trailing section (e.g., profile avatar, icons).",
|
254
|
-
"name": "trailing"
|
255
|
-
}
|
256
|
-
],
|
257
|
-
"members": [],
|
258
|
-
"superclass": {
|
259
|
-
"name": "Component",
|
260
|
-
"module": "/src/models"
|
261
|
-
},
|
262
|
-
"tagName": "mdc-appheader",
|
263
|
-
"jsDoc": "/**\n * The `mdc-appheader` component provides a structured and accessible app header layout.\n * It consists of three primary sections: leading, center, and trailing.\n *\n * - The **leading section** typically holds a **brand logo**, **brand name** or **menu icon**.\n * - The **center section** can contain a **search bar**, **icons** or action controls.\n * - The **trailing section** generally includes a **profile avatar**, **additional icons** or **action controls**.\n *\n * @tagname mdc-appheader\n *\n * @slot leading - Slot for the leading section (e.g., brand logo, brand name).\n * @slot center - Slot for the center section (e.g., search bar, icons).\n * @slot trailing - Slot for the trailing section (e.g., profile avatar, icons).\n *\n * @csspart container - The main container for styling the header.\n * @csspart leading-section - The leading section of the header.\n * @csspart center-section - The center section of the header.\n * @csspart trailing-section - The trailing section of the header.\n */",
|
264
|
-
"customElement": true
|
265
|
-
}
|
266
|
-
],
|
267
|
-
"exports": [
|
268
|
-
{
|
269
|
-
"kind": "js",
|
270
|
-
"name": "default",
|
271
|
-
"declaration": {
|
272
|
-
"name": "Appheader",
|
273
|
-
"module": "components/appheader/appheader.component.js"
|
274
|
-
}
|
275
|
-
}
|
276
|
-
]
|
277
|
-
},
|
278
5
|
{
|
279
6
|
"kind": "javascript-module",
|
280
7
|
"path": "components/alertchip/alertchip.component.js",
|
@@ -719,77 +446,350 @@
|
|
719
446
|
}
|
720
447
|
},
|
721
448
|
{
|
722
|
-
"name": "ariaStateKey",
|
449
|
+
"name": "ariaStateKey",
|
450
|
+
"type": {
|
451
|
+
"text": "string | undefined"
|
452
|
+
},
|
453
|
+
"description": "This property defines the ARIA state key, which will be toggled when the\nButton is set to `active`.\nThe default value is 'aria-pressed', which is commonly used for toggle buttons.\n\nConsumers can override this property to use a different ARIA state key if needed.\nIn case multiple aria attributes should be toggled, they can be passed in as\na comma separated string.\nFor example: `aria-pressed,aria-expanded`",
|
454
|
+
"default": "'aria-pressed' (when)",
|
455
|
+
"fieldName": "ariaStateKey",
|
456
|
+
"inheritedFrom": {
|
457
|
+
"name": "Buttonsimple",
|
458
|
+
"module": "src/components/buttonsimple/buttonsimple.component.ts"
|
459
|
+
}
|
460
|
+
},
|
461
|
+
{
|
462
|
+
"name": "type",
|
463
|
+
"type": {
|
464
|
+
"text": "ButtonType"
|
465
|
+
},
|
466
|
+
"description": "This property defines the type attribute for the button element.\nThe type attribute specifies the behavior of the button when it is clicked.\n- **submit**: The button submits the form data to the server.\n- **reset**: The button resets the form data to its initial state.\n- **button**: The button does nothing when clicked.",
|
467
|
+
"default": "button",
|
468
|
+
"fieldName": "type",
|
469
|
+
"inheritedFrom": {
|
470
|
+
"name": "Buttonsimple",
|
471
|
+
"module": "src/components/buttonsimple/buttonsimple.component.ts"
|
472
|
+
}
|
473
|
+
}
|
474
|
+
],
|
475
|
+
"superclass": {
|
476
|
+
"name": "Buttonsimple",
|
477
|
+
"module": "/src/components/buttonsimple/buttonsimple.component"
|
478
|
+
},
|
479
|
+
"tagName": "mdc-alertchip",
|
480
|
+
"jsDoc": "/**\n * mdc-alertchip component is an interactive chip that consumers can use to represent an alert.\n *\n * - It supports a leading icon along with label.\n * - It supports 5 variants of alerts - neutral, warning, error, success, and informational\n *\n * This component is built by extending Buttonsimple.\n *\n * @tagname mdc-alertchip\n *\n * @dependency mdc-icon\n * @dependency mdc-text\n *\n * @cssproperty --mdc-chip-color - The color of the label text\n * @cssproperty --mdc-chip-icon-color - The color of the icon\n * @cssproperty --mdc-chip-border-color - The border color of the alertchip\n * @cssproperty --mdc-chip-background-color - The background color of the alertchip\n *\n * @csspart icon - The alert icon\n * @csspart label - The text label of the alertchip\n */",
|
481
|
+
"customElement": true,
|
482
|
+
"events": [
|
483
|
+
{
|
484
|
+
"description": "(React: onClick) This event is dispatched when the button is clicked.",
|
485
|
+
"name": "click",
|
486
|
+
"reactName": "onClick",
|
487
|
+
"inheritedFrom": {
|
488
|
+
"name": "Buttonsimple",
|
489
|
+
"module": "src/components/buttonsimple/buttonsimple.component.ts"
|
490
|
+
}
|
491
|
+
},
|
492
|
+
{
|
493
|
+
"description": "(React: onKeyDown) This event is dispatched when a key is pressed down on the button.",
|
494
|
+
"name": "keydown",
|
495
|
+
"reactName": "onKeyDown",
|
496
|
+
"inheritedFrom": {
|
497
|
+
"name": "Buttonsimple",
|
498
|
+
"module": "src/components/buttonsimple/buttonsimple.component.ts"
|
499
|
+
}
|
500
|
+
},
|
501
|
+
{
|
502
|
+
"description": "(React: onKeyUp) This event is dispatched when a key is released on the button.",
|
503
|
+
"name": "keyup",
|
504
|
+
"reactName": "onKeyUp",
|
505
|
+
"inheritedFrom": {
|
506
|
+
"name": "Buttonsimple",
|
507
|
+
"module": "src/components/buttonsimple/buttonsimple.component.ts"
|
508
|
+
}
|
509
|
+
},
|
510
|
+
{
|
511
|
+
"description": "(React: onFocus) This event is dispatched when the button receives focus.",
|
512
|
+
"name": "focus",
|
513
|
+
"reactName": "onFocus",
|
514
|
+
"inheritedFrom": {
|
515
|
+
"name": "Buttonsimple",
|
516
|
+
"module": "src/components/buttonsimple/buttonsimple.component.ts"
|
517
|
+
}
|
518
|
+
}
|
519
|
+
]
|
520
|
+
}
|
521
|
+
],
|
522
|
+
"exports": [
|
523
|
+
{
|
524
|
+
"kind": "js",
|
525
|
+
"name": "default",
|
526
|
+
"declaration": {
|
527
|
+
"name": "AlertChip",
|
528
|
+
"module": "components/alertchip/alertchip.component.js"
|
529
|
+
}
|
530
|
+
}
|
531
|
+
]
|
532
|
+
},
|
533
|
+
{
|
534
|
+
"kind": "javascript-module",
|
535
|
+
"path": "components/animation/animation.component.js",
|
536
|
+
"declarations": [
|
537
|
+
{
|
538
|
+
"kind": "class",
|
539
|
+
"description": "The `mdc-animation` component is a wrapper around the Lottie animation library.\nIt fetches the animation data dynamically based on the provided name and renders it.\nThis is a display only component that does not have any interactive functionality.\nFrom accessibility perspective, (by default) it is a decorative image component.",
|
540
|
+
"name": "Animation",
|
541
|
+
"members": [
|
542
|
+
{
|
543
|
+
"kind": "field",
|
544
|
+
"name": "name",
|
545
|
+
"type": {
|
546
|
+
"text": "AnimationNames | undefined"
|
547
|
+
},
|
548
|
+
"description": "Name of the animation (= filename)",
|
549
|
+
"attribute": "name",
|
550
|
+
"reflects": true
|
551
|
+
},
|
552
|
+
{
|
553
|
+
"kind": "field",
|
554
|
+
"name": "loop",
|
555
|
+
"type": {
|
556
|
+
"text": "LoopType | undefined"
|
557
|
+
},
|
558
|
+
"description": "How many times to loop the animation\n- \"true\" - infinite\n- \"false\" - no loop\n- number - number of times to loop",
|
559
|
+
"attribute": "loop",
|
560
|
+
"reflects": true
|
561
|
+
},
|
562
|
+
{
|
563
|
+
"kind": "field",
|
564
|
+
"name": "autoplay",
|
565
|
+
"type": {
|
566
|
+
"text": "boolean | undefined"
|
567
|
+
},
|
568
|
+
"description": "Weather start the animation automatically",
|
569
|
+
"attribute": "autoplay",
|
570
|
+
"reflects": true
|
571
|
+
},
|
572
|
+
{
|
573
|
+
"kind": "field",
|
574
|
+
"name": "ariaLabel",
|
575
|
+
"type": {
|
576
|
+
"text": "string | null"
|
577
|
+
},
|
578
|
+
"default": "null",
|
579
|
+
"description": "Aria-label attribute to be set for accessibility",
|
580
|
+
"attribute": "aria-label"
|
581
|
+
},
|
582
|
+
{
|
583
|
+
"kind": "field",
|
584
|
+
"name": "ariaLabelledBy",
|
585
|
+
"type": {
|
586
|
+
"text": "string | null"
|
587
|
+
},
|
588
|
+
"default": "null",
|
589
|
+
"description": "Aria-labelledby attribute to be set for accessibility",
|
590
|
+
"attribute": "aria-labelledby"
|
591
|
+
},
|
592
|
+
{
|
593
|
+
"kind": "field",
|
594
|
+
"name": "lottieInstance",
|
595
|
+
"type": {
|
596
|
+
"text": "AnimationItem | undefined"
|
597
|
+
},
|
598
|
+
"privacy": "private",
|
599
|
+
"description": "Lottie animation instance"
|
600
|
+
},
|
601
|
+
{
|
602
|
+
"kind": "field",
|
603
|
+
"name": "containerRef",
|
604
|
+
"type": {
|
605
|
+
"text": "Ref<HTMLDivElement>"
|
606
|
+
},
|
607
|
+
"privacy": "private",
|
608
|
+
"description": "Container for the animation"
|
609
|
+
},
|
610
|
+
{
|
611
|
+
"kind": "field",
|
612
|
+
"name": "animation",
|
613
|
+
"description": "Exposed API of the animation library (lottie)",
|
614
|
+
"readonly": true
|
615
|
+
},
|
616
|
+
{
|
617
|
+
"kind": "method",
|
618
|
+
"name": "getLoopValue",
|
619
|
+
"privacy": "private"
|
620
|
+
},
|
621
|
+
{
|
622
|
+
"kind": "method",
|
623
|
+
"name": "onLoadSuccessHandler",
|
624
|
+
"privacy": "private",
|
625
|
+
"parameters": [
|
626
|
+
{
|
627
|
+
"name": "animationData",
|
628
|
+
"type": {
|
629
|
+
"text": "any"
|
630
|
+
}
|
631
|
+
}
|
632
|
+
],
|
633
|
+
"description": "Create new lotty instance for the loaded data"
|
634
|
+
},
|
635
|
+
{
|
636
|
+
"kind": "method",
|
637
|
+
"name": "onLoadFailHandler",
|
638
|
+
"privacy": "private",
|
639
|
+
"parameters": [
|
640
|
+
{
|
641
|
+
"name": "error",
|
642
|
+
"type": {
|
643
|
+
"text": "Error"
|
644
|
+
}
|
645
|
+
}
|
646
|
+
],
|
647
|
+
"description": "Error handler for animation loading"
|
648
|
+
},
|
649
|
+
{
|
650
|
+
"kind": "method",
|
651
|
+
"name": "getAnimationData",
|
652
|
+
"privacy": "private",
|
653
|
+
"description": "Import animation data dynamically"
|
654
|
+
},
|
655
|
+
{
|
656
|
+
"kind": "field",
|
657
|
+
"name": "onCompleteHandler",
|
658
|
+
"description": "Re-dispatch the complete event from the animation library\n\nThis handler called with the animation instance instead of the component instance\nso we need to bind it to the component instance. The arrow function just does that."
|
659
|
+
}
|
660
|
+
],
|
661
|
+
"events": [
|
662
|
+
{
|
663
|
+
"name": "load",
|
664
|
+
"type": {
|
665
|
+
"text": "CustomEvent"
|
666
|
+
},
|
667
|
+
"description": "(React: onLoad) This event is dispatched when the animation is loaded",
|
668
|
+
"reactName": "onLoad"
|
669
|
+
},
|
670
|
+
{
|
671
|
+
"description": "(React: onComplete) This event is dispatched when all animation loops completed",
|
672
|
+
"name": "complete",
|
673
|
+
"reactName": "onComplete"
|
674
|
+
},
|
675
|
+
{
|
676
|
+
"description": "(React: onError) This event is dispatched when animation loading failed",
|
677
|
+
"name": "error",
|
678
|
+
"reactName": "onError"
|
679
|
+
}
|
680
|
+
],
|
681
|
+
"attributes": [
|
682
|
+
{
|
683
|
+
"name": "name",
|
684
|
+
"type": {
|
685
|
+
"text": "AnimationNames | undefined"
|
686
|
+
},
|
687
|
+
"description": "Name of the animation (= filename)",
|
688
|
+
"fieldName": "name"
|
689
|
+
},
|
690
|
+
{
|
691
|
+
"name": "loop",
|
692
|
+
"type": {
|
693
|
+
"text": "LoopType | undefined"
|
694
|
+
},
|
695
|
+
"description": "How many times to loop the animation\n- \"true\" - infinite\n- \"false\" - no loop\n- number - number of times to loop",
|
696
|
+
"fieldName": "loop"
|
697
|
+
},
|
698
|
+
{
|
699
|
+
"name": "autoplay",
|
700
|
+
"type": {
|
701
|
+
"text": "boolean | undefined"
|
702
|
+
},
|
703
|
+
"description": "Weather start the animation automatically",
|
704
|
+
"fieldName": "autoplay"
|
705
|
+
},
|
706
|
+
{
|
707
|
+
"name": "aria-label",
|
723
708
|
"type": {
|
724
|
-
"text": "string |
|
709
|
+
"text": "string | null"
|
725
710
|
},
|
726
|
-
"
|
727
|
-
"
|
728
|
-
"fieldName": "
|
729
|
-
"inheritedFrom": {
|
730
|
-
"name": "Buttonsimple",
|
731
|
-
"module": "src/components/buttonsimple/buttonsimple.component.ts"
|
732
|
-
}
|
711
|
+
"default": "null",
|
712
|
+
"description": "Aria-label attribute to be set for accessibility",
|
713
|
+
"fieldName": "ariaLabel"
|
733
714
|
},
|
734
715
|
{
|
735
|
-
"name": "
|
716
|
+
"name": "aria-labelledby",
|
736
717
|
"type": {
|
737
|
-
"text": "
|
718
|
+
"text": "string | null"
|
738
719
|
},
|
739
|
-
"
|
740
|
-
"
|
741
|
-
"fieldName": "
|
742
|
-
"inheritedFrom": {
|
743
|
-
"name": "Buttonsimple",
|
744
|
-
"module": "src/components/buttonsimple/buttonsimple.component.ts"
|
745
|
-
}
|
720
|
+
"default": "null",
|
721
|
+
"description": "Aria-labelledby attribute to be set for accessibility",
|
722
|
+
"fieldName": "ariaLabelledBy"
|
746
723
|
}
|
747
724
|
],
|
748
725
|
"superclass": {
|
749
|
-
"name": "
|
750
|
-
"module": "/src/
|
726
|
+
"name": "Component",
|
727
|
+
"module": "/src/models"
|
751
728
|
},
|
752
|
-
"tagName": "mdc-
|
753
|
-
"jsDoc": "/**\n * mdc-
|
754
|
-
"customElement": true
|
755
|
-
|
729
|
+
"tagName": "mdc-animation",
|
730
|
+
"jsDoc": "/**\n * The `mdc-animation` component is a wrapper around the Lottie animation library.\n * It fetches the animation data dynamically based on the provided name and renders it.\n * This is a display only component that does not have any interactive functionality.\n * From accessibility perspective, (by default) it is a decorative image component.\n *\n * @tagname mdc-animation\n *\n * @event load - (React: onLoad) This event is dispatched when the animation is loaded\n * @event complete - (React: onComplete) This event is dispatched when all animation loops completed\n * @event error - (React: onError) This event is dispatched when animation loading failed\n */",
|
731
|
+
"customElement": true
|
732
|
+
}
|
733
|
+
],
|
734
|
+
"exports": [
|
735
|
+
{
|
736
|
+
"kind": "js",
|
737
|
+
"name": "default",
|
738
|
+
"declaration": {
|
739
|
+
"name": "Animation",
|
740
|
+
"module": "components/animation/animation.component.js"
|
741
|
+
}
|
742
|
+
}
|
743
|
+
]
|
744
|
+
},
|
745
|
+
{
|
746
|
+
"kind": "javascript-module",
|
747
|
+
"path": "components/appheader/appheader.component.js",
|
748
|
+
"declarations": [
|
749
|
+
{
|
750
|
+
"kind": "class",
|
751
|
+
"description": "The `mdc-appheader` component provides a structured and accessible app header layout.\nIt consists of three primary sections: leading, center, and trailing.\n\n- The **leading section** typically holds a **brand logo**, **brand name** or **menu icon**.\n- The **center section** can contain a **search bar**, **icons** or action controls.\n- The **trailing section** generally includes a **profile avatar**, **additional icons** or **action controls**.",
|
752
|
+
"name": "Appheader",
|
753
|
+
"cssParts": [
|
756
754
|
{
|
757
|
-
"description": "
|
758
|
-
"name": "
|
759
|
-
"reactName": "onClick",
|
760
|
-
"inheritedFrom": {
|
761
|
-
"name": "Buttonsimple",
|
762
|
-
"module": "src/components/buttonsimple/buttonsimple.component.ts"
|
763
|
-
}
|
755
|
+
"description": "The main container for styling the header.",
|
756
|
+
"name": "container"
|
764
757
|
},
|
765
758
|
{
|
766
|
-
"description": "
|
767
|
-
"name": "
|
768
|
-
"reactName": "onKeyDown",
|
769
|
-
"inheritedFrom": {
|
770
|
-
"name": "Buttonsimple",
|
771
|
-
"module": "src/components/buttonsimple/buttonsimple.component.ts"
|
772
|
-
}
|
759
|
+
"description": "The leading section of the header.",
|
760
|
+
"name": "leading-section"
|
773
761
|
},
|
774
762
|
{
|
775
|
-
"description": "
|
776
|
-
"name": "
|
777
|
-
"reactName": "onKeyUp",
|
778
|
-
"inheritedFrom": {
|
779
|
-
"name": "Buttonsimple",
|
780
|
-
"module": "src/components/buttonsimple/buttonsimple.component.ts"
|
781
|
-
}
|
763
|
+
"description": "The center section of the header.",
|
764
|
+
"name": "center-section"
|
782
765
|
},
|
783
766
|
{
|
784
|
-
"description": "
|
785
|
-
"name": "
|
786
|
-
"reactName": "onFocus",
|
787
|
-
"inheritedFrom": {
|
788
|
-
"name": "Buttonsimple",
|
789
|
-
"module": "src/components/buttonsimple/buttonsimple.component.ts"
|
790
|
-
}
|
767
|
+
"description": "The trailing section of the header.",
|
768
|
+
"name": "trailing-section"
|
791
769
|
}
|
792
|
-
]
|
770
|
+
],
|
771
|
+
"slots": [
|
772
|
+
{
|
773
|
+
"description": "Slot for the leading section (e.g., brand logo, brand name).",
|
774
|
+
"name": "leading"
|
775
|
+
},
|
776
|
+
{
|
777
|
+
"description": "Slot for the center section (e.g., search bar, icons).",
|
778
|
+
"name": "center"
|
779
|
+
},
|
780
|
+
{
|
781
|
+
"description": "Slot for the trailing section (e.g., profile avatar, icons).",
|
782
|
+
"name": "trailing"
|
783
|
+
}
|
784
|
+
],
|
785
|
+
"members": [],
|
786
|
+
"superclass": {
|
787
|
+
"name": "Component",
|
788
|
+
"module": "/src/models"
|
789
|
+
},
|
790
|
+
"tagName": "mdc-appheader",
|
791
|
+
"jsDoc": "/**\n * The `mdc-appheader` component provides a structured and accessible app header layout.\n * It consists of three primary sections: leading, center, and trailing.\n *\n * - The **leading section** typically holds a **brand logo**, **brand name** or **menu icon**.\n * - The **center section** can contain a **search bar**, **icons** or action controls.\n * - The **trailing section** generally includes a **profile avatar**, **additional icons** or **action controls**.\n *\n * @tagname mdc-appheader\n *\n * @slot leading - Slot for the leading section (e.g., brand logo, brand name).\n * @slot center - Slot for the center section (e.g., search bar, icons).\n * @slot trailing - Slot for the trailing section (e.g., profile avatar, icons).\n *\n * @csspart container - The main container for styling the header.\n * @csspart leading-section - The leading section of the header.\n * @csspart center-section - The center section of the header.\n * @csspart trailing-section - The trailing section of the header.\n */",
|
792
|
+
"customElement": true
|
793
793
|
}
|
794
794
|
],
|
795
795
|
"exports": [
|
@@ -797,8 +797,8 @@
|
|
797
797
|
"kind": "js",
|
798
798
|
"name": "default",
|
799
799
|
"declaration": {
|
800
|
-
"name": "
|
801
|
-
"module": "components/
|
800
|
+
"name": "Appheader",
|
801
|
+
"module": "components/appheader/appheader.component.js"
|
802
802
|
}
|
803
803
|
}
|
804
804
|
]
|
@@ -2226,159 +2226,27 @@
|
|
2226
2226
|
"privacy": "public",
|
2227
2227
|
"description": "Size of the bullet\n\nPossible values: 'small', 'medium', 'large'",
|
2228
2228
|
"default": "small",
|
2229
|
-
"attribute": "size",
|
2230
|
-
"reflects": true
|
2231
|
-
}
|
2232
|
-
],
|
2233
|
-
"attributes": [
|
2234
|
-
{
|
2235
|
-
"name": "size",
|
2236
|
-
"type": {
|
2237
|
-
"text": "Size"
|
2238
|
-
},
|
2239
|
-
"description": "Size of the bullet\n\nPossible values: 'small', 'medium', 'large'",
|
2240
|
-
"default": "small",
|
2241
|
-
"fieldName": "size"
|
2242
|
-
}
|
2243
|
-
],
|
2244
|
-
"superclass": {
|
2245
|
-
"name": "Component",
|
2246
|
-
"module": "/src/models"
|
2247
|
-
},
|
2248
|
-
"tagName": "mdc-bullet",
|
2249
|
-
"jsDoc": "/**\n * Bullet component, which is a visual marker\n * and be used to organize and present items in a list format.\n *\n * @tagname mdc-bullet\n *\n * @cssproperty --mdc-bullet-background-color - background color of the bullet\n * @cssproperty --mdc-bullet-size-small - small size value of the bullet\n * @cssproperty --mdc-bullet-size-medium - medium size value of the bullet\n * @cssproperty --mdc-bullet-size-large - large size value of the bullet\n */",
|
2250
|
-
"customElement": true
|
2251
|
-
}
|
2252
|
-
],
|
2253
|
-
"exports": [
|
2254
|
-
{
|
2255
|
-
"kind": "js",
|
2256
|
-
"name": "default",
|
2257
|
-
"declaration": {
|
2258
|
-
"name": "Bullet",
|
2259
|
-
"module": "components/bullet/bullet.component.js"
|
2260
|
-
}
|
2261
|
-
}
|
2262
|
-
]
|
2263
|
-
},
|
2264
|
-
{
|
2265
|
-
"kind": "javascript-module",
|
2266
|
-
"path": "components/buttongroup/buttongroup.component.js",
|
2267
|
-
"declarations": [
|
2268
|
-
{
|
2269
|
-
"kind": "class",
|
2270
|
-
"description": "buttongroup component, is a styled wrapper for multiple buttons.\nIt can support icon buttons, combination of icon and pill buttons, and text buttons.\nThey are available in horizontal and vertical orientation.",
|
2271
|
-
"name": "ButtonGroup",
|
2272
|
-
"cssProperties": [
|
2273
|
-
{
|
2274
|
-
"description": "The border radius of the buttongroup",
|
2275
|
-
"name": "--mdc-buttongroup-border-radius"
|
2276
|
-
},
|
2277
|
-
{
|
2278
|
-
"description": "The border color of the buttongroup",
|
2279
|
-
"name": "--mdc-buttongroup-border-color"
|
2280
|
-
},
|
2281
|
-
{
|
2282
|
-
"description": "The color of the divider between buttons within the buttongroup",
|
2283
|
-
"name": "--mdc-buttongroup-divider-color"
|
2284
|
-
}
|
2285
|
-
],
|
2286
|
-
"slots": [
|
2287
|
-
{
|
2288
|
-
"description": "This is a default/unnamed slot, which contains the buttons",
|
2289
|
-
"name": "default"
|
2290
|
-
}
|
2291
|
-
],
|
2292
|
-
"members": [
|
2293
|
-
{
|
2294
|
-
"kind": "field",
|
2295
|
-
"name": "orientation",
|
2296
|
-
"type": {
|
2297
|
-
"text": "ButtonGroupOrientation"
|
2298
|
-
},
|
2299
|
-
"description": "Orientation of the buttongroup.",
|
2300
|
-
"default": "'horizontal'",
|
2301
|
-
"attribute": "orientation",
|
2302
|
-
"reflects": true
|
2303
|
-
},
|
2304
|
-
{
|
2305
|
-
"kind": "field",
|
2306
|
-
"name": "variant",
|
2307
|
-
"type": {
|
2308
|
-
"text": "ButtonGroupVariant"
|
2309
|
-
},
|
2310
|
-
"description": "Variant of the buttons within the buttongroup.",
|
2311
|
-
"default": "'primary'",
|
2312
|
-
"attribute": "variant",
|
2313
|
-
"reflects": true
|
2314
|
-
},
|
2315
|
-
{
|
2316
|
-
"kind": "field",
|
2317
|
-
"name": "size",
|
2318
|
-
"type": {
|
2319
|
-
"text": "ButtonGroupSize"
|
2320
|
-
},
|
2321
|
-
"description": "Size of the buttons within the buttongroup.",
|
2322
|
-
"default": "'28'",
|
2323
|
-
"attribute": "size",
|
2324
|
-
"reflects": true
|
2325
|
-
},
|
2326
|
-
{
|
2327
|
-
"kind": "field",
|
2328
|
-
"name": "compact",
|
2329
|
-
"type": {
|
2330
|
-
"text": "boolean"
|
2331
|
-
},
|
2332
|
-
"default": "false",
|
2333
|
-
"description": "When this is true, the buttons within the buttongroup will be compact.\ni.e. Irrespective of the size of the buttons, they will have a height of 24px.",
|
2334
|
-
"attribute": "compact",
|
2335
|
-
"reflects": true
|
2336
|
-
}
|
2337
|
-
],
|
2338
|
-
"attributes": [
|
2339
|
-
{
|
2340
|
-
"name": "orientation",
|
2341
|
-
"type": {
|
2342
|
-
"text": "ButtonGroupOrientation"
|
2343
|
-
},
|
2344
|
-
"description": "Orientation of the buttongroup.",
|
2345
|
-
"default": "'horizontal'",
|
2346
|
-
"fieldName": "orientation"
|
2347
|
-
},
|
2348
|
-
{
|
2349
|
-
"name": "variant",
|
2350
|
-
"type": {
|
2351
|
-
"text": "ButtonGroupVariant"
|
2352
|
-
},
|
2353
|
-
"description": "Variant of the buttons within the buttongroup.",
|
2354
|
-
"default": "'primary'",
|
2355
|
-
"fieldName": "variant"
|
2356
|
-
},
|
2229
|
+
"attribute": "size",
|
2230
|
+
"reflects": true
|
2231
|
+
}
|
2232
|
+
],
|
2233
|
+
"attributes": [
|
2357
2234
|
{
|
2358
2235
|
"name": "size",
|
2359
2236
|
"type": {
|
2360
|
-
"text": "
|
2237
|
+
"text": "Size"
|
2361
2238
|
},
|
2362
|
-
"description": "Size of the
|
2363
|
-
"default": "
|
2239
|
+
"description": "Size of the bullet\n\nPossible values: 'small', 'medium', 'large'",
|
2240
|
+
"default": "small",
|
2364
2241
|
"fieldName": "size"
|
2365
|
-
},
|
2366
|
-
{
|
2367
|
-
"name": "compact",
|
2368
|
-
"type": {
|
2369
|
-
"text": "boolean"
|
2370
|
-
},
|
2371
|
-
"default": "false",
|
2372
|
-
"description": "When this is true, the buttons within the buttongroup will be compact.\ni.e. Irrespective of the size of the buttons, they will have a height of 24px.",
|
2373
|
-
"fieldName": "compact"
|
2374
2242
|
}
|
2375
2243
|
],
|
2376
2244
|
"superclass": {
|
2377
2245
|
"name": "Component",
|
2378
2246
|
"module": "/src/models"
|
2379
2247
|
},
|
2380
|
-
"tagName": "mdc-
|
2381
|
-
"jsDoc": "/**\n *
|
2248
|
+
"tagName": "mdc-bullet",
|
2249
|
+
"jsDoc": "/**\n * Bullet component, which is a visual marker\n * and be used to organize and present items in a list format.\n *\n * @tagname mdc-bullet\n *\n * @cssproperty --mdc-bullet-background-color - background color of the bullet\n * @cssproperty --mdc-bullet-size-small - small size value of the bullet\n * @cssproperty --mdc-bullet-size-medium - medium size value of the bullet\n * @cssproperty --mdc-bullet-size-large - large size value of the bullet\n */",
|
2382
2250
|
"customElement": true
|
2383
2251
|
}
|
2384
2252
|
],
|
@@ -2387,8 +2255,8 @@
|
|
2387
2255
|
"kind": "js",
|
2388
2256
|
"name": "default",
|
2389
2257
|
"declaration": {
|
2390
|
-
"name": "
|
2391
|
-
"module": "components/
|
2258
|
+
"name": "Bullet",
|
2259
|
+
"module": "components/bullet/bullet.component.js"
|
2392
2260
|
}
|
2393
2261
|
}
|
2394
2262
|
]
|
@@ -3088,6 +2956,138 @@
|
|
3088
2956
|
}
|
3089
2957
|
]
|
3090
2958
|
},
|
2959
|
+
{
|
2960
|
+
"kind": "javascript-module",
|
2961
|
+
"path": "components/buttongroup/buttongroup.component.js",
|
2962
|
+
"declarations": [
|
2963
|
+
{
|
2964
|
+
"kind": "class",
|
2965
|
+
"description": "buttongroup component, is a styled wrapper for multiple buttons.\nIt can support icon buttons, combination of icon and pill buttons, and text buttons.\nThey are available in horizontal and vertical orientation.",
|
2966
|
+
"name": "ButtonGroup",
|
2967
|
+
"cssProperties": [
|
2968
|
+
{
|
2969
|
+
"description": "The border radius of the buttongroup",
|
2970
|
+
"name": "--mdc-buttongroup-border-radius"
|
2971
|
+
},
|
2972
|
+
{
|
2973
|
+
"description": "The border color of the buttongroup",
|
2974
|
+
"name": "--mdc-buttongroup-border-color"
|
2975
|
+
},
|
2976
|
+
{
|
2977
|
+
"description": "The color of the divider between buttons within the buttongroup",
|
2978
|
+
"name": "--mdc-buttongroup-divider-color"
|
2979
|
+
}
|
2980
|
+
],
|
2981
|
+
"slots": [
|
2982
|
+
{
|
2983
|
+
"description": "This is a default/unnamed slot, which contains the buttons",
|
2984
|
+
"name": "default"
|
2985
|
+
}
|
2986
|
+
],
|
2987
|
+
"members": [
|
2988
|
+
{
|
2989
|
+
"kind": "field",
|
2990
|
+
"name": "orientation",
|
2991
|
+
"type": {
|
2992
|
+
"text": "ButtonGroupOrientation"
|
2993
|
+
},
|
2994
|
+
"description": "Orientation of the buttongroup.",
|
2995
|
+
"default": "'horizontal'",
|
2996
|
+
"attribute": "orientation",
|
2997
|
+
"reflects": true
|
2998
|
+
},
|
2999
|
+
{
|
3000
|
+
"kind": "field",
|
3001
|
+
"name": "variant",
|
3002
|
+
"type": {
|
3003
|
+
"text": "ButtonGroupVariant"
|
3004
|
+
},
|
3005
|
+
"description": "Variant of the buttons within the buttongroup.",
|
3006
|
+
"default": "'primary'",
|
3007
|
+
"attribute": "variant",
|
3008
|
+
"reflects": true
|
3009
|
+
},
|
3010
|
+
{
|
3011
|
+
"kind": "field",
|
3012
|
+
"name": "size",
|
3013
|
+
"type": {
|
3014
|
+
"text": "ButtonGroupSize"
|
3015
|
+
},
|
3016
|
+
"description": "Size of the buttons within the buttongroup.",
|
3017
|
+
"default": "'28'",
|
3018
|
+
"attribute": "size",
|
3019
|
+
"reflects": true
|
3020
|
+
},
|
3021
|
+
{
|
3022
|
+
"kind": "field",
|
3023
|
+
"name": "compact",
|
3024
|
+
"type": {
|
3025
|
+
"text": "boolean"
|
3026
|
+
},
|
3027
|
+
"default": "false",
|
3028
|
+
"description": "When this is true, the buttons within the buttongroup will be compact.\ni.e. Irrespective of the size of the buttons, they will have a height of 24px.",
|
3029
|
+
"attribute": "compact",
|
3030
|
+
"reflects": true
|
3031
|
+
}
|
3032
|
+
],
|
3033
|
+
"attributes": [
|
3034
|
+
{
|
3035
|
+
"name": "orientation",
|
3036
|
+
"type": {
|
3037
|
+
"text": "ButtonGroupOrientation"
|
3038
|
+
},
|
3039
|
+
"description": "Orientation of the buttongroup.",
|
3040
|
+
"default": "'horizontal'",
|
3041
|
+
"fieldName": "orientation"
|
3042
|
+
},
|
3043
|
+
{
|
3044
|
+
"name": "variant",
|
3045
|
+
"type": {
|
3046
|
+
"text": "ButtonGroupVariant"
|
3047
|
+
},
|
3048
|
+
"description": "Variant of the buttons within the buttongroup.",
|
3049
|
+
"default": "'primary'",
|
3050
|
+
"fieldName": "variant"
|
3051
|
+
},
|
3052
|
+
{
|
3053
|
+
"name": "size",
|
3054
|
+
"type": {
|
3055
|
+
"text": "ButtonGroupSize"
|
3056
|
+
},
|
3057
|
+
"description": "Size of the buttons within the buttongroup.",
|
3058
|
+
"default": "'28'",
|
3059
|
+
"fieldName": "size"
|
3060
|
+
},
|
3061
|
+
{
|
3062
|
+
"name": "compact",
|
3063
|
+
"type": {
|
3064
|
+
"text": "boolean"
|
3065
|
+
},
|
3066
|
+
"default": "false",
|
3067
|
+
"description": "When this is true, the buttons within the buttongroup will be compact.\ni.e. Irrespective of the size of the buttons, they will have a height of 24px.",
|
3068
|
+
"fieldName": "compact"
|
3069
|
+
}
|
3070
|
+
],
|
3071
|
+
"superclass": {
|
3072
|
+
"name": "Component",
|
3073
|
+
"module": "/src/models"
|
3074
|
+
},
|
3075
|
+
"tagName": "mdc-buttongroup",
|
3076
|
+
"jsDoc": "/**\n * buttongroup component, is a styled wrapper for multiple buttons.\n * It can support icon buttons, combination of icon and pill buttons, and text buttons.\n * They are available in horizontal and vertical orientation.\n *\n * @tagname mdc-buttongroup\n *\n * @slot default - This is a default/unnamed slot, which contains the buttons\n *\n * @cssproperty --mdc-buttongroup-border-radius - The border radius of the buttongroup\n * @cssproperty --mdc-buttongroup-border-color - The border color of the buttongroup\n * @cssproperty --mdc-buttongroup-divider-color - The color of the divider between buttons within the buttongroup\n */",
|
3077
|
+
"customElement": true
|
3078
|
+
}
|
3079
|
+
],
|
3080
|
+
"exports": [
|
3081
|
+
{
|
3082
|
+
"kind": "js",
|
3083
|
+
"name": "default",
|
3084
|
+
"declaration": {
|
3085
|
+
"name": "ButtonGroup",
|
3086
|
+
"module": "components/buttongroup/buttongroup.component.js"
|
3087
|
+
}
|
3088
|
+
}
|
3089
|
+
]
|
3090
|
+
},
|
3091
3091
|
{
|
3092
3092
|
"kind": "javascript-module",
|
3093
3093
|
"path": "components/buttonlink/buttonlink.component.js",
|
@@ -21530,66 +21530,204 @@
|
|
21530
21530
|
},
|
21531
21531
|
{
|
21532
21532
|
"kind": "method",
|
21533
|
-
"name": "getParentMenuItemIndex",
|
21533
|
+
"name": "getParentMenuItemIndex",
|
21534
|
+
"privacy": "private",
|
21535
|
+
"return": {
|
21536
|
+
"type": {
|
21537
|
+
"text": "number"
|
21538
|
+
}
|
21539
|
+
},
|
21540
|
+
"parameters": [
|
21541
|
+
{
|
21542
|
+
"name": "element",
|
21543
|
+
"type": {
|
21544
|
+
"text": "HTMLElement"
|
21545
|
+
}
|
21546
|
+
}
|
21547
|
+
],
|
21548
|
+
"inheritedFrom": {
|
21549
|
+
"name": "MenuBar",
|
21550
|
+
"module": "components/menubar/menubar.component.js"
|
21551
|
+
}
|
21552
|
+
},
|
21553
|
+
{
|
21554
|
+
"kind": "method",
|
21555
|
+
"name": "handleKeyDown",
|
21556
|
+
"privacy": "private",
|
21557
|
+
"return": {
|
21558
|
+
"type": {
|
21559
|
+
"text": "Promise<void>"
|
21560
|
+
}
|
21561
|
+
},
|
21562
|
+
"parameters": [
|
21563
|
+
{
|
21564
|
+
"name": "event",
|
21565
|
+
"type": {
|
21566
|
+
"text": "KeyboardEvent"
|
21567
|
+
}
|
21568
|
+
}
|
21569
|
+
],
|
21570
|
+
"inheritedFrom": {
|
21571
|
+
"name": "MenuBar",
|
21572
|
+
"module": "components/menubar/menubar.component.js"
|
21573
|
+
}
|
21574
|
+
}
|
21575
|
+
],
|
21576
|
+
"attributes": [
|
21577
|
+
{
|
21578
|
+
"name": "aria-label",
|
21579
|
+
"type": {
|
21580
|
+
"text": "string | null"
|
21581
|
+
},
|
21582
|
+
"default": "null",
|
21583
|
+
"description": "Aria-label attribute to be set for accessibility",
|
21584
|
+
"fieldName": "ariaLabel"
|
21585
|
+
}
|
21586
|
+
],
|
21587
|
+
"superclass": {
|
21588
|
+
"name": "MenuBar",
|
21589
|
+
"module": "/src/components/menubar/menubar.component"
|
21590
|
+
},
|
21591
|
+
"tagName": "mdc-navitemlist",
|
21592
|
+
"jsDoc": "/**\n * `mdc-navitemlist` is a container component used to group multiple mdc-navitem elements into a navigation list.\n * It provides the structural foundation for organizing vertical nav items and\n * ensures consistent behavior and layout within side navigation patterns.\n *\n * Note: mdc-navitemlist is typically used within the sidenavigation component.\n * @tagname mdc-navitemlist\n *\n * @slot default - Slot for projecting one or more navigation items, optional section headers and dividers.\n */",
|
21593
|
+
"customElement": true
|
21594
|
+
}
|
21595
|
+
],
|
21596
|
+
"exports": [
|
21597
|
+
{
|
21598
|
+
"kind": "js",
|
21599
|
+
"name": "default",
|
21600
|
+
"declaration": {
|
21601
|
+
"name": "NavItemList",
|
21602
|
+
"module": "components/navitemlist/navitemlist.component.js"
|
21603
|
+
}
|
21604
|
+
}
|
21605
|
+
]
|
21606
|
+
},
|
21607
|
+
{
|
21608
|
+
"kind": "javascript-module",
|
21609
|
+
"path": "components/optgroup/optgroup.component.js",
|
21610
|
+
"declarations": [
|
21611
|
+
{
|
21612
|
+
"kind": "class",
|
21613
|
+
"description": "optgroup component, which creates a grouping of mdc-option within a listbox element.",
|
21614
|
+
"name": "OptGroup",
|
21615
|
+
"cssProperties": [
|
21616
|
+
{
|
21617
|
+
"description": "Allows customization of the disabled option color.",
|
21618
|
+
"name": "--mdc-optgroup-disabled-color"
|
21619
|
+
}
|
21620
|
+
],
|
21621
|
+
"slots": [
|
21622
|
+
{
|
21623
|
+
"description": "This is a default slot for mdc-option elements.",
|
21624
|
+
"name": "default"
|
21625
|
+
}
|
21626
|
+
],
|
21627
|
+
"members": [
|
21628
|
+
{
|
21629
|
+
"kind": "field",
|
21630
|
+
"name": "label",
|
21631
|
+
"type": {
|
21632
|
+
"text": "string | undefined"
|
21633
|
+
},
|
21634
|
+
"description": "The header text to be displayed on the top of the options list.",
|
21635
|
+
"attribute": "label",
|
21636
|
+
"reflects": true
|
21637
|
+
},
|
21638
|
+
{
|
21639
|
+
"kind": "method",
|
21640
|
+
"name": "setDisabledForAllOptions",
|
21534
21641
|
"privacy": "private",
|
21535
21642
|
"return": {
|
21536
21643
|
"type": {
|
21537
|
-
"text": "
|
21644
|
+
"text": "void"
|
21538
21645
|
}
|
21646
|
+
}
|
21647
|
+
},
|
21648
|
+
{
|
21649
|
+
"kind": "field",
|
21650
|
+
"name": "dataAriaLabel",
|
21651
|
+
"type": {
|
21652
|
+
"text": "string | null"
|
21539
21653
|
},
|
21540
|
-
"
|
21541
|
-
|
21542
|
-
|
21543
|
-
|
21544
|
-
"text": "HTMLElement"
|
21545
|
-
}
|
21546
|
-
}
|
21547
|
-
],
|
21654
|
+
"default": "null",
|
21655
|
+
"description": "Defines a string value that labels the current element.\nThe Aria-Label attribute to be set for accessibility.",
|
21656
|
+
"attribute": "data-aria-label",
|
21657
|
+
"reflects": true,
|
21548
21658
|
"inheritedFrom": {
|
21549
|
-
"name": "
|
21550
|
-
"module": "
|
21659
|
+
"name": "DataAriaLabelMixin",
|
21660
|
+
"module": "utils/mixins/DataAriaLabelMixin.js"
|
21551
21661
|
}
|
21552
21662
|
},
|
21553
21663
|
{
|
21554
|
-
"kind": "
|
21555
|
-
"name": "
|
21556
|
-
"
|
21557
|
-
|
21558
|
-
"type": {
|
21559
|
-
"text": "Promise<void>"
|
21560
|
-
}
|
21664
|
+
"kind": "field",
|
21665
|
+
"name": "disabled",
|
21666
|
+
"type": {
|
21667
|
+
"text": "boolean | undefined"
|
21561
21668
|
},
|
21562
|
-
"
|
21563
|
-
|
21564
|
-
|
21565
|
-
|
21566
|
-
"text": "KeyboardEvent"
|
21567
|
-
}
|
21568
|
-
}
|
21569
|
-
],
|
21669
|
+
"description": "Indicates whether the component is disabled.\nWhen the component is disabled for user interaction; it is not focusable or clickable.",
|
21670
|
+
"default": "undefined",
|
21671
|
+
"attribute": "disabled",
|
21672
|
+
"reflects": true,
|
21570
21673
|
"inheritedFrom": {
|
21571
|
-
"name": "
|
21572
|
-
"module": "
|
21674
|
+
"name": "DisabledMixin",
|
21675
|
+
"module": "utils/mixins/DisabledMixin.js"
|
21573
21676
|
}
|
21574
21677
|
}
|
21575
21678
|
],
|
21576
21679
|
"attributes": [
|
21577
21680
|
{
|
21578
|
-
"name": "
|
21681
|
+
"name": "label",
|
21682
|
+
"type": {
|
21683
|
+
"text": "string | undefined"
|
21684
|
+
},
|
21685
|
+
"description": "The header text to be displayed on the top of the options list.",
|
21686
|
+
"fieldName": "label"
|
21687
|
+
},
|
21688
|
+
{
|
21689
|
+
"name": "data-aria-label",
|
21579
21690
|
"type": {
|
21580
21691
|
"text": "string | null"
|
21581
21692
|
},
|
21582
21693
|
"default": "null",
|
21583
|
-
"description": "Aria-
|
21584
|
-
"fieldName": "
|
21694
|
+
"description": "Defines a string value that labels the current element.\nThe Aria-Label attribute to be set for accessibility.",
|
21695
|
+
"fieldName": "dataAriaLabel",
|
21696
|
+
"inheritedFrom": {
|
21697
|
+
"name": "DataAriaLabelMixin",
|
21698
|
+
"module": "src/utils/mixins/DataAriaLabelMixin.ts"
|
21699
|
+
}
|
21700
|
+
},
|
21701
|
+
{
|
21702
|
+
"name": "disabled",
|
21703
|
+
"type": {
|
21704
|
+
"text": "boolean | undefined"
|
21705
|
+
},
|
21706
|
+
"description": "Indicates whether the component is disabled.\nWhen the component is disabled for user interaction; it is not focusable or clickable.",
|
21707
|
+
"default": "undefined",
|
21708
|
+
"fieldName": "disabled",
|
21709
|
+
"inheritedFrom": {
|
21710
|
+
"name": "DisabledMixin",
|
21711
|
+
"module": "src/utils/mixins/DisabledMixin.ts"
|
21712
|
+
}
|
21713
|
+
}
|
21714
|
+
],
|
21715
|
+
"mixins": [
|
21716
|
+
{
|
21717
|
+
"name": "DataAriaLabelMixin",
|
21718
|
+
"module": "/src/utils/mixins/DataAriaLabelMixin"
|
21719
|
+
},
|
21720
|
+
{
|
21721
|
+
"name": "DisabledMixin",
|
21722
|
+
"module": "/src/utils/mixins/DisabledMixin"
|
21585
21723
|
}
|
21586
21724
|
],
|
21587
21725
|
"superclass": {
|
21588
|
-
"name": "
|
21589
|
-
"module": "/src/
|
21726
|
+
"name": "Component",
|
21727
|
+
"module": "/src/models"
|
21590
21728
|
},
|
21591
|
-
"tagName": "mdc-
|
21592
|
-
"jsDoc": "/**\n *
|
21729
|
+
"tagName": "mdc-optgroup",
|
21730
|
+
"jsDoc": "/**\n * optgroup component, which creates a grouping of mdc-option within a listbox element.\n *\n * @dependency mdc-text\n *\n * @tagname mdc-optgroup\n *\n * @slot default - This is a default slot for mdc-option elements.\n *\n * @cssproperty --mdc-optgroup-disabled-color - Allows customization of the disabled option color.\n */",
|
21593
21731
|
"customElement": true
|
21594
21732
|
}
|
21595
21733
|
],
|
@@ -21598,8 +21736,8 @@
|
|
21598
21736
|
"kind": "js",
|
21599
21737
|
"name": "default",
|
21600
21738
|
"declaration": {
|
21601
|
-
"name": "
|
21602
|
-
"module": "components/
|
21739
|
+
"name": "OptGroup",
|
21740
|
+
"module": "components/optgroup/optgroup.component.js"
|
21603
21741
|
}
|
21604
21742
|
}
|
21605
21743
|
]
|
@@ -25154,144 +25292,6 @@
|
|
25154
25292
|
}
|
25155
25293
|
]
|
25156
25294
|
},
|
25157
|
-
{
|
25158
|
-
"kind": "javascript-module",
|
25159
|
-
"path": "components/optgroup/optgroup.component.js",
|
25160
|
-
"declarations": [
|
25161
|
-
{
|
25162
|
-
"kind": "class",
|
25163
|
-
"description": "optgroup component, which creates a grouping of mdc-option within a listbox element.",
|
25164
|
-
"name": "OptGroup",
|
25165
|
-
"cssProperties": [
|
25166
|
-
{
|
25167
|
-
"description": "Allows customization of the disabled option color.",
|
25168
|
-
"name": "--mdc-optgroup-disabled-color"
|
25169
|
-
}
|
25170
|
-
],
|
25171
|
-
"slots": [
|
25172
|
-
{
|
25173
|
-
"description": "This is a default slot for mdc-option elements.",
|
25174
|
-
"name": "default"
|
25175
|
-
}
|
25176
|
-
],
|
25177
|
-
"members": [
|
25178
|
-
{
|
25179
|
-
"kind": "field",
|
25180
|
-
"name": "label",
|
25181
|
-
"type": {
|
25182
|
-
"text": "string | undefined"
|
25183
|
-
},
|
25184
|
-
"description": "The header text to be displayed on the top of the options list.",
|
25185
|
-
"attribute": "label",
|
25186
|
-
"reflects": true
|
25187
|
-
},
|
25188
|
-
{
|
25189
|
-
"kind": "method",
|
25190
|
-
"name": "setDisabledForAllOptions",
|
25191
|
-
"privacy": "private",
|
25192
|
-
"return": {
|
25193
|
-
"type": {
|
25194
|
-
"text": "void"
|
25195
|
-
}
|
25196
|
-
}
|
25197
|
-
},
|
25198
|
-
{
|
25199
|
-
"kind": "field",
|
25200
|
-
"name": "dataAriaLabel",
|
25201
|
-
"type": {
|
25202
|
-
"text": "string | null"
|
25203
|
-
},
|
25204
|
-
"default": "null",
|
25205
|
-
"description": "Defines a string value that labels the current element.\nThe Aria-Label attribute to be set for accessibility.",
|
25206
|
-
"attribute": "data-aria-label",
|
25207
|
-
"reflects": true,
|
25208
|
-
"inheritedFrom": {
|
25209
|
-
"name": "DataAriaLabelMixin",
|
25210
|
-
"module": "utils/mixins/DataAriaLabelMixin.js"
|
25211
|
-
}
|
25212
|
-
},
|
25213
|
-
{
|
25214
|
-
"kind": "field",
|
25215
|
-
"name": "disabled",
|
25216
|
-
"type": {
|
25217
|
-
"text": "boolean | undefined"
|
25218
|
-
},
|
25219
|
-
"description": "Indicates whether the component is disabled.\nWhen the component is disabled for user interaction; it is not focusable or clickable.",
|
25220
|
-
"default": "undefined",
|
25221
|
-
"attribute": "disabled",
|
25222
|
-
"reflects": true,
|
25223
|
-
"inheritedFrom": {
|
25224
|
-
"name": "DisabledMixin",
|
25225
|
-
"module": "utils/mixins/DisabledMixin.js"
|
25226
|
-
}
|
25227
|
-
}
|
25228
|
-
],
|
25229
|
-
"attributes": [
|
25230
|
-
{
|
25231
|
-
"name": "label",
|
25232
|
-
"type": {
|
25233
|
-
"text": "string | undefined"
|
25234
|
-
},
|
25235
|
-
"description": "The header text to be displayed on the top of the options list.",
|
25236
|
-
"fieldName": "label"
|
25237
|
-
},
|
25238
|
-
{
|
25239
|
-
"name": "data-aria-label",
|
25240
|
-
"type": {
|
25241
|
-
"text": "string | null"
|
25242
|
-
},
|
25243
|
-
"default": "null",
|
25244
|
-
"description": "Defines a string value that labels the current element.\nThe Aria-Label attribute to be set for accessibility.",
|
25245
|
-
"fieldName": "dataAriaLabel",
|
25246
|
-
"inheritedFrom": {
|
25247
|
-
"name": "DataAriaLabelMixin",
|
25248
|
-
"module": "src/utils/mixins/DataAriaLabelMixin.ts"
|
25249
|
-
}
|
25250
|
-
},
|
25251
|
-
{
|
25252
|
-
"name": "disabled",
|
25253
|
-
"type": {
|
25254
|
-
"text": "boolean | undefined"
|
25255
|
-
},
|
25256
|
-
"description": "Indicates whether the component is disabled.\nWhen the component is disabled for user interaction; it is not focusable or clickable.",
|
25257
|
-
"default": "undefined",
|
25258
|
-
"fieldName": "disabled",
|
25259
|
-
"inheritedFrom": {
|
25260
|
-
"name": "DisabledMixin",
|
25261
|
-
"module": "src/utils/mixins/DisabledMixin.ts"
|
25262
|
-
}
|
25263
|
-
}
|
25264
|
-
],
|
25265
|
-
"mixins": [
|
25266
|
-
{
|
25267
|
-
"name": "DataAriaLabelMixin",
|
25268
|
-
"module": "/src/utils/mixins/DataAriaLabelMixin"
|
25269
|
-
},
|
25270
|
-
{
|
25271
|
-
"name": "DisabledMixin",
|
25272
|
-
"module": "/src/utils/mixins/DisabledMixin"
|
25273
|
-
}
|
25274
|
-
],
|
25275
|
-
"superclass": {
|
25276
|
-
"name": "Component",
|
25277
|
-
"module": "/src/models"
|
25278
|
-
},
|
25279
|
-
"tagName": "mdc-optgroup",
|
25280
|
-
"jsDoc": "/**\n * optgroup component, which creates a grouping of mdc-option within a listbox element.\n *\n * @dependency mdc-text\n *\n * @tagname mdc-optgroup\n *\n * @slot default - This is a default slot for mdc-option elements.\n *\n * @cssproperty --mdc-optgroup-disabled-color - Allows customization of the disabled option color.\n */",
|
25281
|
-
"customElement": true
|
25282
|
-
}
|
25283
|
-
],
|
25284
|
-
"exports": [
|
25285
|
-
{
|
25286
|
-
"kind": "js",
|
25287
|
-
"name": "default",
|
25288
|
-
"declaration": {
|
25289
|
-
"name": "OptGroup",
|
25290
|
-
"module": "components/optgroup/optgroup.component.js"
|
25291
|
-
}
|
25292
|
-
}
|
25293
|
-
]
|
25294
|
-
},
|
25295
25295
|
{
|
25296
25296
|
"kind": "javascript-module",
|
25297
25297
|
"path": "components/presence/presence.component.js",
|