@momentum-design/components 0.29.1 → 0.30.1
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 +3 -1
- package/dist/browser/index.js.map +2 -2
- package/dist/components/checkbox/checkbox.styles.js +3 -1
- package/dist/components/listitem/listitem.component.d.ts +8 -0
- package/dist/components/listitem/listitem.component.js +6 -0
- package/dist/components/themeprovider/themeprovider.component.d.ts +14 -0
- package/dist/components/themeprovider/themeprovider.component.js +14 -0
- package/dist/custom-elements.json +1584 -1568
- package/dist/react/index.d.ts +1 -1
- package/dist/react/index.js +1 -1
- package/dist/react/listitem/index.d.ts +12 -1
- package/dist/react/listitem/index.js +12 -1
- package/dist/react/themeprovider/index.d.ts +14 -0
- package/dist/react/themeprovider/index.js +14 -0
- package/package.json +1 -1
package/dist/browser/index.js
CHANGED
@@ -1095,7 +1095,9 @@
|
|
1095
1095
|
--mdc-icon-fill-color: var(--mdc-checkbox-disabled-icon-color);
|
1096
1096
|
}
|
1097
1097
|
:host([disabled][checked]) .icon-container,
|
1098
|
-
:host([disabled][indeterminate]) .icon-container
|
1098
|
+
:host([disabled][indeterminate]) .icon-container,
|
1099
|
+
:host([disabled][checked]) .container:hover .icon-container,
|
1100
|
+
:host([disabled][indeterminate]) .container:hover .icon-container {
|
1099
1101
|
background: var(--mdc-checkbox-disabled-checked-icon-color);
|
1100
1102
|
border: 0.0625rem solid var(--mdc-checkbox-disabled-border-color);
|
1101
1103
|
}
|