@webitel/ui-sdk 25.10.42 → 25.10.44

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 (36) hide show
  1. package/dist/img/sprite/download-pdf.svg +10 -0
  2. package/dist/img/sprite/index.js +2 -0
  3. package/dist/ui-sdk.js +4285 -4278
  4. package/dist/ui-sdk.umd.cjs +147 -147
  5. package/package.json +1 -1
  6. package/src/assets/icons/sprite/download-pdf.svg +10 -0
  7. package/src/assets/icons/sprite/index.js +2 -0
  8. package/src/components/wt-action-bar/WtActionBarActionsOrder.js +1 -0
  9. package/src/components/wt-icon-action/iconMappings.js +1 -0
  10. package/src/components/wt-icon-action/wt-icon-action.vue +1 -0
  11. package/src/enums/IconAction/IconAction.enum.js +1 -0
  12. package/src/locale/en/en.js +6 -2
  13. package/src/locale/es/es.js +4 -0
  14. package/src/locale/index.ts +1 -1
  15. package/src/locale/kz/kz.js +4 -0
  16. package/src/locale/pl/pl.js +4 -0
  17. package/src/locale/ro/ro.js +4 -0
  18. package/src/locale/ru/ru.js +4 -0
  19. package/src/locale/uk/uk.js +4 -0
  20. package/src/locale/uz/uz.js +4 -0
  21. package/src/locale/vi/vi.js +4 -0
  22. package/types/components/wt-action-bar/WtActionBarActionsOrder.d.ts +2 -2
  23. package/types/components/wt-action-bar/wt-action-bar.vue.d.ts +15 -10
  24. package/types/components/wt-icon-action/iconMappings.d.ts +1 -0
  25. package/types/enums/IconAction/IconAction.enum.d.ts +1 -0
  26. package/types/locale/en/en.d.ts +18 -14
  27. package/types/locale/es/es.d.ts +4 -0
  28. package/types/locale/i18n.d.ts +50 -14
  29. package/types/locale/index.d.ts +51 -15
  30. package/types/locale/kz/kz.d.ts +4 -0
  31. package/types/locale/pl/pl.d.ts +4 -0
  32. package/types/locale/ro/ro.d.ts +4 -0
  33. package/types/locale/ru/ru.d.ts +4 -0
  34. package/types/locale/uk/uk.d.ts +4 -0
  35. package/types/locale/uz/uz.d.ts +4 -0
  36. package/types/locale/vi/vi.d.ts +4 -0
@@ -1,4 +1,4 @@
1
- export * from './_enums/TranslationLocale.enum';
1
+ export { TranslationLocale } from './_enums/TranslationLocale.enum';
2
2
  import en from './en/en';
3
3
  import es from './es/es';
4
4
  import kz from './kz/kz';
@@ -10,20 +10,6 @@ import uz from './uz/uz';
10
10
  import vi from './vi/vi';
