@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.
Files changed (35) hide show
  1. package/dist/browser/index.js +263 -264
  2. package/dist/browser/index.js.map +4 -4
  3. package/dist/components/bullet/bullet.component.d.ts +16 -6
  4. package/dist/components/bullet/bullet.component.js +16 -6
  5. package/dist/components/bullet/bullet.styles.js +5 -6
  6. package/dist/components/divider/divider.component.d.ts +50 -55
  7. package/dist/components/divider/divider.component.js +50 -55
  8. package/dist/components/marker/marker.component.d.ts +20 -15
  9. package/dist/components/marker/marker.component.js +20 -15
  10. package/dist/components/popover/popover.component.d.ts +5 -2
  11. package/dist/components/popover/popover.component.js +39 -21
  12. package/dist/components/popover/popover.constants.d.ts +6 -1
  13. package/dist/components/popover/popover.constants.js +6 -1
  14. package/dist/components/staticcheckbox/staticcheckbox.component.d.ts +22 -11
  15. package/dist/components/staticcheckbox/staticcheckbox.component.js +22 -11
  16. package/dist/components/staticradio/staticradio.component.d.ts +21 -11
  17. package/dist/components/staticradio/staticradio.component.js +21 -11
  18. package/dist/components/statictoggle/statictoggle.component.d.ts +25 -12
  19. package/dist/components/statictoggle/statictoggle.component.js +25 -12
  20. package/dist/custom-elements.json +169 -79
  21. package/dist/react/bullet/index.d.ts +16 -6
  22. package/dist/react/bullet/index.js +16 -6
  23. package/dist/react/divider/index.d.ts +33 -38
  24. package/dist/react/divider/index.js +33 -38
  25. package/dist/react/marker/index.d.ts +17 -12
  26. package/dist/react/marker/index.js +17 -12
  27. package/dist/react/staticcheckbox/index.d.ts +22 -11
  28. package/dist/react/staticcheckbox/index.js +22 -11
  29. package/dist/react/staticradio/index.d.ts +21 -11
  30. package/dist/react/staticradio/index.js +21 -11
  31. package/dist/react/statictoggle/index.d.ts +25 -12
  32. package/dist/react/statictoggle/index.js +25 -12
  33. package/dist/utils/controllers/Timers.d.ts +49 -0
  34. package/dist/utils/controllers/Timers.js +96 -0
  35. package/package.json +1 -1
@@ -161,8 +161,8 @@
161
161
  "attribute": "disabled",
162
162
  "reflects": true,
163
163
  "inheritedFrom": {
164
- "name": "AccordionButton",
165
- "module": "components/accordionbutton/accordionbutton.component.js"
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": "AccordionButton",
424
- "module": "src/components/accordionbutton/accordionbutton.component.ts"
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, which is a visual marker\nand be used to organize and present items in a list format.",
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": "background color of the bullet",
5101
+ "description": "Background color of the bullet.",
5102
5102
  "name": "--mdc-bullet-background-color"
5103
5103
  },
5104
5104
  {
5105
- "description": "small size value of the bullet",
5106
- "name": "--mdc-bullet-size-small"
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, 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 */",
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": "`mdc-divider` is a component that provides a line to separate and organize content.\nIt can also include a button or text positioned centrally, allowing users to interact with the layout.\n\n**Divider Orientation:**\n- **Horizontal**: A thin, horizontal line.\n- **Vertical**: A thin, vertical line.\n\n**Divider Variants:**\n- **solid**: Solid line.\n- **gradient**: Gradient Line.\n\n**Divider Types:**\n- The type of divider is inferred based on the kind of slot present.\n - **Primary**: A simple horizontal or vertical divider.\n - **Text**: A horizontal divider with a text label in the center.\n - **Grabber Button**: A horizontal or vertical divider with a styled button in the center.\n\n**Accessibility:**\n- When the slot is replaced by an `mdc-button`:\n - `aria-label` should be passed to the `mdc-button`.\n - `aria-expanded` should be passed to the `mdc-button`.\n\n**Notes:**\n- If the slot is replaced by an invalid tag name or contains multiple elements,\n the divider defaults to the **Primary** type.\n- To override the styles of the divider, use the provided CSS custom properties.",
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": "background color of the divider",
16435
+ "description": "Background color of the divider line.",
16424
16436
  "name": "--mdc-divider-background-color"
16425
16437
  },
16426
16438
  {
16427
- "description": "width of the divider",
16439
+ "description": "Width (thickness) of the divider line.",
16428
16440
  "name": "--mdc-divider-width"
16429
16441
  },
