@ironsource/shared-ui 2.1.3-rc.10 → 2.1.3-rc.12
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/AppHeader.vue_vue_type_style_index_0_scoped_f9d4e49d_lang.css +1 -0
- package/Autocomplete.vue_vue_type_style_index_0_scoped_e36c9442_lang.css +1 -0
- package/DataGrid.vue_vue_type_style_index_0_scoped_9b108af3_lang.css +1 -0
- package/FormRow.vue_vue_type_style_index_0_scoped_fc3897fd_lang.css +1 -0
- package/HelpIcon.vue_vue_type_style_index_0_scoped_7a611779_lang.css +1 -0
- package/components/appHeader/AppHeader.vue.js +3 -3
- package/components/appHeader/AppHeader.vue2.js +29 -26
- package/components/autocomplete/Autocomplete.vue.d.ts +117 -0
- package/components/autocomplete/Autocomplete.vue.js +7 -0
- package/components/autocomplete/Autocomplete.vue2.js +84 -0
- package/components/autocomplete/index.d.ts +366 -0
- package/components/autocomplete/index.js +6 -0
- package/components/checkbox/v3/index.d.ts +12 -12
- package/components/checkbox/v4/index.d.ts +12 -12
- package/components/chip/v3/Chip.vue.d.ts +1 -1
- package/components/chip/v3/index.d.ts +20 -20
- package/components/chip/v4/ChipV4.vue.d.ts +1 -1
- package/components/chip/v4/index.d.ts +20 -20
- package/components/dialog/v4/index.d.ts +16 -16
- package/components/dropdown/v3/Dropdown.vue.d.ts +11 -11
- package/components/dropdown/v3/index.d.ts +159 -159
- package/components/dropdown/v4/AppDropdownTrigger.vue.d.ts +4 -4
- package/components/dropdown/v4/ChipDropdownTrigger.vue.d.ts +1 -1
- package/components/dropdown/v4/DefaultDropdownTrigger.vue.d.ts +7 -7
- package/components/dropdown/v4/DropdownV4.vue.d.ts +13 -13
- package/components/dropdown/v4/index.d.ts +573 -573
- package/components/filterDropdown/index.d.ts +8 -8
- package/components/forms/FormRow.vue.js +2 -2
- package/components/forms/FormRow.vue2.js +9 -9
- package/components/includeExclude/IncludeExclude.vue.d.ts +3 -3
- package/components/includeExclude/IncludeExcludeAppHeader.vue.d.ts +2 -2
- package/components/includeExclude/IncludeExcludeChipFilter.vue.d.ts +3 -3
- package/components/includeExclude/IncludeExcludeDragDrop.vue.d.ts +3 -3
- package/components/includeExclude/index.d.ts +168 -168
- package/components/input/v3/Input.vue.d.ts +3 -3
- package/components/input/v3/index.d.ts +82 -82
- package/components/input/v4/TextField.vue.d.ts +6 -6
- package/components/input/v4/index.d.ts +115 -115
- package/components/table/common/Table.types.d.ts +3 -0
- package/components/table/v4/DataGrid.vue.d.ts +2 -2
- package/components/table/v4/DataGrid.vue.js +3 -3
- package/components/table/v4/DataGrid.vue2.js +129 -123
- package/components/table/v4/HelpIcon.vue.d.ts +40 -0
- package/components/table/v4/HelpIcon.vue.js +7 -0
- package/components/table/v4/HelpIcon.vue2.js +32 -0
- package/components/table/v4/index.d.ts +39 -39
- package/components/table-cells/v4/EditableV4.vue.d.ts +1 -1
- package/components/table-cells/v4/index.d.ts +20 -20
- package/components/textArea/v4/TextAreaV4.vue.d.ts +3 -3
- package/components/textArea/v4/index.d.ts +23 -23
- package/components/toggle/v3/Toggle.vue.d.ts +1 -1
- package/components/toggle/v3/index.d.ts +9 -9
- package/components/toggle/v4/ToggleV4.vue.d.ts +1 -1
- package/components/toggle/v4/index.d.ts +28 -28
- package/index.d.ts +1869 -1868
- package/index.js +74 -70
- package/package.json +5 -1
- package/testids/index.d.ts +2 -1
- package/testids/index.js +10 -10
- package/AppHeader.vue_vue_type_style_index_0_scoped_95908b8d_lang.css +0 -1
- package/DataGrid.vue_vue_type_style_index_0_scoped_4baf9e57_lang.css +0 -1
- package/FormRow.vue_vue_type_style_index_0_scoped_c5265707_lang.css +0 -1
|
@@ -10,10 +10,10 @@ declare const DataGridTypes: () => (({
|
|
|
10
10
|
title: string;
|
|
11
11
|
search: string;
|
|
12
12
|
testId: string;
|
|
13
|
+
isLoading: boolean;
|
|
14
|
+
searchAutoFocus: boolean;
|
|
13
15
|
searchPlaceholder: string;
|
|
14
16
|
selection: unknown[];
|
|
15
|
-
searchAutoFocus: boolean;
|
|
16
|
-
isLoading: boolean;
|
|
17
17
|
isSticky: boolean;
|
|
18
18
|
sections: import("../common/Table.types").Section[];
|
|
19
19
|
isStickyHeader: boolean;
|
|
@@ -50,6 +50,14 @@ declare const DataGridTypes: () => (({
|
|
|
50
50
|
type: import("vue").PropType<string>;
|
|
51
51
|
default: string;
|
|
52
52
|
};
|
|
53
|
+
isLoading: {
|
|
54
|
+
type: import("vue").PropType<boolean>;
|
|
55
|
+
default: boolean;
|
|
56
|
+
};
|
|
57
|
+
searchAutoFocus: {
|
|
58
|
+
type: import("vue").PropType<boolean>;
|
|
59
|
+
default: boolean;
|
|
60
|
+
};
|
|
53
61
|
searchPlaceholder: {
|
|
54
62
|
type: import("vue").PropType<string>;
|
|
55
63
|
default: string;
|
|
@@ -58,14 +66,6 @@ declare const DataGridTypes: () => (({
|
|
|
58
66
|
type: import("vue").PropType<unknown[]>;
|
|
59
67
|
default: any;
|
|
60
68
|
};
|
|
61
|
-
searchAutoFocus: {
|
|
62
|
-
type: import("vue").PropType<boolean>;
|
|
63
|
-
default: boolean;
|
|
64
|
-
};
|
|
65
|
-
isLoading: {
|
|
66
|
-
type: import("vue").PropType<boolean>;
|
|
67
|
-
default: boolean;
|
|
68
|
-
};
|
|
69
69
|
isSticky: {
|
|
70
70
|
type: import("vue").PropType<boolean>;
|
|
71
71
|
default: boolean;
|
|
@@ -142,7 +142,7 @@ declare const DataGridTypes: () => (({
|
|
|
142
142
|
onLoadMore?: () => any;
|
|
143
143
|
"onUpdate:search"?: (query: string) => any;
|
|
144
144
|
"onUpdate:selection"?: (selection: unknown[]) => any;
|
|
145
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "sort" | "title" | "search" | "testId" | "
|
|
145
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "sort" | "title" | "search" | "testId" | "isLoading" | "searchAutoFocus" | "searchPlaceholder" | "selection" | "isSticky" | "sections" | "isStickyHeader" | "emptyStateTitle" | "emptyStateSubtitle" | "isInfiniteScroll" | "infiniteScrollThreshold" | "rowHeight" | "loadingRowCount" | "defaultScrollPosition" | "getRowId" | "selectedMatcher" | "emptyStateVariant" | "showSearch" | "zIndexBase">;
|
|
146
146
|
$attrs: {
|
|
147
147
|
[x: string]: unknown;
|
|
148
148
|
};
|
|
@@ -182,6 +182,14 @@ declare const DataGridTypes: () => (({
|
|
|
182
182
|
type: import("vue").PropType<string>;
|
|
183
183
|
default: string;
|
|
184
184
|
};
|
|
185
|
+
isLoading: {
|
|
186
|
+
type: import("vue").PropType<boolean>;
|
|
187
|
+
default: boolean;
|
|
188
|
+
};
|
|
189
|
+
searchAutoFocus: {
|
|
190
|
+
type: import("vue").PropType<boolean>;
|
|
191
|
+
default: boolean;
|
|
192
|
+
};
|
|
185
193
|
searchPlaceholder: {
|
|
186
194
|
type: import("vue").PropType<string>;
|
|
187
195
|
default: string;
|
|
@@ -190,14 +198,6 @@ declare const DataGridTypes: () => (({
|
|
|
190
198
|
type: import("vue").PropType<unknown[]>;
|
|
191
199
|
default: any;
|
|
192
200
|
};
|
|
193
|
-
searchAutoFocus: {
|
|
194
|
-
type: import("vue").PropType<boolean>;
|
|
195
|
-
default: boolean;
|
|
196
|
-
};
|
|
197
|
-
isLoading: {
|
|
198
|
-
type: import("vue").PropType<boolean>;
|
|
199
|
-
default: boolean;
|
|
200
|
-
};
|
|
201
201
|
isSticky: {
|
|
202
202
|
type: import("vue").PropType<boolean>;
|
|
203
203
|
default: boolean;
|
|
@@ -291,10 +291,10 @@ declare const DataGridTypes: () => (({
|
|
|
291
291
|
title: string;
|
|
292
292
|
search: string;
|
|
293
293
|
testId: string;
|
|
294
|
+
isLoading: boolean;
|
|
295
|
+
searchAutoFocus: boolean;
|
|
294
296
|
searchPlaceholder: string;
|
|
295
297
|
selection: unknown[];
|
|
296
|
-
searchAutoFocus: boolean;
|
|
297
|
-
isLoading: boolean;
|
|
298
298
|
isSticky: boolean;
|
|
299
299
|
sections: import("../common/Table.types").Section[];
|
|
300
300
|
isStickyHeader: boolean;
|
|
@@ -351,6 +351,14 @@ declare const DataGridTypes: () => (({
|
|
|
351
351
|
type: import("vue").PropType<string>;
|
|
352
352
|
default: string;
|
|
353
353
|
};
|
|
354
|
+
isLoading: {
|
|
355
|
+
type: import("vue").PropType<boolean>;
|
|
356
|
+
default: boolean;
|
|
357
|
+
};
|
|
358
|
+
searchAutoFocus: {
|
|
359
|
+
type: import("vue").PropType<boolean>;
|
|
360
|
+
default: boolean;
|
|
361
|
+
};
|
|
354
362
|
searchPlaceholder: {
|
|
355
363
|
type: import("vue").PropType<string>;
|
|
356
364
|
default: string;
|
|
@@ -359,14 +367,6 @@ declare const DataGridTypes: () => (({
|
|
|
359
367
|
type: import("vue").PropType<unknown[]>;
|
|
360
368
|
default: any;
|
|
361
369
|
};
|
|
362
|
-
searchAutoFocus: {
|
|
363
|
-
type: import("vue").PropType<boolean>;
|
|
364
|
-
default: boolean;
|
|
365
|
-
};
|
|
366
|
-
isLoading: {
|
|
367
|
-
type: import("vue").PropType<boolean>;
|
|
368
|
-
default: boolean;
|
|
369
|
-
};
|
|
370
370
|
isSticky: {
|
|
371
371
|
type: import("vue").PropType<boolean>;
|
|
372
372
|
default: boolean;
|
|
@@ -468,6 +468,14 @@ declare const DataGridTypes: () => (({
|
|
|
468
468
|
type: import("vue").PropType<string>;
|
|
469
469
|
default: string;
|
|
470
470
|
};
|
|
471
|
+
isLoading: {
|
|
472
|
+
type: import("vue").PropType<boolean>;
|
|
473
|
+
default: boolean;
|
|
474
|
+
};
|
|
475
|
+
searchAutoFocus: {
|
|
476
|
+
type: import("vue").PropType<boolean>;
|
|
477
|
+
default: boolean;
|
|
478
|
+
};
|
|
471
479
|
searchPlaceholder: {
|
|
472
480
|
type: import("vue").PropType<string>;
|
|
473
481
|
default: string;
|
|
@@ -476,14 +484,6 @@ declare const DataGridTypes: () => (({
|
|
|
476
484
|
type: import("vue").PropType<unknown[]>;
|
|
477
485
|
default: any;
|
|
478
486
|
};
|
|
479
|
-
searchAutoFocus: {
|
|
480
|
-
type: import("vue").PropType<boolean>;
|
|
481
|
-
default: boolean;
|
|
482
|
-
};
|
|
483
|
-
isLoading: {
|
|
484
|
-
type: import("vue").PropType<boolean>;
|
|
485
|
-
default: boolean;
|
|
486
|
-
};
|
|
487
487
|
isSticky: {
|
|
488
488
|
type: import("vue").PropType<boolean>;
|
|
489
489
|
default: boolean;
|
|
@@ -577,10 +577,10 @@ declare const DataGridTypes: () => (({
|
|
|
577
577
|
title: string;
|
|
578
578
|
search: string;
|
|
579
579
|
testId: string;
|
|
580
|
+
isLoading: boolean;
|
|
581
|
+
searchAutoFocus: boolean;
|
|
580
582
|
searchPlaceholder: string;
|
|
581
583
|
selection: unknown[];
|
|
582
|
-
searchAutoFocus: boolean;
|
|
583
|
-
isLoading: boolean;
|
|
584
584
|
isSticky: boolean;
|
|
585
585
|
sections: import("../common/Table.types").Section[];
|
|
586
586
|
isStickyHeader: boolean;
|
|
@@ -29,9 +29,9 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
29
29
|
}>>>, {
|
|
30
30
|
type: "input" | "dropdown";
|
|
31
31
|
cell: string;
|
|
32
|
-
displayValue: (option: unknown) => unknown;
|
|
33
32
|
validateFunction: (value: unknown) => string | boolean;
|
|
34
33
|
isLoading: boolean;
|
|
34
|
+
displayValue: (option: unknown) => unknown;
|
|
35
35
|
}>, {
|
|
36
36
|
input?(_: {}): any;
|
|
37
37
|
content?(_: {}): any;
|
|
@@ -6,9 +6,9 @@ declare const EditableTypes: () => ({
|
|
|
6
6
|
$props: Partial<{
|
|
7
7
|
type: "input" | "dropdown";
|
|
8
8
|
cell: string;
|
|
9
|
-
displayValue: (option: unknown) => unknown;
|
|
10
9
|
validateFunction: (value: unknown) => string | boolean;
|
|
11
10
|
isLoading: boolean;
|
|
11
|
+
displayValue: (option: unknown) => unknown;
|
|
12
12
|
}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
13
13
|
type: {
|
|
14
14
|
type: import("vue").PropType<"input" | "dropdown">;
|
|
@@ -19,10 +19,6 @@ declare const EditableTypes: () => ({
|
|
|
19
19
|
type: import("vue").PropType<string>;
|
|
20
20
|
default: string;
|
|
21
21
|
};
|
|
22
|
-
displayValue: {
|
|
23
|
-
type: import("vue").PropType<(option: unknown) => unknown>;
|
|
24
|
-
default: (cell: unknown) => unknown;
|
|
25
|
-
};
|
|
26
22
|
validateFunction: {
|
|
27
23
|
type: import("vue").PropType<(value: unknown) => string | boolean>;
|
|
28
24
|
default: () => false;
|
|
@@ -39,7 +35,11 @@ declare const EditableTypes: () => ({
|
|
|
39
35
|
type: import("vue").PropType<number>;
|
|
40
36
|
required: true;
|
|
41
37
|
};
|
|
42
|
-
|
|
38
|
+
displayValue: {
|
|
39
|
+
type: import("vue").PropType<(option: unknown) => unknown>;
|
|
40
|
+
default: (cell: unknown) => unknown;
|
|
41
|
+
};
|
|
42
|
+
}>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "type" | "cell" | "validateFunction" | "isLoading" | "displayValue">;
|
|
43
43
|
$attrs: {
|
|
44
44
|
[x: string]: unknown;
|
|
45
45
|
};
|
|
@@ -63,10 +63,6 @@ declare const EditableTypes: () => ({
|
|
|
63
63
|
type: import("vue").PropType<string>;
|
|
64
64
|
default: string;
|
|
65
65
|
};
|
|
66
|
-
displayValue: {
|
|
67
|
-
type: import("vue").PropType<(option: unknown) => unknown>;
|
|
68
|
-
default: (cell: unknown) => unknown;
|
|
69
|
-
};
|
|
70
66
|
validateFunction: {
|
|
71
67
|
type: import("vue").PropType<(value: unknown) => string | boolean>;
|
|
72
68
|
default: () => false;
|
|
@@ -83,12 +79,16 @@ declare const EditableTypes: () => ({
|
|
|
83
79
|
type: import("vue").PropType<number>;
|
|
84
80
|
required: true;
|
|
85
81
|
};
|
|
82
|
+
displayValue: {
|
|
83
|
+
type: import("vue").PropType<(option: unknown) => unknown>;
|
|
84
|
+
default: (cell: unknown) => unknown;
|
|
85
|
+
};
|
|
86
86
|
}>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
|
|
87
87
|
type: "input" | "dropdown";
|
|
88
88
|
cell: string;
|
|
89
|
-
displayValue: (option: unknown) => unknown;
|
|
90
89
|
validateFunction: (value: unknown) => string | boolean;
|
|
91
90
|
isLoading: boolean;
|
|
91
|
+
displayValue: (option: unknown) => unknown;
|
|
92
92
|
}, {}, string> & {
|
|
93
93
|
beforeCreate?: (() => void) | (() => void)[];
|
|
94
94
|
created?: (() => void) | (() => void)[];
|
|
@@ -119,10 +119,6 @@ declare const EditableTypes: () => ({
|
|
|
119
119
|
type: import("vue").PropType<string>;
|
|
120
120
|
default: string;
|
|
121
121
|
};
|
|
122
|
-
displayValue: {
|
|
123
|
-
type: import("vue").PropType<(option: unknown) => unknown>;
|
|
124
|
-
default: (cell: unknown) => unknown;
|
|
125
|
-
};
|
|
126
122
|
validateFunction: {
|
|
127
123
|
type: import("vue").PropType<(value: unknown) => string | boolean>;
|
|
128
124
|
default: () => false;
|
|
@@ -139,6 +135,10 @@ declare const EditableTypes: () => ({
|
|
|
139
135
|
type: import("vue").PropType<number>;
|
|
140
136
|
required: true;
|
|
141
137
|
};
|
|
138
|
+
displayValue: {
|
|
139
|
+
type: import("vue").PropType<(option: unknown) => unknown>;
|
|
140
|
+
default: (cell: unknown) => unknown;
|
|
141
|
+
};
|
|
142
142
|
}>> & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {};
|
|
143
143
|
__isFragment?: never;
|
|
144
144
|
__isTeleport?: never;
|
|
@@ -153,10 +153,6 @@ declare const EditableTypes: () => ({
|
|
|
153
153
|
type: import("vue").PropType<string>;
|
|
154
154
|
default: string;
|
|
155
155
|
};
|
|
156
|
-
displayValue: {
|
|
157
|
-
type: import("vue").PropType<(option: unknown) => unknown>;
|
|
158
|
-
default: (cell: unknown) => unknown;
|
|
159
|
-
};
|
|
160
156
|
validateFunction: {
|
|
161
157
|
type: import("vue").PropType<(value: unknown) => string | boolean>;
|
|
162
158
|
default: () => false;
|
|
@@ -173,12 +169,16 @@ declare const EditableTypes: () => ({
|
|
|
173
169
|
type: import("vue").PropType<number>;
|
|
174
170
|
required: true;
|
|
175
171
|
};
|
|
172
|
+
displayValue: {
|
|
173
|
+
type: import("vue").PropType<(option: unknown) => unknown>;
|
|
174
|
+
default: (cell: unknown) => unknown;
|
|
175
|
+
};
|
|
176
176
|
}>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
|
|
177
177
|
type: "input" | "dropdown";
|
|
178
178
|
cell: string;
|
|
179
|
-
displayValue: (option: unknown) => unknown;
|
|
180
179
|
validateFunction: (value: unknown) => string | boolean;
|
|
181
180
|
isLoading: boolean;
|
|
181
|
+
displayValue: (option: unknown) => unknown;
|
|
182
182
|
}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
183
183
|
$slots: {
|
|
184
184
|
input?(_: {}): any;
|
|
@@ -71,13 +71,13 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
|
|
|
71
71
|
resize: 'none' | 'vertical' | 'horizontal' | 'both';
|
|
72
72
|
mandatory: boolean;
|
|
73
73
|
testId: string;
|
|
74
|
-
modelValue: string;
|
|
75
|
-
placeholder: string;
|
|
76
74
|
hoverHelpText: string;
|
|
77
75
|
hoverHelpTextPlacement: TooltipPositions;
|
|
76
|
+
maxLength: number;
|
|
77
|
+
modelValue: string;
|
|
78
|
+
placeholder: string;
|
|
78
79
|
feedbackText: string;
|
|
79
80
|
feedbackVariant: FeedbackVariant;
|
|
80
|
-
maxLength: number;
|
|
81
81
|
showFeedbackTextIcon: boolean;
|
|
82
82
|
}>;
|
|
83
83
|
export default _default;
|
|
@@ -23,20 +23,24 @@ declare const TextAreaTypes: () => import("vue").DefineComponent<{
|
|
|
23
23
|
type: import("vue").PropType<string>;
|
|
24
24
|
default: string;
|
|
25
25
|
};
|
|
26
|
-
|
|
26
|
+
hoverHelpText: {
|
|
27
27
|
type: import("vue").PropType<string>;
|
|
28
28
|
default: string;
|
|
29
29
|
};
|
|
30
|
-
|
|
31
|
-
type: import("vue").PropType<
|
|
30
|
+
hoverHelpTextPlacement: {
|
|
31
|
+
type: import("vue").PropType<"auto" | "left" | "right" | "bottom" | "top" | "auto-start" | "auto-end" | "top-start" | "top-end" | "right-start" | "right-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end">;
|
|
32
32
|
default: string;
|
|
33
33
|
};
|
|
34
|
-
|
|
34
|
+
maxLength: {
|
|
35
|
+
type: import("vue").PropType<number>;
|
|
36
|
+
default: any;
|
|
37
|
+
};
|
|
38
|
+
modelValue: {
|
|
35
39
|
type: import("vue").PropType<string>;
|
|
36
40
|
default: string;
|
|
37
41
|
};
|
|
38
|
-
|
|
39
|
-
type: import("vue").PropType<
|
|
42
|
+
placeholder: {
|
|
43
|
+
type: import("vue").PropType<string>;
|
|
40
44
|
default: string;
|
|
41
45
|
};
|
|
42
46
|
feedbackText: {
|
|
@@ -47,10 +51,6 @@ declare const TextAreaTypes: () => import("vue").DefineComponent<{
|
|
|
47
51
|
type: import("vue").PropType<"success" | "warning" | "error">;
|
|
48
52
|
default: any;
|
|
49
53
|
};
|
|
50
|
-
maxLength: {
|
|
51
|
-
type: import("vue").PropType<number>;
|
|
52
|
-
default: any;
|
|
53
|
-
};
|
|
54
54
|
showFeedbackTextIcon: {
|
|
55
55
|
type: import("vue").PropType<boolean>;
|
|
56
56
|
default: boolean;
|
|
@@ -82,20 +82,24 @@ declare const TextAreaTypes: () => import("vue").DefineComponent<{
|
|
|
82
82
|
type: import("vue").PropType<string>;
|
|
83
83
|
default: string;
|
|
84
84
|
};
|
|
85
|
-
|
|
85
|
+
hoverHelpText: {
|
|
86
86
|
type: import("vue").PropType<string>;
|
|
87
87
|
default: string;
|
|
88
88
|
};
|
|
89
|
-
|
|
90
|
-
type: import("vue").PropType<
|
|
89
|
+
hoverHelpTextPlacement: {
|
|
90
|
+
type: import("vue").PropType<"auto" | "left" | "right" | "bottom" | "top" | "auto-start" | "auto-end" | "top-start" | "top-end" | "right-start" | "right-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end">;
|
|
91
91
|
default: string;
|
|
92
92
|
};
|
|
93
|
-
|
|
93
|
+
maxLength: {
|
|
94
|
+
type: import("vue").PropType<number>;
|
|
95
|
+
default: any;
|
|
96
|
+
};
|
|
97
|
+
modelValue: {
|
|
94
98
|
type: import("vue").PropType<string>;
|
|
95
99
|
default: string;
|
|
96
100
|
};
|
|
97
|
-
|
|
98
|
-
type: import("vue").PropType<
|
|
101
|
+
placeholder: {
|
|
102
|
+
type: import("vue").PropType<string>;
|
|
99
103
|
default: string;
|
|
100
104
|
};
|
|
101
105
|
feedbackText: {
|
|
@@ -106,10 +110,6 @@ declare const TextAreaTypes: () => import("vue").DefineComponent<{
|
|
|
106
110
|
type: import("vue").PropType<"success" | "warning" | "error">;
|
|
107
111
|
default: any;
|
|
108
112
|
};
|
|
109
|
-
maxLength: {
|
|
110
|
-
type: import("vue").PropType<number>;
|
|
111
|
-
default: any;
|
|
112
|
-
};
|
|
113
113
|
showFeedbackTextIcon: {
|
|
114
114
|
type: import("vue").PropType<boolean>;
|
|
115
115
|
default: boolean;
|
|
@@ -123,13 +123,13 @@ declare const TextAreaTypes: () => import("vue").DefineComponent<{
|
|
|
123
123
|
resize: "both" | "none" | "horizontal" | "vertical";
|
|
124
124
|
mandatory: boolean;
|
|
125
125
|
testId: string;
|
|
126
|
-
modelValue: string;
|
|
127
|
-
placeholder: string;
|
|
128
126
|
hoverHelpText: string;
|
|
129
127
|
hoverHelpTextPlacement: "auto" | "left" | "right" | "bottom" | "top" | "auto-start" | "auto-end" | "top-start" | "top-end" | "right-start" | "right-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end";
|
|
128
|
+
maxLength: number;
|
|
129
|
+
modelValue: string;
|
|
130
|
+
placeholder: string;
|
|
130
131
|
feedbackText: string;
|
|
131
132
|
feedbackVariant: "success" | "warning" | "error";
|
|
132
|
-
maxLength: number;
|
|
133
133
|
showFeedbackTextIcon: boolean;
|
|
134
134
|
}>[];
|
|
135
135
|
export { default as TextArea } from './TextAreaV4.vue';
|
|
@@ -43,8 +43,8 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
|
|
|
43
43
|
}, {
|
|
44
44
|
color: string;
|
|
45
45
|
testId: string;
|
|
46
|
-
helperText: string;
|
|
47
46
|
isLoading: boolean;
|
|
47
|
+
helperText: string;
|
|
48
48
|
errorText: string;
|
|
49
49
|
activeText: string;
|
|
50
50
|
inactiveText: string;
|
|
@@ -7,6 +7,10 @@ declare const ToggleTypes: () => import("vue").DefineComponent<{
|
|
|
7
7
|
type: import("vue").PropType<string>;
|
|
8
8
|
default: string;
|
|
9
9
|
};
|
|
10
|
+
isLoading: {
|
|
11
|
+
type: import("vue").PropType<boolean>;
|
|
12
|
+
default: boolean;
|
|
13
|
+
};
|
|
10
14
|
modelValue: {
|
|
11
15
|
type: import("vue").PropType<boolean>;
|
|
12
16
|
required: true;
|
|
@@ -15,10 +19,6 @@ declare const ToggleTypes: () => import("vue").DefineComponent<{
|
|
|
15
19
|
type: import("vue").PropType<string>;
|
|
16
20
|
default: any;
|
|
17
21
|
};
|
|
18
|
-
isLoading: {
|
|
19
|
-
type: import("vue").PropType<boolean>;
|
|
20
|
-
default: boolean;
|
|
21
|
-
};
|
|
22
22
|
errorText: {
|
|
23
23
|
type: import("vue").PropType<string>;
|
|
24
24
|
default: any;
|
|
@@ -46,6 +46,10 @@ declare const ToggleTypes: () => import("vue").DefineComponent<{
|
|
|
46
46
|
type: import("vue").PropType<string>;
|
|
47
47
|
default: string;
|
|
48
48
|
};
|
|
49
|
+
isLoading: {
|
|
50
|
+
type: import("vue").PropType<boolean>;
|
|
51
|
+
default: boolean;
|
|
52
|
+
};
|
|
49
53
|
modelValue: {
|
|
50
54
|
type: import("vue").PropType<boolean>;
|
|
51
55
|
required: true;
|
|
@@ -54,10 +58,6 @@ declare const ToggleTypes: () => import("vue").DefineComponent<{
|
|
|
54
58
|
type: import("vue").PropType<string>;
|
|
55
59
|
default: any;
|
|
56
60
|
};
|
|
57
|
-
isLoading: {
|
|
58
|
-
type: import("vue").PropType<boolean>;
|
|
59
|
-
default: boolean;
|
|
60
|
-
};
|
|
61
61
|
errorText: {
|
|
62
62
|
type: import("vue").PropType<string>;
|
|
63
63
|
default: any;
|
|
@@ -79,8 +79,8 @@ declare const ToggleTypes: () => import("vue").DefineComponent<{
|
|
|
79
79
|
}, {
|
|
80
80
|
color: string;
|
|
81
81
|
testId: string;
|
|
82
|
-
helperText: string;
|
|
83
82
|
isLoading: boolean;
|
|
83
|
+
helperText: string;
|
|
84
84
|
errorText: string;
|
|
85
85
|
activeText: string;
|
|
86
86
|
inactiveText: string;
|
|
@@ -61,11 +61,11 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
61
61
|
size: "small" | "medium";
|
|
62
62
|
color: "primary" | "test";
|
|
63
63
|
testId: string;
|
|
64
|
+
isLoading: boolean;
|
|
64
65
|
hoverHelpText: string;
|
|
65
66
|
hoverHelpTextPlacement: "auto" | "left" | "right" | "bottom" | "top" | "auto-start" | "auto-end" | "top-start" | "top-end" | "right-start" | "right-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end";
|
|
66
67
|
feedbackText: string;
|
|
67
68
|
feedbackVariant: "success" | "warning" | "error";
|
|
68
|
-
isLoading: boolean;
|
|
69
69
|
activeText: string;
|
|
70
70
|
inactiveText: string;
|
|
71
71
|
isDisabled: boolean;
|
|
@@ -7,11 +7,11 @@ declare const ToggleTypes: () => ({
|
|
|
7
7
|
size: "small" | "medium";
|
|
8
8
|
color: "primary" | "test";
|
|
9
9
|
testId: string;
|
|
10
|
+
isLoading: boolean;
|
|
10
11
|
hoverHelpText: string;
|
|
11
12
|
hoverHelpTextPlacement: "auto" | "left" | "right" | "bottom" | "top" | "auto-start" | "auto-end" | "top-start" | "top-end" | "right-start" | "right-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end";
|
|
12
13
|
feedbackText: string;
|
|
13
14
|
feedbackVariant: "success" | "warning" | "error";
|
|
14
|
-
isLoading: boolean;
|
|
15
15
|
activeText: string;
|
|
16
16
|
inactiveText: string;
|
|
17
17
|
isDisabled: boolean;
|
|
@@ -32,9 +32,9 @@ declare const ToggleTypes: () => ({
|
|
|
32
32
|
type: import("vue").PropType<string>;
|
|
33
33
|
default: string;
|
|
34
34
|
};
|
|
35
|
-
|
|
35
|
+
isLoading: {
|
|
36
36
|
type: import("vue").PropType<boolean>;
|
|
37
|
-
|
|
37
|
+
default: boolean;
|
|
38
38
|
};
|
|
39
39
|
hoverHelpText: {
|
|
40
40
|
type: import("vue").PropType<string>;
|
|
@@ -44,6 +44,10 @@ declare const ToggleTypes: () => ({
|
|
|
44
44
|
type: import("vue").PropType<"auto" | "left" | "right" | "bottom" | "top" | "auto-start" | "auto-end" | "top-start" | "top-end" | "right-start" | "right-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end">;
|
|
45
45
|
default: string;
|
|
46
46
|
};
|
|
47
|
+
modelValue: {
|
|
48
|
+
type: import("vue").PropType<boolean>;
|
|
49
|
+
required: true;
|
|
50
|
+
};
|
|
47
51
|
feedbackText: {
|
|
48
52
|
type: import("vue").PropType<string>;
|
|
49
53
|
default: string;
|
|
@@ -52,10 +56,6 @@ declare const ToggleTypes: () => ({
|
|
|
52
56
|
type: import("vue").PropType<"success" | "warning" | "error">;
|
|
53
57
|
default: any;
|
|
54
58
|
};
|
|
55
|
-
isLoading: {
|
|
56
|
-
type: import("vue").PropType<boolean>;
|
|
57
|
-
default: boolean;
|
|
58
|
-
};
|
|
59
59
|
activeText: {
|
|
60
60
|
type: import("vue").PropType<string>;
|
|
61
61
|
default: any;
|
|
@@ -70,7 +70,7 @@ declare const ToggleTypes: () => ({
|
|
|
70
70
|
};
|
|
71
71
|
}>> & {
|
|
72
72
|
"onUpdate:modelValue"?: (value: boolean) => any;
|
|
73
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "text" | "size" | "color" | "testId" | "
|
|
73
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "text" | "size" | "color" | "testId" | "isLoading" | "hoverHelpText" | "hoverHelpTextPlacement" | "feedbackText" | "feedbackVariant" | "activeText" | "inactiveText" | "isDisabled">;
|
|
74
74
|
$attrs: {
|
|
75
75
|
[x: string]: unknown;
|
|
76
76
|
};
|
|
@@ -101,9 +101,9 @@ declare const ToggleTypes: () => ({
|
|
|
101
101
|
type: import("vue").PropType<string>;
|
|
102
102
|
default: string;
|
|
103
103
|
};
|
|
104
|
-
|
|
104
|
+
isLoading: {
|
|
105
105
|
type: import("vue").PropType<boolean>;
|
|
106
|
-
|
|
106
|
+
default: boolean;
|
|
107
107
|
};
|
|
108
108
|
hoverHelpText: {
|
|
109
109
|
type: import("vue").PropType<string>;
|
|
@@ -113,6 +113,10 @@ declare const ToggleTypes: () => ({
|
|
|
113
113
|
type: import("vue").PropType<"auto" | "left" | "right" | "bottom" | "top" | "auto-start" | "auto-end" | "top-start" | "top-end" | "right-start" | "right-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end">;
|
|
114
114
|
default: string;
|
|
115
115
|
};
|
|
116
|
+
modelValue: {
|
|
117
|
+
type: import("vue").PropType<boolean>;
|
|
118
|
+
required: true;
|
|
119
|
+
};
|
|
116
120
|
feedbackText: {
|
|
117
121
|
type: import("vue").PropType<string>;
|
|
118
122
|
default: string;
|
|
@@ -121,10 +125,6 @@ declare const ToggleTypes: () => ({
|
|
|
121
125
|
type: import("vue").PropType<"success" | "warning" | "error">;
|
|
122
126
|
default: any;
|
|
123
127
|
};
|
|
124
|
-
isLoading: {
|
|
125
|
-
type: import("vue").PropType<boolean>;
|
|
126
|
-
default: boolean;
|
|
127
|
-
};
|
|
128
128
|
activeText: {
|
|
129
129
|
type: import("vue").PropType<string>;
|
|
130
130
|
default: any;
|
|
@@ -146,11 +146,11 @@ declare const ToggleTypes: () => ({
|
|
|
146
146
|
size: "small" | "medium";
|
|
147
147
|
color: "primary" | "test";
|
|
148
148
|
testId: string;
|
|
149
|
+
isLoading: boolean;
|
|
149
150
|
hoverHelpText: string;
|
|
150
151
|
hoverHelpTextPlacement: "auto" | "left" | "right" | "bottom" | "top" | "auto-start" | "auto-end" | "top-start" | "top-end" | "right-start" | "right-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end";
|
|
151
152
|
feedbackText: string;
|
|
152
153
|
feedbackVariant: "success" | "warning" | "error";
|
|
153
|
-
isLoading: boolean;
|
|
154
154
|
activeText: string;
|
|
155
155
|
inactiveText: string;
|
|
156
156
|
isDisabled: boolean;
|
|
@@ -191,9 +191,9 @@ declare const ToggleTypes: () => ({
|
|
|
191
191
|
type: import("vue").PropType<string>;
|
|
192
192
|
default: string;
|
|
193
193
|
};
|
|
194
|
-
|
|
194
|
+
isLoading: {
|
|
195
195
|
type: import("vue").PropType<boolean>;
|
|
196
|
-
|
|
196
|
+
default: boolean;
|
|
197
197
|
};
|
|
198
198
|
hoverHelpText: {
|
|
199
199
|
type: import("vue").PropType<string>;
|
|
@@ -203,6 +203,10 @@ declare const ToggleTypes: () => ({
|
|
|
203
203
|
type: import("vue").PropType<"auto" | "left" | "right" | "bottom" | "top" | "auto-start" | "auto-end" | "top-start" | "top-end" | "right-start" | "right-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end">;
|
|
204
204
|
default: string;
|
|
205
205
|
};
|
|
206
|
+
modelValue: {
|
|
207
|
+
type: import("vue").PropType<boolean>;
|
|
208
|
+
required: true;
|
|
209
|
+
};
|
|
206
210
|
feedbackText: {
|
|
207
211
|
type: import("vue").PropType<string>;
|
|
208
212
|
default: string;
|
|
@@ -211,10 +215,6 @@ declare const ToggleTypes: () => ({
|
|
|
211
215
|
type: import("vue").PropType<"success" | "warning" | "error">;
|
|
212
216
|
default: any;
|
|
213
217
|
};
|
|
214
|
-
isLoading: {
|
|
215
|
-
type: import("vue").PropType<boolean>;
|
|
216
|
-
default: boolean;
|
|
217
|
-
};
|
|
218
218
|
activeText: {
|
|
219
219
|
type: import("vue").PropType<string>;
|
|
220
220
|
default: any;
|
|
@@ -250,9 +250,9 @@ declare const ToggleTypes: () => ({
|
|
|
250
250
|
type: import("vue").PropType<string>;
|
|
251
251
|
default: string;
|
|
252
252
|
};
|
|
253
|
-
|
|
253
|
+
isLoading: {
|
|
254
254
|
type: import("vue").PropType<boolean>;
|
|
255
|
-
|
|
255
|
+
default: boolean;
|
|
256
256
|
};
|
|
257
257
|
hoverHelpText: {
|
|
258
258
|
type: import("vue").PropType<string>;
|
|
@@ -262,6 +262,10 @@ declare const ToggleTypes: () => ({
|
|
|
262
262
|
type: import("vue").PropType<"auto" | "left" | "right" | "bottom" | "top" | "auto-start" | "auto-end" | "top-start" | "top-end" | "right-start" | "right-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end">;
|
|
263
263
|
default: string;
|
|
264
264
|
};
|
|
265
|
+
modelValue: {
|
|
266
|
+
type: import("vue").PropType<boolean>;
|
|
267
|
+
required: true;
|
|
268
|
+
};
|
|
265
269
|
feedbackText: {
|
|
266
270
|
type: import("vue").PropType<string>;
|
|
267
271
|
default: string;
|
|
@@ -270,10 +274,6 @@ declare const ToggleTypes: () => ({
|
|
|
270
274
|
type: import("vue").PropType<"success" | "warning" | "error">;
|
|
271
275
|
default: any;
|
|
272
276
|
};
|
|
273
|
-
isLoading: {
|
|
274
|
-
type: import("vue").PropType<boolean>;
|
|
275
|
-
default: boolean;
|
|
276
|
-
};
|
|
277
277
|
activeText: {
|
|
278
278
|
type: import("vue").PropType<string>;
|
|
279
279
|
default: any;
|
|
@@ -295,11 +295,11 @@ declare const ToggleTypes: () => ({
|
|
|
295
295
|
size: "small" | "medium";
|
|
296
296
|
color: "primary" | "test";
|
|
297
297
|
testId: string;
|
|
298
|
+
isLoading: boolean;
|
|
298
299
|
hoverHelpText: string;
|
|
299
300
|
hoverHelpTextPlacement: "auto" | "left" | "right" | "bottom" | "top" | "auto-start" | "auto-end" | "top-start" | "top-end" | "right-start" | "right-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end";
|
|
300
301
|
feedbackText: string;
|
|
301
302
|
feedbackVariant: "success" | "warning" | "error";
|
|
302
|
-
isLoading: boolean;
|
|
303
303
|
activeText: string;
|
|
304
304
|
inactiveText: string;
|
|
305
305
|
isDisabled: boolean;
|