11
11
  export declare const messages: {
12
12
  en: {
13
- reusable: {
14
- lang: {
15
- en: string;
16
- es: string;
17
- ru: string;
18
- uk: string;
19
- kz: string;
20
- vi: string;
21
- pl: string;
22
- ro: string;
23
- uz: string;
24
- };
25
- };
26
- } & {
27
13
  reusable: {
28
14
  comment: string;
29
15
  replace: string;
@@ -456,6 +442,7 @@ export declare const messages: {
456
442
  download: ({ linked }: {
457
443
  linked: any;
458
444
  }) => any;
445
+ "download-pdf": string;
459
446
  filters: ({ linked }: {
460
447
  linked: any;
461
448
  }) => any;
@@ -549,6 +536,9 @@ export declare const messages: {
549
536
  message: string;
550
537
  };
551
538
  };
539
+ pdfGeneration: {
540
+ generationStarted: string;
541
+ };
552
542
  saveFailedPopup: {
553
543
  title: string;
554
544
  label: string;
@@ -740,6 +730,20 @@ export declare const messages: {
740
730
  chatHistoryApi: string;
741
731
  markChatProcessed: string;
742
732
  };
733
+ } & {
734
+ reusable: {
735
+ lang: {
736
+ en: string;
737
+ es: string;
738
+ ru: string;
739
+ uk: string;
740
+ kz: string;
741
+ vi: string;
742
+ pl: string;
743
+ ro: string;
744
+ uz: string;
745
+ };
746
+ };
743
747
  };
744
748
  es: {
745
749
  reusable: {
@@ -1317,6 +1321,7 @@ export declare const messages: {
1317
1321
  download: ({ linked }: {
1318
1322
  linked: any;
1319
1323
  }) => any;
1324
+ "download-pdf": string;
1320
1325
  filters: ({ linked }: {
1321
1326
  linked: any;
1322
1327
  }) => any;
@@ -1410,6 +1415,9 @@ export declare const messages: {
1410
1415
  message: string;
1411
1416
  };
1412
1417
  };
1418
+ pdfGeneration: {
1419
+ generationStarted: string;
1420
+ };
1413
1421
  saveFailedPopup: {
1414
1422
  title: string;
1415
1423
  label: string;
@@ -2176,6 +2184,7 @@ export declare const messages: {
2176
2184
  download: ({ linked }: {
2177
2185
  linked: any;
2178
2186
  }) => any;
2187
+ "download-pdf": string;
2179
2188
  filters: ({ linked }: {
2180
2189
  linked: any;
2181
2190
  }) => any;
@@ -2269,6 +2278,9 @@ export declare const messages: {
2269
2278
  message: string;
2270
2279
  };
2271
2280
  };
2281
+ pdfGeneration: {
2282
+ generationStarted: string;
2283
+ };
2272
2284
  saveFailedPopup: {
2273
2285
  title: string;
2274
2286
  label: string;
@@ -3037,6 +3049,7 @@ export declare const messages: {
3037
3049
  download: ({ linked }: {
3038
3050
  linked: any;
3039
3051
  }) => any;
3052
+ "download-pdf": string;
3040
3053
  filters: ({ linked }: {
3041
3054
  linked: any;
3042
3055
  }) => any;
@@ -3130,6 +3143,9 @@ export declare const messages: {
3130
3143
  message: string;
3131
3144
  };
3132
3145
  };
3146
+ pdfGeneration: {
3147
+ generationStarted: string;
3148
+ };
3133
3149
  saveFailedPopup: {
3134
3150
  title: string;
3135
3151
  label: string;
@@ -3896,6 +3912,7 @@ export declare const messages: {
3896
3912
  download: ({ linked }: {
3897
3913
  linked: any;
3898
3914
  }) => any;
3915
+ "download-pdf": string;
3899
3916
  filters: ({ linked }: {
3900
3917
  linked: any;
3901
3918
  }) => any;
@@ -3989,6 +4006,9 @@ export declare const messages: {
3989
4006
  message: string;
3990
4007
  };
3991
4008
  };
4009
+ pdfGeneration: {
4010
+ generationStarted: string;
4011
+ };
3992
4012
  saveFailedPopup: {
3993
4013
  title: string;
3994
4014
  label: string;
@@ -4757,6 +4777,7 @@ export declare const messages: {
4757
4777
  download: ({ linked }: {
4758
4778
  linked: any;
4759
4779
  }) => any;
4780
+ "download-pdf": string;
4760
4781
  filters: ({ linked }: {
4761
4782
  linked: any;
4762
4783
  }) => any;
@@ -4850,6 +4871,9 @@ export declare const messages: {
4850
4871
  message: string;
4851
4872
  };
4852
4873
  };
4874
+ pdfGeneration: {
4875
+ generationStarted: string;
4876
+ };
4853
4877
  saveFailedPopup: {
4854
4878
  title: string;
4855
4879
  label: string;
@@ -5618,6 +5642,7 @@ export declare const messages: {
5618
5642
  download: ({ linked }: {
5619
5643
  linked: any;
5620
5644
  }) => any;
5645
+ "download-pdf": string;
5621
5646
  filters: ({ linked }: {
5622
5647
  linked: any;
5623
5648
  }) => any;
@@ -5711,6 +5736,9 @@ export declare const messages: {
5711
5736
  message: string;
5712
5737
  };
5713
5738
  };
5739
+ pdfGeneration: {
5740
+ generationStarted: string;
5741
+ };
5714
5742
  saveFailedPopup: {
5715
5743
  title: string;
5716
5744
  label: string;
@@ -6479,6 +6507,7 @@ export declare const messages: {
6479
6507
  download: ({ linked }: {
6480
6508
  linked: any;
6481
6509
  }) => any;
6510
+ "download-pdf": string;
6482
6511
  filters: ({ linked }: {
6483
6512
  linked: any;
6484
6513
  }) => any;
@@ -6572,6 +6601,9 @@ export declare const messages: {
6572
6601
  message: string;
6573
6602
  };
6574
6603
  };
6604
+ pdfGeneration: {
6605
+ generationStarted: string;
6606
+ };
6575
6607
  saveFailedPopup: {
6576
6608
  title: string;
6577
6609
  label: string;
@@ -7340,6 +7372,7 @@ export declare const messages: {
7340
7372
  download: ({ linked }: {
7341
7373
  linked: any;
7342
7374
  }) => any;
7375
+ "download-pdf": string;
7343
7376
  filters: ({ linked }: {
7344
7377
  linked: any;
7345
7378
  }) => any;
@@ -7433,6 +7466,9 @@ export declare const messages: {
7433
7466
  message: string;
7434
7467
  };
7435
7468
  };
7469
+ pdfGeneration: {
7470
+ generationStarted: string;
7471
+ };
7436
7472
  saveFailedPopup: {
7437
7473
  title: string;
7438
7474
  label: string;
@@ -606,6 +606,7 @@ declare namespace _default {
606
606
  download: ({ linked }: {
607
607
  linked: any;
608
608
  }) => any;
609
+ "download-pdf": string;
609
610
  filters: ({ linked }: {
610
611
  linked: any;
611
612
  }) => any;
@@ -714,6 +715,9 @@ declare namespace _default {
714
715
  export let message: string;
715
716
  }
716
717
  }
718
+ export namespace pdfGeneration {
719
+ let generationStarted: string;
720
+ }
717
721
  export namespace saveFailedPopup {
718
722
  let title_8: string;
719
723
  export { title_8 as title };
@@ -606,6 +606,7 @@ declare namespace _default {
606
606
  download: ({ linked }: {
607
607
  linked: any;
608
608
  }) => any;
609
+ "download-pdf": string;
609
610
  filters: ({ linked }: {
610
611
  linked: any;
611
612
  }) => any;
@@ -714,6 +715,9 @@ declare namespace _default {
714
715
  export let message: string;
715
716
  }
716
717
  }
718
+ export namespace pdfGeneration {
719
+ let generationStarted: string;
720
+ }
717
721
  export namespace saveFailedPopup {
718
722
  let title_8: string;
719
723
  export { title_8 as title };
@@ -606,6 +606,7 @@ declare namespace _default {
606
606
  download: ({ linked }: {
607
607
  linked: any;
608
608
  }) => any;
609
+ "download-pdf": string;
609
610
  filters: ({ linked }: {
610
611
  linked: any;
611
612
  }) => any;
@@ -714,6 +715,9 @@ declare namespace _default {
714
715
  export let message: string;
715
716
  }
716
717
  }
718
+ export namespace pdfGeneration {
719
+ let generationStarted: string;
720
+ }
717
721
  export namespace saveFailedPopup {
718
722
  let title_8: string;
719
723
  export { title_8 as title };
@@ -604,6 +604,7 @@ declare namespace _default {
604
604
  download: ({ linked }: {
605
605
  linked: any;
606
606
  }) => any;
607
+ "download-pdf": string;
607
608
  filters: ({ linked }: {
608
609
  linked: any;
609
610
  }) => any;
@@ -712,6 +713,9 @@ declare namespace _default {
712
713
  export let message: string;
713
714
  }
714
715
  }
716
+ export namespace pdfGeneration {
717
+ let generationStarted: string;
718
+ }
715
719
  export namespace saveFailedPopup {
716
720
  let title_8: string;
717
721
  export { title_8 as title };
@@ -604,6 +604,7 @@ declare namespace _default {
604
604
  download: ({ linked }: {
605
605
  linked: any;
606
606
  }) => any;
607
+ "download-pdf": string;
607
608
  filters: ({ linked }: {
608
609
  linked: any;
609
610
  }) => any;
@@ -712,6 +713,9 @@ declare namespace _default {
712
713
  export let message: string;
713
714
  }
714
715
  }
716
+ export namespace pdfGeneration {
717
+ let generationStarted: string;
718
+ }
715
719
  export namespace saveFailedPopup {
716
720
  let title_8: string;
717
721
  export { title_8 as title };
@@ -606,6 +606,7 @@ declare namespace _default {
606
606
  download: ({ linked }: {
607
607
  linked: any;
608
608
  }) => any;
609
+ "download-pdf": string;
609
610
  filters: ({ linked }: {
610
611
  linked: any;
611
612
  }) => any;
@@ -714,6 +715,9 @@ declare namespace _default {
714
715
  export let message: string;
715
716
  }
716
717
  }
718
+ export namespace pdfGeneration {
719
+ let generationStarted: string;
720
+ }
717
721
  export namespace saveFailedPopup {
718
722
  let title_8: string;
719
723
  export { title_8 as title };
@@ -606,6 +606,7 @@ declare namespace _default {
606
606
  download: ({ linked }: {
607
607
  linked: any;
608
608
  }) => any;
609
+ "download-pdf": string;
609
610
  filters: ({ linked }: {
610
611
  linked: any;
611
612
  }) => any;
@@ -714,6 +715,9 @@ declare namespace _default {
714
715
  export let message: string;
715
716
  }
716
717
  }
718
+ export namespace pdfGeneration {
719
+ let generationStarted: string;
720
+ }
717
721
  export namespace saveFailedPopup {
718
722
  let title_8: string;
719
723
  export { title_8 as title };