@appquality/unguess-design-system 4.0.69 → 4.0.70
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 +13 -0
- package/build/index.js +10 -9
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,16 @@
|
|
|
1
|
+
# v4.0.70 (Thu Apr 02 2026)
|
|
2
|
+
|
|
3
|
+
#### 🐛 Bug Fix
|
|
4
|
+
|
|
5
|
+
- Improve focus visibility in CodeVerifier component styles [#592](https://github.com/AppQuality/unguess-design-system/pull/592) ([@Kariamos](https://github.com/Kariamos))
|
|
6
|
+
- fix: Adjust border and box-shadow styles in CodeVerifier component [#591](https://github.com/AppQuality/unguess-design-system/pull/591) ([@Kariamos](https://github.com/Kariamos))
|
|
7
|
+
|
|
8
|
+
#### Authors: 1
|
|
9
|
+
|
|
10
|
+
- Marco ([@Kariamos](https://github.com/Kariamos))
|
|
11
|
+
|
|
12
|
+
---
|
|
13
|
+
|
|
1
14
|
# v4.0.69 (Thu Mar 12 2026)
|
|
2
15
|
|
|
3
16
|
#### 🐛 Bug Fix
|
package/build/index.js
CHANGED
|
@@ -84193,17 +84193,21 @@ const $et = Y.div`
|
|
|
84193
84193
|
font-size: 20px;
|
|
84194
84194
|
font-weight: ${({ theme: e }) => e.fontWeights.semibold};
|
|
84195
84195
|
font-family: ${({ theme: e }) => e.fonts.system};
|
|
84196
|
-
border:
|
|
84196
|
+
border: 1px solid ${({ theme: e }) => e.palette.grey[300]};
|
|
84197
84197
|
border-radius: ${({ theme: e }) => e.borderRadii.lg};
|
|
84198
84198
|
outline: none;
|
|
84199
|
-
transition:
|
|
84199
|
+
transition:
|
|
84200
|
+
border-color 0.15s ease-in-out,
|
|
84201
|
+
box-shadow 0.15s ease-in-out;
|
|
84200
84202
|
color: ${({ theme: e }) => e.palette.grey[800]};
|
|
84201
84203
|
background: ${({ theme: e }) => e.palette.white};
|
|
84202
84204
|
caret-color: ${({ theme: e }) => e.palette.blue[600]};
|
|
84203
84205
|
|
|
84204
84206
|
&:focus {
|
|
84205
84207
|
border-color: ${({ theme: e }) => e.palette.blue[600]};
|
|
84206
|
-
box-shadow:
|
|
84208
|
+
box-shadow:
|
|
84209
|
+
0 0 0 1px ${({ theme: e }) => e.palette.white},
|
|
84210
|
+
0 0 0 3px ${({ theme: e }) => e.palette.blue[600]};
|
|
84207
84211
|
}
|
|
84208
84212
|
|
|
84209
84213
|
&:disabled {
|
|
@@ -84330,12 +84334,9 @@ const $et = Y.div`
|
|
|
84330
84334
|
(le = S.current[ie]) == null || le.focus();
|
|
84331
84335
|
},
|
|
84332
84336
|
[C, I, e, A]
|
|
84333
|
-
), N = Fe(
|
|
84334
|
-
(
|
|
84335
|
-
|
|
84336
|
-
},
|
|
84337
|
-
[]
|
|
84338
|
-
), H = t === "numeric" ? "Digit" : "Character";
|
|
84337
|
+
), N = Fe((z) => {
|
|
84338
|
+
z.target.select();
|
|
84339
|
+
}, []), H = t === "numeric" ? "Digit" : "Character";
|
|
84339
84340
|
return /* @__PURE__ */ M.jsx(Ket, { children: Array.from({ length: e }).map((z, V) => /* @__PURE__ */ M.jsx(
|
|
84340
84341
|
Yet,
|
|
84341
84342
|
{
|