@webitel/ui-sdk 25.12.83 → 25.12.85

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@webitel/ui-sdk",
3
- "version": "25.12.83",
3
+ "version": "25.12.85",
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",
@@ -272,6 +272,7 @@ export default deepmerge(
272
272
  [ChannelType.Email]: 'Email',
273
273
  [ChannelType.Chat]: 'Chat',
274
274
  [ChannelType.Job]: 'Task',
275
+ [ChannelType.OutCall]: 'Outbound call',
275
276
  },
276
277
  },
277
278
  calls: {
@@ -264,6 +264,7 @@ export default {
264
264
  [ChannelType.Email]: 'Correo electrónico',
265
265
  [ChannelType.Chat]: 'Chat',
266
266
  [ChannelType.Job]: 'Tarea',
267
+ [ChannelType.OutCall]: 'Llamada saliente',
267
268
  },
268
269
  },
269
270
  calls: {
@@ -269,6 +269,7 @@ export default {
269
269
  [ChannelType.Email]: 'Email',
270
270
  [ChannelType.Chat]: 'Чат',
271
271
  [ChannelType.Job]: 'Тапсырма',
272
+ [ChannelType.OutCall]: 'Шығыс қоңырау',
272
273
  },
273
274
  },
274
275
  calls: {
@@ -269,6 +269,7 @@ export default {
269
269
  [ChannelType.Email]: 'Email',
270
270
  [ChannelType.Chat]: 'Czat',
271
271
  [ChannelType.Job]: 'Zadanie',
272
+ [ChannelType.OutCall]: 'Połączenie wychodzące',
272
273
  },
273
274
  },
274
275
  calls: {
@@ -269,6 +269,7 @@ export default {
269
269
  [ChannelType.Email]: 'Email',
270
270
  [ChannelType.Chat]: 'Chat',
271
271
  [ChannelType.Job]: 'Sarcină',
272
+ [ChannelType.OutCall]: 'Apel ieșire',
272
273
  },
273
274
  },
274
275
  calls: {
@@ -269,6 +269,7 @@ export default {
269
269
  [ChannelType.Email]: 'Почта',
270
270
  [ChannelType.Chat]: 'Чат',
271
271
  [ChannelType.Job]: 'Задача',
272
+ [ChannelType.OutCall]: 'Исходящий звонок',
272
273
  },
273
274
  },
274
275
  cases: {
@@ -268,6 +268,7 @@ export default {
268
268
  [ChannelType.Email]: 'Пошта',
269
269
  [ChannelType.Chat]: 'Чат',
270
270
  [ChannelType.Job]: 'Задача',
271
+ [ChannelType.OutCall]: 'Вихідний дзвінок',
271
272
  },
272
273
  },
273
274
  calls: {
@@ -270,6 +270,7 @@ export default {
270
270
  [ChannelType.Email]: 'Email',
271
271
  [ChannelType.Chat]: 'Chat',
272
272
  [ChannelType.Job]: 'Vazifa',
273
+ [ChannelType.OutCall]: "Chiqish qo'ng'irog'i",
273
274
  },
274
275
  },
275
276
  calls: {
@@ -269,6 +269,7 @@ export default {
269
269
  [ChannelType.Email]: 'Email',
270
270
  [ChannelType.Chat]: 'Chat',
271
271
  [ChannelType.Job]: 'Tác vụ',
272
+ [ChannelType.OutCall]: 'Cuộc gọi đi',
272
273
  },
273
274
  },
