@dt-dds/react-checkbox 1.0.0-beta.62 → 1.0.0-beta.63
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/CHANGELOG.md +6 -0
- package/dist/index.js +1 -0
- package/dist/index.mjs +1 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
package/dist/index.js
CHANGED
|
@@ -155,6 +155,7 @@ var CheckboxBoxStyled = (0, import_styled.default)("div", {
|
|
|
155
155
|
align-items: center;
|
|
156
156
|
justify-content: center;
|
|
157
157
|
border-radius: ${({ theme }) => theme.shape.checkbox};
|
|
158
|
+
flex-shrink: 0;
|
|
158
159
|
|
|
159
160
|
${({ theme, $checked, $indeterminate, $disabled, $error, $size }) => {
|
|
160
161
|
const state = getCheckboxState(
|
package/dist/index.mjs
CHANGED
|
@@ -127,6 +127,7 @@ var CheckboxBoxStyled = styled("div", {
|
|
|
127
127
|
align-items: center;
|
|
128
128
|
justify-content: center;
|
|
129
129
|
border-radius: ${({ theme }) => theme.shape.checkbox};
|
|
130
|
+
flex-shrink: 0;
|
|
130
131
|
|
|
131
132
|
${({ theme, $checked, $indeterminate, $disabled, $error, $size }) => {
|
|
132
133
|
const state = getCheckboxState(
|