@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.
Files changed (45) hide show
  1. package/CHANGELOG.md +28 -0
  2. package/dist/index.cjs +3 -3
  3. package/dist/index.js +3875 -3750
  4. package/dist/lib/components/AnchorPositioner.d.ts +11 -0
  5. package/dist/lib/components/AnchorPositioner.d.ts.map +1 -0
  6. package/dist/lib/components/FabMenu.d.ts.map +1 -1
  7. package/dist/lib/components/TextField.d.ts +2 -2
  8. package/dist/lib/components/TextField.d.ts.map +1 -1
  9. package/dist/lib/components/Tooltip.d.ts +1 -1
  10. package/dist/lib/components/Tooltip.d.ts.map +1 -1
  11. package/dist/lib/components/index.d.ts +1 -0
  12. package/dist/lib/components/index.d.ts.map +1 -1
  13. package/dist/lib/effects/smooth-scroll.effect.d.ts +14 -0
  14. package/dist/lib/effects/smooth-scroll.effect.d.ts.map +1 -1
  15. package/dist/lib/hooks/index.d.ts +0 -1
  16. package/dist/lib/hooks/index.d.ts.map +1 -1
  17. package/dist/lib/interfaces/text-field.interface.d.ts +1 -1
  18. package/dist/lib/interfaces/text-field.interface.d.ts.map +1 -1
  19. package/dist/lib/interfaces/tooltip.interface.d.ts +2 -0
  20. package/dist/lib/interfaces/tooltip.interface.d.ts.map +1 -1
  21. package/dist/lib/styles/card.style.d.ts +2 -2
  22. package/dist/lib/styles/checkbox.style.d.ts +2 -2
  23. package/dist/lib/styles/fab.style.d.ts +2 -2
  24. package/dist/lib/styles/navigation-rail-item.style.d.ts +2 -2
  25. package/dist/lib/styles/side-sheet.style.d.ts +2 -2
  26. package/dist/lib/styles/slider.style.d.ts +2 -2
  27. package/dist/lib/styles/tab.style.d.ts +2 -2
  28. package/dist/lib/styles/text-field.style.d.ts +4 -4
  29. package/dist/lib/styles/tooltip.style.d.ts +8 -4
  30. package/dist/lib/styles/tooltip.style.d.ts.map +1 -1
  31. package/package.json +1 -1
  32. package/src/lib/components/AnchorPositioner.tsx +132 -0
  33. package/src/lib/components/FabMenu.tsx +13 -10
  34. package/src/lib/components/TextField.tsx +132 -19
  35. package/src/lib/components/Tooltip.tsx +13 -13
  36. package/src/lib/components/index.ts +1 -0
  37. package/src/lib/effects/smooth-scroll.effect.tsx +15 -1
  38. package/src/lib/hooks/index.ts +0 -1
  39. package/src/lib/interfaces/text-field.interface.ts +1 -1
  40. package/src/lib/interfaces/tooltip.interface.ts +2 -0
  41. package/src/lib/styles/date-picker.style.ts +1 -1
  42. package/src/lib/styles/side-sheet.style.ts +2 -2
  43. package/dist/lib/hooks/useTooltipPosition.d.ts +0 -22
  44. package/dist/lib/hooks/useTooltipPosition.d.ts.map +0 -1
  45. 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