274
275
  calls: {
@@ -108,7 +108,10 @@ import {
108
108
  import { useTableEmpty } from '@webitel/ui-sdk/src/modules/TableComponentModule/composables/useTableEmpty';
109
109
  import { storeToRefs } from 'pinia';
110
110
  import { computed } from 'vue';
111
+ import { DatetimeFormat } from 'vue-i18n';
111
112
 
113
+ import { FormatDateMode } from '../../../enums/FormatDateMode/FormatDateMode'
114
+ import { formatDate } from '../../../utils/formatDate'
112
115
  import PdfStatus from './pdf-status.vue';
113
116
  import PdfStatusPreview from './pdf-status-preview.vue';
114
117
 
@@ -180,7 +183,7 @@ initializeDefaultFilters();
180
183
 
181
184
  const prettifyTimestamp = (timestamp: string | number) => {
182
185
  if (!timestamp) return '';
183
- return new Date(+timestamp).toLocaleString();
186
+ return formatDate(+timestamp, FormatDateMode.DATETIME)
184
187
  };
185
188
 
186
189
  const isDownloadDisabled = (item: WebitelMediaExporterExportRecord) => {
@@ -240,6 +240,7 @@ declare const _default: {
240
240
  email: string;
241
241
  chat: string;
242
242
  task: string;
243
+ out_call: string;
243
244
  };
244
245
  };
245
246
  calls: {
@@ -262,6 +262,7 @@ declare namespace _default {
262
262
  let chat_3: string;
263
263
  export { chat_3 as chat };
264
264
  export let task: string;
265
+ export let out_call: string;
265
266
  }
266
267
  export { type_3 as type };
267
268
  }
@@ -241,6 +241,7 @@ declare const _default: import("vue-i18n").I18n<{
241
241
  email: string;
242
242
  chat: string;
243
243
  task: string;
244
+ out_call: string;
244
245
  };
245
246
  };
246
247
  calls: {
@@ -1033,6 +1034,7 @@ declare const _default: import("vue-i18n").I18n<{
1033
1034
  email: string;
1034
1035
  chat: string;
1035
1036
  task: string;
1037
+ out_call: string;
1036
1038
  };
1037
1039
  };
1038
1040
  calls: {
@@ -1959,6 +1961,7 @@ declare const _default: import("vue-i18n").I18n<{
1959
1961
  email: string;
1960
1962
  chat: string;
1961
1963
  task: string;
1964
+ out_call: string;
1962
1965
  };
1963
1966
  };
1964
1967
  cases: {
@@ -2887,6 +2890,7 @@ declare const _default: import("vue-i18n").I18n<{
2887
2890
  email: string;
2888
2891
  chat: string;
2889
2892
  task: string;
2893
+ out_call: string;
2890
2894
  };
2891
2895
  };
2892
2896
  calls: {
@@ -3813,6 +3817,7 @@ declare const _default: import("vue-i18n").I18n<{
3813
3817
  email: string;
3814
3818
  chat: string;
3815
3819
  task: string;
3820
+ out_call: string;
3816
3821
  };
3817
3822
  };
3818
3823
  calls: {
@@ -4741,6 +4746,7 @@ declare const _default: import("vue-i18n").I18n<{
4741
4746
  email: string;
4742
4747
  chat: string;
4743
4748
  task: string;
4749
+ out_call: string;
4744
4750
  };
4745
4751
  };
4746
4752
  calls: {
@@ -5669,6 +5675,7 @@ declare const _default: import("vue-i18n").I18n<{
5669
5675
  email: string;
5670
5676
  chat: string;
5671
5677
  task: string;
5678
+ out_call: string;
5672
5679
  };
5673
5680
  };
5674
5681
  calls: {
@@ -6598,6 +6605,7 @@ declare const _default: import("vue-i18n").I18n<{
6598
6605
  email: string;
6599
6606
  chat: string;
6600
6607
  task: string;
6608
+ out_call: string;
6601
6609
  };
6602
6610
  };
6603
6611
  calls: {
@@ -7526,6 +7534,7 @@ declare const _default: import("vue-i18n").I18n<{
7526
7534
  email: string;
7527
7535
  chat: string;
7528
7536
  task: string;
7537
+ out_call: string;
7529
7538
  };
7530
7539
  };
7531
7540
  calls: {
@@ -251,6 +251,7 @@ export declare const messages: {
251
251
  email: string;
252
252
  chat: string;
253
253
  task: string;
254
+ out_call: string;
254
255
  };
255
256
  };
256
257
  calls: {
@@ -1043,6 +1044,7 @@ export declare const messages: {
1043
1044
  email: string;
1044
1045
  chat: string;
1045
1046
  task: string;
1047
+ out_call: string;
1046
1048
  };
1047
1049
  };
1048
1050
  calls: {
@@ -1969,6 +1971,7 @@ export declare const messages: {
1969
1971
  email: string;
1970
1972
  chat: string;
1971
1973
  task: string;
1974
+ out_call: string;
1972
1975
  };
1973
1976
  };
1974
1977
  cases: {
@@ -2897,6 +2900,7 @@ export declare const messages: {
2897
2900
  email: string;
2898
2901
  chat: string;
2899
2902
  task: string;
2903
+ out_call: string;
2900
2904
  };
2901
2905
  };
2902
2906
  calls: {
@@ -3823,6 +3827,7 @@ export declare const messages: {
3823
3827
  email: string;
3824
3828
  chat: string;
3825
3829
  task: string;
3830
+ out_call: string;
3826
3831
  };
3827
3832
  };
3828
3833
  calls: {
@@ -4751,6 +4756,7 @@ export declare const messages: {
4751
4756
  email: string;
4752
4757
  chat: string;
4753
4758
  task: string;
4759
+ out_call: string;
4754
4760
  };
4755
4761
  };
4756
4762
  calls: {
@@ -5679,6 +5685,7 @@ export declare const messages: {
5679
5685
  email: string;
5680
5686
  chat: string;
5681
5687
  task: string;
5688
+ out_call: string;
5682
5689
  };
5683
5690
  };
5684
5691
  calls: {
@@ -6608,6 +6615,7 @@ export declare const messages: {
6608
6615
  email: string;
6609
6616
  chat: string;
6610
6617
  task: string;
6618
+ out_call: string;
6611
6619
  };
6612
6620
  };
6613
6621
  calls: {
@@ -7536,6 +7544,7 @@ export declare const messages: {
7536
7544
  email: string;
7537
7545
  chat: string;
7538
7546
  task: string;
7547
+ out_call: string;
7539
7548
  };
7540
7549
  };
7541
7550
  calls: {
@@ -262,6 +262,7 @@ declare namespace _default {
262
262
  let chat_3: string;
263
263
  export { chat_3 as chat };
264
264
  export let task: string;
265
+ export let out_call: string;
265
266
  }
266
267
  export { type_3 as type };
267
268
  }
@@ -262,6 +262,7 @@ declare namespace _default {
262
262
  let chat_3: string;
263
263
  export { chat_3 as chat };
264
264
  export let task: string;
265
+ export let out_call: string;
265
266
  }
266
267
  export { type_3 as type };
267
268
  }
