@webitel/ui-sdk 26.2.31 → 26.2.32

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/package.json +1 -1
  2. package/src/components/wt-vidstack-player/components/controls-group/controls-group.vue +20 -15
  3. package/src/components/wt-vidstack-player/components/panels/video-call-controls-panel/video-call-controls-panel.vue +76 -23
  4. package/src/modules/CallSession/modules/VideoCall/video-call.vue +188 -204
  5. package/src/modules/Userinfo/v2/mappings/mappings.ts +1 -1
  6. package/types/components/wt-action-bar/WtActionBarActionsOrder.d.ts +2 -2
  7. package/types/components/wt-action-bar/wt-action-bar.vue.d.ts +13 -13
  8. package/types/components/wt-table/wt-table.vue.d.ts +1 -1
  9. package/types/modules/CallSession/modules/VideoCall/video-call.vue.d.ts +1 -1
  10. package/types/plugins/primevue/theme/components/avatar/avatar.d.ts +28 -28
  11. package/types/scripts/caseConverters.d.ts +1 -1
  12. package/types/api/history/index.d.ts +0 -2
  13. package/types/api/history/transcript/callTranscript.d.ts +0 -15
  14. package/types/assets/icons/sprite/_index.d.ts +0 -2
  15. package/types/components/index.d.ts +0 -155
  16. package/types/components/wt-headline-nav/__tests__/wt-headline-nav.spec.d.ts +0 -1
  17. package/types/components/wt-headline-nav/wt-headline-nav.vue.d.ts +0 -7
  18. package/types/components/wt-icon/utils/iconsRepository.d.ts +0 -8
  19. package/types/components/wt-loader/_internals/wt-loader--md.vue.d.ts +0 -2
  20. package/types/components/wt-loader/_internals/wt-loader--sm.vue.d.ts +0 -16
  21. package/types/components/wt-vidstack-player/components/panels/media-control-panel/components/buttons/fullscreen-button.vue.d.ts +0 -6
  22. package/types/components/wt-vidstack-player/components/panels/media-control-panel/components/buttons/play-button.vue.d.ts +0 -2
  23. package/types/components/wt-vidstack-player/components/panels/media-control-panel/components/sliders/time-slider.vue.d.ts +0 -2
  24. package/types/components/wt-vidstack-player/components/panels/media-control-panel/components/time-group.vue.d.ts +0 -2
  25. package/types/components/wt-vidstack-player/components/panels/media-control-panel/media-control-panel.vue.d.ts +0 -2
  26. package/types/components/wt-vidstack-player/components/panels/screen-sharing-control-panel/screen-sharing-control-panel.vue.d.ts +0 -17
  27. package/types/components/wt-vidstack-player/types/ScreenshotStatus.d.ts +0 -1
  28. package/types/locale/ua/ua.d.ts +0 -911
  29. package/types/modules/FilesExport/scripts/generateMediaURL.d.ts +0 -2
  30. package/types/plugins/primevue/theme/extend/extend.d.ts +0 -5
  31. package/types/plugins/primevue/theme/extend/spacings/spacings.d.ts +0 -13
  32. package/types/plugins/primevue/theme/semantic/color-scheme/color-schema.d.ts +0 -1189
  33. package/types/plugins/primevue/theme/semantic/color-scheme/dark-color.d.ts +0 -162
  34. package/types/plugins/primevue/theme/semantic/color-scheme/light-color.d.ts +0 -162
  35. package/types/plugins/primevue/theme/semantic/color-scheme/palette.d.ts +0 -435
  36. package/types/plugins/primevue/theme/semantic/semantic.d.ts +0 -5
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@webitel/ui-sdk",
3
- "version": "26.2.31",
3
+ "version": "26.2.32",
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 biome:format:all || true) && npm run publish-lib",
@@ -9,7 +9,10 @@
9
9
  </media-controls-group>
10
10
  </template>
