@momentum-design/components 0.129.37 → 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 (29) hide show
  1. package/dist/browser/index.js +5 -6
  2. package/dist/browser/index.js.map +2 -2
  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/staticcheckbox/staticcheckbox.component.d.ts +22 -11
  11. package/dist/components/staticcheckbox/staticcheckbox.component.js +22 -11
  12. package/dist/components/staticradio/staticradio.component.d.ts +21 -11
  13. package/dist/components/staticradio/staticradio.component.js +21 -11
  14. package/dist/components/statictoggle/statictoggle.component.d.ts +25 -12
  15. package/dist/components/statictoggle/statictoggle.component.js +25 -12
  16. package/dist/custom-elements.json +73 -75
  17. package/dist/react/bullet/index.d.ts +16 -6
  18. package/dist/react/bullet/index.js +16 -6
  19. package/dist/react/divider/index.d.ts +33 -38
  20. package/dist/react/divider/index.js +33 -38
  21. package/dist/react/marker/index.d.ts +17 -12
  22. package/dist/react/marker/index.js +17 -12
  23. package/dist/react/staticcheckbox/index.d.ts +22 -11
  24. package/dist/react/staticcheckbox/index.js +22 -11
  25. package/dist/react/staticradio/index.d.ts +21 -11
  26. package/dist/react/staticradio/index.js +21 -11
  27. package/dist/react/statictoggle/index.d.ts +25 -12
  28. package/dist/react/statictoggle/index.js +25 -12
  29. package/package.json +1 -1
@@ -2,15 +2,25 @@ import type { CSSResult } from 'lit';
2
2
  import { Component } from '../../models';
3
3
  import type { Size } from './bullet.types';
4
4
  /**
5
- * Bullet component, which is a visual marker
6
- * and be used to organize and present items in a list format.
5
+ * The Bullet component displays a small circular visual indicator used to organize and present
6
+ * items in a list format. It provides a simple, consistent way to mark list items or emphasize
7
+ * content points.
8
+ *
9
+ * Bullets are available in three sizes (small, medium, large) to accommodate different layout
10
+ * densities and visual hierarchies.
11
+ *
12
+ * ## When to use
13
+ * Use bullets to create unordered lists, mark navigation items, or provide visual indicators
14
+ * for list content. Choose bullet size based on content importance and layout density.
15
+ *
16
+ * ## Accessibility
17
+ * - Bullets are purely decorative and should be used alongside meaningful text content
18
+ * - Do not rely solely on bullet size or color to convey information
7
19
  *
8
20
  * @tagname mdc-bullet
9
21
  *
10
- * @cssproperty --mdc-bullet-background-color - background color of the bullet
11
- * @cssproperty --mdc-bullet-size-small - small size value of the bullet
12
- * @cssproperty --mdc-bullet-size-medium - medium size value of the bullet
13
- * @cssproperty --mdc-bullet-size-large - large size value of the bullet
22
+ * @cssproperty --mdc-bullet-background-color - Background color of the bullet.
23
+ * @cssproperty --mdc-bullet-size - Height of the bullet.
14
24
  */
