@ceed/cds 1.37.0 → 1.37.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/index.browser.js +1 -1
- package/dist/index.browser.js.map +2 -2
- package/dist/index.cjs +2 -1
- package/dist/index.js +2 -1
- package/framer/index.js +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -6990,7 +6990,8 @@ function RadioTileGroup(props) {
|
|
|
6990
6990
|
label: ({ disabled }) => ({
|
|
6991
6991
|
sx: (theme) => ({
|
|
6992
6992
|
...theme.typography[{ sm: "body-sm", md: "body-md", lg: "body-lg" }[size]],
|
|
6993
|
-
color: disabled ? theme.palette.neutral.outlinedDisabledColor : theme.palette.neutral.outlinedColor
|
|
6993
|
+
color: disabled ? theme.palette.neutral.outlinedDisabledColor : theme.palette.neutral.outlinedColor,
|
|
6994
|
+
textAlign
|
|
6994
6995
|
})
|
|
6995
6996
|
})
|
|
6996
6997
|
}
|
package/dist/index.js
CHANGED
|
@@ -6897,7 +6897,8 @@ function RadioTileGroup(props) {
|
|
|
6897
6897
|
label: ({ disabled }) => ({
|
|
6898
6898
|
sx: (theme) => ({
|
|
6899
6899
|
...theme.typography[{ sm: "body-sm", md: "body-md", lg: "body-lg" }[size]],
|
|
6900
|
-
color: disabled ? theme.palette.neutral.outlinedDisabledColor : theme.palette.neutral.outlinedColor
|
|
6900
|
+
color: disabled ? theme.palette.neutral.outlinedDisabledColor : theme.palette.neutral.outlinedColor,
|
|
6901
|
+
textAlign
|
|
6901
6902
|
})
|
|
6902
6903
|
})
|
|
6903
6904
|
}
|