11
11
 
12
- <script setup lang="ts">
12
+ <script
13
+ setup
14
+ lang="ts"
15
+ >
13
16
  import { inject } from 'vue';
14
17
 
15
18
  import type { WtVidstackPlayerSizeProvider } from '../../types/WtVidstackPlayerSizeProvider';
@@ -17,33 +20,35 @@ import type { WtVidstackPlayerSizeProvider } from '../../types/WtVidstackPlayerS
17
20
  const { size } = inject<WtVidstackPlayerSizeProvider>('size');
18
21
  </script>
19
22
 
20
- <style scoped >.controls-group {
21
- display: flex;
23
+ <style scoped>
24
+ .controls-group {
25
+ display: flex;
22
26
  justify-content: center;
23
27
  max-width: fit-content;
24
28
  align-self: center;
25
29
  }
26
30
 
27
- .controls-group .controls-group--sm {
28
- width: 100%;
29
- max-width: 100%;
31
+ .controls-group.controls-group--sm {
32
+ width: 100%;
33
+ max-width: 100%;
30
34
 
31
- .controls-group__actions {
32
- border-top-left-radius: 0 !important;
33
- border-top-right-radius: 0 !important;
34
- gap: calc(var(--p-player-control-bar-sm-gap) * 2);
35
+ .controls-group__actions {
36
+ border-top-left-radius: 0 !important;
37
+ border-top-right-radius: 0 !important;
38
+ gap: calc(var(--p-player-control-bar-sm-gap) * 2);
39
+ }
35
40
  }
36
41
 
37
42
  .controls-group--md {
38
- align-self: center;
39
- }
43
+ align-self: center;
44
+ }
40
45
 
41
46
  .controls-group__actions {
42
- width: 100%;
47
+ width: 100%;
43
48
  display: flex;
44
49
  align-items: center;
45
50
  justify-content: center;
46
51
  background: var(--p-player-control-bar-background);
47
52
  box-shadow: var(--elevation-10);
48
- }
49
- }</style>
53
+ }
54
+ </style>
@@ -1,46 +1,99 @@
1
1
  <template>
2
2
  <controls-group class="video-call-controls-panel">
3
3
  <wt-button
4
- v-if="shownActionsMap[VideoCallAction.Screenshot]" :loading="isScreenshotLoading"
5
- :size="buttonSizeMap[size]" :icon="screenShotIcon" variant="outlined" color="secondary" rounded
6
- contains-icon @click="onScreenshotClick" />
4
+ v-if="shownActionsMap[VideoCallAction.Screenshot]"
5
+ :loading="isScreenshotLoading"
6
+ :size="buttonSizeMap[size]"
7
+ :icon="screenShotIcon"
8
+ variant="outlined"
9
+ color="secondary"
10
+ rounded
11
+ contains-icon
12
+ @click="onScreenshotClick"
13
+ />
7
14
 
8
15
  <wt-button
9
- v-if="shownActionsMap[VideoCallAction.Recordings]" :size="buttonSizeMap[size]" :icon="recordIcon"
10
- variant="outlined" color="secondary" rounded contains-icon @click="emit(VideoCallAction.Recordings)" />
16
+ v-if="shownActionsMap[VideoCallAction.Recordings]"
17
+ :size="buttonSizeMap[size]"
18
+ :icon="recordIcon"
19
+ variant="outlined"
20
+ color="secondary"
21
+ rounded
22
+ contains-icon
23
+ @click="emit(VideoCallAction.Recordings)"
24
+ />
11
25
 
12
26
  <wt-button
