@webitel/ui-sdk 25.12.84 → 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.84",
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",
@@ -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) => {