@momentum-design/components 0.129.25 → 0.129.27

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 (33) hide show
  1. package/dist/browser/index.js +230 -213
  2. package/dist/browser/index.js.map +3 -3
  3. package/dist/components/announcementdialog/announcementdialog.component.d.ts +4 -9
  4. package/dist/components/announcementdialog/announcementdialog.component.js +4 -9
  5. package/dist/components/buttonlink/buttonlink.component.d.ts +1 -0
  6. package/dist/components/buttonlink/buttonlink.component.js +23 -0
  7. package/dist/components/checkbox/checkbox.component.d.ts +39 -39
  8. package/dist/components/checkbox/checkbox.component.js +39 -39
  9. package/dist/components/checkbox/checkbox.styles.js +10 -10
  10. package/dist/components/chip/chip.component.d.ts +7 -6
  11. package/dist/components/chip/chip.component.js +4 -12
  12. package/dist/components/dialog/dialog.constants.js +6 -4
  13. package/dist/components/linksimple/linksimple.component.d.ts +8 -0
  14. package/dist/components/linksimple/linksimple.component.js +2 -1
  15. package/dist/components/select/select.styles.js +0 -1
  16. package/dist/components/staticcheckbox/staticcheckbox.component.d.ts +19 -19
  17. package/dist/components/staticcheckbox/staticcheckbox.component.js +19 -19
  18. package/dist/components/staticcheckbox/staticcheckbox.styles.js +29 -29
  19. package/dist/components/staticchip/staticchip.component.d.ts +6 -4
  20. package/dist/components/staticchip/staticchip.component.js +3 -10
  21. package/dist/components/statictoggle/statictoggle.styles.js +1 -1
  22. package/dist/custom-elements.json +239 -251
  23. package/dist/react/announcementdialog/index.d.ts +4 -9
  24. package/dist/react/announcementdialog/index.js +4 -9
  25. package/dist/react/checkbox/index.d.ts +19 -26
  26. package/dist/react/checkbox/index.js +19 -26
  27. package/dist/react/chip/index.d.ts +3 -4
  28. package/dist/react/chip/index.js +3 -4
  29. package/dist/react/staticcheckbox/index.d.ts +11 -11
  30. package/dist/react/staticcheckbox/index.js +11 -11
  31. package/dist/react/staticchip/index.d.ts +2 -2
  32. package/dist/react/staticchip/index.js +2 -2
  33. package/package.json +1 -1
@@ -16,16 +16,11 @@ import type { Events as EventsInherited } from '../../components/dialog/dialog.t
16
16
  * Use the `onClose` event to handle the close action of the dialog (fired when Close button is clicked
17
17
  * or Escape is pressed).
18
18
  *
19
- * **Accessibility notes for consuming (have to be explicitly set when you consume the component)**
19
+ * ## Accessibility
20
+ * - You have to be explicitly set the following attributes:
21
+ * * The dialog should have an aria-label or aria-labelledby attribute to provide a label for screen readers.
22
+ * * Use aria-labelledby to reference the ID of the element that labels the dialog when there is no visible title.
20
23
  *
21
- * - The dialog should have an aria-label or aria-labelledby attribute to provide a label for screen readers.
22
- * - Use aria-labelledby to reference the ID of the element that labels the dialog when there is no visible title.
23
- *
24
- * **Note: Programmatic show/hide requires the ? prefix on the visible attribute**
25
- * - Use `?visible=true/false` as an attribute instead of `visible=true/false`
26
- * - Reference docs for more info: https://lit.dev/docs/templates/expressions/#boolean-attribute-expressions
27
- *
28
- * @dependency mdc-button
29
24
  * @dependency mdc-illustration
30
25
  * @dependency mdc-text
31
26
  *
@@ -17,16 +17,11 @@ import { TAG_NAME } from '../../components/announcementdialog/announcementdialog
17
17
  * Use the `onClose` event to handle the close action of the dialog (fired when Close button is clicked
18
18
  * or Escape is pressed).
19
19
  *
20
- * **Accessibility notes for consuming (have to be explicitly set when you consume the component)**
20
+ * ## Accessibility
21
+ * - You have to be explicitly set the following attributes:
22
+ * * The dialog should have an aria-label or aria-labelledby attribute to provide a label for screen readers.
23
+ * * Use aria-labelledby to reference the ID of the element that labels the dialog when there is no visible title.
21
24
  *
