@momentum-design/components 0.129.8 → 0.129.10
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/browser/index.js +53 -101
- package/dist/browser/index.js.map +2 -2
- package/dist/components/accordion/accordion.component.d.ts +28 -27
- package/dist/components/accordion/accordion.component.js +24 -25
- package/dist/components/accordionbutton/accordionbutton.component.d.ts +31 -27
- package/dist/components/accordionbutton/accordionbutton.component.js +28 -25
- package/dist/components/accordiongroup/accordiongroup.component.d.ts +21 -22
- package/dist/components/accordiongroup/accordiongroup.component.js +21 -22
- package/dist/components/accordiongroup/accordiongroup.styles.js +5 -5
- package/dist/components/tab/tab.component.d.ts +17 -65
- package/dist/components/tab/tab.component.js +17 -65
- package/dist/components/tab/tab.styles.js +48 -96
- package/dist/custom-elements.json +85 -233
- package/dist/react/accordion/index.d.ts +24 -25
- package/dist/react/accordion/index.js +24 -25
- package/dist/react/accordionbutton/index.d.ts +20 -21
- package/dist/react/accordionbutton/index.js +20 -21
- package/dist/react/accordiongroup/index.d.ts +11 -19
- package/dist/react/accordiongroup/index.js +11 -19
- package/dist/react/tab/index.d.ts +17 -65
- package/dist/react/tab/index.js +17 -65
- package/package.json +1 -1
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
"declarations": [
|
|
9
9
|
{
|
|
10
10
|
"kind": "class",
|
|
11
|
-
"description": "An accordion
|
|
11
|
+
"description": "An accordion is a vertically stacked component with a header and expandable/collapsible body section.\nThe header displays a prefix icon, header text, optional control slots (leading and trailing), and a dedicated expand/collapse button.\nUnlike `accordionbutton`, only the expand/collapse button is clickable and not the entire header.\n\n## Header contains\n- Optional prefix icon\n- Header text (default H3, customizable via `data-aria-level`)\n- Leading slot for controls (placed after header text)\n- Trailing slot for controls (placed before expand/collapse button)\n- Expand/collapse button (automatically positioned at the end)\n\n## Body contains\n- Default slot for any content\n\nThe accordion supports different border styles through the `variant` attribute and different spacing through the `size` attribute.\nAn accordion can be disabled, which prevents all interactions including the expand/collapse button and any slotted controls.\n\n## When to use\n- Use `mdc-accordion` when you need additional interactive controls (chips, badges, buttons, icons) in the header.\n- Use `mdc-accordionbutton` if you only need a simple clickable header without extra controls.\n\n## Accessibility\n- Always provide `open-button-aria-label` and `close-button-aria-label` for screen reader support\n- Adjust `data-aria-level` based on heading hierarchy in your page\n- Note: Screen readers may lose focus when toggling if accordion is expanded by default",
|
|
12
12
|
"name": "Accordion",
|
|
13
13
|
"cssProperties": [
|
|
14
14
|
{
|
|
@@ -20,24 +20,24 @@
|
|
|
20
20
|
}
|
|
21
21
|
},
|
|
22
22
|
{
|
|
23
|
-
"description": "The
|
|
24
|
-
"name": "--mdc-accordionbutton-
|
|
23
|
+
"description": "The disabled text color of the accordion.",
|
|
24
|
+
"name": "--mdc-accordionbutton-disabled-color",
|
|
25
25
|
"inheritedFrom": {
|
|
26
26
|
"name": "AccordionButton",
|
|
27
27
|
"module": "src/components/accordionbutton/accordionbutton.component.ts"
|
|
28
28
|
}
|
|
29
29
|
},
|
|
30
30
|
{
|
|
31
|
-
"description": "The
|
|
32
|
-
"name": "--mdc-accordionbutton-
|
|
31
|
+
"description": "The hover background color of the accordion button header.",
|
|
32
|
+
"name": "--mdc-accordionbutton-hover-color",
|
|
33
33
|
"inheritedFrom": {
|
|
34
34
|
"name": "AccordionButton",
|
|
35
35
|
"module": "src/components/accordionbutton/accordionbutton.component.ts"
|
|
36
36
|
}
|
|
37
37
|
},
|
|
38
38
|
{
|
|
39
|
-
"description": "The
|
|
40
|
-
"name": "--mdc-accordionbutton-
|
|
39
|
+
"description": "The active background color of the accordion button header.",
|
|
40
|
+
"name": "--mdc-accordionbutton-active-color",
|
|
41
41
|
"inheritedFrom": {
|
|
42
42
|
"name": "AccordionButton",
|
|
43
43
|
"module": "src/components/accordionbutton/accordionbutton.component.ts"
|
|
@@ -100,11 +100,11 @@
|
|
|
100
100
|
],
|
|
101
101
|
"slots": [
|
|
102
102
|
{
|
|
103
|
-
"description": "The leading controls slot of the accordion on the header section.",
|
|
103
|
+
"description": "The leading controls slot of the accordion on the header section. Placed after the header text.",
|
|
104
104
|
"name": "leading-controls"
|
|
105
105
|
},
|
|
106
106
|
{
|
|
107
|
-
"description": "The trailing controls slot of the accordion on the header section.",
|
|
107
|
+
"description": "The trailing controls slot of the accordion on the header section. Placed before the expand/collapse button.",
|
|
108
108
|
"name": "trailing-controls"
|
|
109
109
|
},
|
|
110
110
|
{
|
|
@@ -123,7 +123,7 @@
|
|
|
123
123
|
"type": {
|
|
124
124
|
"text": "string | undefined"
|
|
125
125
|
},
|
|
126
|
-
"description": "
|
|
126
|
+
"description": "Accessible label for the expand/collapse button when the accordion is in expanded state.\nProvides context to screen readers about the button's action to close the accordion.",
|
|
127
127
|
"attribute": "close-button-aria-label",
|
|
128
128
|
"reflects": true
|
|
129
129
|
},
|
|
@@ -133,7 +133,7 @@
|
|
|
133
133
|
"type": {
|
|
134
134
|
"text": "number"
|
|
135
135
|
},
|
|
136
|
-
"description": "
|
|
136
|
+
"description": "Specifies the heading level for accessibility purposes.\nShould match the heading hierarchy of the page (e.g., 2 for H2, 3 for H3).",
|
|
137
137
|
"default": "3",
|
|
138
138
|
"attribute": "data-aria-level",
|
|
139
139
|
"reflects": true,
|
|
@@ -153,8 +153,8 @@
|
|
|
153
153
|
"attribute": "disabled",
|
|
154
154
|
"reflects": true,
|
|
155
155
|
"inheritedFrom": {
|
|
156
|
-
"name": "
|
|
157
|
-
"module": "
|
|
156
|
+
"name": "AccordionButton",
|
|
157
|
+
"module": "components/accordionbutton/accordionbutton.component.js"
|
|
158
158
|
}
|
|
159
159
|
},
|
|
160
160
|
{
|
|
@@ -178,7 +178,7 @@
|
|
|
178
178
|
"type": {
|
|
179
179
|
"text": "boolean"
|
|
180
180
|
},
|
|
181
|
-
"description": "
|
|
181
|
+
"description": "Controls whether the accordion body content is visible.\n- When true, the body section is shown; when false, it is hidden.",
|
|
182
182
|
"default": "false",
|
|
183
183
|
"attribute": "expanded",
|
|
184
184
|
"reflects": true,
|
|
@@ -247,7 +247,7 @@
|
|
|
247
247
|
"type": {
|
|
248
248
|
"text": "string | undefined"
|
|
249
249
|
},
|
|
250
|
-
"description": "
|
|
250
|
+
"description": "Text content displayed in the accordion header.",
|
|
251
251
|
"attribute": "header-text",
|
|
252
252
|
"reflects": true,
|
|
253
253
|
"inheritedFrom": {
|
|
@@ -261,7 +261,7 @@
|
|
|
261
261
|
"type": {
|
|
262
262
|
"text": "string | undefined"
|
|
263
263
|
},
|
|
264
|
-
"description": "
|
|
264
|
+
"description": "Accessible label for the expand/collapse button when the accordion is in collapsed state.\nProvides context to screen readers about the button's action to open the accordion.",
|
|
265
265
|
"attribute": "open-button-aria-label",
|
|
266
266
|
"reflects": true
|
|
267
267
|
},
|
|
@@ -271,7 +271,7 @@
|
|
|
271
271
|
"type": {
|
|
272
272
|
"text": "IconNames | undefined"
|
|
273
273
|
},
|
|
274
|
-
"description": "
|
|
274
|
+
"description": "Icon displayed at the start of the accordion header, before the header text.\nMust be a valid icon name.",
|
|
275
275
|
"attribute": "prefix-icon",
|
|
276
276
|
"inheritedFrom": {
|
|
277
277
|
"name": "AccordionButton",
|
|
@@ -350,7 +350,7 @@
|
|
|
350
350
|
"type": {
|
|
351
351
|
"text": "Size"
|
|
352
352
|
},
|
|
353
|
-
"description": "
|
|
353
|
+
"description": "Controls the spacing and padding of the accordion. \n- Small provides 1rem (16px) padding, large provides 1.5rem (24px) padding.",
|
|
354
354
|
"default": "'small'",
|
|
355
355
|
"attribute": "size",
|
|
356
356
|
"reflects": true,
|
|
@@ -365,7 +365,7 @@
|
|
|
365
365
|
"type": {
|
|
366
366
|
"text": "Variant"
|
|
367
367
|
},
|
|
368
|
-
"description": "
|
|
368
|
+
"description": "Visual style variant of the accordion. \n- Default includes borders, borderless removes all border styling.",
|
|
369
369
|
"default": "'default'",
|
|
370
370
|
"attribute": "variant",
|
|
371
371
|
"reflects": true,
|
|
@@ -377,7 +377,7 @@
|
|
|
377
377
|
],
|
|
378
378
|
"events": [
|
|
379
379
|
{
|
|
380
|
-
"description": "(React: onShown) This event is triggered when the accordion is expanded.",
|
|
380
|
+
"description": "(React: onShown) This event is triggered when the accordion is toggled (expanded or collapsed).",
|
|
381
381
|
"name": "shown",
|
|
382
382
|
"reactName": "onShown",
|
|
383
383
|
"inheritedFrom": {
|
|
@@ -392,7 +392,7 @@
|
|
|
392
392
|
"type": {
|
|
393
393
|
"text": "string | undefined"
|
|
394
394
|
},
|
|
395
|
-
"description": "
|
|
395
|
+
"description": "Accessible label for the expand/collapse button when the accordion is in collapsed state.\nProvides context to screen readers about the button's action to open the accordion.",
|
|
396
396
|
"fieldName": "openButtonAriaLabel"
|
|
397
397
|
},
|
|
398
398
|
{
|
|
@@ -400,7 +400,7 @@
|
|
|
400
400
|
"type": {
|
|
401
401
|
"text": "string | undefined"
|
|
402
402
|
},
|
|
403
|
-
"description": "
|
|
403
|
+
"description": "Accessible label for the expand/collapse button when the accordion is in expanded state.\nProvides context to screen readers about the button's action to close the accordion.",
|
|
404
404
|
"fieldName": "closeButtonAriaLabel"
|
|
405
405
|
},
|
|
406
406
|
{
|
|
@@ -412,8 +412,8 @@
|
|
|
412
412
|
"default": "undefined",
|
|
413
413
|
"fieldName": "disabled",
|
|
414
414
|
"inheritedFrom": {
|
|
415
|
-
"name": "
|
|
416
|
-
"module": "src/
|
|
415
|
+
"name": "AccordionButton",
|
|
416
|
+
"module": "src/components/accordionbutton/accordionbutton.component.ts"
|
|
417
417
|
}
|
|
418
418
|
},
|
|
419
419
|
{
|
|
@@ -421,7 +421,7 @@
|
|
|
421
421
|
"type": {
|
|
422
422
|
"text": "Size"
|
|
423
423
|
},
|
|
424
|
-
"description": "
|
|
424
|
+
"description": "Controls the spacing and padding of the accordion. \n- Small provides 1rem (16px) padding, large provides 1.5rem (24px) padding.",
|
|
425
425
|
"default": "'small'",
|
|
426
426
|
"fieldName": "size",
|
|
427
427
|
"inheritedFrom": {
|
|
@@ -434,7 +434,7 @@
|
|
|
434
434
|
"type": {
|
|
435
435
|
"text": "Variant"
|
|
436
436
|
},
|
|
437
|
-
"description": "
|
|
437
|
+
"description": "Visual style variant of the accordion. \n- Default includes borders, borderless removes all border styling.",
|
|
438
438
|
"default": "'default'",
|
|
439
439
|
"fieldName": "variant",
|
|
440
440
|
"inheritedFrom": {
|
|
@@ -447,7 +447,7 @@
|
|
|
447
447
|
"type": {
|
|
448
448
|
"text": "number"
|
|
449
449
|
},
|
|
450
|
-
"description": "
|
|
450
|
+
"description": "Specifies the heading level for accessibility purposes.\nShould match the heading hierarchy of the page (e.g., 2 for H2, 3 for H3).",
|
|
451
451
|
"default": "3",
|
|
452
452
|
"fieldName": "dataAriaLevel",
|
|
453
453
|
"inheritedFrom": {
|
|
@@ -460,7 +460,7 @@
|
|
|
460
460
|
"type": {
|
|
461
461
|
"text": "boolean"
|
|
462
462
|
},
|
|
463
|
-
"description": "
|
|
463
|
+
"description": "Controls whether the accordion body content is visible.\n- When true, the body section is shown; when false, it is hidden.",
|
|
464
464
|
"default": "false",
|
|
465
465
|
"fieldName": "expanded",
|
|
466
466
|
"inheritedFrom": {
|
|
@@ -473,7 +473,7 @@
|
|
|
473
473
|
"type": {
|
|
474
474
|
"text": "string | undefined"
|
|
475
475
|
},
|
|
476
|
-
"description": "
|
|
476
|
+
"description": "Text content displayed in the accordion header.",
|
|
477
477
|
"fieldName": "headerText",
|
|
478
478
|
"inheritedFrom": {
|
|
479
479
|
"name": "AccordionButton",
|
|
@@ -485,7 +485,7 @@
|
|
|
485
485
|
"type": {
|
|
486
486
|
"text": "IconNames | undefined"
|
|
487
487
|
},
|
|
488
|
-
"description": "
|
|
488
|
+
"description": "Icon displayed at the start of the accordion header, before the header text.\nMust be a valid icon name.",
|
|
489
489
|
"fieldName": "prefixIcon",
|
|
490
490
|
"inheritedFrom": {
|
|
491
491
|
"name": "AccordionButton",
|
|
@@ -498,7 +498,7 @@
|
|
|
498
498
|
"module": "/src/components/accordionbutton/accordionbutton.component"
|
|
499
499
|
},
|
|
500
500
|
"tagName": "mdc-accordion",
|
|
501
|
-
"jsDoc": "/**\n * An accordion
|
|
501
|
+
"jsDoc": "/**\n * An accordion is a vertically stacked component with a header and expandable/collapsible body section.\n * The header displays a prefix icon, header text, optional control slots (leading and trailing), and a dedicated expand/collapse button.\n * Unlike `accordionbutton`, only the expand/collapse button is clickable and not the entire header.\n *\n * ## Header contains\n * - Optional prefix icon\n * - Header text (default H3, customizable via `data-aria-level`)\n * - Leading slot for controls (placed after header text)\n * - Trailing slot for controls (placed before expand/collapse button)\n * - Expand/collapse button (automatically positioned at the end)\n *\n * ## Body contains\n * - Default slot for any content\n *\n * The accordion supports different border styles through the `variant` attribute and different spacing through the `size` attribute.\n * An accordion can be disabled, which prevents all interactions including the expand/collapse button and any slotted controls.\n * \n * ## When to use\n * - Use `mdc-accordion` when you need additional interactive controls (chips, badges, buttons, icons) in the header.\n * - Use `mdc-accordionbutton` if you only need a simple clickable header without extra controls.\n *\n * ## Accessibility\n * - Always provide `open-button-aria-label` and `close-button-aria-label` for screen reader support\n * - Adjust `data-aria-level` based on heading hierarchy in your page\n * - Note: Screen readers may lose focus when toggling if accordion is expanded by default\n *\n * @tagname mdc-accordion\n *\n * @dependency mdc-button\n * @dependency mdc-icon\n * @dependency mdc-text\n *\n * @slot leading-controls - The leading controls slot of the accordion on the header section. Placed after the header text.\n * @slot trailing-controls - The trailing controls slot of the accordion on the header section. Placed before the expand/collapse button.\n * @slot default - The default slot contains the body section of the accordion. User can place anything inside this body slot.\n *\n * @event shown - (React: onShown) This event is triggered when the accordion is toggled (expanded or collapsed).\n *\n * @cssproperty --mdc-accordionbutton-border-color - The border color of the accordion.\n * @cssproperty --mdc-accordionbutton-disabled-color - The disabled text color of the accordion.\n *\n * @csspart body-section - The body section of the accordion.\n * @csspart header-section - The header section of the accordion.\n * @csspart leading-header - The leading header of the accordion.\n * @csspart trailing-header - The trailing header of the accordion.\n * @csspart trailing-header__button - The trailing header button of the accordion.\n */",
|
|
502
502
|
"customElement": true
|
|
503
503
|
}
|
|
504
504
|
],
|
|
@@ -519,7 +519,7 @@
|
|
|
519
519
|
"declarations": [
|
|
520
520
|
{
|
|
521
521
|
"kind": "class",
|
|
522
|
-
"description": "An accordion button
|
|
522
|
+
"description": "An accordion button is a vertically stacked component with a clickable header and expandable/collapsible body section.\nThe entire header is clickable to toggle the visibility of the body content.\n\n## Header contains\n- Optional prefix icon\n- Header text (default H3, customizable via `data-aria-level`)\n- Expand/collapse arrow icon (visual indicator)\n\n## Body contains\n- Default slot for any content\n\nThe accordion button supports different border styles through the `variant` attribute and different spacing through the `size` attribute.\nAn accordion button can be disabled, which prevents the header from being clickable.\n\n## When to use\n- Use `mdc-accordionbutton` for simple clickable headers without additional controls.\n- Use `mdc-accordion` instead if you need extra controls (chips, badges, icons) in the header.\n\n## Accessibility\n- Adjust `data-aria-level` based on heading hierarchy in your page.\n- Note: Screen readers may lose focus when toggling if accordion button is expanded by default.",
|
|
523
523
|
"name": "AccordionButton",
|
|
524
524
|
"cssProperties": [
|
|
525
525
|
{
|
|
@@ -527,15 +527,15 @@
|
|
|
527
527
|
"name": "--mdc-accordionbutton-border-color"
|
|
528
528
|
},
|
|
529
529
|
{
|
|
530
|
-
"description": "The hover color of the accordion button.",
|
|
530
|
+
"description": "The hover background color of the accordion button header.",
|
|
531
531
|
"name": "--mdc-accordionbutton-hover-color"
|
|
532
532
|
},
|
|
533
533
|
{
|
|
534
|
-
"description": "The active color of the accordion button.",
|
|
534
|
+
"description": "The active background color of the accordion button header.",
|
|
535
535
|
"name": "--mdc-accordionbutton-active-color"
|
|
536
536
|
},
|
|
537
537
|
{
|
|
538
|
-
"description": "The disabled color of the accordion button.",
|
|
538
|
+
"description": "The disabled text color of the accordion button.",
|
|
539
539
|
"name": "--mdc-accordionbutton-disabled-color"
|
|
540
540
|
}
|
|
541
541
|
],
|
|
@@ -578,7 +578,7 @@
|
|
|
578
578
|
"type": {
|
|
579
579
|
"text": "number"
|
|
580
580
|
},
|
|
581
|
-
"description": "
|
|
581
|
+
"description": "Specifies the heading level for accessibility purposes.\nShould match the heading hierarchy of the page (e.g., 2 for H2, 3 for H3).",
|
|
582
582
|
"default": "3",
|
|
583
583
|
"attribute": "data-aria-level",
|
|
584
584
|
"reflects": true
|
|
@@ -615,7 +615,7 @@
|
|
|
615
615
|
"type": {
|
|
616
616
|
"text": "boolean"
|
|
617
617
|
},
|
|
618
|
-
"description": "
|
|
618
|
+
"description": "Controls whether the accordion body content is visible.\n- When true, the body section is shown; when false, it is hidden.",
|
|
619
619
|
"default": "false",
|
|
620
620
|
"attribute": "expanded",
|
|
621
621
|
"reflects": true
|
|
@@ -668,7 +668,7 @@
|
|
|
668
668
|
"type": {
|
|
669
669
|
"text": "string | undefined"
|
|
670
670
|
},
|
|
671
|
-
"description": "
|
|
671
|
+
"description": "Text content displayed in the accordion header.",
|
|
672
672
|
"attribute": "header-text",
|
|
673
673
|
"reflects": true
|
|
674
674
|
},
|
|
@@ -678,7 +678,7 @@
|
|
|
678
678
|
"type": {
|
|
679
679
|
"text": "IconNames | undefined"
|
|
680
680
|
},
|
|
681
|
-
"description": "
|
|
681
|
+
"description": "Icon displayed at the start of the accordion header, before the header text.\nMust be a valid icon name.",
|
|
682
682
|
"attribute": "prefix-icon"
|
|
683
683
|
},
|
|
684
684
|
{
|
|
@@ -736,7 +736,7 @@
|
|
|
736
736
|
"type": {
|
|
737
737
|
"text": "Size"
|
|
738
738
|
},
|
|
739
|
-
"description": "
|
|
739
|
+
"description": "Controls the spacing and padding of the accordion. \n- Small provides 1rem (16px) padding, large provides 1.5rem (24px) padding.",
|
|
740
740
|
"default": "'small'",
|
|
741
741
|
"attribute": "size",
|
|
742
742
|
"reflects": true
|
|
@@ -747,7 +747,7 @@
|
|
|
747
747
|
"type": {
|
|
748
748
|
"text": "Variant"
|
|
749
749
|
},
|
|
750
|
-
"description": "
|
|
750
|
+
"description": "Visual style variant of the accordion. \n- Default includes borders, borderless removes all border styling.",
|
|
751
751
|
"default": "'default'",
|
|
752
752
|
"attribute": "variant",
|
|
753
753
|
"reflects": true
|
|
@@ -755,7 +755,7 @@
|
|
|
755
755
|
],
|
|
756
756
|
"events": [
|
|
757
757
|
{
|
|
758
|
-
"description": "(React: onShown) This event is triggered when the accordion button is expanded.",
|
|
758
|
+
"description": "(React: onShown) This event is triggered when the accordion button is toggled (expanded or collapsed).",
|
|
759
759
|
"name": "shown",
|
|
760
760
|
"reactName": "onShown"
|
|
761
761
|
}
|
|
@@ -766,7 +766,7 @@
|
|
|
766
766
|
"type": {
|
|
767
767
|
"text": "Size"
|
|
768
768
|
},
|
|
769
|
-
"description": "
|
|
769
|
+
"description": "Controls the spacing and padding of the accordion. \n- Small provides 1rem (16px) padding, large provides 1.5rem (24px) padding.",
|
|
770
770
|
"default": "'small'",
|
|
771
771
|
"fieldName": "size"
|
|
772
772
|
},
|
|
@@ -775,7 +775,7 @@
|
|
|
775
775
|
"type": {
|
|
776
776
|
"text": "Variant"
|
|
777
777
|
},
|
|
778
|
-
"description": "
|
|
778
|
+
"description": "Visual style variant of the accordion. \n- Default includes borders, borderless removes all border styling.",
|
|
779
779
|
"default": "'default'",
|
|
780
780
|
"fieldName": "variant"
|
|
781
781
|
},
|
|
@@ -784,7 +784,7 @@
|
|
|
784
784
|
"type": {
|
|
785
785
|
"text": "number"
|
|
786
786
|
},
|
|
787
|
-
"description": "
|
|
787
|
+
"description": "Specifies the heading level for accessibility purposes.\nShould match the heading hierarchy of the page (e.g., 2 for H2, 3 for H3).",
|
|
788
788
|
"default": "3",
|
|
789
789
|
"fieldName": "dataAriaLevel"
|
|
790
790
|
},
|
|
@@ -793,7 +793,7 @@
|
|
|
793
793
|
"type": {
|
|
794
794
|
"text": "boolean"
|
|
795
795
|
},
|
|
796
|
-
"description": "
|
|
796
|
+
"description": "Controls whether the accordion body content is visible.\n- When true, the body section is shown; when false, it is hidden.",
|
|
797
797
|
"default": "false",
|
|
798
798
|
"fieldName": "expanded"
|
|
799
799
|
},
|
|
@@ -802,7 +802,7 @@
|
|
|
802
802
|
"type": {
|
|
803
803
|
"text": "string | undefined"
|
|
804
804
|
},
|
|
805
|
-
"description": "
|
|
805
|
+
"description": "Text content displayed in the accordion header.",
|
|
806
806
|
"fieldName": "headerText"
|
|
807
807
|
},
|
|
808
808
|
{
|
|
@@ -810,7 +810,7 @@
|
|
|
810
810
|
"type": {
|
|
811
811
|
"text": "IconNames | undefined"
|
|
812
812
|
},
|
|
813
|
-
"description": "
|
|
813
|
+
"description": "Icon displayed at the start of the accordion header, before the header text.\nMust be a valid icon name.",
|
|
814
814
|
"fieldName": "prefixIcon"
|
|
815
815
|
},
|
|
816
816
|
{
|
|
@@ -838,7 +838,7 @@
|
|
|
838
838
|
"module": "/src/models"
|
|
839
839
|
},
|
|
840
840
|
"tagName": "mdc-accordionbutton",
|
|
841
|
-
"jsDoc": "/**\n * An accordion button
|
|
841
|
+
"jsDoc": "/**\n * An accordion button is a vertically stacked component with a clickable header and expandable/collapsible body section.\n * The entire header is clickable to toggle the visibility of the body content.\n *\n * ## Header contains\n * - Optional prefix icon\n * - Header text (default H3, customizable via `data-aria-level`)\n * - Expand/collapse arrow icon (visual indicator)\n *\n * ## Body contains\n * - Default slot for any content\n *\n * The accordion button supports different border styles through the `variant` attribute and different spacing through the `size` attribute.\n * An accordion button can be disabled, which prevents the header from being clickable.\n *\n * ## When to use\n * - Use `mdc-accordionbutton` for simple clickable headers without additional controls.\n * - Use `mdc-accordion` instead if you need extra controls (chips, badges, icons) in the header.\n *\n * ## Accessibility\n * - Adjust `data-aria-level` based on heading hierarchy in your page.\n * - Note: Screen readers may lose focus when toggling if accordion button is expanded by default.\n *\n * @tagname mdc-accordionbutton\n *\n * @dependency mdc-button\n * @dependency mdc-icon\n * @dependency mdc-text\n *\n * @slot default - The default slot contains the body section of the accordion. User can place anything inside this body slot.\n *\n * @event shown - (React: onShown) This event is triggered when the accordion button is toggled (expanded or collapsed).\n *\n * @cssproperty --mdc-accordionbutton-border-color - The border color of the accordion button.\n * @cssproperty --mdc-accordionbutton-hover-color - The hover background color of the accordion button header.\n * @cssproperty --mdc-accordionbutton-active-color - The active background color of the accordion button header.\n * @cssproperty --mdc-accordionbutton-disabled-color - The disabled text color of the accordion button.\n *\n * @csspart body-section - The body section of the accordion button.\n * @csspart header-button-section - The header button section of the accordion button.\n * @csspart header-section - The header section of the accordion button.\n * @csspart leading-header - The leading header of the accordion button.\n * @csspart trailing-header - The trailing header of the accordion button.\n * @csspart trailing-header__icon - The trailing header icon of the accordion button.\n */",
|
|
842
842
|
"customElement": true
|
|
843
843
|
}
|
|
844
844
|
],
|
|
@@ -859,12 +859,12 @@
|
|
|
859
859
|
"declarations": [
|
|
860
860
|
{
|
|
861
861
|
"kind": "class",
|
|
862
|
-
"description": "An accordion group is a
|
|
862
|
+
"description": "An accordion group is a container that manages multiple accordion or accordionbutton components as a unified set.\nIt controls the visual styling, spacing, and expansion behavior of all child accordions.\n\nThe group applies consistent `variant` and `size` attributes to all children automatically.\nBy default, expanding one accordion collapses others (`allow-multiple` is false). Set `allow-multiple` to true to allow multiple expanded items.\n\n## Accepted children\n- Use `mdc-accordionbutton` children for simple clickable headers.\n- Use `mdc-accordion` children when you need additional controls (chips, badges, icons) in the headers.\n- Other elements in the slot are ignored.\n\n## Accessibility\n- Note: Screen readers may lose focus when toggling if the first accordion is expanded by default.",
|
|
863
863
|
"name": "AccordionGroup",
|
|
864
864
|
"cssProperties": [
|
|
865
865
|
{
|
|
866
|
-
"description": "The border color
|
|
867
|
-
"name": "--mdc-accordiongroup-border-color"
|
|
866
|
+
"description": "The border color applied to all child accordion items and their separators.",
|
|
867
|
+
"name": "--mdc-accordiongroup-items-border-color"
|
|
868
868
|
}
|
|
869
869
|
],
|
|
870
870
|
"slots": [
|
|
@@ -881,7 +881,7 @@
|
|
|
881
881
|
"text": "boolean"
|
|
882
882
|
},
|
|
883
883
|
"default": "false",
|
|
884
|
-
"description": "
|
|
884
|
+
"description": "Controls whether multiple accordions can be expanded simultaneously.\n- When false, expanding one accordion automatically collapses others.\n- When true, multiple accordions can remain open at the same time.",
|
|
885
885
|
"attribute": "allow-multiple",
|
|
886
886
|
"reflects": true
|
|
887
887
|
},
|
|
@@ -938,7 +938,7 @@
|
|
|
938
938
|
"type": {
|
|
939
939
|
"text": "Size"
|
|
940
940
|
},
|
|
941
|
-
"description": "
|
|
941
|
+
"description": "Controls the spacing and padding for all accordion items in the group.\nThis size is applied to all child accordions.\n- Small provides 1rem (16px) padding, large provides 1.5rem (24px) padding.",
|
|
942
942
|
"default": "'small'",
|
|
943
943
|
"attribute": "size",
|
|
944
944
|
"reflects": true
|
|
@@ -949,7 +949,7 @@
|
|
|
949
949
|
"type": {
|
|
950
950
|
"text": "Variant"
|
|
951
951
|
},
|
|
952
|
-
"description": "
|
|
952
|
+
"description": "Visual style variant applied to all accordions in the group.\n- Stacked: accordions have 1.5rem gap between them.\n- Borderless: removes all borders from accordions and group.\n- Contained: accordions have continuous borders with no gaps.",
|
|
953
953
|
"default": "'stacked'",
|
|
954
954
|
"attribute": "variant",
|
|
955
955
|
"reflects": true
|
|
@@ -961,7 +961,7 @@
|
|
|
961
961
|
"type": {
|
|
962
962
|
"text": "Size"
|
|
963
963
|
},
|
|
964
|
-
"description": "
|
|
964
|
+
"description": "Controls the spacing and padding for all accordion items in the group.\nThis size is applied to all child accordions.\n- Small provides 1rem (16px) padding, large provides 1.5rem (24px) padding.",
|
|
965
965
|
"default": "'small'",
|
|
966
966
|
"fieldName": "size"
|
|
967
967
|
},
|
|
@@ -970,7 +970,7 @@
|
|
|
970
970
|
"type": {
|
|
971
971
|
"text": "Variant"
|
|
972
972
|
},
|
|
973
|
-
"description": "
|
|
973
|
+
"description": "Visual style variant applied to all accordions in the group.\n- Stacked: accordions have 1.5rem gap between them.\n- Borderless: removes all borders from accordions and group.\n- Contained: accordions have continuous borders with no gaps.",
|
|
974
974
|
"default": "'stacked'",
|
|
975
975
|
"fieldName": "variant"
|
|
976
976
|
},
|
|
@@ -980,7 +980,7 @@
|
|
|
980
980
|
"text": "boolean"
|
|
981
981
|
},
|
|
982
982
|
"default": "false",
|
|
983
|
-
"description": "
|
|
983
|
+
"description": "Controls whether multiple accordions can be expanded simultaneously.\n- When false, expanding one accordion automatically collapses others.\n- When true, multiple accordions can remain open at the same time.",
|
|
984
984
|
"fieldName": "allowMultiple"
|
|
985
985
|
}
|
|
986
986
|
],
|
|
@@ -989,7 +989,7 @@
|
|
|
989
989
|
"module": "/src/models"
|
|
990
990
|
},
|
|
991
991
|
"tagName": "mdc-accordiongroup",
|
|
992
|
-
"jsDoc": "/**\n * An accordion group is a
|
|
992
|
+
"jsDoc": "/**\n * An accordion group is a container that manages multiple accordion or accordionbutton components as a unified set.\n * It controls the visual styling, spacing, and expansion behavior of all child accordions.\n *\n * The group applies consistent `variant` and `size` attributes to all children automatically.\n * By default, expanding one accordion collapses others (`allow-multiple` is false). Set `allow-multiple` to true to allow multiple expanded items.\n *\n * ## Accepted children\n * - Use `mdc-accordionbutton` children for simple clickable headers.\n * - Use `mdc-accordion` children when you need additional controls (chips, badges, icons) in the headers.\n * - Other elements in the slot are ignored.\n *\n * ## Accessibility\n * - Note: Screen readers may lose focus when toggling if the first accordion is expanded by default.\n *\n * @tagname mdc-accordiongroup\n *\n * @slot default - The default slot can contain the `accordion` or `accordionbutton` components.\n *\n * @cssproperty --mdc-accordiongroup-items-border-color - The border color applied to all child accordion items and their separators.\n */",
|
|
993
993
|
"customElement": true
|
|
994
994
|
}
|
|
995
995
|
],
|
|
@@ -45660,212 +45660,64 @@
|
|
|
45660
45660
|
"name": "Tab",
|
|
45661
45661
|
"cssProperties": [
|
|
45662
45662
|
{
|
|
45663
|
-
"description": "
|
|
45664
|
-
"name": "--mdc-button-height",
|
|
45665
|
-
"inheritedFrom": {
|
|
45666
|
-
"name": "Buttonsimple",
|
|
45667
|
-
"module": "src/components/buttonsimple/buttonsimple.component.ts"
|
|
45668
|
-
}
|
|
45669
|
-
},
|
|
45670
|
-
{
|
|
45671
|
-
"description": "Gap between the badge(if provided), icon and text.",
|
|
45672
|
-
"name": "--mdc-tab-content-gap"
|
|
45673
|
-
},
|
|
45674
|
-
{
|
|
45675
|
-
"description": "Height of the tab.",
|
|
45663
|
+
"description": "The height of the tab.",
|
|
45676
45664
|
"name": "--mdc-tab-height"
|
|
45677
45665
|
},
|
|
45678
45666
|
{
|
|
45679
|
-
"description": "
|
|
45680
|
-
"name": "--mdc-tab-
|
|
45681
|
-
},
|
|
45682
|
-
{
|
|
45683
|
-
"description": "Background color for active glass tab in hover state.",
|
|
45684
|
-
"name": "--mdc-tab-glass-active-background-color-hover"
|
|
45685
|
-
},
|
|
45686
|
-
{
|
|
45687
|
-
"description": "Background color for active glass tab in rest state.",
|
|
45688
|
-
"name": "--mdc-tab-glass-active-background-color-normal"
|
|
45689
|
-
},
|
|
45690
|
-
{
|
|
45691
|
-
"description": "Background color for active glass tab in pressed state.",
|
|
45692
|
-
"name": "--mdc-tab-glass-active-background-color-pressed"
|
|
45693
|
-
},
|
|
45694
|
-
{
|
|
45695
|
-
"description": "Text and icon color for active glass tab.",
|
|
45696
|
-
"name": "--mdc-tab-glass-active-color"
|
|
45697
|
-
},
|
|
45698
|
-
{
|
|
45699
|
-
"description": "Text and icon color for active glass tab in disabled state.",
|
|
45700
|
-
"name": "--mdc-tab-glass-active-color-disabled"
|
|
45701
|
-
},
|
|
45702
|
-
{
|
|
45703
|
-
"description": "Border radius for glass tab.",
|
|
45704
|
-
"name": "--mdc-tab-glass-border-radius"
|
|
45705
|
-
},
|
|
45706
|
-
{
|
|
45707
|
-
"description": "Background color for inactive glass tab in disabled state.",
|
|
45708
|
-
"name": "--mdc-tab-glass-inactive-background-color-disabled"
|
|
45709
|
-
},
|
|
45710
|
-
{
|
|
45711
|
-
"description": "Background color for inactive glass tab in hover state.",
|
|
45712
|
-
"name": "--mdc-tab-glass-inactive-background-color-hover"
|
|
45713
|
-
},
|
|
45714
|
-
{
|
|
45715
|
-
"description": "Background color for inactive glass tab in rest state.",
|
|
45716
|
-
"name": "--mdc-tab-glass-inactive-background-color-normal"
|
|
45717
|
-
},
|
|
45718
|
-
{
|
|
45719
|
-
"description": "Background color for inactive glass tab in pressed state.",
|
|
45720
|
-
"name": "--mdc-tab-glass-inactive-background-color-pressed"
|
|
45721
|
-
},
|
|
45722
|
-
{
|
|
45723
|
-
"description": "Text and icon color for inactive glass tab.",
|
|
45724
|
-
"name": "--mdc-tab-glass-inactive-color"
|
|
45725
|
-
},
|
|
45726
|
-
{
|
|
45727
|
-
"description": "Text and icon color for inactive glass tab in disabled state.",
|
|
45728
|
-
"name": "--mdc-tab-glass-inactive-color-disabled"
|
|
45729
|
-
},
|
|
45730
|
-
{
|
|
45731
|
-
"description": "Background color for active line tab in pressed state.",
|
|
45732
|
-
"name": "--mdc-tab-line-active-background-color-pressed"
|
|
45733
|
-
},
|
|
45734
|
-
{
|
|
45735
|
-
"description": "Background color for active line tab in disabled state.",
|
|
45736
|
-
"name": "--mdc-tab-line-active-background-color-disabled"
|
|
45737
|
-
},
|
|
45738
|
-
{
|
|
45739
|
-
"description": "Background color for active line tab in hover state.",
|
|
45740
|
-
"name": "--mdc-tab-line-active-background-color-hover"
|
|
45667
|
+
"description": "The left padding of the tab.",
|
|
45668
|
+
"name": "--mdc-tab-padding-left"
|
|
45741
45669
|
},
|
|
45742
45670
|
{
|
|
45743
|
-
"description": "
|
|
45744
|
-
"name": "--mdc-tab-
|
|
45671
|
+
"description": "The right padding of the tab.",
|
|
45672
|
+
"name": "--mdc-tab-padding-right"
|
|
45745
45673
|
},
|
|
45746
45674
|
{
|
|
45747
|
-
"description": "
|
|
45748
|
-
"name": "--mdc-tab-
|
|
45675
|
+
"description": "The gap between the icon and text in the tab.",
|
|
45676
|
+
"name": "--mdc-tab-content-gap"
|
|
45749
45677
|
},
|
|
45750
45678
|
{
|
|
45751
|
-
"description": "
|
|
45752
|
-
"name": "--mdc-tab-
|
|
45679
|
+
"description": "The background color of the tab.",
|
|
45680
|
+
"name": "--mdc-tab-background-color"
|
|
45753
45681
|
},
|
|
45754
45682
|
{
|
|
45755
|
-
"description": "
|
|
45756
|
-
"name": "--mdc-tab-
|
|
45683
|
+
"description": "The text color of the tab.",
|
|
45684
|
+
"name": "--mdc-tab-color"
|
|
45757
45685
|
},
|
|
45758
45686
|
{
|
|
45759
|
-
"description": "
|
|
45760
|
-
"name": "--mdc-tab-
|
|
45687
|
+
"description": "The border radius of the tab.",
|
|
45688
|
+
"name": "--mdc-tab-border-radius"
|
|
45761
45689
|
},
|
|
45762
45690
|
{
|
|
45763
|
-
"description": "
|
|
45691
|
+
"description": "The height of the active indicator line.",
|
|
45764
45692
|
"name": "--mdc-tab-line-active-indicator-height"
|
|
45765
45693
|
},
|
|
45766
45694
|
{
|
|
45767
|
-
"description": "
|
|
45695
|
+
"description": "The width of the active indicator line.",
|
|
45768
45696
|
"name": "--mdc-tab-line-active-indicator-width"
|
|
45769
45697
|
},
|
|
45770
45698
|
{
|
|
45771
|
-
"description": "
|
|
45699
|
+
"description": "The border bottom left radius of the active indicator line.",
|
|
45772
45700
|
"name": "--mdc-tab-line-border-bottom-left-radius"
|
|
45773
45701
|
},
|
|
45774
45702
|
{
|
|
45775
|
-
"description": "
|
|
45703
|
+
"description": "The border bottom right radius of the active indicator line.",
|
|
45776
45704
|
"name": "--mdc-tab-line-border-bottom-right-radius"
|
|
45777
45705
|
},
|
|
45778
45706
|
{
|
|
45779
|
-
"description": "
|
|
45707
|
+
"description": "The border top left radius of the active indicator line.",
|
|
45780
45708
|
"name": "--mdc-tab-line-border-top-left-radius"
|
|
45781
45709
|
},
|
|
45782
45710
|
{
|
|
45783
|
-
"description": "
|
|
45711
|
+
"description": "The border top right radius of the active indicator line.",
|
|
45784
45712
|
"name": "--mdc-tab-line-border-top-right-radius"
|
|
45785
45713
|
},
|
|
45786
45714
|
{
|
|
45787
|
-
"description": "
|
|
45788
|
-
"name": "--mdc-
|
|
45789
|
-
|
|
45790
|
-
|
|
45791
|
-
|
|
45792
|
-
|
|
45793
|
-
},
|
|
45794
|
-
{
|
|
45795
|
-
"description": "Background color for inactive line tab in hover state.",
|
|
45796
|
-
"name": "--mdc-tab-line-inactive-background-color-hover"
|
|
45797
|
-
},
|
|
45798
|
-
{
|
|
45799
|
-
"description": "Background color for inactive line tab in rest state.",
|
|
45800
|
-
"name": "--mdc-tab-line-inactive-background-color-normal"
|
|
45801
|
-
},
|
|
45802
|
-
{
|
|
45803
|
-
"description": "Text and icon color for inactive line tab.",
|
|
45804
|
-
"name": "--mdc-tab-line-inactive-color"
|
|
45805
|
-
},
|
|
45806
|
-
{
|
|
45807
|
-
"description": "Text and icon color for inactive line tab in disabled state.",
|
|
45808
|
-
"name": "--mdc-tab-line-inactive-color-disabled"
|
|
45809
|
-
},
|
|
45810
|
-
{
|
|
45811
|
-
"description": "Padding left for the tab.",
|
|
45812
|
-
"name": "--mdc-tab-padding-left"
|
|
45813
|
-
},
|
|
45814
|
-
{
|
|
45815
|
-
"description": "Padding right for the tab.",
|
|
45816
|
-
"name": "--mdc-tab-padding-right"
|
|
45817
|
-
},
|
|
45818
|
-
{
|
|
45819
|
-
"description": "Background color for active pill tab in pressed state.",
|
|
45820
|
-
"name": "--mdc-tab-pill-active-background-color-pressed"
|
|
45821
|
-
},
|
|
45822
|
-
{
|
|
45823
|
-
"description": "Background color for active pill tab in disabled state.",
|
|
45824
|
-
"name": "--mdc-tab-pill-active-background-color-disabled"
|
|
45825
|
-
},
|
|
45826
|
-
{
|
|
45827
|
-
"description": "Background color for active pill tab in hover state.",
|
|
45828
|
-
"name": "--mdc-tab-pill-active-background-color-hover"
|
|
45829
|
-
},
|
|
45830
|
-
{
|
|
45831
|
-
"description": "Background color for active pill tab in rest state.",
|
|
45832
|
-
"name": "--mdc-tab-pill-active-background-color-normal"
|
|
45833
|
-
},
|
|
45834
|
-
{
|
|
45835
|
-
"description": "Text and icon color for active pill tab.",
|
|
45836
|
-
"name": "--mdc-tab-pill-active-color"
|
|
45837
|
-
},
|
|
45838
|
-
{
|
|
45839
|
-
"description": "Text and icon color for active pill tab in disabled state.",
|
|
45840
|
-
"name": "--mdc-tab-pill-active-color-disabled"
|
|
45841
|
-
},
|
|
45842
|
-
{
|
|
45843
|
-
"description": "Border radius for pill tab.",
|
|
45844
|
-
"name": "--mdc-tab-pill-border-radius"
|
|
45845
|
-
},
|
|
45846
|
-
{
|
|
45847
|
-
"description": "Background color for inactive pill tab in pressed state.",
|
|
45848
|
-
"name": "--mdc-tab-pill-inactive-background-color-pressed"
|
|
45849
|
-
},
|
|
45850
|
-
{
|
|
45851
|
-
"description": "Background color for inactive pill tab in disabled state.",
|
|
45852
|
-
"name": "--mdc-tab-pill-inactive-background-color-disabled"
|
|
45853
|
-
},
|
|
45854
|
-
{
|
|
45855
|
-
"description": "Background color for inactive pill tab in hover state.",
|
|
45856
|
-
"name": "--mdc-tab-pill-inactive-background-color-hover"
|
|
45857
|
-
},
|
|
45858
|
-
{
|
|
45859
|
-
"description": "Background color for inactive pill tab in rest state.",
|
|
45860
|
-
"name": "--mdc-tab-pill-inactive-background-color-normal"
|
|
45861
|
-
},
|
|
45862
|
-
{
|
|
45863
|
-
"description": "Text and icon color for inactive pill tab.",
|
|
45864
|
-
"name": "--mdc-tab-pill-inactive-color"
|
|
45865
|
-
},
|
|
45866
|
-
{
|
|
45867
|
-
"description": "Text and icon color for inactive pill tab in disabled state.",
|
|
45868
|
-
"name": "--mdc-tab-pill-inactive-color-disabled"
|
|
45715
|
+
"description": "Height for button size",
|
|
45716
|
+
"name": "--mdc-button-height",
|
|
45717
|
+
"inheritedFrom": {
|
|
45718
|
+
"name": "Buttonsimple",
|
|
45719
|
+
"module": "src/components/buttonsimple/buttonsimple.component.ts"
|
|
45720
|
+
}
|
|
45869
45721
|
},
|
|
45870
45722
|
{
|
|
45871
45723
|
"description": "Background color of the button",
|
|
@@ -46552,7 +46404,7 @@
|
|
|
46552
46404
|
"module": "/src/components/buttonsimple/buttonsimple.component"
|
|
46553
46405
|
},
|
|
46554
46406
|
"tagName": "mdc-tab",
|
|
46555
|
-
"jsDoc": "/**\n * `mdc-tab` is Tab component to be used within the Tabgroup.\n *\n * Passing in the attribute `text` to the tab component is changing the text displayed in the tab.\n *\n * Pass attribute `tabid` when using inside of `tablist` component.\n *\n * The `slot=\"badge\"` can be used to add a badge to the tab.\n *\n * The `slot=\"chip\"` can be used to add a chip to the tab.\n *\n * For `icon`, the `mdc-icon` component is used to render the icon.\n *\n * Note: Icons can be used in conjunction with badges or chips.\n * Badges and chips should not be used at the same time.\n *\n * @dependency mdc-icon\n * @dependency mdc-text\n *\n * @event click - (React: onClick) This event is dispatched when the tab is clicked.\n * @event keydown - (React: onKeyDown) This event is dispatched when a key is pressed down on the tab.\n * @event keyup - (React: onKeyUp) This event is dispatched when a key is released on the tab.\n * @event focus - (React: onFocus) This event is dispatched when the tab receives focus.\n * @event activechange - (React: onActiveChange) This event is dispatched when the active state of the tab changes\n * <br />\n * Event Data: `detail: { tabId: this.tabId, active }`\n * <br />\n * Note: the activechange event is used by the tab list component to react to the change in state of the tab,\n * so this event won't be needed if the tab list is used.\n *\n * @tagname mdc-tab\n *\n * @cssproperty --mdc-
|
|
46407
|
+
"jsDoc": "/**\n * `mdc-tab` is Tab component to be used within the Tabgroup.\n *\n * Passing in the attribute `text` to the tab component is changing the text displayed in the tab.\n *\n * Pass attribute `tabid` when using inside of `tablist` component.\n *\n * The `slot=\"badge\"` can be used to add a badge to the tab.\n *\n * The `slot=\"chip\"` can be used to add a chip to the tab.\n *\n * For `icon`, the `mdc-icon` component is used to render the icon.\n *\n * Note: Icons can be used in conjunction with badges or chips.\n * Badges and chips should not be used at the same time.\n *\n * @dependency mdc-icon\n * @dependency mdc-text\n *\n * @event click - (React: onClick) This event is dispatched when the tab is clicked.\n * @event keydown - (React: onKeyDown) This event is dispatched when a key is pressed down on the tab.\n * @event keyup - (React: onKeyUp) This event is dispatched when a key is released on the tab.\n * @event focus - (React: onFocus) This event is dispatched when the tab receives focus.\n * @event activechange - (React: onActiveChange) This event is dispatched when the active state of the tab changes\n * <br />\n * Event Data: `detail: { tabId: this.tabId, active }`\n * <br />\n * Note: the activechange event is used by the tab list component to react to the change in state of the tab,\n * so this event won't be needed if the tab list is used.\n *\n * @tagname mdc-tab\n *\n * @cssproperty --mdc-tab-height - The height of the tab.\n * @cssproperty --mdc-tab-padding-left - The left padding of the tab.\n * @cssproperty --mdc-tab-padding-right - The right padding of the tab.\n * @cssproperty --mdc-tab-content-gap - The gap between the icon and text in the tab.\n * @cssproperty --mdc-tab-background-color - The background color of the tab.\n * @cssproperty --mdc-tab-color - The text color of the tab.\n * @cssproperty --mdc-tab-border-radius - The border radius of the tab.\n *\n * @cssproperty --mdc-tab-line-active-indicator-height - The height of the active indicator line.\n * @cssproperty --mdc-tab-line-active-indicator-width - The width of the active indicator line.\n *\n * @cssproperty --mdc-tab-line-border-bottom-left-radius - The border bottom left radius of the active indicator line.\n * @cssproperty --mdc-tab-line-border-bottom-right-radius - The border bottom right radius of the active indicator line.\n * @cssproperty --mdc-tab-line-border-top-left-radius - The border top left radius of the active indicator line.\n * @cssproperty --mdc-tab-line-border-top-right-radius - The border top right radius of the active indicator line.\n *\n *\n *\n * @csspart container - The container of the tab.\n * @csspart icon - The icon of the tab.\n * @csspart indicator - The indicator of the tab.\n * @csspart text - The text of the tab.\n */",
|
|
46556
46408
|
"customElement": true
|
|
46557
46409
|
}
|
|
46558
46410
|
],
|