@weni/unnnic-system 3.1.2-alpha.2 → 3.1.3-alpha.2
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 +27 -0
- package/dist/components/EmojiPicker/EmojiPicker.vue.d.ts +16 -22292
- package/dist/components/EmojiPicker/EmojiPicker.vue.d.ts.map +1 -1
- package/dist/{es-447c22a1.mjs → es-67d2c06d.mjs} +1 -1
- package/dist/index-da3d1ae4.mjs +93513 -0
- package/dist/locales/en.json.d.ts +18 -0
- package/dist/locales/es.json.d.ts +18 -0
- package/dist/locales/pt_br.json.d.ts +18 -0
- package/dist/{pt-br-b9850dfb.mjs → pt-br-5ca1066d.mjs} +1 -1
- package/dist/style.css +1 -1
- package/dist/unnnic.mjs +1 -1
- package/dist/unnnic.umd.js +46 -761
- package/package.json +2 -3
- package/src/assets/scss/colors.scss +58 -26
- package/src/components/EmojiPicker/EmojiPicker.vue +130 -63
- package/src/components/EmojiPicker/__tests__/EmojiPicker.spec.js +112 -36
- package/src/locales/en.json +18 -0
- package/src/locales/es.json +18 -0
- package/src/locales/pt_br.json +18 -0
- package/dist/index-7ff7db46.mjs +0 -77600
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,33 @@ 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.1.3 (2025-09-05)
|
|
9
|
+
|
|
10
|
+
### Added
|
|
11
|
+
|
|
12
|
+
- Dependency: Added `emoji-mart-vue-fast` as the new emoji provider
|
|
13
|
+
|
|
14
|
+
### Removed
|
|
15
|
+
|
|
16
|
+
- Dependencies: Removed `emoji-mart` and `@emoji-mart/data`
|
|
17
|
+
|
|
18
|
+
### Changed
|
|
19
|
+
|
|
20
|
+
- EmojiPicker: Refactored to use `emoji-mart-vue-fast` while preserving backward compatibility (public props, events, and slots remain unchanged)
|
|
21
|
+
|
|
22
|
+
## 3.1.2 (2025-09-03)
|
|
23
|
+
|
|
24
|
+
### Added
|
|
25
|
+
|
|
26
|
+
- **Semantic Color Tokens**: Added comprehensive semantic color token system with dedicated `$unnnic-color-` variables:
|
|
27
|
+
- **Background Semantic Tokens**: `$unnnic-color-bg-base`, `$unnnic-color-bg-soft`, `$unnnic-color-bg-muted`, `$unnnic-color-bg-active`, `$unnnic-color-bg-info`, `$unnnic-color-bg-success`, `$unnnic-color-bg-warning`, `$unnnic-color-bg-critical`
|
|
28
|
+
- **Text Semantic Tokens**: `$unnnic-color-fg-base`, `$unnnic-color-fg-muted`, `$unnnic-color-fg-emphasized`, `$unnnic-color-fg-inverted`, `$unnnic-color-fg-active`, `$unnnic-color-fg-info`, `$unnnic-color-fg-success`, `$unnnic-color-fg-warning`, `$unnnic-color-fg-critical`
|
|
29
|
+
- **Border Semantic Tokens**: `$unnnic-color-border-base`, `$unnnic-color-border-soft`, `$unnnic-color-border-muted`, `$unnnic-color-border-emphasized`, `$unnnic-color-border-active`, `$unnnic-color-border-info`, `$unnnic-color-border-success`, `$unnnic-color-border-warning`, `$unnnic-color-border-critical`
|
|
30
|
+
|
|
31
|
+
### Changed
|
|
32
|
+
|
|
33
|
+
- **Color System Refactoring**: Updated `$scheme-colors` map to reference the new semantic tokens instead of direct color values for improved maintainability and consistency
|
|
34
|
+
|
|
8
35
|
## 3.1.1 (2025-08-29)
|
|
9
36
|
|
|
10
37
|
### Added
|