@udixio/ui-react 2.9.14 → 2.9.16
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 +28 -0
- package/dist/index.cjs +3 -3
- package/dist/index.js +3875 -3750
- package/dist/lib/components/AnchorPositioner.d.ts +11 -0
- package/dist/lib/components/AnchorPositioner.d.ts.map +1 -0
- package/dist/lib/components/FabMenu.d.ts.map +1 -1
- package/dist/lib/components/TextField.d.ts +2 -2
- package/dist/lib/components/TextField.d.ts.map +1 -1
- package/dist/lib/components/Tooltip.d.ts +1 -1
- package/dist/lib/components/Tooltip.d.ts.map +1 -1
- package/dist/lib/components/index.d.ts +1 -0
- package/dist/lib/components/index.d.ts.map +1 -1
- package/dist/lib/effects/smooth-scroll.effect.d.ts +14 -0
- package/dist/lib/effects/smooth-scroll.effect.d.ts.map +1 -1
- package/dist/lib/hooks/index.d.ts +0 -1
- package/dist/lib/hooks/index.d.ts.map +1 -1
- package/dist/lib/interfaces/text-field.interface.d.ts +1 -1
- package/dist/lib/interfaces/text-field.interface.d.ts.map +1 -1
- package/dist/lib/interfaces/tooltip.interface.d.ts +2 -0
- package/dist/lib/interfaces/tooltip.interface.d.ts.map +1 -1
- package/dist/lib/styles/card.style.d.ts +2 -2
- package/dist/lib/styles/checkbox.style.d.ts +2 -2
- package/dist/lib/styles/fab.style.d.ts +2 -2
- package/dist/lib/styles/navigation-rail-item.style.d.ts +2 -2
- package/dist/lib/styles/side-sheet.style.d.ts +2 -2
- package/dist/lib/styles/slider.style.d.ts +2 -2
- package/dist/lib/styles/tab.style.d.ts +2 -2
- package/dist/lib/styles/text-field.style.d.ts +4 -4
- package/dist/lib/styles/tooltip.style.d.ts +8 -4
- package/dist/lib/styles/tooltip.style.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/lib/components/AnchorPositioner.tsx +132 -0
- package/src/lib/components/FabMenu.tsx +13 -10
- package/src/lib/components/TextField.tsx +132 -19
- package/src/lib/components/Tooltip.tsx +13 -13
- package/src/lib/components/index.ts +1 -0
- package/src/lib/effects/smooth-scroll.effect.tsx +15 -1
- package/src/lib/hooks/index.ts +0 -1
- package/src/lib/interfaces/text-field.interface.ts +1 -1
- package/src/lib/interfaces/tooltip.interface.ts +2 -0
- package/src/lib/styles/date-picker.style.ts +1 -1
- package/src/lib/styles/side-sheet.style.ts +2 -2
- package/dist/lib/hooks/useTooltipPosition.d.ts +0 -22
- package/dist/lib/hooks/useTooltipPosition.d.ts.map +0 -1
- package/src/lib/hooks/useTooltipPosition.ts +0 -95
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,31 @@
|
|
|
1
|
+
## 2.9.16 (2026-02-02)
|
|
2
|
+
|
|
3
|
+
### 🚀 Features
|
|
4
|
+
|
|
5
|
+
- **ui-react:** add `TextFieldInterface` import to `TextField` component ([fa7032a](https://github.com/Udixio/UI/commit/fa7032a))
|
|
6
|
+
|
|
7
|
+
### 🩹 Fixes
|
|
8
|
+
|
|
9
|
+
- **ui-react:** enhance FabMenu button styles with text wrapping adjustments ([0d015da](https://github.com/Udixio/UI/commit/0d015da))
|
|
10
|
+
|
|
11
|
+
### ❤️ Thank You
|
|
12
|
+
|
|
13
|
+
- Joël VIGREUX
|
|
14
|
+
|
|
15
|
+
## 2.9.15 (2026-02-02)
|
|
16
|
+
|
|
17
|
+
### 🚀 Features
|
|
18
|
+
|
|
19
|
+
- **ui-react:** replace `useTooltipPosition` hook with `AnchorPositioner` component ([755bc5d](https://github.com/Udixio/UI/commit/755bc5d))
|
|
20
|
+
|
|
21
|
+
### 🩹 Fixes
|
|
22
|
+
|
|
23
|
+
- **ui-react:** improve tooltip and text field positioning logic ([d3183c7](https://github.com/Udixio/UI/commit/d3183c7))
|
|
24
|
+
|
|
25
|
+
### ❤️ Thank You
|
|
26
|
+
|
|
27
|
+
- Joël VIGREUX
|
|
28
|
+
|
|
1
29
|
## 2.9.14 (2026-02-02)
|
|
2
30
|
|
|
3
31
|
### 🚀 Features
|