22
- * - The dialog should have an aria-label or aria-labelledby attribute to provide a label for screen readers.
23
- * - Use aria-labelledby to reference the ID of the element that labels the dialog when there is no visible title.
24
- *
25
- * **Note: Programmatic show/hide requires the ? prefix on the visible attribute**
26
- * - Use `?visible=true/false` as an attribute instead of `visible=true/false`
27
- * - Reference docs for more info: https://lit.dev/docs/templates/expressions/#boolean-attribute-expressions
28
- *
29
- * @dependency mdc-button
30
25
  * @dependency mdc-illustration
31
26
  * @dependency mdc-text
32
27
  *
@@ -2,12 +2,25 @@ import { type EventName } from '@lit/react';
2
2
  import Component from '../../components/checkbox';
3
3
  import type { Events } from '../../components/checkbox/checkbox.types';
4
4
  /**
5
- * Checkboxes allow users to select multiple options from a list or turn an item/feature on or off.
6
- * These are often used in forms, settings, and selections in lists.
5
+ * The Checkbox component allows users to select one or multiple options from a list, toggle features on/off,
6
+ * or indicate agreement in forms and settings. These are commonly used in forms, lists, and settings panels
7
+ * where users need to make selections or express preferences.
7
8
  *
8
- * A checkbox component contains an optional label and an optional helper text.
9
+ * To create a group of checkboxes, use the `mdc-formfieldgroup` component.
9
10
  *
10
- * To create a group of checkboxes, use the FormFieldGroup component.
11
+ * **Note:** This component internally renders a native checkbox input element with custom styling.
12
+ *
13
+ * ## When to use
14
+ * Use checkboxes when users can select multiple options from a list, or when a single checkbox represents a binary choice (e.g., agreeing to terms).
15
+ *
16
+ * ## Accessibility
17
+ * - Provide clear labels that describe what the checkbox controls
18
+ * - Use `data-aria-label` when a visual label is not present
19
+ * - Keyboard navigation: Space to toggle, Tab to navigate, Enter to submit form
20
+ *
21
+ * ## Styling
22
+ * Use the `static-checkbox` part to apply custom styles to the checkbox visual element.
23
+ * This part exposes the underlying [StaticCheckbox](?path=/docs/components-decorator-staticcheckbox--docs) component for advanced styling.
11
24
  *
12
25
  * @dependency mdc-button
13
26
  * @dependency mdc-icon
@@ -20,26 +33,6 @@ import type { Events } from '../../components/checkbox/checkbox.types';
20
33
  * @event change - (React: onChange) Event that gets dispatched when the checkbox state changes.
21
34
  * @event focus - (React: onFocus) Event that gets dispatched when the checkbox receives focus.
22
35
  *
23
- * @cssproperty --mdc-checkbox-background-color-hover - Allows customization of the background color on hover.
24
- * @cssproperty --mdc-checkbox-checked-background-color-hover - Background color for a selected checkbox when hovered.
25
- * @cssproperty --mdc-checkbox-checked-pressed-icon-color - Background color for a selected checkbox when pressed.
26
- * @cssproperty --mdc-checkbox-pressed-icon-color - Background color for a selected checkbox when pressed.
27
- * @cssproperty --mdc-checkbox-disabled-checked-icon-color - Background color for a selected checkbox when disabled.
28
- * @cssproperty --mdc-label-font-size - Font size for the label text.
29
- * @cssproperty --mdc-label-font-weight - Font weight for the label text.
30
- * @cssproperty --mdc-label-line-height - Line height for the label text.
31
- * @cssproperty --mdc-label-color - Color for the label text.
32
- * @cssproperty --mdc-help-text-font-size - Font size for the help text.
33
- * @cssproperty --mdc-help-text-font-weight - Font weight for the help text.
34
- * @cssproperty --mdc-help-text-line-height - Line height for the help text.
35
- * @cssproperty --mdc-help-text-color - Color for the help text.
36
- * @cssproperty --mdc-required-indicator-color - Color for the required indicator text.
37
- *
38
- * @slot label - Slot for the label element. If not provided, the `label` property will be used to render the label.
39
- * @slot toggletip - Slot for the toggletip info icon button. If not provided, the `toggletip-text` property will be used to render the info icon button and toggletip.
40
- * @slot help-icon - Slot for the helper/validation icon. If not provided, the icon will be rendered based on the `helpTextType` property.
41
- * @slot help-text - Slot for the helper/validation text. If not provided, the `helpText` property will be used to render the helper/validation text.
42
- *
43
36
  * @csspart label - The label element.
44
37
  * @csspart label-text - The container for the label and required indicator elements.
45
38
  * @csspart required-indicator - The required indicator element that is displayed next to the label when the `required` property is set to true.
@@ -48,9 +41,9 @@ import type { Events } from '../../components/checkbox/checkbox.types';
48
41
  * @csspart help-text - The helper/validation text element.
49
42
  * @csspart helper-icon - The helper/validation icon element that is displayed next to the helper/validation text.
50
43
  * @csspart help-text-container - The container for the helper/validation icon and text elements.
51
- * @csspart checkbox-input - The native checkbox input element.
44
+ * @csspart checkbox-input - The native checkbox input element that provides the interactive functionality.
52
45
  * @csspart text-container - The container for the label and helper text elements.
53
- * @csspart static-checkbox - The static checkbox element.
46
+ * @csspart static-checkbox - The staticcheckbox that provides the visual checkbox appearance.
54
47
  */
