@dt-dds/react-checkbox 1.0.0-beta.62 → 1.0.0-beta.64
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 +14 -0
- package/dist/index.js +1 -0
- package/dist/index.mjs +1 -0
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# @dt-ui/react-checkbox
|
|
2
2
|
|
|
3
|
+
## 1.0.0-beta.64
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- fix: add displayName to Icon and IconButton for production builds
|
|
8
|
+
- Updated dependencies
|
|
9
|
+
- @dt-dds/react-icon@1.0.0-beta.63
|
|
10
|
+
|
|
11
|
+
## 1.0.0-beta.63
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- fix: checkbox box width reduction on long label
|
|
16
|
+
|
|
3
17
|
## 1.0.0-beta.62
|
|
4
18
|
|
|
5
19
|
### 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.
|
|
3
|
+
"version": "1.0.0-beta.64",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"exports": {
|
|
6
6
|
".": "./dist/index.js"
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
},
|
|
22
22
|
"dependencies": {
|
|
23
23
|
"@dt-dds/react-core": "1.0.0-beta.59",
|
|
24
|
-
"@dt-dds/react-icon": "1.0.0-beta.
|
|
24
|
+
"@dt-dds/react-icon": "1.0.0-beta.63",
|
|
25
25
|
"@dt-dds/themes": "1.0.0-beta.14"
|
|
26
26
|
},
|
|
27
27
|
"devDependencies": {
|