16430
16442
  {
16431
- "description": "gradient of the horizontal divider",
16443
+ "description": "Gradient for horizontal dividers.",
16432
16444
  "name": "--mdc-divider-horizontal-gradient"
16433
16445
  },
16434
16446
  {
16435
- "description": "gradient of the vertical divider",
16447
+ "description": "Gradient for vertical dividers.",
16436
16448
  "name": "--mdc-divider-vertical-gradient"
16437
16449
  },
16438
16450
  {
16439
- "description": "font size of label in the text divider",
16451
+ "description": "Font size of the text label in text dividers.",
16440
16452
  "name": "--mdc-divider-text-size"
16441
16453
  },
16442
16454
  {
16443
- "description": "font color of label in the text divider",
16455
+ "description": "Font color of the text label in text dividers.",
16444
16456
  "name": "--mdc-divider-text-color"
16445
16457
  },
16446
16458
  {
16447
- "description": "left and right margin of label in the text divider",
16459
+ "description": "Left and right margin of the text label.",
16448
16460
  "name": "--mdc-divider-text-margin"
16449
16461
  },
16450
16462
  {
16451
- "description": "line height of label in the text divider",
16463
+ "description": "Line height of the text label.",
16452
16464
  "name": "--mdc-divider-text-line-height"
16453
16465
  },
16454
16466
  {
16455
- "description": "background color of the grabber button in rest state",
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": "background color of the grabber button in hover state",
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": "background color of the grabber button in pressed state",
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": "border color of the grabber button",
16479
+ "description": "Border color of the grabber button.",
16468
16480
  "name": "--mdc-divider-grabber-button-border-color"
16469
16481
  },
16470
16482
  {
16471
- "description": "border radius of the grabber button",
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, if applicable.\n- **positive**\n- **negative**\n\nNote: Positive and Negative directions are defined based on Cartesian plane.",
16483
- "default": "'negative'",
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, if applicable.\n- **positive**\n- **negative**\n\nNote: Positive and Negative directions are defined based on Cartesian plane.",
16494
- "default": "'negative'",
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": "Two orientations of divider\n- **horizontal**: A thin, horizontal line with 0.0625rem width.\n- **vertical**: A thin, vertical line with 0.0625rem width.\n\nNote: We do not support \"Vertical Text Divider\" as of now.",
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": "Two variants of divider\n- **solid**: Solid line.\n- **gradient**: Gradient Line that fades on either sides of the divider.",
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": "Two orientations of divider\n- **horizontal**: A thin, horizontal line with 0.0625rem width.\n- **vertical**: A thin, vertical line with 0.0625rem width.\n\nNote: We do not support \"Vertical Text Divider\" as of now.",
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": "Two variants of divider\n- **solid**: Solid line.\n- **gradient**: Gradient Line that fades on either sides of the divider.",
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, if applicable.\n- **positive**\n- **negative**\n\nNote: Positive and Negative directions are defined based on Cartesian plane.",
16626
- "default": "'negative'",
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, if applicable.\n- **positive**\n- **negative**\n\nNote: Positive and Negative directions are defined based on Cartesian plane.",
16635
- "default": "'negative'",
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 * `mdc-divider` is a component that provides a line to separate and organize content.\n * It can also include a button or text positioned centrally, allowing users to interact with the layout.\n *\n * **Divider Orientation:**\n * - **Horizontal**: A thin, horizontal line.\n * - **Vertical**: A thin, vertical line.\n *\n * **Divider Variants:**\n * - **solid**: Solid line.\n * - **gradient**: Gradient Line.\n *\n * **Divider Types:**\n * - The type of divider is inferred based on the kind of slot present.\n * - **Primary**: A simple horizontal or vertical divider.\n * - **Text**: A horizontal divider with a text label in the center.\n * - **Grabber Button**: A horizontal or vertical divider with a styled button in the center.\n *\n * **Accessibility:**\n * - When the slot is replaced by an `mdc-button`:\n * - `aria-label` should be passed to the `mdc-button`.\n * - `aria-expanded` should be passed to the `mdc-button`.\n *\n * **Notes:**\n * - If the slot is replaced by an invalid tag name or contains multiple elements,\n * the divider defaults to the **Primary** type.\n * - To override the styles of the divider, use the provided CSS custom properties.\n *\n * @tagname mdc-divider\n *\n * @cssproperty --mdc-divider-background-color - background color of the divider\n * @cssproperty --mdc-divider-width - width of the divider\n * @cssproperty --mdc-divider-horizontal-gradient - gradient of the horizontal divider\n * @cssproperty --mdc-divider-vertical-gradient - gradient of the vertical divider\n * @cssproperty --mdc-divider-text-size - font size of label in the text divider\n * @cssproperty --mdc-divider-text-color - font color of label in the text divider\n * @cssproperty --mdc-divider-text-margin - left and right margin of label in the text divider\n * @cssproperty --mdc-divider-text-line-height - line height of label in the text divider\n * @cssproperty --mdc-divider-grabber-button-background-color-normal - background color of the grabber button\n * in rest state\n * @cssproperty --mdc-divider-grabber-button-background-color-hover - background color of the grabber button\n * in hover state\n * @cssproperty --mdc-divider-grabber-button-background-color-pressed - background color of the grabber button\n * 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 */",
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": "`mdc-marker`, which is a vertical line and\nused to draw attention to specific parts of\nthe content or to signify important information.\n\n**Marker Variants**:\n- **solid**: Solid marker.\n- **striped**: Striped marker.",
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": "Allows customization of the default background color in solid variant.",
23656
+ "description": "Background color for solid variant markers.",
23639
23657
  "name": "--mdc-marker-solid-background-color"
23640
23658
  },
