@team_yumi/ramen 1.0.0-next.20240227-5ae36a0-2e30918df5296c9d3eba0e407289dc87 → 1.0.0
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/index.css +5 -1
- package/index.js +2 -2
- package/package.json +1 -1
- package/src/components/core/x-box/index.d.ts +1 -1
- package/src/components/mobile/x-group-checkbox/index.d.ts +2 -0
- package/src/components/mobile/x-group-checkbox/root.d.ts +15 -0
- package/src/components/web/x-checkbox-group/root.d.ts +1 -0
- package/src/index.mobile.d.ts +2 -0
package/index.css
CHANGED
|
@@ -2122,10 +2122,14 @@ body {
|
|
|
2122
2122
|
box-sizing: content-box;
|
|
2123
2123
|
}
|
|
2124
2124
|
|
|
2125
|
-
.root-module_x-checkbox__2YH9t > .root-module_x-checkbox__check__KRW8F > div {
|
|
2125
|
+
.root-module_x-checkbox__2YH9t:not(.root-module_x-checkbox--disabled__9V-Ji) > .root-module_x-checkbox__check__KRW8F > div {
|
|
2126
2126
|
color: var(--color-neutral-lightest);
|
|
2127
2127
|
}
|
|
2128
2128
|
|
|
2129
|
+
.root-module_x-checkbox--disabled__9V-Ji > .root-module_x-checkbox__check__KRW8F > div {
|
|
2130
|
+
color: var(--color-neutral-dim);
|
|
2131
|
+
}
|
|
2132
|
+
|
|
2129
2133
|
.root-module_x-checkbox--has-error__5ixRs:not(.root-module_x-checkbox--disabled__9V-Ji) .root-module_x-checkbox__check__KRW8F {
|
|
2130
2134
|
border-color: var(--global-error-red-50);
|
|
2131
2135
|
}
|