13
- v-if="shownActionsMap[VideoCallAction.Mic]" :disabled="!props['mic:accessed']"
14
- :size="buttonSizeMap[size]" :icon="microphoneIcon" :badge="micBadge" badge-severity="error"
15
- variant="outlined" color="secondary" badge-absolute-position rounded contains-icon
16
- @click="emit(VideoCallAction.Mic)" />
27
+ v-if="shownActionsMap[VideoCallAction.Mic]"
28
+ :disabled="!props['mic:accessed']"
29
+ :size="buttonSizeMap[size]"
30
+ :icon="microphoneIcon"
31
+ :badge="micBadge"
32
+ badge-severity="error"
33
+ variant="outlined"
34
+ color="secondary"
35
+ badge-absolute-position
36
+ rounded
37
+ contains-icon
38
+ @click="emit(VideoCallAction.Mic)"
39
+ />
17
40
 
18
41
  <wt-button
19
- v-if="shownActionsMap[VideoCallAction.Video]" :disabled="!props['video:accessed']"
20
- :size="buttonSizeMap[size]" :icon="videoCamIcon" :badge="videoBadge" badge-severity="error"
21
- variant="outlined" color="secondary" badge-absolute-position rounded contains-icon
22
- @click="emit(VideoCallAction.Video)" />
42
+ v-if="shownActionsMap[VideoCallAction.Video]"
43
+ :disabled="!props['video:accessed']"
44
+ :size="buttonSizeMap[size]"
45
+ :icon="videoCamIcon"
46
+ :badge="videoBadge"
47
+ badge-severity="error"
48
+ variant="outlined"
49
+ color="secondary"
50
+ badge-absolute-position
51
+ rounded
52
+ contains-icon
53
+ @click="emit(VideoCallAction.Video)"
54
+ />
23
55
 
24
56
  <wt-button
25
- v-if="shownActionsMap[VideoCallAction.Settings]" :size="buttonSizeMap[size]"
57
+ v-if="shownActionsMap[VideoCallAction.Settings]"
58
+ :size="buttonSizeMap[size]"
26
59
  :variant="props['actions:settings:pressed'] ? 'active' : 'outlined'"
27
- :disabled="props['actions:settings:disabled']" icon="settings" color="secondary" rounded contains-icon
28
- @click="emit(VideoCallAction.Settings)" />
60
+ :disabled="props['actions:settings:disabled']"
61
+ icon="settings"
62
+ color="secondary"
63
+ rounded
64
+ contains-icon
65
+ @click="emit(VideoCallAction.Settings)"
66
+ />
29
67
 
30
68
  <wt-button
31
- v-if="shownActionsMap[VideoCallAction.Chat]" :size="buttonSizeMap[size]"
32
- :variant="props['actions:chat:pressed'] ? 'active' : 'outlined'" icon="chat" color="secondary" rounded
33
- contains-icon @click="emit(VideoCallAction.Chat)" />
69
+ v-if="shownActionsMap[VideoCallAction.Chat]"
70
+ :size="buttonSizeMap[size]"
71
+ :variant="props['actions:chat:pressed'] ? 'active' : 'outlined'"
72
+ icon="chat"
73
+ color="secondary"
74
+ rounded
75
+ contains-icon
76
+ @click="emit(VideoCallAction.Chat)"
77
+ />
34
78
 
35
79
  <wt-button
36
- v-if="shownActionsMap[VideoCallAction.Hangup]" :size="buttonSizeMap[size]" icon="call-end--filled"
37
- color="error" rounded contains-icon @click="emit(VideoCallAction.Hangup)" />
80
+ v-if="shownActionsMap[VideoCallAction.Hangup]"
81
+ :size="buttonSizeMap[size]"
82
+ icon="call-end--filled"
83
+ color="error"
84
+ rounded
85
+ contains-icon
86
+ @click="emit(VideoCallAction.Hangup)"
87
+ />
38
88
  </controls-group>
39
89
  </template>
40
90
 
41
- <script setup lang="ts">
91
+ <script
92
+ setup
93
+ lang="ts"
94
+ >
42
95
  import { computed, inject, ref } from 'vue';
