@momentum-design/components 0.120.14 → 0.120.16

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 (40) hide show
  1. package/dist/browser/index.js +428 -282
  2. package/dist/browser/index.js.map +3 -3
  3. package/dist/components/checkbox/checkbox.component.d.ts +1 -1
  4. package/dist/components/checkbox/checkbox.component.js +8 -2
  5. package/dist/components/checkbox/checkbox.styles.js +62 -40
  6. package/dist/components/combobox/combobox.component.d.ts +0 -5
  7. package/dist/components/combobox/combobox.component.js +0 -9
  8. package/dist/components/formfieldwrapper/formfieldwrapper.component.d.ts +10 -0
  9. package/dist/components/formfieldwrapper/formfieldwrapper.component.js +21 -1
  10. package/dist/components/input/input.component.d.ts +0 -4
  11. package/dist/components/input/input.component.js +0 -8
  12. package/dist/components/menuitemcheckbox/menuitemcheckbox.component.js +2 -0
  13. package/dist/components/menuitemradio/menuitemradio.component.js +1 -0
  14. package/dist/components/radio/radio.component.d.ts +0 -6
  15. package/dist/components/radio/radio.component.js +5 -11
  16. package/dist/components/radio/radio.styles.js +70 -34
  17. package/dist/components/select/select.component.d.ts +0 -13
  18. package/dist/components/select/select.component.js +0 -13
  19. package/dist/components/staticcheckbox/staticcheckbox.component.d.ts +13 -1
  20. package/dist/components/staticcheckbox/staticcheckbox.component.js +21 -1
  21. package/dist/components/staticcheckbox/staticcheckbox.styles.js +30 -7
  22. package/dist/components/staticradio/staticradio.component.d.ts +7 -1
  23. package/dist/components/staticradio/staticradio.component.js +11 -1
  24. package/dist/components/staticradio/staticradio.styles.js +16 -9
  25. package/dist/components/statictoggle/statictoggle.component.d.ts +13 -1
  26. package/dist/components/statictoggle/statictoggle.component.js +21 -1
  27. package/dist/components/statictoggle/statictoggle.styles.js +24 -4
  28. package/dist/components/textarea/textarea.component.d.ts +0 -5
  29. package/dist/components/textarea/textarea.component.js +0 -9
  30. package/dist/components/toggle/toggle.component.d.ts +1 -1
  31. package/dist/components/toggle/toggle.component.js +9 -3
  32. package/dist/components/toggle/toggle.styles.js +47 -20
  33. package/dist/custom-elements.json +876 -178
  34. package/dist/react/staticcheckbox/index.d.ts +1 -1
  35. package/dist/react/staticcheckbox/index.js +1 -1
  36. package/dist/react/staticradio/index.d.ts +1 -1
  37. package/dist/react/staticradio/index.js +1 -1
  38. package/dist/react/statictoggle/index.d.ts +1 -1
  39. package/dist/react/statictoggle/index.js +1 -1
  40. package/package.json +1 -1
@@ -2,7 +2,7 @@ import Component from '../../components/staticcheckbox';
2
2
  /**
3
3
  * This is a decorative component that is styled to look as a checkbox.
4
4
  *
5
- * It has 3 properties - checked, indeterminate and disabled.
5
+ * It has 5 properties - checked, indeterminate, disabled, readonly and soft-disabled.
6
6
  *
7
7
  * We are using the same styling that has been created for the `mdc-checkbox` component.
8
8
  *
@@ -5,7 +5,7 @@ import { TAG_NAME } from '../../components/staticcheckbox/staticcheckbox.constan
5
5
  /**
6
6
  * This is a decorative component that is styled to look as a checkbox.
7
7
  *
8
- * It has 3 properties - checked, indeterminate and disabled.
8
+ * It has 5 properties - checked, indeterminate, disabled, readonly and soft-disabled.
9
9
  *
10
10
  * We are using the same styling that has been created for the `mdc-checkbox` component.
11
11
  *
@@ -1,7 +1,7 @@
1
1
  import Component from '../../components/staticradio';
2
2
  /**
3
3
  * This is a decorative component that is styled to look as a radio.
4
- * It has 2 properties - checked and disabled.
4
+ * It has 4 properties - checked, disabled, readonly and soft-disabled.
5
5
  *
6
6
  * We are using the same styling that has been created for the `mdc-radio` component.
7
7
  *
@@ -4,7 +4,7 @@ import Component from '../../components/staticradio';
4
4
  import { TAG_NAME } from '../../components/staticradio/staticradio.constants';
5
5
  /**
6
6
  * This is a decorative component that is styled to look as a radio.
7
- * It has 2 properties - checked and disabled.
7
+ * It has 4 properties - checked, disabled, readonly and soft-disabled.
8
8
  *
9
9
  * We are using the same styling that has been created for the `mdc-radio` component.
10
10
  *
@@ -1,7 +1,7 @@
1
1
  import Component from '../../components/statictoggle';
2
2
  /**
3
3
  * This is a decorative component that is styled to look as a toggle. <br/>
4
- * It has 3 properties - checked, size and disabled. <br/>
4
+ * It has 5 properties - checked, size, disabled, readonly and soft-disabled. <br/>
5
5
  * We are using the same styling that has been created for the `mdc-toggle` component.
6
6
  *
7
7
  * @dependency mdc-icon
@@ -4,7 +4,7 @@ import Component from '../../components/statictoggle';
4
4
  import { TAG_NAME } from '../../components/statictoggle/statictoggle.constants';
5
5
  /**
6
6
  * This is a decorative component that is styled to look as a toggle. <br/>
7
- * It has 3 properties - checked, size and disabled. <br/>
7
+ * It has 5 properties - checked, size, disabled, readonly and soft-disabled. <br/>
8
8
  * We are using the same styling that has been created for the `mdc-toggle` component.
9
9
  *
10
10
  * @dependency mdc-icon
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.120.14",
4
+ "version": "0.120.16",
5
5
  "engines": {
6
6
  "node": ">=20.0.0",
7
7
  "npm": ">=8.0.0"