@webitel/ui-sdk 25.8.23 → 25.8.24

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.
Files changed (33) hide show
  1. package/package.json +1 -1
  2. package/src/locale/en/en.js +1 -1
  3. package/src/locale/es/es.js +1 -1
  4. package/src/locale/i18n.js +2 -2
  5. package/src/locale/kz/kz.js +1 -1
  6. package/src/locale/ru/ru.js +1 -1
  7. package/src/locale/{ua/ua.js → uk/uk.js} +3 -3
  8. package/types/components/wt-action-bar/WtActionBarActionsOrder.d.ts +2 -2
  9. package/types/components/wt-action-bar/wt-action-bar.vue.d.ts +15 -15
  10. package/types/components/wt-button-select/wt-button-select.vue.d.ts +2 -2
  11. package/types/components/wt-confirm-dialog/wt-confirm-dialog.vue.d.ts +2 -2
  12. package/types/components/wt-intersection-observer/wt-intersection-observer.vue.d.ts +2 -2
  13. package/types/components/wt-loader/_internals/wt-loader--md.vue.d.ts +2 -0
  14. package/types/components/wt-loader/_internals/wt-loader--sm.vue.d.ts +16 -0
  15. package/types/components/wt-player/wt-player.vue.d.ts +1 -1
  16. package/types/components/wt-table/wt-table.vue.d.ts +1 -1
  17. package/types/components/wt-timepicker/wt-timepicker.vue.d.ts +1 -1
  18. package/types/locale/en/en.d.ts +1 -1
  19. package/types/locale/es/es.d.ts +1 -1
  20. package/types/locale/i18n.d.ts +6 -6
  21. package/types/locale/kz/kz.d.ts +1 -1
  22. package/types/locale/ru/ru.d.ts +1 -1
  23. package/types/locale/ua/ua.d.ts +0 -5
  24. package/types/locale/uk/uk.d.ts +916 -0
  25. package/types/modules/Userinfo/api/userinfo.d.ts +1 -1
  26. package/types/modules/Userinfo/v2/api/UserinfoAPI.d.ts +1 -1
  27. package/types/plugins/primevue/theme/semantic/color-scheme/color-schema.d.ts +1189 -0
  28. package/types/plugins/primevue/theme/semantic/color-scheme/dark-color.d.ts +162 -0
  29. package/types/plugins/primevue/theme/semantic/color-scheme/light-color.d.ts +162 -0
  30. package/types/plugins/primevue/theme/semantic/color-scheme/palette.d.ts +435 -0
  31. package/types/plugins/primevue/theme/semantic/semantic.d.ts +5 -0
  32. package/types/scripts/caseConverters.d.ts +1 -1
  33. package/types/scripts/sortQueryAdapters.d.ts +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@webitel/ui-sdk",
3
- "version": "25.8.23",
3
+ "version": "25.8.24",
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,7 +55,7 @@ export default {
55
55
  en: 'English',
56
56
  es: 'Español',
57
57
  ru: 'Русский',
58
- ua: 'Українська',
58
+ uk: 'Українська',
59
59
  kz: 'Қазақ',
60
60
  },
61
61
  from: 'From',
@@ -36,7 +36,7 @@ export default {
36
36
  en: 'English',
37
37
  es: 'Español',
38
38
  ru: 'Русский',
39
- ua: 'Українська',
39
+ uk: 'Українська',
40
40
  kz: 'Қазақ',
41
41
  },
42
42
  from: 'De',
@@ -4,13 +4,13 @@ import en from './en/en.js';
4
4
  import es from './es/es.js';
5
5
  import kz from './kz/kz.js';
6
6
  import ru from './ru/ru.js';
7
- import ua from './ua/ua.js';
7
+ import uk from './uk/uk.js';
8
8
 
9
9
  const messages = {
10
10
  en,
11
11
  es,
12
12
  ru,
13
- ua,
13
+ uk,
14
14
  kz,
15
15
  };
16
16
 
@@ -39,7 +39,7 @@ export default {
39
39
  en: 'English',
40
40
  es: 'Español',
41
41
  ru: 'Орысша',
42
- ua: 'Українська',
42
+ uk: 'Українська',
43
43
  kz: 'Қазақ',
44
44
  },
45
45
  from: 'Бастап',
@@ -55,7 +55,7 @@ export default {
55
55
  en: 'English',
56
56
  es: 'Español',
57
57
  ru: 'Русский',
58
- ua: 'Українська',
58
+ uk: 'Українська',
59
59
  kz: 'Қазақ',
60
60
  },
61
61
  from: 'От',
@@ -55,7 +55,7 @@ export default {
55
55
  en: 'English',
56
56
  es: 'Español',
57
57
  ru: 'Русский',
58
- ua: 'Українська',
58
+ uk: 'Українська',
59
59
  kz: 'Қазақ',
60
60
  },