43
-
96
+ import WtButton from '../../../../../components/wt-button/wt-button.vue';
44
97
  import { ControlsGroup } from '../../../../../components/wt-vidstack-player/components';
45
98
  import { ComponentSize } from '../../../../../enums';
46
99
  import { VideoCallAction } from '../../../../../modules/CallSession/modules/VideoCall/enums/VideoCallAction.enum';
@@ -213,212 +213,196 @@ const senderVideoMutedIconSizes = {
213
213
  };
214
214
  </script>
215
215
 
216
- <style lang="scss" scoped>
217
- @use '@webitel/styleguide/typography' as *;
218
-
216
+ <style scoped>
219
217
  .video-call {
220
218
  flex: 0 0 auto;
219
+ }
220
+
221
+ .video-call-position--left-bottom.wt-vidstack-player--sm {
222
+ left: var(--spacing-sm);
223
+ bottom: var(--spacing-sm);
224
+ top: unset;
225
+ }
226
+
227
+ .video-call-position--left-bottom.wt-vidstack-player--md {
228
+ top: unset;
229
+ left: var(--spacing-sm);
230
+ bottom: var(--spacing-sm);
231
+ }
232
+
233
+ .video-call-position--right-bottom.wt-vidstack-player--sm {
234
+ top: unset;
235
+ right: var(--spacing-sm);
236
+ bottom: var(--spacing-sm);
237
+ }
238
+
239
+ .video-call-position--right-bottom.wt-vidstack-player--md {
240
+ top: unset;
241
+ right: var(--spacing-sm);
242
+ bottom: var(--spacing-sm);
243
+ }
244
+
245
+ .video-call-position--center.wt-vidstack-player {
246
+ position: absolute;
247
+ top: 50%;
248
+ left: 50%;
249
+ right: unset;
250
+ bottom: unset;
251
+ transform: translate(-50%, -50%);
252
+ }
253
+
254
+ .video-call-overlay {
255
+ width: 100%;
256
+ height: 100%;
257
+ display: block;
258
+ position: absolute;
259
+ left: 0;
260
+ top: 0;
261
+ z-index: -1;
262
+ background: var(--p-player-wrapper-background);
263
+ }
264
+
265
+ .video-call-content {
266
+ height: 100%;
267
+ padding: var(--p-player-counter-position-padding-sm);
268
+ display: flex;
269
+ justify-content: space-between;
270
+ align-items: flex-end;
271
+ position: absolute;
272
+ left: 0;
273
+ top: 0;
274
+ width: 100%;
275
+ }
276
+
277
+ .video-call-content--sm {
278
+ padding-bottom: calc(var(--p-player-control-bar-sm-height) + var(--p-player-counter-position-padding-sm));
279
+ }
280
+
281
+ .video-call-content-wrapper {
282
+ position: absolute;
283
+ display: flex;
284
+ flex-direction: column;
285
+ gap: var(--p-player-control-bar-sm-gap);
286
+ }
287
+
288
+ .video-call-content-wrapper--sm {
289
+ left: var(--p-player-counter-position-padding-sm);
290
+ bottom: calc(var(--p-player-counter-position-padding-sm) + var(--p-player-control-bar-sm-height));
291
+ }
292
+
293
+ .video-call-content-wrapper--md {
294
+ left: var(--p-player-counter-position-padding-md);
295
+ bottom: var(--p-player-counter-position-padding-md);
296
+ }
297
+
298
+ .video-call-content-wrapper--lg {
299
+ left: var(--p-player-counter-position-padding-lg);
300
+ bottom: var(--p-player-counter-position-padding-lg);
301
+ }
302
+
303
+ .video-call-receiver {
304
+ color: var(--p-player-wrapper-muted-color);
305
+ }
306
+
307
+ .video-call-receiver--sm .video-call-receiver-text {
308
+ max-width: 73px;
309
+ }
310
+
311
+ .video-call-receiver--muted {
312
+ width: 100%;
313
+ height: 100%;
314
+ display: flex;
315
+ flex-direction: column;
316
+ gap: var(--spacing-xs);
317
+ align-items: center;
318
+ justify-content: center;
319
+ }
320
+
321
+ .video-call-sender {
322
+ flex: 0 0 auto;
323
+ }
324
+
325
+ .video-call-sender--muted {
326
+ background: var(--p-player-wrapper-background);
327
+ display: flex;
328
+ align-items: center;
329
+ justify-content: center;
330
+ overflow: hidden;
331
+ border: 1px solid;
332
+ border-color: var(--p-player-wrapper-border-color);
333
+ }
334
+
335
+ .video-call-sender--sm :deep(video) {
336
+ border-radius: var(--p-player-cam-preview-sm-border-radius);
337
+ }
338
+
339
+ .video-call-sender--sm.video-call-sender--muted {
340
+ border-radius: var(--p-player-cam-preview-sm-border-radius);
341
+ }
342
+
343
+ .video-call-sender--sm.video-call-receiver--muted {
344
+ padding-bottom: var(--p-player-control-bar-sm-height);
345
+ }
346
+
347
+ .video-call-sender--sm {
348
+ width: var(--p-player-cam-preview-sm-width);
349
+ height: var(--p-player-cam-preview-sm-height);
350
+ position: relative;
351
+ right: 0;
352
+ bottom: 0;
353
+ }
354
+
355
+ .video-call-sender--md :deep(video) {
356
+ border-radius: var(--p-player-cam-preview-md-border-radius);
357
+ }
358
+
359
+ .video-call-sender--md.video-call-sender--muted {
360
+ border-radius: var(--p-player-cam-preview-md-border-radius);
361
+ }
362
+
363
+ .video-call-sender--md {
364
+ width: var(--p-player-cam-preview-md-width);
365
+ height: var(--p-player-cam-preview-md-height);
366
+ position: relative;
367
+ right: 0;
368
+ bottom: 0;
369
+ }
370
+
371
+ .video-call-sender--lg :deep(video) {
372
+ border-radius: var(--p-player-cam-preview-lg-border-radius);
373
+ }
374
+
375
+ .video-call-sender--lg.video-call-sender--muted {
376
+ border-radius: var(--p-player-cam-preview-lg-border-radius);
377
+ }
378
+
379
+ .video-call-sender--lg {
380
+ width: var(--p-player-cam-preview-lg-width);
381
+ height: var(--p-player-cam-preview-lg-height);
382
+ position: relative;
383
+ right: 0;
384
+ bottom: 0;
385
+ }
386
+
387
+ .video-call__indicator {
388
+ position: absolute;
389
+ display: flex;
390
+ align-items: end;
391
+ justify-content: flex-end;
392
+ }
393
+
394
+ .video-call__indicator--sm {
395
+ right: var(--p-player-counter-position-padding-sm);
396
+ bottom: calc(var(--p-player-counter-position-padding-sm) + var(--p-player-control-bar-sm-height));
397
+ }
398
+
399
+ .video-call__indicator--md {
400
+ right: var(--p-player-counter-position-padding-md);
401
+ bottom: var(--p-player-counter-position-padding-md);
402
+ }
221
403
 
