@weni/unnnic-system 3.1.2 → 3.1.3
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 +13 -1
- package/dist/components/EmojiPicker/EmojiPicker.vue.d.ts +16 -22292
- package/dist/components/EmojiPicker/EmojiPicker.vue.d.ts.map +1 -1
- package/dist/components/index.d.ts +11 -22292
- package/dist/components/index.d.ts.map +1 -1
- package/dist/{es-b95265ef.mjs → es-5ee61601.mjs} +1 -1
- package/dist/index-33c1d3d4.mjs +93353 -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-80b6b07a.mjs → pt-br-e6fd44f8.mjs} +1 -1
- package/dist/style.css +1 -1
- package/dist/unnnic.mjs +1 -1
- package/dist/unnnic.umd.js +45 -760
- package/package.json +3 -4
- 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-d6c4fffb.mjs +0 -77440
package/CHANGELOG.md
CHANGED
|
@@ -5,9 +5,21 @@ 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)
|
|
8
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)
|
|
9
21
|
|
|
10
|
-
## 3.1.2 (2025-
|
|
22
|
+
## 3.1.2 (2025-09-03)
|
|
11
23
|
|
|
12
24
|
### Added
|
|
13
25
|
|