@webitel/ui-sdk 25.8.31 → 25.8.33
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 +10 -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/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/modules/Userinfo/v2/enums/GlobalActions/GlobalActions.ts +1 -0
- 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 +103 -37
- 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/modules/Userinfo/v2/enums/GlobalActions/GlobalActions.d.ts +1 -0
- package/types/scripts/sortQueryAdapters.d.ts +1 -1
- package/types/utils/displayText.d.ts +2 -0
- package/types/utils/index.d.ts +1 -0
|
@@ -2,48 +2,65 @@ import { PopoverProps } from 'primevue';
|
|
|
2
2
|
declare const attrs: {
|
|
3
3
|
[x: string]: unknown;
|
|
4
4
|
};
|
|
5
|
+
declare const toggle: (event?: Event) => void;
|
|
6
|
+
declare const show: (event?: Event) => void;
|
|
7
|
+
declare const hide: (event?: Event) => void;
|
|
5
8
|
declare const __VLS_ctx: InstanceType<__VLS_PickNotAny<typeof __VLS_self, new () => {}>>;
|
|
6
|
-
declare var
|
|
9
|
+
declare var __VLS_1: {
|
|
10
|
+
show: (event?: Event) => void;
|
|
11
|
+
toggle: (event?: Event) => void;
|
|
12
|
+
hide: (event?: Event) => void;
|
|
13
|
+
}, __VLS_9: {
|
|
14
|
+
hide: (event?: Event) => void;
|
|
15
|
+
toggle: (event?: Event) => void;
|
|
16
|
+
};
|
|
7
17
|
type __VLS_Slots = __VLS_PrettifyGlobal<__VLS_OmitStringIndex<typeof __VLS_ctx.$slots> & {
|
|
8
|
-
|
|
18
|
+
activator?: (props: typeof __VLS_1) => any;
|
|
19
|
+
} & {
|
|
20
|
+
default?: (props: typeof __VLS_9) => any;
|
|
9
21
|
}>;
|
|
10
22
|
declare const __VLS_self: import("vue").DefineComponent<PopoverProps, {
|
|
11
23
|
attrs: typeof attrs;
|
|
24
|
+
toggle: typeof toggle;
|
|
25
|
+
show: typeof show;
|
|
26
|
+
hide: typeof hide;
|
|
12
27
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
13
|
-
hide: () => any;
|
|
14
28
|
show: () => any;
|
|
29
|
+
hide: () => any;
|
|
15
30
|
}, string, import("vue").PublicProps, Readonly<PopoverProps> & Readonly<{
|
|
16
|
-
onHide?: () => any;
|
|
17
31
|
onShow?: () => any;
|
|
32
|
+
onHide?: () => any;
|
|
18
33
|
}>, {
|
|
19
|
-
dt: import("@primevue/core").DesignToken<any>;
|
|
20
|
-
pt: any;
|
|
21
|
-
ptOptions: import("primevue/passthrough").PassThroughOptions;
|
|
22
34
|
appendTo: import("@primevue/core").HintedString<"body" | "self"> | undefined | HTMLElement;
|
|
23
35
|
baseZIndex: number;
|
|
24
36
|
autoZIndex: boolean;
|
|
25
37
|
breakpoints: import("primevue").PopoverBreakpoints;
|
|
38
|
+
dt: import("@primevue/core").DesignToken<any>;
|
|
39
|
+
pt: any;
|
|
40
|
+
ptOptions: import("primevue/passthrough").PassThroughOptions;
|
|
26
41
|
closeOnEscape: boolean | undefined;
|
|
42
|
+
unstyled: boolean;
|
|
27
43
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
28
44
|
declare const __VLS_component: import("vue").DefineComponent<PopoverProps, {
|
|
29
|
-
toggle: (
|
|
30
|
-
show: (
|
|
31
|
-
hide: (
|
|
45
|
+
toggle: (event?: Event) => void;
|
|
46
|
+
show: (event?: Event) => void;
|
|
47
|
+
hide: (event?: Event) => void;
|
|
32
48
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
33
|
-
hide: () => any;
|
|
34
49
|
show: () => any;
|
|
50
|
+
hide: () => any;
|
|
35
51
|
}, string, import("vue").PublicProps, Readonly<PopoverProps> & Readonly<{
|
|
36
|
-
onHide?: () => any;
|
|
37
52
|
onShow?: () => any;
|
|
53
|
+
onHide?: () => any;
|
|
38
54
|
}>, {
|
|
39
|
-
dt: import("@primevue/core").DesignToken<any>;
|
|
40
|
-
pt: any;
|
|
41
|
-
ptOptions: import("primevue/passthrough").PassThroughOptions;
|
|
42
55
|
appendTo: import("@primevue/core").HintedString<"body" | "self"> | undefined | HTMLElement;
|
|
43
56
|
baseZIndex: number;
|
|
44
57
|
autoZIndex: boolean;
|
|
45
58
|
breakpoints: import("primevue").PopoverBreakpoints;
|
|
59
|
+
dt: import("@primevue/core").DesignToken<any>;
|
|
60
|
+
pt: any;
|
|
61
|
+
ptOptions: import("primevue/passthrough").PassThroughOptions;
|
|
46
62
|
closeOnEscape: boolean | undefined;
|
|
63
|
+
unstyled: boolean;
|
|
47
64
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
48
65
|
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
49
66
|
export default _default;
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
2
2
|
value: {
|
|
3
|
-
type: (
|
|
3
|
+
type: (StringConstructor | BooleanConstructor | ObjectConstructor | NumberConstructor)[];
|
|
4
4
|
default: string;
|
|
5
5
|
};
|
|
6
6
|
selected: {
|
|
7
|
-
type: (
|
|
7
|
+
type: (StringConstructor | BooleanConstructor | ObjectConstructor | NumberConstructor)[];
|
|
8
8
|
default: string;
|
|
9
9
|
};
|
|
10
10
|
label: {
|
|
@@ -30,11 +30,11 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
30
30
|
inputHandler(): void;
|
|
31
31
|
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "input"[], "input", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
32
32
|
value: {
|
|
33
|
-
type: (
|
|
33
|
+
type: (StringConstructor | BooleanConstructor | ObjectConstructor | NumberConstructor)[];
|
|
34
34
|
default: string;
|
|
35
35
|
};
|
|
36
36
|
selected: {
|
|
37
|
-
type: (
|
|
37
|
+
type: (StringConstructor | BooleanConstructor | ObjectConstructor | NumberConstructor)[];
|
|
38
38
|
default: string;
|
|
39
39
|
};
|
|
40
40
|
label: {
|
|
@@ -56,10 +56,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
56
56
|
}>> & Readonly<{
|
|
57
57
|
onInput?: (...args: any[]) => any;
|
|
58
58
|
}>, {
|
|
59
|
-
selected: string | number | boolean | Record<string, any>;
|
|
60
|
-
required: boolean;
|
|
61
59
|
value: string | number | boolean | Record<string, any>;
|
|
60
|
+
required: boolean;
|
|
62
61
|
label: string;
|
|
62
|
+
selected: string | number | boolean | Record<string, any>;
|
|
63
63
|
disabled: boolean;
|
|
64
64
|
outline: boolean;
|
|
65
65
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
@@ -9,13 +9,13 @@ declare const __VLS_ctx: InstanceType<__VLS_PickNotAny<typeof __VLS_self, new ()
|
|
|
9
9
|
declare var __VLS_1: {
|
|
10
10
|
invalid: boolean;
|
|
11
11
|
searchMode: string | Record<string, any>;
|
|
12
|
-
},
|
|
12
|
+
}, __VLS_35: {
|
|
13
13
|
invalid: boolean;
|
|
14
14
|
};
|
|
15
15
|
type __VLS_Slots = __VLS_PrettifyGlobal<__VLS_OmitStringIndex<typeof __VLS_ctx.$slots> & {
|
|
16
16
|
'search-icon'?: (props: typeof __VLS_1) => any;
|
|
17
17
|
} & {
|
|
18
|
-
'additional-actions'?: (props: typeof
|
|
18
|
+
'additional-actions'?: (props: typeof __VLS_35) => any;
|
|
19
19
|
}>;
|
|
20
20
|
declare const __VLS_self: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
21
21
|
v: {
|
|
@@ -43,7 +43,7 @@ declare const __VLS_self: import("vue").DefineComponent<import("vue").ExtractPro
|
|
|
43
43
|
description: string;
|
|
44
44
|
};
|
|
45
45
|
searchMode: {
|
|
46
|
-
type: (
|
|
46
|
+
type: (StringConstructor | ObjectConstructor)[];
|
|
47
47
|
};
|
|
48
48
|
searchModeOptions: {
|
|
49
49
|
type: ArrayConstructor;
|
|
@@ -87,7 +87,7 @@ declare const __VLS_self: import("vue").DefineComponent<import("vue").ExtractPro
|
|
|
87
87
|
description: string;
|
|
88
88
|
};
|
|
89
89
|
searchMode: {
|
|
90
|
-
type: (
|
|
90
|
+
type: (StringConstructor | ObjectConstructor)[];
|
|
91
91
|
};
|
|
92
92
|
searchModeOptions: {
|
|
93
93
|
type: ArrayConstructor;
|
|
@@ -130,7 +130,7 @@ declare const __VLS_component: import("vue").DefineComponent<import("vue").Extra
|
|
|
130
130
|
description: string;
|
|
131
131
|
};
|
|
132
132
|
searchMode: {
|
|
133
|
-
type: (
|
|
133
|
+
type: (StringConstructor | ObjectConstructor)[];
|
|
134
134
|
};
|
|
135
135
|
searchModeOptions: {
|
|
136
136
|
type: ArrayConstructor;
|
|
@@ -168,7 +168,7 @@ declare const __VLS_component: import("vue").DefineComponent<import("vue").Extra
|
|
|
168
168
|
description: string;
|
|
169
169
|
};
|
|
170
170
|
searchMode: {
|
|
171
|
-
type: (
|
|
171
|
+
type: (StringConstructor | ObjectConstructor)[];
|
|
172
172
|
};
|
|
173
173
|
searchModeOptions: {
|
|
174
174
|
type: ArrayConstructor;
|
|
@@ -68,8 +68,8 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
68
68
|
disabled: boolean;
|
|
69
69
|
step: number;
|
|
70
70
|
vertical: boolean;
|
|
71
|
-
height: number;
|
|
72
|
-
max: number;
|
|
73
71
|
min: number;
|
|
72
|
+
max: number;
|
|
73
|
+
height: number;
|
|
74
74
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
75
75
|
export default _default;
|
|
@@ -168,9 +168,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
168
168
|
onInput?: (...args: any[]) => any;
|
|
169
169
|
onEnter?: (...args: any[]) => any;
|
|
170
170
|
}>, {
|
|
171
|
-
required: boolean;
|
|
172
|
-
value: string;
|
|
173
171
|
name: string;
|
|
172
|
+
value: string;
|
|
173
|
+
required: boolean;
|
|
174
174
|
label: string;
|
|
175
175
|
disabled: boolean;
|
|
176
176
|
readonly: boolean;
|
|
@@ -123,8 +123,8 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
123
123
|
}>> & Readonly<{
|
|
124
124
|
onInput?: (...args: any[]) => any;
|
|
125
125
|
}>, {
|
|
126
|
-
required: boolean;
|
|
127
126
|
value: number;
|
|
127
|
+
required: boolean;
|
|
128
128
|
label: string;
|
|
129
129
|
disabled: boolean;
|
|
130
130
|
hideInputInfo: boolean;
|
|
@@ -134,8 +134,8 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
134
134
|
description: string;
|
|
135
135
|
};
|
|
136
136
|
}>> & Readonly<{}>, {
|
|
137
|
-
required: boolean;
|
|
138
137
|
value: string | number;
|
|
138
|
+
required: boolean;
|
|
139
139
|
label: string;
|
|
140
140
|
disabled: boolean;
|
|
141
141
|
dateMode: boolean;
|
|
@@ -4,7 +4,7 @@ type __VLS_WithSlots<T, S> = T & (new () => {
|
|
|
4
4
|
$slots: S;
|
|
5
5
|
});
|
|
6
6
|
declare const __VLS_component: import("vue").DefineComponent<{}, {
|
|
7
|
-
$emit: (event: "
|
|
7
|
+
$emit: (event: "show" | "hide", ...args: any[]) => void;
|
|
8
8
|
triggers: unknown[];
|
|
9
9
|
$props: {
|
|
10
10
|
readonly triggers?: unknown[];
|
|
@@ -9,16 +9,16 @@ declare const __VLS_component: import("vue").DefineComponent<{}, {
|
|
|
9
9
|
triggers: unknown[];
|
|
10
10
|
visible: boolean;
|
|
11
11
|
placement: string;
|
|
12
|
-
popperClass: string;
|
|
13
12
|
popperTriggers: unknown[];
|
|
13
|
+
popperClass: string;
|
|
14
14
|
disableClickAway: boolean;
|
|
15
15
|
$props: {
|
|
16
16
|
readonly disabled?: boolean;
|
|
17
17
|
readonly triggers?: unknown[];
|
|
18
18
|
readonly visible?: boolean;
|
|
19
19
|
readonly placement?: string;
|
|
20
|
-
readonly popperClass?: string;
|
|
21
20
|
readonly popperTriggers?: unknown[];
|
|
21
|
+
readonly popperClass?: string;
|
|
22
22
|
readonly disableClickAway?: boolean;
|
|
23
23
|
};
|
|
24
24
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
package/types/locale/en/en.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 let minValue: string;
|
|
489
|
-
export let maxValue: string;
|
|
490
|
-
export let maxLength: string;
|
|
491
488
|
export let sameAs: string;
|
|
492
489
|
export let requiredArrayValue: string;
|
|
490
|
+
export function minValue({ named }: {
|
|
491
|
+
named: any;
|
|
492
|
+
}): string;
|
|
493
|
+
export function maxValue({ named }: {
|
|
494
|
+
named: any;
|
|
495
|
+
}): string;
|
|
493
496
|
export function minLength({ named }: {
|
|
494
497
|
named: any;
|
|
495
498
|
}): string;
|
|
499
|
+
export function maxLength({ named }: {
|
|
500
|
+
named: any;
|
|
501
|
+
}): string;
|
|
496
502
|
export let url: string;
|
|
497
503
|
export let websocketValidator: string;
|
|
498
504
|
export let isRegExpMatched: string;
|
package/types/locale/es/es.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/i18n.d.ts
CHANGED
|
@@ -463,14 +463,20 @@ declare const _default: import("vue-i18n").I18n<{
|
|
|
463
463
|
sipAccountValidator: string;
|
|
464
464
|
ipValidator: string;
|
|
465
465
|
macValidator: string;
|
|
466
|
-
minValue: string;
|
|
467
|
-
maxValue: string;
|
|
468
|
-
maxLength: string;
|
|
469
466
|
sameAs: string;
|
|
470
467
|
requiredArrayValue: string;
|
|
468
|
+
minValue: ({ named }: {
|
|
469
|
+
named: any;
|
|
470
|
+
}) => string;
|
|
471
|
+
maxValue: ({ named }: {
|
|
472
|
+
named: any;
|
|
473
|
+
}) => string;
|
|
471
474
|
minLength: ({ named }: {
|
|
472
475
|
named: any;
|
|
473
476
|
}) => string;
|
|
477
|
+
maxLength: ({ named }: {
|
|
478
|
+
named: any;
|
|
479
|
+
}) => string;
|
|
474
480
|
url: string;
|
|
475
481
|
websocketValidator: string;
|
|
476
482
|
isRegExpMatched: string;
|
|
@@ -1300,14 +1306,20 @@ declare const _default: import("vue-i18n").I18n<{
|
|
|
1300
1306
|
sipAccountValidator: string;
|
|
1301
1307
|
ipValidator: string;
|
|
1302
1308
|
macValidator: string;
|
|
1303
|
-
minValue:
|
|
1304
|
-
|
|
1305
|
-
|
|
1306
|
-
|
|
1307
|
-
|
|
1309
|
+
minValue: ({ named }: {
|
|
1310
|
+
named: any;
|
|
1311
|
+
}) => string;
|
|
1312
|
+
maxValue: ({ named }: {
|
|
1313
|
+
named: any;
|
|
1314
|
+
}) => string;
|
|
1308
1315
|
minLength: ({ named }: {
|
|
1309
1316
|
named: any;
|
|
1310
1317
|
}) => string;
|
|
1318
|
+
maxLength: ({ named }: {
|
|
1319
|
+
named: any;
|
|
1320
|
+
}) => string;
|
|
1321
|
+
sameAs: string;
|
|
1322
|
+
requiredArrayValue: string;
|
|
1311
1323
|
url: string;
|
|
1312
1324
|
websocketValidator: string;
|
|
1313
1325
|
isRegExpMatched: string;
|
|
@@ -2135,12 +2147,20 @@ declare const _default: import("vue-i18n").I18n<{
|
|
|
2135
2147
|
sipAccountValidator: string;
|
|
2136
2148
|
ipValidator: string;
|
|
2137
2149
|
macValidator: string;
|
|
2138
|
-
minValue:
|
|
2139
|
-
|
|
2140
|
-
|
|
2150
|
+
minValue: ({ named }: {
|
|
2151
|
+
named: any;
|
|
2152
|
+
}) => string;
|
|
2153
|
+
maxValue: ({ named }: {
|
|
2154
|
+
named: any;
|
|
2155
|
+
}) => string;
|
|
2156
|
+
maxLength: ({ named }: {
|
|
2157
|
+
named: any;
|
|
2158
|
+
}) => string;
|
|
2141
2159
|
sameAs: string;
|
|
2142
2160
|
requiredArrayValue: string;
|
|
2143
|
-
minLength:
|
|
2161
|
+
minLength: ({ named }: {
|
|
2162
|
+
named: any;
|
|
2163
|
+
}) => string;
|
|
2144
2164
|
url: string;
|
|
2145
2165
|
websocketValidator: string;
|
|
2146
2166
|
isRegExpMatched: string;
|
|
@@ -2970,14 +2990,20 @@ declare const _default: import("vue-i18n").I18n<{
|
|
|
2970
2990
|
sipAccountValidator: string;
|
|
2971
2991
|
ipValidator: string;
|
|
2972
2992
|
macValidator: string;
|
|
2973
|
-
minValue:
|
|
2974
|
-
|
|
2975
|
-
|
|
2976
|
-
|
|
2977
|
-
|
|
2993
|
+
minValue: ({ named }: {
|
|
2994
|
+
named: any;
|
|
2995
|
+
}) => string;
|
|
2996
|
+
maxValue: ({ named }: {
|
|
2997
|
+
named: any;
|
|
2998
|
+
}) => string;
|
|
2978
2999
|
minLength: ({ named }: {
|
|
2979
3000
|
named: any;
|
|
2980
3001
|
}) => string;
|
|
3002
|
+
maxLength: ({ named }: {
|
|
3003
|
+
named: any;
|
|
3004
|
+
}) => string;
|
|
3005
|
+
sameAs: string;
|
|
3006
|
+
requiredArrayValue: string;
|
|
2981
3007
|
url: string;
|
|
2982
3008
|
websocketValidator: string;
|
|
2983
3009
|
isRegExpMatched: string;
|
|
@@ -3805,12 +3831,20 @@ declare const _default: import("vue-i18n").I18n<{
|
|
|
3805
3831
|
sipAccountValidator: string;
|
|
3806
3832
|
ipValidator: string;
|
|
3807
3833
|
macValidator: string;
|
|
3808
|
-
minValue:
|
|
3809
|
-
|
|
3810
|
-
|
|
3834
|
+
minValue: ({ named }: {
|
|
3835
|
+
named: any;
|
|
3836
|
+
}) => string;
|
|
3837
|
+
maxValue: ({ named }: {
|
|
3838
|
+
named: any;
|
|
3839
|
+
}) => string;
|
|
3840
|
+
maxLength: ({ named }: {
|
|
3841
|
+
named: any;
|
|
3842
|
+
}) => string;
|
|
3811
3843
|
sameAs: string;
|
|
3812
3844
|
requiredArrayValue: string;
|
|
3813
|
-
minLength:
|
|
3845
|
+
minLength: ({ named }: {
|
|
3846
|
+
named: any;
|
|
3847
|
+
}) => string;
|
|
3814
3848
|
url: string;
|
|
3815
3849
|
websocketValidator: string;
|
|
3816
3850
|
isRegExpMatched: string;
|
|
@@ -4600,6 +4634,20 @@ declare const _default: import("vue-i18n").I18n<{
|
|
|
4600
4634
|
};
|
|
4601
4635
|
};
|
|
4602
4636
|
};
|
|
4637
|
+
validation: {
|
|
4638
|
+
minValue: ({ named }: {
|
|
4639
|
+
named: any;
|
|
4640
|
+
}) => string;
|
|
4641
|
+
maxValue: ({ named }: {
|
|
4642
|
+
named: any;
|
|
4643
|
+
}) => string;
|
|
4644
|
+
minLength: ({ named }: {
|
|
4645
|
+
named: any;
|
|
4646
|
+
}) => string;
|
|
4647
|
+
maxLength: ({ named }: {
|
|
4648
|
+
named: any;
|
|
4649
|
+
}) => string;
|
|
4650
|
+
};
|
|
4603
4651
|
systemNotifications: {
|
|
4604
4652
|
success: {
|
|
4605
4653
|
update: ({ named }: {
|
|
@@ -5082,14 +5130,20 @@ declare const _default: import("vue-i18n").I18n<{
|
|
|
5082
5130
|
sipAccountValidator: string;
|
|
5083
5131
|
ipValidator: string;
|
|
5084
5132
|
macValidator: string;
|
|
5085
|
-
minValue:
|
|
5086
|
-
|
|
5087
|
-
|
|
5088
|
-
|
|
5089
|
-
|
|
5133
|
+
minValue: ({ named }: {
|
|
5134
|
+
named: any;
|
|
5135
|
+
}) => string;
|
|
5136
|
+
maxValue: ({ named }: {
|
|
5137
|
+
named: any;
|
|
5138
|
+
}) => string;
|
|
5090
5139
|
minLength: ({ named }: {
|
|
5091
5140
|
named: any;
|
|
5092
5141
|
}) => string;
|
|
5142
|
+
maxLength: ({ named }: {
|
|
5143
|
+
named: any;
|
|
5144
|
+
}) => string;
|
|
5145
|
+
sameAs: string;
|
|
5146
|
+
requiredArrayValue: string;
|
|
5093
5147
|
url: string;
|
|
5094
5148
|
websocketValidator: string;
|
|
5095
5149
|
isRegExpMatched: string;
|
|
@@ -5919,14 +5973,20 @@ declare const _default: import("vue-i18n").I18n<{
|
|
|
5919
5973
|
sipAccountValidator: string;
|
|
5920
5974
|
ipValidator: string;
|
|
5921
5975
|
macValidator: string;
|
|
5922
|
-
minValue:
|
|
5923
|
-
|
|
5924
|
-
|
|
5925
|
-
|
|
5926
|
-
|
|
5976
|
+
minValue: ({ named }: {
|
|
5977
|
+
named: any;
|
|
5978
|
+
}) => string;
|
|
5979
|
+
maxValue: ({ named }: {
|
|
5980
|
+
named: any;
|
|
5981
|
+
}) => string;
|
|
5927
5982
|
minLength: ({ named }: {
|
|
5928
5983
|
named: any;
|
|
5929
5984
|
}) => string;
|
|
5985
|
+
maxLength: ({ named }: {
|
|
5986
|
+
named: any;
|
|
5987
|
+
}) => string;
|
|
5988
|
+
sameAs: string;
|
|
5989
|
+
requiredArrayValue: string;
|
|
5930
5990
|
url: string;
|
|
5931
5991
|
websocketValidator: string;
|
|
5932
5992
|
isRegExpMatched: string;
|
|
@@ -6756,14 +6816,20 @@ declare const _default: import("vue-i18n").I18n<{
|
|
|
6756
6816
|
sipAccountValidator: string;
|
|
6757
6817
|
ipValidator: string;
|
|
6758
6818
|
macValidator: string;
|
|
6759
|
-
minValue:
|
|
6760
|
-
|
|
6761
|
-
|
|
6762
|
-
|
|
6763
|
-
|
|
6819
|
+
minValue: ({ named }: {
|
|
6820
|
+
named: any;
|
|
6821
|
+
}) => string;
|
|
6822
|
+
maxValue: ({ named }: {
|
|
6823
|
+
named: any;
|
|
6824
|
+
}) => string;
|
|
6764
6825
|
minLength: ({ named }: {
|
|
6765
6826
|
named: any;
|
|
6766
6827
|
}) => string;
|
|
6828
|
+
maxLength: ({ named }: {
|
|
6829
|
+
named: any;
|
|
6830
|
+
}) => string;
|
|
6831
|
+
sameAs: string;
|
|
6832
|
+
requiredArrayValue: string;
|
|
6767
6833
|
url: string;
|
|
6768
6834
|
websocketValidator: string;
|
|
6769
6835
|
isRegExpMatched: string;
|