222
- &-position {
223
- &--left-bottom {
224
- &.wt-vidstack-player {
225
- &--sm {
226
- left: var(--spacing-sm);
227
- bottom: var(--spacing-sm);
228
- top: unset;
229
- }
230
-
231
- &--md {
232
- top: unset;
233
- left: var(--spacing-sm);
234
- bottom: var(--spacing-sm);
235
- }
236
- }
237
- }
238
-
239
- &--right-bottom {
240
- &.wt-vidstack-player {
241
- &--sm {
242
- top: unset;
243
- right: var(--spacing-sm);
244
- bottom: var(--spacing-sm);
245
- }
246
-
247
- &--md {
248
- top: unset;
249
- right: var(--spacing-sm);
250
- bottom: var(--spacing-sm);
251
- }
252
- }
253
- }
254
-
255
- &--center {
256
- &.wt-vidstack-player {
257
- position: absolute;
258
- top: 50%;
259
- left: 50%;
260
- right: unset;
261
- bottom: unset;
262
- transform: translate(-50%, -50%);
263
- }
264
- }
265
- }
266
-
267
- &-overlay {
268
- width: 100%;
269
- height: 100%;
270
- display: block;
271
- position: absolute;
272
- left: 0;
273
- top: 0;
274
- z-index: -1;
275
- background: var(--p-player-wrapper-background);
276
- }
277
-
278
- &-content {
279
- height: 100%;
280
- padding: var(--p-player-counter-position-padding-sm);
281
- display: flex;
282
- justify-content: space-between;
283
- align-items: flex-end;
284
- position: absolute;
285
- left: 0;
286
- top: 0;
287
- width: 100%;
288
-
289
- &--sm {
290
- padding-bottom: calc(var(--p-player-control-bar-sm-height) + var(--p-player-counter-position-padding-sm));
291
- }
292
-
293
- &-wrapper {
294
- position: absolute;
295
- display: flex;
296
- flex-direction: column;
297
- gap: var(--p-player-control-bar-sm-gap);
298
-
299
- &--sm {
300
- left: var(--p-player-counter-position-padding-sm);
301
- bottom: calc(var(--p-player-counter-position-padding-sm) + var(--p-player-control-bar-sm-height));
302
- }
303
-
304
- &--md {
305
- left: var(--p-player-counter-position-padding-md);
306
- bottom: var(--p-player-counter-position-padding-md);
307
- }
308
-
309
- &--lg {
310
- left: var(--p-player-counter-position-padding-lg);
311
- bottom: var(--p-player-counter-position-padding-lg);
312
- }
313
- }
314
- }
315
-
316
- &-receiver {
317
- color: var(--p-player-wrapper-muted-color);
318
-
319
- &--sm {
320
- .video-call-receiver-text {
321
- max-width: 73px;
322
- }
323
- }
324
-
325
- &--muted {
326
- width: 100%;
327
- height: 100%;
328
- display: flex;
329
- flex-direction: column;
330
- gap: var(--spacing-xs);
331
- align-items: center;
332
- justify-content: center;
333
- }
334
- }
335
-
336
- &-sender {
337
- flex: 0 0 auto;
338
-
339
- &--muted {
340
- background: var(--p-player-wrapper-background);
341
- display: flex;
342
- align-items: center;
343
- justify-content: center;
344
- overflow: hidden;
345
- border: 1px solid;
346
- border-color: var(--p-player-wrapper-border-color);
347
- }
348
-
349
- &--sm {
350
- :deep(video) {
351
- border-radius: var(--p-player-cam-preview-sm-border-radius);
352
- }
353
-
354
- &.video-call-sender--muted {
355
- border-radius: var(--p-player-cam-preview-sm-border-radius);
356
- }
357
-
358
- &.video-call-receiver--muted {
359
- padding-bottom: var(--p-player-control-bar-sm-height);
360
- }
361
-
362
- width: var(--p-player-cam-preview-sm-width);
363
- height: var(--p-player-cam-preview-sm-height);
364
- position: relative;
365
- right: 0;
366
- bottom: 0;
367
- }
368
-
369
- &--md {
370
- :deep(video) {
371
- border-radius: var(--p-player-cam-preview-md-border-radius);
372
- }
373
-
374
- &.video-call-sender--muted {
375
- border-radius: var(--p-player-cam-preview-md-border-radius);
376
- }
377
-
378
- width: var(--p-player-cam-preview-md-width);
379
- height: var(--p-player-cam-preview-md-height);
380
- position: relative;
381
- right: 0;
382
- bottom: 0;
383
- }
384
-
385
- &--lg {
386
- :deep(video) {
387
- border-radius: var(--p-player-cam-preview-lg-border-radius);
388
- }
389
-
390
- &.video-call-sender--muted {
391
- border-radius: var(--p-player-cam-preview-lg-border-radius);
392
- }
393
-
394
- width: var(--p-player-cam-preview-lg-width);
395
- height: var(--p-player-cam-preview-lg-height);
396
- position: relative;
397
- right: 0;
398
- bottom: 0;
399
- }
400
- }
401
-
402
- &__indicator {
403
- position: absolute;
404
- display: flex;
405
- align-items: end;
406
- justify-content: flex-end;
407
-
408
- &--sm {
409
- right: var(--p-player-counter-position-padding-sm);
410
- bottom: calc(var(--p-player-counter-position-padding-sm) + var(--p-player-control-bar-sm-height));
411
- }
412
-
413
- &--md {
414
- right: var(--p-player-counter-position-padding-md);
415
- bottom: var(--p-player-counter-position-padding-md);
416
- }
417
-
418
- &--lg {
419
- right: var(--p-player-counter-position-padding-lg);
420
- bottom: var(--p-player-counter-position-padding-lg);
421
- }
422
- }
404
+ .video-call__indicator--lg {
405
+ right: var(--p-player-counter-position-padding-lg);
406
+ bottom: var(--p-player-counter-position-padding-lg);
423
407
  }
