@udixio/ui-react 2.9.23 → 2.10.0
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 +32 -0
- package/dist/index.cjs +3 -3
- package/dist/index.js +2906 -2498
- package/dist/lib/components/AnchorPositioner.d.ts +2 -1
- package/dist/lib/components/AnchorPositioner.d.ts.map +1 -1
- package/dist/lib/components/ContextMenu.d.ts +15 -0
- package/dist/lib/components/ContextMenu.d.ts.map +1 -0
- package/dist/lib/components/Menu.d.ts +16 -0
- package/dist/lib/components/Menu.d.ts.map +1 -0
- package/dist/lib/components/MenuGroup.d.ts +12 -0
- package/dist/lib/components/MenuGroup.d.ts.map +1 -0
- package/dist/lib/components/MenuHeadline.d.ts +7 -0
- package/dist/lib/components/MenuHeadline.d.ts.map +1 -0
- package/dist/lib/components/MenuItem.d.ts +9 -0
- package/dist/lib/components/MenuItem.d.ts.map +1 -0
- package/dist/lib/components/TextField.d.ts +5 -1
- package/dist/lib/components/TextField.d.ts.map +1 -1
- package/dist/lib/components/index.d.ts +6 -2
- package/dist/lib/components/index.d.ts.map +1 -1
- package/dist/lib/icon/icon.d.ts.map +1 -1
- package/dist/lib/interfaces/index.d.ts +1 -0
- package/dist/lib/interfaces/index.d.ts.map +1 -1
- package/dist/lib/interfaces/menu-group.interface.d.ts +13 -0
- package/dist/lib/interfaces/menu-group.interface.d.ts.map +1 -0
- package/dist/lib/interfaces/menu-item.interface.d.ts +34 -0
- package/dist/lib/interfaces/menu-item.interface.d.ts.map +1 -0
- package/dist/lib/interfaces/menu.interface.d.ts +17 -0
- package/dist/lib/interfaces/menu.interface.d.ts.map +1 -0
- package/dist/lib/interfaces/text-field.interface.d.ts +9 -1
- package/dist/lib/interfaces/text-field.interface.d.ts.map +1 -1
- package/dist/lib/styles/index.d.ts +3 -0
- package/dist/lib/styles/index.d.ts.map +1 -1
- package/dist/lib/styles/menu-group.style.d.ts +14 -0
- package/dist/lib/styles/menu-group.style.d.ts.map +1 -0
- package/dist/lib/styles/menu-headline.style.d.ts +19 -0
- package/dist/lib/styles/menu-headline.style.d.ts.map +1 -0
- package/dist/lib/styles/menu-item.style.d.ts +39 -0
- package/dist/lib/styles/menu-item.style.d.ts.map +1 -0
- package/dist/lib/styles/menu.style.d.ts +19 -0
- package/dist/lib/styles/menu.style.d.ts.map +1 -0
- package/dist/lib/styles/text-field.style.d.ts +19 -2
- package/dist/lib/styles/text-field.style.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/lib/components/AnchorPositioner.tsx +61 -18
- package/src/lib/components/ContextMenu.tsx +111 -0
- package/src/lib/components/Menu.tsx +113 -0
- package/src/lib/components/MenuGroup.tsx +34 -0
- package/src/lib/components/MenuHeadline.tsx +9 -0
- package/src/lib/components/MenuItem.tsx +197 -0
- package/src/lib/components/TextField.tsx +154 -26
- package/src/lib/components/index.ts +7 -2
- package/src/lib/icon/icon.tsx +10 -6
- package/src/lib/interfaces/index.ts +1 -0
- package/src/lib/interfaces/menu-group.interface.ts +13 -0
- package/src/lib/interfaces/menu-item.interface.ts +35 -0
- package/src/lib/interfaces/menu.interface.ts +20 -0
- package/src/lib/interfaces/text-field.interface.ts +9 -1
- package/src/lib/styles/index.ts +3 -0
- package/src/lib/styles/menu-group.style.ts +34 -0
- package/src/lib/styles/menu-headline.style.ts +20 -0
- package/src/lib/styles/menu-item.style.ts +53 -0
- package/src/lib/styles/menu.style.ts +32 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,35 @@
|
|
|
1
|
+
## 2.10.0 (2026-02-05)
|
|
2
|
+
|
|
3
|
+
### 🚀 Features
|
|
4
|
+
|
|
5
|
+
- improve SVG attribute handling in `Icon` component ([faf94cb](https://github.com/Udixio/UI/commit/faf94cb))
|
|
6
|
+
|
|
7
|
+
### ❤️ Thank You
|
|
8
|
+
|
|
9
|
+
- Joël VIGREUX
|
|
10
|
+
|
|
11
|
+
## 2.9.24 (2026-02-05)
|
|
12
|
+
|
|
13
|
+
### 🚀 Features
|
|
14
|
+
|
|
15
|
+
- **ui-react, docs:** add `ContextMenu` component and update documentation ([58a431e](https://github.com/Udixio/UI/commit/58a431e))
|
|
16
|
+
- **ui-react, docs:** add `label` support for `MenuGroup` and update styles ([f9ad9e0](https://github.com/Udixio/UI/commit/f9ad9e0))
|
|
17
|
+
- **ui-react:** refine `Menu` interface, styles, and behavior ([043ebe6](https://github.com/Udixio/UI/commit/043ebe6))
|
|
18
|
+
- **ui-react:** add `MenuGroup` styling and enhance `Menu` handling ([8511906](https://github.com/Udixio/UI/commit/8511906))
|
|
19
|
+
- **ui-react, docs:** add `MenuGroup` component and update documentation ([451dfb2](https://github.com/Udixio/UI/commit/451dfb2))
|
|
20
|
+
- **ui-react:** refine `Menu` styles and adjust positioning ([be29812](https://github.com/Udixio/UI/commit/be29812))
|
|
21
|
+
- **ui-react:** enhance `MenuItem` with improved submenu handling and additional alignment options ([5f35232](https://github.com/Udixio/UI/commit/5f35232))
|
|
22
|
+
- **ui-react:** add submenu support to `MenuItem` and improve `AnchorPositioner` ([6657da2](https://github.com/Udixio/UI/commit/6657da2))
|
|
23
|
+
- **ui-react:** introduce `Menu` component for dropdown functionality ([7cc5621](https://github.com/Udixio/UI/commit/7cc5621))
|
|
24
|
+
|
|
25
|
+
### 🩹 Fixes
|
|
26
|
+
|
|
27
|
+
- **ui-react:** ensure `MenuItem` does not shrink in flex containers ([22e5baf](https://github.com/Udixio/UI/commit/22e5baf))
|
|
28
|
+
|
|
29
|
+
### ❤️ Thank You
|
|
30
|
+
|
|
31
|
+
- Joël VIGREUX
|
|
32
|
+
|
|
1
33
|
## 2.9.23 (2026-02-03)
|
|
2
34
|
|
|
3
35
|
### 🩹 Fixes
|