23641
23659
  {
23642
- "description": "Allows customization of the default stripes in striped variant.",
23660
+ "description": "Stripe color for striped variant markers.",
23643
23661
  "name": "--mdc-marker-striped-color"
23644
23662
  },
23645
23663
  {
23646
- "description": "Allows customization of the default background color in striped variant.",
23664
+ "description": "Background color for striped variant markers.",
23647
23665
  "name": "--mdc-marker-striped-background-color"
23648
23666
  },
23649
23667
  {
23650
- "description": "Allows customization of the default width.",
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": "There are two variants of markers, each with a width of 0.25rem:\n- **solid**: Solid marker.\n- **striped**: Striped marker.",
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": "There are two variants of markers, each with a width of 0.25rem:\n- **solid**: Solid marker.\n- **striped**: Striped marker.",
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 * `mdc-marker`, which is a vertical line and\n * used to draw attention to specific parts of\n * the content or to signify important information.\n *\n * **Marker Variants**:\n * - **solid**: Solid marker.\n * - **striped**: Striped marker.\n *\n * @tagname mdc-marker\n *\n * @cssproperty --mdc-marker-solid-background-color - Allows customization of the default background color\n * in solid variant.\n * @cssproperty --mdc-marker-striped-color - Allows customization of the default stripes in striped variant.\n * @cssproperty --mdc-marker-striped-background-color - Allows customization of the default background color\n * in striped variant.\n * @cssproperty --mdc-marker-width - Allows customization of the default width.\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 component styled as a checkbox for visual presentation.\nUnlike the interactive `mdc-checkbox`, this component does not handle user interactions or form submissions.\nIt is used purely for displaying checkbox states in read-only scenarios.\n\nThis component supports five display states: checked, indeterminate, disabled, readonly, and soft-disabled.",
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": "The border color of the checkbox.",
44604
+ "description": "Border color of the checkbox.",
44555
44605
  "name": "--mdc-staticcheckbox-border-color"
44556
44606
  },
44557
44607
  {
44558
- "description": "The background color of the checkbox.",
44608
+ "description": "Background color of the checkbox.",
44559
44609
  "name": "--mdc-staticcheckbox-background-color"
44560
44610
  },
44561
44611
  {
44562
- "description": "The icon color of the checkbox.",
44612
+ "description": "Icon color of the checkbox.",
44563
44613
  "name": "--mdc-staticcheckbox-icon-color"
44564
44614
  },
44565
44615
  {
44566
- "description": "The size of the checkbox.",
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 adding label text",
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 component styled as a checkbox for visual presentation.\n * Unlike the interactive `mdc-checkbox`, this component does not handle user interactions or form submissions.\n * It is used purely for displaying checkbox states in read-only scenarios.\n *\n * This component supports five display states: checked, indeterminate, disabled, readonly, and soft-disabled.\n *\n * @tagname mdc-staticcheckbox\n *\n * @dependency mdc-icon\n *\n * @cssproperty --mdc-staticcheckbox-border-color - The border color of the checkbox.\n * @cssproperty --mdc-staticcheckbox-background-color - The background color of the checkbox.\n * @cssproperty --mdc-staticcheckbox-icon-color - The icon color of the checkbox.\n * @cssproperty --mdc-staticcheckbox-size - The 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 adding label text\n */",
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 component styled as a radio button for visual presentation.\nUnlike the interactive `mdc-radio`, this component does not handle user interactions or form submissions.\nIt is used purely for displaying radio button states in read-only scenarios.\n\nThis component supports four display states: checked, disabled, readonly, and soft-disabled.",
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": "The size of the inner circle when checked.",
44923
+ "description": "Size of the inner circle when checked.",
44874
44924
  "name": "--mdc-staticradio-inner-circle-size"
44875
44925
  },
