@weni/unnnic-system 3.3.3 → 3.4.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 +34 -0
- package/dist/{es-54ddaf5a.mjs → es-8265192e.mjs} +1 -1
- package/dist/{index-a34da30f.mjs → index-832905fc.mjs} +2713 -2713
- package/dist/lib/utils.d.ts +3 -0
- package/dist/lib/utils.d.ts.map +1 -0
- package/dist/main.d.ts +0 -1
- package/dist/main.d.ts.map +1 -1
- package/dist/{pt-br-ff00f945.mjs → pt-br-9ced3d4b.mjs} +1 -1
- package/dist/style.css +1 -1
- package/dist/unnnic.mjs +1 -1
- package/dist/unnnic.umd.js +22 -22
- package/package.json +13 -2
- package/src/assets/scss/colors-hsl.scss +119 -0
- package/src/assets/scss/tailwind.scss +96 -0
- package/src/lib/utils.ts +7 -0
- package/src/main.ts +1 -0
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,40 @@ All notable changes to this project will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
# 3.4.0 (2025-10-23)
|
|
9
|
+
|
|
10
|
+
### Added
|
|
11
|
+
|
|
12
|
+
- **shadcn-vue Integration**: Integrated shadcn-vue component library with Tailwind CSS v3
|
|
13
|
+
- **Tailwind CSS v3**: Added Tailwind CSS v3 with CSS-first configuration approach
|
|
14
|
+
- **shadcn-vue CLI**: Integrated shadcn-vue CLI for component scaffolding
|
|
15
|
+
- **Component Library**: Added Reka UI as the headless component foundation
|
|
16
|
+
- **Utility Libraries**: Added class-variance-authority, clsx, and tailwind-merge for component styling
|
|
17
|
+
- **Design Token Integration**: Mapped unnnic design tokens to Tailwind via CSS variables
|
|
18
|
+
|
|
19
|
+
### Changed
|
|
20
|
+
|
|
21
|
+
- **Main Entry**: Updated `src/main.ts` to import Tailwind CSS styles
|
|
22
|
+
- **Color System**: Exposed all unnnic color tokens as HSL
|
|
23
|
+
|
|
24
|
+
### Technical Details
|
|
25
|
+
|
|
26
|
+
- **Dependencies Added**:
|
|
27
|
+
- `tailwindcss@3.4.18` - CSS framework
|
|
28
|
+
- `postcss` - CSS processor
|
|
29
|
+
- `autoprefixer` - PostCSS plugin
|
|
30
|
+
- `tailwindcss-animate` - Animation utilities
|
|
31
|
+
- `class-variance-authority` - Variant management
|
|
32
|
+
- `clsx` - Class concatenation utility
|
|
33
|
+
- `tailwind-merge` - Smart class merging
|
|
34
|
+
- `reka-ui` - Headless UI components
|
|
35
|
+
- `ajv` - JSON schema validator
|
|
36
|
+
|
|
37
|
+
- **Files Created**:
|
|
38
|
+
- `tailwind.config.js` - Tailwind configuration with unnnic token mapping
|
|
39
|
+
- `postcss.config.cjs` - PostCSS configuration
|
|
40
|
+
- `components.json` - shadcn-vue CLI configuration
|
|
41
|
+
|
|
8
42
|
# 3.3.3 (2025-10-22)
|
|
9
43
|
|
|
10
44
|
### Fixed
|