61
61
  from: 'Від',
@@ -700,6 +700,6 @@ export default {
700
700
  },
701
701
  errorNotifications: {
702
702
  chatHistoryApi: 'Сталася помилка завантаження історії чату',
703
- markChatProcessed: 'Не вдалося перемістити чат у “Закриті”',
703
+ markChatProcessed: 'Не вдалося перемістити чат у "Закриті"',
704
704
  },
705
- };
705
+ };
@@ -1,2 +1,2 @@
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")[];
1
+ export const tableActionsOrder: ("filters" | "add" | "delete" | "refresh" | "upload" | "download" | "copy" | "columns" | "variables" | "add-contact")[];
2
+ export const sectionActionsOrder: ("filters" | "add" | "delete" | "refresh" | "upload" | "download" | "copy" | "columns" | "variables" | "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;
27
22
  filters?: (props: {
28
- action: "delete" | "filters" | "add" | "variables" | "refresh" | "upload" | "download" | "copy" | "columns" | "add-contact";
23
+ action: "filters" | "add" | "delete" | "refresh" | "upload" | "download" | "copy" | "columns" | "variables" | "add-contact";
29
24
  size: string;
30
25
  onClick: () => void;
31
26
  }) => any;
32
27
  add?: (props: {
33
- action: "delete" | "filters" | "add" | "variables" | "refresh" | "upload" | "download" | "copy" | "columns" | "add-contact";
28
+ action: "filters" | "add" | "delete" | "refresh" | "upload" | "download" | "copy" | "columns" | "variables" | "add-contact";
34
29
  size: string;
35
30
  onClick: () => void;
36
31
  }) => any;
37
- variables?: (props: {
38
- action: "delete" | "filters" | "add" | "variables" | "refresh" | "upload" | "download" | "copy" | "columns" | "add-contact";
32
+ delete?: (props: {
33
+ action: "filters" | "add" | "delete" | "refresh" | "upload" | "download" | "copy" | "columns" | "variables" | "add-contact";
39
34
  size: string;
40
35
  onClick: () => void;
41
36
  }) => any;
42
37
  refresh?: (props: {
43
- action: "delete" | "filters" | "add" | "variables" | "refresh" | "upload" | "download" | "copy" | "columns" | "add-contact";
38
+ action: "filters" | "add" | "delete" | "refresh" | "upload" | "download" | "copy" | "columns" | "variables" | "add-contact";
44
39
  size: string;
45
40
  onClick: () => void;
46
41
  }) => any;
47
42
  upload?: (props: {
48
- action: "delete" | "filters" | "add" | "variables" | "refresh" | "upload" | "download" | "copy" | "columns" | "add-contact";
43
+ action: "filters" | "add" | "delete" | "refresh" | "upload" | "download" | "copy" | "columns" | "variables" | "add-contact";
49
44
  size: string;
50
45
  onClick: () => void;
51
46
  }) => any;
52
47
  download?: (props: {
53
- action: "delete" | "filters" | "add" | "variables" | "refresh" | "upload" | "download" | "copy" | "columns" | "add-contact";
48
+ action: "filters" | "add" | "delete" | "refresh" | "upload" | "download" | "copy" | "columns" | "variables" | "add-contact";
54
49
  size: string;
55
50
  onClick: () => void;
56
51
  }) => any;
57
52
  copy?: (props: {
58
- action: "delete" | "filters" | "add" | "variables" | "refresh" | "upload" | "download" | "copy" | "columns" | "add-contact";
53
+ action: "filters" | "add" | "delete" | "refresh" | "upload" | "download" | "copy" | "columns" | "variables" | "add-contact";
59
54
  size: string;
60
55
  onClick: () => void;
61
56
  }) => any;
62
57
  columns?: (props: {
63
- action: "delete" | "filters" | "add" | "variables" | "refresh" | "upload" | "download" | "copy" | "columns" | "add-contact";
58
+ action: "filters" | "add" | "delete" | "refresh" | "upload" | "download" | "copy" | "columns" | "variables" | "add-contact";
59
+ size: string;
60
+ onClick: () => void;
61
+ }) => any;
62
+ variables?: (props: {
63
+ action: "filters" | "add" | "delete" | "refresh" | "upload" | "download" | "copy" | "columns" | "variables" | "add-contact";
64
64
  size: string;
65
65
  onClick: () => void;
66
66
  }) => any;
67
67
  "add-contact"?: (props: {
68
- action: "delete" | "filters" | "add" | "variables" | "refresh" | "upload" | "download" | "copy" | "columns" | "add-contact";
68
+ action: "filters" | "add" | "delete" | "refresh" | "upload" | "download" | "copy" | "columns" | "variables" | "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
- options: unknown[];
9
8
  color: string;
9
+ options: unknown[];
10
10
  disabled: boolean;
11
11
  $props: {
12
- readonly options?: unknown[];
13
12
  readonly color?: string;
13
+ readonly options?: unknown[];
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;
10
9
  deleteMessage: string;
11
10
  subject: string;
11
+ callback: Function;
12
12
  $props: {
13
13
  readonly title?: string;
14
- readonly callback?: Function;
15
14
  readonly deleteMessage?: string;
16
15
  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
- next: Function;
4
3
  loading: boolean;
4
+ next: Function;
5
5
  $props: {
6
- readonly next?: Function;
7
6
  readonly loading?: boolean;
7
+ readonly next?: Function;
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;
@@ -0,0 +1,2 @@
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;
@@ -0,0 +1,16 @@
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;
@@ -96,7 +96,6 @@ 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;
100
99
  download: string | boolean | Function;
101
100
  autoplay: boolean;
102
101
  loop: boolean;
@@ -106,5 +105,6 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
106
105
  invertTime: boolean;
107
106
  resetVolume: boolean;
108
107
  closable: boolean;
108
+ position: string;
109
109
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
110
110
  export default _default;
@@ -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
- headers: unknown[];
125
124
  data: unknown[];
125
+ headers: 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
- format: string;
142
141
  dateMode: boolean;
142
+ format: string;
143
143
  noLabel: boolean;
144
144
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
145
145
  export default _default;
@@ -38,7 +38,7 @@ declare namespace _default {
38
38
  let en: string;
39
39
  let es: string;
40
40
  let ru: string;
41
- let ua: string;
41
+ let uk: string;
42
42
  let kz: string;
43
43
  }
44
44
  export let from: string;
@@ -24,7 +24,7 @@ declare namespace _default {
24
24
  let en: string;
25
25
  let es: string;
26
26
  let ru: string;
27
- let ua: string;
27
+ let uk: string;
28
28
  let kz: string;
29
29
  }
30
30
  export let from: string;
@@ -35,7 +35,7 @@ declare const _default: import("vue-i18n").I18n<{
35
35
  en: string;
36
36
  es: string;
37
37
  ru: string;
38
- ua: string;
38
+ uk: string;
39
39
  kz: string;
40
40
  };
41
41
  from: string;
@@ -858,7 +858,7 @@ declare const _default: import("vue-i18n").I18n<{
858
858
  en: string;
859
859
  es: string;
860
860
  ru: string;
861
- ua: string;
861
+ uk: string;
862
862
  kz: string;
863
863
  };
864
864
  from: string;
@@ -1092,7 +1092,7 @@ declare const _default: import("vue-i18n").I18n<{
1092
1092
  en: string;
1093
1093
  es: string;
1094
1094
  ru: string;
1095
- ua: string;
1095
+ uk: string;
1096
1096
  kz: string;
1097
1097
  };
1098
1098
  from: string;
@@ -1891,7 +1891,7 @@ declare const _default: import("vue-i18n").I18n<{
1891
1891
  markChatProcessed: string;
1892
1892
  };
1893
1893
  };
1894
- ua: {
1894
+ uk: {
1895
1895
  reusable: {
1896
1896
  comment: string;
1897
1897
  replace: string;
@@ -1925,7 +1925,7 @@ declare const _default: import("vue-i18n").I18n<{
1925
1925
  en: string;
1926
1926
  es: string;
1927
1927
  ru: string;
1928
- ua: string;
1928
+ uk: string;
1929
1929
  kz: string;
1930
1930
  };
1931
1931
  from: string;
@@ -2750,7 +2750,7 @@ declare const _default: import("vue-i18n").I18n<{
2750
2750
  en: string;
2751
2751
  es: string;
2752
2752
  ru: string;
2753
- ua: string;
2753
+ uk: string;
2754
2754
  kz: string;
2755
2755
  };
2756
2756
  from: string;
@@ -28,7 +28,7 @@ declare namespace _default {
28
28
  let en: string;
29
29
  let es: string;
30
30
  let ru: string;
31
- let ua: string;
31
+ let uk: string;
32
32
  let kz: string;
33
33
  }
34
34
  export let from: string;
@@ -36,7 +36,7 @@ declare namespace _default {
36
36
  let en: string;
37
37
  let es: string;
38
38
  let ru: string;
39
- let ua: string;
39
+ let uk: string;
40
40
  let kz: string;
41
41
  }
42
42
  export let from: string;
@@ -200,11 +200,6 @@ declare namespace _default {
200
200
  let infobip_whatsapp: string;
201
201
  let custom: string;
202
202
  }
203
- export namespace quickReplies {
204
- let quickReplies_1: string;
205
- export { quickReplies_1 as quickReplies };
206
- export let quickRepliesEmpty: string;
207
- }
208
203
  }
209
204
  export namespace channel_1 {
210
205
  let state_1: {