44876
44926
  {
44877
- "description": "The size of the outer circle border.",
44927
+ "description": "Size of the outer circle border.",
44878
44928
  "name": "--mdc-staticradio-outer-circle-size"
44879
44929
  },
44880
44930
  {
44881
- "description": "The background color of the inner circle when checked.",
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": "The border color of the outer circle.",
44935
+ "description": "Border color of the outer circle.",
44886
44936
  "name": "--mdc-staticradio-outer-circle-border-color"
44887
44937
  },
44888
44938
  {
44889
- "description": "The background color of the outer circle.",
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 component styled as a radio button for visual presentation.\n * Unlike the interactive `mdc-radio`, this component does not handle user interactions or form submissions.\n * It is used purely for displaying radio button states in read-only scenarios.\n *\n * This component supports four display states: checked, disabled, readonly, and soft-disabled.\n *\n * @tagname mdc-staticradio\n *\n * @cssproperty --mdc-staticradio-inner-circle-size - The size of the inner circle when checked.\n * @cssproperty --mdc-staticradio-outer-circle-size - The size of the outer circle border.\n * @cssproperty --mdc-staticradio-inner-circle-background-color - The background color of the inner circle when checked.\n * @cssproperty --mdc-staticradio-outer-circle-border-color - The border color of the outer circle.\n * @cssproperty --mdc-staticradio-outer-circle-background-color - The 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 */",
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 component that visually represents a toggle switch without interactive functionality.\nIt is primarily used for display purposes or as a building block within custom interactive components.\nThis component shares the same visual styling as the interactive `mdc-toggle` component.",
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": "The width of the static toggle.",
45083
+ "description": "Width of the static toggle.",
45034
45084
  "name": "--mdc-statictoggle-width"
45035
45085
  },
45036
45086
  {
45037
- "description": "The height of the static toggle.",
45087
+ "description": "Height of the static toggle.",
45038
45088
  "name": "--mdc-statictoggle-height"
45039
45089
  },
45040
45090
  {
45041
- "description": "The border radius of the static toggle.",
45091
+ "description": "Border radius of the static toggle.",
45042
45092
  "name": "--mdc-statictoggle-border-radius"
45043
45093
  },
45044
45094
  {
45045
- "description": "The border color of the static toggle.",
45095
+ "description": "Border color of the static toggle.",
45046
45096
  "name": "--mdc-statictoggle-border-color"
45047
45097
  },
45048
45098
  {
45049
- "description": "The background color of the static toggle.",
45099
+ "description": "Background color of the static toggle.",
45050
45100
  "name": "--mdc-statictoggle-background-color"
45051
45101
  },
45052
45102
  {
45053
- "description": "The icon color of the static toggle.",
45103
+ "description": "Icon color of the static toggle.",
45054
45104
  "name": "--mdc-statictoggle-icon-color"
45055
45105
  },
45056
45106
  {
45057
- "description": "The icon background color of the static toggle.",
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 component that visually represents a toggle switch without interactive functionality.\n * It is primarily used for display purposes or as a building block within custom interactive components.\n * This component shares the same visual styling as the interactive `mdc-toggle` component.\n *\n * @dependency mdc-icon\n *\n * @tagname mdc-statictoggle\n *\n * @slot - Default slot for slotted content (typically used by parent `mdc-toggle` for the checkbox input).\n *\n * @cssproperty --mdc-statictoggle-width - The width of the static toggle.\n * @cssproperty --mdc-statictoggle-height - The height of the static toggle.\n * @cssproperty --mdc-statictoggle-border-radius - The border radius of the static toggle.\n * @cssproperty --mdc-statictoggle-border-color - The border color of the static toggle.\n * @cssproperty --mdc-statictoggle-background-color - The background color of the static toggle.\n * @cssproperty --mdc-statictoggle-icon-color - The icon color of the static toggle.\n * @cssproperty --mdc-statictoggle-icon-background-color - The 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 */",
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",