@appquality/unguess-design-system 4.0.37 → 4.0.39
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 +29 -0
- package/build/index.d.ts +1 -0
- package/build/index.js +4 -5
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,32 @@
|
|
|
1
|
+
# v4.0.39 (Wed May 21 2025)
|
|
2
|
+
|
|
3
|
+
#### 🐛 Bug Fix
|
|
4
|
+
|
|
5
|
+
- Improve firefox compatibility [#526](https://github.com/AppQuality/unguess-design-system/pull/526) ([@d-beezee](https://github.com/d-beezee))
|
|
6
|
+
- feat: Update CenteredItem component to improve text positioning and spacing [#525](https://github.com/AppQuality/unguess-design-system/pull/525) ([@d-beezee](https://github.com/d-beezee))
|
|
7
|
+
|
|
8
|
+
#### Authors: 1
|
|
9
|
+
|
|
10
|
+
- [@d-beezee](https://github.com/d-beezee)
|
|
11
|
+
|
|
12
|
+
---
|
|
13
|
+
|
|
14
|
+
# v4.0.38 (Fri May 16 2025)
|
|
15
|
+
|
|
16
|
+
#### 🐛 Bug Fix
|
|
17
|
+
|
|
18
|
+
- Add optional registerCTA to login form [#521](https://github.com/AppQuality/unguess-design-system/pull/521) ([@sinatragianpaolo](https://github.com/sinatragianpaolo))
|
|
19
|
+
- feat: Consolidate button text properties in LoginFormArgs for consistency [#524](https://github.com/AppQuality/unguess-design-system/pull/524) ([@sinatragianpaolo](https://github.com/sinatragianpaolo))
|
|
20
|
+
- Add optional registerCTA to login form [#523](https://github.com/AppQuality/unguess-design-system/pull/523) ([@sinatragianpaolo](https://github.com/sinatragianpaolo))
|
|
21
|
+
- feat: Center buttonDividerText in LoginForm component [#522](https://github.com/AppQuality/unguess-design-system/pull/522) ([@sinatragianpaolo](https://github.com/sinatragianpaolo))
|
|
22
|
+
- Add register button to loginForm [#520](https://github.com/AppQuality/unguess-design-system/pull/520) ([@sinatragianpaolo](https://github.com/sinatragianpaolo))
|
|
23
|
+
|
|
24
|
+
#### Authors: 1
|
|
25
|
+
|
|
26
|
+
- Gianpaolo Sinatra ([@sinatragianpaolo](https://github.com/sinatragianpaolo))
|
|
27
|
+
|
|
28
|
+
---
|
|
29
|
+
|
|
1
30
|
# v4.0.37 (Thu May 08 2025)
|
|
2
31
|
|
|
3
32
|
#### 🐛 Bug Fix
|
package/build/index.d.ts
CHANGED
package/build/index.js
CHANGED
|
@@ -29874,31 +29874,29 @@ const VPe = Y(Na)`
|
|
|
29874
29874
|
value: o,
|
|
29875
29875
|
fontSizeMultiplier: a
|
|
29876
29876
|
}) => {
|
|
29877
|
-
const l = (a || 1) * r / 84, d =
|
|
29877
|
+
const l = (a || 1) * r / 84, d = r / 6.5, h = r / 12;
|
|
29878
29878
|
return /* @__PURE__ */ M.jsxs(M.Fragment, { children: [
|
|
29879
29879
|
i && /* @__PURE__ */ M.jsx("g", { transform: `translate(${e},${t})`, children: /* @__PURE__ */ M.jsx(
|
|
29880
29880
|
"text",
|
|
29881
29881
|
{
|
|
29882
29882
|
textAnchor: "middle",
|
|
29883
|
-
baselineShift: h + (o ? d : d / 2),
|
|
29884
29883
|
fill: n.palette.grey[600],
|
|
29885
29884
|
style: {
|
|
29886
29885
|
fontSize: parseInt(n.fontSizes.md.replace("px", "")) * l
|
|
29887
29886
|
},
|
|
29888
|
-
children: i
|
|
29887
|
+
children: /* @__PURE__ */ M.jsx("tspan", { dy: o ? h - d : h, children: i })
|
|
29889
29888
|
}
|
|
29890
29889
|
) }),
|
|
29891
29890
|
o && /* @__PURE__ */ M.jsx("g", { transform: `translate(${e},${t})`, children: /* @__PURE__ */ M.jsx(
|
|
29892
29891
|
"text",
|
|
29893
29892
|
{
|
|
29894
29893
|
textAnchor: "middle",
|
|
29895
|
-
baselineShift: h - (i ? d : d / 2),
|
|
29896
29894
|
fill: n.palette.blue[600],
|
|
29897
29895
|
style: {
|
|
29898
29896
|
fontSize: parseInt(n.fontSizes.xxl.replace("px", "")) * l,
|
|
29899
29897
|
fontWeight: n.fontWeights.semibold
|
|
29900
29898
|
},
|
|
29901
|
-
children: o
|
|
29899
|
+
children: /* @__PURE__ */ M.jsx("tspan", { dy: i ? h + d : h, children: o })
|
|
29902
29900
|
}
|
|
29903
29901
|
) })
|
|
29904
29902
|
] });
|
|
@@ -76269,6 +76267,7 @@ const Ket = Y.div`
|
|
|
76269
76267
|
children: e.buttonText
|
|
76270
76268
|
}
|
|
76271
76269
|
),
|
|
76270
|
+
typeof e.registerCta < "u" && e.registerCta,
|
|
76272
76271
|
i && /* @__PURE__ */ M.jsx("div", { style: { textAlign: "center" }, children: /* @__PURE__ */ M.jsx(ec, { validation: "error", children: i.message }) })
|
|
76273
76272
|
] })
|
|
76274
76273
|
}
|