@momentum-design/components 0.118.4 → 0.118.5
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 +65 -69
- package/dist/browser/index.js.map +2 -2
- package/dist/components/checkbox/checkbox.component.js +2 -2
- package/dist/components/checkbox/checkbox.styles.js +13 -8
- package/dist/components/combobox/combobox.component.js +1 -1
- package/dist/components/formfieldgroup/formfieldgroup.styles.js +0 -4
- package/dist/components/formfieldwrapper/formfieldwrapper.component.d.ts +2 -2
- package/dist/components/formfieldwrapper/formfieldwrapper.component.js +5 -7
- package/dist/components/formfieldwrapper/formfieldwrapper.styles.js +22 -16
- package/dist/components/progressbar/progressbar.styles.js +3 -5
- package/dist/components/radio/radio.component.js +2 -2
- package/dist/components/radio/radio.styles.js +8 -12
- package/dist/components/toggle/toggle.component.d.ts +0 -3
- package/dist/components/toggle/toggle.component.js +0 -3
- package/dist/components/toggle/toggle.styles.js +11 -14
- package/dist/custom-elements.json +205 -217
- package/dist/react/index.d.ts +1 -1
- package/dist/react/index.js +1 -1
- package/dist/react/toggle/index.d.ts +0 -3
- package/dist/react/toggle/index.js +0 -3
- package/package.json +1 -1
@@ -26,9 +26,6 @@ import type { Events } from '../../components/toggle/toggle.types';
|
|
26
26
|
* @cssproperty --mdc-toggle-height - Height of the toggle
|
27
27
|
* @cssproperty --mdc-toggle-width-compact - Width of the toggle when it's size is compact
|
28
28
|
* @cssproperty --mdc-toggle-height-compact - Height of the toggle when it's size is compact
|
29
|
-
* @cssproperty --mdc-toggle-label-lineheight - Line height of the toggle label
|
30
|
-
* @cssproperty --mdc-toggle-label-fontsize - Font size of the toggle label
|
31
|
-
* @cssproperty --mdc-toggle-label-fontweight - Font weight of the toggle label
|
32
29
|
* @cssproperty --mdc-toggle-label-color-disabled - Color of the toggle label and help text in disabled state
|
33
30
|
* @cssproperty --mdc-toggle-help-text-color - Color of the help text label
|
34
31
|
* @cssproperty --mdc-toggle-active-hover-color - Background color of the active toggle in hover state
|
@@ -27,9 +27,6 @@ import { TAG_NAME } from '../../components/toggle/toggle.constants';
|
|
27
27
|
* @cssproperty --mdc-toggle-height - Height of the toggle
|
28
28
|
* @cssproperty --mdc-toggle-width-compact - Width of the toggle when it's size is compact
|
29
29
|
* @cssproperty --mdc-toggle-height-compact - Height of the toggle when it's size is compact
|
30
|
-
* @cssproperty --mdc-toggle-label-lineheight - Line height of the toggle label
|
31
|
-
* @cssproperty --mdc-toggle-label-fontsize - Font size of the toggle label
|
32
|
-
* @cssproperty --mdc-toggle-label-fontweight - Font weight of the toggle label
|
33
30
|
* @cssproperty --mdc-toggle-label-color-disabled - Color of the toggle label and help text in disabled state
|
34
31
|
* @cssproperty --mdc-toggle-help-text-color - Color of the help text label
|
35
32
|
* @cssproperty --mdc-toggle-active-hover-color - Background color of the active toggle in hover state
|