@udixio/ui-react 2.9.13 → 2.9.14
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 +26 -0
- package/dist/index.cjs +3 -3
- package/dist/index.js +2259 -1814
- package/dist/lib/components/Button.d.ts.map +1 -1
- package/dist/lib/components/Card.d.ts +2 -2
- package/dist/lib/components/Card.d.ts.map +1 -1
- package/dist/lib/components/Checkbox.d.ts +15 -0
- package/dist/lib/components/Checkbox.d.ts.map +1 -0
- package/dist/lib/components/DatePicker.d.ts +9 -0
- package/dist/lib/components/DatePicker.d.ts.map +1 -0
- package/dist/lib/components/FabMenu.d.ts.map +1 -1
- package/dist/lib/components/IconButton.d.ts.map +1 -1
- package/dist/lib/components/TabGroup.d.ts +1 -0
- package/dist/lib/components/TabGroup.d.ts.map +1 -1
- package/dist/lib/components/TabGroupContext.d.ts +1 -0
- package/dist/lib/components/TabGroupContext.d.ts.map +1 -1
- package/dist/lib/components/TabPanel.d.ts +1 -0
- package/dist/lib/components/TabPanel.d.ts.map +1 -1
- package/dist/lib/components/TabPanels.d.ts +1 -0
- package/dist/lib/components/TabPanels.d.ts.map +1 -1
- package/dist/lib/components/TextField.d.ts +4 -4
- package/dist/lib/components/TextField.d.ts.map +1 -1
- package/dist/lib/components/index.d.ts +2 -0
- package/dist/lib/components/index.d.ts.map +1 -1
- package/dist/lib/effects/State.d.ts +3 -1
- package/dist/lib/effects/State.d.ts.map +1 -1
- package/dist/lib/interfaces/card.interface.d.ts +1 -1
- package/dist/lib/interfaces/card.interface.d.ts.map +1 -1
- package/dist/lib/interfaces/checkbox.interface.d.ts +38 -0
- package/dist/lib/interfaces/checkbox.interface.d.ts.map +1 -0
- package/dist/lib/interfaces/date-picker.interface.d.ts +67 -0
- package/dist/lib/interfaces/date-picker.interface.d.ts.map +1 -0
- package/dist/lib/interfaces/icon-button.interface.d.ts +2 -1
- package/dist/lib/interfaces/icon-button.interface.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/text-field.interface.d.ts +7 -4
- package/dist/lib/interfaces/text-field.interface.d.ts.map +1 -1
- package/dist/lib/styles/card.style.d.ts +3 -3
- package/dist/lib/styles/checkbox.style.d.ts +45 -0
- package/dist/lib/styles/checkbox.style.d.ts.map +1 -0
- package/dist/lib/styles/date-picker.style.d.ts +45 -0
- package/dist/lib/styles/date-picker.style.d.ts.map +1 -0
- package/dist/lib/styles/icon-button.style.d.ts +10 -4
- package/dist/lib/styles/icon-button.style.d.ts.map +1 -1
- package/dist/lib/styles/index.d.ts +1 -0
- package/dist/lib/styles/index.d.ts.map +1 -1
- package/dist/lib/styles/text-field.style.d.ts +18 -9
- package/dist/lib/styles/text-field.style.d.ts.map +1 -1
- package/package.json +3 -3
- package/src/lib/components/Button.tsx +1 -0
- package/src/lib/components/Card.tsx +9 -4
- package/src/lib/components/Checkbox.tsx +120 -0
- package/src/lib/components/DatePicker.tsx +432 -0
- package/src/lib/components/FabMenu.tsx +4 -5
- package/src/lib/components/IconButton.tsx +9 -7
- package/src/lib/components/TabGroup.tsx +8 -6
- package/src/lib/components/TabGroupContext.tsx +1 -1
- package/src/lib/components/TabPanel.tsx +1 -0
- package/src/lib/components/TabPanels.tsx +1 -0
- package/src/lib/components/TextField.tsx +95 -108
- package/src/lib/components/index.ts +2 -0
- package/src/lib/effects/State.tsx +4 -1
- package/src/lib/interfaces/card.interface.ts +1 -1
- package/src/lib/interfaces/checkbox.interface.ts +39 -0
- package/src/lib/interfaces/date-picker.interface.ts +79 -0
- package/src/lib/interfaces/icon-button.interface.ts +2 -1
- package/src/lib/interfaces/index.ts +1 -0
- package/src/lib/interfaces/text-field.interface.ts +7 -4
- package/src/lib/styles/checkbox.style.ts +64 -0
- package/src/lib/styles/date-picker.style.ts +43 -0
- package/src/lib/styles/index.ts +1 -0
- package/src/lib/styles/text-field.style.ts +2 -2
- package/src/stories/containment/card.stories.tsx +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,29 @@
|
|
|
1
|
+
## 2.9.14 (2026-02-02)
|
|
2
|
+
|
|
3
|
+
### 🚀 Features
|
|
4
|
+
|
|
5
|
+
- **ui-react:** enhance `DatePicker` with year selection and improved navigation ([95df26c](https://github.com/Udixio/UI/commit/95df26c))
|
|
6
|
+
- **ui-react:** add animations to `DatePicker` for month transitions ([f4d6e26](https://github.com/Udixio/UI/commit/f4d6e26))
|
|
7
|
+
- **ui-react:** add `DatePicker` component with single/range selection and advanced customization ([5de514f](https://github.com/Udixio/UI/commit/5de514f))
|
|
8
|
+
- **ui-react:** rename `isInteractive` prop to `interactive` in Card component ([af49a1d](https://github.com/Udixio/UI/commit/af49a1d))
|
|
9
|
+
- **ui-react:** make `title` and `icon` props optional in `IconButton` ([a66e4dd](https://github.com/Udixio/UI/commit/a66e4dd))
|
|
10
|
+
- **ui-react:** add `children` prop support to `State` component ([56f3a98](https://github.com/Udixio/UI/commit/56f3a98))
|
|
11
|
+
- **doc:** document `Checkbox` usage and API details ([19c3bc1](https://github.com/Udixio/UI/commit/19c3bc1))
|
|
12
|
+
- **ui-react:** rename `isInteractive` prop to `interactive` across Card component ([81b9abb](https://github.com/Udixio/UI/commit/81b9abb))
|
|
13
|
+
- **ui-react:** add `@parent` metadata to Tabs components for improved API organization ([b60357e](https://github.com/Udixio/UI/commit/b60357e))
|
|
14
|
+
- **ui-react:** add Checkbox component with controlled/uncontrolled states and styles ([2d470dc](https://github.com/Udixio/UI/commit/2d470dc))
|
|
15
|
+
- **ui-react:** simplify TextField props and documentation for better clarity ([eb316bc](https://github.com/Udixio/UI/commit/eb316bc))
|
|
16
|
+
- **ui-react:** refactor TextField and FabMenu for improved flexibility and stability ([1a26d63](https://github.com/Udixio/UI/commit/1a26d63))
|
|
17
|
+
|
|
18
|
+
### 🧱 Updated Dependencies
|
|
19
|
+
|
|
20
|
+
- Updated @udixio/tailwind to 2.4.13
|
|
21
|
+
- Updated @udixio/theme to 2.1.13
|
|
22
|
+
|
|
23
|
+
### ❤️ Thank You
|
|
24
|
+
|
|
25
|
+
- Joël VIGREUX
|
|
26
|
+
|
|
1
27
|
## 2.9.13 (2026-01-30)
|
|
2
28
|
|
|
3
29
|
### 🚀 Features
|