15
25
  declare class Bullet extends Component {
16
26
  /**
@@ -12,15 +12,25 @@ import { Component } from '../../models';
12
12
  import styles from './bullet.styles';
13
13
  import { SIZE } from './bullet.constants';
14
14
  /**
15
- * Bullet component, which is a visual marker
16
- * and be used to organize and present items in a list format.
15
+ * The Bullet component displays a small circular visual indicator used to organize and present
16
+ * items in a list format. It provides a simple, consistent way to mark list items or emphasize
17
+ * content points.
18
+ *
19
+ * Bullets are available in three sizes (small, medium, large) to accommodate different layout
20
+ * densities and visual hierarchies.
21
+ *
22
+ * ## When to use
23
+ * Use bullets to create unordered lists, mark navigation items, or provide visual indicators
24
+ * for list content. Choose bullet size based on content importance and layout density.
25
+ *
26
+ * ## Accessibility
27
+ * - Bullets are purely decorative and should be used alongside meaningful text content
28
+ * - Do not rely solely on bullet size or color to convey information
17
29
  *
18
30
  * @tagname mdc-bullet
19
31
  *
20
- * @cssproperty --mdc-bullet-background-color - background color of the bullet
21
- * @cssproperty --mdc-bullet-size-small - small size value of the bullet
22
- * @cssproperty --mdc-bullet-size-medium - medium size value of the bullet
23
- * @cssproperty --mdc-bullet-size-large - large size value of the bullet
32
+ * @cssproperty --mdc-bullet-background-color - Background color of the bullet.
33
+ * @cssproperty --mdc-bullet-size - Height of the bullet.
24
34
  */
25
35
  class Bullet extends Component {
26
36
  constructor() {
@@ -2,23 +2,22 @@ import { css } from 'lit';
2
2
  const styles = css `
3
3
  :host {
4
4
  --mdc-bullet-background-color: var(--mds-color-theme-outline-secondary-normal);
5
- --mdc-bullet-size-small: 0.25rem;
6
- --mdc-bullet-size-medium: 0.5rem;
7
- --mdc-bullet-size-large: 1rem;
5
+ --mdc-bullet-size: 0.25rem;
8
6
 
9
7
  border-radius: 50%;
10
8
  display: block;
11
9
  aspect-ratio: 1;
10
+ height: var(--mdc-bullet-size);
12
11
  background-color: var(--mdc-bullet-background-color);
13
12
  }
14
13
  :host([size='small']) {
15
- height: var(--mdc-bullet-size-small);
14
+ --mdc-bullet-size: 0.25rem;
16
15
  }
17
16
  :host([size='medium']) {
18
- height: var(--mdc-bullet-size-medium);
17
+ --mdc-bullet-size: 0.5rem;
19
18
  }
20
19
  :host([size='large']) {
21
- height: var(--mdc-bullet-size-large);
20
+ --mdc-bullet-size: 1rem;
22
21
  }
23
22
  `;
24
23
  export default [styles];
@@ -3,85 +3,80 @@ import { CSSResult } from 'lit';
3
3
  import { Component } from '../../models';
4
4
  import type { Directions, DividerOrientation, DividerVariant } from './divider.types';
5
5
  /**
6
- * `mdc-divider` is a component that provides a line to separate and organize content.
7
- * It can also include a button or text positioned centrally, allowing users to interact with the layout.
6
+ * The Divider component provides a visual line to separate and organize content within layouts.
7
+ * It supports both horizontal and vertical orientations with solid or gradient styles, and can
8
+ * optionally include centered text labels or interactive grabber buttons.
8
9
  *
9
- * **Divider Orientation:**
10
- * - **Horizontal**: A thin, horizontal line.
11
- * - **Vertical**: A thin, vertical line.
10
+ * The divider automatically infers its type based on the content in its slot:
11
+ * - **Primary**: Simple line with no content
12
+ * - **Text**: Horizontal line with centered text label
13
+ * - **Grabber Button**: Line with centered interactive button
12
14
  *
13
- * **Divider Variants:**
14
- * - **solid**: Solid line.
15
- * - **gradient**: Gradient Line.
15
+ * **Note:**
16
+ * - Vertical text dividers are not currently supported.
17
+ * - If the slot contains invalid tag names or multiple elements, the divider defaults to the Primary type
18
+ * - Use the provided CSS custom properties to customize divider styles
16
19
  *
17
- * **Divider Types:**
18
- * - The type of divider is inferred based on the kind of slot present.
19
- * - **Primary**: A simple horizontal or vertical divider.
20
- * - **Text**: A horizontal divider with a text label in the center.
21
- * - **Grabber Button**: A horizontal or vertical divider with a styled button in the center.
20
+ * ## When to use
21
+ * Use dividers to create visual separation between content sections, list items, or layout regions.
22
+ * Add text labels to provide context, or grabber buttons to create resizable panes.
22
23
  *
23
- * **Accessibility:**
24
- * - When the slot is replaced by an `mdc-button`:
25
- * - `aria-label` should be passed to the `mdc-button`.
26
- * - `aria-expanded` should be passed to the `mdc-button`.
27
- *
28
- * **Notes:**
29
- * - If the slot is replaced by an invalid tag name or contains multiple elements,
30
- * the divider defaults to the **Primary** type.
31
- * - To override the styles of the divider, use the provided CSS custom properties.
24
+ * ## Accessibility
25
+ * - When using a grabber button, provide `aria-label` to describe its purpose
26
+ * - Set `aria-expanded` on the button to indicate the current state of resizable sections
27
+ * - Ensure sufficient color contrast for the divider line
32
28
  *
33
29
  * @tagname mdc-divider
34
30
  *
35
- * @cssproperty --mdc-divider-background-color - background color of the divider
36
- * @cssproperty --mdc-divider-width - width of the divider
37
- * @cssproperty --mdc-divider-horizontal-gradient - gradient of the horizontal divider
38
- * @cssproperty --mdc-divider-vertical-gradient - gradient of the vertical divider
39
- * @cssproperty --mdc-divider-text-size - font size of label in the text divider
40
- * @cssproperty --mdc-divider-text-color - font color of label in the text divider
41
- * @cssproperty --mdc-divider-text-margin - left and right margin of label in the text divider
42
- * @cssproperty --mdc-divider-text-line-height - line height of label in the text divider
43
- * @cssproperty --mdc-divider-grabber-button-background-color-normal - background color of the grabber button
44
- * in rest state
45
- * @cssproperty --mdc-divider-grabber-button-background-color-hover - background color of the grabber button
46
- * in hover state
47
- * @cssproperty --mdc-divider-grabber-button-background-color-pressed - background color of the grabber button
48
- * in pressed state
49
- * @cssproperty --mdc-divider-grabber-button-border-color - border color of the grabber button
50
- * @cssproperty --mdc-divider-grabber-button-border-radius - border radius of the grabber button
31
+ * @cssproperty --mdc-divider-background-color - Background color of the divider line.
32
+ * @cssproperty --mdc-divider-width - Width (thickness) of the divider line.
33
+ * @cssproperty --mdc-divider-horizontal-gradient - Gradient for horizontal dividers.
34
+ * @cssproperty --mdc-divider-vertical-gradient - Gradient for vertical dividers.
35
+ * @cssproperty --mdc-divider-text-size - Font size of the text label in text dividers.
36
+ * @cssproperty --mdc-divider-text-color - Font color of the text label in text dividers.
37
+ * @cssproperty --mdc-divider-text-margin - Left and right margin of the text label.
38
+ * @cssproperty --mdc-divider-text-line-height - Line height of the text label.
39
+ * @cssproperty --mdc-divider-grabber-button-background-color-normal - Background color of the grabber button in rest state.
40
+ * @cssproperty --mdc-divider-grabber-button-background-color-hover - Background color of the grabber button in hover state.
41
+ * @cssproperty --mdc-divider-grabber-button-background-color-pressed - Background color of the grabber button in pressed state.
42
+ * @cssproperty --mdc-divider-grabber-button-border-color - Border color of the grabber button.
43
+ * @cssproperty --mdc-divider-grabber-button-border-radius - Border radius of the grabber button.
44
+ *
45
+ * @slot - Content for the divider. Use `mdc-text` for text labels or `mdc-button` for grabber buttons.
51
46
  */
52
47
  declare class Divider extends Component {
53
48
  /**
54
- * Two orientations of divider
55
- * - **horizontal**: A thin, horizontal line with 0.0625rem width.
56
- * - **vertical**: A thin, vertical line with 0.0625rem width.
49
+ * Determines the orientation of the divider line.
50
+ * - **horizontal**: A thin horizontal line
51
+ * - **vertical**: A thin vertical line
57
52
  *
58
- * Note: We do not support "Vertical Text Divider" as of now.
53
+ * Note: Vertical text dividers are not currently supported.
59
54
  * @default horizontal
60
55
  */
61
56
  orientation: DividerOrientation;
62
57
  /**
63
- * Two variants of divider
64
- * - **solid**: Solid line.
65
- * - **gradient**: Gradient Line that fades on either sides of the divider.
58
+ * Visual style of the divider line.
59
+ * - **solid**: Solid line with uniform color
60
+ * - **gradient**: Gradient line that fades on both ends
66
61
  * @default solid
67
62
  */
68
63
  variant: DividerVariant;
69
64
  /**
70
- * Direction of the arrow icon, if applicable.
71
- * - **positive**
72
- * - **negative**
65
+ * Direction of the arrow icon displayed on the grabber button.
66
+ * - **positive**: Up arrow (horizontal) or right arrow (vertical)
67
+ * - **negative**: Down arrow (horizontal) or left arrow (vertical)
73
68
  *
74
- * Note: Positive and Negative directions are defined based on Cartesian plane.
75
- * @default 'negative'
69
+ * Only applies when using a grabber button. Directions follow the Cartesian coordinate system.
70
+ * @default negative
76
71
  */
77
72
  arrowDirection: Directions;
78
73
  /**
79
- * Position of the button, if applicable.
80
- * - **positive**
81
- * - **negative**
74
+ * Position of the grabber button along the divider line.
75
+ * - **positive**: Right side (horizontal) or top side (vertical)
76
+ * - **negative**: Left side (horizontal) or bottom side (vertical)
82
77
  *
83
- * Note: Positive and Negative directions are defined based on Cartesian plane.
84
- * @default 'negative'
78
+ * Only applies when using a grabber button. Directions follow the Cartesian coordinate system.
79
+ * @default negative
85
80
  */
86
81
  buttonPosition: Directions;
87
82
  /**
@@ -13,87 +13,82 @@ import { Component } from '../../models';
13
13
  import { ARROW_ICONS, BUTTON_TAG, DEFAULTS, DIRECTIONS, DIVIDER_ORIENTATION, DIVIDER_VARIANT, TEXT_TAG, } from './divider.constants';
14
14
  import styles from './divider.styles';
15
15
  /**
16
- * `mdc-divider` is a component that provides a line to separate and organize content.
17
- * It can also include a button or text positioned centrally, allowing users to interact with the layout.
16
+ * The Divider component provides a visual line to separate and organize content within layouts.
17
+ * It supports both horizontal and vertical orientations with solid or gradient styles, and can
18
+ * optionally include centered text labels or interactive grabber buttons.
18
19
  *
19
- * **Divider Orientation:**
20
- * - **Horizontal**: A thin, horizontal line.
21
- * - **Vertical**: A thin, vertical line.
20
+ * The divider automatically infers its type based on the content in its slot:
21
+ * - **Primary**: Simple line with no content
22
+ * - **Text**: Horizontal line with centered text label
23
+ * - **Grabber Button**: Line with centered interactive button
22
24
  *
23
- * **Divider Variants:**
24
- * - **solid**: Solid line.
25
- * - **gradient**: Gradient Line.
25
+ * **Note:**
26
+ * - Vertical text dividers are not currently supported.
27
+ * - If the slot contains invalid tag names or multiple elements, the divider defaults to the Primary type
28
+ * - Use the provided CSS custom properties to customize divider styles
26
29
  *
27
- * **Divider Types:**
28
- * - The type of divider is inferred based on the kind of slot present.
29
- * - **Primary**: A simple horizontal or vertical divider.
30
- * - **Text**: A horizontal divider with a text label in the center.
31
- * - **Grabber Button**: A horizontal or vertical divider with a styled button in the center.
30
+ * ## When to use
31
+ * Use dividers to create visual separation between content sections, list items, or layout regions.
32
+ * Add text labels to provide context, or grabber buttons to create resizable panes.
32
33
  *
33
- * **Accessibility:**
34
- * - When the slot is replaced by an `mdc-button`:
35
- * - `aria-label` should be passed to the `mdc-button`.
36
- * - `aria-expanded` should be passed to the `mdc-button`.
37
- *
38
- * **Notes:**
39
- * - If the slot is replaced by an invalid tag name or contains multiple elements,
40
- * the divider defaults to the **Primary** type.
41
- * - To override the styles of the divider, use the provided CSS custom properties.
34
+ * ## Accessibility
35
+ * - When using a grabber button, provide `aria-label` to describe its purpose
36
+ * - Set `aria-expanded` on the button to indicate the current state of resizable sections
37
+ * - Ensure sufficient color contrast for the divider line
42
38
  *
43
39
  * @tagname mdc-divider
44
40
  *
45
- * @cssproperty --mdc-divider-background-color - background color of the divider
46
- * @cssproperty --mdc-divider-width - width of the divider
47
- * @cssproperty --mdc-divider-horizontal-gradient - gradient of the horizontal divider
48
- * @cssproperty --mdc-divider-vertical-gradient - gradient of the vertical divider
49
- * @cssproperty --mdc-divider-text-size - font size of label in the text divider
50
- * @cssproperty --mdc-divider-text-color - font color of label in the text divider
51
- * @cssproperty --mdc-divider-text-margin - left and right margin of label in the text divider
52
- * @cssproperty --mdc-divider-text-line-height - line height of label in the text divider
53
- * @cssproperty --mdc-divider-grabber-button-background-color-normal - background color of the grabber button
54
- * in rest state
55
- * @cssproperty --mdc-divider-grabber-button-background-color-hover - background color of the grabber button
56
- * in hover state
57
- * @cssproperty --mdc-divider-grabber-button-background-color-pressed - background color of the grabber button
58
- * in pressed state
59
- * @cssproperty --mdc-divider-grabber-button-border-color - border color of the grabber button
60
- * @cssproperty --mdc-divider-grabber-button-border-radius - border radius of the grabber button
41
+ * @cssproperty --mdc-divider-background-color - Background color of the divider line.
42
+ * @cssproperty --mdc-divider-width - Width (thickness) of the divider line.
43
+ * @cssproperty --mdc-divider-horizontal-gradient - Gradient for horizontal dividers.
44
+ * @cssproperty --mdc-divider-vertical-gradient - Gradient for vertical dividers.
45
+ * @cssproperty --mdc-divider-text-size - Font size of the text label in text dividers.
46
+ * @cssproperty --mdc-divider-text-color - Font color of the text label in text dividers.
47
+ * @cssproperty --mdc-divider-text-margin - Left and right margin of the text label.
48
+ * @cssproperty --mdc-divider-text-line-height - Line height of the text label.
49
+ * @cssproperty --mdc-divider-grabber-button-background-color-normal - Background color of the grabber button in rest state.
50
+ * @cssproperty --mdc-divider-grabber-button-background-color-hover - Background color of the grabber button in hover state.
51
+ * @cssproperty --mdc-divider-grabber-button-background-color-pressed - Background color of the grabber button in pressed state.
52
+ * @cssproperty --mdc-divider-grabber-button-border-color - Border color of the grabber button.
53
+ * @cssproperty --mdc-divider-grabber-button-border-radius - Border radius of the grabber button.
54
+ *
55
+ * @slot - Content for the divider. Use `mdc-text` for text labels or `mdc-button` for grabber buttons.
61
56
  */
62
57
  class Divider extends Component {
63
58
  constructor() {
64
59
  super(...arguments);
65
60
  /**
66
- * Two orientations of divider
67
- * - **horizontal**: A thin, horizontal line with 0.0625rem width.
68
- * - **vertical**: A thin, vertical line with 0.0625rem width.
61
+ * Determines the orientation of the divider line.
62
+ * - **horizontal**: A thin horizontal line
63
+ * - **vertical**: A thin vertical line
69
64
  *
70
- * Note: We do not support "Vertical Text Divider" as of now.
65
+ * Note: Vertical text dividers are not currently supported.
71
66
  * @default horizontal
72
67
  */
73
68
  this.orientation = DEFAULTS.ORIENTATION;
74
69
  /**
75
- * Two variants of divider
76
- * - **solid**: Solid line.
77
- * - **gradient**: Gradient Line that fades on either sides of the divider.
70
+ * Visual style of the divider line.
71
+ * - **solid**: Solid line with uniform color
72
+ * - **gradient**: Gradient line that fades on both ends
78
73
  * @default solid
79
74
  */
80
75
  this.variant = DEFAULTS.VARIANT;
81
76
  /**
82
- * Direction of the arrow icon, if applicable.
83
- * - **positive**
84
- * - **negative**
77
+ * Direction of the arrow icon displayed on the grabber button.
78
+ * - **positive**: Up arrow (horizontal) or right arrow (vertical)
79
+ * - **negative**: Down arrow (horizontal) or left arrow (vertical)
85
80
  *
86
- * Note: Positive and Negative directions are defined based on Cartesian plane.
87
- * @default 'negative'
81
+ * Only applies when using a grabber button. Directions follow the Cartesian coordinate system.
82
+ * @default negative
88
83
  */
89
84
  this.arrowDirection = DEFAULTS.ARROW_DIRECTION;
90
85
  /**
91
- * Position of the button, if applicable.
92
- * - **positive**
93
- * - **negative**
86
+ * Position of the grabber button along the divider line.
87
+ * - **positive**: Right side (horizontal) or top side (vertical)
88
+ * - **negative**: Left side (horizontal) or bottom side (vertical)
94
89
  *
95
- * Note: Positive and Negative directions are defined based on Cartesian plane.
96
- * @default 'negative'
90
+ * Only applies when using a grabber button. Directions follow the Cartesian coordinate system.
91
+ * @default negative
97
92
  */
98
93
  this.buttonPosition = DEFAULTS.BUTTON_DIRECTION;
99
94
  }
@@ -2,28 +2,33 @@ import { CSSResult } from 'lit';
2
2
  import { Component } from '../../models';
3
3
  import type { MarkerVariants } from './marker.types';
4
4
  /**
5
- * `mdc-marker`, which is a vertical line and
6
- * used to draw attention to specific parts of
7
- * the content or to signify important information.
5
+ * The Marker component displays a vertical line (0.25rem wide) used to draw attention to specific content
6
+ * or signify important information. It provides visual emphasis through color and pattern variations.
8
7
  *
9
- * **Marker Variants**:
10
- * - **solid**: Solid marker.
11
- * - **striped**: Striped marker.
8
+ * Markers are commonly used alongside list items, cards, or content blocks to indicate status,
9
+ * priority, or categorization.
10
+ *
11
+ * ## When to use
12
+ * Use markers to highlight important content, indicate status or priority levels, or provide
13
+ * visual categorization in lists and layouts.
14
+ *
15
+ * ## Accessibility
16
+ * - Markers are purely decorative and should not convey information solely through color
17
+ * - Always pair markers with text labels or other indicators to convey meaning
18
+ * - Ensure sufficient color contrast for visibility
12
19
  *
13
20
  * @tagname mdc-marker
14
21
  *
15
- * @cssproperty --mdc-marker-solid-background-color - Allows customization of the default background color
16
- * in solid variant.
17
- * @cssproperty --mdc-marker-striped-color - Allows customization of the default stripes in striped variant.
18
- * @cssproperty --mdc-marker-striped-background-color - Allows customization of the default background color
19
- * in striped variant.
20
- * @cssproperty --mdc-marker-width - Allows customization of the default width.
22
+ * @cssproperty --mdc-marker-solid-background-color - Background color for solid variant markers.
23
+ * @cssproperty --mdc-marker-striped-color - Stripe color for striped variant markers.
24
+ * @cssproperty --mdc-marker-striped-background-color - Background color for striped variant markers.
25
+ * @cssproperty --mdc-marker-width - Width (thickness) of the marker line.
21
26
  */
22
27
  declare class Marker extends Component {
23
28
  /**
24
- * There are two variants of markers, each with a width of 0.25rem:
25
- * - **solid**: Solid marker.
26
- * - **striped**: Striped marker.
29
+ * Visual style of the marker.
30
+ * - **solid**: Solid colored vertical line
31
+ * - **striped**: Vertical line with diagonal stripes pattern
27
32
  * @default solid
28
33
  */
29
34
  variant: MarkerVariants;
@@ -12,30 +12,35 @@ import { Component } from '../../models';
12
12
  import styles from './marker.styles';
13
13
  import { MARKER_VARIANTS } from './marker.constants';
14
14
  /**
15
- * `mdc-marker`, which is a vertical line and
16
- * used to draw attention to specific parts of
17
- * the content or to signify important information.
15
+ * The Marker component displays a vertical line (0.25rem wide) used to draw attention to specific content
16
+ * or signify important information. It provides visual emphasis through color and pattern variations.
18
17
  *
19
- * **Marker Variants**:
20
- * - **solid**: Solid marker.
21
- * - **striped**: Striped marker.
18
+ * Markers are commonly used alongside list items, cards, or content blocks to indicate status,
19
+ * priority, or categorization.
20
+ *
21
+ * ## When to use
22
+ * Use markers to highlight important content, indicate status or priority levels, or provide
23
+ * visual categorization in lists and layouts.
24
+ *
25
+ * ## Accessibility
26
+ * - Markers are purely decorative and should not convey information solely through color
27
+ * - Always pair markers with text labels or other indicators to convey meaning
28
+ * - Ensure sufficient color contrast for visibility
22
29
  *
23
30
  * @tagname mdc-marker
24
31
  *
25
- * @cssproperty --mdc-marker-solid-background-color - Allows customization of the default background color
26
- * in solid variant.
27
- * @cssproperty --mdc-marker-striped-color - Allows customization of the default stripes in striped variant.
28
- * @cssproperty --mdc-marker-striped-background-color - Allows customization of the default background color
29
- * in striped variant.
30
- * @cssproperty --mdc-marker-width - Allows customization of the default width.
32
+ * @cssproperty --mdc-marker-solid-background-color - Background color for solid variant markers.
33
+ * @cssproperty --mdc-marker-striped-color - Stripe color for striped variant markers.
34
+ * @cssproperty --mdc-marker-striped-background-color - Background color for striped variant markers.
35
+ * @cssproperty --mdc-marker-width - Width (thickness) of the marker line.
31
36
  */
32
37
  class Marker extends Component {
33
38
  constructor() {
34
39
  super(...arguments);
35
40
  /**
36
- * There are two variants of markers, each with a width of 0.25rem:
37
- * - **solid**: Solid marker.
38
- * - **striped**: Striped marker.
41
+ * Visual style of the marker.
42
+ * - **solid**: Solid colored vertical line
43
+ * - **striped**: Vertical line with diagonal stripes pattern
39
44
  * @default solid
40
45
  */
41
46
  this.variant = MARKER_VARIANTS.SOLID;
@@ -2,25 +2,36 @@ import { CSSResult } from 'lit';
2
2
  import { Component } from '../../models';
3
3
  declare const StaticCheckbox_base: import("../../utils/mixins/index.types").Constructor<import("../../utils/mixins/DisabledMixin").DisabledMixinInterface> & typeof Component;
4
4
  /**
5
- * StaticCheckbox is a decorative component styled as a checkbox for visual presentation.
6
- * Unlike the interactive `mdc-checkbox`, this component does not handle user interactions or form submissions.
7
- * It is used purely for displaying checkbox states in read-only scenarios.
5
+ * The StaticCheckbox component is a decorative, non-interactive checkbox used for visual
6
+ * presentation in read-only scenarios. Unlike the interactive `mdc-checkbox`, it does not
7
+ * handle user interactions or form submissions.
8
8
  *
9
- * This component supports five display states: checked, indeterminate, disabled, readonly, and soft-disabled.
9
+ * This component supports multiple visual states: checked, indeterminate, disabled, readonly,
10
+ * and soft-disabled.
11
+ *
12
+ * ## When to use
13
+ * Use StaticCheckbox to display checkbox states in read-only contexts such as summary views,
14
+ * confirmation screens, or when showing historical form data. For interactive checkboxes, use
15
+ * `mdc-checkbox` instead.
16
+ *
17
+ * ## Accessibility
18
+ * - StaticCheckbox is decorative and non-interactive by design
19
+ * - Always pair with descriptive text labels in the default slot
20
+ * - Do not use this as a replacement for interactive checkboxes in forms
10
21
  *
11
22
  * @tagname mdc-staticcheckbox
12
23
  *
13
24
  * @dependency mdc-icon
14
25
  *
15
- * @cssproperty --mdc-staticcheckbox-border-color - The border color of the checkbox.
16
- * @cssproperty --mdc-staticcheckbox-background-color - The background color of the checkbox.
17
- * @cssproperty --mdc-staticcheckbox-icon-color - The icon color of the checkbox.
18
- * @cssproperty --mdc-staticcheckbox-size - The size of the checkbox.
26
+ * @cssproperty --mdc-staticcheckbox-border-color - Border color of the checkbox.
27
+ * @cssproperty --mdc-staticcheckbox-background-color - Background color of the checkbox.
28
+ * @cssproperty --mdc-staticcheckbox-icon-color - Icon color of the checkbox.
29
+ * @cssproperty --mdc-staticcheckbox-size - Size of the checkbox.
19
30
  *
20
- * @csspart icon-container - The container for the checkbox icon
21
- * @csspart checkbox-icon - The checkbox icon element
31
+ * @csspart icon-container - The container for the checkbox icon.
32
+ * @csspart checkbox-icon - The checkbox icon element.
22
33
  *
23
- * @slot - Default slot for adding label text
34
+ * @slot - Default slot for label text.
24
35
  */
25
36
  declare class StaticCheckbox extends StaticCheckbox_base {
26
37
  /**
@@ -14,25 +14,36 @@ import { DisabledMixin } from '../../utils/mixins/DisabledMixin';
14
14
  import styles from './staticcheckbox.styles';
15
15
  import { ICON_NAME } from './staticcheckbox.constants';
16
16
  /**
17
- * StaticCheckbox is a decorative component styled as a checkbox for visual presentation.
18
- * Unlike the interactive `mdc-checkbox`, this component does not handle user interactions or form submissions.
19
- * It is used purely for displaying checkbox states in read-only scenarios.
17
+ * The StaticCheckbox component is a decorative, non-interactive checkbox used for visual
18
+ * presentation in read-only scenarios. Unlike the interactive `mdc-checkbox`, it does not
19
+ * handle user interactions or form submissions.
20
20
  *
21
- * This component supports five display states: checked, indeterminate, disabled, readonly, and soft-disabled.
21
+ * This component supports multiple visual states: checked, indeterminate, disabled, readonly,
22
+ * and soft-disabled.
23
+ *
24
+ * ## When to use
25
+ * Use StaticCheckbox to display checkbox states in read-only contexts such as summary views,
26
+ * confirmation screens, or when showing historical form data. For interactive checkboxes, use
27
+ * `mdc-checkbox` instead.
28
+ *
29
+ * ## Accessibility
30
+ * - StaticCheckbox is decorative and non-interactive by design
31
+ * - Always pair with descriptive text labels in the default slot
32
+ * - Do not use this as a replacement for interactive checkboxes in forms
22
33
  *
23
34
  * @tagname mdc-staticcheckbox
24
35
  *
25
36
  * @dependency mdc-icon
26
37
  *
27
- * @cssproperty --mdc-staticcheckbox-border-color - The border color of the checkbox.
28
- * @cssproperty --mdc-staticcheckbox-background-color - The background color of the checkbox.
29
- * @cssproperty --mdc-staticcheckbox-icon-color - The icon color of the checkbox.
30
- * @cssproperty --mdc-staticcheckbox-size - The size of the checkbox.
38
+ * @cssproperty --mdc-staticcheckbox-border-color - Border color of the checkbox.
39
+ * @cssproperty --mdc-staticcheckbox-background-color - Background color of the checkbox.
40
+ * @cssproperty --mdc-staticcheckbox-icon-color - Icon color of the checkbox.
41
+ * @cssproperty --mdc-staticcheckbox-size - Size of the checkbox.
31
42
  *
32
- * @csspart icon-container - The container for the checkbox icon
33
- * @csspart checkbox-icon - The checkbox icon element
43
+ * @csspart icon-container - The container for the checkbox icon.
44
+ * @csspart checkbox-icon - The checkbox icon element.
34
45
  *
35
- * @slot - Default slot for adding label text
46
+ * @slot - Default slot for label text.
36
47
  */
37
48
  class StaticCheckbox extends DisabledMixin(Component) {
38
49
  constructor() {
@@ -2,23 +2,33 @@ import { CSSResult } from 'lit';
2
2
  import { Component } from '../../models';
3
3
  declare const StaticRadio_base: import("../../utils/mixins/index.types").Constructor<import("../../utils/mixins/DisabledMixin").DisabledMixinInterface> & typeof Component;
4
4
  /**
5
- * StaticRadio is a decorative component styled as a radio button for visual presentation.
6
- * Unlike the interactive `mdc-radio`, this component does not handle user interactions or form submissions.
7
- * It is used purely for displaying radio button states in read-only scenarios.
5
+ * The StaticRadio component is a decorative, non-interactive radio button used for visual
6
+ * presentation in read-only scenarios. Unlike the interactive `mdc-radio`, it does not
7
+ * handle user interactions or form submissions.
8
8
  *
9
- * This component supports four display states: checked, disabled, readonly, and soft-disabled.
9
+ * This component supports multiple visual states: checked, disabled, readonly, and soft-disabled.
10
+ *
11
+ * ## When to use
12
+ * Use StaticRadio to display radio button states in read-only contexts such as summary views,
13
+ * confirmation screens, or when showing historical form data. For interactive radio buttons, use
14
+ * `mdc-radio` instead.
15
+ *
16
+ * ## Accessibility
17
+ * - StaticRadio is decorative and non-interactive by design
18
+ * - Always pair with descriptive text labels in the default slot
19
+ * - Do not use this as a replacement for interactive radio buttons in forms
10
20
  *
11
21
  * @tagname mdc-staticradio
12
22
  *
13
- * @cssproperty --mdc-staticradio-inner-circle-size - The size of the inner circle when checked.
14
- * @cssproperty --mdc-staticradio-outer-circle-size - The size of the outer circle border.
15
- * @cssproperty --mdc-staticradio-inner-circle-background-color - The background color of the inner circle when checked.
16
- * @cssproperty --mdc-staticradio-outer-circle-border-color - The border color of the outer circle.
17
- * @cssproperty --mdc-staticradio-outer-circle-background-color - The background color of the outer circle.
23
+ * @cssproperty --mdc-staticradio-inner-circle-size - Size of the inner circle when checked.
24
+ * @cssproperty --mdc-staticradio-outer-circle-size - Size of the outer circle border.
25
+ * @cssproperty --mdc-staticradio-inner-circle-background-color - Background color of the inner circle when checked.
26
+ * @cssproperty --mdc-staticradio-outer-circle-border-color - Border color of the outer circle.
27
+ * @cssproperty --mdc-staticradio-outer-circle-background-color - Background color of the outer circle.
18
28
  *
19
- * @csspart radio-icon - The radio icon element
29
+ * @csspart radio-icon - The radio icon element.
20
30
  *
21
- * @slot - Default slot for the label of the radio
31
+ * @slot - Default slot for the label of the radio.
22
32
  */
23
33
  declare class StaticRadio extends StaticRadio_base {
24
34
  /**