@@ -262,6 +262,7 @@ declare namespace _default {
262
262
  let chat_3: string;
263
263
  export { chat_3 as chat };
264
264
  export let task: string;
265
+ export let out_call: string;
265
266
  }
266
267
  export { type_3 as type };
267
268
  }
@@ -260,6 +260,7 @@ declare namespace _default {
260
260
  let chat_3: string;
261
261
  export { chat_3 as chat };
262
262
  export let task: string;
263
+ export let out_call: string;
263
264
  }
264
265
  export { type_3 as type };
265
266
  }
@@ -260,6 +260,7 @@ declare namespace _default {
260
260
  let chat_3: string;
261
261
  export { chat_3 as chat };
262
262
  export let task: string;
263
+ export let out_call: string;
263
264
  }
264
265
  export { type_3 as type };
265
266
  }
@@ -263,6 +263,7 @@ declare namespace _default {
263
263
  let chat_3: string;
264
264
  export { chat_3 as chat };
265
265
  export let task: string;
266
+ export let out_call: string;
266
267
  }
267
268
  export { type_3 as type };
268
269
  }
@@ -262,6 +262,7 @@ declare namespace _default {
262
262
  let chat_3: string;
263
263
  export { chat_3 as chat };
264
264
  export let task: string;
265
+ export let out_call: string;
265
266
  }
266
267
  export { type_3 as type };
267
268
  }