@weni/unnnic-system 3.2.7 → 3.2.8
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 +15 -0
- package/dist/components/ChatsHeader/ChatsHeader.vue.d.ts.map +1 -1
- package/dist/components/ChatsMessage/ChatsMessageText.vue.d.ts.map +1 -1
- package/dist/components/Chip/Chip.vue.d.ts.map +1 -1
- package/dist/components/DataTable/index.vue.d.ts.map +1 -1
- package/dist/components/DatePicker/DatePicker.vue.d.ts.map +1 -1
- package/dist/components/Drawer/Drawer.vue.d.ts.map +1 -1
- package/dist/components/EmojiPicker/EmojiPicker.vue.d.ts.map +1 -1
- package/dist/components/Icon.vue.d.ts.map +1 -1
- package/dist/components/Tag/TagNext.vue.d.ts.map +1 -1
- package/dist/{es-57bb200f.mjs → es-b3e51efa.js} +1 -1
- package/dist/{index-5f770b98.mjs → index-b9e3c5e9.js} +57 -45
- package/dist/{pt-br-dc8f4568.mjs → pt-br-20887b32.js} +1 -1
- package/dist/style.css +1 -1
- package/dist/{unnnic.mjs → unnnic.js} +1 -1
- package/dist/{unnnic.umd.js → unnnic.umd.cjs} +5 -5
- package/package.json +9 -8
- package/src/assets/icons/script-to-convert-svg-to-vue.js +4 -7
- package/src/components/AudioRecorder/AudioRecorder.vue +3 -2
- package/src/components/Button/Button.vue +1 -1
- package/src/components/Button/__tests__/Button.spec.js +2 -2
- package/src/components/Button/types.ts +1 -1
- package/src/components/Card/Card.vue +4 -1
- package/src/components/ChartMultiLine/Line/Line.vue +2 -1
- package/src/components/ChatsContact/ChatsContact.vue +1 -1
- package/src/components/ChatsHeader/ChatsHeader.vue +4 -2
- package/src/components/ChatsMessage/ChatsMessageText.vue +5 -5
- package/src/components/Chip/Chip.vue +62 -57
- package/src/components/Chip/__tests__/Chip.spec.js +18 -18
- package/src/components/DataTable/index.vue +8 -5
- package/src/components/DatePicker/DatePicker.vue +29 -16
- package/src/components/Drawer/Drawer.vue +4 -1
- package/src/components/Drawer/__tests__/Drawer.spec.js +9 -3
- package/src/components/DropArea/DropArea.vue +1 -1
- package/src/components/Dropdown/__tests__/Dropdown.spec.js +17 -17
- package/src/components/EmojiPicker/EmojiPicker.vue +57 -48
- package/src/components/EmojiPicker/__tests__/EmojiPicker.spec.js +84 -23
- package/src/components/Flag.vue +0 -1
- package/src/components/FormElement/FormElement.vue +1 -1
- package/src/components/Icon/types.ts +2 -2
- package/src/components/Icon.vue +3 -1
- package/src/components/Input/BaseInput.vue +2 -2
- package/src/components/InputDatePicker/InputDatePicker.vue +1 -1
- package/src/components/Label/Label.vue +2 -2
- package/src/components/ModalNext/ModalNext.vue +2 -2
- package/src/components/SelectSmart/SelectSmart.vue +15 -4
- package/src/components/SelectSmart/__tests__/SelectSmart.spec.js +2 -2
- package/src/components/Switch/__tests__/Switch.spec.js +6 -2
- package/src/components/Tag/TagNext.vue +2 -8
- package/src/components/Tour/TourPopover.vue +1 -1
- package/src/components/__tests__/Icon.spec.js +2 -2
- package/src/components/index.ts +87 -87
- package/src/index.ts +1 -1
- package/src/main.ts +1 -1
- package/src/stories/Button.stories.js +1 -1
- package/src/stories/ChatsHeader.stories.js +1 -1
- package/src/stories/ChatsMessage.stories.js +0 -1
- package/src/stories/Chip.stories.js +7 -4
- package/src/stories/SelectSmart.stories.js +1 -1
- package/src/stories/TableNext.stories.js +1 -1
- package/src/types/index.d.ts +2 -2
- package/src/types/scheme-colors.d.ts +1 -2
- package/src/types/unnnic-utils.d.ts +87 -87
- package/src/types/vue-shims.d.ts +1 -1
- package/src/types/vueuse-overrides.d.ts +2 -2
- package/src/utils/plugins/i18n.js +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +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.2.8 (2025-09-25)
|
|
9
|
+
|
|
10
|
+
### Changed
|
|
11
|
+
|
|
12
|
+
- **ESLint Configuration Migration**: Migrated from legacy `.eslintrc.js` to modern flat config format (`eslint.config.js`)
|
|
13
|
+
- **Modern Configuration**: Updated to use `@vue/eslint-config-typescript` with flat config structure
|
|
14
|
+
- **Enhanced TypeScript Support**: Improved TypeScript linting rules and configurations
|
|
15
|
+
- **Code Standardization**: Applied consistent code formatting across all components and files
|
|
16
|
+
- **Dependency Updates**: Updated ESLint-related package dependencies for better compatibility
|
|
17
|
+
- **Rule Optimization**: Enhanced linting rules for better code quality and consistency
|
|
18
|
+
|
|
19
|
+
### Fixed
|
|
20
|
+
|
|
21
|
+
- **Code Quality**: Standardized formatting across multiple components including AudioRecorder, Button, ChartMultiLine, ChatsHeader, ChatsMessage, DataTable, DatePicker, Drawer, EmojiPicker, FormElement, Input, InputDatePicker, Label, ModalNext, SelectSmart, Tag, and Tour components
|
|
22
|
+
|
|
8
23
|
# 3.2.7 (2025-09-23)
|
|
9
24
|
|
|
10
25
|
### Fixed
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ChatsHeader.vue.d.ts","sourceRoot":"","sources":["../../../src/components/ChatsHeader/ChatsHeader.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"ChatsHeader.vue.d.ts","sourceRoot":"","sources":["../../../src/components/ChatsHeader/ChatsHeader.vue"],"names":[],"mappings":"AAqFA;AAiTA,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,0BAA0B,CAAC;AAWjE,UAAU,KAAK;IACb,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,iBAAiB,CAAC,EAAE,gBAAgB,CAAC;IACrC,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,IAAI,CAAC,EAAE,MAAM,IAAI,CAAC;IAClB,KAAK,CAAC,EAAE,MAAM,IAAI,CAAC;IACnB,WAAW,CAAC,EAAE,MAAM,IAAI,CAAC;IACzB,UAAU,CAAC,EAAE,MAAM,IAAI,CAAC;IACxB,MAAM,CAAC,EAAE,KAAK,CAAC;QAAE,IAAI,EAAE,MAAM,CAAC;QAAC,IAAI,EAAE,MAAM,CAAA;KAAE,CAAC,CAAC;IAC/C,IAAI,CAAC,EAAE,MAAM,GAAG,OAAO,GAAG,OAAO,CAAC;CACnC;AAuCD,iBAAS,cAAc;WA2MT,OAAO,IAA6B;;yBAXpB,GAAG;uBACL,GAAG;;;;EAe9B;AAeD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe;;cAnPS,MAAM;cAAQ,MAAM;;;;cAApB,MAAM;cAAQ,MAAM;;;WAzBxC,MAAM,IAAI;WANV,MAAM;UAUP,MAAM,GAAG,OAAO,GAAG,OAAO;cATtB,MAAM;UAIV,MAAM,IAAI;YAIR,KAAK,CAAC;QAAE,IAAI,EAAE,MAAM,CAAC;QAAC,IAAI,EAAE,MAAM,CAAA;KAAE,CAAC;uBAP1B,gBAAgB;gBACvB,MAAM;gBACN,MAAM;iBAGL,MAAM,IAAI;gBACX,MAAM,IAAI;wFAmRvB,CAAC;wBACkB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;AAAnG,wBAAoG;AAapG,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IACxC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ChatsMessageText.vue.d.ts","sourceRoot":"","sources":["../../../src/components/ChatsMessage/ChatsMessageText.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"ChatsMessageText.vue.d.ts","sourceRoot":"","sources":["../../../src/components/ChatsMessage/ChatsMessageText.vue"],"names":[],"mappings":"AAcA;"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Chip.vue.d.ts","sourceRoot":"","sources":["../../../src/components/Chip/Chip.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"Chip.vue.d.ts","sourceRoot":"","sources":["../../../src/components/Chip/Chip.vue"],"names":[],"mappings":"AA6BA;AAqIA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,SAAS,CAAC;;;;;;AAsHzC,wBAQG"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.vue.d.ts","sourceRoot":"","sources":["../../../src/components/DataTable/index.vue"],"names":[],"mappings":"AAqKA;
|
|
1
|
+
{"version":3,"file":"index.vue.d.ts","sourceRoot":"","sources":["../../../src/components/DataTable/index.vue"],"names":[],"mappings":"AAqKA;AAyeA,KAAK,eAAe,GAAG;IACrB,KAAK,EAAE,MAAM,CAAC;IACd,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB,OAAO,EAAE,MAAM,CAAC;IAChB,KAAK,CAAC,EAAE,OAAO,GAAG,QAAQ,GAAG,KAAK,CAAC;IACnC,IAAI,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC;CACxB,CAAC;AAEF,KAAK,aAAa,GAAG;IACnB,CAAC,GAAG,EAAE,MAAM,GAAG,GAAG,CAAC;CACpB,CAAC;AAEF,UAAU,KAAK;IACb,OAAO,EAAE,eAAe,EAAE,CAAC;IAC3B,KAAK,EAAE,aAAa,EAAE,CAAC;IACvB,SAAS,CAAC,EAAE,OAAO,CAAC;IACpB,IAAI,CAAC,EAAE,IAAI,GAAG,IAAI,CAAC;IACnB,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,SAAS,CAAC,EAAE,OAAO,CAAC;IACpB,YAAY,CAAC,EAAE,OAAO,CAAC;IACvB,WAAW,CAAC,EAAE,OAAO,CAAC;IACtB,cAAc,CAAC,EAAE,OAAO,CAAC;IACzB,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,MAAM,CAAC,EAAE,MAAM,CAAC;CACjB;AA4HD,iBAAS,cAAc,QAyPtB;AAsBD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe;;gBAnYa,MAAM;iBAAW,MAAM;eAAS,MAAM;;;;;;gBAAtC,MAAM;iBAAW,MAAM;eAAS,MAAM;;;;;YAnB7D,MAAM;eAEH,OAAO;UAHZ,IAAI,GAAG,IAAI;YAUT,MAAM;eAXH,OAAO;iBAML,OAAO;eAHT,MAAM;kBAEH,OAAO;oBAEL,OAAO;UACjB,MAAM;eACD,MAAM;kBACH,MAAM;6EAuZrB,CAAC;wBACkB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;AAAnG,wBAAoG;AAapG,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IACxC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"DatePicker.vue.d.ts","sourceRoot":"","sources":["../../../src/components/DatePicker/DatePicker.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"DatePicker.vue.d.ts","sourceRoot":"","sources":["../../../src/components/DatePicker/DatePicker.vue"],"names":[],"mappings":"AAyNA;"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Drawer.vue.d.ts","sourceRoot":"","sources":["../../../src/components/Drawer/Drawer.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"Drawer.vue.d.ts","sourceRoot":"","sources":["../../../src/components/Drawer/Drawer.vue"],"names":[],"mappings":"AAyFA;"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"EmojiPicker.vue.d.ts","sourceRoot":"","sources":["../../../src/components/EmojiPicker/EmojiPicker.vue"],"names":[],"mappings":"AAyBA;
|
|
1
|
+
{"version":3,"file":"EmojiPicker.vue.d.ts","sourceRoot":"","sources":["../../../src/components/EmojiPicker/EmojiPicker.vue"],"names":[],"mappings":"AAyBA;AAqNA,OAAO,wCAAwC,CAAC;AAYhD,MAAM,WAAW,KAAK;IACpB,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB,QAAQ,CAAC,EAAE,KAAK,GAAG,QAAQ,CAAC;IAC5B,MAAM,CAAC,EAAE,MAAM,CAAC;CACjB;;;;;;;;YADU,MAAM;cADJ,KAAK,GAAG,QAAQ;gBADd,OAAO;;;;AAiMtB,wBAUG"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Icon.vue.d.ts","sourceRoot":"","sources":["../../src/components/Icon.vue"],"names":[],"mappings":"AAqCA;
|
|
1
|
+
{"version":3,"file":"Icon.vue.d.ts","sourceRoot":"","sources":["../../src/components/Icon.vue"],"names":[],"mappings":"AAqCA;AAqNA,OAAO,KAAK,EAAE,SAAS,EAAE,QAAQ,EAAE,UAAU,EAAE,MAAM,cAAc,CAAC;AACpE,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,uBAAuB,CAAC;AAMzD,YAAY,EAAE,SAAS,EAAE,QAAQ,EAAE,UAAU,EAAE,WAAW,EAAE,CAAC;;;;;;;;;;;;;;;;;;AAoJ7D,wBAQG"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"TagNext.vue.d.ts","sourceRoot":"","sources":["../../../src/components/Tag/TagNext.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"TagNext.vue.d.ts","sourceRoot":"","sources":["../../../src/components/Tag/TagNext.vue"],"names":[],"mappings":"AAOA;"}
|
|
@@ -3769,7 +3769,7 @@ const TE = /* @__PURE__ */ C(BE, [["render", LE]]), _5 = {
|
|
|
3769
3769
|
}, null, 40, ["class"]));
|
|
3770
3770
|
}
|
|
3771
3771
|
});
|
|
3772
|
-
const oe = /* @__PURE__ */ C(OE, [["__scopeId", "data-v-
|
|
3772
|
+
const oe = /* @__PURE__ */ C(OE, [["__scopeId", "data-v-fb16c4d6"]]);
|
|
3773
3773
|
function w4(e) {
|
|
3774
3774
|
return typeof e != "string" ? "" : e.replace(/<\/?[a-zA-Z]+\b[^>]*>/g, "");
|
|
3775
3775
|
}
|
|
@@ -3861,7 +3861,7 @@ function ZE(e, t, a, r, s, o) {
|
|
|
3861
3861
|
])) : B("", !0)
|
|
3862
3862
|
], 2);
|
|
3863
3863
|
}
|
|
3864
|
-
const lr = /* @__PURE__ */ C(VE, [["render", ZE], ["__scopeId", "data-v-
|
|
3864
|
+
const lr = /* @__PURE__ */ C(VE, [["render", ZE], ["__scopeId", "data-v-bee89e89"]]);
|
|
3865
3865
|
var Pi = typeof globalThis < "u" ? globalThis : typeof window < "u" ? window : typeof global < "u" ? global : typeof self < "u" ? self : {}, D4 = { exports: {} };
|
|
3866
3866
|
(function(e, t) {
|
|
3867
3867
|
(function(a, r) {
|
|
@@ -4103,7 +4103,7 @@ function JE(e, t, a, r, s, o) {
|
|
|
4103
4103
|
type: a.nativeType
|
|
4104
4104
|
}), null, 16, XE));
|
|
4105
4105
|
}
|
|
4106
|
-
const KE = /* @__PURE__ */ C(QE, [["render", JE], ["__scopeId", "data-v-
|
|
4106
|
+
const KE = /* @__PURE__ */ C(QE, [["render", JE], ["__scopeId", "data-v-9bf9daac"]]);
|
|
4107
4107
|
const $E = {
|
|
4108
4108
|
components: {
|
|
4109
4109
|
BaseInput: KE,
|
|
@@ -15211,7 +15211,7 @@ const QN = {
|
|
|
15211
15211
|
], 16, fq));
|
|
15212
15212
|
}
|
|
15213
15213
|
});
|
|
15214
|
-
const Rt = /* @__PURE__ */ C(gq, [["__scopeId", "data-v-
|
|
15214
|
+
const Rt = /* @__PURE__ */ C(gq, [["__scopeId", "data-v-992d21f0"]]);
|
|
15215
15215
|
const hq = {
|
|
15216
15216
|
components: {
|
|
15217
15217
|
UnnnicButton: Rt
|
|
@@ -15290,9 +15290,6 @@ const hq = {
|
|
|
15290
15290
|
}
|
|
15291
15291
|
};
|
|
15292
15292
|
},
|
|
15293
|
-
mounted() {
|
|
15294
|
-
this.updateOptionSelected();
|
|
15295
|
-
},
|
|
15296
15293
|
computed: {
|
|
15297
15294
|
openMonths() {
|
|
15298
15295
|
return [this.addMonth(this.referenceDate, -1), this.referenceDate];
|
|
@@ -15330,10 +15327,18 @@ const hq = {
|
|
|
15330
15327
|
this.updateOptionSelected(), this.$emit("change", this.value);
|
|
15331
15328
|
}
|
|
15332
15329
|
},
|
|
15330
|
+
mounted() {
|
|
15331
|
+
this.updateOptionSelected();
|
|
15332
|
+
},
|
|
15333
15333
|
methods: {
|
|
15334
15334
|
submit() {
|
|
15335
15335
|
var e;
|
|
15336
|
-
this.$emit("submit", this.value), this.optionSelected === "custom" ? this.$emit("update:equivalentOption", "") : this.$emit(
|
|
15336
|
+
this.$emit("submit", this.value), this.optionSelected === "custom" ? this.$emit("update:equivalentOption", "") : this.$emit(
|
|
15337
|
+
"update:equivalentOption",
|
|
15338
|
+
((e = this.periodsLocale.find(
|
|
15339
|
+
({ id: t }) => t === this.optionSelected
|
|
15340
|
+
)) == null ? void 0 : e.name) || ""
|
|
15341
|
+
);
|
|
15337
15342
|
},
|
|
15338
15343
|
updateOptionSelected() {
|
|
15339
15344
|
const { startDate: e, endDate: t } = this.value;
|
|
@@ -15341,10 +15346,7 @@ const hq = {
|
|
|
15341
15346
|
return new Date(s).getTime() === new Date(o).getTime();
|
|
15342
15347
|
}
|
|
15343
15348
|
const r = this.periodsLocale.find(({ id: s }) => {
|
|
15344
|
-
const {
|
|
15345
|
-
startDate: o,
|
|
15346
|
-
endDate: l
|
|
15347
|
-
} = this.getStartAndEndDateByPeriod(s);
|
|
15349
|
+
const { startDate: o, endDate: l } = this.getStartAndEndDateByPeriod(s);
|
|
15348
15350
|
return a(e, o) && a(t, l);
|
|
15349
15351
|
});
|
|
15350
15352
|
this.optionSelected = e || t ? r ? r.id : "custom" : "";
|
|
@@ -15676,7 +15678,13 @@ function Mq(e, t, a, r, s, o) {
|
|
|
15676
15678
|
c("div", kq, [
|
|
15677
15679
|
(_(!0), g(ee, null, de(o.periodsLocale, (d, h) => (_(), g("div", {
|
|
15678
15680
|
key: h,
|
|
15679
|
-
class: T([
|
|
15681
|
+
class: T([
|
|
15682
|
+
"option",
|
|
15683
|
+
{
|
|
15684
|
+
selectable: d.id !== "custom",
|
|
15685
|
+
selected: s.optionSelected === d.id
|
|
15686
|
+
}
|
|
15687
|
+
]),
|
|
15680
15688
|
onClick: (m) => d.id === "custom" ? null : o.autoSelect(d.id)
|
|
15681
15689
|
}, x(d.name), 11, vq))), 128))
|
|
15682
15690
|
]),
|
|
@@ -15698,7 +15706,7 @@ function Mq(e, t, a, r, s, o) {
|
|
|
15698
15706
|
])) : B("", !0)
|
|
15699
15707
|
]);
|
|
15700
15708
|
}
|
|
15701
|
-
const Mr = /* @__PURE__ */ C(hq, [["render", Mq], ["__scopeId", "data-v-
|
|
15709
|
+
const Mr = /* @__PURE__ */ C(hq, [["render", Mq], ["__scopeId", "data-v-546e8a09"]]);
|
|
15702
15710
|
const Eq = {
|
|
15703
15711
|
components: {
|
|
15704
15712
|
UnnnicInput: nn,
|
|
@@ -15850,6 +15858,8 @@ function Aq(e, t, a, r, s, o) {
|
|
|
15850
15858
|
}, [
|
|
15851
15859
|
s.showCalendarFilter ? (_(), W(d, {
|
|
15852
15860
|
key: 0,
|
|
15861
|
+
equivalentOption: s.overwrittenValue,
|
|
15862
|
+
"onUpdate:equivalentOption": t[1] || (t[1] = (h) => s.overwrittenValue = h),
|
|
15853
15863
|
type: a.type,
|
|
15854
15864
|
clearLabel: a.clearText,
|
|
15855
15865
|
actionLabel: a.actionText,
|
|
@@ -15861,15 +15871,13 @@ function Aq(e, t, a, r, s, o) {
|
|
|
15861
15871
|
minDate: a.minDate,
|
|
15862
15872
|
maxDate: a.maxDate,
|
|
15863
15873
|
disableClear: a.disableClear,
|
|
15864
|
-
equivalentOption: s.overwrittenValue,
|
|
15865
|
-
"onUpdate:equivalentOption": t[1] || (t[1] = (h) => s.overwrittenValue = h),
|
|
15866
15874
|
onChange: o.emitSelectDate,
|
|
15867
15875
|
onSubmit: o.changeDate
|
|
15868
|
-
}, null, 8, ["type", "clearLabel", "actionLabel", "months", "days", "options", "initialStartDate", "initialEndDate", "minDate", "maxDate", "disableClear", "
|
|
15876
|
+
}, null, 8, ["equivalentOption", "type", "clearLabel", "actionLabel", "months", "days", "options", "initialStartDate", "initialEndDate", "minDate", "maxDate", "disableClear", "onChange", "onSubmit"])) : B("", !0)
|
|
15869
15877
|
], 4)
|
|
15870
15878
|
], 2);
|
|
15871
15879
|
}
|
|
15872
|
-
const ws = /* @__PURE__ */ C(Eq, [["render", Aq], ["__scopeId", "data-v-
|
|
15880
|
+
const ws = /* @__PURE__ */ C(Eq, [["render", Aq], ["__scopeId", "data-v-d2a4c41c"]]);
|
|
15873
15881
|
const Bq = {
|
|
15874
15882
|
components: {
|
|
15875
15883
|
UnnnicIcon: oe
|
|
@@ -17524,15 +17532,12 @@ const Uz = {
|
|
|
17524
17532
|
}, Rz = { class: "unnnic-tag-next__text" };
|
|
17525
17533
|
function Yz(e, t, a, r, s, o) {
|
|
17526
17534
|
return _(), g("section", {
|
|
17527
|
-
class: T([
|
|
17528
|
-
"unnnic-tag-next",
|
|
17529
|
-
`unnnic-tag-next--${a.scheme}`
|
|
17530
|
-
])
|
|
17535
|
+
class: T(["unnnic-tag-next", `unnnic-tag-next--${a.scheme}`])
|
|
17531
17536
|
}, [
|
|
17532
17537
|
c("p", Rz, x(a.text), 1)
|
|
17533
17538
|
], 2);
|
|
17534
17539
|
}
|
|
17535
|
-
const Zz = /* @__PURE__ */ C(Uz, [["render", Yz], ["__scopeId", "data-v-
|
|
17540
|
+
const Zz = /* @__PURE__ */ C(Uz, [["render", Yz], ["__scopeId", "data-v-93d929a6"]]), Wz = {
|
|
17536
17541
|
name: "UnnnicTag",
|
|
17537
17542
|
props: {
|
|
17538
17543
|
type: {
|
|
@@ -20024,7 +20029,7 @@ const xH = { class: "unnnic-upload-area__dropzone__content" }, MH = { class: "un
|
|
|
20024
20029
|
])
|
|
20025
20030
|
], 34));
|
|
20026
20031
|
}
|
|
20027
|
-
}, Lr = /* @__PURE__ */ C(BH, [["__scopeId", "data-v-
|
|
20032
|
+
}, Lr = /* @__PURE__ */ C(BH, [["__scopeId", "data-v-936a11ab"]]);
|
|
20028
20033
|
const jH = {
|
|
20029
20034
|
name: "ImportCard",
|
|
20030
20035
|
components: {
|
|
@@ -20955,7 +20960,12 @@ const DV = {
|
|
|
20955
20960
|
default: null
|
|
20956
20961
|
}
|
|
20957
20962
|
},
|
|
20958
|
-
emits: [
|
|
20963
|
+
emits: [
|
|
20964
|
+
"update:searchValue",
|
|
20965
|
+
"onChange",
|
|
20966
|
+
"update:modelValue",
|
|
20967
|
+
"onActiveChange"
|
|
20968
|
+
],
|
|
20959
20969
|
data() {
|
|
20960
20970
|
return {
|
|
20961
20971
|
active: !1,
|
|
@@ -23900,7 +23910,7 @@ function XR(e, t, a, r, s, o) {
|
|
|
23900
23910
|
}, null, 8, ["time", "reqStatus", "progressBarPercentualValue", "isPlaying", "bars", "onPause", "onPlay", "onProgressBarUpdate"]))
|
|
23901
23911
|
])) : B("", !0);
|
|
23902
23912
|
}
|
|
23903
|
-
const _3 = /* @__PURE__ */ C(QR, [["render", XR], ["__scopeId", "data-v-
|
|
23913
|
+
const _3 = /* @__PURE__ */ C(QR, [["render", XR], ["__scopeId", "data-v-8c0a8614"]]);
|
|
23904
23914
|
const JR = {
|
|
23905
23915
|
components: {},
|
|
23906
23916
|
props: {
|
|
@@ -24201,8 +24211,8 @@ function yY(e, t, a, r, s, o) {
|
|
|
24201
24211
|
});
|
|
24202
24212
|
}
|
|
24203
24213
|
const CY = /* @__PURE__ */ C(bY, [["render", yY], ["__scopeId", "data-v-9b793da0"]]);
|
|
24204
|
-
import("./es-
|
|
24205
|
-
import("./pt-br-
|
|
24214
|
+
import("./es-b3e51efa.js");
|
|
24215
|
+
import("./pt-br-20887b32.js");
|
|
24206
24216
|
const g3 = {
|
|
24207
24217
|
name: "ChatsContact",
|
|
24208
24218
|
components: {
|
|
@@ -24386,8 +24396,8 @@ const g3 = {
|
|
|
24386
24396
|
}
|
|
24387
24397
|
}, f4 = () => {
|
|
24388
24398
|
ur((e) => ({
|
|
24389
|
-
"
|
|
24390
|
-
"
|
|
24399
|
+
"52aff739": e.messageInfoAlign,
|
|
24400
|
+
"578ce2fb": e.messageInfoMarginTop
|
|
24391
24401
|
}));
|
|
24392
24402
|
}, g4 = g3.setup;
|
|
24393
24403
|
g3.setup = g4 ? (e, t) => (f4(), g4(e, t)) : f4;
|
|
@@ -24508,7 +24518,7 @@ function TY(e, t, a, r, s, o) {
|
|
|
24508
24518
|
}, null, 512)
|
|
24509
24519
|
], 34);
|
|
24510
24520
|
}
|
|
24511
|
-
const h3 = /* @__PURE__ */ C(g3, [["render", TY], ["__scopeId", "data-v-
|
|
24521
|
+
const h3 = /* @__PURE__ */ C(g3, [["render", TY], ["__scopeId", "data-v-00dc7e06"]]);
|
|
24512
24522
|
const SY = {
|
|
24513
24523
|
name: "UnnnicChatsDashboardTagLive",
|
|
24514
24524
|
components: {
|
|
@@ -24750,7 +24760,7 @@ function $Y(e, t, a, r, s, o) {
|
|
|
24750
24760
|
a.isAutomatic ? (_(), g("p", KY, x(e.i18n("automatic_message")), 1)) : B("", !0)
|
|
24751
24761
|
]);
|
|
24752
24762
|
}
|
|
24753
|
-
const eZ = /* @__PURE__ */ C(GY, [["render", $Y], ["__scopeId", "data-v-
|
|
24763
|
+
const eZ = /* @__PURE__ */ C(GY, [["render", $Y], ["__scopeId", "data-v-61abc467"]]);
|
|
24754
24764
|
const tZ = { class: "reply-message__message-container" }, aZ = { class: "reply-message__content" }, iZ = {
|
|
24755
24765
|
class: "reply-message__content-text",
|
|
24756
24766
|
"data-testid": "content-text"
|
|
@@ -90830,9 +90840,9 @@ const rQ = "#00A49F", oQ = /* @__PURE__ */ R1({
|
|
|
90830
90840
|
showPreview: !0,
|
|
90831
90841
|
showSkinTones: "",
|
|
90832
90842
|
search: !0,
|
|
90833
|
-
|
|
90834
|
-
|
|
90835
|
-
|
|
90843
|
+
navPosition: "bottom",
|
|
90844
|
+
noResultsEmoji: "cry",
|
|
90845
|
+
maxFrequentRows: 3,
|
|
90836
90846
|
i18n: m.value,
|
|
90837
90847
|
color: rQ,
|
|
90838
90848
|
onSelect: D
|
|
@@ -90840,7 +90850,7 @@ const rQ = "#00A49F", oQ = /* @__PURE__ */ R1({
|
|
|
90840
90850
|
], 34));
|
|
90841
90851
|
}
|
|
90842
90852
|
});
|
|
90843
|
-
const D3 = /* @__PURE__ */ C(oQ, [["__scopeId", "data-v-
|
|
90853
|
+
const D3 = /* @__PURE__ */ C(oQ, [["__scopeId", "data-v-c3e1c039"]]);
|
|
90844
90854
|
const sQ = {
|
|
90845
90855
|
name: "UnnnicChartFunnelThreeRows",
|
|
90846
90856
|
props: {
|
|
@@ -91566,7 +91576,7 @@ function UQ(e, t, a, r, s, o) {
|
|
|
91566
91576
|
})
|
|
91567
91577
|
])) : B("", !0);
|
|
91568
91578
|
}
|
|
91569
|
-
const M3 = /* @__PURE__ */ C(NQ, [["render", UQ], ["__scopeId", "data-v-
|
|
91579
|
+
const M3 = /* @__PURE__ */ C(NQ, [["render", UQ], ["__scopeId", "data-v-0871e185"]]), RQ = (e) => {
|
|
91570
91580
|
if (typeof e.content != "string")
|
|
91571
91581
|
throw new Error('Each item in "headers" must have "content" as a string.');
|
|
91572
91582
|
if ("size" in e && (e.size !== "auto" && typeof e.size != "number" || e.size < 0))
|
|
@@ -92127,7 +92137,7 @@ function AG(e, t, a, r, s, o) {
|
|
|
92127
92137
|
])
|
|
92128
92138
|
], 2);
|
|
92129
92139
|
}
|
|
92130
|
-
const A3 = /* @__PURE__ */ C(mG, [["render", AG], ["__scopeId", "data-v-
|
|
92140
|
+
const A3 = /* @__PURE__ */ C(mG, [["render", AG], ["__scopeId", "data-v-df20e3dd"]]);
|
|
92131
92141
|
const BG = {
|
|
92132
92142
|
name: "UnnnicModalDialog",
|
|
92133
92143
|
components: {
|
|
@@ -92481,8 +92491,7 @@ const WG = {
|
|
|
92481
92491
|
bottom: r + l + m,
|
|
92482
92492
|
right: r - D / 2 + l / 2,
|
|
92483
92493
|
left: r - D / 2 + l / 2
|
|
92484
|
-
}
|
|
92485
|
-
let N = {
|
|
92494
|
+
}, N = {
|
|
92486
92495
|
transform: `translate(${w[t.popoverPosition]}px, ${A[t.popoverPosition]}px)`,
|
|
92487
92496
|
transition: "transform .3s ease"
|
|
92488
92497
|
};
|
|
@@ -92520,7 +92529,7 @@ function JG(e, t, a, r, s, o) {
|
|
|
92520
92529
|
}))
|
|
92521
92530
|
], 6);
|
|
92522
92531
|
}
|
|
92523
|
-
const KG = /* @__PURE__ */ C(WG, [["render", JG], ["__scopeId", "data-v-
|
|
92532
|
+
const KG = /* @__PURE__ */ C(WG, [["render", JG], ["__scopeId", "data-v-da7b146c"]]), $G = (e) => {
|
|
92524
92533
|
const { title: t, description: a, attachedElement: r, popoverPosition: s } = e;
|
|
92525
92534
|
if (!("title" in e && "description" in e && "attachedElement" in e && "popoverPosition" in e))
|
|
92526
92535
|
throw new Error(
|
|
@@ -92953,7 +92962,7 @@ const T3 = /* @__PURE__ */ C(sX, [["render", dX], ["__scopeId", "data-v-557ceed0
|
|
|
92953
92962
|
emits: ["update:sort", "itemClick", "update:page"],
|
|
92954
92963
|
setup(e, { emit: t }) {
|
|
92955
92964
|
ur((O) => ({
|
|
92956
|
-
"
|
|
92965
|
+
"06d0cc3d": D.value
|
|
92957
92966
|
}));
|
|
92958
92967
|
const a = Oo(), r = t, s = e, o = {
|
|
92959
92968
|
without_results: {
|
|
@@ -92979,7 +92988,10 @@ const T3 = /* @__PURE__ */ C(sX, [["render", dX], ["__scopeId", "data-v-557ceed0
|
|
|
92979
92988
|
desc: "asc",
|
|
92980
92989
|
"": "asc"
|
|
92981
92990
|
}, J = O.title !== m.value.header ? "asc" : Q[m.value.order];
|
|
92982
|
-
w(
|
|
92991
|
+
w(
|
|
92992
|
+
J === "" ? { header: "", itemKey: "", order: "" } : { header: O.title, itemKey: O.itemKey, order: J },
|
|
92993
|
+
J
|
|
92994
|
+
);
|
|
92983
92995
|
}, N = (O) => {
|
|
92984
92996
|
s.clickable && r("itemClick", O);
|
|
92985
92997
|
};
|
|
@@ -93107,7 +93119,7 @@ const T3 = /* @__PURE__ */ C(sX, [["render", dX], ["__scopeId", "data-v-557ceed0
|
|
|
93107
93119
|
], 4));
|
|
93108
93120
|
}
|
|
93109
93121
|
});
|
|
93110
|
-
const S3 = /* @__PURE__ */ C(pX, [["__scopeId", "data-v-
|
|
93122
|
+
const S3 = /* @__PURE__ */ C(pX, [["__scopeId", "data-v-8a5c40a8"]]), bX = /* @__PURE__ */ R1({
|
|
93111
93123
|
__name: "Chip",
|
|
93112
93124
|
props: {
|
|
93113
93125
|
isSelected: { type: Boolean },
|
|
@@ -93150,7 +93162,7 @@ const S3 = /* @__PURE__ */ C(pX, [["__scopeId", "data-v-bc788b22"]]), bX = /* @_
|
|
|
93150
93162
|
], 2));
|
|
93151
93163
|
}
|
|
93152
93164
|
});
|
|
93153
|
-
const N3 = /* @__PURE__ */ C(bX, [["__scopeId", "data-v-
|
|
93165
|
+
const N3 = /* @__PURE__ */ C(bX, [["__scopeId", "data-v-dd438658"]]), fo = {
|
|
93154
93166
|
unnnicFormElement: lr,
|
|
93155
93167
|
unnnicInput: nn,
|
|
93156
93168
|
unnnicInputNext: Uo,
|