@udixio/ui-react 2.10.10 → 2.10.12
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 +31 -0
- package/dist/index.cjs +3 -3
- package/dist/index.js +2740 -2655
- package/dist/lib/components/Carousel.d.ts.map +1 -1
- package/dist/lib/components/CarouselItem.d.ts.map +1 -1
- package/dist/lib/components/ProgressIndicator.d.ts.map +1 -1
- package/dist/lib/effects/ThemeProvider.d.ts.map +1 -1
- package/dist/lib/effects/theme.worker.d.ts +13 -0
- package/dist/lib/effects/theme.worker.d.ts.map +1 -0
- package/dist/lib/interfaces/progress-indicator.interface.d.ts +7 -1
- package/dist/lib/interfaces/progress-indicator.interface.d.ts.map +1 -1
- package/dist/lib/styles/carousel-item.style.d.ts.map +1 -1
- package/dist/lib/styles/progress-indicator.style.d.ts +2 -2
- package/dist/lib/styles/progress-indicator.style.d.ts.map +1 -1
- package/package.json +3 -3
- package/src/lib/components/Card.tsx +1 -1
- package/src/lib/components/Carousel.tsx +148 -259
- package/src/lib/components/CarouselItem.tsx +3 -10
- package/src/lib/components/ProgressIndicator.tsx +80 -26
- package/src/lib/effects/ThemeProvider.tsx +70 -26
- package/src/lib/effects/theme.worker.ts +97 -0
- package/src/lib/interfaces/progress-indicator.interface.ts +7 -1
- package/src/lib/styles/card.style.ts +2 -2
- package/src/lib/styles/carousel-item.style.ts +1 -5
- package/src/lib/styles/progress-indicator.style.ts +24 -8
- package/vite.config.ts +0 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,34 @@
|
|
|
1
|
+
## 2.10.12 (2026-04-09)
|
|
2
|
+
|
|
3
|
+
### 🚀 Features
|
|
4
|
+
|
|
5
|
+
- **config:** update tsconfig and worker initialization for multi-package icon support ([8beb5ba](https://github.com/Udixio/UI/commit/8beb5ba))
|
|
6
|
+
- **theme:** remove throttling and enhance load handling ([a7335da](https://github.com/Udixio/UI/commit/a7335da))
|
|
7
|
+
- **theme:** add worker-based CSS generation and theme serialization ([14af45b](https://github.com/Udixio/UI/commit/14af45b))
|
|
8
|
+
- **theme:** sync palettes in ThemeProvider using `themeApi.palettes.sync` ([66bac8b](https://github.com/Udixio/UI/commit/66bac8b))
|
|
9
|
+
- **progress-indicator:** improve linear-indeterminate animation with margin adjustments ([57d329b](https://github.com/Udixio/UI/commit/57d329b))
|
|
10
|
+
- **carousel:** optimize layout and rendering performance ([bd9f8d2](https://github.com/Udixio/UI/commit/bd9f8d2))
|
|
11
|
+
- **card:** rename `isInteractive` to `interactive` and enhance styles ([c223e40](https://github.com/Udixio/UI/commit/c223e40))
|
|
12
|
+
- **progress-indicator:** refine linear-indeterminate animation and adjust styles ([0dbbb9f](https://github.com/Udixio/UI/commit/0dbbb9f))
|
|
13
|
+
- **progress-indicator:** refine linear animation handling and enhance styles ([520384e](https://github.com/Udixio/UI/commit/520384e))
|
|
14
|
+
- **progress-indicator:** enhance transition logic and add circular-determinate variant ([5e00a3a](https://github.com/Udixio/UI/commit/5e00a3a))
|
|
15
|
+
|
|
16
|
+
### 🧱 Updated Dependencies
|
|
17
|
+
|
|
18
|
+
- Updated @udixio/tailwind to 2.4.19
|
|
19
|
+
- Updated @udixio/theme to 2.1.19
|
|
20
|
+
|
|
21
|
+
### ❤️ Thank You
|
|
22
|
+
|
|
23
|
+
- Joël VIGREUX
|
|
24
|
+
|
|
25
|
+
## 2.10.11 (2026-03-22)
|
|
26
|
+
|
|
27
|
+
### 🧱 Updated Dependencies
|
|
28
|
+
|
|
29
|
+
- Updated @udixio/tailwind to 2.4.18
|
|
30
|
+
- Updated @udixio/theme to 2.1.18
|
|
31
|
+
|
|
1
32
|
## 2.10.10 (2026-03-21)
|
|
2
33
|
|
|
3
34
|
### 🩹 Fixes
|