55
48
  declare const reactWrapper: import("@lit/react").ReactWebComponent<Component, {
56
49
  onChange: EventName<Events["onChangeEvent"]>;
@@ -3,12 +3,25 @@ import { createComponent } from '@lit/react';
3
3
  import Component from '../../components/checkbox';
4
4
  import { TAG_NAME } from '../../components/checkbox/checkbox.constants';
5
5
  /**
6
- * Checkboxes allow users to select multiple options from a list or turn an item/feature on or off.
7
- * These are often used in forms, settings, and selections in lists.
6
+ * The Checkbox component allows users to select one or multiple options from a list, toggle features on/off,
7
+ * or indicate agreement in forms and settings. These are commonly used in forms, lists, and settings panels
8
+ * where users need to make selections or express preferences.
8
9
  *
9
- * A checkbox component contains an optional label and an optional helper text.
10
+ * To create a group of checkboxes, use the `mdc-formfieldgroup` component.
10
11
  *
11
- * To create a group of checkboxes, use the FormFieldGroup component.
12
+ * **Note:** This component internally renders a native checkbox input element with custom styling.
13
+ *
14
+ * ## When to use
15
+ * Use checkboxes when users can select multiple options from a list, or when a single checkbox represents a binary choice (e.g., agreeing to terms).
16
+ *
17
+ * ## Accessibility
18
+ * - Provide clear labels that describe what the checkbox controls
19
+ * - Use `data-aria-label` when a visual label is not present
20
+ * - Keyboard navigation: Space to toggle, Tab to navigate, Enter to submit form
21
+ *
22
+ * ## Styling
23
+ * Use the `static-checkbox` part to apply custom styles to the checkbox visual element.
24
+ * This part exposes the underlying [StaticCheckbox](?path=/docs/components-decorator-staticcheckbox--docs) component for advanced styling.
12
25
  *
13
26
  * @dependency mdc-button
14
27
  * @dependency mdc-icon
@@ -21,26 +34,6 @@ import { TAG_NAME } from '../../components/checkbox/checkbox.constants';
21
34
  * @event change - (React: onChange) Event that gets dispatched when the checkbox state changes.
22
35
  * @event focus - (React: onFocus) Event that gets dispatched when the checkbox receives focus.
23
36
  *
24
- * @cssproperty --mdc-checkbox-background-color-hover - Allows customization of the background color on hover.
25
- * @cssproperty --mdc-checkbox-checked-background-color-hover - Background color for a selected checkbox when hovered.
26
- * @cssproperty --mdc-checkbox-checked-pressed-icon-color - Background color for a selected checkbox when pressed.
27
- * @cssproperty --mdc-checkbox-pressed-icon-color - Background color for a selected checkbox when pressed.
28
- * @cssproperty --mdc-checkbox-disabled-checked-icon-color - Background color for a selected checkbox when disabled.
29
- * @cssproperty --mdc-label-font-size - Font size for the label text.
30
- * @cssproperty --mdc-label-font-weight - Font weight for the label text.
31
- * @cssproperty --mdc-label-line-height - Line height for the label text.
32
- * @cssproperty --mdc-label-color - Color for the label text.
33
- * @cssproperty --mdc-help-text-font-size - Font size for the help text.
34
- * @cssproperty --mdc-help-text-font-weight - Font weight for the help text.
35
- * @cssproperty --mdc-help-text-line-height - Line height for the help text.
36
- * @cssproperty --mdc-help-text-color - Color for the help text.
37
- * @cssproperty --mdc-required-indicator-color - Color for the required indicator text.
38
- *
39
- * @slot label - Slot for the label element. If not provided, the `label` property will be used to render the label.
40
- * @slot toggletip - Slot for the toggletip info icon button. If not provided, the `toggletip-text` property will be used to render the info icon button and toggletip.
41
- * @slot help-icon - Slot for the helper/validation icon. If not provided, the icon will be rendered based on the `helpTextType` property.
42
- * @slot help-text - Slot for the helper/validation text. If not provided, the `helpText` property will be used to render the helper/validation text.
43
- *
44
37
  * @csspart label - The label element.
45
38
  * @csspart label-text - The container for the label and required indicator elements.
46
39
  * @csspart required-indicator - The required indicator element that is displayed next to the label when the `required` property is set to true.
@@ -49,9 +42,9 @@ import { TAG_NAME } from '../../components/checkbox/checkbox.constants';
49
42
  * @csspart help-text - The helper/validation text element.
50
43
  * @csspart helper-icon - The helper/validation icon element that is displayed next to the helper/validation text.
51
44
  * @csspart help-text-container - The container for the helper/validation icon and text elements.
52
- * @csspart checkbox-input - The native checkbox input element.
45
+ * @csspart checkbox-input - The native checkbox input element that provides the interactive functionality.
53
46
  * @csspart text-container - The container for the label and helper text elements.
54
- * @csspart static-checkbox - The static checkbox element.
47
+ * @csspart static-checkbox - The staticcheckbox that provides the visual checkbox appearance.
55
48
  */
56
49
  const reactWrapper = createComponent({
57
50
  tagName: TAG_NAME,
@@ -5,11 +5,11 @@ import type { Events as EventsInherited } from '../../components/buttonsimple/bu
5
5
  * mdc-chip is an interactive element that can be used to represent a chip. It supports a leading icon along with label.
6
6
  * Consumers can wrap this component around a tooltip to provide additional context.
7
7
  *
8
- * It is recommended to keep the label text for the chip component concise and compact.
8
+ * It is recommended to keep the label text for the chip component concise and compact.<br/>
9
9
  * For best results, we recommend limiting the <b>maximum length of the label text to 20 characters</b>,
10
10
  * including empty spaces to split words.
11
11
  *
12
- * This component is built by extending Buttonsimple.
12
+ * This component is built by extending `Buttonsimple`.
13
13
  *
14
14
  * @tagname mdc-chip
15
15
  *
@@ -19,15 +19,14 @@ import type { Events as EventsInherited } from '../../components/buttonsimple/bu
19
19
  * @cssproperty --mdc-chip-color - The color of the chip.
20
20
  * @cssproperty --mdc-chip-border-color - The border color of the chip.
21
21
  * @cssproperty --mdc-chip-background-color - The background color of the chip.
22
- * @cssproperty --mdc-button-height - Height for button size
23
22
  *
23
+ * @csspart icon - The icon part of the chip.
24
24
  * @csspart label - The label part of the chip.
25
25
  *
26
26
  * @event click - (React: onClick) This event is dispatched when the chip is clicked.
27
27
  * @event keydown - (React: onKeyDown) This event is dispatched when a key is pressed down on the chip.
28
28
  * @event keyup - (React: onKeyUp) This event is dispatched when a key is released on the chip.
29
29
  * @event focus - (React: onFocus) This event is dispatched when the chip receives focus.
30
- *
31
30
  */
32
31
  declare const reactWrapper: import("@lit/react").ReactWebComponent<Component, {
33
32
  onClick: EventName<EventsInherited["onClickEvent"]>;
@@ -6,11 +6,11 @@ import { TAG_NAME } from '../../components/chip/chip.constants';
6
6
  * mdc-chip is an interactive element that can be used to represent a chip. It supports a leading icon along with label.
7
7
  * Consumers can wrap this component around a tooltip to provide additional context.
8
8
  *
9
- * It is recommended to keep the label text for the chip component concise and compact.
9
+ * It is recommended to keep the label text for the chip component concise and compact.<br/>
10
10
  * For best results, we recommend limiting the <b>maximum length of the label text to 20 characters</b>,
11
11
  * including empty spaces to split words.
12
12
  *
13
- * This component is built by extending Buttonsimple.
13
+ * This component is built by extending `Buttonsimple`.
14
14
  *
15
15
  * @tagname mdc-chip
16
16
  *
@@ -20,15 +20,14 @@ import { TAG_NAME } from '../../components/chip/chip.constants';
20
20
  * @cssproperty --mdc-chip-color - The color of the chip.
21
21
  * @cssproperty --mdc-chip-border-color - The border color of the chip.
22
22
  * @cssproperty --mdc-chip-background-color - The background color of the chip.
23
- * @cssproperty --mdc-button-height - Height for button size
24
23
  *
24
+ * @csspart icon - The icon part of the chip.
25
25
  * @csspart label - The label part of the chip.
26
26
  *
27
27
  * @event click - (React: onClick) This event is dispatched when the chip is clicked.
28
28
  * @event keydown - (React: onKeyDown) This event is dispatched when a key is pressed down on the chip.
29
29
  * @event keyup - (React: onKeyUp) This event is dispatched when a key is released on the chip.
30
30
  * @event focus - (React: onFocus) This event is dispatched when the chip receives focus.
31
- *
32
31
  */
33
32
  const reactWrapper = createComponent({
34
33
  tagName: TAG_NAME,
@@ -1,24 +1,24 @@
1
1
  import Component from '../../components/staticcheckbox';
2
2
  /**
3
- * This is a decorative component that is styled to look as a checkbox.
3
+ * StaticCheckbox is a decorative component styled as a checkbox for visual presentation.
4
+ * Unlike the interactive `mdc-checkbox`, this component does not handle user interactions or form submissions.
5
+ * It is used purely for displaying checkbox states in read-only scenarios.
4
6
  *
5
- * It has 5 properties - checked, indeterminate, disabled, readonly and soft-disabled.
6
- *
7
- * We are using the same styling that has been created for the `mdc-checkbox` component.
7
+ * This component supports five display states: checked, indeterminate, disabled, readonly, and soft-disabled.
8
8
  *
9
9
  * @tagname mdc-staticcheckbox
10
10
  *
11
11
  * @dependency mdc-icon
12
12
  *
13
- * @cssproperty --mdc-checkbox-border-color - Controls the border color of the checkbox.
14
- * @cssproperty --mdc-checkbox-background-color - Controls the background color of the checkbox.
15
- * @cssproperty --mdc-checkbox-icon-color - Controls the icon color of the checkbox.
16
- * @cssproperty --mdc-checkbox-size - Controls the size of the checkbox.
13
+ * @cssproperty --mdc-staticcheckbox-border-color - The border color of the checkbox.
14
+ * @cssproperty --mdc-staticcheckbox-background-color - The background color of the checkbox.
15
+ * @cssproperty --mdc-staticcheckbox-icon-color - The icon color of the checkbox.
16
+ * @cssproperty --mdc-staticcheckbox-size - The size of the checkbox.
17
17
  *
18
- * @csspart icon-container - The container for the checkbox icon.
19
- * @csspart checkbox-icon - The checkbox icon.
18
+ * @csspart icon-container - The container for the checkbox icon
19
+ * @csspart checkbox-icon - The checkbox icon element
20
20
  *
21
- * @slot - Default slot for adding label text.
21
+ * @slot - Default slot for adding label text
22
22
  */
23
23
  declare const reactWrapper: import("@lit/react").ReactWebComponent<Component, {}>;
24
24
  export default reactWrapper;
@@ -3,25 +3,25 @@ import { createComponent } from '@lit/react';
3
3
  import Component from '../../components/staticcheckbox';
4
4
  import { TAG_NAME } from '../../components/staticcheckbox/staticcheckbox.constants';
5
5
  /**
6
- * This is a decorative component that is styled to look as a checkbox.
6
+ * StaticCheckbox is a decorative component styled as a checkbox for visual presentation.
7
+ * Unlike the interactive `mdc-checkbox`, this component does not handle user interactions or form submissions.
8
+ * It is used purely for displaying checkbox states in read-only scenarios.
7
9
  *
8
- * It has 5 properties - checked, indeterminate, disabled, readonly and soft-disabled.
9
- *
10
- * We are using the same styling that has been created for the `mdc-checkbox` component.
10
+ * This component supports five display states: checked, indeterminate, disabled, readonly, and soft-disabled.
11
11
  *
12
12
  * @tagname mdc-staticcheckbox
13
13
  *
14
14
  * @dependency mdc-icon
15
15
  *
16
- * @cssproperty --mdc-checkbox-border-color - Controls the border color of the checkbox.
17
- * @cssproperty --mdc-checkbox-background-color - Controls the background color of the checkbox.
18
- * @cssproperty --mdc-checkbox-icon-color - Controls the icon color of the checkbox.
19
- * @cssproperty --mdc-checkbox-size - Controls the size of the checkbox.
16
+ * @cssproperty --mdc-staticcheckbox-border-color - The border color of the checkbox.
17
+ * @cssproperty --mdc-staticcheckbox-background-color - The background color of the checkbox.
18
+ * @cssproperty --mdc-staticcheckbox-icon-color - The icon color of the checkbox.
19
+ * @cssproperty --mdc-staticcheckbox-size - The size of the checkbox.
20
20
  *
21
- * @csspart icon-container - The container for the checkbox icon.
22
- * @csspart checkbox-icon - The checkbox icon.
21
+ * @csspart icon-container - The container for the checkbox icon
22
+ * @csspart checkbox-icon - The checkbox icon element
23
23
  *
24
- * @slot - Default slot for adding label text.
24
+ * @slot - Default slot for adding label text
25
25
  */
26
26
  const reactWrapper = createComponent({
27
27
  tagName: TAG_NAME,
@@ -2,10 +2,9 @@ import Component from '../../components/staticchip';
2
2
  /**
3
3
  * mdc-staticchip is an static element that can be used to represent a chip. It supports a leading icon along with label.
4
4
  *
5
- * It is recommended to keep the label text for the chip component concise and compact.
5
+ * It is recommended to keep the label text for the chip component concise and compact.<br/>
6
6
  * For best results, we recommend limiting the <b>maximum length of the label text to 20 characters</b>, including empty spaces to split words.
7
7
  *
8
- *
9
8
  * @tagname mdc-staticchip
10
9
  *
11
10
  * @dependency mdc-icon
@@ -16,6 +15,7 @@ import Component from '../../components/staticchip';
16
15
  * @cssproperty --mdc-chip-background-color - The background color of the static chip.
17
16
  *
18
17
  * @csspart label - The label of the static chip.
18
+ * @csspart icon - The icon of the static chip.
19
19
  */
20
20
  declare const reactWrapper: import("@lit/react").ReactWebComponent<Component, {}>;
21
21
  export default reactWrapper;
@@ -5,10 +5,9 @@ import { TAG_NAME } from '../../components/staticchip/staticchip.constants';
5
5
  /**
6
6
  * mdc-staticchip is an static element that can be used to represent a chip. It supports a leading icon along with label.
7
7
  *
8
- * It is recommended to keep the label text for the chip component concise and compact.
8
+ * It is recommended to keep the label text for the chip component concise and compact.<br/>
9
9
  * For best results, we recommend limiting the <b>maximum length of the label text to 20 characters</b>, including empty spaces to split words.
10
10
  *
11
- *
12
11
  * @tagname mdc-staticchip
13
12
  *
14
13
  * @dependency mdc-icon
@@ -19,6 +18,7 @@ import { TAG_NAME } from '../../components/staticchip/staticchip.constants';
19
18
  * @cssproperty --mdc-chip-background-color - The background color of the static chip.
20
19
  *
21
20
  * @csspart label - The label of the static chip.
21
+ * @csspart icon - The icon of the static chip.
22
22
  */
23
23
  const reactWrapper = createComponent({
24
24
  tagName: TAG_NAME,
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@momentum-design/components",
3
3
  "packageManager": "yarn@3.2.4",
4
- "version": "0.129.25",
4
+ "version": "0.129.27",
5
5
  "engines": {
6
6
  "node": ">=20.0.0",
7
7
  "npm": ">=8.0.0"