@webitel/ui-sdk 25.8.30 → 25.8.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.
- package/dist/ui-sdk.css +1 -1
- package/dist/ui-sdk.js +6982 -7018
- package/dist/ui-sdk.umd.cjs +559 -559
- package/package.json +14 -1
- package/src/components/index.js +3 -0
- package/src/components/on-demand/wt-display-chip-items/wt-display-chip-items.vue +67 -0
- package/src/components/on-demand/wt-selection-popup/wt-selection-popup.vue +7 -10
- package/src/components/wt-app-header/wt-app-navigator.vue +7 -11
- package/src/components/wt-app-header/wt-header-actions.vue +8 -12
- package/src/components/wt-context-menu/wt-context-menu.vue +40 -36
- package/src/components/wt-copy-action/wt-copy-action.vue +7 -11
- package/src/components/wt-icon-action/wt-icon-action.vue +8 -12
- package/src/components/wt-label/wt-label.vue +2 -1
- package/src/components/wt-pagination/wt-pagination.vue +15 -22
- package/src/components/wt-popover/wt-popover.vue +36 -18
- package/src/components/wt-search-bar/wt-search-bar.vue +5 -9
- package/src/components/wt-select/wt-select.vue +16 -15
- package/src/components/wt-table-actions/wt-table-actions.vue +43 -55
- package/src/components/wt-table-column-select/wt-table-column-select.vue +6 -9
- package/src/locale/en/en.js +24 -3
- package/src/locale/es/es.js +23 -6
- package/src/locale/i18n.js +1 -21
- package/src/locale/index.ts +33 -0
- package/src/locale/kz/kz.js +324 -294
- package/src/locale/pl/pl.js +23 -6
- package/src/locale/ro/ro.js +23 -6
- package/src/locale/ru/ru.js +28 -4
- package/src/locale/uk/uk.js +28 -4
- package/src/locale/uz/uz.js +23 -6
- package/src/locale/vi/vi.js +23 -6
- package/src/mixins/validationMixin/validationMixin.js +5 -3
- package/src/mixins/validationMixin/vuelidate/useVuelidateValidation.ts +5 -5
- package/src/modules/AuditForm/components/audit-form-question-write-wrapper.vue +12 -19
- package/src/modules/AuditForm/components/form-questions/options/audit-form-question-options-write-row.vue +7 -10
- package/src/utils/displayText.ts +3 -0
- package/src/utils/index.ts +1 -0
- package/src/validations/config/errors/customZodErrorsHandler.ts +19 -2
- package/types/components/index.d.ts +3 -1
- package/types/components/on-demand/wt-display-chip-items/wt-display-chip-items.vue.d.ts +38 -0
- package/types/components/on-demand/wt-navigation-menu/components/wt-navigation-menu.vue.d.ts +2 -2
- package/types/components/on-demand/wt-selection-popup/wt-selection-popup.vue.d.ts +2 -2
- package/types/components/wt-checkbox/wt-checkbox.vue.d.ts +5 -5
- package/types/components/wt-context-menu/wt-context-menu.vue.d.ts +4 -1
- package/types/components/wt-datepicker/wt-datepicker.vue.d.ts +2 -2
- package/types/components/wt-input/wt-input.vue.d.ts +2 -2
- package/types/components/wt-item-link/wt-item-link.vue.d.ts +2 -2
- package/types/components/wt-player/wt-player.vue.d.ts +2 -2
- package/types/components/wt-popover/wt-popover.vue.d.ts +32 -15
- package/types/components/wt-radio/wt-radio.vue.d.ts +6 -6
- package/types/components/wt-search-bar/wt-search-bar.vue.d.ts +6 -6
- package/types/components/wt-slider/wt-slider.vue.d.ts +2 -2
- package/types/components/wt-textarea/wt-textarea.vue.d.ts +2 -2
- package/types/components/wt-time-input/wt-time-input.vue.d.ts +1 -1
- package/types/components/wt-timepicker/wt-timepicker.vue.d.ts +1 -1
- package/types/components/wt-tooltip/_internals/wt-tooltip-floating.vue.d.ts +1 -1
- package/types/components/wt-tooltip/wt-tooltip.vue.d.ts +2 -2
- package/types/locale/en/en.d.ts +9 -3
- package/types/locale/es/es.d.ts +11 -5
- package/types/locale/i18n.d.ts +102 -36
- package/types/locale/index.d.ts +7208 -0
- package/types/locale/kz/kz.d.ts +14 -0
- package/types/locale/pl/pl.d.ts +11 -5
- package/types/locale/ro/ro.d.ts +11 -5
- package/types/locale/ru/ru.d.ts +12 -4
- package/types/locale/uk/uk.d.ts +12 -4
- package/types/locale/uz/uz.d.ts +11 -5
- package/types/locale/vi/vi.d.ts +11 -5
- package/types/utils/displayText.d.ts +2 -0
- package/types/utils/index.d.ts +1 -0
package/types/locale/kz/kz.d.ts
CHANGED
|
@@ -456,6 +456,20 @@ declare namespace _default {
|
|
|
456
456
|
}
|
|
457
457
|
}
|
|
458
458
|
export { filters_1 as filters };
|
|
459
|
+
export namespace validation {
|
|
460
|
+
function minValue({ named }: {
|
|
461
|
+
named: any;
|
|
462
|
+
}): string;
|
|
463
|
+
function maxValue({ named }: {
|
|
464
|
+
named: any;
|
|
465
|
+
}): string;
|
|
466
|
+
function minLength({ named }: {
|
|
467
|
+
named: any;
|
|
468
|
+
}): string;
|
|
469
|
+
function maxLength({ named }: {
|
|
470
|
+
named: any;
|
|
471
|
+
}): string;
|
|
472
|
+
}
|
|
459
473
|
export namespace systemNotifications {
|
|
460
474
|
export namespace success_1 {
|
|
461
475
|
export function update_2({ named }: {
|
package/types/locale/pl/pl.d.ts
CHANGED
|
@@ -485,14 +485,20 @@ declare namespace _default {
|
|
|
485
485
|
export let sipAccountValidator: string;
|
|
486
486
|
export let ipValidator: string;
|
|
487
487
|
export let macValidator: string;
|
|
488
|
-
export
|
|
489
|
-
|
|
490
|
-
|
|
491
|
-
export
|
|
492
|
-
|
|
488
|
+
export function minValue({ named }: {
|
|
489
|
+
named: any;
|
|
490
|
+
}): string;
|
|
491
|
+
export function maxValue({ named }: {
|
|
492
|
+
named: any;
|
|
493
|
+
}): string;
|
|
493
494
|
export function minLength({ named }: {
|
|
494
495
|
named: any;
|
|
495
496
|
}): string;
|
|
497
|
+
export function maxLength({ named }: {
|
|
498
|
+
named: any;
|
|
499
|
+
}): string;
|
|
500
|
+
export let sameAs: string;
|
|
501
|
+
export let requiredArrayValue: string;
|
|
496
502
|
export let url: string;
|
|
497
503
|
export let websocketValidator: string;
|
|
498
504
|
export let isRegExpMatched: string;
|
package/types/locale/ro/ro.d.ts
CHANGED
|
@@ -485,14 +485,20 @@ declare namespace _default {
|
|
|
485
485
|
export let sipAccountValidator: string;
|
|
486
486
|
export let ipValidator: string;
|
|
487
487
|
export let macValidator: string;
|
|
488
|
-
export
|
|
489
|
-
|
|
490
|
-
|
|
491
|
-
export
|
|
492
|
-
|
|
488
|
+
export function minValue({ named }: {
|
|
489
|
+
named: any;
|
|
490
|
+
}): string;
|
|
491
|
+
export function maxValue({ named }: {
|
|
492
|
+
named: any;
|
|
493
|
+
}): string;
|
|
493
494
|
export function minLength({ named }: {
|
|
494
495
|
named: any;
|
|
495
496
|
}): string;
|
|
497
|
+
export function maxLength({ named }: {
|
|
498
|
+
named: any;
|
|
499
|
+
}): string;
|
|
500
|
+
export let sameAs: string;
|
|
501
|
+
export let requiredArrayValue: string;
|
|
496
502
|
export let url: string;
|
|
497
503
|
export let websocketValidator: string;
|
|
498
504
|
export let isRegExpMatched: string;
|
package/types/locale/ru/ru.d.ts
CHANGED
|
@@ -483,12 +483,20 @@ declare namespace _default {
|
|
|
483
483
|
export let sipAccountValidator: string;
|
|
484
484
|
export let ipValidator: string;
|
|
485
485
|
export let macValidator: string;
|
|
486
|
-
export
|
|
487
|
-
|
|
488
|
-
|
|
486
|
+
export function minValue({ named }: {
|
|
487
|
+
named: any;
|
|
488
|
+
}): string;
|
|
489
|
+
export function maxValue({ named }: {
|
|
490
|
+
named: any;
|
|
491
|
+
}): string;
|
|
492
|
+
export function maxLength({ named }: {
|
|
493
|
+
named: any;
|
|
494
|
+
}): string;
|
|
489
495
|
export let sameAs: string;
|
|
490
496
|
export let requiredArrayValue: string;
|
|
491
|
-
export
|
|
497
|
+
export function minLength({ named }: {
|
|
498
|
+
named: any;
|
|
499
|
+
}): string;
|
|
492
500
|
export let url: string;
|
|
493
501
|
export let websocketValidator: string;
|
|
494
502
|
export let isRegExpMatched: string;
|
package/types/locale/uk/uk.d.ts
CHANGED
|
@@ -483,12 +483,20 @@ declare namespace _default {
|
|
|
483
483
|
export let sipAccountValidator: string;
|
|
484
484
|
export let ipValidator: string;
|
|
485
485
|
export let macValidator: string;
|
|
486
|
-
export
|
|
487
|
-
|
|
488
|
-
|
|
486
|
+
export function minValue({ named }: {
|
|
487
|
+
named: any;
|
|
488
|
+
}): string;
|
|
489
|
+
export function maxValue({ named }: {
|
|
490
|
+
named: any;
|
|
491
|
+
}): string;
|
|
492
|
+
export function maxLength({ named }: {
|
|
493
|
+
named: any;
|
|
494
|
+
}): string;
|
|
489
495
|
export let sameAs: string;
|
|
490
496
|
export let requiredArrayValue: string;
|
|
491
|
-
export
|
|
497
|
+
export function minLength({ named }: {
|
|
498
|
+
named: any;
|
|
499
|
+
}): string;
|
|
492
500
|
export let url: string;
|
|
493
501
|
export let websocketValidator: string;
|
|
494
502
|
export let isRegExpMatched: string;
|
package/types/locale/uz/uz.d.ts
CHANGED
|
@@ -485,14 +485,20 @@ declare namespace _default {
|
|
|
485
485
|
export let sipAccountValidator: string;
|
|
486
486
|
export let ipValidator: string;
|
|
487
487
|
export let macValidator: string;
|
|
488
|
-
export
|
|
489
|
-
|
|
490
|
-
|
|
491
|
-
export
|
|
492
|
-
|
|
488
|
+
export function minValue({ named }: {
|
|
489
|
+
named: any;
|
|
490
|
+
}): string;
|
|
491
|
+
export function maxValue({ named }: {
|
|
492
|
+
named: any;
|
|
493
|
+
}): string;
|
|
493
494
|
export function minLength({ named }: {
|
|
494
495
|
named: any;
|
|
495
496
|
}): string;
|
|
497
|
+
export function maxLength({ named }: {
|
|
498
|
+
named: any;
|
|
499
|
+
}): string;
|
|
500
|
+
export let sameAs: string;
|
|
501
|
+
export let requiredArrayValue: string;
|
|
496
502
|
export let url: string;
|
|
497
503
|
export let websocketValidator: string;
|
|
498
504
|
export let isRegExpMatched: string;
|
package/types/locale/vi/vi.d.ts
CHANGED
|
@@ -485,14 +485,20 @@ declare namespace _default {
|
|
|
485
485
|
export let sipAccountValidator: string;
|
|
486
486
|
export let ipValidator: string;
|
|
487
487
|
export let macValidator: string;
|
|
488
|
-
export
|
|
489
|
-
|
|
490
|
-
|
|
491
|
-
export
|
|
492
|
-
|
|
488
|
+
export function minValue({ named }: {
|
|
489
|
+
named: any;
|
|
490
|
+
}): string;
|
|
491
|
+
export function maxValue({ named }: {
|
|
492
|
+
named: any;
|
|
493
|
+
}): string;
|
|
493
494
|
export function minLength({ named }: {
|
|
494
495
|
named: any;
|
|
495
496
|
}): string;
|
|
497
|
+
export function maxLength({ named }: {
|
|
498
|
+
named: any;
|
|
499
|
+
}): string;
|
|
500
|
+
export let sameAs: string;
|
|
501
|
+
export let requiredArrayValue: string;
|
|
496
502
|
export let url: string;
|
|
497
503
|
export let websocketValidator: string;
|
|
498
504
|
export let isRegExpMatched: string;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './displayText';
|