@tidbcloud/uikit 2.0.0-beta.52 → 2.0.0-beta.53
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/theme/theme.cjs +4 -1
- package/dist/theme/theme.js +4 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
package/dist/theme/theme.cjs
CHANGED
|
@@ -203,10 +203,13 @@ const getInputStyles = (theme2, params) => {
|
|
|
203
203
|
},
|
|
204
204
|
invalid: {
|
|
205
205
|
borderColor: theme2.colors.red[4],
|
|
206
|
+
"& .mantine-PasswordInput-innerInput": {
|
|
207
|
+
borderColor: "transparent"
|
|
208
|
+
},
|
|
206
209
|
"&:hover": {
|
|
207
210
|
borderColor: theme2.colors.red[4]
|
|
208
211
|
},
|
|
209
|
-
"&:focus": {
|
|
212
|
+
"&:focus, &:focus-within": {
|
|
210
213
|
borderColor: theme2.colors.red[4]
|
|
211
214
|
},
|
|
212
215
|
"&::placeholder": {
|
package/dist/theme/theme.js
CHANGED
|
@@ -201,10 +201,13 @@ const getInputStyles = (theme2, params) => {
|
|
|
201
201
|
},
|
|
202
202
|
invalid: {
|
|
203
203
|
borderColor: theme2.colors.red[4],
|
|
204
|
+
"& .mantine-PasswordInput-innerInput": {
|
|
205
|
+
borderColor: "transparent"
|
|
206
|
+
},
|
|
204
207
|
"&:hover": {
|
|
205
208
|
borderColor: theme2.colors.red[4]
|
|
206
209
|
},
|
|
207
|
-
"&:focus": {
|
|
210
|
+
"&:focus, &:focus-within": {
|
|
208
211
|
borderColor: theme2.colors.red[4]
|
|
209
212
|
},
|
|
210
213
|
"&::placeholder": {
|