@webitel/ui-sdk 25.8.39 → 25.8.41
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/dist/ui-sdk.css +1 -1
- package/dist/ui-sdk.js +5 -4
- package/dist/ui-sdk.umd.cjs +1 -1
- package/package.json +1 -1
- package/src/components/wt-search-bar/wt-search-bar.vue +3 -1
- package/src/css/main.scss +1 -0
- package/src/locale/kz/kz.js +556 -301
- package/src/modules/AgentStatusSelect/components/_internals/wt-cc-pause-cause-popup.vue +2 -0
- package/src/modules/QueryFilters/mixins/enumFilterMixin.js +2 -4
- package/src/plugins/primevue/primevue.scss +1 -0
- package/src/plugins/primevue/theme/components/tooltip/tooltip.scss +5 -0
- package/types/components/wt-search-bar/wt-search-bar.vue.d.ts +2 -2
- package/types/locale/i18n.d.ts +676 -289
- package/types/locale/index.d.ts +676 -289
- package/types/locale/kz/kz.d.ts +762 -331
|
@@ -26,9 +26,7 @@ export default {
|
|
|
26
26
|
return this.filterSchema?.storedProp;
|
|
27
27
|
},
|
|
28
28
|
label() {
|
|
29
|
-
return
|
|
30
|
-
? this.$tc(...this.locale.label)
|
|
31
|
-
: this.$t(this.locale.label);
|
|
29
|
+
return this.$t(this.locale.label);
|
|
32
30
|
},
|
|
33
31
|
localizedOptions() {
|
|
34
32
|
const optsHaveLocale = this.options.length && this.options[0].locale; // just check 1st el
|
|
@@ -36,7 +34,7 @@ export default {
|
|
|
36
34
|
return this.options.map((opt) => ({
|
|
37
35
|
...opt,
|
|
38
36
|
name: Array.isArray(opt.locale)
|
|
39
|
-
? this.$
|
|
37
|
+
? this.$t(...opt.locale)
|
|
40
38
|
: this.$t(opt.locale),
|
|
41
39
|
}));
|
|
42
40
|
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
@use 'theme/components/tooltip/tooltip.scss' as *;
|
|
@@ -9,13 +9,13 @@ declare const __VLS_ctx: InstanceType<__VLS_PickNotAny<typeof __VLS_self, new ()
|
|
|
9
9
|
declare var __VLS_1: {
|
|
10
10
|
invalid: boolean;
|
|
11
11
|
searchMode: string | Record<string, any>;
|
|
12
|
-
},
|
|
12
|
+
}, __VLS_39: {
|
|
13
13
|
invalid: boolean;
|
|
14
14
|
};
|
|
15
15
|
type __VLS_Slots = __VLS_PrettifyGlobal<__VLS_OmitStringIndex<typeof __VLS_ctx.$slots> & {
|
|
16
16
|
'search-icon'?: (props: typeof __VLS_1) => any;
|
|
17
17
|
} & {
|
|
18
|
-
'additional-actions'?: (props: typeof
|
|
18
|
+
'additional-actions'?: (props: typeof __VLS_39) => any;
|
|
19
19
|
}>;
|
|
20
20
|
declare const __VLS_self: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
21
21
|
v: {
|