@ironsource/shared-ui 2.1.3-rc.10 → 2.1.3-rc.11
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,24 +10,24 @@ declare const TextFieldTypes: () => ({
|
|
|
10
10
|
size: "small" | "medium" | "large";
|
|
11
11
|
mandatory: boolean;
|
|
12
12
|
testId: string;
|
|
13
|
-
modelValue: string | number;
|
|
14
|
-
placeholder: string;
|
|
15
|
-
autoFocus: boolean;
|
|
16
|
-
prefix: string;
|
|
17
13
|
hoverHelpText: string;
|
|
18
14
|
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";
|
|
19
|
-
feedbackText: string;
|
|
20
|
-
feedbackVariant: "success" | "warning" | "error";
|
|
21
15
|
maxLength: number;
|
|
16
|
+
modelValue: string | number;
|
|
17
|
+
placeholder: string;
|
|
22
18
|
viewOnly: boolean;
|
|
23
19
|
labelDirection: "top" | "inside";
|
|
20
|
+
autoFocus: boolean;
|
|
24
21
|
hideNumberArrows: boolean;
|
|
25
22
|
step: number;
|
|
26
23
|
onlyDigits: boolean;
|
|
24
|
+
prefix: string;
|
|
27
25
|
suffix: string;
|
|
28
26
|
showApply: boolean;
|
|
29
27
|
inlineError: boolean;
|
|
30
28
|
inlineErrorText: string;
|
|
29
|
+
feedbackText: string;
|
|
30
|
+
feedbackVariant: "success" | "warning" | "error";
|
|
31
31
|
showFeedbackTextIcon: boolean;
|
|
32
32
|
}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
33
33
|
type: {
|
|
@@ -54,22 +54,6 @@ declare const TextFieldTypes: () => ({
|
|
|
54
54
|
type: import("vue").PropType<string>;
|
|
55
55
|
default: string;
|
|
56
56
|
};
|
|
57
|
-
modelValue: {
|
|
58
|
-
type: import("vue").PropType<string | number>;
|
|
59
|
-
default: string;
|
|
60
|
-
};
|
|
61
|
-
placeholder: {
|
|
62
|
-
type: import("vue").PropType<string>;
|
|
63
|
-
default: string;
|
|
64
|
-
};
|
|
65
|
-
autoFocus: {
|
|
66
|
-
type: import("vue").PropType<boolean>;
|
|
67
|
-
default: boolean;
|
|
68
|
-
};
|
|
69
|
-
prefix: {
|
|
70
|
-
type: import("vue").PropType<string>;
|
|
71
|
-
default: string;
|
|
72
|
-
};
|
|
73
57
|
hoverHelpText: {
|
|
74
58
|
type: import("vue").PropType<string>;
|
|
75
59
|
default: string;
|
|
@@ -78,18 +62,18 @@ declare const TextFieldTypes: () => ({
|
|
|
78
62
|
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">;
|
|
79
63
|
default: string;
|
|
80
64
|
};
|
|
81
|
-
feedbackText: {
|
|
82
|
-
type: import("vue").PropType<string>;
|
|
83
|
-
default: string;
|
|
84
|
-
};
|
|
85
|
-
feedbackVariant: {
|
|
86
|
-
type: import("vue").PropType<"success" | "warning" | "error">;
|
|
87
|
-
default: any;
|
|
88
|
-
};
|
|
89
65
|
maxLength: {
|
|
90
66
|
type: import("vue").PropType<number>;
|
|
91
67
|
default: any;
|
|
92
68
|
};
|
|
69
|
+
modelValue: {
|
|
70
|
+
type: import("vue").PropType<string | number>;
|
|
71
|
+
default: string;
|
|
72
|
+
};
|
|
73
|
+
placeholder: {
|
|
74
|
+
type: import("vue").PropType<string>;
|
|
75
|
+
default: string;
|
|
76
|
+
};
|
|
93
77
|
viewOnly: {
|
|
94
78
|
type: import("vue").PropType<boolean>;
|
|
95
79
|
default: boolean;
|
|
@@ -98,6 +82,10 @@ declare const TextFieldTypes: () => ({
|
|
|
98
82
|
type: import("vue").PropType<"top" | "inside">;
|
|
99
83
|
default: string;
|
|
100
84
|
};
|
|
85
|
+
autoFocus: {
|
|
86
|
+
type: import("vue").PropType<boolean>;
|
|
87
|
+
default: boolean;
|
|
88
|
+
};
|
|
101
89
|
hideNumberArrows: {
|
|
102
90
|
type: import("vue").PropType<boolean>;
|
|
103
91
|
default: boolean;
|
|
@@ -110,6 +98,10 @@ declare const TextFieldTypes: () => ({
|
|
|
110
98
|
type: import("vue").PropType<boolean>;
|
|
111
99
|
default: boolean;
|
|
112
100
|
};
|
|
101
|
+
prefix: {
|
|
102
|
+
type: import("vue").PropType<string>;
|
|
103
|
+
default: string;
|
|
104
|
+
};
|
|
113
105
|
suffix: {
|
|
114
106
|
type: import("vue").PropType<string>;
|
|
115
107
|
default: string;
|
|
@@ -126,6 +118,14 @@ declare const TextFieldTypes: () => ({
|
|
|
126
118
|
type: import("vue").PropType<string>;
|
|
127
119
|
default: string;
|
|
128
120
|
};
|
|
121
|
+
feedbackText: {
|
|
122
|
+
type: import("vue").PropType<string>;
|
|
123
|
+
default: string;
|
|
124
|
+
};
|
|
125
|
+
feedbackVariant: {
|
|
126
|
+
type: import("vue").PropType<"success" | "warning" | "error">;
|
|
127
|
+
default: any;
|
|
128
|
+
};
|
|
129
129
|
showFeedbackTextIcon: {
|
|
130
130
|
type: import("vue").PropType<boolean>;
|
|
131
131
|
default: boolean;
|
|
@@ -133,7 +133,7 @@ declare const TextFieldTypes: () => ({
|
|
|
133
133
|
}>> & {
|
|
134
134
|
"onUpdate:modelValue"?: (value: string | number) => any;
|
|
135
135
|
onApply?: () => any;
|
|
136
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "type" | "label" | "disabled" | "size" | "mandatory" | "testId" | "
|
|
136
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "type" | "label" | "disabled" | "size" | "mandatory" | "testId" | "hoverHelpText" | "hoverHelpTextPlacement" | "maxLength" | "modelValue" | "placeholder" | "viewOnly" | "labelDirection" | "autoFocus" | "hideNumberArrows" | "step" | "onlyDigits" | "prefix" | "suffix" | "showApply" | "inlineError" | "inlineErrorText" | "feedbackText" | "feedbackVariant" | "showFeedbackTextIcon">;
|
|
137
137
|
$attrs: {
|
|
138
138
|
[x: string]: unknown;
|
|
139
139
|
};
|
|
@@ -172,22 +172,6 @@ declare const TextFieldTypes: () => ({
|
|
|
172
172
|
type: import("vue").PropType<string>;
|
|
173
173
|
default: string;
|
|
174
174
|
};
|
|
175
|
-
modelValue: {
|
|
176
|
-
type: import("vue").PropType<string | number>;
|
|
177
|
-
default: string;
|
|
178
|
-
};
|
|
179
|
-
placeholder: {
|
|
180
|
-
type: import("vue").PropType<string>;
|
|
181
|
-
default: string;
|
|
182
|
-
};
|
|
183
|
-
autoFocus: {
|
|
184
|
-
type: import("vue").PropType<boolean>;
|
|
185
|
-
default: boolean;
|
|
186
|
-
};
|
|
187
|
-
prefix: {
|
|
188
|
-
type: import("vue").PropType<string>;
|
|
189
|
-
default: string;
|
|
190
|
-
};
|
|
191
175
|
hoverHelpText: {
|
|
192
176
|
type: import("vue").PropType<string>;
|
|
193
177
|
default: string;
|
|
@@ -196,18 +180,18 @@ declare const TextFieldTypes: () => ({
|
|
|
196
180
|
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">;
|
|
197
181
|
default: string;
|
|
198
182
|
};
|
|
199
|
-
feedbackText: {
|
|
200
|
-
type: import("vue").PropType<string>;
|
|
201
|
-
default: string;
|
|
202
|
-
};
|
|
203
|
-
feedbackVariant: {
|
|
204
|
-
type: import("vue").PropType<"success" | "warning" | "error">;
|
|
205
|
-
default: any;
|
|
206
|
-
};
|
|
207
183
|
maxLength: {
|
|
208
184
|
type: import("vue").PropType<number>;
|
|
209
185
|
default: any;
|
|
210
186
|
};
|
|
187
|
+
modelValue: {
|
|
188
|
+
type: import("vue").PropType<string | number>;
|
|
189
|
+
default: string;
|
|
190
|
+
};
|
|
191
|
+
placeholder: {
|
|
192
|
+
type: import("vue").PropType<string>;
|
|
193
|
+
default: string;
|
|
194
|
+
};
|
|
211
195
|
viewOnly: {
|
|
212
196
|
type: import("vue").PropType<boolean>;
|
|
213
197
|
default: boolean;
|
|
@@ -216,6 +200,10 @@ declare const TextFieldTypes: () => ({
|
|
|
216
200
|
type: import("vue").PropType<"top" | "inside">;
|
|
217
201
|
default: string;
|
|
218
202
|
};
|
|
203
|
+
autoFocus: {
|
|
204
|
+
type: import("vue").PropType<boolean>;
|
|
205
|
+
default: boolean;
|
|
206
|
+
};
|
|
219
207
|
hideNumberArrows: {
|
|
220
208
|
type: import("vue").PropType<boolean>;
|
|
221
209
|
default: boolean;
|
|
@@ -228,6 +216,10 @@ declare const TextFieldTypes: () => ({
|
|
|
228
216
|
type: import("vue").PropType<boolean>;
|
|
229
217
|
default: boolean;
|
|
230
218
|
};
|
|
219
|
+
prefix: {
|
|
220
|
+
type: import("vue").PropType<string>;
|
|
221
|
+
default: string;
|
|
222
|
+
};
|
|
231
223
|
suffix: {
|
|
232
224
|
type: import("vue").PropType<string>;
|
|
233
225
|
default: string;
|
|
@@ -244,6 +236,14 @@ declare const TextFieldTypes: () => ({
|
|
|
244
236
|
type: import("vue").PropType<string>;
|
|
245
237
|
default: string;
|
|
246
238
|
};
|
|
239
|
+
feedbackText: {
|
|
240
|
+
type: import("vue").PropType<string>;
|
|
241
|
+
default: string;
|
|
242
|
+
};
|
|
243
|
+
feedbackVariant: {
|
|
244
|
+
type: import("vue").PropType<"success" | "warning" | "error">;
|
|
245
|
+
default: any;
|
|
246
|
+
};
|
|
247
247
|
showFeedbackTextIcon: {
|
|
248
248
|
type: import("vue").PropType<boolean>;
|
|
249
249
|
default: boolean;
|
|
@@ -263,24 +263,24 @@ declare const TextFieldTypes: () => ({
|
|
|
263
263
|
size: "small" | "medium" | "large";
|
|
264
264
|
mandatory: boolean;
|
|
265
265
|
testId: string;
|
|
266
|
-
modelValue: string | number;
|
|
267
|
-
placeholder: string;
|
|
268
|
-
autoFocus: boolean;
|
|
269
|
-
prefix: string;
|
|
270
266
|
hoverHelpText: string;
|
|
271
267
|
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";
|
|
272
|
-
feedbackText: string;
|
|
273
|
-
feedbackVariant: "success" | "warning" | "error";
|
|
274
268
|
maxLength: number;
|
|
269
|
+
modelValue: string | number;
|
|
270
|
+
placeholder: string;
|
|
275
271
|
viewOnly: boolean;
|
|
276
272
|
labelDirection: "top" | "inside";
|
|
273
|
+
autoFocus: boolean;
|
|
277
274
|
hideNumberArrows: boolean;
|
|
278
275
|
step: number;
|
|
279
276
|
onlyDigits: boolean;
|
|
277
|
+
prefix: string;
|
|
280
278
|
suffix: string;
|
|
281
279
|
showApply: boolean;
|
|
282
280
|
inlineError: boolean;
|
|
283
281
|
inlineErrorText: string;
|
|
282
|
+
feedbackText: string;
|
|
283
|
+
feedbackVariant: "success" | "warning" | "error";
|
|
284
284
|
showFeedbackTextIcon: boolean;
|
|
285
285
|
}, {}, string> & {
|
|
286
286
|
beforeCreate?: (() => void) | (() => void)[];
|
|
@@ -327,22 +327,6 @@ declare const TextFieldTypes: () => ({
|
|
|
327
327
|
type: import("vue").PropType<string>;
|
|
328
328
|
default: string;
|
|
329
329
|
};
|
|
330
|
-
modelValue: {
|
|
331
|
-
type: import("vue").PropType<string | number>;
|
|
332
|
-
default: string;
|
|
333
|
-
};
|
|
334
|
-
placeholder: {
|
|
335
|
-
type: import("vue").PropType<string>;
|
|
336
|
-
default: string;
|
|
337
|
-
};
|
|
338
|
-
autoFocus: {
|
|
339
|
-
type: import("vue").PropType<boolean>;
|
|
340
|
-
default: boolean;
|
|
341
|
-
};
|
|
342
|
-
prefix: {
|
|
343
|
-
type: import("vue").PropType<string>;
|
|
344
|
-
default: string;
|
|
345
|
-
};
|
|
346
330
|
hoverHelpText: {
|
|
347
331
|
type: import("vue").PropType<string>;
|
|
348
332
|
default: string;
|
|
@@ -351,18 +335,18 @@ declare const TextFieldTypes: () => ({
|
|
|
351
335
|
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">;
|
|
352
336
|
default: string;
|
|
353
337
|
};
|
|
354
|
-
feedbackText: {
|
|
355
|
-
type: import("vue").PropType<string>;
|
|
356
|
-
default: string;
|
|
357
|
-
};
|
|
358
|
-
feedbackVariant: {
|
|
359
|
-
type: import("vue").PropType<"success" | "warning" | "error">;
|
|
360
|
-
default: any;
|
|
361
|
-
};
|
|
362
338
|
maxLength: {
|
|
363
339
|
type: import("vue").PropType<number>;
|
|
364
340
|
default: any;
|
|
365
341
|
};
|
|
342
|
+
modelValue: {
|
|
343
|
+
type: import("vue").PropType<string | number>;
|
|
344
|
+
default: string;
|
|
345
|
+
};
|
|
346
|
+
placeholder: {
|
|
347
|
+
type: import("vue").PropType<string>;
|
|
348
|
+
default: string;
|
|
349
|
+
};
|
|
366
350
|
viewOnly: {
|
|
367
351
|
type: import("vue").PropType<boolean>;
|
|
368
352
|
default: boolean;
|
|
@@ -371,6 +355,10 @@ declare const TextFieldTypes: () => ({
|
|
|
371
355
|
type: import("vue").PropType<"top" | "inside">;
|
|
372
356
|
default: string;
|
|
373
357
|
};
|
|
358
|
+
autoFocus: {
|
|
359
|
+
type: import("vue").PropType<boolean>;
|
|
360
|
+
default: boolean;
|
|
361
|
+
};
|
|
374
362
|
hideNumberArrows: {
|
|
375
363
|
type: import("vue").PropType<boolean>;
|
|
376
364
|
default: boolean;
|
|
@@ -383,6 +371,10 @@ declare const TextFieldTypes: () => ({
|
|
|
383
371
|
type: import("vue").PropType<boolean>;
|
|
384
372
|
default: boolean;
|
|
385
373
|
};
|
|
374
|
+
prefix: {
|
|
375
|
+
type: import("vue").PropType<string>;
|
|
376
|
+
default: string;
|
|
377
|
+
};
|
|
386
378
|
suffix: {
|
|
387
379
|
type: import("vue").PropType<string>;
|
|
388
380
|
default: string;
|
|
@@ -399,6 +391,14 @@ declare const TextFieldTypes: () => ({
|
|
|
399
391
|
type: import("vue").PropType<string>;
|
|
400
392
|
default: string;
|
|
401
393
|
};
|
|
394
|
+
feedbackText: {
|
|
395
|
+
type: import("vue").PropType<string>;
|
|
396
|
+
default: string;
|
|
397
|
+
};
|
|
398
|
+
feedbackVariant: {
|
|
399
|
+
type: import("vue").PropType<"success" | "warning" | "error">;
|
|
400
|
+
default: any;
|
|
401
|
+
};
|
|
402
402
|
showFeedbackTextIcon: {
|
|
403
403
|
type: import("vue").PropType<boolean>;
|
|
404
404
|
default: boolean;
|
|
@@ -437,22 +437,6 @@ declare const TextFieldTypes: () => ({
|
|
|
437
437
|
type: import("vue").PropType<string>;
|
|
438
438
|
default: string;
|
|
439
439
|
};
|
|
440
|
-
modelValue: {
|
|
441
|
-
type: import("vue").PropType<string | number>;
|
|
442
|
-
default: string;
|
|
443
|
-
};
|
|
444
|
-
placeholder: {
|
|
445
|
-
type: import("vue").PropType<string>;
|
|
446
|
-
default: string;
|
|
447
|
-
};
|
|
448
|
-
autoFocus: {
|
|
449
|
-
type: import("vue").PropType<boolean>;
|
|
450
|
-
default: boolean;
|
|
451
|
-
};
|
|
452
|
-
prefix: {
|
|
453
|
-
type: import("vue").PropType<string>;
|
|
454
|
-
default: string;
|
|
455
|
-
};
|
|
456
440
|
hoverHelpText: {
|
|
457
441
|
type: import("vue").PropType<string>;
|
|
458
442
|
default: string;
|
|
@@ -461,18 +445,18 @@ declare const TextFieldTypes: () => ({
|
|
|
461
445
|
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">;
|
|
462
446
|
default: string;
|
|
463
447
|
};
|
|
464
|
-
feedbackText: {
|
|
465
|
-
type: import("vue").PropType<string>;
|
|
466
|
-
default: string;
|
|
467
|
-
};
|
|
468
|
-
feedbackVariant: {
|
|
469
|
-
type: import("vue").PropType<"success" | "warning" | "error">;
|
|
470
|
-
default: any;
|
|
471
|
-
};
|
|
472
448
|
maxLength: {
|
|
473
449
|
type: import("vue").PropType<number>;
|
|
474
450
|
default: any;
|
|
475
451
|
};
|
|
452
|
+
modelValue: {
|
|
453
|
+
type: import("vue").PropType<string | number>;
|
|
454
|
+
default: string;
|
|
455
|
+
};
|
|
456
|
+
placeholder: {
|
|
457
|
+
type: import("vue").PropType<string>;
|
|
458
|
+
default: string;
|
|
459
|
+
};
|
|
476
460
|
viewOnly: {
|
|
477
461
|
type: import("vue").PropType<boolean>;
|
|
478
462
|
default: boolean;
|
|
@@ -481,6 +465,10 @@ declare const TextFieldTypes: () => ({
|
|
|
481
465
|
type: import("vue").PropType<"top" | "inside">;
|
|
482
466
|
default: string;
|
|
483
467
|
};
|
|
468
|
+
autoFocus: {
|
|
469
|
+
type: import("vue").PropType<boolean>;
|
|
470
|
+
default: boolean;
|
|
471
|
+
};
|
|
484
472
|
hideNumberArrows: {
|
|
485
473
|
type: import("vue").PropType<boolean>;
|
|
486
474
|
default: boolean;
|
|
@@ -493,6 +481,10 @@ declare const TextFieldTypes: () => ({
|
|
|
493
481
|
type: import("vue").PropType<boolean>;
|
|
494
482
|
default: boolean;
|
|
495
483
|
};
|
|
484
|
+
prefix: {
|
|
485
|
+
type: import("vue").PropType<string>;
|
|
486
|
+
default: string;
|
|
487
|
+
};
|
|
496
488
|
suffix: {
|
|
497
489
|
type: import("vue").PropType<string>;
|
|
498
490
|
default: string;
|
|
@@ -509,6 +501,14 @@ declare const TextFieldTypes: () => ({
|
|
|
509
501
|
type: import("vue").PropType<string>;
|
|
510
502
|
default: string;
|
|
511
503
|
};
|
|
504
|
+
feedbackText: {
|
|
505
|
+
type: import("vue").PropType<string>;
|
|
506
|
+
default: string;
|
|
507
|
+
};
|
|
508
|
+
feedbackVariant: {
|
|
509
|
+
type: import("vue").PropType<"success" | "warning" | "error">;
|
|
510
|
+
default: any;
|
|
511
|
+
};
|
|
512
512
|
showFeedbackTextIcon: {
|
|
513
513
|
type: import("vue").PropType<boolean>;
|
|
514
514
|
default: boolean;
|
|
@@ -528,24 +528,24 @@ declare const TextFieldTypes: () => ({
|
|
|
528
528
|
size: "small" | "medium" | "large";
|
|
529
529
|
mandatory: boolean;
|
|
530
530
|
testId: string;
|
|
531
|
-
modelValue: string | number;
|
|
532
|
-
placeholder: string;
|
|
533
|
-
autoFocus: boolean;
|
|
534
|
-
prefix: string;
|
|
535
531
|
hoverHelpText: string;
|
|
536
532
|
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";
|
|
537
|
-
feedbackText: string;
|
|
538
|
-
feedbackVariant: "success" | "warning" | "error";
|
|
539
533
|
maxLength: number;
|
|
534
|
+
modelValue: string | number;
|
|
535
|
+
placeholder: string;
|
|
540
536
|
viewOnly: boolean;
|
|
541
537
|
labelDirection: "top" | "inside";
|
|
538
|
+
autoFocus: boolean;
|
|
542
539
|
hideNumberArrows: boolean;
|
|
543
540
|
step: number;
|
|
544
541
|
onlyDigits: boolean;
|
|
542
|
+
prefix: string;
|
|
545
543
|
suffix: string;
|
|
546
544
|
showApply: boolean;
|
|
547
545
|
inlineError: boolean;
|
|
548
546
|
inlineErrorText: string;
|
|
547
|
+
feedbackText: string;
|
|
548
|
+
feedbackVariant: "success" | "warning" | "error";
|
|
549
549
|
showFeedbackTextIcon: boolean;
|
|
550
550
|
}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
551
551
|
$slots: {
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { TooltipPositions } from '@/components/tooltip/common/Tooltip.types';
|
|
1
2
|
export type Row = unknown[];
|
|
2
3
|
export type Column = {
|
|
3
4
|
id: string;
|
|
@@ -9,6 +10,8 @@ export type Column = {
|
|
|
9
10
|
width?: number;
|
|
10
11
|
isTextRight?: boolean;
|
|
11
12
|
isStickyRight?: boolean;
|
|
13
|
+
helpText?: string;
|
|
14
|
+
helpTextPlacement?: TooltipPositions;
|
|
12
15
|
};
|
|
13
16
|
export type Section = {
|
|
14
17
|
id: string;
|
|
@@ -128,10 +128,10 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
128
128
|
title: string;
|
|
129
129
|
search: string;
|
|
130
130
|
testId: string;
|
|
131
|
+
isLoading: boolean;
|
|
132
|
+
searchAutoFocus: boolean;
|
|
131
133
|
searchPlaceholder: string;
|
|
132
134
|
selection: unknown[];
|
|
133
|
-
searchAutoFocus: boolean;
|
|
134
|
-
isLoading: boolean;
|
|
135
135
|
isSticky: boolean;
|
|
136
136
|
sections: Section[];
|
|
137
137
|
isStickyHeader: boolean;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import o from "./DataGrid.vue2.js";
|
|
2
|
-
/* empty css */import
|
|
3
|
-
// import "../../../DataGrid.
|
|
4
|
-
const s = /* @__PURE__ */
|
|
2
|
+
/* empty css */import _ from "../../../_virtual/_plugin-vue_export-helper.js";
|
|
3
|
+
// import "../../../DataGrid.vue_vue_type_style_index_0_scoped_9b108af3_lang.css"; //*');
|
|
4
|
+
const s = /* @__PURE__ */ _(o, [["__scopeId", "data-v-9b108af3"]]);
|
|
5
5
|
export {
|
|
6
6
|
s as default
|
|
7
7
|
};
|