@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.
- package/dist/browser/index.js +428 -282
- package/dist/browser/index.js.map +3 -3
- package/dist/components/checkbox/checkbox.component.d.ts +1 -1
- package/dist/components/checkbox/checkbox.component.js +8 -2
- package/dist/components/checkbox/checkbox.styles.js +62 -40
- package/dist/components/combobox/combobox.component.d.ts +0 -5
- package/dist/components/combobox/combobox.component.js +0 -9
- package/dist/components/formfieldwrapper/formfieldwrapper.component.d.ts +10 -0
- package/dist/components/formfieldwrapper/formfieldwrapper.component.js +21 -1
- package/dist/components/input/input.component.d.ts +0 -4
- package/dist/components/input/input.component.js +0 -8
- package/dist/components/menuitemcheckbox/menuitemcheckbox.component.js +2 -0
- package/dist/components/menuitemradio/menuitemradio.component.js +1 -0
- package/dist/components/radio/radio.component.d.ts +0 -6
- package/dist/components/radio/radio.component.js +5 -11
- package/dist/components/radio/radio.styles.js +70 -34
- package/dist/components/select/select.component.d.ts +0 -13
- package/dist/components/select/select.component.js +0 -13
- package/dist/components/staticcheckbox/staticcheckbox.component.d.ts +13 -1
- package/dist/components/staticcheckbox/staticcheckbox.component.js +21 -1
- package/dist/components/staticcheckbox/staticcheckbox.styles.js +30 -7
- package/dist/components/staticradio/staticradio.component.d.ts +7 -1
- package/dist/components/staticradio/staticradio.component.js +11 -1
- package/dist/components/staticradio/staticradio.styles.js +16 -9
- package/dist/components/statictoggle/statictoggle.component.d.ts +13 -1
- package/dist/components/statictoggle/statictoggle.component.js +21 -1
- package/dist/components/statictoggle/statictoggle.styles.js +24 -4
- package/dist/components/textarea/textarea.component.d.ts +0 -5
- package/dist/components/textarea/textarea.component.js +0 -9
- package/dist/components/toggle/toggle.component.d.ts +1 -1
- package/dist/components/toggle/toggle.component.js +9 -3
- package/dist/components/toggle/toggle.styles.js +47 -20
- package/dist/custom-elements.json +876 -178
- package/dist/react/staticcheckbox/index.d.ts +1 -1
- package/dist/react/staticcheckbox/index.js +1 -1
- package/dist/react/staticradio/index.d.ts +1 -1
- package/dist/react/staticradio/index.js +1 -1
- package/dist/react/statictoggle/index.d.ts +1 -1
- package/dist/react/statictoggle/index.js +1 -1
- 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
|
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
|
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
|
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
|
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
|
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
|
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
|