@weni/unnnic-system 3.12.3 → 3.12.4
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 +8 -0
- package/dist/components/ChatsContact/ChatsContact.vue.d.ts +11 -0
- package/dist/{es-c19444c0.mjs → es-79dbffcf.mjs} +1 -1
- package/dist/{index-93b45359.mjs → index-d911b61f.mjs} +1697 -1680
- package/dist/locales/en.json.d.ts +3 -0
- package/dist/locales/es.json.d.ts +3 -0
- package/dist/locales/pt_br.json.d.ts +3 -0
- package/dist/{pt-br-23dc9ca6.mjs → pt-br-35b17364.mjs} +1 -1
- package/dist/style.css +1 -1
- package/dist/unnnic.mjs +1 -1
- package/dist/unnnic.umd.js +8 -8
- package/package.json +1 -1
- package/src/components/ChatsContact/ChatsContact.vue +15 -9
- package/src/components/ChatsUserAvatar/ChatsUserAvatar.vue +1 -1
- package/src/locales/en.json +3 -0
- package/src/locales/es.json +3 -0
- package/src/locales/pt_br.json +3 -0
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,14 @@ 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.12.4 (2025-12-23)
|
|
9
|
+
|
|
10
|
+
### Added
|
|
11
|
+
|
|
12
|
+
- **ChatsContact**:
|
|
13
|
+
- Change yesterday translations logic
|
|
14
|
+
- Added empty contact name tratative
|
|
15
|
+
|
|
8
16
|
# 3.12.3 (2025-12-12)
|
|
9
17
|
|
|
10
18
|
### Added
|
|
@@ -70,6 +70,16 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
70
70
|
}>, {}, {
|
|
71
71
|
isHovered: boolean;
|
|
72
72
|
defaultTranslations: {
|
|
73
|
+
unnamed_contact: {
|
|
74
|
+
'pt-br': string;
|
|
75
|
+
en: string;
|
|
76
|
+
es: string;
|
|
77
|
+
};
|
|
78
|
+
yesterday: {
|
|
79
|
+
'pt-br': string;
|
|
80
|
+
en: string;
|
|
81
|
+
es: string;
|
|
82
|
+
};
|
|
73
83
|
waiting_for: {
|
|
74
84
|
'pt-br': string;
|
|
75
85
|
en: string;
|
|
@@ -118,6 +128,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
118
128
|
mediaIcon: any;
|
|
119
129
|
mediaText: any;
|
|
120
130
|
};
|
|
131
|
+
contactName(): string;
|
|
121
132
|
subtitle(): any;
|
|
122
133
|
isUnpinned(): boolean;
|
|
123
134
|
isRenderPin(): boolean;
|