424
408
  </style>
@@ -1,4 +1,4 @@
1
- import invert from 'lodash/fp/invert';
1
+ import invert from 'lodash/invert';
2
2
 
3
3
  import {
4
4
  AdminSections,
@@ -1,2 +1,2 @@
1
- export const tableActionsOrder: ("filters" | "delete" | "add" | "refresh" | "upload" | "download" | "copy" | "columns" | "variables" | "add-contact" | "download-pdf")[];
2
- export const sectionActionsOrder: ("filters" | "delete" | "add" | "refresh" | "upload" | "download" | "copy" | "columns" | "variables" | "add-contact" | "download-pdf")[];
1
+ export const tableActionsOrder: ("delete" | "filters" | "add" | "refresh" | "upload" | "download" | "copy" | "columns" | "variables" | "add-contact" | "download-pdf")[];
2
+ export const sectionActionsOrder: ("delete" | "filters" | "add" | "refresh" | "upload" | "download" | "copy" | "columns" | "variables" | "add-contact" | "download-pdf")[];
@@ -83,58 +83,58 @@ declare const __VLS_base: import("vue").DefineComponent<import("vue").ExtractPro
83
83
  exclude: unknown[];
84
84
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
85
85
  type __VLS_Slots = {
86
- filters?: (props: {
87
- action: "filters" | "delete" | "add" | "refresh" | "upload" | "download" | "copy" | "columns" | "variables" | "add-contact" | "download-pdf";
86
+ delete?: (props: {
87
+ action: "delete" | "filters" | "add" | "refresh" | "upload" | "download" | "copy" | "columns" | "variables" | "add-contact" | "download-pdf";
88
88
  size: string;
89
89
  onClick: () => void;
90
90
  }) => any;
91
- delete?: (props: {
92
- action: "filters" | "delete" | "add" | "refresh" | "upload" | "download" | "copy" | "columns" | "variables" | "add-contact" | "download-pdf";
91
+ filters?: (props: {
92
+ action: "delete" | "filters" | "add" | "refresh" | "upload" | "download" | "copy" | "columns" | "variables" | "add-contact" | "download-pdf";
93
93
  size: string;
94
94
  onClick: () => void;
95
95
  }) => any;
96
96
  add?: (props: {
97
- action: "filters" | "delete" | "add" | "refresh" | "upload" | "download" | "copy" | "columns" | "variables" | "add-contact" | "download-pdf";
97
+ action: "delete" | "filters" | "add" | "refresh" | "upload" | "download" | "copy" | "columns" | "variables" | "add-contact" | "download-pdf";
98
98
  size: string;
99
99
  onClick: () => void;
100
100
  }) => any;
101
101
  refresh?: (props: {
102
- action: "filters" | "delete" | "add" | "refresh" | "upload" | "download" | "copy" | "columns" | "variables" | "add-contact" | "download-pdf";
102
+ action: "delete" | "filters" | "add" | "refresh" | "upload" | "download" | "copy" | "columns" | "variables" | "add-contact" | "download-pdf";
103
103
  size: string;
104
104
  onClick: () => void;
105
105
  }) => any;
106
106
  upload?: (props: {
107
- action: "filters" | "delete" | "add" | "refresh" | "upload" | "download" | "copy" | "columns" | "variables" | "add-contact" | "download-pdf";
107
+ action: "delete" | "filters" | "add" | "refresh" | "upload" | "download" | "copy" | "columns" | "variables" | "add-contact" | "download-pdf";
108
108
  size: string;
109
109
  onClick: () => void;
110
110
  }) => any;
111
111
  download?: (props: {
112
- action: "filters" | "delete" | "add" | "refresh" | "upload" | "download" | "copy" | "columns" | "variables" | "add-contact" | "download-pdf";
112
+ action: "delete" | "filters" | "add" | "refresh" | "upload" | "download" | "copy" | "columns" | "variables" | "add-contact" | "download-pdf";
113
113
  size: string;
114
114
  onClick: () => void;
115
115
  }) => any;
116
116
  copy?: (props: {
117
- action: "filters" | "delete" | "add" | "refresh" | "upload" | "download" | "copy" | "columns" | "variables" | "add-contact" | "download-pdf";
117
+ action: "delete" | "filters" | "add" | "refresh" | "upload" | "download" | "copy" | "columns" | "variables" | "add-contact" | "download-pdf";
118
118
  size: string;
119
119
  onClick: () => void;
120
120
  }) => any;
121
121
  columns?: (props: {
122
- action: "filters" | "delete" | "add" | "refresh" | "upload" | "download" | "copy" | "columns" | "variables" | "add-contact" | "download-pdf";
122
+ action: "delete" | "filters" | "add" | "refresh" | "upload" | "download" | "copy" | "columns" | "variables" | "add-contact" | "download-pdf";
123
123
  size: string;
124
124
  onClick: () => void;
125
125
  }) => any;
126
126
  variables?: (props: {
127
- action: "filters" | "delete" | "add" | "refresh" | "upload" | "download" | "copy" | "columns" | "variables" | "add-contact" | "download-pdf";
127
+ action: "delete" | "filters" | "add" | "refresh" | "upload" | "download" | "copy" | "columns" | "variables" | "add-contact" | "download-pdf";
128
128
  size: string;
129
129
  onClick: () => void;
130
130
  }) => any;
131
131
  "add-contact"?: (props: {
132
- action: "filters" | "delete" | "add" | "refresh" | "upload" | "download" | "copy" | "columns" | "variables" | "add-contact" | "download-pdf";
132
+ action: "delete" | "filters" | "add" | "refresh" | "upload" | "download" | "copy" | "columns" | "variables" | "add-contact" | "download-pdf";
133
133
  size: string;
134
134
  onClick: () => void;
135
135
  }) => any;
136
136
  "download-pdf"?: (props: {
137
- action: "filters" | "delete" | "add" | "refresh" | "upload" | "download" | "copy" | "columns" | "variables" | "add-contact" | "download-pdf";
137
+ action: "delete" | "filters" | "add" | "refresh" | "upload" | "download" | "copy" | "columns" | "variables" | "add-contact" | "download-pdf";
138
138
  size: string;
139
139
  onClick: () => void;
140
140
  }) => any;