@umami/react-zen 0.7.0 → 0.8.0
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.css +6 -1
- package/dist/index.d.ts +750 -747
- package/dist/index.js +234 -198
- package/dist/index.mjs +75 -34
- package/package.json +2 -2
package/dist/index.css
CHANGED
|
@@ -916,6 +916,7 @@
|
|
|
916
916
|
border: var(--border);
|
|
917
917
|
border-radius: var(--border-radius);
|
|
918
918
|
box-shadow: var(--box-shadow);
|
|
919
|
+
outline: none;
|
|
919
920
|
}
|
|
920
921
|
.List_separator {
|
|
921
922
|
border-bottom: var(--border);
|
|
@@ -1059,6 +1060,7 @@
|
|
|
1059
1060
|
|
|
1060
1061
|
/* src/components/TextField.module.css */
|
|
1061
1062
|
.TextField_textarea {
|
|
1063
|
+
font-family: inherit;
|
|
1062
1064
|
min-height: 60px;
|
|
1063
1065
|
min-width: 140px;
|
|
1064
1066
|
}
|
|
@@ -1339,7 +1341,7 @@
|
|
|
1339
1341
|
/* src/components/PasswordField.module.css */
|
|
1340
1342
|
.PasswordField_icon {
|
|
1341
1343
|
position: absolute;
|
|
1342
|
-
top:
|
|
1344
|
+
top: 12px;
|
|
1343
1345
|
right: 9px;
|
|
1344
1346
|
}
|
|
1345
1347
|
|
|
@@ -1734,6 +1736,9 @@
|
|
|
1734
1736
|
}
|
|
1735
1737
|
|
|
1736
1738
|
/* src/components/TextArea.module.css */
|
|
1739
|
+
.TextArea_textarea {
|
|
1740
|
+
font-family: inherit;
|
|
1741
|
+
}
|
|
1737
1742
|
.TextArea_none {
|
|
1738
1743
|
resize: none;
|
|
1739
1744
|
}
|