@momentum-design/components 0.129.36 → 0.129.38
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 +263 -264
- package/dist/browser/index.js.map +4 -4
- package/dist/components/bullet/bullet.component.d.ts +16 -6
- package/dist/components/bullet/bullet.component.js +16 -6
- package/dist/components/bullet/bullet.styles.js +5 -6
- package/dist/components/divider/divider.component.d.ts +50 -55
- package/dist/components/divider/divider.component.js +50 -55
- package/dist/components/marker/marker.component.d.ts +20 -15
- package/dist/components/marker/marker.component.js +20 -15
- package/dist/components/popover/popover.component.d.ts +5 -2
- package/dist/components/popover/popover.component.js +39 -21
- package/dist/components/popover/popover.constants.d.ts +6 -1
- package/dist/components/popover/popover.constants.js +6 -1
- package/dist/components/staticcheckbox/staticcheckbox.component.d.ts +22 -11
- package/dist/components/staticcheckbox/staticcheckbox.component.js +22 -11
- package/dist/components/staticradio/staticradio.component.d.ts +21 -11
- package/dist/components/staticradio/staticradio.component.js +21 -11
- package/dist/components/statictoggle/statictoggle.component.d.ts +25 -12
- package/dist/components/statictoggle/statictoggle.component.js +25 -12
- package/dist/custom-elements.json +169 -79
- package/dist/react/bullet/index.d.ts +16 -6
- package/dist/react/bullet/index.js +16 -6
- package/dist/react/divider/index.d.ts +33 -38
- package/dist/react/divider/index.js +33 -38
- package/dist/react/marker/index.d.ts +17 -12
- package/dist/react/marker/index.js +17 -12
- package/dist/react/staticcheckbox/index.d.ts +22 -11
- package/dist/react/staticcheckbox/index.js +22 -11
- package/dist/react/staticradio/index.d.ts +21 -11
- package/dist/react/staticradio/index.js +21 -11
- package/dist/react/statictoggle/index.d.ts +25 -12
- package/dist/react/statictoggle/index.js +25 -12
- package/dist/utils/controllers/Timers.d.ts +49 -0
- package/dist/utils/controllers/Timers.js +96 -0
- package/package.json +1 -1
|
@@ -161,8 +161,8 @@
|
|
|
161
161
|
"attribute": "disabled",
|
|
162
162
|
"reflects": true,
|
|
163
163
|
"inheritedFrom": {
|
|
164
|
-
"name": "
|
|
165
|
-
"module": "
|
|
164
|
+
"name": "DisabledMixin",
|
|
165
|
+
"module": "utils/mixins/DisabledMixin.js"
|
|
166
166
|
}
|
|
167
167
|
},
|
|
168
168
|
{
|
|
@@ -420,8 +420,8 @@
|
|
|
420
420
|
"default": "undefined",
|
|
421
421
|
"fieldName": "disabled",
|
|
422
422
|
"inheritedFrom": {
|
|
423
|
-
"name": "
|
|
424
|
-
"module": "src/
|
|
423
|
+
"name": "DisabledMixin",
|
|
424
|
+
"module": "src/utils/mixins/DisabledMixin.ts"
|
|
425
425
|
}
|
|
426
426
|
},
|
|
427
427
|
{
|
|
@@ -5094,24 +5094,16 @@
|
|
|
5094
5094
|
"declarations": [
|
|
5095
5095
|
{
|
|
5096
5096
|
"kind": "class",
|
|
5097
|
-
"description": "Bullet component
|
|
5097
|
+
"description": "The Bullet component displays a small circular visual indicator used to organize and present\nitems in a list format. It provides a simple, consistent way to mark list items or emphasize\ncontent points.\n\nBullets are available in three sizes (small, medium, large) to accommodate different layout\ndensities and visual hierarchies.\n\n## When to use\nUse bullets to create unordered lists, mark navigation items, or provide visual indicators\nfor list content. Choose bullet size based on content importance and layout density.\n\n## Accessibility\n- Bullets are purely decorative and should be used alongside meaningful text content\n- Do not rely solely on bullet size or color to convey information",
|
|
5098
5098
|
"name": "Bullet",
|
|
5099
5099
|
"cssProperties": [
|
|
5100
5100
|
{
|
|
5101
|
-
"description": "
|
|
5101
|
+
"description": "Background color of the bullet.",
|
|
5102
5102
|
"name": "--mdc-bullet-background-color"
|
|
5103
5103
|
},
|
|
5104
5104
|
{
|
|
5105
|
-
"description": "
|
|
5106
|
-
"name": "--mdc-bullet-size
|
|
5107
|
-
},
|
|
5108
|
-
{
|
|
5109
|
-
"description": "medium size value of the bullet",
|
|
5110
|
-
"name": "--mdc-bullet-size-medium"
|
|
5111
|
-
},
|
|
5112
|
-
{
|
|
5113
|
-
"description": "large size value of the bullet",
|
|
5114
|
-
"name": "--mdc-bullet-size-large"
|
|
5105
|
+
"description": "Height of the bullet.",
|
|
5106
|
+
"name": "--mdc-bullet-size"
|
|
5115
5107
|
}
|
|
5116
5108
|
],
|
|
5117
5109
|
"members": [
|
|
@@ -5144,7 +5136,7 @@
|
|
|
5144
5136
|
"module": "/src/models"
|
|
5145
5137
|
},
|
|
5146
5138
|
"tagName": "mdc-bullet",
|
|
5147
|
-
"jsDoc": "/**\n * Bullet component
|
|
5139
|
+
"jsDoc": "/**\n * The Bullet component displays a small circular visual indicator used to organize and present\n * items in a list format. It provides a simple, consistent way to mark list items or emphasize\n * content points.\n *\n * Bullets are available in three sizes (small, medium, large) to accommodate different layout\n * densities and visual hierarchies.\n *\n * ## When to use\n * Use bullets to create unordered lists, mark navigation items, or provide visual indicators\n * for list content. Choose bullet size based on content importance and layout density.\n *\n * ## Accessibility\n * - Bullets are purely decorative and should be used alongside meaningful text content\n * - Do not rely solely on bullet size or color to convey information\n *\n * @tagname mdc-bullet\n *\n * @cssproperty --mdc-bullet-background-color - Background color of the bullet.\n * @cssproperty --mdc-bullet-size - Height of the bullet.\n */",
|
|
5148
5140
|
"customElement": true
|
|
5149
5141
|
}
|
|
5150
5142
|
],
|
|
@@ -12161,6 +12153,16 @@
|
|
|
12161
12153
|
"module": "components/popover/popover.component.js"
|
|
12162
12154
|
}
|
|
12163
12155
|
},
|
|
12156
|
+
{
|
|
12157
|
+
"kind": "field",
|
|
12158
|
+
"name": "cancelOpenDelay",
|
|
12159
|
+
"privacy": "private",
|
|
12160
|
+
"description": "Cancels the open delay timer.",
|
|
12161
|
+
"inheritedFrom": {
|
|
12162
|
+
"name": "Popover",
|
|
12163
|
+
"module": "components/popover/popover.component.js"
|
|
12164
|
+
}
|
|
12165
|
+
},
|
|
12164
12166
|
{
|
|
12165
12167
|
"kind": "field",
|
|
12166
12168
|
"name": "closeButton",
|
|
@@ -13163,6 +13165,16 @@
|
|
|
13163
13165
|
"module": "components/popover/popover.component.js"
|
|
13164
13166
|
}
|
|
13165
13167
|
},
|
|
13168
|
+
{
|
|
13169
|
+
"kind": "field",
|
|
13170
|
+
"name": "timers",
|
|
13171
|
+
"privacy": "private",
|
|
13172
|
+
"default": "new Timers(this)",
|
|
13173
|
+
"inheritedFrom": {
|
|
13174
|
+
"name": "Popover",
|
|
13175
|
+
"module": "components/popover/popover.component.js"
|
|
13176
|
+
}
|
|
13177
|
+
},
|
|
13166
13178
|
{
|
|
13167
13179
|
"kind": "field",
|
|
13168
13180
|
"name": "togglePopoverVisible",
|
|
@@ -16416,62 +16428,68 @@
|
|
|
16416
16428
|
"declarations": [
|
|
16417
16429
|
{
|
|
16418
16430
|
"kind": "class",
|
|
16419
|
-
"description": "
|
|
16431
|
+
"description": "The Divider component provides a visual line to separate and organize content within layouts.\nIt supports both horizontal and vertical orientations with solid or gradient styles, and can\noptionally include centered text labels or interactive grabber buttons.\n\nThe divider automatically infers its type based on the content in its slot:\n- **Primary**: Simple line with no content\n- **Text**: Horizontal line with centered text label\n- **Grabber Button**: Line with centered interactive button\n\n**Note:**\n- Vertical text dividers are not currently supported.\n- If the slot contains invalid tag names or multiple elements, the divider defaults to the Primary type\n- Use the provided CSS custom properties to customize divider styles\n\n## When to use\nUse dividers to create visual separation between content sections, list items, or layout regions.\nAdd text labels to provide context, or grabber buttons to create resizable panes.\n\n## Accessibility\n- When using a grabber button, provide `aria-label` to describe its purpose\n- Set `aria-expanded` on the button to indicate the current state of resizable sections\n- Ensure sufficient color contrast for the divider line",
|
|
16420
16432
|
"name": "Divider",
|
|
16421
16433
|
"cssProperties": [
|
|
16422
16434
|
{
|
|
16423
|
-
"description": "
|
|
16435
|
+
"description": "Background color of the divider line.",
|
|
16424
16436
|
"name": "--mdc-divider-background-color"
|
|
16425
16437
|
},
|
|
16426
16438
|
{
|
|
16427
|
-
"description": "
|
|
16439
|
+
"description": "Width (thickness) of the divider line.",
|
|
16428
16440
|
"name": "--mdc-divider-width"
|
|
16429
16441
|
},
|
|
16430
16442
|
{
|
|
16431
|
-
"description": "
|
|
16443
|
+
"description": "Gradient for horizontal dividers.",
|
|
16432
16444
|
"name": "--mdc-divider-horizontal-gradient"
|
|
16433
16445
|
},
|
|
16434
16446
|
{
|
|
16435
|
-
"description": "
|
|
16447
|
+
"description": "Gradient for vertical dividers.",
|
|
16436
16448
|
"name": "--mdc-divider-vertical-gradient"
|
|
16437
16449
|
},
|
|
16438
16450
|
{
|
|
16439
|
-
"description": "
|
|
16451
|
+
"description": "Font size of the text label in text dividers.",
|
|
16440
16452
|
"name": "--mdc-divider-text-size"
|
|
16441
16453
|
},
|
|
16442
16454
|
{
|
|
16443
|
-
"description": "
|
|
16455
|
+
"description": "Font color of the text label in text dividers.",
|
|
16444
16456
|
"name": "--mdc-divider-text-color"
|
|
16445
16457
|
},
|
|
16446
16458
|
{
|
|
16447
|
-
"description": "
|
|
16459
|
+
"description": "Left and right margin of the text label.",
|
|
16448
16460
|
"name": "--mdc-divider-text-margin"
|
|
16449
16461
|
},
|
|
16450
16462
|
{
|
|
16451
|
-
"description": "
|
|
16463
|
+
"description": "Line height of the text label.",
|
|
16452
16464
|
"name": "--mdc-divider-text-line-height"
|
|
16453
16465
|
},
|
|
16454
16466
|
{
|
|
16455
|
-
"description": "
|
|
16467
|
+
"description": "Background color of the grabber button in rest state.",
|
|
16456
16468
|
"name": "--mdc-divider-grabber-button-background-color-normal"
|
|
16457
16469
|
},
|
|
16458
16470
|
{
|
|
16459
|
-
"description": "
|
|
16471
|
+
"description": "Background color of the grabber button in hover state.",
|
|
16460
16472
|
"name": "--mdc-divider-grabber-button-background-color-hover"
|
|
16461
16473
|
},
|
|
16462
16474
|
{
|
|
16463
|
-
"description": "
|
|
16475
|
+
"description": "Background color of the grabber button in pressed state.",
|
|
16464
16476
|
"name": "--mdc-divider-grabber-button-background-color-pressed"
|
|
16465
16477
|
},
|
|
16466
16478
|
{
|
|
16467
|
-
"description": "
|
|
16479
|
+
"description": "Border color of the grabber button.",
|
|
16468
16480
|
"name": "--mdc-divider-grabber-button-border-color"
|
|
16469
16481
|
},
|
|
16470
16482
|
{
|
|
16471
|
-
"description": "
|
|
16483
|
+
"description": "Border radius of the grabber button.",
|
|
16472
16484
|
"name": "--mdc-divider-grabber-button-border-radius"
|
|
16473
16485
|
}
|
|
16474
16486
|
],
|
|
16487
|
+
"slots": [
|
|
16488
|
+
{
|
|
16489
|
+
"description": "Content for the divider. Use `mdc-text` for text labels or `mdc-button` for grabber buttons.",
|
|
16490
|
+
"name": ""
|
|
16491
|
+
}
|
|
16492
|
+
],
|
|
16475
16493
|
"members": [
|
|
16476
16494
|
{
|
|
16477
16495
|
"kind": "field",
|
|
@@ -16479,8 +16497,8 @@
|
|
|
16479
16497
|
"type": {
|
|
16480
16498
|
"text": "Directions"
|
|
16481
16499
|
},
|
|
16482
|
-
"description": "Direction of the arrow icon
|
|
16483
|
-
"default": "
|
|
16500
|
+
"description": "Direction of the arrow icon displayed on the grabber button.\n- **positive**: Up arrow (horizontal) or right arrow (vertical)\n- **negative**: Down arrow (horizontal) or left arrow (vertical)\n\nOnly applies when using a grabber button. Directions follow the Cartesian coordinate system.",
|
|
16501
|
+
"default": "negative",
|
|
16484
16502
|
"attribute": "arrow-direction",
|
|
16485
16503
|
"reflects": true
|
|
16486
16504
|
},
|
|
@@ -16490,8 +16508,8 @@
|
|
|
16490
16508
|
"type": {
|
|
16491
16509
|
"text": "Directions"
|
|
16492
16510
|
},
|
|
16493
|
-
"description": "Position of the button
|
|
16494
|
-
"default": "
|
|
16511
|
+
"description": "Position of the grabber button along the divider line.\n- **positive**: Right side (horizontal) or top side (vertical)\n- **negative**: Left side (horizontal) or bottom side (vertical)\n\nOnly applies when using a grabber button. Directions follow the Cartesian coordinate system.",
|
|
16512
|
+
"default": "negative",
|
|
16495
16513
|
"attribute": "button-position",
|
|
16496
16514
|
"reflects": true
|
|
16497
16515
|
},
|
|
@@ -16540,7 +16558,7 @@
|
|
|
16540
16558
|
"type": {
|
|
16541
16559
|
"text": "DividerOrientation"
|
|
16542
16560
|
},
|
|
16543
|
-
"description": "
|
|
16561
|
+
"description": "Determines the orientation of the divider line.\n- **horizontal**: A thin horizontal line\n- **vertical**: A thin vertical line\n\nNote: Vertical text dividers are not currently supported.",
|
|
16544
16562
|
"default": "horizontal",
|
|
16545
16563
|
"attribute": "orientation",
|
|
16546
16564
|
"reflects": true
|
|
@@ -16592,7 +16610,7 @@
|
|
|
16592
16610
|
"type": {
|
|
16593
16611
|
"text": "DividerVariant"
|
|
16594
16612
|
},
|
|
16595
|
-
"description": "
|
|
16613
|
+
"description": "Visual style of the divider line.\n- **solid**: Solid line with uniform color\n- **gradient**: Gradient line that fades on both ends",
|
|
16596
16614
|
"default": "solid",
|
|
16597
16615
|
"attribute": "variant",
|
|
16598
16616
|
"reflects": true
|
|
@@ -16604,7 +16622,7 @@
|
|
|
16604
16622
|
"type": {
|
|
16605
16623
|
"text": "DividerOrientation"
|
|
16606
16624
|
},
|
|
16607
|
-
"description": "
|
|
16625
|
+
"description": "Determines the orientation of the divider line.\n- **horizontal**: A thin horizontal line\n- **vertical**: A thin vertical line\n\nNote: Vertical text dividers are not currently supported.",
|
|
16608
16626
|
"default": "horizontal",
|
|
16609
16627
|
"fieldName": "orientation"
|
|
16610
16628
|
},
|
|
@@ -16613,7 +16631,7 @@
|
|
|
16613
16631
|
"type": {
|
|
16614
16632
|
"text": "DividerVariant"
|
|
16615
16633
|
},
|
|
16616
|
-
"description": "
|
|
16634
|
+
"description": "Visual style of the divider line.\n- **solid**: Solid line with uniform color\n- **gradient**: Gradient line that fades on both ends",
|
|
16617
16635
|
"default": "solid",
|
|
16618
16636
|
"fieldName": "variant"
|
|
16619
16637
|
},
|
|
@@ -16622,8 +16640,8 @@
|
|
|
16622
16640
|
"type": {
|
|
16623
16641
|
"text": "Directions"
|
|
16624
16642
|
},
|
|
16625
|
-
"description": "Direction of the arrow icon
|
|
16626
|
-
"default": "
|
|
16643
|
+
"description": "Direction of the arrow icon displayed on the grabber button.\n- **positive**: Up arrow (horizontal) or right arrow (vertical)\n- **negative**: Down arrow (horizontal) or left arrow (vertical)\n\nOnly applies when using a grabber button. Directions follow the Cartesian coordinate system.",
|
|
16644
|
+
"default": "negative",
|
|
16627
16645
|
"fieldName": "arrowDirection"
|
|
16628
16646
|
},
|
|
16629
16647
|
{
|
|
@@ -16631,8 +16649,8 @@
|
|
|
16631
16649
|
"type": {
|
|
16632
16650
|
"text": "Directions"
|
|
16633
16651
|
},
|
|
16634
|
-
"description": "Position of the button
|
|
16635
|
-
"default": "
|
|
16652
|
+
"description": "Position of the grabber button along the divider line.\n- **positive**: Right side (horizontal) or top side (vertical)\n- **negative**: Left side (horizontal) or bottom side (vertical)\n\nOnly applies when using a grabber button. Directions follow the Cartesian coordinate system.",
|
|
16653
|
+
"default": "negative",
|
|
16636
16654
|
"fieldName": "buttonPosition"
|
|
16637
16655
|
}
|
|
16638
16656
|
],
|
|
@@ -16641,7 +16659,7 @@
|
|
|
16641
16659
|
"module": "/src/models"
|
|
16642
16660
|
},
|
|
16643
16661
|
"tagName": "mdc-divider",
|
|
16644
|
-
"jsDoc": "/**\n *
|
|
16662
|
+
"jsDoc": "/**\n * The Divider component provides a visual line to separate and organize content within layouts.\n * It supports both horizontal and vertical orientations with solid or gradient styles, and can\n * optionally include centered text labels or interactive grabber buttons.\n *\n * The divider automatically infers its type based on the content in its slot:\n * - **Primary**: Simple line with no content\n * - **Text**: Horizontal line with centered text label\n * - **Grabber Button**: Line with centered interactive button\n * \n * **Note:**\n * - Vertical text dividers are not currently supported.\n * - If the slot contains invalid tag names or multiple elements, the divider defaults to the Primary type\n * - Use the provided CSS custom properties to customize divider styles\n *\n * ## When to use\n * Use dividers to create visual separation between content sections, list items, or layout regions.\n * Add text labels to provide context, or grabber buttons to create resizable panes.\n *\n * ## Accessibility\n * - When using a grabber button, provide `aria-label` to describe its purpose\n * - Set `aria-expanded` on the button to indicate the current state of resizable sections\n * - Ensure sufficient color contrast for the divider line\n *\n * @tagname mdc-divider\n *\n * @cssproperty --mdc-divider-background-color - Background color of the divider line.\n * @cssproperty --mdc-divider-width - Width (thickness) of the divider line.\n * @cssproperty --mdc-divider-horizontal-gradient - Gradient for horizontal dividers.\n * @cssproperty --mdc-divider-vertical-gradient - Gradient for vertical dividers.\n * @cssproperty --mdc-divider-text-size - Font size of the text label in text dividers.\n * @cssproperty --mdc-divider-text-color - Font color of the text label in text dividers.\n * @cssproperty --mdc-divider-text-margin - Left and right margin of the text label.\n * @cssproperty --mdc-divider-text-line-height - Line height of the text label.\n * @cssproperty --mdc-divider-grabber-button-background-color-normal - Background color of the grabber button in rest state.\n * @cssproperty --mdc-divider-grabber-button-background-color-hover - Background color of the grabber button in hover state.\n * @cssproperty --mdc-divider-grabber-button-background-color-pressed - Background color of the grabber button in pressed state.\n * @cssproperty --mdc-divider-grabber-button-border-color - Border color of the grabber button.\n * @cssproperty --mdc-divider-grabber-button-border-radius - Border radius of the grabber button.\n *\n * @slot - Content for the divider. Use `mdc-text` for text labels or `mdc-button` for grabber buttons.\n */",
|
|
16645
16663
|
"customElement": true
|
|
16646
16664
|
}
|
|
16647
16665
|
],
|
|
@@ -23631,23 +23649,23 @@
|
|
|
23631
23649
|
"declarations": [
|
|
23632
23650
|
{
|
|
23633
23651
|
"kind": "class",
|
|
23634
|
-
"description": "
|
|
23652
|
+
"description": "The Marker component displays a vertical line (0.25rem wide) used to draw attention to specific content\nor signify important information. It provides visual emphasis through color and pattern variations.\n\nMarkers are commonly used alongside list items, cards, or content blocks to indicate status,\npriority, or categorization.\n\n## When to use\nUse markers to highlight important content, indicate status or priority levels, or provide\nvisual categorization in lists and layouts.\n\n## Accessibility\n- Markers are purely decorative and should not convey information solely through color\n- Always pair markers with text labels or other indicators to convey meaning\n- Ensure sufficient color contrast for visibility",
|
|
23635
23653
|
"name": "Marker",
|
|
23636
23654
|
"cssProperties": [
|
|
23637
23655
|
{
|
|
23638
|
-
"description": "
|
|
23656
|
+
"description": "Background color for solid variant markers.",
|
|
23639
23657
|
"name": "--mdc-marker-solid-background-color"
|
|
23640
23658
|
},
|
|
23641
23659
|
{
|
|
23642
|
-
"description": "
|
|
23660
|
+
"description": "Stripe color for striped variant markers.",
|
|
23643
23661
|
"name": "--mdc-marker-striped-color"
|
|
23644
23662
|
},
|
|
23645
23663
|
{
|
|
23646
|
-
"description": "
|
|
23664
|
+
"description": "Background color for striped variant markers.",
|
|
23647
23665
|
"name": "--mdc-marker-striped-background-color"
|
|
23648
23666
|
},
|
|
23649
23667
|
{
|
|
23650
|
-
"description": "
|
|
23668
|
+
"description": "Width (thickness) of the marker line.",
|
|
23651
23669
|
"name": "--mdc-marker-width"
|
|
23652
23670
|
}
|
|
23653
23671
|
],
|
|
@@ -23659,7 +23677,7 @@
|
|
|
23659
23677
|
"text": "MarkerVariants"
|
|
23660
23678
|
},
|
|
23661
23679
|
"privacy": "public",
|
|
23662
|
-
"description": "
|
|
23680
|
+
"description": "Visual style of the marker.\n- **solid**: Solid colored vertical line\n- **striped**: Vertical line with diagonal stripes pattern",
|
|
23663
23681
|
"default": "solid",
|
|
23664
23682
|
"attribute": "variant",
|
|
23665
23683
|
"reflects": true
|
|
@@ -23671,7 +23689,7 @@
|
|
|
23671
23689
|
"type": {
|
|
23672
23690
|
"text": "MarkerVariants"
|
|
23673
23691
|
},
|
|
23674
|
-
"description": "
|
|
23692
|
+
"description": "Visual style of the marker.\n- **solid**: Solid colored vertical line\n- **striped**: Vertical line with diagonal stripes pattern",
|
|
23675
23693
|
"default": "solid",
|
|
23676
23694
|
"fieldName": "variant"
|
|
23677
23695
|
}
|
|
@@ -23681,7 +23699,7 @@
|
|
|
23681
23699
|
"module": "/src/models"
|
|
23682
23700
|
},
|
|
23683
23701
|
"tagName": "mdc-marker",
|
|
23684
|
-
"jsDoc": "/**\n *
|
|
23702
|
+
"jsDoc": "/**\n * The Marker component displays a vertical line (0.25rem wide) used to draw attention to specific content\n * or signify important information. It provides visual emphasis through color and pattern variations.\n *\n * Markers are commonly used alongside list items, cards, or content blocks to indicate status,\n * priority, or categorization.\n *\n * ## When to use\n * Use markers to highlight important content, indicate status or priority levels, or provide\n * visual categorization in lists and layouts.\n *\n * ## Accessibility\n * - Markers are purely decorative and should not convey information solely through color\n * - Always pair markers with text labels or other indicators to convey meaning\n * - Ensure sufficient color contrast for visibility\n *\n * @tagname mdc-marker\n *\n * @cssproperty --mdc-marker-solid-background-color - Background color for solid variant markers.\n * @cssproperty --mdc-marker-striped-color - Stripe color for striped variant markers.\n * @cssproperty --mdc-marker-striped-background-color - Background color for striped variant markers.\n * @cssproperty --mdc-marker-width - Width (thickness) of the marker line.\n */",
|
|
23685
23703
|
"customElement": true
|
|
23686
23704
|
}
|
|
23687
23705
|
],
|
|
@@ -27373,6 +27391,16 @@
|
|
|
27373
27391
|
"module": "components/popover/popover.component.js"
|
|
27374
27392
|
}
|
|
27375
27393
|
},
|
|
27394
|
+
{
|
|
27395
|
+
"kind": "field",
|
|
27396
|
+
"name": "cancelOpenDelay",
|
|
27397
|
+
"privacy": "private",
|
|
27398
|
+
"description": "Cancels the open delay timer.",
|
|
27399
|
+
"inheritedFrom": {
|
|
27400
|
+
"name": "Popover",
|
|
27401
|
+
"module": "components/popover/popover.component.js"
|
|
27402
|
+
}
|
|
27403
|
+
},
|
|
27376
27404
|
{
|
|
27377
27405
|
"kind": "method",
|
|
27378
27406
|
"name": "closeAllMenuPopovers",
|
|
@@ -28615,6 +28643,16 @@
|
|
|
28615
28643
|
"module": "components/popover/popover.component.js"
|
|
28616
28644
|
}
|
|
28617
28645
|
},
|
|
28646
|
+
{
|
|
28647
|
+
"kind": "field",
|
|
28648
|
+
"name": "timers",
|
|
28649
|
+
"privacy": "private",
|
|
28650
|
+
"default": "new Timers(this)",
|
|
28651
|
+
"inheritedFrom": {
|
|
28652
|
+
"name": "Popover",
|
|
28653
|
+
"module": "components/popover/popover.component.js"
|
|
28654
|
+
}
|
|
28655
|
+
},
|
|
28618
28656
|
{
|
|
28619
28657
|
"kind": "field",
|
|
28620
28658
|
"name": "togglePopoverVisible",
|
|
@@ -33841,6 +33879,12 @@
|
|
|
33841
33879
|
"privacy": "private",
|
|
33842
33880
|
"description": "Cancels the close delay timer."
|
|
33843
33881
|
},
|
|
33882
|
+
{
|
|
33883
|
+
"kind": "field",
|
|
33884
|
+
"name": "cancelOpenDelay",
|
|
33885
|
+
"privacy": "private",
|
|
33886
|
+
"description": "Cancels the open delay timer."
|
|
33887
|
+
},
|
|
33844
33888
|
{
|
|
33845
33889
|
"kind": "field",
|
|
33846
33890
|
"name": "closeButton",
|
|
@@ -34687,6 +34731,12 @@
|
|
|
34687
34731
|
"attribute": "strategy",
|
|
34688
34732
|
"reflects": true
|
|
34689
34733
|
},
|
|
34734
|
+
{
|
|
34735
|
+
"kind": "field",
|
|
34736
|
+
"name": "timers",
|
|
34737
|
+
"privacy": "private",
|
|
34738
|
+
"default": "new Timers(this)"
|
|
34739
|
+
},
|
|
34690
34740
|
{
|
|
34691
34741
|
"kind": "field",
|
|
34692
34742
|
"name": "togglePopoverVisible",
|
|
@@ -44547,39 +44597,39 @@
|
|
|
44547
44597
|
"declarations": [
|
|
44548
44598
|
{
|
|
44549
44599
|
"kind": "class",
|
|
44550
|
-
"description": "StaticCheckbox is a decorative
|
|
44600
|
+
"description": "The StaticCheckbox component is a decorative, non-interactive checkbox used for visual\npresentation in read-only scenarios. Unlike the interactive `mdc-checkbox`, it does not\nhandle user interactions or form submissions.\n\nThis component supports multiple visual states: checked, indeterminate, disabled, readonly,\nand soft-disabled.\n\n## When to use\nUse StaticCheckbox to display checkbox states in read-only contexts such as summary views,\nconfirmation screens, or when showing historical form data. For interactive checkboxes, use\n`mdc-checkbox` instead.\n\n## Accessibility\n- StaticCheckbox is decorative and non-interactive by design\n- Always pair with descriptive text labels in the default slot\n- Do not use this as a replacement for interactive checkboxes in forms",
|
|
44551
44601
|
"name": "StaticCheckbox",
|
|
44552
44602
|
"cssProperties": [
|
|
44553
44603
|
{
|
|
44554
|
-
"description": "
|
|
44604
|
+
"description": "Border color of the checkbox.",
|
|
44555
44605
|
"name": "--mdc-staticcheckbox-border-color"
|
|
44556
44606
|
},
|
|
44557
44607
|
{
|
|
44558
|
-
"description": "
|
|
44608
|
+
"description": "Background color of the checkbox.",
|
|
44559
44609
|
"name": "--mdc-staticcheckbox-background-color"
|
|
44560
44610
|
},
|
|
44561
44611
|
{
|
|
44562
|
-
"description": "
|
|
44612
|
+
"description": "Icon color of the checkbox.",
|
|
44563
44613
|
"name": "--mdc-staticcheckbox-icon-color"
|
|
44564
44614
|
},
|
|
44565
44615
|
{
|
|
44566
|
-
"description": "
|
|
44616
|
+
"description": "Size of the checkbox.",
|
|
44567
44617
|
"name": "--mdc-staticcheckbox-size"
|
|
44568
44618
|
}
|
|
44569
44619
|
],
|
|
44570
44620
|
"cssParts": [
|
|
44571
44621
|
{
|
|
44572
|
-
"description": "The container for the checkbox icon",
|
|
44622
|
+
"description": "The container for the checkbox icon.",
|
|
44573
44623
|
"name": "icon-container"
|
|
44574
44624
|
},
|
|
44575
44625
|
{
|
|
44576
|
-
"description": "The checkbox icon element",
|
|
44626
|
+
"description": "The checkbox icon element.",
|
|
44577
44627
|
"name": "checkbox-icon"
|
|
44578
44628
|
}
|
|
44579
44629
|
],
|
|
44580
44630
|
"slots": [
|
|
44581
44631
|
{
|
|
44582
|
-
"description": "Default slot for
|
|
44632
|
+
"description": "Default slot for label text.",
|
|
44583
44633
|
"name": ""
|
|
44584
44634
|
}
|
|
44585
44635
|
],
|
|
@@ -44706,7 +44756,7 @@
|
|
|
44706
44756
|
"module": "/src/models"
|
|
44707
44757
|
},
|
|
44708
44758
|
"tagName": "mdc-staticcheckbox",
|
|
44709
|
-
"jsDoc": "/**\n * StaticCheckbox is a decorative
|
|
44759
|
+
"jsDoc": "/**\n * The StaticCheckbox component is a decorative, non-interactive checkbox used for visual\n * presentation in read-only scenarios. Unlike the interactive `mdc-checkbox`, it does not\n * handle user interactions or form submissions.\n *\n * This component supports multiple visual states: checked, indeterminate, disabled, readonly,\n * and soft-disabled.\n *\n * ## When to use\n * Use StaticCheckbox to display checkbox states in read-only contexts such as summary views,\n * confirmation screens, or when showing historical form data. For interactive checkboxes, use\n * `mdc-checkbox` instead.\n *\n * ## Accessibility\n * - StaticCheckbox is decorative and non-interactive by design\n * - Always pair with descriptive text labels in the default slot\n * - Do not use this as a replacement for interactive checkboxes in forms\n *\n * @tagname mdc-staticcheckbox\n *\n * @dependency mdc-icon\n *\n * @cssproperty --mdc-staticcheckbox-border-color - Border color of the checkbox.\n * @cssproperty --mdc-staticcheckbox-background-color - Background color of the checkbox.\n * @cssproperty --mdc-staticcheckbox-icon-color - Icon color of the checkbox.\n * @cssproperty --mdc-staticcheckbox-size - Size of the checkbox.\n *\n * @csspart icon-container - The container for the checkbox icon.\n * @csspart checkbox-icon - The checkbox icon element.\n *\n * @slot - Default slot for label text.\n */",
|
|
44710
44760
|
"customElement": true
|
|
44711
44761
|
}
|
|
44712
44762
|
],
|
|
@@ -44866,39 +44916,39 @@
|
|
|
44866
44916
|
"declarations": [
|
|
44867
44917
|
{
|
|
44868
44918
|
"kind": "class",
|
|
44869
|
-
"description": "StaticRadio is a decorative
|
|
44919
|
+
"description": "The StaticRadio component is a decorative, non-interactive radio button used for visual\npresentation in read-only scenarios. Unlike the interactive `mdc-radio`, it does not\nhandle user interactions or form submissions.\n\nThis component supports multiple visual states: checked, disabled, readonly, and soft-disabled.\n\n## When to use\nUse StaticRadio to display radio button states in read-only contexts such as summary views,\nconfirmation screens, or when showing historical form data. For interactive radio buttons, use\n`mdc-radio` instead.\n\n## Accessibility\n- StaticRadio is decorative and non-interactive by design\n- Always pair with descriptive text labels in the default slot\n- Do not use this as a replacement for interactive radio buttons in forms",
|
|
44870
44920
|
"name": "StaticRadio",
|
|
44871
44921
|
"cssProperties": [
|
|
44872
44922
|
{
|
|
44873
|
-
"description": "
|
|
44923
|
+
"description": "Size of the inner circle when checked.",
|
|
44874
44924
|
"name": "--mdc-staticradio-inner-circle-size"
|
|
44875
44925
|
},
|
|
44876
44926
|
{
|
|
44877
|
-
"description": "
|
|
44927
|
+
"description": "Size of the outer circle border.",
|
|
44878
44928
|
"name": "--mdc-staticradio-outer-circle-size"
|
|
44879
44929
|
},
|
|
44880
44930
|
{
|
|
44881
|
-
"description": "
|
|
44931
|
+
"description": "Background color of the inner circle when checked.",
|
|
44882
44932
|
"name": "--mdc-staticradio-inner-circle-background-color"
|
|
44883
44933
|
},
|
|
44884
44934
|
{
|
|
44885
|
-
"description": "
|
|
44935
|
+
"description": "Border color of the outer circle.",
|
|
44886
44936
|
"name": "--mdc-staticradio-outer-circle-border-color"
|
|
44887
44937
|
},
|
|
44888
44938
|
{
|
|
44889
|
-
"description": "
|
|
44939
|
+
"description": "Background color of the outer circle.",
|
|
44890
44940
|
"name": "--mdc-staticradio-outer-circle-background-color"
|
|
44891
44941
|
}
|
|
44892
44942
|
],
|
|
44893
44943
|
"cssParts": [
|
|
44894
44944
|
{
|
|
44895
|
-
"description": "The radio icon element",
|
|
44945
|
+
"description": "The radio icon element.",
|
|
44896
44946
|
"name": "radio-icon"
|
|
44897
44947
|
}
|
|
44898
44948
|
],
|
|
44899
44949
|
"slots": [
|
|
44900
44950
|
{
|
|
44901
|
-
"description": "Default slot for the label of the radio",
|
|
44951
|
+
"description": "Default slot for the label of the radio.",
|
|
44902
44952
|
"name": ""
|
|
44903
44953
|
}
|
|
44904
44954
|
],
|
|
@@ -45005,7 +45055,7 @@
|
|
|
45005
45055
|
"module": "/src/models"
|
|
45006
45056
|
},
|
|
45007
45057
|
"tagName": "mdc-staticradio",
|
|
45008
|
-
"jsDoc": "/**\n * StaticRadio is a decorative
|
|
45058
|
+
"jsDoc": "/**\n * The StaticRadio component is a decorative, non-interactive radio button used for visual\n * presentation in read-only scenarios. Unlike the interactive `mdc-radio`, it does not\n * handle user interactions or form submissions.\n *\n * This component supports multiple visual states: checked, disabled, readonly, and soft-disabled.\n *\n * ## When to use\n * Use StaticRadio to display radio button states in read-only contexts such as summary views,\n * confirmation screens, or when showing historical form data. For interactive radio buttons, use\n * `mdc-radio` instead.\n *\n * ## Accessibility\n * - StaticRadio is decorative and non-interactive by design\n * - Always pair with descriptive text labels in the default slot\n * - Do not use this as a replacement for interactive radio buttons in forms\n *\n * @tagname mdc-staticradio\n *\n * @cssproperty --mdc-staticradio-inner-circle-size - Size of the inner circle when checked.\n * @cssproperty --mdc-staticradio-outer-circle-size - Size of the outer circle border.\n * @cssproperty --mdc-staticradio-inner-circle-background-color - Background color of the inner circle when checked.\n * @cssproperty --mdc-staticradio-outer-circle-border-color - Border color of the outer circle.\n * @cssproperty --mdc-staticradio-outer-circle-background-color - Background color of the outer circle.\n *\n * @csspart radio-icon - The radio icon element.\n *\n * @slot - Default slot for the label of the radio.\n */",
|
|
45009
45059
|
"customElement": true
|
|
45010
45060
|
}
|
|
45011
45061
|
],
|
|
@@ -45026,35 +45076,35 @@
|
|
|
45026
45076
|
"declarations": [
|
|
45027
45077
|
{
|
|
45028
45078
|
"kind": "class",
|
|
45029
|
-
"description": "The StaticToggle is a decorative
|
|
45079
|
+
"description": "The StaticToggle component is a decorative, non-interactive toggle switch used for visual\npresentation. It shares the same styling as the interactive `mdc-toggle` component but does\nnot provide user interaction functionality.\n\nThis component supports multiple visual states: checked, disabled, readonly, soft-disabled,\nand size variations (default, compact).\n\n## When to use\nUse StaticToggle to display toggle states in read-only contexts such as summary views,\nconfirmation screens, or as a building block within custom interactive components. For\ninteractive toggles, use `mdc-toggle` instead.\n\n## Accessibility\n- StaticToggle is decorative and non-interactive by design\n- When used within parent components, ensure proper ARIA attributes are provided by the parent\n- Do not use this as a replacement for interactive toggles in forms",
|
|
45030
45080
|
"name": "StaticToggle",
|
|
45031
45081
|
"cssProperties": [
|
|
45032
45082
|
{
|
|
45033
|
-
"description": "
|
|
45083
|
+
"description": "Width of the static toggle.",
|
|
45034
45084
|
"name": "--mdc-statictoggle-width"
|
|
45035
45085
|
},
|
|
45036
45086
|
{
|
|
45037
|
-
"description": "
|
|
45087
|
+
"description": "Height of the static toggle.",
|
|
45038
45088
|
"name": "--mdc-statictoggle-height"
|
|
45039
45089
|
},
|
|
45040
45090
|
{
|
|
45041
|
-
"description": "
|
|
45091
|
+
"description": "Border radius of the static toggle.",
|
|
45042
45092
|
"name": "--mdc-statictoggle-border-radius"
|
|
45043
45093
|
},
|
|
45044
45094
|
{
|
|
45045
|
-
"description": "
|
|
45095
|
+
"description": "Border color of the static toggle.",
|
|
45046
45096
|
"name": "--mdc-statictoggle-border-color"
|
|
45047
45097
|
},
|
|
45048
45098
|
{
|
|
45049
|
-
"description": "
|
|
45099
|
+
"description": "Background color of the static toggle.",
|
|
45050
45100
|
"name": "--mdc-statictoggle-background-color"
|
|
45051
45101
|
},
|
|
45052
45102
|
{
|
|
45053
|
-
"description": "
|
|
45103
|
+
"description": "Icon color of the static toggle.",
|
|
45054
45104
|
"name": "--mdc-statictoggle-icon-color"
|
|
45055
45105
|
},
|
|
45056
45106
|
{
|
|
45057
|
-
"description": "
|
|
45107
|
+
"description": "Icon background color of the static toggle.",
|
|
45058
45108
|
"name": "--mdc-statictoggle-icon-background-color"
|
|
45059
45109
|
}
|
|
45060
45110
|
],
|
|
@@ -45197,7 +45247,7 @@
|
|
|
45197
45247
|
"module": "/src/models"
|
|
45198
45248
|
},
|
|
45199
45249
|
"tagName": "mdc-statictoggle",
|
|
45200
|
-
"jsDoc": "/**\n * The StaticToggle is a decorative
|
|
45250
|
+
"jsDoc": "/**\n * The StaticToggle component is a decorative, non-interactive toggle switch used for visual\n * presentation. It shares the same styling as the interactive `mdc-toggle` component but does\n * not provide user interaction functionality.\n *\n * This component supports multiple visual states: checked, disabled, readonly, soft-disabled,\n * and size variations (default, compact).\n *\n * ## When to use\n * Use StaticToggle to display toggle states in read-only contexts such as summary views,\n * confirmation screens, or as a building block within custom interactive components. For\n * interactive toggles, use `mdc-toggle` instead.\n *\n * ## Accessibility\n * - StaticToggle is decorative and non-interactive by design\n * - When used within parent components, ensure proper ARIA attributes are provided by the parent\n * - Do not use this as a replacement for interactive toggles in forms\n *\n * @tagname mdc-statictoggle\n *\n * @dependency mdc-icon\n *\n * @cssproperty --mdc-statictoggle-width - Width of the static toggle.\n * @cssproperty --mdc-statictoggle-height - Height of the static toggle.\n * @cssproperty --mdc-statictoggle-border-radius - Border radius of the static toggle.\n * @cssproperty --mdc-statictoggle-border-color - Border color of the static toggle.\n * @cssproperty --mdc-statictoggle-background-color - Background color of the static toggle.\n * @cssproperty --mdc-statictoggle-icon-color - Icon color of the static toggle.\n * @cssproperty --mdc-statictoggle-icon-background-color - Icon background color of the static toggle.\n *\n * @csspart slider - The slider part of the toggle.\n * @csspart toggle-icon - The icon part of the toggle.\n *\n * @slot - Default slot for slotted content (typically used by parent `mdc-toggle` for the checkbox input).\n */",
|
|
45201
45251
|
"customElement": true
|
|
45202
45252
|
}
|
|
45203
45253
|
],
|
|
@@ -49653,6 +49703,16 @@
|
|
|
49653
49703
|
"module": "components/popover/popover.component.js"
|
|
49654
49704
|
}
|
|
49655
49705
|
},
|
|
49706
|
+
{
|
|
49707
|
+
"kind": "field",
|
|
49708
|
+
"name": "cancelOpenDelay",
|
|
49709
|
+
"privacy": "private",
|
|
49710
|
+
"description": "Cancels the open delay timer.",
|
|
49711
|
+
"inheritedFrom": {
|
|
49712
|
+
"name": "Popover",
|
|
49713
|
+
"module": "components/popover/popover.component.js"
|
|
49714
|
+
}
|
|
49715
|
+
},
|
|
49656
49716
|
{
|
|
49657
49717
|
"kind": "field",
|
|
49658
49718
|
"name": "closeButton",
|
|
@@ -50694,6 +50754,16 @@
|
|
|
50694
50754
|
"module": "components/popover/popover.component.js"
|
|
50695
50755
|
}
|
|
50696
50756
|
},
|
|
50757
|
+
{
|
|
50758
|
+
"kind": "field",
|
|
50759
|
+
"name": "timers",
|
|
50760
|
+
"privacy": "private",
|
|
50761
|
+
"default": "new Timers(this)",
|
|
50762
|
+
"inheritedFrom": {
|
|
50763
|
+
"name": "Popover",
|
|
50764
|
+
"module": "components/popover/popover.component.js"
|
|
50765
|
+
}
|
|
50766
|
+
},
|
|
50697
50767
|
{
|
|
50698
50768
|
"kind": "field",
|
|
50699
50769
|
"name": "togglePopoverVisible",
|
|
@@ -51695,6 +51765,16 @@
|
|
|
51695
51765
|
"module": "components/popover/popover.component.js"
|
|
51696
51766
|
}
|
|
51697
51767
|
},
|
|
51768
|
+
{
|
|
51769
|
+
"kind": "field",
|
|
51770
|
+
"name": "cancelOpenDelay",
|
|
51771
|
+
"privacy": "private",
|
|
51772
|
+
"description": "Cancels the open delay timer.",
|
|
51773
|
+
"inheritedFrom": {
|
|
51774
|
+
"name": "Popover",
|
|
51775
|
+
"module": "components/popover/popover.component.js"
|
|
51776
|
+
}
|
|
51777
|
+
},
|
|
51698
51778
|
{
|
|
51699
51779
|
"kind": "field",
|
|
51700
51780
|
"name": "closeButton",
|
|
@@ -52759,6 +52839,16 @@
|
|
|
52759
52839
|
"module": "components/popover/popover.component.js"
|
|
52760
52840
|
}
|
|
52761
52841
|
},
|
|
52842
|
+
{
|
|
52843
|
+
"kind": "field",
|
|
52844
|
+
"name": "timers",
|
|
52845
|
+
"privacy": "private",
|
|
52846
|
+
"default": "new Timers(this)",
|
|
52847
|
+
"inheritedFrom": {
|
|
52848
|
+
"name": "Popover",
|
|
52849
|
+
"module": "components/popover/popover.component.js"
|
|
52850
|
+
}
|
|
52851
|
+
},
|
|
52762
52852
|
{
|
|
52763
52853
|
"kind": "field",
|
|
52764
52854
|
"name": "togglePopoverVisible",
|