@webitel/ui-sdk 25.10.47 → 25.10.49
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.css +1 -1
- package/dist/ui-sdk.js +3473 -3439
- package/dist/ui-sdk.umd.cjs +36 -36
- package/package.json +1 -1
- package/src/components/wt-table/wt-table.vue +48 -2
- package/src/locale/en/en.js +5 -0
- package/src/locale/es/es.js +5 -0
- package/src/locale/kz/kz.js +5 -0
- package/src/locale/pl/pl.js +5 -0
- package/src/locale/ro/ro.js +5 -0
- package/src/locale/ru/ru.js +5 -0
- package/src/locale/uk/uk.js +5 -0
- package/src/locale/uz/uz.js +6 -0
- package/src/locale/vi/vi.js +6 -1
- package/types/components/wt-table/wt-table.vue.d.ts +24 -8
- package/types/locale/en/en.d.ts +5 -0
- package/types/locale/es/es.d.ts +5 -0
- package/types/locale/i18n.d.ts +45 -0
- package/types/locale/index.d.ts +45 -0
- package/types/locale/kz/kz.d.ts +5 -0
- package/types/locale/pl/pl.d.ts +5 -0
- package/types/locale/ro/ro.d.ts +5 -0
- package/types/locale/ru/ru.d.ts +5 -0
- package/types/locale/uk/uk.d.ts +5 -0
- package/types/locale/uz/uz.d.ts +5 -0
- package/types/locale/vi/vi.d.ts +5 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@webitel/ui-sdk",
|
|
3
|
-
"version": "25.10.
|
|
3
|
+
"version": "25.10.49",
|
|
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",
|
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
<p-table
|
|
3
3
|
:key="tableKey"
|
|
4
4
|
ref="table"
|
|
5
|
+
:expanded-rows="expandedRows"
|
|
5
6
|
:reorderable-columns="reorderableColumns"
|
|
6
7
|
:resizable-columns="resizableColumns"
|
|
7
8
|
:row-class="rowClass"
|
|
@@ -14,10 +15,32 @@
|
|
|
14
15
|
scroll-height="flex"
|
|
15
16
|
scrollable
|
|
16
17
|
@sort="sort"
|
|
18
|
+
@update:expanded-rows="expandedRows = $event"
|
|
17
19
|
@column-resize-end="columnResize"
|
|
18
20
|
@column-reorder="columnReorder"
|
|
19
21
|
@row-reorder="({dragIndex, dropIndex}) => emit('reorder:row', { oldIndex: dragIndex, newIndex: dropIndex })"
|
|
20
22
|
>
|
|
23
|
+
<p-column
|
|
24
|
+
v-if="rowExpansion"
|
|
25
|
+
:pt="{
|
|
26
|
+
columnresizer: {
|
|
27
|
+
class: {
|
|
28
|
+
'hidden': true
|
|
29
|
+
}
|
|
30
|
+
}
|
|
31
|
+
}"
|
|
32
|
+
body-style="width: 1%;"
|
|
33
|
+
column-key="row-expander"
|
|
34
|
+
header-style="width: 1%;"
|
|
35
|
+
>
|
|
36
|
+
<template #body="{ data: row }">
|
|
37
|
+
<wt-icon-btn
|
|
38
|
+
:disabled="props.rowExpansionDisabled(row)"
|
|
39
|
+
:icon="isRowExpanded(row) ? 'arrow-down' : 'arrow-right'"
|
|
40
|
+
@click.stop="toggleRow(row)"
|
|
41
|
+
/>
|
|
42
|
+
</template>
|
|
43
|
+
</p-column>
|
|
21
44
|
<p-column
|
|
22
45
|
v-if="rowReorder"
|
|
23
46
|
:pt="{
|
|
@@ -163,6 +186,11 @@
|
|
|
163
186
|
</div>
|
|
164
187
|
</template>
|
|
165
188
|
</p-column>
|
|
189
|
+
<template #expansion="{ data: row }">
|
|
190
|
+
<div>
|
|
191
|
+
<slot :item="row" name="expansion"></slot>
|
|
192
|
+
</div>
|
|
193
|
+
</template>
|
|
166
194
|
<template
|
|
167
195
|
v-if="isTableFooter"
|
|
168
196
|
#footer
|
|
@@ -218,10 +246,12 @@ interface Props extends DataTableProps{
|
|
|
218
246
|
* 'If true, restrict sprecific row reorder.'
|
|
219
247
|
*/
|
|
220
248
|
isRowReorderDisabled?: (row) => boolean;
|
|
249
|
+
rowExpansion?: boolean;
|
|
221
250
|
rowClass?: () => string;
|
|
222
251
|
rowStyle?: () => { [key: string]: string };
|
|
223
252
|
resizableColumns?: boolean
|
|
224
253
|
reorderableColumns?: boolean
|
|
254
|
+
rowExpansionDisabled?: (row: object) => boolean;
|
|
225
255
|
}
|
|
226
256
|
|
|
227
257
|
const props = withDefaults(defineProps<Props>(), {
|
|
@@ -233,11 +263,13 @@ const props = withDefaults(defineProps<Props>(), {
|
|
|
233
263
|
fixedActions: false,
|
|
234
264
|
headless: false,
|
|
235
265
|
rowReorder: false,
|
|
266
|
+
rowExpansion: false,
|
|
236
267
|
isRowReorderDisabled: () => false,
|
|
237
268
|
rowClass: () => '',
|
|
238
269
|
rowStyle: () => ({}),
|
|
239
270
|
resizableColumns: false,
|
|
240
271
|
reorderableColumns: false,
|
|
272
|
+
rowExpansionDisabled: () => false,
|
|
241
273
|
});
|
|
242
274
|
|
|
243
275
|
const { t } = useI18n();
|
|
@@ -248,6 +280,7 @@ const emit = defineEmits(['sort', 'update:selected', 'reorder:row', 'column-resi
|
|
|
248
280
|
|
|
249
281
|
const table = useTemplateRef('table');
|
|
250
282
|
const tableKey = ref(0);
|
|
283
|
+
const expandedRows = ref([]);
|
|
251
284
|
|
|
252
285
|
// table's columns that should be excluded from reorder
|
|
253
286
|
const excludeColumnsFromReorder = ['row-select', 'row-reorder', 'row-actions']
|
|
@@ -255,8 +288,8 @@ const excludeColumnsFromReorder = ['row-select', 'row-reorder', 'row-actions']
|
|
|
255
288
|
const _selected = computed(() => {
|
|
256
289
|
// _isSelected for backwards compatibility
|
|
257
290
|
return props.selectable
|
|
258
|
-
|
|
259
|
-
|
|
291
|
+
? props.selected || props.data.filter(item => item._isSelected)
|
|
292
|
+
: [];
|
|
260
293
|
});
|
|
261
294
|
|
|
262
295
|
const dataHeaders = computed(() => {
|
|
@@ -371,6 +404,19 @@ const columnReorder = () => {
|
|
|
371
404
|
tableKey.value += 1;
|
|
372
405
|
emit('column-reorder', newOrder)
|
|
373
406
|
}
|
|
407
|
+
|
|
408
|
+
const isRowExpanded = (row) => {
|
|
409
|
+
return expandedRows.value.some(r => r?.id === row?.id);
|
|
410
|
+
};
|
|
411
|
+
|
|
412
|
+
const toggleRow = (row) => {
|
|
413
|
+
const index = expandedRows.value.findIndex(r => r.id === row.id);
|
|
414
|
+
if (index !== -1) {
|
|
415
|
+
expandedRows.value.splice(index, 1);
|
|
416
|
+
} else {
|
|
417
|
+
expandedRows.value.push(row);
|
|
418
|
+
}
|
|
419
|
+
};
|
|
374
420
|
</script>
|
|
375
421
|
|
|
376
422
|
<style lang="scss">
|
package/src/locale/en/en.js
CHANGED
|
@@ -128,6 +128,11 @@ export default deepmerge({
|
|
|
128
128
|
column: 'Column | Columns',
|
|
129
129
|
notification: 'Notification | Notifications',
|
|
130
130
|
screencast: 'Screencast',
|
|
131
|
+
extension: 'Extension',
|
|
132
|
+
password: 'Password',
|
|
133
|
+
number: 'Number',
|
|
134
|
+
expireAt: 'Expire at',
|
|
135
|
+
destination: 'Destination',
|
|
131
136
|
},
|
|
132
137
|
// date-related texts
|
|
133
138
|
date: {
|
package/src/locale/es/es.js
CHANGED
|
@@ -124,6 +124,11 @@ export default {
|
|
|
124
124
|
column: 'Columna | Columnas',
|
|
125
125
|
notification: 'Notificación | Notificaciones',
|
|
126
126
|
screencast: 'Videotutorial de pantalla',
|
|
127
|
+
extension: 'Extensión',
|
|
128
|
+
password: 'Contraseña',
|
|
129
|
+
number: 'Número',
|
|
130
|
+
expireAt: 'Expira en',
|
|
131
|
+
destination: 'Destino',
|
|
127
132
|
},
|
|
128
133
|
date: {
|
|
129
134
|
sec: 'Seg',
|
package/src/locale/kz/kz.js
CHANGED
|
@@ -126,6 +126,11 @@ export default {
|
|
|
126
126
|
column: 'Баған | Бағандар',
|
|
127
127
|
notification: 'Хабарландыру | Хабарландырулар',
|
|
128
128
|
screencast: 'Экран жазбасы',
|
|
129
|
+
extension: 'Кеңейту',
|
|
130
|
+
password: 'Құпия сөз',
|
|
131
|
+
number: 'Нөмір',
|
|
132
|
+
expireAt: 'Мерзімі',
|
|
133
|
+
destination: 'Мақсат',
|
|
129
134
|
},
|
|
130
135
|
// date-related texts
|
|
131
136
|
date: {
|
package/src/locale/pl/pl.js
CHANGED
|
@@ -126,6 +126,11 @@ export default {
|
|
|
126
126
|
column: 'Kolumna | Kolumny',
|
|
127
127
|
notification: 'Powiadomienie | Powiadomienia',
|
|
128
128
|
screencast: 'Nagranie ekranu',
|
|
129
|
+
extension: 'Rozszerzenie',
|
|
130
|
+
password: 'Hasło',
|
|
131
|
+
number: 'Numer',
|
|
132
|
+
expireAt: 'Wygasa',
|
|
133
|
+
destination: 'Cel',
|
|
129
134
|
},
|
|
130
135
|
// date-related texts
|
|
131
136
|
date: {
|
package/src/locale/ro/ro.js
CHANGED
|
@@ -126,6 +126,11 @@ export default {
|
|
|
126
126
|
column: 'Coloană | Coloane',
|
|
127
127
|
notification: 'Notificare | Notificări',
|
|
128
128
|
screencast: 'Înregistrare ecran',
|
|
129
|
+
extension: 'Extensie',
|
|
130
|
+
password: 'Parolă',
|
|
131
|
+
number: 'Număr',
|
|
132
|
+
expireAt: 'Expiră la',
|
|
133
|
+
destination: 'Destinație',
|
|
129
134
|
},
|
|
130
135
|
// date-related texts
|
|
131
136
|
date: {
|
package/src/locale/ru/ru.js
CHANGED
|
@@ -125,6 +125,11 @@ export default {
|
|
|
125
125
|
contact: 'Контакт | Контакты',
|
|
126
126
|
notification: 'Уведомление | Уведомления',
|
|
127
127
|
screencast: 'Запись экрана',
|
|
128
|
+
extension: 'Расширение',
|
|
129
|
+
password: 'Пароль',
|
|
130
|
+
number: 'Номер',
|
|
131
|
+
expireAt: 'Истекает',
|
|
132
|
+
destination: 'Назначение',
|
|
128
133
|
},
|
|
129
134
|
// date-related texts
|
|
130
135
|
date: {
|
package/src/locale/uk/uk.js
CHANGED
|
@@ -125,6 +125,11 @@ export default {
|
|
|
125
125
|
contact: 'Контакт | Контакти',
|
|
126
126
|
notification: 'Сповіщення',
|
|
127
127
|
screencast: 'Запис екрану',
|
|
128
|
+
extension: 'Розширення',
|
|
129
|
+
password: 'Пароль',
|
|
130
|
+
number: 'Номер',
|
|
131
|
+
expireAt: 'Закінчується',
|
|
132
|
+
destination: 'Призначення',
|
|
128
133
|
},
|
|
129
134
|
// date-related texts
|
|
130
135
|
date: {
|
package/src/locale/uz/uz.js
CHANGED
|
@@ -126,6 +126,12 @@ export default {
|
|
|
126
126
|
column: 'Ustun | Ustunlar',
|
|
127
127
|
notification: 'Bildirishnoma | Bildirishnomalar',
|
|
128
128
|
screencast: 'Ekran yozuvi',
|
|
129
|
+
extension: 'Kengaytma',
|
|
130
|
+
password: 'Parol',
|
|
131
|
+
number: 'Raqam',
|
|
132
|
+
expireAt: 'Muddati',
|
|
133
|
+
destination: 'Manzil',
|
|
134
|
+
|
|
129
135
|
},
|
|
130
136
|
// date-related texts
|
|
131
137
|
date: {
|
package/src/locale/vi/vi.js
CHANGED
|
@@ -125,7 +125,12 @@ export default {
|
|
|
125
125
|
contact: 'Liên hệ | Các liên hệ',
|
|
126
126
|
column: 'Cột | Các cột',
|
|
127
127
|
notification: 'Thông báo | Các thông báo',
|
|
128
|
-
screencast: '
|
|
128
|
+
screencast: 'Ghi màn hình',
|
|
129
|
+
extension: 'Mở rộng',
|
|
130
|
+
password: 'Mật khẩu',
|
|
131
|
+
number: 'Số',
|
|
132
|
+
expireAt: 'Hết hạn',
|
|
133
|
+
destination: 'Điểm đến',
|
|
129
134
|
},
|
|
130
135
|
// date-related texts
|
|
131
136
|
date: {
|
|
@@ -38,15 +38,18 @@ interface Props extends DataTableProps {
|
|
|
38
38
|
* 'If true, restrict sprecific row reorder.'
|
|
39
39
|
*/
|
|
40
40
|
isRowReorderDisabled?: (row: any) => boolean;
|
|
41
|
+
rowExpansion?: boolean;
|
|
41
42
|
rowClass?: () => string;
|
|
42
43
|
rowStyle?: () => {
|
|
43
44
|
[key: string]: string;
|
|
44
45
|
};
|
|
45
46
|
resizableColumns?: boolean;
|
|
46
47
|
reorderableColumns?: boolean;
|
|
48
|
+
rowExpansionDisabled?: (row: object) => boolean;
|
|
47
49
|
}
|
|
48
50
|
declare const emit: (event: "sort" | "update:selected" | "reorder:row" | "column-resize" | "column-reorder", ...args: any[]) => void;
|
|
49
51
|
declare const tableKey: import("vue").Ref<number, number>;
|
|
52
|
+
declare const expandedRows: import("vue").Ref<any[], any[]>;
|
|
50
53
|
declare const _selected: import("vue").ComputedRef<unknown[]>;
|
|
51
54
|
declare const dataHeaders: import("vue").ComputedRef<WtTableHeader[]>;
|
|
52
55
|
declare const isColumnHidden: (col: any) => boolean;
|
|
@@ -68,28 +71,35 @@ declare const columnResize: ({ element }: {
|
|
|
68
71
|
element: any;
|
|
69
72
|
}) => void;
|
|
70
73
|
declare const columnReorder: () => void;
|
|
74
|
+
declare const isRowExpanded: (row: any) => boolean;
|
|
75
|
+
declare const toggleRow: (row: any) => void;
|
|
71
76
|
declare const __VLS_ctx: InstanceType<__VLS_PickNotAny<typeof __VLS_self, new () => {}>>;
|
|
72
|
-
declare var
|
|
77
|
+
declare var __VLS_68: string, __VLS_69: {
|
|
73
78
|
index: any;
|
|
74
79
|
item: any;
|
|
75
|
-
},
|
|
80
|
+
}, __VLS_72: `${string}-footer`, __VLS_73: {}, __VLS_79: {}, __VLS_81: {
|
|
76
81
|
index: any;
|
|
77
82
|
item: any;
|
|
78
|
-
},
|
|
83
|
+
}, __VLS_83: {
|
|
84
|
+
item: any;
|
|
85
|
+
}, __VLS_85: {};
|
|
79
86
|
type __VLS_Slots = __VLS_PrettifyGlobal<__VLS_OmitStringIndex<typeof __VLS_ctx.$slots> & {
|
|
80
|
-
[K in NonNullable<typeof
|
|
87
|
+
[K in NonNullable<typeof __VLS_68>]?: (props: typeof __VLS_69) => any;
|
|
88
|
+
} & {
|
|
89
|
+
[K in NonNullable<typeof __VLS_72>]?: (props: typeof __VLS_73) => any;
|
|
81
90
|
} & {
|
|
82
|
-
|
|
91
|
+
'actions-header'?: (props: typeof __VLS_79) => any;
|
|
83
92
|
} & {
|
|
84
|
-
|
|
93
|
+
actions?: (props: typeof __VLS_81) => any;
|
|
85
94
|
} & {
|
|
86
|
-
|
|
95
|
+
expansion?: (props: typeof __VLS_83) => any;
|
|
87
96
|
} & {
|
|
88
|
-
footer?: (props: typeof
|
|
97
|
+
footer?: (props: typeof __VLS_85) => any;
|
|
89
98
|
}>;
|
|
90
99
|
declare const __VLS_self: import("vue").DefineComponent<Props, {
|
|
91
100
|
emit: typeof emit;
|
|
92
101
|
tableKey: typeof tableKey;
|
|
102
|
+
expandedRows: typeof expandedRows;
|
|
93
103
|
_selected: typeof _selected;
|
|
94
104
|
dataHeaders: typeof dataHeaders;
|
|
95
105
|
isColumnHidden: typeof isColumnHidden;
|
|
@@ -103,6 +113,8 @@ declare const __VLS_self: import("vue").DefineComponent<Props, {
|
|
|
103
113
|
handleSelection: typeof handleSelection;
|
|
104
114
|
columnResize: typeof columnResize;
|
|
105
115
|
columnReorder: typeof columnReorder;
|
|
116
|
+
isRowExpanded: typeof isRowExpanded;
|
|
117
|
+
toggleRow: typeof toggleRow;
|
|
106
118
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
107
119
|
sort: (...args: any[]) => void;
|
|
108
120
|
"update:selected": (...args: any[]) => void;
|
|
@@ -125,12 +137,14 @@ declare const __VLS_self: import("vue").DefineComponent<Props, {
|
|
|
125
137
|
headless: boolean;
|
|
126
138
|
rowReorder: boolean;
|
|
127
139
|
isRowReorderDisabled: (row: any) => boolean;
|
|
140
|
+
rowExpansion: boolean;
|
|
128
141
|
rowClass: () => string;
|
|
129
142
|
rowStyle: () => {
|
|
130
143
|
[key: string]: string;
|
|
131
144
|
};
|
|
132
145
|
resizableColumns: boolean;
|
|
133
146
|
reorderableColumns: boolean;
|
|
147
|
+
rowExpansionDisabled: (row: object) => boolean;
|
|
134
148
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
135
149
|
declare const __VLS_component: import("vue").DefineComponent<Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
136
150
|
sort: (...args: any[]) => void;
|
|
@@ -154,12 +168,14 @@ declare const __VLS_component: import("vue").DefineComponent<Props, {}, {}, {},
|
|
|
154
168
|
headless: boolean;
|
|
155
169
|
rowReorder: boolean;
|
|
156
170
|
isRowReorderDisabled: (row: any) => boolean;
|
|
171
|
+
rowExpansion: boolean;
|
|
157
172
|
rowClass: () => string;
|
|
158
173
|
rowStyle: () => {
|
|
159
174
|
[key: string]: string;
|
|
160
175
|
};
|
|
161
176
|
resizableColumns: boolean;
|
|
162
177
|
reorderableColumns: boolean;
|
|
178
|
+
rowExpansionDisabled: (row: object) => boolean;
|
|
163
179
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
164
180
|
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
165
181
|
export default _default;
|
package/types/locale/en/en.d.ts
CHANGED
package/types/locale/es/es.d.ts
CHANGED
|
@@ -106,6 +106,11 @@ declare namespace _default {
|
|
|
106
106
|
let column: string;
|
|
107
107
|
let notification: string;
|
|
108
108
|
let screencast: string;
|
|
109
|
+
let extension: string;
|
|
110
|
+
let password: string;
|
|
111
|
+
let number: string;
|
|
112
|
+
let expireAt: string;
|
|
113
|
+
let destination: string;
|
|
109
114
|
}
|
|
110
115
|
export namespace date {
|
|
111
116
|
let sec: string;
|
package/types/locale/i18n.d.ts
CHANGED
|
@@ -102,6 +102,11 @@ declare const _default: import("vue-i18n").I18n<{
|
|
|
102
102
|
column: string;
|
|
103
103
|
notification: string;
|
|
104
104
|
screencast: string;
|
|
105
|
+
extension: string;
|
|
106
|
+
password: string;
|
|
107
|
+
number: string;
|
|
108
|
+
expireAt: string;
|
|
109
|
+
destination: string;
|
|
105
110
|
};
|
|
106
111
|
date: {
|
|
107
112
|
sec: string;
|
|
@@ -838,6 +843,11 @@ declare const _default: import("vue-i18n").I18n<{
|
|
|
838
843
|
column: string;
|
|
839
844
|
notification: string;
|
|
840
845
|
screencast: string;
|
|
846
|
+
extension: string;
|
|
847
|
+
password: string;
|
|
848
|
+
number: string;
|
|
849
|
+
expireAt: string;
|
|
850
|
+
destination: string;
|
|
841
851
|
};
|
|
842
852
|
date: {
|
|
843
853
|
sec: string;
|
|
@@ -1701,6 +1711,11 @@ declare const _default: import("vue-i18n").I18n<{
|
|
|
1701
1711
|
contact: string;
|
|
1702
1712
|
notification: string;
|
|
1703
1713
|
screencast: string;
|
|
1714
|
+
extension: string;
|
|
1715
|
+
password: string;
|
|
1716
|
+
number: string;
|
|
1717
|
+
expireAt: string;
|
|
1718
|
+
destination: string;
|
|
1704
1719
|
};
|
|
1705
1720
|
date: {
|
|
1706
1721
|
sec: string;
|
|
@@ -2566,6 +2581,11 @@ declare const _default: import("vue-i18n").I18n<{
|
|
|
2566
2581
|
column: string;
|
|
2567
2582
|
notification: string;
|
|
2568
2583
|
screencast: string;
|
|
2584
|
+
extension: string;
|
|
2585
|
+
password: string;
|
|
2586
|
+
number: string;
|
|
2587
|
+
expireAt: string;
|
|
2588
|
+
destination: string;
|
|
2569
2589
|
};
|
|
2570
2590
|
date: {
|
|
2571
2591
|
sec: string;
|
|
@@ -3429,6 +3449,11 @@ declare const _default: import("vue-i18n").I18n<{
|
|
|
3429
3449
|
contact: string;
|
|
3430
3450
|
notification: string;
|
|
3431
3451
|
screencast: string;
|
|
3452
|
+
extension: string;
|
|
3453
|
+
password: string;
|
|
3454
|
+
number: string;
|
|
3455
|
+
expireAt: string;
|
|
3456
|
+
destination: string;
|
|
3432
3457
|
};
|
|
3433
3458
|
date: {
|
|
3434
3459
|
sec: string;
|
|
@@ -4294,6 +4319,11 @@ declare const _default: import("vue-i18n").I18n<{
|
|
|
4294
4319
|
column: string;
|
|
4295
4320
|
notification: string;
|
|
4296
4321
|
screencast: string;
|
|
4322
|
+
extension: string;
|
|
4323
|
+
password: string;
|
|
4324
|
+
number: string;
|
|
4325
|
+
expireAt: string;
|
|
4326
|
+
destination: string;
|
|
4297
4327
|
};
|
|
4298
4328
|
date: {
|
|
4299
4329
|
sec: string;
|
|
@@ -5159,6 +5189,11 @@ declare const _default: import("vue-i18n").I18n<{
|
|
|
5159
5189
|
column: string;
|
|
5160
5190
|
notification: string;
|
|
5161
5191
|
screencast: string;
|
|
5192
|
+
extension: string;
|
|
5193
|
+
password: string;
|
|
5194
|
+
number: string;
|
|
5195
|
+
expireAt: string;
|
|
5196
|
+
destination: string;
|
|
5162
5197
|
};
|
|
5163
5198
|
date: {
|
|
5164
5199
|
sec: string;
|
|
@@ -6024,6 +6059,11 @@ declare const _default: import("vue-i18n").I18n<{
|
|
|
6024
6059
|
column: string;
|
|
6025
6060
|
notification: string;
|
|
6026
6061
|
screencast: string;
|
|
6062
|
+
extension: string;
|
|
6063
|
+
password: string;
|
|
6064
|
+
number: string;
|
|
6065
|
+
expireAt: string;
|
|
6066
|
+
destination: string;
|
|
6027
6067
|
};
|
|
6028
6068
|
date: {
|
|
6029
6069
|
sec: string;
|
|
@@ -6889,6 +6929,11 @@ declare const _default: import("vue-i18n").I18n<{
|
|
|
6889
6929
|
column: string;
|
|
6890
6930
|
notification: string;
|
|
6891
6931
|
screencast: string;
|
|
6932
|
+
extension: string;
|
|
6933
|
+
password: string;
|
|
6934
|
+
number: string;
|
|
6935
|
+
expireAt: string;
|
|
6936
|
+
destination: string;
|
|
6892
6937
|
};
|
|
6893
6938
|
date: {
|
|
6894
6939
|
sec: string;
|
package/types/locale/index.d.ts
CHANGED
|
@@ -112,6 +112,11 @@ export declare const messages: {
|
|
|
112
112
|
column: string;
|
|
113
113
|
notification: string;
|
|
114
114
|
screencast: string;
|
|
115
|
+
extension: string;
|
|
116
|
+
password: string;
|
|
117
|
+
number: string;
|
|
118
|
+
expireAt: string;
|
|
119
|
+
destination: string;
|
|
115
120
|
};
|
|
116
121
|
date: {
|
|
117
122
|
sec: string;
|
|
@@ -848,6 +853,11 @@ export declare const messages: {
|
|
|
848
853
|
column: string;
|
|
849
854
|
notification: string;
|
|
850
855
|
screencast: string;
|
|
856
|
+
extension: string;
|
|
857
|
+
password: string;
|
|
858
|
+
number: string;
|
|
859
|
+
expireAt: string;
|
|
860
|
+
destination: string;
|
|
851
861
|
};
|
|
852
862
|
date: {
|
|
853
863
|
sec: string;
|
|
@@ -1711,6 +1721,11 @@ export declare const messages: {
|
|
|
1711
1721
|
contact: string;
|
|
1712
1722
|
notification: string;
|
|
1713
1723
|
screencast: string;
|
|
1724
|
+
extension: string;
|
|
1725
|
+
password: string;
|
|
1726
|
+
number: string;
|
|
1727
|
+
expireAt: string;
|
|
1728
|
+
destination: string;
|
|
1714
1729
|
};
|
|
1715
1730
|
date: {
|
|
1716
1731
|
sec: string;
|
|
@@ -2576,6 +2591,11 @@ export declare const messages: {
|
|
|
2576
2591
|
column: string;
|
|
2577
2592
|
notification: string;
|
|
2578
2593
|
screencast: string;
|
|
2594
|
+
extension: string;
|
|
2595
|
+
password: string;
|
|
2596
|
+
number: string;
|
|
2597
|
+
expireAt: string;
|
|
2598
|
+
destination: string;
|
|
2579
2599
|
};
|
|
2580
2600
|
date: {
|
|
2581
2601
|
sec: string;
|
|
@@ -3439,6 +3459,11 @@ export declare const messages: {
|
|
|
3439
3459
|
contact: string;
|
|
3440
3460
|
notification: string;
|
|
3441
3461
|
screencast: string;
|
|
3462
|
+
extension: string;
|
|
3463
|
+
password: string;
|
|
3464
|
+
number: string;
|
|
3465
|
+
expireAt: string;
|
|
3466
|
+
destination: string;
|
|
3442
3467
|
};
|
|
3443
3468
|
date: {
|
|
3444
3469
|
sec: string;
|
|
@@ -4304,6 +4329,11 @@ export declare const messages: {
|
|
|
4304
4329
|
column: string;
|
|
4305
4330
|
notification: string;
|
|
4306
4331
|
screencast: string;
|
|
4332
|
+
extension: string;
|
|
4333
|
+
password: string;
|
|
4334
|
+
number: string;
|
|
4335
|
+
expireAt: string;
|
|
4336
|
+
destination: string;
|
|
4307
4337
|
};
|
|
4308
4338
|
date: {
|
|
4309
4339
|
sec: string;
|
|
@@ -5169,6 +5199,11 @@ export declare const messages: {
|
|
|
5169
5199
|
column: string;
|
|
5170
5200
|
notification: string;
|
|
5171
5201
|
screencast: string;
|
|
5202
|
+
extension: string;
|
|
5203
|
+
password: string;
|
|
5204
|
+
number: string;
|
|
5205
|
+
expireAt: string;
|
|
5206
|
+
destination: string;
|
|
5172
5207
|
};
|
|
5173
5208
|
date: {
|
|
5174
5209
|
sec: string;
|
|
@@ -6034,6 +6069,11 @@ export declare const messages: {
|
|
|
6034
6069
|
column: string;
|
|
6035
6070
|
notification: string;
|
|
6036
6071
|
screencast: string;
|
|
6072
|
+
extension: string;
|
|
6073
|
+
password: string;
|
|
6074
|
+
number: string;
|
|
6075
|
+
expireAt: string;
|
|
6076
|
+
destination: string;
|
|
6037
6077
|
};
|
|
6038
6078
|
date: {
|
|
6039
6079
|
sec: string;
|
|
@@ -6899,6 +6939,11 @@ export declare const messages: {
|
|
|
6899
6939
|
column: string;
|
|
6900
6940
|
notification: string;
|
|
6901
6941
|
screencast: string;
|
|
6942
|
+
extension: string;
|
|
6943
|
+
password: string;
|
|
6944
|
+
number: string;
|
|
6945
|
+
expireAt: string;
|
|
6946
|
+
destination: string;
|
|
6902
6947
|
};
|
|
6903
6948
|
date: {
|
|
6904
6949
|
sec: string;
|
package/types/locale/kz/kz.d.ts
CHANGED
|
@@ -106,6 +106,11 @@ declare namespace _default {
|
|
|
106
106
|
let column: string;
|
|
107
107
|
let notification: string;
|
|
108
108
|
let screencast: string;
|
|
109
|
+
let extension: string;
|
|
110
|
+
let password: string;
|
|
111
|
+
let number: string;
|
|
112
|
+
let expireAt: string;
|
|
113
|
+
let destination: string;
|
|
109
114
|
}
|
|
110
115
|
export namespace date {
|
|
111
116
|
let sec: string;
|
package/types/locale/pl/pl.d.ts
CHANGED
|
@@ -106,6 +106,11 @@ declare namespace _default {
|
|
|
106
106
|
let column: string;
|
|
107
107
|
let notification: string;
|
|
108
108
|
let screencast: string;
|
|
109
|
+
let extension: string;
|
|
110
|
+
let password: string;
|
|
111
|
+
let number: string;
|
|
112
|
+
let expireAt: string;
|
|
113
|
+
let destination: string;
|
|
109
114
|
}
|
|
110
115
|
export namespace date {
|
|
111
116
|
let sec: string;
|
package/types/locale/ro/ro.d.ts
CHANGED
|
@@ -106,6 +106,11 @@ declare namespace _default {
|
|
|
106
106
|
let column: string;
|
|
107
107
|
let notification: string;
|
|
108
108
|
let screencast: string;
|
|
109
|
+
let extension: string;
|
|
110
|
+
let password: string;
|
|
111
|
+
let number: string;
|
|
112
|
+
let expireAt: string;
|
|
113
|
+
let destination: string;
|
|
109
114
|
}
|
|
110
115
|
export namespace date {
|
|
111
116
|
let sec: string;
|
package/types/locale/ru/ru.d.ts
CHANGED
|
@@ -104,6 +104,11 @@ declare namespace _default {
|
|
|
104
104
|
let contact: string;
|
|
105
105
|
let notification: string;
|
|
106
106
|
let screencast: string;
|
|
107
|
+
let extension: string;
|
|
108
|
+
let password: string;
|
|
109
|
+
let number: string;
|
|
110
|
+
let expireAt: string;
|
|
111
|
+
let destination: string;
|
|
107
112
|
}
|
|
108
113
|
export namespace date {
|
|
109
114
|
let sec: string;
|
package/types/locale/uk/uk.d.ts
CHANGED
|
@@ -104,6 +104,11 @@ declare namespace _default {
|
|
|
104
104
|
let contact: string;
|
|
105
105
|
let notification: string;
|
|
106
106
|
let screencast: string;
|
|
107
|
+
let extension: string;
|
|
108
|
+
let password: string;
|
|
109
|
+
let number: string;
|
|
110
|
+
let expireAt: string;
|
|
111
|
+
let destination: string;
|
|
107
112
|
}
|
|
108
113
|
export namespace date {
|
|
109
114
|
let sec: string;
|
package/types/locale/uz/uz.d.ts
CHANGED
|
@@ -106,6 +106,11 @@ declare namespace _default {
|
|
|
106
106
|
let column: string;
|
|
107
107
|
let notification: string;
|
|
108
108
|
let screencast: string;
|
|
109
|
+
let extension: string;
|
|
110
|
+
let password: string;
|
|
111
|
+
let number: string;
|
|
112
|
+
let expireAt: string;
|
|
113
|
+
let destination: string;
|
|
109
114
|
}
|
|
110
115
|
export namespace date {
|
|
111
116
|
let sec: string;
|
package/types/locale/vi/vi.d.ts
CHANGED
|
@@ -106,6 +106,11 @@ declare namespace _default {
|
|
|
106
106
|
let column: string;
|
|
107
107
|
let notification: string;
|
|
108
108
|
let screencast: string;
|
|
109
|
+
let extension: string;
|
|
110
|
+
let password: string;
|
|
111
|
+
let number: string;
|
|
112
|
+
let expireAt: string;
|
|
113
|
+
let destination: string;
|
|
109
114
|
}
|
|
110
115
|
export namespace date {
|
|
111
116
|
let sec: string;
|