@webitel/ui-sdk 25.8.26 → 25.8.27
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.js +14958 -14756
- package/dist/ui-sdk.umd.cjs +210 -210
- package/package.json +4 -3
- package/src/components/wt-popover/wt-popover.vue +2 -3
- package/src/locale/kz/kz.js +36 -0
- package/types/components/wt-action-bar/WtActionBarActionsOrder.d.ts +2 -2
- package/types/components/wt-action-bar/wt-action-bar.vue.d.ts +15 -15
- package/types/components/wt-button-select/wt-button-select.vue.d.ts +2 -2
- package/types/components/wt-confirm-dialog/wt-confirm-dialog.vue.d.ts +2 -2
- package/types/components/wt-intersection-observer/wt-intersection-observer.vue.d.ts +2 -2
- package/types/components/wt-player/wt-player.vue.d.ts +1 -1
- package/types/components/wt-popover/wt-popover.vue.d.ts +3 -5
- package/types/components/wt-table/wt-table.vue.d.ts +1 -1
- package/types/components/wt-timepicker/wt-timepicker.vue.d.ts +1 -1
- package/types/locale/i18n.d.ts +41 -0
- package/types/locale/kz/kz.d.ts +47 -1
- package/types/modules/Userinfo/api/userinfo.d.ts +1 -1
- package/types/modules/Userinfo/v2/api/UserinfoAPI.d.ts +1 -1
- package/types/plugins/primevue/theme/components/popover/popover.d.ts +1 -2
- package/types/plugins/primevue/theme/components/tooltip/tooltip.d.ts +1 -2
- package/types/scripts/caseConverters.d.ts +1 -1
- package/types/scripts/sortQueryAdapters.d.ts +1 -1
- package/types/components/wt-loader/_internals/wt-loader--md.vue.d.ts +0 -2
- package/types/components/wt-loader/_internals/wt-loader--sm.vue.d.ts +0 -16
- package/types/locale/ua/ua.d.ts +0 -911
- package/types/plugins/primevue/theme/semantic/color-scheme/color-schema.d.ts +0 -1189
- package/types/plugins/primevue/theme/semantic/color-scheme/dark-color.d.ts +0 -162
- package/types/plugins/primevue/theme/semantic/color-scheme/light-color.d.ts +0 -162
- package/types/plugins/primevue/theme/semantic/color-scheme/palette.d.ts +0 -435
- package/types/plugins/primevue/theme/semantic/semantic.d.ts +0 -5
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@webitel/ui-sdk",
|
|
3
|
-
"version": "25.8.
|
|
3
|
+
"version": "25.8.27",
|
|
4
4
|
"private": false,
|
|
5
5
|
"scripts": {
|
|
6
6
|
"make-all": "npm version patch --git-tag-version false && npm run build && (npm run build:types || true) && (npm run lint:fix || true) && npm run publish-lib",
|
|
@@ -55,11 +55,10 @@
|
|
|
55
55
|
"@vuepic/vue-datepicker": "^4.5.1",
|
|
56
56
|
"@vueuse/components": "^13.0.0",
|
|
57
57
|
"@webitel/api-services": "^0.0.33",
|
|
58
|
-
"@webitel/styleguide": "^24.12.
|
|
58
|
+
"@webitel/styleguide": "^24.12.44",
|
|
59
59
|
"autosize": "^6.0.1",
|
|
60
60
|
"axios": "^1.8.3",
|
|
61
61
|
"clipboard-copy": "^4.0.1",
|
|
62
|
-
"qs-esm": "^7.0.2",
|
|
63
62
|
"csv-stringify": "^5.5.3",
|
|
64
63
|
"date-fns": "^4.1.0",
|
|
65
64
|
"deep-copy": "^1.4.2",
|
|
@@ -75,6 +74,7 @@
|
|
|
75
74
|
"path-browserify": "^1.0.1",
|
|
76
75
|
"plyr": "^3.7.8",
|
|
77
76
|
"primevue": "^4.3.4",
|
|
77
|
+
"qs-esm": "^7.0.2",
|
|
78
78
|
"sortablejs": "^1.15.3",
|
|
79
79
|
"tailwindcss": "^4.1.7",
|
|
80
80
|
"vue-i18n": "^11.1.2",
|
|
@@ -120,6 +120,7 @@
|
|
|
120
120
|
"typescript-eslint": "^8.26.1",
|
|
121
121
|
"typescript-plugin-css-modules": "^5.1.0",
|
|
122
122
|
"unplugin-auto-import": "^19.1.1",
|
|
123
|
+
"unplugin-vue-components": "^28.8.0",
|
|
123
124
|
"vite": "^6.2.2",
|
|
124
125
|
"vite-plugin-checker": "^0.9.0",
|
|
125
126
|
"vite-plugin-node-polyfills": "^0.23.0",
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<template>
|
|
2
|
-
<popover
|
|
2
|
+
<p-popover
|
|
3
3
|
ref="innerPopover"
|
|
4
4
|
v-bind="attrs"
|
|
5
5
|
:append-to="appendTo"
|
|
@@ -13,12 +13,11 @@
|
|
|
13
13
|
v-on="attrs"
|
|
14
14
|
>
|
|
15
15
|
<slot />
|
|
16
|
-
</popover>
|
|
16
|
+
</p-popover>
|
|
17
17
|
</template>
|
|
18
18
|
|
|
19
19
|
<script setup lang="ts">
|
|
20
20
|
import { PopoverEmitsOptions, PopoverProps } from 'primevue';
|
|
21
|
-
import Popover from 'primevue/popover';
|
|
22
21
|
import { defineExpose, useAttrs, useTemplateRef } from 'vue';
|
|
23
22
|
|
|
24
23
|
const attrs = useAttrs();
|
package/src/locale/kz/kz.js
CHANGED
|
@@ -252,6 +252,13 @@ export default {
|
|
|
252
252
|
},
|
|
253
253
|
appNavigator: {
|
|
254
254
|
title: 'Webitel қосымшалары',
|
|
255
|
+
admin: 'Әкімші',
|
|
256
|
+
agent: 'Оператор',
|
|
257
|
+
supervisor: 'Супервизор',
|
|
258
|
+
audit: 'Аудит',
|
|
259
|
+
history: 'Тарих',
|
|
260
|
+
grafana: 'Grafana',
|
|
261
|
+
crm: 'CRM',
|
|
255
262
|
},
|
|
256
263
|
headerActions: {
|
|
257
264
|
account: 'Аккаунт',
|
|
@@ -323,6 +330,35 @@ export default {
|
|
|
323
330
|
min: 'Мин',
|
|
324
331
|
unlimited: 'Лимитсіз',
|
|
325
332
|
},
|
|
333
|
+
statusSelectErrorPopup: {
|
|
334
|
+
title: 'Назар аударыңыз',
|
|
335
|
+
message:
|
|
336
|
+
'Үзіліс алатын операторлар шегі асып кетті. Үзіліс қазір қол жетімді емес.',
|
|
337
|
+
},
|
|
338
|
+
},
|
|
339
|
+
saveFailedPopup: {
|
|
340
|
+
title: 'Сақтау сәтсіз аяқталды',
|
|
341
|
+
label: 'Бірдеңе дұрыс болмады, қайталап көріңіз',
|
|
342
|
+
exportToJson: 'JSON-ға экспорттау',
|
|
343
|
+
},
|
|
344
|
+
filters: {
|
|
345
|
+
datetime: {
|
|
346
|
+
today: 'Бүгін',
|
|
347
|
+
thisWeek: 'Осы апта',
|
|
348
|
+
thisMonth: 'Осы ай',
|
|
349
|
+
custom: 'Арнайы күн аралығы',
|
|
350
|
+
},
|
|
326
351
|
},
|
|
327
352
|
},
|
|
353
|
+
systemNotifications: {
|
|
354
|
+
success: {
|
|
355
|
+
update: ({ named }) => `${named('entity')} жаңартылды`,
|
|
356
|
+
create: ({ named }) => `${named('entity')} сақталды`,
|
|
357
|
+
delete: ({ named }) => `${named('entity')} жойылды`,
|
|
358
|
+
},
|
|
359
|
+
},
|
|
360
|
+
errorNotifications: {
|
|
361
|
+
chatHistoryApi: 'Чат тарихын жүктеу кезінде қате орын алды',
|
|
362
|
+
markChatProcessed: 'Чатты "Жабық" күйіне ауыстыру сәтсіз аяқталды',
|
|
363
|
+
},
|
|
328
364
|
};
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export const tableActionsOrder: ("filters" | "add" | "
|
|
2
|
-
export const sectionActionsOrder: ("filters" | "add" | "
|
|
1
|
+
export const tableActionsOrder: ("delete" | "filters" | "add" | "variables" | "refresh" | "upload" | "download" | "copy" | "columns" | "add-contact")[];
|
|
2
|
+
export const sectionActionsOrder: ("delete" | "filters" | "add" | "variables" | "refresh" | "upload" | "download" | "copy" | "columns" | "add-contact")[];
|
|
@@ -19,53 +19,53 @@ declare const __VLS_component: import("vue").DefineComponent<{}, {
|
|
|
19
19
|
};
|
|
20
20
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
21
21
|
type __VLS_Slots = {
|
|
22
|
+
delete?: (props: {
|
|
23
|
+
action: "delete" | "filters" | "add" | "variables" | "refresh" | "upload" | "download" | "copy" | "columns" | "add-contact";
|
|
24
|
+
size: string;
|
|
25
|
+
onClick: () => void;
|
|
26
|
+
}) => any;
|
|
22
27
|
filters?: (props: {
|
|
23
|
-
action: "filters" | "add" | "
|
|
28
|
+
action: "delete" | "filters" | "add" | "variables" | "refresh" | "upload" | "download" | "copy" | "columns" | "add-contact";
|
|
24
29
|
size: string;
|
|
25
30
|
onClick: () => void;
|
|
26
31
|
}) => any;
|
|
27
32
|
add?: (props: {
|
|
28
|
-
action: "filters" | "add" | "
|
|
33
|
+
action: "delete" | "filters" | "add" | "variables" | "refresh" | "upload" | "download" | "copy" | "columns" | "add-contact";
|
|
29
34
|
size: string;
|
|
30
35
|
onClick: () => void;
|
|
31
36
|
}) => any;
|
|
32
|
-
|
|
33
|
-
action: "filters" | "add" | "
|
|
37
|
+
variables?: (props: {
|
|
38
|
+
action: "delete" | "filters" | "add" | "variables" | "refresh" | "upload" | "download" | "copy" | "columns" | "add-contact";
|
|
34
39
|
size: string;
|
|
35
40
|
onClick: () => void;
|
|
36
41
|
}) => any;
|
|
37
42
|
refresh?: (props: {
|
|
38
|
-
action: "filters" | "add" | "
|
|
43
|
+
action: "delete" | "filters" | "add" | "variables" | "refresh" | "upload" | "download" | "copy" | "columns" | "add-contact";
|
|
39
44
|
size: string;
|
|
40
45
|
onClick: () => void;
|
|
41
46
|
}) => any;
|
|
42
47
|
upload?: (props: {
|
|
43
|
-
action: "filters" | "add" | "
|
|
48
|
+
action: "delete" | "filters" | "add" | "variables" | "refresh" | "upload" | "download" | "copy" | "columns" | "add-contact";
|
|
44
49
|
size: string;
|
|
45
50
|
onClick: () => void;
|
|
46
51
|
}) => any;
|
|
47
52
|
download?: (props: {
|
|
48
|
-
action: "filters" | "add" | "
|
|
53
|
+
action: "delete" | "filters" | "add" | "variables" | "refresh" | "upload" | "download" | "copy" | "columns" | "add-contact";
|
|
49
54
|
size: string;
|
|
50
55
|
onClick: () => void;
|
|
51
56
|
}) => any;
|
|
52
57
|
copy?: (props: {
|
|
53
|
-
action: "filters" | "add" | "
|
|
58
|
+
action: "delete" | "filters" | "add" | "variables" | "refresh" | "upload" | "download" | "copy" | "columns" | "add-contact";
|
|
54
59
|
size: string;
|
|
55
60
|
onClick: () => void;
|
|
56
61
|
}) => any;
|
|
57
62
|
columns?: (props: {
|
|
58
|
-
action: "filters" | "add" | "
|
|
59
|
-
size: string;
|
|
60
|
-
onClick: () => void;
|
|
61
|
-
}) => any;
|
|
62
|
-
variables?: (props: {
|
|
63
|
-
action: "filters" | "add" | "delete" | "refresh" | "upload" | "download" | "copy" | "columns" | "variables" | "add-contact";
|
|
63
|
+
action: "delete" | "filters" | "add" | "variables" | "refresh" | "upload" | "download" | "copy" | "columns" | "add-contact";
|
|
64
64
|
size: string;
|
|
65
65
|
onClick: () => void;
|
|
66
66
|
}) => any;
|
|
67
67
|
"add-contact"?: (props: {
|
|
68
|
-
action: "filters" | "add" | "
|
|
68
|
+
action: "delete" | "filters" | "add" | "variables" | "refresh" | "upload" | "download" | "copy" | "columns" | "add-contact";
|
|
69
69
|
size: string;
|
|
70
70
|
onClick: () => void;
|
|
71
71
|
}) => any;
|
|
@@ -5,12 +5,12 @@ type __VLS_WithSlots<T, S> = T & (new () => {
|
|
|
5
5
|
});
|
|
6
6
|
declare const __VLS_component: import("vue").DefineComponent<{}, {
|
|
7
7
|
$emit: (event: "click" | "click:option", ...args: any[]) => void;
|
|
8
|
-
color: string;
|
|
9
8
|
options: unknown[];
|
|
9
|
+
color: string;
|
|
10
10
|
disabled: boolean;
|
|
11
11
|
$props: {
|
|
12
|
-
readonly color?: string;
|
|
13
12
|
readonly options?: unknown[];
|
|
13
|
+
readonly color?: string;
|
|
14
14
|
readonly disabled?: boolean;
|
|
15
15
|
};
|
|
16
16
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
@@ -6,14 +6,14 @@ type __VLS_WithSlots<T, S> = T & (new () => {
|
|
|
6
6
|
declare const __VLS_component: import("vue").DefineComponent<{}, {
|
|
7
7
|
$emit: (event: "close" | "confirm", ...args: any[]) => void;
|
|
8
8
|
title: string;
|
|
9
|
+
callback: Function;
|
|
9
10
|
deleteMessage: string;
|
|
10
11
|
subject: string;
|
|
11
|
-
callback: Function;
|
|
12
12
|
$props: {
|
|
13
13
|
readonly title?: string;
|
|
14
|
+
readonly callback?: Function;
|
|
14
15
|
readonly deleteMessage?: string;
|
|
15
16
|
readonly subject?: string;
|
|
16
|
-
readonly callback?: Function;
|
|
17
17
|
};
|
|
18
18
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
19
19
|
type __VLS_Slots = {
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
declare const _default: import("vue").DefineComponent<{}, {
|
|
2
2
|
$emit: (event: "next", ...args: any[]) => void;
|
|
3
|
-
loading: boolean;
|
|
4
3
|
next: Function;
|
|
4
|
+
loading: boolean;
|
|
5
5
|
$props: {
|
|
6
|
-
readonly loading?: boolean;
|
|
7
6
|
readonly next?: Function;
|
|
7
|
+
readonly loading?: boolean;
|
|
8
8
|
};
|
|
9
9
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
10
10
|
export default _default;
|
|
@@ -96,6 +96,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
96
96
|
onClose?: (...args: any[]) => any;
|
|
97
97
|
onInitialized?: (...args: any[]) => any;
|
|
98
98
|
}>, {
|
|
99
|
+
position: string;
|
|
99
100
|
download: string | boolean | Function;
|
|
100
101
|
autoplay: boolean;
|
|
101
102
|
loop: boolean;
|
|
@@ -105,6 +106,5 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
105
106
|
invertTime: boolean;
|
|
106
107
|
resetVolume: boolean;
|
|
107
108
|
closable: boolean;
|
|
108
|
-
position: string;
|
|
109
109
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
110
110
|
export default _default;
|
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
import { PopoverProps } from 'primevue';
|
|
2
|
-
import Popover from 'primevue/popover';
|
|
3
2
|
declare const attrs: {
|
|
4
3
|
[x: string]: unknown;
|
|
5
4
|
};
|
|
@@ -9,7 +8,6 @@ type __VLS_Slots = __VLS_PrettifyGlobal<__VLS_OmitStringIndex<typeof __VLS_ctx.$
|
|
|
9
8
|
default?: (props: typeof __VLS_7) => any;
|
|
10
9
|
}>;
|
|
11
10
|
declare const __VLS_self: import("vue").DefineComponent<PopoverProps, {
|
|
12
|
-
Popover: typeof Popover;
|
|
13
11
|
attrs: typeof attrs;
|
|
14
12
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
15
13
|
hide: () => any;
|
|
@@ -28,9 +26,9 @@ declare const __VLS_self: import("vue").DefineComponent<PopoverProps, {
|
|
|
28
26
|
closeOnEscape: boolean | undefined;
|
|
29
27
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
30
28
|
declare const __VLS_component: import("vue").DefineComponent<PopoverProps, {
|
|
31
|
-
toggle: (...args: any[]) =>
|
|
32
|
-
show: (...args: any[]) =>
|
|
33
|
-
hide: (...args: any[]) =>
|
|
29
|
+
toggle: (...args: any[]) => any;
|
|
30
|
+
show: (...args: any[]) => any;
|
|
31
|
+
hide: (...args: any[]) => any;
|
|
34
32
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
35
33
|
hide: () => any;
|
|
36
34
|
show: () => any;
|
|
@@ -121,8 +121,8 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
121
121
|
onSort?: (...args: any[]) => any;
|
|
122
122
|
"onUpdate:selected"?: (...args: any[]) => any;
|
|
123
123
|
}>, {
|
|
124
|
-
data: unknown[];
|
|
125
124
|
headers: unknown[];
|
|
125
|
+
data: unknown[];
|
|
126
126
|
sortable: boolean;
|
|
127
127
|
selectable: boolean;
|
|
128
128
|
gridActions: boolean;
|
|
@@ -138,8 +138,8 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
138
138
|
value: string | number;
|
|
139
139
|
label: string;
|
|
140
140
|
disabled: boolean;
|
|
141
|
-
dateMode: boolean;
|
|
142
141
|
format: string;
|
|
142
|
+
dateMode: boolean;
|
|
143
143
|
noLabel: boolean;
|
|
144
144
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
145
145
|
export default _default;
|
package/types/locale/i18n.d.ts
CHANGED
|
@@ -2921,6 +2921,13 @@ declare const _default: import("vue-i18n").I18n<{
|
|
|
2921
2921
|
};
|
|
2922
2922
|
appNavigator: {
|
|
2923
2923
|
title: string;
|
|
2924
|
+
admin: string;
|
|
2925
|
+
agent: string;
|
|
2926
|
+
supervisor: string;
|
|
2927
|
+
audit: string;
|
|
2928
|
+
history: string;
|
|
2929
|
+
grafana: string;
|
|
2930
|
+
crm: string;
|
|
2924
2931
|
};
|
|
2925
2932
|
headerActions: {
|
|
2926
2933
|
account: string;
|
|
@@ -2991,7 +2998,41 @@ declare const _default: import("vue-i18n").I18n<{
|
|
|
2991
2998
|
min: string;
|
|
2992
2999
|
unlimited: string;
|
|
2993
3000
|
};
|
|
3001
|
+
statusSelectErrorPopup: {
|
|
3002
|
+
title: string;
|
|
3003
|
+
message: string;
|
|
3004
|
+
};
|
|
2994
3005
|
};
|
|
3006
|
+
saveFailedPopup: {
|
|
3007
|
+
title: string;
|
|
3008
|
+
label: string;
|
|
3009
|
+
exportToJson: string;
|
|
3010
|
+
};
|
|
3011
|
+
filters: {
|
|
3012
|
+
datetime: {
|
|
3013
|
+
today: string;
|
|
3014
|
+
thisWeek: string;
|
|
3015
|
+
thisMonth: string;
|
|
3016
|
+
custom: string;
|
|
3017
|
+
};
|
|
3018
|
+
};
|
|
3019
|
+
};
|
|
3020
|
+
systemNotifications: {
|
|
3021
|
+
success: {
|
|
3022
|
+
update: ({ named }: {
|
|
3023
|
+
named: any;
|
|
3024
|
+
}) => string;
|
|
3025
|
+
create: ({ named }: {
|
|
3026
|
+
named: any;
|
|
3027
|
+
}) => string;
|
|
3028
|
+
delete: ({ named }: {
|
|
3029
|
+
named: any;
|
|
3030
|
+
}) => string;
|
|
3031
|
+
};
|
|
3032
|
+
};
|
|
3033
|
+
errorNotifications: {
|
|
3034
|
+
chatHistoryApi: string;
|
|
3035
|
+
markChatProcessed: string;
|
|
2995
3036
|
};
|
|
2996
3037
|
};
|
|
2997
3038
|
}, {}, {}, string, true>;
|
package/types/locale/kz/kz.d.ts
CHANGED
|
@@ -210,7 +210,16 @@ declare namespace _default {
|
|
|
210
210
|
let next: string;
|
|
211
211
|
}
|
|
212
212
|
namespace appNavigator {
|
|
213
|
-
let title: string;
|
|
213
|
+
export let title: string;
|
|
214
|
+
export let admin: string;
|
|
215
|
+
let agent_1: string;
|
|
216
|
+
export { agent_1 as agent };
|
|
217
|
+
let supervisor_1: string;
|
|
218
|
+
export { supervisor_1 as supervisor };
|
|
219
|
+
export let audit: string;
|
|
220
|
+
export let history: string;
|
|
221
|
+
export let grafana: string;
|
|
222
|
+
export let crm: string;
|
|
214
223
|
}
|
|
215
224
|
namespace headerActions {
|
|
216
225
|
export let account: string;
|
|
@@ -294,8 +303,45 @@ declare namespace _default {
|
|
|
294
303
|
export { min_1 as min };
|
|
295
304
|
export let unlimited: string;
|
|
296
305
|
}
|
|
306
|
+
namespace statusSelectErrorPopup {
|
|
307
|
+
let title_6: string;
|
|
308
|
+
export { title_6 as title };
|
|
309
|
+
export let message: string;
|
|
310
|
+
}
|
|
311
|
+
}
|
|
312
|
+
namespace saveFailedPopup {
|
|
313
|
+
let title_7: string;
|
|
314
|
+
export { title_7 as title };
|
|
315
|
+
export let label: string;
|
|
316
|
+
export let exportToJson: string;
|
|
317
|
+
}
|
|
318
|
+
namespace filters {
|
|
319
|
+
namespace datetime {
|
|
320
|
+
let today: string;
|
|
321
|
+
let thisWeek: string;
|
|
322
|
+
let thisMonth: string;
|
|
323
|
+
let custom: string;
|
|
324
|
+
}
|
|
297
325
|
}
|
|
298
326
|
}
|
|
327
|
+
export namespace systemNotifications {
|
|
328
|
+
namespace success {
|
|
329
|
+
export function update({ named }: {
|
|
330
|
+
named: any;
|
|
331
|
+
}): string;
|
|
332
|
+
export function create({ named }: {
|
|
333
|
+
named: any;
|
|
334
|
+
}): string;
|
|
335
|
+
export function _delete_1({ named }: {
|
|
336
|
+
named: any;
|
|
337
|
+
}): string;
|
|
338
|
+
export { _delete_1 as delete };
|
|
339
|
+
}
|
|
340
|
+
}
|
|
341
|
+
export namespace errorNotifications {
|
|
342
|
+
let chatHistoryApi: string;
|
|
343
|
+
let markChatProcessed: string;
|
|
344
|
+
}
|
|
299
345
|
}
|
|
300
346
|
export default _default;
|
|
301
347
|
import CrmSections from '../../enums/WebitelApplications/CrmSections.enum.js';
|
|
@@ -10,6 +10,6 @@ declare function userinfo(instance: any): {
|
|
|
10
10
|
permissions: import("../v2/types/UserAccess").GlobalAccessApiResponseItem[];
|
|
11
11
|
userId: string;
|
|
12
12
|
}>;
|
|
13
|
-
logout: () => Promise<any
|
|
13
|
+
logout: () => Promise<import("axios").AxiosResponse<any, any>>;
|
|
14
14
|
getUiVisibilityAccess: () => Promise<import("../v2/types/UserAccess").VisibilityAccess>;
|
|
15
15
|
};
|
|
@@ -7,5 +7,5 @@ declare const getSession: () => Promise<{
|
|
|
7
7
|
userId: string;
|
|
8
8
|
}>;
|
|
9
9
|
declare const getUiVisibilityAccess: () => Promise<VisibilityAccess>;
|
|
10
|
-
declare const logout: () => Promise<any
|
|
10
|
+
declare const logout: () => Promise<import("axios").AxiosResponse<any, any>>;
|
|
11
11
|
export { getSession, getUiVisibilityAccess, logout, setInstance };
|
|
@@ -5,17 +5,16 @@ declare const popover: {
|
|
|
5
5
|
background: string;
|
|
6
6
|
borderColor: string;
|
|
7
7
|
color: string;
|
|
8
|
-
shadow: string;
|
|
9
8
|
};
|
|
10
9
|
dark: {
|
|
11
10
|
background: string;
|
|
12
11
|
borderColor: string;
|
|
13
12
|
color: string;
|
|
14
|
-
shadow: string;
|
|
15
13
|
};
|
|
16
14
|
};
|
|
17
15
|
padding: string;
|
|
18
16
|
gutter: string;
|
|
19
17
|
arrowOffset: string;
|
|
20
18
|
borderRadius: string;
|
|
19
|
+
shadow: string;
|
|
21
20
|
};
|
|
@@ -5,14 +5,12 @@ declare const tooltip: {
|
|
|
5
5
|
root: {
|
|
6
6
|
background: string;
|
|
7
7
|
color: string;
|
|
8
|
-
shadow: string;
|
|
9
8
|
};
|
|
10
9
|
};
|
|
11
10
|
dark: {
|
|
12
11
|
root: {
|
|
13
12
|
background: string;
|
|
14
13
|
color: string;
|
|
15
|
-
shadow: string;
|
|
16
14
|
};
|
|
17
15
|
};
|
|
18
16
|
};
|
|
@@ -20,4 +18,5 @@ declare const tooltip: {
|
|
|
20
18
|
gutter: string;
|
|
21
19
|
padding: string;
|
|
22
20
|
borderRadius: string;
|
|
21
|
+
shadow: string;
|
|
23
22
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export {
|
|
1
|
+
export {};
|
|
@@ -3,6 +3,6 @@ export const SortSymbols: Readonly<{
|
|
|
3
3
|
DESC: "desc";
|
|
4
4
|
NONE: any;
|
|
5
5
|
}>;
|
|
6
|
-
export function sortToQueryAdapter(order: any): "" | "
|
|
6
|
+
export function sortToQueryAdapter(order: any): "" | "-" | "+";
|
|
7
7
|
export function queryToSortAdapter(order: any): any;
|
|
8
8
|
export function getNextSortOrder(sort: any): any;
|
|
@@ -1,2 +0,0 @@
|
|
|
1
|
-
declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
2
|
-
export default _default;
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
2
|
-
color: {
|
|
3
|
-
type: StringConstructor;
|
|
4
|
-
default: string;
|
|
5
|
-
description: string;
|
|
6
|
-
};
|
|
7
|
-
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
8
|
-
color: {
|
|
9
|
-
type: StringConstructor;
|
|
10
|
-
default: string;
|
|
11
|
-
description: string;
|
|
12
|
-
};
|
|
13
|
-
}>> & Readonly<{}>, {
|
|
14
|
-
color: string;
|
|
15
|
-
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
16
|
-
export default _default;
|