@uniformdev/design-system 20.37.1-alpha.7 → 20.38.2-alpha.6
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/esm/index.js +1 -1
- package/dist/index.js +1 -1
- package/package.json +4 -4
package/dist/esm/index.js
CHANGED
|
@@ -17493,7 +17493,7 @@ var SwitchInputLabel = (size) => css108`
|
|
|
17493
17493
|
align-items: center;
|
|
17494
17494
|
color: var(--typography-base);
|
|
17495
17495
|
display: inline-flex;
|
|
17496
|
-
line-height: 1.25;
|
|
17496
|
+
line-height: ${size === "sm" ? "1.25" : "1.5"};
|
|
17497
17497
|
|
|
17498
17498
|
&:before {
|
|
17499
17499
|
border-radius: var(--rounded-full);
|
package/dist/index.js
CHANGED
|
@@ -19385,7 +19385,7 @@ var SwitchInputLabel = (size) => import_react179.css`
|
|
|
19385
19385
|
align-items: center;
|
|
19386
19386
|
color: var(--typography-base);
|
|
19387
19387
|
display: inline-flex;
|
|
19388
|
-
line-height: 1.25;
|
|
19388
|
+
line-height: ${size === "sm" ? "1.25" : "1.5"};
|
|
19389
19389
|
|
|
19390
19390
|
&:before {
|
|
19391
19391
|
border-radius: var(--rounded-full);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@uniformdev/design-system",
|
|
3
|
-
"version": "20.
|
|
3
|
+
"version": "20.38.2-alpha.6+2935ce0383",
|
|
4
4
|
"description": "Uniform design system components",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
6
6
|
"exports": {
|
|
@@ -38,8 +38,8 @@
|
|
|
38
38
|
"@storybook/theming": "^8.3.3",
|
|
39
39
|
"@types/react": "18.3.24",
|
|
40
40
|
"@types/react-dom": "18.3.7",
|
|
41
|
-
"@uniformdev/canvas": "^20.
|
|
42
|
-
"@uniformdev/richtext": "^20.
|
|
41
|
+
"@uniformdev/canvas": "^20.38.2-alpha.6+2935ce0383",
|
|
42
|
+
"@uniformdev/richtext": "^20.38.2-alpha.6+2935ce0383",
|
|
43
43
|
"@vitest/coverage-v8": "3.2.4",
|
|
44
44
|
"autoprefixer": "10.4.21",
|
|
45
45
|
"hygen": "6.2.11",
|
|
@@ -91,5 +91,5 @@
|
|
|
91
91
|
"publishConfig": {
|
|
92
92
|
"access": "public"
|
|
93
93
|
},
|
|
94
|
-
"gitHead": "
|
|
94
|
+
"gitHead": "2935ce038387bda70d4dc0586f368d826dfbad69"
|
|
95
95
|
}
|