@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 CHANGED
@@ -1,5 +1,11 @@
1
1
  # @dt-ui/react-checkbox
2
2
 
3
+ ## 1.0.0-beta.63
4
+
5
+ ### Patch Changes
6
+
7
+ - fix: checkbox box width reduction on long label
8
+
3
9
  ## 1.0.0-beta.62
4
10
 
5
11
  ### Minor Changes
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(
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dt-dds/react-checkbox",
3
- "version": "1.0.0-beta.62",
3
+ "version": "1.0.0-beta.63",
4
4
  "license": "MIT",
5
5
  "exports": {
6
6
  ".": "./dist/index.js"