@ironsource/shared-ui 2.1.7-test.3 → 2.1.7-test.5
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/DataGrid.vue_vue_type_style_index_0_scoped_5273976b_lang.css +1 -0
- package/DataGridRowsCounter.vue_vue_type_style_index_0_scoped_ef699ec5_lang.css +1 -0
- package/DropdownV4.vue_vue_type_style_index_0_scoped_938772ee_lang.css +1 -0
- package/EditableV4.vue_vue_type_style_index_0_scoped_e0c047b4_lang.css +1 -0
- package/IncludeExclude.vue_vue_type_style_index_0_scoped_cc2adbf5_lang.css +1 -0
- package/IncludeExcludeDragDrop.vue_vue_type_style_index_0_scoped_bd6145ce_lang.css +1 -0
- package/MultipleDataGrid.vue_vue_type_style_index_0_scoped_82ba0e12_lang.css +1 -0
- package/OptionV4.vue_vue_type_style_index_0_scoped_b6a06f00_lang.css +1 -0
- package/Popover.vue_vue_type_style_index_0_scoped_c607b770_lang.css +1 -0
- package/PopoverV4.vue_vue_type_style_index_0_scoped_c54cd089_lang.css +1 -0
- package/PopoverV4.vue_vue_type_style_index_1_lang.css +1 -0
- package/SortableList.vue_vue_type_style_index_0_scoped_e9cd63b8_lang.css +1 -0
- package/TabsV4.vue_vue_type_style_index_0_scoped_f9433b11_lang.css +1 -0
- package/TextField.vue_vue_type_style_index_0_scoped_4d9bf5b2_lang.css +1 -0
- package/ThemeWrapper.vue_vue_type_style_index_0_scoped_66bd448a_lang.css +1 -0
- package/components/ThemeWrapper/ThemeWrapper.vue.js +2 -2
- package/components/ThemeWrapper/ThemeWrapper.vue2.js +5 -5
- package/components/dropdown/v4/DropdownV4.vue.d.ts +10 -0
- package/components/dropdown/v4/DropdownV4.vue.js +3 -3
- package/components/dropdown/v4/DropdownV4.vue2.js +151 -147
- package/components/dropdown/v4/OptionV4.vue.d.ts +10 -0
- package/components/dropdown/v4/OptionV4.vue.js +2 -2
- package/components/dropdown/v4/OptionV4.vue2.js +70 -53
- package/components/dropdown/v4/dropdownStoryArgs.d.ts +14 -0
- package/components/dropdown/v4/index.d.ts +78 -2
- package/components/includeExclude/IncludeExclude.vue.js +4 -4
- package/components/includeExclude/IncludeExclude.vue2.js +2 -2
- package/components/includeExclude/IncludeExcludeDragDrop.vue.js +4 -4
- package/components/includeExclude/IncludeExcludeDragDrop.vue2.js +2 -2
- package/components/input/v4/TextField.vue.js +3 -3
- package/components/input/v4/TextField.vue2.js +1 -1
- package/components/popover/common/Popover.common.d.ts +6 -0
- package/components/popover/common/Popover.common.js +17 -0
- package/components/popover/v3/Popover.vue.js +8 -0
- package/components/popover/{Popover.vue2.js → v3/Popover.vue2.js} +1 -1
- package/components/popover/v4/PopoverV4.vue.d.ts +73 -0
- package/components/popover/v4/PopoverV4.vue.js +7 -0
- package/components/popover/v4/PopoverV4.vue2.js +54 -0
- package/components/popover/v4/index.d.ts +209 -0
- package/components/popover/v4/index.js +6 -0
- package/components/sortableList/SortableList.vue.d.ts +25 -0
- package/components/sortableList/SortableList.vue.js +4 -4
- package/components/sortableList/SortableList.vue2.js +129 -89
- package/components/sortableList/index.d.ts +88 -2
- package/components/table/common/Table.common.js +71 -68
- package/components/table/v3/Table.vue.d.ts +2 -2
- package/components/table/v3/index.d.ts +39 -39
- package/components/table/v4/DataGrid.vue.d.ts +12 -2
- package/components/table/v4/DataGrid.vue.js +4 -4
- package/components/table/v4/DataGrid.vue2.js +103 -100
- package/components/table/v4/DataGridRowsCounter.vue.d.ts +5 -0
- package/components/table/v4/DataGridRowsCounter.vue.js +3 -3
- package/components/table/v4/DataGridRowsCounter.vue2.js +30 -22
- package/components/table/v4/MultipleDataGrid.vue.d.ts +16 -3
- package/components/table/v4/MultipleDataGrid.vue.js +4 -4
- package/components/table/v4/MultipleDataGrid.vue2.js +114 -66
- package/components/table/v4/index.d.ts +135 -75
- package/components/table/v4/storyUtils.d.ts +4 -0
- package/components/table-cells/common/Editable.common.js +37 -26
- package/components/table-cells/common/EditableContext.d.ts +1 -0
- package/components/table-cells/v4/EditableV4.vue.d.ts +5 -0
- package/components/table-cells/v4/EditableV4.vue.js +5 -5
- package/components/table-cells/v4/EditableV4.vue2.js +18 -17
- package/components/table-cells/v4/index.d.ts +20 -1
- package/components/tabs/v4/TabsV4.vue.js +4 -4
- package/components/tabs/v4/TabsV4.vue2.js +37 -40
- package/index.d.ts +1134 -239
- package/index.js +70 -70
- package/package.json +7 -3
- package/testids/index.d.ts +5 -0
- package/testids/index.js +24 -23
- package/utils/formatNumbers.d.ts +4 -0
- package/utils/formatNumbers.js +11 -0
- package/DataGrid.vue_vue_type_style_index_0_scoped_63aaf3be_lang.css +0 -1
- package/DataGridRowsCounter.vue_vue_type_style_index_0_scoped_06751538_lang.css +0 -1
- package/DropdownV4.vue_vue_type_style_index_0_scoped_7af4f288_lang.css +0 -1
- package/EditableV4.vue_vue_type_style_index_0_scoped_31bfb722_lang.css +0 -1
- package/IncludeExclude.vue_vue_type_style_index_0_scoped_fb054d88_lang.css +0 -1
- package/IncludeExcludeDragDrop.vue_vue_type_style_index_0_scoped_5764fd61_lang.css +0 -1
- package/MultipleDataGrid.vue_vue_type_style_index_0_scoped_260b9cdc_lang.css +0 -1
- package/OptionV4.vue_vue_type_style_index_0_scoped_9db0f796_lang.css +0 -1
- package/Popover.vue_vue_type_style_index_0_scoped_25eb53db_lang.css +0 -1
- package/SortableList.vue_vue_type_style_index_0_scoped_21842d59_lang.css +0 -1
- package/TabsV4.vue_vue_type_style_index_0_scoped_bab40cfe_lang.css +0 -1
- package/TextField.vue_vue_type_style_index_0_scoped_eb472aa3_lang.css +0 -1
- package/ThemeWrapper.vue_vue_type_style_index_0_scoped_b62ee695_lang.css +0 -1
- package/components/popover/Popover.vue.js +0 -8
- /package/components/popover/{Popover.vue.d.ts → v3/Popover.vue.d.ts} +0 -0
- /package/components/popover/{index.d.ts → v3/index.d.ts} +0 -0
- /package/components/popover/{index.js → v3/index.js} +0 -0
package/index.d.ts
CHANGED
|
@@ -10,7 +10,6 @@ export * from '@/composables/useId';
|
|
|
10
10
|
export * from '@/components/filterDropdown';
|
|
11
11
|
export * from '@/components/typography';
|
|
12
12
|
export * from '@/components/typography/v4';
|
|
13
|
-
export * from '@/components/popover';
|
|
14
13
|
export * from '@/components/multibar';
|
|
15
14
|
export * from '@/components/layout';
|
|
16
15
|
export * from '@/components/forms';
|
|
@@ -21,6 +20,420 @@ import * as tableV4 from '@/components/table/v4';
|
|
|
21
20
|
import * as tableCellsV3 from '@/components/table-cells/v3';
|
|
22
21
|
import * as snackbarV3 from '@/components/snackbar/v3';
|
|
23
22
|
declare const _default: {
|
|
23
|
+
Popover: {
|
|
24
|
+
new (...args: any[]): {
|
|
25
|
+
$: import("vue").ComponentInternalInstance;
|
|
26
|
+
$data: {};
|
|
27
|
+
$props: Partial<{
|
|
28
|
+
disabled: boolean;
|
|
29
|
+
testId: string;
|
|
30
|
+
placement: import("floating-vue").Placement;
|
|
31
|
+
distance: number;
|
|
32
|
+
popperClass: string;
|
|
33
|
+
autoHide: boolean;
|
|
34
|
+
skidding: number;
|
|
35
|
+
trigger: "touch" | "click" | "focus" | "hover" | "managed";
|
|
36
|
+
}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
37
|
+
disabled: {
|
|
38
|
+
type: import("vue").PropType<boolean>;
|
|
39
|
+
default: boolean;
|
|
40
|
+
};
|
|
41
|
+
testId: {
|
|
42
|
+
type: import("vue").PropType<string>;
|
|
43
|
+
default: string;
|
|
44
|
+
};
|
|
45
|
+
placement: {
|
|
46
|
+
type: import("vue").PropType<import("floating-vue").Placement>;
|
|
47
|
+
default: string;
|
|
48
|
+
};
|
|
49
|
+
distance: {
|
|
50
|
+
type: import("vue").PropType<number>;
|
|
51
|
+
default: number;
|
|
52
|
+
};
|
|
53
|
+
popperClass: {
|
|
54
|
+
type: import("vue").PropType<string>;
|
|
55
|
+
default: string;
|
|
56
|
+
};
|
|
57
|
+
autoHide: {
|
|
58
|
+
type: import("vue").PropType<boolean>;
|
|
59
|
+
default: boolean;
|
|
60
|
+
};
|
|
61
|
+
skidding: {
|
|
62
|
+
type: import("vue").PropType<number>;
|
|
63
|
+
default: number;
|
|
64
|
+
};
|
|
65
|
+
trigger: {
|
|
66
|
+
type: import("vue").PropType<"touch" | "click" | "focus" | "hover" | "managed">;
|
|
67
|
+
default: string;
|
|
68
|
+
};
|
|
69
|
+
}>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "disabled" | "testId" | "placement" | "distance" | "popperClass" | "autoHide" | "skidding" | "trigger">;
|
|
70
|
+
$attrs: {
|
|
71
|
+
[x: string]: unknown;
|
|
72
|
+
};
|
|
73
|
+
$refs: {
|
|
74
|
+
[x: string]: unknown;
|
|
75
|
+
};
|
|
76
|
+
$slots: Readonly<{
|
|
77
|
+
[name: string]: import("vue").Slot;
|
|
78
|
+
}>;
|
|
79
|
+
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
|
|
80
|
+
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
|
|
81
|
+
$emit: (event: string, ...args: any[]) => void;
|
|
82
|
+
$el: any;
|
|
83
|
+
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
84
|
+
disabled: {
|
|
85
|
+
type: import("vue").PropType<boolean>;
|
|
86
|
+
default: boolean;
|
|
87
|
+
};
|
|
88
|
+
testId: {
|
|
89
|
+
type: import("vue").PropType<string>;
|
|
90
|
+
default: string;
|
|
91
|
+
};
|
|
92
|
+
placement: {
|
|
93
|
+
type: import("vue").PropType<import("floating-vue").Placement>;
|
|
94
|
+
default: string;
|
|
95
|
+
};
|
|
96
|
+
distance: {
|
|
97
|
+
type: import("vue").PropType<number>;
|
|
98
|
+
default: number;
|
|
99
|
+
};
|
|
100
|
+
popperClass: {
|
|
101
|
+
type: import("vue").PropType<string>;
|
|
102
|
+
default: string;
|
|
103
|
+
};
|
|
104
|
+
autoHide: {
|
|
105
|
+
type: import("vue").PropType<boolean>;
|
|
106
|
+
default: boolean;
|
|
107
|
+
};
|
|
108
|
+
skidding: {
|
|
109
|
+
type: import("vue").PropType<number>;
|
|
110
|
+
default: number;
|
|
111
|
+
};
|
|
112
|
+
trigger: {
|
|
113
|
+
type: import("vue").PropType<"touch" | "click" | "focus" | "hover" | "managed">;
|
|
114
|
+
default: string;
|
|
115
|
+
};
|
|
116
|
+
}>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
|
|
117
|
+
disabled: boolean;
|
|
118
|
+
testId: string;
|
|
119
|
+
placement: import("floating-vue").Placement;
|
|
120
|
+
distance: number;
|
|
121
|
+
popperClass: string;
|
|
122
|
+
autoHide: boolean;
|
|
123
|
+
skidding: number;
|
|
124
|
+
trigger: "touch" | "click" | "focus" | "hover" | "managed";
|
|
125
|
+
}, {}, string> & {
|
|
126
|
+
beforeCreate?: (() => void) | (() => void)[];
|
|
127
|
+
created?: (() => void) | (() => void)[];
|
|
128
|
+
beforeMount?: (() => void) | (() => void)[];
|
|
129
|
+
mounted?: (() => void) | (() => void)[];
|
|
130
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
|
131
|
+
updated?: (() => void) | (() => void)[];
|
|
132
|
+
activated?: (() => void) | (() => void)[];
|
|
133
|
+
deactivated?: (() => void) | (() => void)[];
|
|
134
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
|
135
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
|
136
|
+
destroyed?: (() => void) | (() => void)[];
|
|
137
|
+
unmounted?: (() => void) | (() => void)[];
|
|
138
|
+
renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
|
139
|
+
renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
|
140
|
+
errorCaptured?: ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>, info: string) => boolean | void) | ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>, info: string) => boolean | void)[];
|
|
141
|
+
};
|
|
142
|
+
$forceUpdate: () => void;
|
|
143
|
+
$nextTick: typeof import("vue").nextTick;
|
|
144
|
+
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (args_0: R, args_1: R) => any : (...args: any) => any, options?: import("vue").WatchOptions<boolean>): import("vue").WatchStopHandle;
|
|
145
|
+
} & Readonly<import("vue").ExtractPropTypes<{
|
|
146
|
+
disabled: {
|
|
147
|
+
type: import("vue").PropType<boolean>;
|
|
148
|
+
default: boolean;
|
|
149
|
+
};
|
|
150
|
+
testId: {
|
|
151
|
+
type: import("vue").PropType<string>;
|
|
152
|
+
default: string;
|
|
153
|
+
};
|
|
154
|
+
placement: {
|
|
155
|
+
type: import("vue").PropType<import("floating-vue").Placement>;
|
|
156
|
+
default: string;
|
|
157
|
+
};
|
|
158
|
+
distance: {
|
|
159
|
+
type: import("vue").PropType<number>;
|
|
160
|
+
default: number;
|
|
161
|
+
};
|
|
162
|
+
popperClass: {
|
|
163
|
+
type: import("vue").PropType<string>;
|
|
164
|
+
default: string;
|
|
165
|
+
};
|
|
166
|
+
autoHide: {
|
|
167
|
+
type: import("vue").PropType<boolean>;
|
|
168
|
+
default: boolean;
|
|
169
|
+
};
|
|
170
|
+
skidding: {
|
|
171
|
+
type: import("vue").PropType<number>;
|
|
172
|
+
default: number;
|
|
173
|
+
};
|
|
174
|
+
trigger: {
|
|
175
|
+
type: import("vue").PropType<"touch" | "click" | "focus" | "hover" | "managed">;
|
|
176
|
+
default: string;
|
|
177
|
+
};
|
|
178
|
+
}>> & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {};
|
|
179
|
+
__isFragment?: never;
|
|
180
|
+
__isTeleport?: never;
|
|
181
|
+
__isSuspense?: never;
|
|
182
|
+
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
183
|
+
disabled: {
|
|
184
|
+
type: import("vue").PropType<boolean>;
|
|
185
|
+
default: boolean;
|
|
186
|
+
};
|
|
187
|
+
testId: {
|
|
188
|
+
type: import("vue").PropType<string>;
|
|
189
|
+
default: string;
|
|
190
|
+
};
|
|
191
|
+
placement: {
|
|
192
|
+
type: import("vue").PropType<import("floating-vue").Placement>;
|
|
193
|
+
default: string;
|
|
194
|
+
};
|
|
195
|
+
distance: {
|
|
196
|
+
type: import("vue").PropType<number>;
|
|
197
|
+
default: number;
|
|
198
|
+
};
|
|
199
|
+
popperClass: {
|
|
200
|
+
type: import("vue").PropType<string>;
|
|
201
|
+
default: string;
|
|
202
|
+
};
|
|
203
|
+
autoHide: {
|
|
204
|
+
type: import("vue").PropType<boolean>;
|
|
205
|
+
default: boolean;
|
|
206
|
+
};
|
|
207
|
+
skidding: {
|
|
208
|
+
type: import("vue").PropType<number>;
|
|
209
|
+
default: number;
|
|
210
|
+
};
|
|
211
|
+
trigger: {
|
|
212
|
+
type: import("vue").PropType<"touch" | "click" | "focus" | "hover" | "managed">;
|
|
213
|
+
default: string;
|
|
214
|
+
};
|
|
215
|
+
}>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
|
|
216
|
+
disabled: boolean;
|
|
217
|
+
testId: string;
|
|
218
|
+
placement: import("floating-vue").Placement;
|
|
219
|
+
distance: number;
|
|
220
|
+
popperClass: string;
|
|
221
|
+
autoHide: boolean;
|
|
222
|
+
skidding: number;
|
|
223
|
+
trigger: "touch" | "click" | "focus" | "hover" | "managed";
|
|
224
|
+
}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
225
|
+
$slots: {
|
|
226
|
+
trigger?(_: {}): any;
|
|
227
|
+
content?(_: {}): any;
|
|
228
|
+
};
|
|
229
|
+
});
|
|
230
|
+
PopoverTypes: () => ({
|
|
231
|
+
new (...args: any[]): {
|
|
232
|
+
$: import("vue").ComponentInternalInstance;
|
|
233
|
+
$data: {};
|
|
234
|
+
$props: Partial<{
|
|
235
|
+
disabled: boolean;
|
|
236
|
+
testId: string;
|
|
237
|
+
placement: import("floating-vue").Placement;
|
|
238
|
+
distance: number;
|
|
239
|
+
popperClass: string;
|
|
240
|
+
autoHide: boolean;
|
|
241
|
+
skidding: number;
|
|
242
|
+
trigger: "touch" | "click" | "focus" | "hover" | "managed";
|
|
243
|
+
}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
244
|
+
disabled: {
|
|
245
|
+
type: import("vue").PropType<boolean>;
|
|
246
|
+
default: boolean;
|
|
247
|
+
};
|
|
248
|
+
testId: {
|
|
249
|
+
type: import("vue").PropType<string>;
|
|
250
|
+
default: string;
|
|
251
|
+
};
|
|
252
|
+
placement: {
|
|
253
|
+
type: import("vue").PropType<import("floating-vue").Placement>;
|
|
254
|
+
default: string;
|
|
255
|
+
};
|
|
256
|
+
distance: {
|
|
257
|
+
type: import("vue").PropType<number>;
|
|
258
|
+
default: number;
|
|
259
|
+
};
|
|
260
|
+
popperClass: {
|
|
261
|
+
type: import("vue").PropType<string>;
|
|
262
|
+
default: string;
|
|
263
|
+
};
|
|
264
|
+
autoHide: {
|
|
265
|
+
type: import("vue").PropType<boolean>;
|
|
266
|
+
default: boolean;
|
|
267
|
+
};
|
|
268
|
+
skidding: {
|
|
269
|
+
type: import("vue").PropType<number>;
|
|
270
|
+
default: number;
|
|
271
|
+
};
|
|
272
|
+
trigger: {
|
|
273
|
+
type: import("vue").PropType<"touch" | "click" | "focus" | "hover" | "managed">;
|
|
274
|
+
default: string;
|
|
275
|
+
};
|
|
276
|
+
}>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "disabled" | "testId" | "placement" | "distance" | "popperClass" | "autoHide" | "skidding" | "trigger">;
|
|
277
|
+
$attrs: {
|
|
278
|
+
[x: string]: unknown;
|
|
279
|
+
};
|
|
280
|
+
$refs: {
|
|
281
|
+
[x: string]: unknown;
|
|
282
|
+
};
|
|
283
|
+
$slots: Readonly<{
|
|
284
|
+
[name: string]: import("vue").Slot;
|
|
285
|
+
}>;
|
|
286
|
+
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
|
|
287
|
+
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
|
|
288
|
+
$emit: (event: string, ...args: any[]) => void;
|
|
289
|
+
$el: any;
|
|
290
|
+
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
291
|
+
disabled: {
|
|
292
|
+
type: import("vue").PropType<boolean>;
|
|
293
|
+
default: boolean;
|
|
294
|
+
};
|
|
295
|
+
testId: {
|
|
296
|
+
type: import("vue").PropType<string>;
|
|
297
|
+
default: string;
|
|
298
|
+
};
|
|
299
|
+
placement: {
|
|
300
|
+
type: import("vue").PropType<import("floating-vue").Placement>;
|
|
301
|
+
default: string;
|
|
302
|
+
};
|
|
303
|
+
distance: {
|
|
304
|
+
type: import("vue").PropType<number>;
|
|
305
|
+
default: number;
|
|
306
|
+
};
|
|
307
|
+
popperClass: {
|
|
308
|
+
type: import("vue").PropType<string>;
|
|
309
|
+
default: string;
|
|
310
|
+
};
|
|
311
|
+
autoHide: {
|
|
312
|
+
type: import("vue").PropType<boolean>;
|
|
313
|
+
default: boolean;
|
|
314
|
+
};
|
|
315
|
+
skidding: {
|
|
316
|
+
type: import("vue").PropType<number>;
|
|
317
|
+
default: number;
|
|
318
|
+
};
|
|
319
|
+
trigger: {
|
|
320
|
+
type: import("vue").PropType<"touch" | "click" | "focus" | "hover" | "managed">;
|
|
321
|
+
default: string;
|
|
322
|
+
};
|
|
323
|
+
}>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
|
|
324
|
+
disabled: boolean;
|
|
325
|
+
testId: string;
|
|
326
|
+
placement: import("floating-vue").Placement;
|
|
327
|
+
distance: number;
|
|
328
|
+
popperClass: string;
|
|
329
|
+
autoHide: boolean;
|
|
330
|
+
skidding: number;
|
|
331
|
+
trigger: "touch" | "click" | "focus" | "hover" | "managed";
|
|
332
|
+
}, {}, string> & {
|
|
333
|
+
beforeCreate?: (() => void) | (() => void)[];
|
|
334
|
+
created?: (() => void) | (() => void)[];
|
|
335
|
+
beforeMount?: (() => void) | (() => void)[];
|
|
336
|
+
mounted?: (() => void) | (() => void)[];
|
|
337
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
|
338
|
+
updated?: (() => void) | (() => void)[];
|
|
339
|
+
activated?: (() => void) | (() => void)[];
|
|
340
|
+
deactivated?: (() => void) | (() => void)[];
|
|
341
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
|
342
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
|
343
|
+
destroyed?: (() => void) | (() => void)[];
|
|
344
|
+
unmounted?: (() => void) | (() => void)[];
|
|
345
|
+
renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
|
346
|
+
renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
|
347
|
+
errorCaptured?: ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>, info: string) => boolean | void) | ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>, info: string) => boolean | void)[];
|
|
348
|
+
};
|
|
349
|
+
$forceUpdate: () => void;
|
|
350
|
+
$nextTick: typeof import("vue").nextTick;
|
|
351
|
+
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (args_0: R, args_1: R) => any : (...args: any) => any, options?: import("vue").WatchOptions<boolean>): import("vue").WatchStopHandle;
|
|
352
|
+
} & Readonly<import("vue").ExtractPropTypes<{
|
|
353
|
+
disabled: {
|
|
354
|
+
type: import("vue").PropType<boolean>;
|
|
355
|
+
default: boolean;
|
|
356
|
+
};
|
|
357
|
+
testId: {
|
|
358
|
+
type: import("vue").PropType<string>;
|
|
359
|
+
default: string;
|
|
360
|
+
};
|
|
361
|
+
placement: {
|
|
362
|
+
type: import("vue").PropType<import("floating-vue").Placement>;
|
|
363
|
+
default: string;
|
|
364
|
+
};
|
|
365
|
+
distance: {
|
|
366
|
+
type: import("vue").PropType<number>;
|
|
367
|
+
default: number;
|
|
368
|
+
};
|
|
369
|
+
popperClass: {
|
|
370
|
+
type: import("vue").PropType<string>;
|
|
371
|
+
default: string;
|
|
372
|
+
};
|
|
373
|
+
autoHide: {
|
|
374
|
+
type: import("vue").PropType<boolean>;
|
|
375
|
+
default: boolean;
|
|
376
|
+
};
|
|
377
|
+
skidding: {
|
|
378
|
+
type: import("vue").PropType<number>;
|
|
379
|
+
default: number;
|
|
380
|
+
};
|
|
381
|
+
trigger: {
|
|
382
|
+
type: import("vue").PropType<"touch" | "click" | "focus" | "hover" | "managed">;
|
|
383
|
+
default: string;
|
|
384
|
+
};
|
|
385
|
+
}>> & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {};
|
|
386
|
+
__isFragment?: never;
|
|
387
|
+
__isTeleport?: never;
|
|
388
|
+
__isSuspense?: never;
|
|
389
|
+
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
390
|
+
disabled: {
|
|
391
|
+
type: import("vue").PropType<boolean>;
|
|
392
|
+
default: boolean;
|
|
393
|
+
};
|
|
394
|
+
testId: {
|
|
395
|
+
type: import("vue").PropType<string>;
|
|
396
|
+
default: string;
|
|
397
|
+
};
|
|
398
|
+
placement: {
|
|
399
|
+
type: import("vue").PropType<import("floating-vue").Placement>;
|
|
400
|
+
default: string;
|
|
401
|
+
};
|
|
402
|
+
distance: {
|
|
403
|
+
type: import("vue").PropType<number>;
|
|
404
|
+
default: number;
|
|
405
|
+
};
|
|
406
|
+
popperClass: {
|
|
407
|
+
type: import("vue").PropType<string>;
|
|
408
|
+
default: string;
|
|
409
|
+
};
|
|
410
|
+
autoHide: {
|
|
411
|
+
type: import("vue").PropType<boolean>;
|
|
412
|
+
default: boolean;
|
|
413
|
+
};
|
|
414
|
+
skidding: {
|
|
415
|
+
type: import("vue").PropType<number>;
|
|
416
|
+
default: number;
|
|
417
|
+
};
|
|
418
|
+
trigger: {
|
|
419
|
+
type: import("vue").PropType<"touch" | "click" | "focus" | "hover" | "managed">;
|
|
420
|
+
default: string;
|
|
421
|
+
};
|
|
422
|
+
}>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
|
|
423
|
+
disabled: boolean;
|
|
424
|
+
testId: string;
|
|
425
|
+
placement: import("floating-vue").Placement;
|
|
426
|
+
distance: number;
|
|
427
|
+
popperClass: string;
|
|
428
|
+
autoHide: boolean;
|
|
429
|
+
skidding: number;
|
|
430
|
+
trigger: "touch" | "click" | "focus" | "hover" | "managed";
|
|
431
|
+
}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
432
|
+
$slots: {
|
|
433
|
+
trigger?(_: {}): any;
|
|
434
|
+
content?(_: {}): any;
|
|
435
|
+
};
|
|
436
|
+
}))[];
|
|
24
437
|
DateRange: {
|
|
25
438
|
new (...args: any[]): {
|
|
26
439
|
$: import("vue").ComponentInternalInstance;
|
|
@@ -1204,6 +1617,7 @@ declare const _default: {
|
|
|
1204
1617
|
$props: Partial<{
|
|
1205
1618
|
search: string;
|
|
1206
1619
|
testId: string;
|
|
1620
|
+
isLoading: boolean;
|
|
1207
1621
|
displayValue: (item: import("./components/sortableList/SortableList.types").SortableListItem) => string;
|
|
1208
1622
|
searchPlaceholder: string;
|
|
1209
1623
|
items: import("./components/sortableList/SortableList.types").SortableListItem[];
|
|
@@ -1212,6 +1626,8 @@ declare const _default: {
|
|
|
1212
1626
|
openId: string | number;
|
|
1213
1627
|
selectedId: string | number;
|
|
1214
1628
|
showSearch: boolean;
|
|
1629
|
+
loadingRowCount: number;
|
|
1630
|
+
emptyStateTitle: string;
|
|
1215
1631
|
}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
1216
1632
|
search: {
|
|
1217
1633
|
type: import("vue").PropType<string>;
|
|
@@ -1221,6 +1637,10 @@ declare const _default: {
|
|
|
1221
1637
|
type: import("vue").PropType<string>;
|
|
1222
1638
|
default: string;
|
|
1223
1639
|
};
|
|
1640
|
+
isLoading: {
|
|
1641
|
+
type: import("vue").PropType<boolean>;
|
|
1642
|
+
default: boolean;
|
|
1643
|
+
};
|
|
1224
1644
|
displayValue: {
|
|
1225
1645
|
type: import("vue").PropType<(item: import("./components/sortableList/SortableList.types").SortableListItem) => string>;
|
|
1226
1646
|
required: true;
|
|
@@ -1255,14 +1675,26 @@ declare const _default: {
|
|
|
1255
1675
|
type: import("vue").PropType<boolean>;
|
|
1256
1676
|
default: boolean;
|
|
1257
1677
|
};
|
|
1678
|
+
loadingRowCount: {
|
|
1679
|
+
type: import("vue").PropType<number>;
|
|
1680
|
+
default: number;
|
|
1681
|
+
};
|
|
1682
|
+
emptyStateTitle: {
|
|
1683
|
+
type: import("vue").PropType<string>;
|
|
1684
|
+
default: string;
|
|
1685
|
+
};
|
|
1258
1686
|
}>> & {
|
|
1687
|
+
onSortableItemDragged?: (event: {
|
|
1688
|
+
id: string;
|
|
1689
|
+
newIndex: number;
|
|
1690
|
+
}) => any;
|
|
1259
1691
|
"onUpdate:items"?: (items: import("./components/sortableList/SortableList.types").SortableListItem[]) => any;
|
|
1260
1692
|
"onUpdate:openId"?: (id: string | number) => any;
|
|
1261
1693
|
"onUpdate:selectedId"?: (id: string | number) => any;
|
|
1262
1694
|
"onUpdate:selectedChildId"?: (id: string | number) => any;
|
|
1263
1695
|
"onUpdate:search"?: (query: string) => any;
|
|
1264
1696
|
onClearSearch?: () => any;
|
|
1265
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "search" | "testId" | "displayValue" | "searchPlaceholder" | "items" | "selectedChildId" | "searchHandler" | "openId" | "selectedId" | "showSearch">;
|
|
1697
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "search" | "testId" | "isLoading" | "displayValue" | "searchPlaceholder" | "items" | "selectedChildId" | "searchHandler" | "openId" | "selectedId" | "showSearch" | "loadingRowCount" | "emptyStateTitle">;
|
|
1266
1698
|
$attrs: {
|
|
1267
1699
|
[x: string]: unknown;
|
|
1268
1700
|
};
|
|
@@ -1274,7 +1706,10 @@ declare const _default: {
|
|
|
1274
1706
|
}>;
|
|
1275
1707
|
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
|
|
1276
1708
|
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
|
|
1277
|
-
$emit: ((event: "
|
|
1709
|
+
$emit: ((event: "sortableItemDragged", event: {
|
|
1710
|
+
id: string;
|
|
1711
|
+
newIndex: number;
|
|
1712
|
+
}) => void) & ((event: "update:items", items: import("./components/sortableList/SortableList.types").SortableListItem[]) => void) & ((event: "update:openId", id: string | number) => void) & ((event: "update:selectedId", id: string | number) => void) & ((event: "update:selectedChildId", id: string | number) => void) & ((event: "update:search", query: string) => void) & ((event: "clearSearch") => void);
|
|
1278
1713
|
$el: any;
|
|
1279
1714
|
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
1280
1715
|
search: {
|
|
@@ -1285,6 +1720,10 @@ declare const _default: {
|
|
|
1285
1720
|
type: import("vue").PropType<string>;
|
|
1286
1721
|
default: string;
|
|
1287
1722
|
};
|
|
1723
|
+
isLoading: {
|
|
1724
|
+
type: import("vue").PropType<boolean>;
|
|
1725
|
+
default: boolean;
|
|
1726
|
+
};
|
|
1288
1727
|
displayValue: {
|
|
1289
1728
|
type: import("vue").PropType<(item: import("./components/sortableList/SortableList.types").SortableListItem) => string>;
|
|
1290
1729
|
required: true;
|
|
@@ -1319,7 +1758,19 @@ declare const _default: {
|
|
|
1319
1758
|
type: import("vue").PropType<boolean>;
|
|
1320
1759
|
default: boolean;
|
|
1321
1760
|
};
|
|
1761
|
+
loadingRowCount: {
|
|
1762
|
+
type: import("vue").PropType<number>;
|
|
1763
|
+
default: number;
|
|
1764
|
+
};
|
|
1765
|
+
emptyStateTitle: {
|
|
1766
|
+
type: import("vue").PropType<string>;
|
|
1767
|
+
default: string;
|
|
1768
|
+
};
|
|
1322
1769
|
}>> & {
|
|
1770
|
+
onSortableItemDragged?: (event: {
|
|
1771
|
+
id: string;
|
|
1772
|
+
newIndex: number;
|
|
1773
|
+
}) => any;
|
|
1323
1774
|
"onUpdate:items"?: (items: import("./components/sortableList/SortableList.types").SortableListItem[]) => any;
|
|
1324
1775
|
"onUpdate:openId"?: (id: string | number) => any;
|
|
1325
1776
|
"onUpdate:selectedId"?: (id: string | number) => any;
|
|
@@ -1327,6 +1778,10 @@ declare const _default: {
|
|
|
1327
1778
|
"onUpdate:search"?: (query: string) => any;
|
|
1328
1779
|
onClearSearch?: () => any;
|
|
1329
1780
|
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
1781
|
+
sortableItemDragged: (event: {
|
|
1782
|
+
id: string;
|
|
1783
|
+
newIndex: number;
|
|
1784
|
+
}) => void;
|
|
1330
1785
|
"update:items": (items: import("./components/sortableList/SortableList.types").SortableListItem[]) => void;
|
|
1331
1786
|
"update:openId": (id: string | number) => void;
|
|
1332
1787
|
"update:selectedId": (id: string | number) => void;
|
|
@@ -1336,6 +1791,7 @@ declare const _default: {
|
|
|
1336
1791
|
}, string, {
|
|
1337
1792
|
search: string;
|
|
1338
1793
|
testId: string;
|
|
1794
|
+
isLoading: boolean;
|
|
1339
1795
|
displayValue: (item: import("./components/sortableList/SortableList.types").SortableListItem) => string;
|
|
1340
1796
|
searchPlaceholder: string;
|
|
1341
1797
|
items: import("./components/sortableList/SortableList.types").SortableListItem[];
|
|
@@ -1344,6 +1800,8 @@ declare const _default: {
|
|
|
1344
1800
|
openId: string | number;
|
|
1345
1801
|
selectedId: string | number;
|
|
1346
1802
|
showSearch: boolean;
|
|
1803
|
+
loadingRowCount: number;
|
|
1804
|
+
emptyStateTitle: string;
|
|
1347
1805
|
}, {}, string> & {
|
|
1348
1806
|
beforeCreate?: (() => void) | (() => void)[];
|
|
1349
1807
|
created?: (() => void) | (() => void)[];
|
|
@@ -1373,6 +1831,10 @@ declare const _default: {
|
|
|
1373
1831
|
type: import("vue").PropType<string>;
|
|
1374
1832
|
default: string;
|
|
1375
1833
|
};
|
|
1834
|
+
isLoading: {
|
|
1835
|
+
type: import("vue").PropType<boolean>;
|
|
1836
|
+
default: boolean;
|
|
1837
|
+
};
|
|
1376
1838
|
displayValue: {
|
|
1377
1839
|
type: import("vue").PropType<(item: import("./components/sortableList/SortableList.types").SortableListItem) => string>;
|
|
1378
1840
|
required: true;
|
|
@@ -1407,7 +1869,19 @@ declare const _default: {
|
|
|
1407
1869
|
type: import("vue").PropType<boolean>;
|
|
1408
1870
|
default: boolean;
|
|
1409
1871
|
};
|
|
1872
|
+
loadingRowCount: {
|
|
1873
|
+
type: import("vue").PropType<number>;
|
|
1874
|
+
default: number;
|
|
1875
|
+
};
|
|
1876
|
+
emptyStateTitle: {
|
|
1877
|
+
type: import("vue").PropType<string>;
|
|
1878
|
+
default: string;
|
|
1879
|
+
};
|
|
1410
1880
|
}>> & {
|
|
1881
|
+
onSortableItemDragged?: (event: {
|
|
1882
|
+
id: string;
|
|
1883
|
+
newIndex: number;
|
|
1884
|
+
}) => any;
|
|
1411
1885
|
"onUpdate:items"?: (items: import("./components/sortableList/SortableList.types").SortableListItem[]) => any;
|
|
1412
1886
|
"onUpdate:openId"?: (id: string | number) => any;
|
|
1413
1887
|
"onUpdate:selectedId"?: (id: string | number) => any;
|
|
@@ -1427,6 +1901,10 @@ declare const _default: {
|
|
|
1427
1901
|
type: import("vue").PropType<string>;
|
|
1428
1902
|
default: string;
|
|
1429
1903
|
};
|
|
1904
|
+
isLoading: {
|
|
1905
|
+
type: import("vue").PropType<boolean>;
|
|
1906
|
+
default: boolean;
|
|
1907
|
+
};
|
|
1430
1908
|
displayValue: {
|
|
1431
1909
|
type: import("vue").PropType<(item: import("./components/sortableList/SortableList.types").SortableListItem) => string>;
|
|
1432
1910
|
required: true;
|
|
@@ -1461,7 +1939,19 @@ declare const _default: {
|
|
|
1461
1939
|
type: import("vue").PropType<boolean>;
|
|
1462
1940
|
default: boolean;
|
|
1463
1941
|
};
|
|
1942
|
+
loadingRowCount: {
|
|
1943
|
+
type: import("vue").PropType<number>;
|
|
1944
|
+
default: number;
|
|
1945
|
+
};
|
|
1946
|
+
emptyStateTitle: {
|
|
1947
|
+
type: import("vue").PropType<string>;
|
|
1948
|
+
default: string;
|
|
1949
|
+
};
|
|
1464
1950
|
}>> & {
|
|
1951
|
+
onSortableItemDragged?: (event: {
|
|
1952
|
+
id: string;
|
|
1953
|
+
newIndex: number;
|
|
1954
|
+
}) => any;
|
|
1465
1955
|
"onUpdate:items"?: (items: import("./components/sortableList/SortableList.types").SortableListItem[]) => any;
|
|
1466
1956
|
"onUpdate:openId"?: (id: string | number) => any;
|
|
1467
1957
|
"onUpdate:selectedId"?: (id: string | number) => any;
|
|
@@ -1469,6 +1959,10 @@ declare const _default: {
|
|
|
1469
1959
|
"onUpdate:search"?: (query: string) => any;
|
|
1470
1960
|
onClearSearch?: () => any;
|
|
1471
1961
|
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
1962
|
+
sortableItemDragged: (event: {
|
|
1963
|
+
id: string;
|
|
1964
|
+
newIndex: number;
|
|
1965
|
+
}) => void;
|
|
1472
1966
|
"update:items": (items: import("./components/sortableList/SortableList.types").SortableListItem[]) => void;
|
|
1473
1967
|
"update:openId": (id: string | number) => void;
|
|
1474
1968
|
"update:selectedId": (id: string | number) => void;
|
|
@@ -1478,6 +1972,7 @@ declare const _default: {
|
|
|
1478
1972
|
}, string, {
|
|
1479
1973
|
search: string;
|
|
1480
1974
|
testId: string;
|
|
1975
|
+
isLoading: boolean;
|
|
1481
1976
|
displayValue: (item: import("./components/sortableList/SortableList.types").SortableListItem) => string;
|
|
1482
1977
|
searchPlaceholder: string;
|
|
1483
1978
|
items: import("./components/sortableList/SortableList.types").SortableListItem[];
|
|
@@ -1486,11 +1981,15 @@ declare const _default: {
|
|
|
1486
1981
|
openId: string | number;
|
|
1487
1982
|
selectedId: string | number;
|
|
1488
1983
|
showSearch: boolean;
|
|
1984
|
+
loadingRowCount: number;
|
|
1985
|
+
emptyStateTitle: string;
|
|
1489
1986
|
}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
1490
1987
|
$slots: {
|
|
1491
1988
|
menu?(_: {
|
|
1492
1989
|
item: import("./components/sortableList/SortableList.types").SortableListItem;
|
|
1493
1990
|
}): any;
|
|
1991
|
+
loader?(_: {}): any;
|
|
1992
|
+
"empty-state"?(_: {}): any;
|
|
1494
1993
|
};
|
|
1495
1994
|
});
|
|
1496
1995
|
SortableListTypes: () => ({
|
|
@@ -1500,6 +1999,7 @@ declare const _default: {
|
|
|
1500
1999
|
$props: Partial<{
|
|
1501
2000
|
search: string;
|
|
1502
2001
|
testId: string;
|
|
2002
|
+
isLoading: boolean;
|
|
1503
2003
|
displayValue: (item: import("./components/sortableList/SortableList.types").SortableListItem) => string;
|
|
1504
2004
|
searchPlaceholder: string;
|
|
1505
2005
|
items: import("./components/sortableList/SortableList.types").SortableListItem[];
|
|
@@ -1508,6 +2008,8 @@ declare const _default: {
|
|
|
1508
2008
|
openId: string | number;
|
|
1509
2009
|
selectedId: string | number;
|
|
1510
2010
|
showSearch: boolean;
|
|
2011
|
+
loadingRowCount: number;
|
|
2012
|
+
emptyStateTitle: string;
|
|
1511
2013
|
}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
1512
2014
|
search: {
|
|
1513
2015
|
type: import("vue").PropType<string>;
|
|
@@ -1517,6 +2019,10 @@ declare const _default: {
|
|
|
1517
2019
|
type: import("vue").PropType<string>;
|
|
1518
2020
|
default: string;
|
|
1519
2021
|
};
|
|
2022
|
+
isLoading: {
|
|
2023
|
+
type: import("vue").PropType<boolean>;
|
|
2024
|
+
default: boolean;
|
|
2025
|
+
};
|
|
1520
2026
|
displayValue: {
|
|
1521
2027
|
type: import("vue").PropType<(item: import("./components/sortableList/SortableList.types").SortableListItem) => string>;
|
|
1522
2028
|
required: true;
|
|
@@ -1551,14 +2057,26 @@ declare const _default: {
|
|
|
1551
2057
|
type: import("vue").PropType<boolean>;
|
|
1552
2058
|
default: boolean;
|
|
1553
2059
|
};
|
|
2060
|
+
loadingRowCount: {
|
|
2061
|
+
type: import("vue").PropType<number>;
|
|
2062
|
+
default: number;
|
|
2063
|
+
};
|
|
2064
|
+
emptyStateTitle: {
|
|
2065
|
+
type: import("vue").PropType<string>;
|
|
2066
|
+
default: string;
|
|
2067
|
+
};
|
|
1554
2068
|
}>> & {
|
|
2069
|
+
onSortableItemDragged?: (event: {
|
|
2070
|
+
id: string;
|
|
2071
|
+
newIndex: number;
|
|
2072
|
+
}) => any;
|
|
1555
2073
|
"onUpdate:items"?: (items: import("./components/sortableList/SortableList.types").SortableListItem[]) => any;
|
|
1556
2074
|
"onUpdate:openId"?: (id: string | number) => any;
|
|
1557
2075
|
"onUpdate:selectedId"?: (id: string | number) => any;
|
|
1558
2076
|
"onUpdate:selectedChildId"?: (id: string | number) => any;
|
|
1559
2077
|
"onUpdate:search"?: (query: string) => any;
|
|
1560
2078
|
onClearSearch?: () => any;
|
|
1561
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "search" | "testId" | "displayValue" | "searchPlaceholder" | "items" | "selectedChildId" | "searchHandler" | "openId" | "selectedId" | "showSearch">;
|
|
2079
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "search" | "testId" | "isLoading" | "displayValue" | "searchPlaceholder" | "items" | "selectedChildId" | "searchHandler" | "openId" | "selectedId" | "showSearch" | "loadingRowCount" | "emptyStateTitle">;
|
|
1562
2080
|
$attrs: {
|
|
1563
2081
|
[x: string]: unknown;
|
|
1564
2082
|
};
|
|
@@ -1570,7 +2088,10 @@ declare const _default: {
|
|
|
1570
2088
|
}>;
|
|
1571
2089
|
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
|
|
1572
2090
|
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
|
|
1573
|
-
$emit: ((event: "
|
|
2091
|
+
$emit: ((event: "sortableItemDragged", event: {
|
|
2092
|
+
id: string;
|
|
2093
|
+
newIndex: number;
|
|
2094
|
+
}) => void) & ((event: "update:items", items: import("./components/sortableList/SortableList.types").SortableListItem[]) => void) & ((event: "update:openId", id: string | number) => void) & ((event: "update:selectedId", id: string | number) => void) & ((event: "update:selectedChildId", id: string | number) => void) & ((event: "update:search", query: string) => void) & ((event: "clearSearch") => void);
|
|
1574
2095
|
$el: any;
|
|
1575
2096
|
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
1576
2097
|
search: {
|
|
@@ -1581,6 +2102,10 @@ declare const _default: {
|
|
|
1581
2102
|
type: import("vue").PropType<string>;
|
|
1582
2103
|
default: string;
|
|
1583
2104
|
};
|
|
2105
|
+
isLoading: {
|
|
2106
|
+
type: import("vue").PropType<boolean>;
|
|
2107
|
+
default: boolean;
|
|
2108
|
+
};
|
|
1584
2109
|
displayValue: {
|
|
1585
2110
|
type: import("vue").PropType<(item: import("./components/sortableList/SortableList.types").SortableListItem) => string>;
|
|
1586
2111
|
required: true;
|
|
@@ -1615,7 +2140,19 @@ declare const _default: {
|
|
|
1615
2140
|
type: import("vue").PropType<boolean>;
|
|
1616
2141
|
default: boolean;
|
|
1617
2142
|
};
|
|
2143
|
+
loadingRowCount: {
|
|
2144
|
+
type: import("vue").PropType<number>;
|
|
2145
|
+
default: number;
|
|
2146
|
+
};
|
|
2147
|
+
emptyStateTitle: {
|
|
2148
|
+
type: import("vue").PropType<string>;
|
|
2149
|
+
default: string;
|
|
2150
|
+
};
|
|
1618
2151
|
}>> & {
|
|
2152
|
+
onSortableItemDragged?: (event: {
|
|
2153
|
+
id: string;
|
|
2154
|
+
newIndex: number;
|
|
2155
|
+
}) => any;
|
|
1619
2156
|
"onUpdate:items"?: (items: import("./components/sortableList/SortableList.types").SortableListItem[]) => any;
|
|
1620
2157
|
"onUpdate:openId"?: (id: string | number) => any;
|
|
1621
2158
|
"onUpdate:selectedId"?: (id: string | number) => any;
|
|
@@ -1623,6 +2160,10 @@ declare const _default: {
|
|
|
1623
2160
|
"onUpdate:search"?: (query: string) => any;
|
|
1624
2161
|
onClearSearch?: () => any;
|
|
1625
2162
|
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
2163
|
+
sortableItemDragged: (event: {
|
|
2164
|
+
id: string;
|
|
2165
|
+
newIndex: number;
|
|
2166
|
+
}) => void;
|
|
1626
2167
|
"update:items": (items: import("./components/sortableList/SortableList.types").SortableListItem[]) => void;
|
|
1627
2168
|
"update:openId": (id: string | number) => void;
|
|
1628
2169
|
"update:selectedId": (id: string | number) => void;
|
|
@@ -1632,6 +2173,7 @@ declare const _default: {
|
|
|
1632
2173
|
}, string, {
|
|
1633
2174
|
search: string;
|
|
1634
2175
|
testId: string;
|
|
2176
|
+
isLoading: boolean;
|
|
1635
2177
|
displayValue: (item: import("./components/sortableList/SortableList.types").SortableListItem) => string;
|
|
1636
2178
|
searchPlaceholder: string;
|
|
1637
2179
|
items: import("./components/sortableList/SortableList.types").SortableListItem[];
|
|
@@ -1640,6 +2182,8 @@ declare const _default: {
|
|
|
1640
2182
|
openId: string | number;
|
|
1641
2183
|
selectedId: string | number;
|
|
1642
2184
|
showSearch: boolean;
|
|
2185
|
+
loadingRowCount: number;
|
|
2186
|
+
emptyStateTitle: string;
|
|
1643
2187
|
}, {}, string> & {
|
|
1644
2188
|
beforeCreate?: (() => void) | (() => void)[];
|
|
1645
2189
|
created?: (() => void) | (() => void)[];
|
|
@@ -1669,6 +2213,10 @@ declare const _default: {
|
|
|
1669
2213
|
type: import("vue").PropType<string>;
|
|
1670
2214
|
default: string;
|
|
1671
2215
|
};
|
|
2216
|
+
isLoading: {
|
|
2217
|
+
type: import("vue").PropType<boolean>;
|
|
2218
|
+
default: boolean;
|
|
2219
|
+
};
|
|
1672
2220
|
displayValue: {
|
|
1673
2221
|
type: import("vue").PropType<(item: import("./components/sortableList/SortableList.types").SortableListItem) => string>;
|
|
1674
2222
|
required: true;
|
|
@@ -1703,7 +2251,19 @@ declare const _default: {
|
|
|
1703
2251
|
type: import("vue").PropType<boolean>;
|
|
1704
2252
|
default: boolean;
|
|
1705
2253
|
};
|
|
2254
|
+
loadingRowCount: {
|
|
2255
|
+
type: import("vue").PropType<number>;
|
|
2256
|
+
default: number;
|
|
2257
|
+
};
|
|
2258
|
+
emptyStateTitle: {
|
|
2259
|
+
type: import("vue").PropType<string>;
|
|
2260
|
+
default: string;
|
|
2261
|
+
};
|
|
1706
2262
|
}>> & {
|
|
2263
|
+
onSortableItemDragged?: (event: {
|
|
2264
|
+
id: string;
|
|
2265
|
+
newIndex: number;
|
|
2266
|
+
}) => any;
|
|
1707
2267
|
"onUpdate:items"?: (items: import("./components/sortableList/SortableList.types").SortableListItem[]) => any;
|
|
1708
2268
|
"onUpdate:openId"?: (id: string | number) => any;
|
|
1709
2269
|
"onUpdate:selectedId"?: (id: string | number) => any;
|
|
@@ -1723,6 +2283,10 @@ declare const _default: {
|
|
|
1723
2283
|
type: import("vue").PropType<string>;
|
|
1724
2284
|
default: string;
|
|
1725
2285
|
};
|
|
2286
|
+
isLoading: {
|
|
2287
|
+
type: import("vue").PropType<boolean>;
|
|
2288
|
+
default: boolean;
|
|
2289
|
+
};
|
|
1726
2290
|
displayValue: {
|
|
1727
2291
|
type: import("vue").PropType<(item: import("./components/sortableList/SortableList.types").SortableListItem) => string>;
|
|
1728
2292
|
required: true;
|
|
@@ -1757,7 +2321,19 @@ declare const _default: {
|
|
|
1757
2321
|
type: import("vue").PropType<boolean>;
|
|
1758
2322
|
default: boolean;
|
|
1759
2323
|
};
|
|
2324
|
+
loadingRowCount: {
|
|
2325
|
+
type: import("vue").PropType<number>;
|
|
2326
|
+
default: number;
|
|
2327
|
+
};
|
|
2328
|
+
emptyStateTitle: {
|
|
2329
|
+
type: import("vue").PropType<string>;
|
|
2330
|
+
default: string;
|
|
2331
|
+
};
|
|
1760
2332
|
}>> & {
|
|
2333
|
+
onSortableItemDragged?: (event: {
|
|
2334
|
+
id: string;
|
|
2335
|
+
newIndex: number;
|
|
2336
|
+
}) => any;
|
|
1761
2337
|
"onUpdate:items"?: (items: import("./components/sortableList/SortableList.types").SortableListItem[]) => any;
|
|
1762
2338
|
"onUpdate:openId"?: (id: string | number) => any;
|
|
1763
2339
|
"onUpdate:selectedId"?: (id: string | number) => any;
|
|
@@ -1765,6 +2341,10 @@ declare const _default: {
|
|
|
1765
2341
|
"onUpdate:search"?: (query: string) => any;
|
|
1766
2342
|
onClearSearch?: () => any;
|
|
1767
2343
|
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
2344
|
+
sortableItemDragged: (event: {
|
|
2345
|
+
id: string;
|
|
2346
|
+
newIndex: number;
|
|
2347
|
+
}) => void;
|
|
1768
2348
|
"update:items": (items: import("./components/sortableList/SortableList.types").SortableListItem[]) => void;
|
|
1769
2349
|
"update:openId": (id: string | number) => void;
|
|
1770
2350
|
"update:selectedId": (id: string | number) => void;
|
|
@@ -1774,6 +2354,7 @@ declare const _default: {
|
|
|
1774
2354
|
}, string, {
|
|
1775
2355
|
search: string;
|
|
1776
2356
|
testId: string;
|
|
2357
|
+
isLoading: boolean;
|
|
1777
2358
|
displayValue: (item: import("./components/sortableList/SortableList.types").SortableListItem) => string;
|
|
1778
2359
|
searchPlaceholder: string;
|
|
1779
2360
|
items: import("./components/sortableList/SortableList.types").SortableListItem[];
|
|
@@ -1782,11 +2363,15 @@ declare const _default: {
|
|
|
1782
2363
|
openId: string | number;
|
|
1783
2364
|
selectedId: string | number;
|
|
1784
2365
|
showSearch: boolean;
|
|
2366
|
+
loadingRowCount: number;
|
|
2367
|
+
emptyStateTitle: string;
|
|
1785
2368
|
}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
1786
2369
|
$slots: {
|
|
1787
2370
|
menu?(_: {
|
|
1788
2371
|
item: import("./components/sortableList/SortableList.types").SortableListItem;
|
|
1789
2372
|
}): any;
|
|
2373
|
+
loader?(_: {}): any;
|
|
2374
|
+
"empty-state"?(_: {}): any;
|
|
1790
2375
|
};
|
|
1791
2376
|
}))[];
|
|
1792
2377
|
StatusDot: import("vue").DefineComponent<{
|
|
@@ -4188,6 +4773,7 @@ declare const _default: {
|
|
|
4188
4773
|
$props: Partial<{
|
|
4189
4774
|
type: "input" | "dropdown";
|
|
4190
4775
|
cell: string;
|
|
4776
|
+
saveOnClickOutside: boolean;
|
|
4191
4777
|
validateFunction: (value: unknown) => string | boolean;
|
|
4192
4778
|
isLoading: boolean;
|
|
4193
4779
|
displayValue: (option: unknown) => unknown;
|
|
@@ -4201,6 +4787,10 @@ declare const _default: {
|
|
|
4201
4787
|
type: import("vue").PropType<string>;
|
|
4202
4788
|
default: string;
|
|
4203
4789
|
};
|
|
4790
|
+
saveOnClickOutside: {
|
|
4791
|
+
type: import("vue").PropType<boolean>;
|
|
4792
|
+
default: boolean;
|
|
4793
|
+
};
|
|
4204
4794
|
validateFunction: {
|
|
4205
4795
|
type: import("vue").PropType<(value: unknown) => string | boolean>;
|
|
4206
4796
|
default: () => false;
|
|
@@ -4221,7 +4811,7 @@ declare const _default: {
|
|
|
4221
4811
|
type: import("vue").PropType<(option: unknown) => unknown>;
|
|
4222
4812
|
default: (cell: unknown) => unknown;
|
|
4223
4813
|
};
|
|
4224
|
-
}>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "type" | "cell" | "validateFunction" | "isLoading" | "displayValue">;
|
|
4814
|
+
}>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "type" | "cell" | "saveOnClickOutside" | "validateFunction" | "isLoading" | "displayValue">;
|
|
4225
4815
|
$attrs: {
|
|
4226
4816
|
[x: string]: unknown;
|
|
4227
4817
|
};
|
|
@@ -4245,6 +4835,10 @@ declare const _default: {
|
|
|
4245
4835
|
type: import("vue").PropType<string>;
|
|
4246
4836
|
default: string;
|
|
4247
4837
|
};
|
|
4838
|
+
saveOnClickOutside: {
|
|
4839
|
+
type: import("vue").PropType<boolean>;
|
|
4840
|
+
default: boolean;
|
|
4841
|
+
};
|
|
4248
4842
|
validateFunction: {
|
|
4249
4843
|
type: import("vue").PropType<(value: unknown) => string | boolean>;
|
|
4250
4844
|
default: () => false;
|
|
@@ -4268,6 +4862,7 @@ declare const _default: {
|
|
|
4268
4862
|
}>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
|
|
4269
4863
|
type: "input" | "dropdown";
|
|
4270
4864
|
cell: string;
|
|
4865
|
+
saveOnClickOutside: boolean;
|
|
4271
4866
|
validateFunction: (value: unknown) => string | boolean;
|
|
4272
4867
|
isLoading: boolean;
|
|
4273
4868
|
displayValue: (option: unknown) => unknown;
|
|
@@ -4301,6 +4896,10 @@ declare const _default: {
|
|
|
4301
4896
|
type: import("vue").PropType<string>;
|
|
4302
4897
|
default: string;
|
|
4303
4898
|
};
|
|
4899
|
+
saveOnClickOutside: {
|
|
4900
|
+
type: import("vue").PropType<boolean>;
|
|
4901
|
+
default: boolean;
|
|
4902
|
+
};
|
|
4304
4903
|
validateFunction: {
|
|
4305
4904
|
type: import("vue").PropType<(value: unknown) => string | boolean>;
|
|
4306
4905
|
default: () => false;
|
|
@@ -4335,6 +4934,10 @@ declare const _default: {
|
|
|
4335
4934
|
type: import("vue").PropType<string>;
|
|
4336
4935
|
default: string;
|
|
4337
4936
|
};
|
|
4937
|
+
saveOnClickOutside: {
|
|
4938
|
+
type: import("vue").PropType<boolean>;
|
|
4939
|
+
default: boolean;
|
|
4940
|
+
};
|
|
4338
4941
|
validateFunction: {
|
|
4339
4942
|
type: import("vue").PropType<(value: unknown) => string | boolean>;
|
|
4340
4943
|
default: () => false;
|
|
@@ -4358,6 +4961,7 @@ declare const _default: {
|
|
|
4358
4961
|
}>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
|
|
4359
4962
|
type: "input" | "dropdown";
|
|
4360
4963
|
cell: string;
|
|
4964
|
+
saveOnClickOutside: boolean;
|
|
4361
4965
|
validateFunction: (value: unknown) => string | boolean;
|
|
4362
4966
|
isLoading: boolean;
|
|
4363
4967
|
displayValue: (option: unknown) => unknown;
|
|
@@ -4374,6 +4978,7 @@ declare const _default: {
|
|
|
4374
4978
|
$props: Partial<{
|
|
4375
4979
|
type: "input" | "dropdown";
|
|
4376
4980
|
cell: string;
|
|
4981
|
+
saveOnClickOutside: boolean;
|
|
4377
4982
|
validateFunction: (value: unknown) => string | boolean;
|
|
4378
4983
|
isLoading: boolean;
|
|
4379
4984
|
displayValue: (option: unknown) => unknown;
|
|
@@ -4387,6 +4992,10 @@ declare const _default: {
|
|
|
4387
4992
|
type: import("vue").PropType<string>;
|
|
4388
4993
|
default: string;
|
|
4389
4994
|
};
|
|
4995
|
+
saveOnClickOutside: {
|
|
4996
|
+
type: import("vue").PropType<boolean>;
|
|
4997
|
+
default: boolean;
|
|
4998
|
+
};
|
|
4390
4999
|
validateFunction: {
|
|
4391
5000
|
type: import("vue").PropType<(value: unknown) => string | boolean>;
|
|
4392
5001
|
default: () => false;
|
|
@@ -4407,7 +5016,7 @@ declare const _default: {
|
|
|
4407
5016
|
type: import("vue").PropType<(option: unknown) => unknown>;
|
|
4408
5017
|
default: (cell: unknown) => unknown;
|
|
4409
5018
|
};
|
|
4410
|
-
}>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "type" | "cell" | "validateFunction" | "isLoading" | "displayValue">;
|
|
5019
|
+
}>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "type" | "cell" | "saveOnClickOutside" | "validateFunction" | "isLoading" | "displayValue">;
|
|
4411
5020
|
$attrs: {
|
|
4412
5021
|
[x: string]: unknown;
|
|
4413
5022
|
};
|
|
@@ -4431,6 +5040,10 @@ declare const _default: {
|
|
|
4431
5040
|
type: import("vue").PropType<string>;
|
|
4432
5041
|
default: string;
|
|
4433
5042
|
};
|
|
5043
|
+
saveOnClickOutside: {
|
|
5044
|
+
type: import("vue").PropType<boolean>;
|
|
5045
|
+
default: boolean;
|
|
5046
|
+
};
|
|
4434
5047
|
validateFunction: {
|
|
4435
5048
|
type: import("vue").PropType<(value: unknown) => string | boolean>;
|
|
4436
5049
|
default: () => false;
|
|
@@ -4454,6 +5067,7 @@ declare const _default: {
|
|
|
4454
5067
|
}>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
|
|
4455
5068
|
type: "input" | "dropdown";
|
|
4456
5069
|
cell: string;
|
|
5070
|
+
saveOnClickOutside: boolean;
|
|
4457
5071
|
validateFunction: (value: unknown) => string | boolean;
|
|
4458
5072
|
isLoading: boolean;
|
|
4459
5073
|
displayValue: (option: unknown) => unknown;
|
|
@@ -4487,6 +5101,10 @@ declare const _default: {
|
|
|
4487
5101
|
type: import("vue").PropType<string>;
|
|
4488
5102
|
default: string;
|
|
4489
5103
|
};
|
|
5104
|
+
saveOnClickOutside: {
|
|
5105
|
+
type: import("vue").PropType<boolean>;
|
|
5106
|
+
default: boolean;
|
|
5107
|
+
};
|
|
4490
5108
|
validateFunction: {
|
|
4491
5109
|
type: import("vue").PropType<(value: unknown) => string | boolean>;
|
|
4492
5110
|
default: () => false;
|
|
@@ -4521,6 +5139,10 @@ declare const _default: {
|
|
|
4521
5139
|
type: import("vue").PropType<string>;
|
|
4522
5140
|
default: string;
|
|
4523
5141
|
};
|
|
5142
|
+
saveOnClickOutside: {
|
|
5143
|
+
type: import("vue").PropType<boolean>;
|
|
5144
|
+
default: boolean;
|
|
5145
|
+
};
|
|
4524
5146
|
validateFunction: {
|
|
4525
5147
|
type: import("vue").PropType<(value: unknown) => string | boolean>;
|
|
4526
5148
|
default: () => false;
|
|
@@ -4544,6 +5166,7 @@ declare const _default: {
|
|
|
4544
5166
|
}>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
|
|
4545
5167
|
type: "input" | "dropdown";
|
|
4546
5168
|
cell: string;
|
|
5169
|
+
saveOnClickOutside: boolean;
|
|
4547
5170
|
validateFunction: (value: unknown) => string | boolean;
|
|
4548
5171
|
isLoading: boolean;
|
|
4549
5172
|
displayValue: (option: unknown) => unknown;
|
|
@@ -4569,20 +5192,22 @@ declare const _default: {
|
|
|
4569
5192
|
searchPlaceholder: string;
|
|
4570
5193
|
selection: unknown[];
|
|
4571
5194
|
showSearch: boolean;
|
|
5195
|
+
loadingRowCount: number;
|
|
5196
|
+
emptyStateTitle: string;
|
|
4572
5197
|
isSticky: boolean;
|
|
4573
5198
|
sections: import("./components/table/common/Table.types").Section[];
|
|
4574
5199
|
isStickyHeader: boolean;
|
|
4575
|
-
emptyStateTitle: string;
|
|
4576
5200
|
emptyStateSubtitle: string;
|
|
4577
5201
|
isInfiniteScroll: boolean;
|
|
4578
5202
|
infiniteScrollThreshold: number;
|
|
4579
5203
|
rowHeight: number | ((index: number) => number);
|
|
4580
|
-
loadingRowCount: number;
|
|
4581
5204
|
defaultScrollPosition: number;
|
|
4582
5205
|
getRowId: (row: import("./components/table/common/Table.types").Row, index: number) => unknown;
|
|
4583
5206
|
selectedMatcher: (rowId: unknown, selected: unknown) => boolean;
|
|
4584
5207
|
emptyStateVariant: "error" | "no-access" | "no-results" | "no-data" | "files" | "settings";
|
|
4585
5208
|
zIndexBase: number;
|
|
5209
|
+
rowCustomClassKey: string;
|
|
5210
|
+
rowDataKey: string;
|
|
4586
5211
|
}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
4587
5212
|
sort: {
|
|
4588
5213
|
type: import("vue").PropType<tableV3.Sort>;
|
|
@@ -4624,6 +5249,14 @@ declare const _default: {
|
|
|
4624
5249
|
type: import("vue").PropType<boolean>;
|
|
4625
5250
|
default: boolean;
|
|
4626
5251
|
};
|
|
5252
|
+
loadingRowCount: {
|
|
5253
|
+
type: import("vue").PropType<number>;
|
|
5254
|
+
default: number;
|
|
5255
|
+
};
|
|
5256
|
+
emptyStateTitle: {
|
|
5257
|
+
type: import("vue").PropType<string>;
|
|
5258
|
+
default: string;
|
|
5259
|
+
};
|
|
4627
5260
|
isSticky: {
|
|
4628
5261
|
type: import("vue").PropType<boolean>;
|
|
4629
5262
|
default: boolean;
|
|
@@ -4640,10 +5273,6 @@ declare const _default: {
|
|
|
4640
5273
|
type: import("vue").PropType<boolean>;
|
|
4641
5274
|
default: boolean;
|
|
4642
5275
|
};
|
|
4643
|
-
emptyStateTitle: {
|
|
4644
|
-
type: import("vue").PropType<string>;
|
|
4645
|
-
default: string;
|
|
4646
|
-
};
|
|
4647
5276
|
emptyStateSubtitle: {
|
|
4648
5277
|
type: import("vue").PropType<string>;
|
|
4649
5278
|
default: string;
|
|
@@ -4660,10 +5289,6 @@ declare const _default: {
|
|
|
4660
5289
|
type: import("vue").PropType<number | ((index: number) => number)>;
|
|
4661
5290
|
default: number;
|
|
4662
5291
|
};
|
|
4663
|
-
loadingRowCount: {
|
|
4664
|
-
type: import("vue").PropType<number>;
|
|
4665
|
-
default: number;
|
|
4666
|
-
};
|
|
4667
5292
|
defaultScrollPosition: {
|
|
4668
5293
|
type: import("vue").PropType<number>;
|
|
4669
5294
|
default: any;
|
|
@@ -4684,6 +5309,14 @@ declare const _default: {
|
|
|
4684
5309
|
type: import("vue").PropType<number>;
|
|
4685
5310
|
default: number;
|
|
4686
5311
|
};
|
|
5312
|
+
rowCustomClassKey: {
|
|
5313
|
+
type: import("vue").PropType<string>;
|
|
5314
|
+
default: string;
|
|
5315
|
+
};
|
|
5316
|
+
rowDataKey: {
|
|
5317
|
+
type: import("vue").PropType<string>;
|
|
5318
|
+
default: string;
|
|
5319
|
+
};
|
|
4687
5320
|
}>> & {
|
|
4688
5321
|
onSelectAll?: (value: boolean) => any;
|
|
4689
5322
|
"onUpdate:search"?: (query: string) => any;
|
|
@@ -4700,7 +5333,7 @@ declare const _default: {
|
|
|
4700
5333
|
"onUpdate:selection"?: (selection: unknown[]) => any;
|
|
4701
5334
|
onSelectRow?: (value: boolean) => any;
|
|
4702
5335
|
onClickRow?: (rowIndex: number) => any;
|
|
4703
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "sort" | "title" | "search" | "testId" | "isLoading" | "searchAutoFocus" | "searchPlaceholder" | "selection" | "showSearch" | "
|
|
5336
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "sort" | "title" | "search" | "testId" | "isLoading" | "searchAutoFocus" | "searchPlaceholder" | "selection" | "showSearch" | "loadingRowCount" | "emptyStateTitle" | "isSticky" | "sections" | "isStickyHeader" | "emptyStateSubtitle" | "isInfiniteScroll" | "infiniteScrollThreshold" | "rowHeight" | "defaultScrollPosition" | "getRowId" | "selectedMatcher" | "emptyStateVariant" | "zIndexBase" | "rowCustomClassKey" | "rowDataKey">;
|
|
4704
5337
|
$attrs: {
|
|
4705
5338
|
[x: string]: unknown;
|
|
4706
5339
|
};
|
|
@@ -4760,6 +5393,14 @@ declare const _default: {
|
|
|
4760
5393
|
type: import("vue").PropType<boolean>;
|
|
4761
5394
|
default: boolean;
|
|
4762
5395
|
};
|
|
5396
|
+
loadingRowCount: {
|
|
5397
|
+
type: import("vue").PropType<number>;
|
|
5398
|
+
default: number;
|
|
5399
|
+
};
|
|
5400
|
+
emptyStateTitle: {
|
|
5401
|
+
type: import("vue").PropType<string>;
|
|
5402
|
+
default: string;
|
|
5403
|
+
};
|
|
4763
5404
|
isSticky: {
|
|
4764
5405
|
type: import("vue").PropType<boolean>;
|
|
4765
5406
|
default: boolean;
|
|
@@ -4776,10 +5417,6 @@ declare const _default: {
|
|
|
4776
5417
|
type: import("vue").PropType<boolean>;
|
|
4777
5418
|
default: boolean;
|
|
4778
5419
|
};
|
|
4779
|
-
emptyStateTitle: {
|
|
4780
|
-
type: import("vue").PropType<string>;
|
|
4781
|
-
default: string;
|
|
4782
|
-
};
|
|
4783
5420
|
emptyStateSubtitle: {
|
|
4784
5421
|
type: import("vue").PropType<string>;
|
|
4785
5422
|
default: string;
|
|
@@ -4796,10 +5433,6 @@ declare const _default: {
|
|
|
4796
5433
|
type: import("vue").PropType<number | ((index: number) => number)>;
|
|
4797
5434
|
default: number;
|
|
4798
5435
|
};
|
|
4799
|
-
loadingRowCount: {
|
|
4800
|
-
type: import("vue").PropType<number>;
|
|
4801
|
-
default: number;
|
|
4802
|
-
};
|
|
4803
5436
|
defaultScrollPosition: {
|
|
4804
5437
|
type: import("vue").PropType<number>;
|
|
4805
5438
|
default: any;
|
|
@@ -4820,6 +5453,14 @@ declare const _default: {
|
|
|
4820
5453
|
type: import("vue").PropType<number>;
|
|
4821
5454
|
default: number;
|
|
4822
5455
|
};
|
|
5456
|
+
rowCustomClassKey: {
|
|
5457
|
+
type: import("vue").PropType<string>;
|
|
5458
|
+
default: string;
|
|
5459
|
+
};
|
|
5460
|
+
rowDataKey: {
|
|
5461
|
+
type: import("vue").PropType<string>;
|
|
5462
|
+
default: string;
|
|
5463
|
+
};
|
|
4823
5464
|
}>> & {
|
|
4824
5465
|
onSelectAll?: (value: boolean) => any;
|
|
4825
5466
|
"onUpdate:search"?: (query: string) => any;
|
|
@@ -4864,20 +5505,22 @@ declare const _default: {
|
|
|
4864
5505
|
searchPlaceholder: string;
|
|
4865
5506
|
selection: unknown[];
|
|
4866
5507
|
showSearch: boolean;
|
|
5508
|
+
loadingRowCount: number;
|
|
5509
|
+
emptyStateTitle: string;
|
|
4867
5510
|
isSticky: boolean;
|
|
4868
5511
|
sections: import("./components/table/common/Table.types").Section[];
|
|
4869
5512
|
isStickyHeader: boolean;
|
|
4870
|
-
emptyStateTitle: string;
|
|
4871
5513
|
emptyStateSubtitle: string;
|
|
4872
5514
|
isInfiniteScroll: boolean;
|
|
4873
5515
|
infiniteScrollThreshold: number;
|
|
4874
5516
|
rowHeight: number | ((index: number) => number);
|
|
4875
|
-
loadingRowCount: number;
|
|
4876
5517
|
defaultScrollPosition: number;
|
|
4877
5518
|
getRowId: (row: import("./components/table/common/Table.types").Row, index: number) => unknown;
|
|
4878
5519
|
selectedMatcher: (rowId: unknown, selected: unknown) => boolean;
|
|
4879
5520
|
emptyStateVariant: "error" | "no-access" | "no-results" | "no-data" | "files" | "settings";
|
|
4880
5521
|
zIndexBase: number;
|
|
5522
|
+
rowCustomClassKey: string;
|
|
5523
|
+
rowDataKey: string;
|
|
4881
5524
|
}, {}, string> & {
|
|
4882
5525
|
beforeCreate?: (() => void) | (() => void)[];
|
|
4883
5526
|
created?: (() => void) | (() => void)[];
|
|
@@ -4939,6 +5582,14 @@ declare const _default: {
|
|
|
4939
5582
|
type: import("vue").PropType<boolean>;
|
|
4940
5583
|
default: boolean;
|
|
4941
5584
|
};
|
|
5585
|
+
loadingRowCount: {
|
|
5586
|
+
type: import("vue").PropType<number>;
|
|
5587
|
+
default: number;
|
|
5588
|
+
};
|
|
5589
|
+
emptyStateTitle: {
|
|
5590
|
+
type: import("vue").PropType<string>;
|
|
5591
|
+
default: string;
|
|
5592
|
+
};
|
|
4942
5593
|
isSticky: {
|
|
4943
5594
|
type: import("vue").PropType<boolean>;
|
|
4944
5595
|
default: boolean;
|
|
@@ -4955,10 +5606,6 @@ declare const _default: {
|
|
|
4955
5606
|
type: import("vue").PropType<boolean>;
|
|
4956
5607
|
default: boolean;
|
|
4957
5608
|
};
|
|
4958
|
-
emptyStateTitle: {
|
|
4959
|
-
type: import("vue").PropType<string>;
|
|
4960
|
-
default: string;
|
|
4961
|
-
};
|
|
4962
5609
|
emptyStateSubtitle: {
|
|
4963
5610
|
type: import("vue").PropType<string>;
|
|
4964
5611
|
default: string;
|
|
@@ -4975,10 +5622,6 @@ declare const _default: {
|
|
|
4975
5622
|
type: import("vue").PropType<number | ((index: number) => number)>;
|
|
4976
5623
|
default: number;
|
|
4977
5624
|
};
|
|
4978
|
-
loadingRowCount: {
|
|
4979
|
-
type: import("vue").PropType<number>;
|
|
4980
|
-
default: number;
|
|
4981
|
-
};
|
|
4982
5625
|
defaultScrollPosition: {
|
|
4983
5626
|
type: import("vue").PropType<number>;
|
|
4984
5627
|
default: any;
|
|
@@ -4999,6 +5642,14 @@ declare const _default: {
|
|
|
4999
5642
|
type: import("vue").PropType<number>;
|
|
5000
5643
|
default: number;
|
|
5001
5644
|
};
|
|
5645
|
+
rowCustomClassKey: {
|
|
5646
|
+
type: import("vue").PropType<string>;
|
|
5647
|
+
default: string;
|
|
5648
|
+
};
|
|
5649
|
+
rowDataKey: {
|
|
5650
|
+
type: import("vue").PropType<string>;
|
|
5651
|
+
default: string;
|
|
5652
|
+
};
|
|
5002
5653
|
}>> & {
|
|
5003
5654
|
onSelectAll?: (value: boolean) => any;
|
|
5004
5655
|
"onUpdate:search"?: (query: string) => any;
|
|
@@ -5062,6 +5713,14 @@ declare const _default: {
|
|
|
5062
5713
|
type: import("vue").PropType<boolean>;
|
|
5063
5714
|
default: boolean;
|
|
5064
5715
|
};
|
|
5716
|
+
loadingRowCount: {
|
|
5717
|
+
type: import("vue").PropType<number>;
|
|
5718
|
+
default: number;
|
|
5719
|
+
};
|
|
5720
|
+
emptyStateTitle: {
|
|
5721
|
+
type: import("vue").PropType<string>;
|
|
5722
|
+
default: string;
|
|
5723
|
+
};
|
|
5065
5724
|
isSticky: {
|
|
5066
5725
|
type: import("vue").PropType<boolean>;
|
|
5067
5726
|
default: boolean;
|
|
@@ -5078,10 +5737,6 @@ declare const _default: {
|
|
|
5078
5737
|
type: import("vue").PropType<boolean>;
|
|
5079
5738
|
default: boolean;
|
|
5080
5739
|
};
|
|
5081
|
-
emptyStateTitle: {
|
|
5082
|
-
type: import("vue").PropType<string>;
|
|
5083
|
-
default: string;
|
|
5084
|
-
};
|
|
5085
5740
|
emptyStateSubtitle: {
|
|
5086
5741
|
type: import("vue").PropType<string>;
|
|
5087
5742
|
default: string;
|
|
@@ -5098,10 +5753,6 @@ declare const _default: {
|
|
|
5098
5753
|
type: import("vue").PropType<number | ((index: number) => number)>;
|
|
5099
5754
|
default: number;
|
|
5100
5755
|
};
|
|
5101
|
-
loadingRowCount: {
|
|
5102
|
-
type: import("vue").PropType<number>;
|
|
5103
|
-
default: number;
|
|
5104
|
-
};
|
|
5105
5756
|
defaultScrollPosition: {
|
|
5106
5757
|
type: import("vue").PropType<number>;
|
|
5107
5758
|
default: any;
|
|
@@ -5122,6 +5773,14 @@ declare const _default: {
|
|
|
5122
5773
|
type: import("vue").PropType<number>;
|
|
5123
5774
|
default: number;
|
|
5124
5775
|
};
|
|
5776
|
+
rowCustomClassKey: {
|
|
5777
|
+
type: import("vue").PropType<string>;
|
|
5778
|
+
default: string;
|
|
5779
|
+
};
|
|
5780
|
+
rowDataKey: {
|
|
5781
|
+
type: import("vue").PropType<string>;
|
|
5782
|
+
default: string;
|
|
5783
|
+
};
|
|
5125
5784
|
}>> & {
|
|
5126
5785
|
onSelectAll?: (value: boolean) => any;
|
|
5127
5786
|
"onUpdate:search"?: (query: string) => any;
|
|
@@ -5166,20 +5825,22 @@ declare const _default: {
|
|
|
5166
5825
|
searchPlaceholder: string;
|
|
5167
5826
|
selection: unknown[];
|
|
5168
5827
|
showSearch: boolean;
|
|
5828
|
+
loadingRowCount: number;
|
|
5829
|
+
emptyStateTitle: string;
|
|
5169
5830
|
isSticky: boolean;
|
|
5170
5831
|
sections: import("./components/table/common/Table.types").Section[];
|
|
5171
5832
|
isStickyHeader: boolean;
|
|
5172
|
-
emptyStateTitle: string;
|
|
5173
5833
|
emptyStateSubtitle: string;
|
|
5174
5834
|
isInfiniteScroll: boolean;
|
|
5175
5835
|
infiniteScrollThreshold: number;
|
|
5176
5836
|
rowHeight: number | ((index: number) => number);
|
|
5177
|
-
loadingRowCount: number;
|
|
5178
5837
|
defaultScrollPosition: number;
|
|
5179
5838
|
getRowId: (row: import("./components/table/common/Table.types").Row, index: number) => unknown;
|
|
5180
5839
|
selectedMatcher: (rowId: unknown, selected: unknown) => boolean;
|
|
5181
5840
|
emptyStateVariant: "error" | "no-access" | "no-results" | "no-data" | "files" | "settings";
|
|
5182
5841
|
zIndexBase: number;
|
|
5842
|
+
rowCustomClassKey: string;
|
|
5843
|
+
rowDataKey: string;
|
|
5183
5844
|
}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
5184
5845
|
$slots: Partial<Record<`section-${string}`, (_: {}) => any>> & Partial<Record<`header-${string}`, (_: {
|
|
5185
5846
|
column: tableV3.Column;
|
|
@@ -5241,6 +5902,10 @@ declare const _default: {
|
|
|
5241
5902
|
menuItems: tableV4.MenuItem[];
|
|
5242
5903
|
}>;
|
|
5243
5904
|
DataGridRowsCounter: import("vue").DefineComponent<{
|
|
5905
|
+
testId: {
|
|
5906
|
+
type: import("vue").PropType<string>;
|
|
5907
|
+
default: string;
|
|
5908
|
+
};
|
|
5244
5909
|
count: {
|
|
5245
5910
|
type: import("vue").PropType<number>;
|
|
5246
5911
|
default: number;
|
|
@@ -5262,6 +5927,10 @@ declare const _default: {
|
|
|
5262
5927
|
default: string;
|
|
5263
5928
|
};
|
|
5264
5929
|
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
5930
|
+
testId: {
|
|
5931
|
+
type: import("vue").PropType<string>;
|
|
5932
|
+
default: string;
|
|
5933
|
+
};
|
|
5265
5934
|
count: {
|
|
5266
5935
|
type: import("vue").PropType<number>;
|
|
5267
5936
|
default: number;
|
|
@@ -5283,6 +5952,7 @@ declare const _default: {
|
|
|
5283
5952
|
default: string;
|
|
5284
5953
|
};
|
|
5285
5954
|
}>>, {
|
|
5955
|
+
testId: string;
|
|
5286
5956
|
count: number;
|
|
5287
5957
|
totalCount: number;
|
|
5288
5958
|
displayingText: string;
|
|
@@ -5303,20 +5973,22 @@ declare const _default: {
|
|
|
5303
5973
|
searchPlaceholder: string;
|
|
5304
5974
|
selection: unknown[];
|
|
5305
5975
|
showSearch: boolean;
|
|
5976
|
+
loadingRowCount: number;
|
|
5977
|
+
emptyStateTitle: string;
|
|
5306
5978
|
isSticky: boolean;
|
|
5307
5979
|
sections: import("./components/table/common/Table.types").Section[];
|
|
5308
5980
|
isStickyHeader: boolean;
|
|
5309
|
-
emptyStateTitle: string;
|
|
5310
5981
|
emptyStateSubtitle: string;
|
|
5311
5982
|
isInfiniteScroll: boolean;
|
|
5312
5983
|
infiniteScrollThreshold: number;
|
|
5313
5984
|
rowHeight: number | ((index: number) => number);
|
|
5314
|
-
loadingRowCount: number;
|
|
5315
5985
|
defaultScrollPosition: number;
|
|
5316
5986
|
getRowId: (row: import("./components/table/common/Table.types").Row, index: number) => unknown;
|
|
5317
5987
|
selectedMatcher: (rowId: unknown, selected: unknown) => boolean;
|
|
5318
5988
|
emptyStateVariant: "error" | "no-access" | "no-results" | "no-data" | "files" | "settings";
|
|
5319
5989
|
zIndexBase: number;
|
|
5990
|
+
rowCustomClassKey: string;
|
|
5991
|
+
rowDataKey: string;
|
|
5320
5992
|
}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
5321
5993
|
sort: {
|
|
5322
5994
|
type: import("vue").PropType<tableV3.Sort>;
|
|
@@ -5358,6 +6030,14 @@ declare const _default: {
|
|
|
5358
6030
|
type: import("vue").PropType<boolean>;
|
|
5359
6031
|
default: boolean;
|
|
5360
6032
|
};
|
|
6033
|
+
loadingRowCount: {
|
|
6034
|
+
type: import("vue").PropType<number>;
|
|
6035
|
+
default: number;
|
|
6036
|
+
};
|
|
6037
|
+
emptyStateTitle: {
|
|
6038
|
+
type: import("vue").PropType<string>;
|
|
6039
|
+
default: string;
|
|
6040
|
+
};
|
|
5361
6041
|
isSticky: {
|
|
5362
6042
|
type: import("vue").PropType<boolean>;
|
|
5363
6043
|
default: boolean;
|
|
@@ -5374,10 +6054,6 @@ declare const _default: {
|
|
|
5374
6054
|
type: import("vue").PropType<boolean>;
|
|
5375
6055
|
default: boolean;
|
|
5376
6056
|
};
|
|
5377
|
-
emptyStateTitle: {
|
|
5378
|
-
type: import("vue").PropType<string>;
|
|
5379
|
-
default: string;
|
|
5380
|
-
};
|
|
5381
6057
|
emptyStateSubtitle: {
|
|
5382
6058
|
type: import("vue").PropType<string>;
|
|
5383
6059
|
default: string;
|
|
@@ -5394,10 +6070,6 @@ declare const _default: {
|
|
|
5394
6070
|
type: import("vue").PropType<number | ((index: number) => number)>;
|
|
5395
6071
|
default: number;
|
|
5396
6072
|
};
|
|
5397
|
-
loadingRowCount: {
|
|
5398
|
-
type: import("vue").PropType<number>;
|
|
5399
|
-
default: number;
|
|
5400
|
-
};
|
|
5401
6073
|
defaultScrollPosition: {
|
|
5402
6074
|
type: import("vue").PropType<number>;
|
|
5403
6075
|
default: any;
|
|
@@ -5418,6 +6090,14 @@ declare const _default: {
|
|
|
5418
6090
|
type: import("vue").PropType<number>;
|
|
5419
6091
|
default: number;
|
|
5420
6092
|
};
|
|
6093
|
+
rowCustomClassKey: {
|
|
6094
|
+
type: import("vue").PropType<string>;
|
|
6095
|
+
default: string;
|
|
6096
|
+
};
|
|
6097
|
+
rowDataKey: {
|
|
6098
|
+
type: import("vue").PropType<string>;
|
|
6099
|
+
default: string;
|
|
6100
|
+
};
|
|
5421
6101
|
}>> & {
|
|
5422
6102
|
onSelectAll?: (value: boolean) => any;
|
|
5423
6103
|
"onUpdate:search"?: (query: string) => any;
|
|
@@ -5434,7 +6114,7 @@ declare const _default: {
|
|
|
5434
6114
|
"onUpdate:selection"?: (selection: unknown[]) => any;
|
|
5435
6115
|
onSelectRow?: (value: boolean) => any;
|
|
5436
6116
|
onClickRow?: (rowIndex: number) => any;
|
|
5437
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "sort" | "title" | "search" | "testId" | "isLoading" | "searchAutoFocus" | "searchPlaceholder" | "selection" | "showSearch" | "
|
|
6117
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "sort" | "title" | "search" | "testId" | "isLoading" | "searchAutoFocus" | "searchPlaceholder" | "selection" | "showSearch" | "loadingRowCount" | "emptyStateTitle" | "isSticky" | "sections" | "isStickyHeader" | "emptyStateSubtitle" | "isInfiniteScroll" | "infiniteScrollThreshold" | "rowHeight" | "defaultScrollPosition" | "getRowId" | "selectedMatcher" | "emptyStateVariant" | "zIndexBase" | "rowCustomClassKey" | "rowDataKey">;
|
|
5438
6118
|
$attrs: {
|
|
5439
6119
|
[x: string]: unknown;
|
|
5440
6120
|
};
|
|
@@ -5494,6 +6174,14 @@ declare const _default: {
|
|
|
5494
6174
|
type: import("vue").PropType<boolean>;
|
|
5495
6175
|
default: boolean;
|
|
5496
6176
|
};
|
|
6177
|
+
loadingRowCount: {
|
|
6178
|
+
type: import("vue").PropType<number>;
|
|
6179
|
+
default: number;
|
|
6180
|
+
};
|
|
6181
|
+
emptyStateTitle: {
|
|
6182
|
+
type: import("vue").PropType<string>;
|
|
6183
|
+
default: string;
|
|
6184
|
+
};
|
|
5497
6185
|
isSticky: {
|
|
5498
6186
|
type: import("vue").PropType<boolean>;
|
|
5499
6187
|
default: boolean;
|
|
@@ -5510,10 +6198,6 @@ declare const _default: {
|
|
|
5510
6198
|
type: import("vue").PropType<boolean>;
|
|
5511
6199
|
default: boolean;
|
|
5512
6200
|
};
|
|
5513
|
-
emptyStateTitle: {
|
|
5514
|
-
type: import("vue").PropType<string>;
|
|
5515
|
-
default: string;
|
|
5516
|
-
};
|
|
5517
6201
|
emptyStateSubtitle: {
|
|
5518
6202
|
type: import("vue").PropType<string>;
|
|
5519
6203
|
default: string;
|
|
@@ -5530,10 +6214,6 @@ declare const _default: {
|
|
|
5530
6214
|
type: import("vue").PropType<number | ((index: number) => number)>;
|
|
5531
6215
|
default: number;
|
|
5532
6216
|
};
|
|
5533
|
-
loadingRowCount: {
|
|
5534
|
-
type: import("vue").PropType<number>;
|
|
5535
|
-
default: number;
|
|
5536
|
-
};
|
|
5537
6217
|
defaultScrollPosition: {
|
|
5538
6218
|
type: import("vue").PropType<number>;
|
|
5539
6219
|
default: any;
|
|
@@ -5554,6 +6234,14 @@ declare const _default: {
|
|
|
5554
6234
|
type: import("vue").PropType<number>;
|
|
5555
6235
|
default: number;
|
|
5556
6236
|
};
|
|
6237
|
+
rowCustomClassKey: {
|
|
6238
|
+
type: import("vue").PropType<string>;
|
|
6239
|
+
default: string;
|
|
6240
|
+
};
|
|
6241
|
+
rowDataKey: {
|
|
6242
|
+
type: import("vue").PropType<string>;
|
|
6243
|
+
default: string;
|
|
6244
|
+
};
|
|
5557
6245
|
}>> & {
|
|
5558
6246
|
onSelectAll?: (value: boolean) => any;
|
|
5559
6247
|
"onUpdate:search"?: (query: string) => any;
|
|
@@ -5598,20 +6286,22 @@ declare const _default: {
|
|
|
5598
6286
|
searchPlaceholder: string;
|
|
5599
6287
|
selection: unknown[];
|
|
5600
6288
|
showSearch: boolean;
|
|
6289
|
+
loadingRowCount: number;
|
|
6290
|
+
emptyStateTitle: string;
|
|
5601
6291
|
isSticky: boolean;
|
|
5602
6292
|
sections: import("./components/table/common/Table.types").Section[];
|
|
5603
6293
|
isStickyHeader: boolean;
|
|
5604
|
-
emptyStateTitle: string;
|
|
5605
6294
|
emptyStateSubtitle: string;
|
|
5606
6295
|
isInfiniteScroll: boolean;
|
|
5607
6296
|
infiniteScrollThreshold: number;
|
|
5608
6297
|
rowHeight: number | ((index: number) => number);
|
|
5609
|
-
loadingRowCount: number;
|
|
5610
6298
|
defaultScrollPosition: number;
|
|
5611
6299
|
getRowId: (row: import("./components/table/common/Table.types").Row, index: number) => unknown;
|
|
5612
6300
|
selectedMatcher: (rowId: unknown, selected: unknown) => boolean;
|
|
5613
6301
|
emptyStateVariant: "error" | "no-access" | "no-results" | "no-data" | "files" | "settings";
|
|
5614
6302
|
zIndexBase: number;
|
|
6303
|
+
rowCustomClassKey: string;
|
|
6304
|
+
rowDataKey: string;
|
|
5615
6305
|
}, {}, string> & {
|
|
5616
6306
|
beforeCreate?: (() => void) | (() => void)[];
|
|
5617
6307
|
created?: (() => void) | (() => void)[];
|
|
@@ -5673,6 +6363,14 @@ declare const _default: {
|
|
|
5673
6363
|
type: import("vue").PropType<boolean>;
|
|
5674
6364
|
default: boolean;
|
|
5675
6365
|
};
|
|
6366
|
+
loadingRowCount: {
|
|
6367
|
+
type: import("vue").PropType<number>;
|
|
6368
|
+
default: number;
|
|
6369
|
+
};
|
|
6370
|
+
emptyStateTitle: {
|
|
6371
|
+
type: import("vue").PropType<string>;
|
|
6372
|
+
default: string;
|
|
6373
|
+
};
|
|
5676
6374
|
isSticky: {
|
|
5677
6375
|
type: import("vue").PropType<boolean>;
|
|
5678
6376
|
default: boolean;
|
|
@@ -5689,10 +6387,6 @@ declare const _default: {
|
|
|
5689
6387
|
type: import("vue").PropType<boolean>;
|
|
5690
6388
|
default: boolean;
|
|
5691
6389
|
};
|
|
5692
|
-
emptyStateTitle: {
|
|
5693
|
-
type: import("vue").PropType<string>;
|
|
5694
|
-
default: string;
|
|
5695
|
-
};
|
|
5696
6390
|
emptyStateSubtitle: {
|
|
5697
6391
|
type: import("vue").PropType<string>;
|
|
5698
6392
|
default: string;
|
|
@@ -5709,10 +6403,6 @@ declare const _default: {
|
|
|
5709
6403
|
type: import("vue").PropType<number | ((index: number) => number)>;
|
|
5710
6404
|
default: number;
|
|
5711
6405
|
};
|
|
5712
|
-
loadingRowCount: {
|
|
5713
|
-
type: import("vue").PropType<number>;
|
|
5714
|
-
default: number;
|
|
5715
|
-
};
|
|
5716
6406
|
defaultScrollPosition: {
|
|
5717
6407
|
type: import("vue").PropType<number>;
|
|
5718
6408
|
default: any;
|
|
@@ -5733,6 +6423,14 @@ declare const _default: {
|
|
|
5733
6423
|
type: import("vue").PropType<number>;
|
|
5734
6424
|
default: number;
|
|
5735
6425
|
};
|
|
6426
|
+
rowCustomClassKey: {
|
|
6427
|
+
type: import("vue").PropType<string>;
|
|
6428
|
+
default: string;
|
|
6429
|
+
};
|
|
6430
|
+
rowDataKey: {
|
|
6431
|
+
type: import("vue").PropType<string>;
|
|
6432
|
+
default: string;
|
|
6433
|
+
};
|
|
5736
6434
|
}>> & {
|
|
5737
6435
|
onSelectAll?: (value: boolean) => any;
|
|
5738
6436
|
"onUpdate:search"?: (query: string) => any;
|
|
@@ -5796,6 +6494,14 @@ declare const _default: {
|
|
|
5796
6494
|
type: import("vue").PropType<boolean>;
|
|
5797
6495
|
default: boolean;
|
|
5798
6496
|
};
|
|
6497
|
+
loadingRowCount: {
|
|
6498
|
+
type: import("vue").PropType<number>;
|
|
6499
|
+
default: number;
|
|
6500
|
+
};
|
|
6501
|
+
emptyStateTitle: {
|
|
6502
|
+
type: import("vue").PropType<string>;
|
|
6503
|
+
default: string;
|
|
6504
|
+
};
|
|
5799
6505
|
isSticky: {
|
|
5800
6506
|
type: import("vue").PropType<boolean>;
|
|
5801
6507
|
default: boolean;
|
|
@@ -5812,10 +6518,6 @@ declare const _default: {
|
|
|
5812
6518
|
type: import("vue").PropType<boolean>;
|
|
5813
6519
|
default: boolean;
|
|
5814
6520
|
};
|
|
5815
|
-
emptyStateTitle: {
|
|
5816
|
-
type: import("vue").PropType<string>;
|
|
5817
|
-
default: string;
|
|
5818
|
-
};
|
|
5819
6521
|
emptyStateSubtitle: {
|
|
5820
6522
|
type: import("vue").PropType<string>;
|
|
5821
6523
|
default: string;
|
|
@@ -5832,10 +6534,6 @@ declare const _default: {
|
|
|
5832
6534
|
type: import("vue").PropType<number | ((index: number) => number)>;
|
|
5833
6535
|
default: number;
|
|
5834
6536
|
};
|
|
5835
|
-
loadingRowCount: {
|
|
5836
|
-
type: import("vue").PropType<number>;
|
|
5837
|
-
default: number;
|
|
5838
|
-
};
|
|
5839
6537
|
defaultScrollPosition: {
|
|
5840
6538
|
type: import("vue").PropType<number>;
|
|
5841
6539
|
default: any;
|
|
@@ -5856,6 +6554,14 @@ declare const _default: {
|
|
|
5856
6554
|
type: import("vue").PropType<number>;
|
|
5857
6555
|
default: number;
|
|
5858
6556
|
};
|
|
6557
|
+
rowCustomClassKey: {
|
|
6558
|
+
type: import("vue").PropType<string>;
|
|
6559
|
+
default: string;
|
|
6560
|
+
};
|
|
6561
|
+
rowDataKey: {
|
|
6562
|
+
type: import("vue").PropType<string>;
|
|
6563
|
+
default: string;
|
|
6564
|
+
};
|
|
5859
6565
|
}>> & {
|
|
5860
6566
|
onSelectAll?: (value: boolean) => any;
|
|
5861
6567
|
"onUpdate:search"?: (query: string) => any;
|
|
@@ -5900,20 +6606,22 @@ declare const _default: {
|
|
|
5900
6606
|
searchPlaceholder: string;
|
|
5901
6607
|
selection: unknown[];
|
|
5902
6608
|
showSearch: boolean;
|
|
6609
|
+
loadingRowCount: number;
|
|
6610
|
+
emptyStateTitle: string;
|
|
5903
6611
|
isSticky: boolean;
|
|
5904
6612
|
sections: import("./components/table/common/Table.types").Section[];
|
|
5905
6613
|
isStickyHeader: boolean;
|
|
5906
|
-
emptyStateTitle: string;
|
|
5907
6614
|
emptyStateSubtitle: string;
|
|
5908
6615
|
isInfiniteScroll: boolean;
|
|
5909
6616
|
infiniteScrollThreshold: number;
|
|
5910
6617
|
rowHeight: number | ((index: number) => number);
|
|
5911
|
-
loadingRowCount: number;
|
|
5912
6618
|
defaultScrollPosition: number;
|
|
5913
6619
|
getRowId: (row: import("./components/table/common/Table.types").Row, index: number) => unknown;
|
|
5914
6620
|
selectedMatcher: (rowId: unknown, selected: unknown) => boolean;
|
|
5915
6621
|
emptyStateVariant: "error" | "no-access" | "no-results" | "no-data" | "files" | "settings";
|
|
5916
6622
|
zIndexBase: number;
|
|
6623
|
+
rowCustomClassKey: string;
|
|
6624
|
+
rowDataKey: string;
|
|
5917
6625
|
}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
5918
6626
|
$slots: Partial<Record<`section-${string}`, (_: {}) => any>> & Partial<Record<`header-${string}`, (_: {
|
|
5919
6627
|
column: tableV3.Column;
|
|
@@ -5973,6 +6681,10 @@ declare const _default: {
|
|
|
5973
6681
|
rowIndex: number;
|
|
5974
6682
|
menuItems: tableV4.MenuItem[];
|
|
5975
6683
|
}> | import("vue").DefineComponent<{
|
|
6684
|
+
testId: {
|
|
6685
|
+
type: import("vue").PropType<string>;
|
|
6686
|
+
default: string;
|
|
6687
|
+
};
|
|
5976
6688
|
count: {
|
|
5977
6689
|
type: import("vue").PropType<number>;
|
|
5978
6690
|
default: number;
|
|
@@ -5994,6 +6706,10 @@ declare const _default: {
|
|
|
5994
6706
|
default: string;
|
|
5995
6707
|
};
|
|
5996
6708
|
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
6709
|
+
testId: {
|
|
6710
|
+
type: import("vue").PropType<string>;
|
|
6711
|
+
default: string;
|
|
6712
|
+
};
|
|
5997
6713
|
count: {
|
|
5998
6714
|
type: import("vue").PropType<number>;
|
|
5999
6715
|
default: number;
|
|
@@ -6015,6 +6731,7 @@ declare const _default: {
|
|
|
6015
6731
|
default: string;
|
|
6016
6732
|
};
|
|
6017
6733
|
}>>, {
|
|
6734
|
+
testId: string;
|
|
6018
6735
|
count: number;
|
|
6019
6736
|
totalCount: number;
|
|
6020
6737
|
displayingText: string;
|
|
@@ -6031,10 +6748,10 @@ declare const _default: {
|
|
|
6031
6748
|
searchPlaceholder: string;
|
|
6032
6749
|
count: number;
|
|
6033
6750
|
showSearch: boolean;
|
|
6034
|
-
|
|
6751
|
+
loadingRowCount: number;
|
|
6035
6752
|
emptyStateTitle: string;
|
|
6753
|
+
isSticky: boolean;
|
|
6036
6754
|
emptyStateSubtitle: string;
|
|
6037
|
-
loadingRowCount: number;
|
|
6038
6755
|
emptyStateVariant: "error" | "no-access" | "no-results" | "no-data" | "files" | "settings";
|
|
6039
6756
|
zIndexBase: number;
|
|
6040
6757
|
totalCount: number;
|
|
@@ -6068,22 +6785,22 @@ declare const _default: {
|
|
|
6068
6785
|
type: import("vue").PropType<boolean>;
|
|
6069
6786
|
default: boolean;
|
|
6070
6787
|
};
|
|
6071
|
-
|
|
6072
|
-
type: import("vue").PropType<
|
|
6073
|
-
default:
|
|
6788
|
+
loadingRowCount: {
|
|
6789
|
+
type: import("vue").PropType<number>;
|
|
6790
|
+
default: number;
|
|
6074
6791
|
};
|
|
6075
6792
|
emptyStateTitle: {
|
|
6076
6793
|
type: import("vue").PropType<string>;
|
|
6077
6794
|
default: string;
|
|
6078
6795
|
};
|
|
6796
|
+
isSticky: {
|
|
6797
|
+
type: import("vue").PropType<boolean>;
|
|
6798
|
+
default: boolean;
|
|
6799
|
+
};
|
|
6079
6800
|
emptyStateSubtitle: {
|
|
6080
6801
|
type: import("vue").PropType<string>;
|
|
6081
6802
|
default: string;
|
|
6082
6803
|
};
|
|
6083
|
-
loadingRowCount: {
|
|
6084
|
-
type: import("vue").PropType<number>;
|
|
6085
|
-
default: number;
|
|
6086
|
-
};
|
|
6087
6804
|
emptyStateVariant: {
|
|
6088
6805
|
type: import("vue").PropType<"error" | "no-access" | "no-results" | "no-data" | "files" | "settings">;
|
|
6089
6806
|
default: any;
|
|
@@ -6123,7 +6840,7 @@ declare const _default: {
|
|
|
6123
6840
|
onOnScroll?: (scrollTop: number) => any;
|
|
6124
6841
|
onOnClearSearch?: () => any;
|
|
6125
6842
|
onClickRow?: (rowIndex: number, tableIndex: number) => any;
|
|
6126
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "search" | "testId" | "isLoading" | "searchPlaceholder" | "count" | "showSearch" | "
|
|
6843
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "search" | "testId" | "isLoading" | "searchPlaceholder" | "count" | "showSearch" | "loadingRowCount" | "emptyStateTitle" | "isSticky" | "emptyStateSubtitle" | "emptyStateVariant" | "zIndexBase" | "totalCount" | "displayingText" | "outOfText" | "totalText" | "tablesSettings" | "loadingAndEmptyStatesColumns">;
|
|
6127
6844
|
$attrs: {
|
|
6128
6845
|
[x: string]: unknown;
|
|
6129
6846
|
};
|
|
@@ -6162,22 +6879,22 @@ declare const _default: {
|
|
|
6162
6879
|
type: import("vue").PropType<boolean>;
|
|
6163
6880
|
default: boolean;
|
|
6164
6881
|
};
|
|
6165
|
-
|
|
6166
|
-
type: import("vue").PropType<
|
|
6167
|
-
default:
|
|
6882
|
+
loadingRowCount: {
|
|
6883
|
+
type: import("vue").PropType<number>;
|
|
6884
|
+
default: number;
|
|
6168
6885
|
};
|
|
6169
6886
|
emptyStateTitle: {
|
|
6170
6887
|
type: import("vue").PropType<string>;
|
|
6171
6888
|
default: string;
|
|
6172
6889
|
};
|
|
6890
|
+
isSticky: {
|
|
6891
|
+
type: import("vue").PropType<boolean>;
|
|
6892
|
+
default: boolean;
|
|
6893
|
+
};
|
|
6173
6894
|
emptyStateSubtitle: {
|
|
6174
6895
|
type: import("vue").PropType<string>;
|
|
6175
6896
|
default: string;
|
|
6176
6897
|
};
|
|
6177
|
-
loadingRowCount: {
|
|
6178
|
-
type: import("vue").PropType<number>;
|
|
6179
|
-
default: number;
|
|
6180
|
-
};
|
|
6181
6898
|
emptyStateVariant: {
|
|
6182
6899
|
type: import("vue").PropType<"error" | "no-access" | "no-results" | "no-data" | "files" | "settings">;
|
|
6183
6900
|
default: any;
|
|
@@ -6229,10 +6946,10 @@ declare const _default: {
|
|
|
6229
6946
|
searchPlaceholder: string;
|
|
6230
6947
|
count: number;
|
|
6231
6948
|
showSearch: boolean;
|
|
6232
|
-
|
|
6949
|
+
loadingRowCount: number;
|
|
6233
6950
|
emptyStateTitle: string;
|
|
6951
|
+
isSticky: boolean;
|
|
6234
6952
|
emptyStateSubtitle: string;
|
|
6235
|
-
loadingRowCount: number;
|
|
6236
6953
|
emptyStateVariant: "error" | "no-access" | "no-results" | "no-data" | "files" | "settings";
|
|
6237
6954
|
zIndexBase: number;
|
|
6238
6955
|
totalCount: number;
|
|
@@ -6286,22 +7003,22 @@ declare const _default: {
|
|
|
6286
7003
|
type: import("vue").PropType<boolean>;
|
|
6287
7004
|
default: boolean;
|
|
6288
7005
|
};
|
|
6289
|
-
|
|
6290
|
-
type: import("vue").PropType<
|
|
6291
|
-
default:
|
|
7006
|
+
loadingRowCount: {
|
|
7007
|
+
type: import("vue").PropType<number>;
|
|
7008
|
+
default: number;
|
|
6292
7009
|
};
|
|
6293
7010
|
emptyStateTitle: {
|
|
6294
7011
|
type: import("vue").PropType<string>;
|
|
6295
7012
|
default: string;
|
|
6296
7013
|
};
|
|
7014
|
+
isSticky: {
|
|
7015
|
+
type: import("vue").PropType<boolean>;
|
|
7016
|
+
default: boolean;
|
|
7017
|
+
};
|
|
6297
7018
|
emptyStateSubtitle: {
|
|
6298
7019
|
type: import("vue").PropType<string>;
|
|
6299
7020
|
default: string;
|
|
6300
7021
|
};
|
|
6301
|
-
loadingRowCount: {
|
|
6302
|
-
type: import("vue").PropType<number>;
|
|
6303
|
-
default: number;
|
|
6304
|
-
};
|
|
6305
7022
|
emptyStateVariant: {
|
|
6306
7023
|
type: import("vue").PropType<"error" | "no-access" | "no-results" | "no-data" | "files" | "settings">;
|
|
6307
7024
|
default: any;
|
|
@@ -6370,22 +7087,22 @@ declare const _default: {
|
|
|
6370
7087
|
type: import("vue").PropType<boolean>;
|
|
6371
7088
|
default: boolean;
|
|
6372
7089
|
};
|
|
6373
|
-
|
|
6374
|
-
type: import("vue").PropType<
|
|
6375
|
-
default:
|
|
7090
|
+
loadingRowCount: {
|
|
7091
|
+
type: import("vue").PropType<number>;
|
|
7092
|
+
default: number;
|
|
6376
7093
|
};
|
|
6377
7094
|
emptyStateTitle: {
|
|
6378
7095
|
type: import("vue").PropType<string>;
|
|
6379
7096
|
default: string;
|
|
6380
7097
|
};
|
|
7098
|
+
isSticky: {
|
|
7099
|
+
type: import("vue").PropType<boolean>;
|
|
7100
|
+
default: boolean;
|
|
7101
|
+
};
|
|
6381
7102
|
emptyStateSubtitle: {
|
|
6382
7103
|
type: import("vue").PropType<string>;
|
|
6383
7104
|
default: string;
|
|
6384
7105
|
};
|
|
6385
|
-
loadingRowCount: {
|
|
6386
|
-
type: import("vue").PropType<number>;
|
|
6387
|
-
default: number;
|
|
6388
|
-
};
|
|
6389
7106
|
emptyStateVariant: {
|
|
6390
7107
|
type: import("vue").PropType<"error" | "no-access" | "no-results" | "no-data" | "files" | "settings">;
|
|
6391
7108
|
default: any;
|
|
@@ -6437,10 +7154,10 @@ declare const _default: {
|
|
|
6437
7154
|
searchPlaceholder: string;
|
|
6438
7155
|
count: number;
|
|
6439
7156
|
showSearch: boolean;
|
|
6440
|
-
|
|
7157
|
+
loadingRowCount: number;
|
|
6441
7158
|
emptyStateTitle: string;
|
|
7159
|
+
isSticky: boolean;
|
|
6442
7160
|
emptyStateSubtitle: string;
|
|
6443
|
-
loadingRowCount: number;
|
|
6444
7161
|
emptyStateVariant: "error" | "no-access" | "no-results" | "no-data" | "files" | "settings";
|
|
6445
7162
|
zIndexBase: number;
|
|
6446
7163
|
totalCount: number;
|
|
@@ -6451,12 +7168,25 @@ declare const _default: {
|
|
|
6451
7168
|
loadingAndEmptyStatesColumns: tableV3.Column[];
|
|
6452
7169
|
}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
6453
7170
|
$slots: Partial<Record<string, (_: {
|
|
7171
|
+
column: tableV3.Column;
|
|
7172
|
+
}) => any>> & Partial<Record<string, (_: {
|
|
6454
7173
|
cell: any;
|
|
6455
7174
|
isLoading: any;
|
|
6456
7175
|
cellIndex: any;
|
|
6457
7176
|
row: any;
|
|
6458
7177
|
rowIndex: any;
|
|
6459
|
-
}) => any
|
|
7178
|
+
}) => any>> & Partial<Record<string, (_: {
|
|
7179
|
+
column: tableV3.Column;
|
|
7180
|
+
}) => any>> & {
|
|
7181
|
+
title?(_: {}): any;
|
|
7182
|
+
search?(_: {}): any;
|
|
7183
|
+
"table-header-actions"?(_: {}): any;
|
|
7184
|
+
"floating-row"?(_: {
|
|
7185
|
+
row: any;
|
|
7186
|
+
rowIndex: any;
|
|
7187
|
+
}): any;
|
|
7188
|
+
"empty-state"?(_: {}): any;
|
|
7189
|
+
};
|
|
6460
7190
|
})))[];
|
|
6461
7191
|
MultipleDataGrid: {
|
|
6462
7192
|
new (...args: any[]): {
|
|
@@ -6469,10 +7199,10 @@ declare const _default: {
|
|
|
6469
7199
|
searchPlaceholder: string;
|
|
6470
7200
|
count: number;
|
|
6471
7201
|
showSearch: boolean;
|
|
6472
|
-
|
|
7202
|
+
loadingRowCount: number;
|
|
6473
7203
|
emptyStateTitle: string;
|
|
7204
|
+
isSticky: boolean;
|
|
6474
7205
|
emptyStateSubtitle: string;
|
|
6475
|
-
loadingRowCount: number;
|
|
6476
7206
|
emptyStateVariant: "error" | "no-access" | "no-results" | "no-data" | "files" | "settings";
|
|
6477
7207
|
zIndexBase: number;
|
|
6478
7208
|
totalCount: number;
|
|
@@ -6506,22 +7236,22 @@ declare const _default: {
|
|
|
6506
7236
|
type: import("vue").PropType<boolean>;
|
|
6507
7237
|
default: boolean;
|
|
6508
7238
|
};
|
|
6509
|
-
|
|
6510
|
-
type: import("vue").PropType<
|
|
6511
|
-
default:
|
|
7239
|
+
loadingRowCount: {
|
|
7240
|
+
type: import("vue").PropType<number>;
|
|
7241
|
+
default: number;
|
|
6512
7242
|
};
|
|
6513
7243
|
emptyStateTitle: {
|
|
6514
7244
|
type: import("vue").PropType<string>;
|
|
6515
7245
|
default: string;
|
|
6516
7246
|
};
|
|
7247
|
+
isSticky: {
|
|
7248
|
+
type: import("vue").PropType<boolean>;
|
|
7249
|
+
default: boolean;
|
|
7250
|
+
};
|
|
6517
7251
|
emptyStateSubtitle: {
|
|
6518
7252
|
type: import("vue").PropType<string>;
|
|
6519
7253
|
default: string;
|
|
6520
7254
|
};
|
|
6521
|
-
loadingRowCount: {
|
|
6522
|
-
type: import("vue").PropType<number>;
|
|
6523
|
-
default: number;
|
|
6524
|
-
};
|
|
6525
7255
|
emptyStateVariant: {
|
|
6526
7256
|
type: import("vue").PropType<"error" | "no-access" | "no-results" | "no-data" | "files" | "settings">;
|
|
6527
7257
|
default: any;
|
|
@@ -6561,7 +7291,7 @@ declare const _default: {
|
|
|
6561
7291
|
onOnScroll?: (scrollTop: number) => any;
|
|
6562
7292
|
onOnClearSearch?: () => any;
|
|
6563
7293
|
onClickRow?: (rowIndex: number, tableIndex: number) => any;
|
|
6564
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "search" | "testId" | "isLoading" | "searchPlaceholder" | "count" | "showSearch" | "
|
|
7294
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "search" | "testId" | "isLoading" | "searchPlaceholder" | "count" | "showSearch" | "loadingRowCount" | "emptyStateTitle" | "isSticky" | "emptyStateSubtitle" | "emptyStateVariant" | "zIndexBase" | "totalCount" | "displayingText" | "outOfText" | "totalText" | "tablesSettings" | "loadingAndEmptyStatesColumns">;
|
|
6565
7295
|
$attrs: {
|
|
6566
7296
|
[x: string]: unknown;
|
|
6567
7297
|
};
|
|
@@ -6600,22 +7330,22 @@ declare const _default: {
|
|
|
6600
7330
|
type: import("vue").PropType<boolean>;
|
|
6601
7331
|
default: boolean;
|
|
6602
7332
|
};
|
|
6603
|
-
|
|
6604
|
-
type: import("vue").PropType<
|
|
6605
|
-
default:
|
|
7333
|
+
loadingRowCount: {
|
|
7334
|
+
type: import("vue").PropType<number>;
|
|
7335
|
+
default: number;
|
|
6606
7336
|
};
|
|
6607
7337
|
emptyStateTitle: {
|
|
6608
7338
|
type: import("vue").PropType<string>;
|
|
6609
7339
|
default: string;
|
|
6610
7340
|
};
|
|
7341
|
+
isSticky: {
|
|
7342
|
+
type: import("vue").PropType<boolean>;
|
|
7343
|
+
default: boolean;
|
|
7344
|
+
};
|
|
6611
7345
|
emptyStateSubtitle: {
|
|
6612
7346
|
type: import("vue").PropType<string>;
|
|
6613
7347
|
default: string;
|
|
6614
7348
|
};
|
|
6615
|
-
loadingRowCount: {
|
|
6616
|
-
type: import("vue").PropType<number>;
|
|
6617
|
-
default: number;
|
|
6618
|
-
};
|
|
6619
7349
|
emptyStateVariant: {
|
|
6620
7350
|
type: import("vue").PropType<"error" | "no-access" | "no-results" | "no-data" | "files" | "settings">;
|
|
6621
7351
|
default: any;
|
|
@@ -6667,10 +7397,10 @@ declare const _default: {
|
|
|
6667
7397
|
searchPlaceholder: string;
|
|
6668
7398
|
count: number;
|
|
6669
7399
|
showSearch: boolean;
|
|
6670
|
-
|
|
7400
|
+
loadingRowCount: number;
|
|
6671
7401
|
emptyStateTitle: string;
|
|
7402
|
+
isSticky: boolean;
|
|
6672
7403
|
emptyStateSubtitle: string;
|
|
6673
|
-
loadingRowCount: number;
|
|
6674
7404
|
emptyStateVariant: "error" | "no-access" | "no-results" | "no-data" | "files" | "settings";
|
|
6675
7405
|
zIndexBase: number;
|
|
6676
7406
|
totalCount: number;
|
|
@@ -6724,22 +7454,22 @@ declare const _default: {
|
|
|
6724
7454
|
type: import("vue").PropType<boolean>;
|
|
6725
7455
|
default: boolean;
|
|
6726
7456
|
};
|
|
6727
|
-
|
|
6728
|
-
type: import("vue").PropType<
|
|
6729
|
-
default:
|
|
7457
|
+
loadingRowCount: {
|
|
7458
|
+
type: import("vue").PropType<number>;
|
|
7459
|
+
default: number;
|
|
6730
7460
|
};
|
|
6731
7461
|
emptyStateTitle: {
|
|
6732
7462
|
type: import("vue").PropType<string>;
|
|
6733
7463
|
default: string;
|
|
6734
7464
|
};
|
|
7465
|
+
isSticky: {
|
|
7466
|
+
type: import("vue").PropType<boolean>;
|
|
7467
|
+
default: boolean;
|
|
7468
|
+
};
|
|
6735
7469
|
emptyStateSubtitle: {
|
|
6736
7470
|
type: import("vue").PropType<string>;
|
|
6737
7471
|
default: string;
|
|
6738
7472
|
};
|
|
6739
|
-
loadingRowCount: {
|
|
6740
|
-
type: import("vue").PropType<number>;
|
|
6741
|
-
default: number;
|
|
6742
|
-
};
|
|
6743
7473
|
emptyStateVariant: {
|
|
6744
7474
|
type: import("vue").PropType<"error" | "no-access" | "no-results" | "no-data" | "files" | "settings">;
|
|
6745
7475
|
default: any;
|
|
@@ -6808,22 +7538,22 @@ declare const _default: {
|
|
|
6808
7538
|
type: import("vue").PropType<boolean>;
|
|
6809
7539
|
default: boolean;
|
|
6810
7540
|
};
|
|
6811
|
-
|
|
6812
|
-
type: import("vue").PropType<
|
|
6813
|
-
default:
|
|
7541
|
+
loadingRowCount: {
|
|
7542
|
+
type: import("vue").PropType<number>;
|
|
7543
|
+
default: number;
|
|
6814
7544
|
};
|
|
6815
7545
|
emptyStateTitle: {
|
|
6816
7546
|
type: import("vue").PropType<string>;
|
|
6817
7547
|
default: string;
|
|
6818
7548
|
};
|
|
7549
|
+
isSticky: {
|
|
7550
|
+
type: import("vue").PropType<boolean>;
|
|
7551
|
+
default: boolean;
|
|
7552
|
+
};
|
|
6819
7553
|
emptyStateSubtitle: {
|
|
6820
7554
|
type: import("vue").PropType<string>;
|
|
6821
7555
|
default: string;
|
|
6822
7556
|
};
|
|
6823
|
-
loadingRowCount: {
|
|
6824
|
-
type: import("vue").PropType<number>;
|
|
6825
|
-
default: number;
|
|
6826
|
-
};
|
|
6827
7557
|
emptyStateVariant: {
|
|
6828
7558
|
type: import("vue").PropType<"error" | "no-access" | "no-results" | "no-data" | "files" | "settings">;
|
|
6829
7559
|
default: any;
|
|
@@ -6875,10 +7605,10 @@ declare const _default: {
|
|
|
6875
7605
|
searchPlaceholder: string;
|
|
6876
7606
|
count: number;
|
|
6877
7607
|
showSearch: boolean;
|
|
6878
|
-
|
|
7608
|
+
loadingRowCount: number;
|
|
6879
7609
|
emptyStateTitle: string;
|
|
7610
|
+
isSticky: boolean;
|
|
6880
7611
|
emptyStateSubtitle: string;
|
|
6881
|
-
loadingRowCount: number;
|
|
6882
7612
|
emptyStateVariant: "error" | "no-access" | "no-results" | "no-data" | "files" | "settings";
|
|
6883
7613
|
zIndexBase: number;
|
|
6884
7614
|
totalCount: number;
|
|
@@ -6889,12 +7619,25 @@ declare const _default: {
|
|
|
6889
7619
|
loadingAndEmptyStatesColumns: tableV3.Column[];
|
|
6890
7620
|
}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
6891
7621
|
$slots: Partial<Record<string, (_: {
|
|
7622
|
+
column: tableV3.Column;
|
|
7623
|
+
}) => any>> & Partial<Record<string, (_: {
|
|
6892
7624
|
cell: any;
|
|
6893
7625
|
isLoading: any;
|
|
6894
7626
|
cellIndex: any;
|
|
6895
7627
|
row: any;
|
|
6896
7628
|
rowIndex: any;
|
|
6897
|
-
}) => any
|
|
7629
|
+
}) => any>> & Partial<Record<string, (_: {
|
|
7630
|
+
column: tableV3.Column;
|
|
7631
|
+
}) => any>> & {
|
|
7632
|
+
title?(_: {}): any;
|
|
7633
|
+
search?(_: {}): any;
|
|
7634
|
+
"table-header-actions"?(_: {}): any;
|
|
7635
|
+
"floating-row"?(_: {
|
|
7636
|
+
row: any;
|
|
7637
|
+
rowIndex: any;
|
|
7638
|
+
}): any;
|
|
7639
|
+
"empty-state"?(_: {}): any;
|
|
7640
|
+
};
|
|
6898
7641
|
});
|
|
6899
7642
|
Table: {
|
|
6900
7643
|
new (...args: any[]): {
|
|
@@ -6903,15 +7646,15 @@ declare const _default: {
|
|
|
6903
7646
|
$props: Partial<{
|
|
6904
7647
|
testId: string;
|
|
6905
7648
|
isLoading: boolean;
|
|
7649
|
+
loadingRowCount: number;
|
|
7650
|
+
emptyStateTitle: string;
|
|
6906
7651
|
isSticky: boolean;
|
|
6907
7652
|
sections: import("./components/table/common/Table.types").Section[];
|
|
6908
7653
|
isStickyHeader: boolean;
|
|
6909
|
-
emptyStateTitle: string;
|
|
6910
7654
|
emptyStateSubtitle: string;
|
|
6911
7655
|
isInfiniteScroll: boolean;
|
|
6912
7656
|
infiniteScrollThreshold: number;
|
|
6913
7657
|
rowHeight: number | ((index: number) => number);
|
|
6914
|
-
loadingRowCount: number;
|
|
6915
7658
|
defaultScrollPosition: number;
|
|
6916
7659
|
}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
6917
7660
|
sort: {
|
|
@@ -6934,6 +7677,14 @@ declare const _default: {
|
|
|
6934
7677
|
type: import("vue").PropType<boolean>;
|
|
6935
7678
|
default: boolean;
|
|
6936
7679
|
};
|
|
7680
|
+
loadingRowCount: {
|
|
7681
|
+
type: import("vue").PropType<number>;
|
|
7682
|
+
default: number;
|
|
7683
|
+
};
|
|
7684
|
+
emptyStateTitle: {
|
|
7685
|
+
type: import("vue").PropType<string>;
|
|
7686
|
+
default: string;
|
|
7687
|
+
};
|
|
6937
7688
|
isSticky: {
|
|
6938
7689
|
type: import("vue").PropType<boolean>;
|
|
6939
7690
|
default: boolean;
|
|
@@ -6950,10 +7701,6 @@ declare const _default: {
|
|
|
6950
7701
|
type: import("vue").PropType<boolean>;
|
|
6951
7702
|
default: boolean;
|
|
6952
7703
|
};
|
|
6953
|
-
emptyStateTitle: {
|
|
6954
|
-
type: import("vue").PropType<string>;
|
|
6955
|
-
default: string;
|
|
6956
|
-
};
|
|
6957
7704
|
emptyStateSubtitle: {
|
|
6958
7705
|
type: import("vue").PropType<string>;
|
|
6959
7706
|
default: string;
|
|
@@ -6970,10 +7717,6 @@ declare const _default: {
|
|
|
6970
7717
|
type: import("vue").PropType<number | ((index: number) => number)>;
|
|
6971
7718
|
default: number;
|
|
6972
7719
|
};
|
|
6973
|
-
loadingRowCount: {
|
|
6974
|
-
type: import("vue").PropType<number>;
|
|
6975
|
-
default: number;
|
|
6976
|
-
};
|
|
6977
7720
|
defaultScrollPosition: {
|
|
6978
7721
|
type: import("vue").PropType<number>;
|
|
6979
7722
|
default: any;
|
|
@@ -6988,7 +7731,7 @@ declare const _default: {
|
|
|
6988
7731
|
cellIndex: number;
|
|
6989
7732
|
}) => any;
|
|
6990
7733
|
onLoadMore?: () => any;
|
|
6991
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "testId" | "isLoading" | "
|
|
7734
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "testId" | "isLoading" | "loadingRowCount" | "emptyStateTitle" | "isSticky" | "sections" | "isStickyHeader" | "emptyStateSubtitle" | "isInfiniteScroll" | "infiniteScrollThreshold" | "rowHeight" | "defaultScrollPosition">;
|
|
6992
7735
|
$attrs: {
|
|
6993
7736
|
[x: string]: unknown;
|
|
6994
7737
|
};
|
|
@@ -7028,6 +7771,14 @@ declare const _default: {
|
|
|
7028
7771
|
type: import("vue").PropType<boolean>;
|
|
7029
7772
|
default: boolean;
|
|
7030
7773
|
};
|
|
7774
|
+
loadingRowCount: {
|
|
7775
|
+
type: import("vue").PropType<number>;
|
|
7776
|
+
default: number;
|
|
7777
|
+
};
|
|
7778
|
+
emptyStateTitle: {
|
|
7779
|
+
type: import("vue").PropType<string>;
|
|
7780
|
+
default: string;
|
|
7781
|
+
};
|
|
7031
7782
|
isSticky: {
|
|
7032
7783
|
type: import("vue").PropType<boolean>;
|
|
7033
7784
|
default: boolean;
|
|
@@ -7044,10 +7795,6 @@ declare const _default: {
|
|
|
7044
7795
|
type: import("vue").PropType<boolean>;
|
|
7045
7796
|
default: boolean;
|
|
7046
7797
|
};
|
|
7047
|
-
emptyStateTitle: {
|
|
7048
|
-
type: import("vue").PropType<string>;
|
|
7049
|
-
default: string;
|
|
7050
|
-
};
|
|
7051
7798
|
emptyStateSubtitle: {
|
|
7052
7799
|
type: import("vue").PropType<string>;
|
|
7053
7800
|
default: string;
|
|
@@ -7064,10 +7811,6 @@ declare const _default: {
|
|
|
7064
7811
|
type: import("vue").PropType<number | ((index: number) => number)>;
|
|
7065
7812
|
default: number;
|
|
7066
7813
|
};
|
|
7067
|
-
loadingRowCount: {
|
|
7068
|
-
type: import("vue").PropType<number>;
|
|
7069
|
-
default: number;
|
|
7070
|
-
};
|
|
7071
7814
|
defaultScrollPosition: {
|
|
7072
7815
|
type: import("vue").PropType<number>;
|
|
7073
7816
|
default: any;
|
|
@@ -7095,15 +7838,15 @@ declare const _default: {
|
|
|
7095
7838
|
}, string, {
|
|
7096
7839
|
testId: string;
|
|
7097
7840
|
isLoading: boolean;
|
|
7841
|
+
loadingRowCount: number;
|
|
7842
|
+
emptyStateTitle: string;
|
|
7098
7843
|
isSticky: boolean;
|
|
7099
7844
|
sections: import("./components/table/common/Table.types").Section[];
|
|
7100
7845
|
isStickyHeader: boolean;
|
|
7101
|
-
emptyStateTitle: string;
|
|
7102
7846
|
emptyStateSubtitle: string;
|
|
7103
7847
|
isInfiniteScroll: boolean;
|
|
7104
7848
|
infiniteScrollThreshold: number;
|
|
7105
7849
|
rowHeight: number | ((index: number) => number);
|
|
7106
|
-
loadingRowCount: number;
|
|
7107
7850
|
defaultScrollPosition: number;
|
|
7108
7851
|
}, {}, string> & {
|
|
7109
7852
|
beforeCreate?: (() => void) | (() => void)[];
|
|
@@ -7146,6 +7889,14 @@ declare const _default: {
|
|
|
7146
7889
|
type: import("vue").PropType<boolean>;
|
|
7147
7890
|
default: boolean;
|
|
7148
7891
|
};
|
|
7892
|
+
loadingRowCount: {
|
|
7893
|
+
type: import("vue").PropType<number>;
|
|
7894
|
+
default: number;
|
|
7895
|
+
};
|
|
7896
|
+
emptyStateTitle: {
|
|
7897
|
+
type: import("vue").PropType<string>;
|
|
7898
|
+
default: string;
|
|
7899
|
+
};
|
|
7149
7900
|
isSticky: {
|
|
7150
7901
|
type: import("vue").PropType<boolean>;
|
|
7151
7902
|
default: boolean;
|
|
@@ -7162,10 +7913,6 @@ declare const _default: {
|
|
|
7162
7913
|
type: import("vue").PropType<boolean>;
|
|
7163
7914
|
default: boolean;
|
|
7164
7915
|
};
|
|
7165
|
-
emptyStateTitle: {
|
|
7166
|
-
type: import("vue").PropType<string>;
|
|
7167
|
-
default: string;
|
|
7168
|
-
};
|
|
7169
7916
|
emptyStateSubtitle: {
|
|
7170
7917
|
type: import("vue").PropType<string>;
|
|
7171
7918
|
default: string;
|
|
@@ -7182,10 +7929,6 @@ declare const _default: {
|
|
|
7182
7929
|
type: import("vue").PropType<number | ((index: number) => number)>;
|
|
7183
7930
|
default: number;
|
|
7184
7931
|
};
|
|
7185
|
-
loadingRowCount: {
|
|
7186
|
-
type: import("vue").PropType<number>;
|
|
7187
|
-
default: number;
|
|
7188
|
-
};
|
|
7189
7932
|
defaultScrollPosition: {
|
|
7190
7933
|
type: import("vue").PropType<number>;
|
|
7191
7934
|
default: any;
|
|
@@ -7225,6 +7968,14 @@ declare const _default: {
|
|
|
7225
7968
|
type: import("vue").PropType<boolean>;
|
|
7226
7969
|
default: boolean;
|
|
7227
7970
|
};
|
|
7971
|
+
loadingRowCount: {
|
|
7972
|
+
type: import("vue").PropType<number>;
|
|
7973
|
+
default: number;
|
|
7974
|
+
};
|
|
7975
|
+
emptyStateTitle: {
|
|
7976
|
+
type: import("vue").PropType<string>;
|
|
7977
|
+
default: string;
|
|
7978
|
+
};
|
|
7228
7979
|
isSticky: {
|
|
7229
7980
|
type: import("vue").PropType<boolean>;
|
|
7230
7981
|
default: boolean;
|
|
@@ -7241,10 +7992,6 @@ declare const _default: {
|
|
|
7241
7992
|
type: import("vue").PropType<boolean>;
|
|
7242
7993
|
default: boolean;
|
|
7243
7994
|
};
|
|
7244
|
-
emptyStateTitle: {
|
|
7245
|
-
type: import("vue").PropType<string>;
|
|
7246
|
-
default: string;
|
|
7247
|
-
};
|
|
7248
7995
|
emptyStateSubtitle: {
|
|
7249
7996
|
type: import("vue").PropType<string>;
|
|
7250
7997
|
default: string;
|
|
@@ -7261,10 +8008,6 @@ declare const _default: {
|
|
|
7261
8008
|
type: import("vue").PropType<number | ((index: number) => number)>;
|
|
7262
8009
|
default: number;
|
|
7263
8010
|
};
|
|
7264
|
-
loadingRowCount: {
|
|
7265
|
-
type: import("vue").PropType<number>;
|
|
7266
|
-
default: number;
|
|
7267
|
-
};
|
|
7268
8011
|
defaultScrollPosition: {
|
|
7269
8012
|
type: import("vue").PropType<number>;
|
|
7270
8013
|
default: any;
|
|
@@ -7292,15 +8035,15 @@ declare const _default: {
|
|
|
7292
8035
|
}, string, {
|
|
7293
8036
|
testId: string;
|
|
7294
8037
|
isLoading: boolean;
|
|
8038
|
+
loadingRowCount: number;
|
|
8039
|
+
emptyStateTitle: string;
|
|
7295
8040
|
isSticky: boolean;
|
|
7296
8041
|
sections: import("./components/table/common/Table.types").Section[];
|
|
7297
8042
|
isStickyHeader: boolean;
|
|
7298
|
-
emptyStateTitle: string;
|
|
7299
8043
|
emptyStateSubtitle: string;
|
|
7300
8044
|
isInfiniteScroll: boolean;
|
|
7301
8045
|
infiniteScrollThreshold: number;
|
|
7302
8046
|
rowHeight: number | ((index: number) => number);
|
|
7303
|
-
loadingRowCount: number;
|
|
7304
8047
|
defaultScrollPosition: number;
|
|
7305
8048
|
}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
7306
8049
|
$slots: Partial<Record<`section-${string}`, (_: {}) => any>> & Partial<Record<`header-${string}`, (_: {
|
|
@@ -7331,15 +8074,15 @@ declare const _default: {
|
|
|
7331
8074
|
$props: Partial<{
|
|
7332
8075
|
testId: string;
|
|
7333
8076
|
isLoading: boolean;
|
|
8077
|
+
loadingRowCount: number;
|
|
8078
|
+
emptyStateTitle: string;
|
|
7334
8079
|
isSticky: boolean;
|
|
7335
8080
|
sections: import("./components/table/common/Table.types").Section[];
|
|
7336
8081
|
isStickyHeader: boolean;
|
|
7337
|
-
emptyStateTitle: string;
|
|
7338
8082
|
emptyStateSubtitle: string;
|
|
7339
8083
|
isInfiniteScroll: boolean;
|
|
7340
8084
|
infiniteScrollThreshold: number;
|
|
7341
8085
|
rowHeight: number | ((index: number) => number);
|
|
7342
|
-
loadingRowCount: number;
|
|
7343
8086
|
defaultScrollPosition: number;
|
|
7344
8087
|
}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
7345
8088
|
sort: {
|
|
@@ -7362,6 +8105,14 @@ declare const _default: {
|
|
|
7362
8105
|
type: import("vue").PropType<boolean>;
|
|
7363
8106
|
default: boolean;
|
|
7364
8107
|
};
|
|
8108
|
+
loadingRowCount: {
|
|
8109
|
+
type: import("vue").PropType<number>;
|
|
8110
|
+
default: number;
|
|
8111
|
+
};
|
|
8112
|
+
emptyStateTitle: {
|
|
8113
|
+
type: import("vue").PropType<string>;
|
|
8114
|
+
default: string;
|
|
8115
|
+
};
|
|
7365
8116
|
isSticky: {
|
|
7366
8117
|
type: import("vue").PropType<boolean>;
|
|
7367
8118
|
default: boolean;
|
|
@@ -7378,10 +8129,6 @@ declare const _default: {
|
|
|
7378
8129
|
type: import("vue").PropType<boolean>;
|
|
7379
8130
|
default: boolean;
|
|
7380
8131
|
};
|
|
7381
|
-
emptyStateTitle: {
|
|
7382
|
-
type: import("vue").PropType<string>;
|
|
7383
|
-
default: string;
|
|
7384
|
-
};
|
|
7385
8132
|
emptyStateSubtitle: {
|
|
7386
8133
|
type: import("vue").PropType<string>;
|
|
7387
8134
|
default: string;
|
|
@@ -7398,10 +8145,6 @@ declare const _default: {
|
|
|
7398
8145
|
type: import("vue").PropType<number | ((index: number) => number)>;
|
|
7399
8146
|
default: number;
|
|
7400
8147
|
};
|
|
7401
|
-
loadingRowCount: {
|
|
7402
|
-
type: import("vue").PropType<number>;
|
|
7403
|
-
default: number;
|
|
7404
|
-
};
|
|
7405
8148
|
defaultScrollPosition: {
|
|
7406
8149
|
type: import("vue").PropType<number>;
|
|
7407
8150
|
default: any;
|
|
@@ -7416,7 +8159,7 @@ declare const _default: {
|
|
|
7416
8159
|
cellIndex: number;
|
|
7417
8160
|
}) => any;
|
|
7418
8161
|
onLoadMore?: () => any;
|
|
7419
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "testId" | "isLoading" | "
|
|
8162
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "testId" | "isLoading" | "loadingRowCount" | "emptyStateTitle" | "isSticky" | "sections" | "isStickyHeader" | "emptyStateSubtitle" | "isInfiniteScroll" | "infiniteScrollThreshold" | "rowHeight" | "defaultScrollPosition">;
|
|
7420
8163
|
$attrs: {
|
|
7421
8164
|
[x: string]: unknown;
|
|
7422
8165
|
};
|
|
@@ -7456,6 +8199,14 @@ declare const _default: {
|
|
|
7456
8199
|
type: import("vue").PropType<boolean>;
|
|
7457
8200
|
default: boolean;
|
|
7458
8201
|
};
|
|
8202
|
+
loadingRowCount: {
|
|
8203
|
+
type: import("vue").PropType<number>;
|
|
8204
|
+
default: number;
|
|
8205
|
+
};
|
|
8206
|
+
emptyStateTitle: {
|
|
8207
|
+
type: import("vue").PropType<string>;
|
|
8208
|
+
default: string;
|
|
8209
|
+
};
|
|
7459
8210
|
isSticky: {
|
|
7460
8211
|
type: import("vue").PropType<boolean>;
|
|
7461
8212
|
default: boolean;
|
|
@@ -7472,10 +8223,6 @@ declare const _default: {
|
|
|
7472
8223
|
type: import("vue").PropType<boolean>;
|
|
7473
8224
|
default: boolean;
|
|
7474
8225
|
};
|
|
7475
|
-
emptyStateTitle: {
|
|
7476
|
-
type: import("vue").PropType<string>;
|
|
7477
|
-
default: string;
|
|
7478
|
-
};
|
|
7479
8226
|
emptyStateSubtitle: {
|
|
7480
8227
|
type: import("vue").PropType<string>;
|
|
7481
8228
|
default: string;
|
|
@@ -7492,10 +8239,6 @@ declare const _default: {
|
|
|
7492
8239
|
type: import("vue").PropType<number | ((index: number) => number)>;
|
|
7493
8240
|
default: number;
|
|
7494
8241
|
};
|
|
7495
|
-
loadingRowCount: {
|
|
7496
|
-
type: import("vue").PropType<number>;
|
|
7497
|
-
default: number;
|
|
7498
|
-
};
|
|
7499
8242
|
defaultScrollPosition: {
|
|
7500
8243
|
type: import("vue").PropType<number>;
|
|
7501
8244
|
default: any;
|
|
@@ -7523,15 +8266,15 @@ declare const _default: {
|
|
|
7523
8266
|
}, string, {
|
|
7524
8267
|
testId: string;
|
|
7525
8268
|
isLoading: boolean;
|
|
8269
|
+
loadingRowCount: number;
|
|
8270
|
+
emptyStateTitle: string;
|
|
7526
8271
|
isSticky: boolean;
|
|
7527
8272
|
sections: import("./components/table/common/Table.types").Section[];
|
|
7528
8273
|
isStickyHeader: boolean;
|
|
7529
|
-
emptyStateTitle: string;
|
|
7530
8274
|
emptyStateSubtitle: string;
|
|
7531
8275
|
isInfiniteScroll: boolean;
|
|
7532
8276
|
infiniteScrollThreshold: number;
|
|
7533
8277
|
rowHeight: number | ((index: number) => number);
|
|
7534
|
-
loadingRowCount: number;
|
|
7535
8278
|
defaultScrollPosition: number;
|
|
7536
8279
|
}, {}, string> & {
|
|
7537
8280
|
beforeCreate?: (() => void) | (() => void)[];
|
|
@@ -7574,6 +8317,14 @@ declare const _default: {
|
|
|
7574
8317
|
type: import("vue").PropType<boolean>;
|
|
7575
8318
|
default: boolean;
|
|
7576
8319
|
};
|
|
8320
|
+
loadingRowCount: {
|
|
8321
|
+
type: import("vue").PropType<number>;
|
|
8322
|
+
default: number;
|
|
8323
|
+
};
|
|
8324
|
+
emptyStateTitle: {
|
|
8325
|
+
type: import("vue").PropType<string>;
|
|
8326
|
+
default: string;
|
|
8327
|
+
};
|
|
7577
8328
|
isSticky: {
|
|
7578
8329
|
type: import("vue").PropType<boolean>;
|
|
7579
8330
|
default: boolean;
|
|
@@ -7590,10 +8341,6 @@ declare const _default: {
|
|
|
7590
8341
|
type: import("vue").PropType<boolean>;
|
|
7591
8342
|
default: boolean;
|
|
7592
8343
|
};
|
|
7593
|
-
emptyStateTitle: {
|
|
7594
|
-
type: import("vue").PropType<string>;
|
|
7595
|
-
default: string;
|
|
7596
|
-
};
|
|
7597
8344
|
emptyStateSubtitle: {
|
|
7598
8345
|
type: import("vue").PropType<string>;
|
|
7599
8346
|
default: string;
|
|
@@ -7610,10 +8357,6 @@ declare const _default: {
|
|
|
7610
8357
|
type: import("vue").PropType<number | ((index: number) => number)>;
|
|
7611
8358
|
default: number;
|
|
7612
8359
|
};
|
|
7613
|
-
loadingRowCount: {
|
|
7614
|
-
type: import("vue").PropType<number>;
|
|
7615
|
-
default: number;
|
|
7616
|
-
};
|
|
7617
8360
|
defaultScrollPosition: {
|
|
7618
8361
|
type: import("vue").PropType<number>;
|
|
7619
8362
|
default: any;
|
|
@@ -7653,6 +8396,14 @@ declare const _default: {
|
|
|
7653
8396
|
type: import("vue").PropType<boolean>;
|
|
7654
8397
|
default: boolean;
|
|
7655
8398
|
};
|
|
8399
|
+
loadingRowCount: {
|
|
8400
|
+
type: import("vue").PropType<number>;
|
|
8401
|
+
default: number;
|
|
8402
|
+
};
|
|
8403
|
+
emptyStateTitle: {
|
|
8404
|
+
type: import("vue").PropType<string>;
|
|
8405
|
+
default: string;
|
|
8406
|
+
};
|
|
7656
8407
|
isSticky: {
|
|
7657
8408
|
type: import("vue").PropType<boolean>;
|
|
7658
8409
|
default: boolean;
|
|
@@ -7669,10 +8420,6 @@ declare const _default: {
|
|
|
7669
8420
|
type: import("vue").PropType<boolean>;
|
|
7670
8421
|
default: boolean;
|
|
7671
8422
|
};
|
|
7672
|
-
emptyStateTitle: {
|
|
7673
|
-
type: import("vue").PropType<string>;
|
|
7674
|
-
default: string;
|
|
7675
|
-
};
|
|
7676
8423
|
emptyStateSubtitle: {
|
|
7677
8424
|
type: import("vue").PropType<string>;
|
|
7678
8425
|
default: string;
|
|
@@ -7689,10 +8436,6 @@ declare const _default: {
|
|
|
7689
8436
|
type: import("vue").PropType<number | ((index: number) => number)>;
|
|
7690
8437
|
default: number;
|
|
7691
8438
|
};
|
|
7692
|
-
loadingRowCount: {
|
|
7693
|
-
type: import("vue").PropType<number>;
|
|
7694
|
-
default: number;
|
|
7695
|
-
};
|
|
7696
8439
|
defaultScrollPosition: {
|
|
7697
8440
|
type: import("vue").PropType<number>;
|
|
7698
8441
|
default: any;
|
|
@@ -7720,15 +8463,15 @@ declare const _default: {
|
|
|
7720
8463
|
}, string, {
|
|
7721
8464
|
testId: string;
|
|
7722
8465
|
isLoading: boolean;
|
|
8466
|
+
loadingRowCount: number;
|
|
8467
|
+
emptyStateTitle: string;
|
|
7723
8468
|
isSticky: boolean;
|
|
7724
8469
|
sections: import("./components/table/common/Table.types").Section[];
|
|
7725
8470
|
isStickyHeader: boolean;
|
|
7726
|
-
emptyStateTitle: string;
|
|
7727
8471
|
emptyStateSubtitle: string;
|
|
7728
8472
|
isInfiniteScroll: boolean;
|
|
7729
8473
|
infiniteScrollThreshold: number;
|
|
7730
8474
|
rowHeight: number | ((index: number) => number);
|
|
7731
|
-
loadingRowCount: number;
|
|
7732
8475
|
defaultScrollPosition: number;
|
|
7733
8476
|
}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
7734
8477
|
$slots: Partial<Record<`section-${string}`, (_: {}) => any>> & Partial<Record<`header-${string}`, (_: {
|
|
@@ -14592,6 +15335,8 @@ declare const _default: {
|
|
|
14592
15335
|
optionEndIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
14593
15336
|
valueToCopy: string;
|
|
14594
15337
|
disabledOptionKey: string;
|
|
15338
|
+
optionTwoLinesVariant: "horizontal" | "vertical";
|
|
15339
|
+
optionTwoLinesKey: string;
|
|
14595
15340
|
fullWidth: boolean;
|
|
14596
15341
|
optionsListWidth: string;
|
|
14597
15342
|
statusType: "default" | "disabled" | "success" | "warning" | "error" | "archive";
|
|
@@ -14780,6 +15525,14 @@ declare const _default: {
|
|
|
14780
15525
|
type: import("vue").PropType<string>;
|
|
14781
15526
|
default: string;
|
|
14782
15527
|
};
|
|
15528
|
+
optionTwoLinesVariant: {
|
|
15529
|
+
type: import("vue").PropType<"horizontal" | "vertical">;
|
|
15530
|
+
default: any;
|
|
15531
|
+
};
|
|
15532
|
+
optionTwoLinesKey: {
|
|
15533
|
+
type: import("vue").PropType<string>;
|
|
15534
|
+
default: any;
|
|
15535
|
+
};
|
|
14783
15536
|
fullWidth: {
|
|
14784
15537
|
type: import("vue").PropType<boolean>;
|
|
14785
15538
|
default: boolean;
|
|
@@ -14809,7 +15562,7 @@ declare const _default: {
|
|
|
14809
15562
|
"onUpdate:isOpen"?: (value: unknown) => any;
|
|
14810
15563
|
onOpened?: () => any;
|
|
14811
15564
|
onClosed?: () => any;
|
|
14812
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "theme" | "disabled" | "size" | "flip" | "mandatory" | "testId" | "container" | "placement" | "distance" | "popperClass" | "selected" | "onClear" | "modelValue" | "placeholder" | "multi" | "showSelectAll" | "defaultOpen" | "keepOpen" | "autoSize" | "disableKeyboardEvents" | "isOnTop" | "skidding" | "triggerLabel" | "triggerHelperText" | "triggerFeedbackText" | "triggerFeedbackVariant" | "triggerFeedbackShowIcon" | "triggerShowAllSelectedText" | "predefinedTrigger" | "inlineSearch" | "inlineSearchPlaceholder" | "onSearch" | "noResultsText" | "searchAutoFocus" | "optionNameKey" | "optionIconKey" | "optionImageKey" | "optionIconType" | "optionEndIconKey" | "optionEndIconType" | "valueToCopy" | "disabledOptionKey" | "fullWidth" | "optionsListWidth" | "statusType" | "disableVirtualScroll" | "overrideOptionCountCalculation">;
|
|
15565
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "theme" | "disabled" | "size" | "flip" | "mandatory" | "testId" | "container" | "placement" | "distance" | "popperClass" | "selected" | "onClear" | "modelValue" | "placeholder" | "multi" | "showSelectAll" | "defaultOpen" | "keepOpen" | "autoSize" | "disableKeyboardEvents" | "isOnTop" | "skidding" | "triggerLabel" | "triggerHelperText" | "triggerFeedbackText" | "triggerFeedbackVariant" | "triggerFeedbackShowIcon" | "triggerShowAllSelectedText" | "predefinedTrigger" | "inlineSearch" | "inlineSearchPlaceholder" | "onSearch" | "noResultsText" | "searchAutoFocus" | "optionNameKey" | "optionIconKey" | "optionImageKey" | "optionIconType" | "optionEndIconKey" | "optionEndIconType" | "valueToCopy" | "disabledOptionKey" | "optionTwoLinesVariant" | "optionTwoLinesKey" | "fullWidth" | "optionsListWidth" | "statusType" | "disableVirtualScroll" | "overrideOptionCountCalculation">;
|
|
14813
15566
|
$attrs: {
|
|
14814
15567
|
[x: string]: unknown;
|
|
14815
15568
|
};
|
|
@@ -15006,6 +15759,14 @@ declare const _default: {
|
|
|
15006
15759
|
type: import("vue").PropType<string>;
|
|
15007
15760
|
default: string;
|
|
15008
15761
|
};
|
|
15762
|
+
optionTwoLinesVariant: {
|
|
15763
|
+
type: import("vue").PropType<"horizontal" | "vertical">;
|
|
15764
|
+
default: any;
|
|
15765
|
+
};
|
|
15766
|
+
optionTwoLinesKey: {
|
|
15767
|
+
type: import("vue").PropType<string>;
|
|
15768
|
+
default: any;
|
|
15769
|
+
};
|
|
15009
15770
|
fullWidth: {
|
|
15010
15771
|
type: import("vue").PropType<boolean>;
|
|
15011
15772
|
default: boolean;
|
|
@@ -15090,6 +15851,8 @@ declare const _default: {
|
|
|
15090
15851
|
optionEndIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
15091
15852
|
valueToCopy: string;
|
|
15092
15853
|
disabledOptionKey: string;
|
|
15854
|
+
optionTwoLinesVariant: "horizontal" | "vertical";
|
|
15855
|
+
optionTwoLinesKey: string;
|
|
15093
15856
|
fullWidth: boolean;
|
|
15094
15857
|
optionsListWidth: string;
|
|
15095
15858
|
statusType: "default" | "disabled" | "success" | "warning" | "error" | "archive";
|
|
@@ -15298,6 +16061,14 @@ declare const _default: {
|
|
|
15298
16061
|
type: import("vue").PropType<string>;
|
|
15299
16062
|
default: string;
|
|
15300
16063
|
};
|
|
16064
|
+
optionTwoLinesVariant: {
|
|
16065
|
+
type: import("vue").PropType<"horizontal" | "vertical">;
|
|
16066
|
+
default: any;
|
|
16067
|
+
};
|
|
16068
|
+
optionTwoLinesKey: {
|
|
16069
|
+
type: import("vue").PropType<string>;
|
|
16070
|
+
default: any;
|
|
16071
|
+
};
|
|
15301
16072
|
fullWidth: {
|
|
15302
16073
|
type: import("vue").PropType<boolean>;
|
|
15303
16074
|
default: boolean;
|
|
@@ -15517,6 +16288,14 @@ declare const _default: {
|
|
|
15517
16288
|
type: import("vue").PropType<string>;
|
|
15518
16289
|
default: string;
|
|
15519
16290
|
};
|
|
16291
|
+
optionTwoLinesVariant: {
|
|
16292
|
+
type: import("vue").PropType<"horizontal" | "vertical">;
|
|
16293
|
+
default: any;
|
|
16294
|
+
};
|
|
16295
|
+
optionTwoLinesKey: {
|
|
16296
|
+
type: import("vue").PropType<string>;
|
|
16297
|
+
default: any;
|
|
16298
|
+
};
|
|
15520
16299
|
fullWidth: {
|
|
15521
16300
|
type: import("vue").PropType<boolean>;
|
|
15522
16301
|
default: boolean;
|
|
@@ -15601,6 +16380,8 @@ declare const _default: {
|
|
|
15601
16380
|
optionEndIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
15602
16381
|
valueToCopy: string;
|
|
15603
16382
|
disabledOptionKey: string;
|
|
16383
|
+
optionTwoLinesVariant: "horizontal" | "vertical";
|
|
16384
|
+
optionTwoLinesKey: string;
|
|
15604
16385
|
fullWidth: boolean;
|
|
15605
16386
|
optionsListWidth: string;
|
|
15606
16387
|
statusType: "default" | "disabled" | "success" | "warning" | "error" | "archive";
|
|
@@ -17966,6 +18747,8 @@ declare const _default: {
|
|
|
17966
18747
|
disabled: boolean;
|
|
17967
18748
|
active: boolean;
|
|
17968
18749
|
endIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
18750
|
+
optionTwoLinesVariant: "horizontal" | "vertical";
|
|
18751
|
+
optionTwoLinesKey: string;
|
|
17969
18752
|
isIndeterminate: boolean;
|
|
17970
18753
|
subtitle: string;
|
|
17971
18754
|
selectAllOption: boolean;
|
|
@@ -17992,6 +18775,14 @@ declare const _default: {
|
|
|
17992
18775
|
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
17993
18776
|
default: string;
|
|
17994
18777
|
};
|
|
18778
|
+
optionTwoLinesVariant: {
|
|
18779
|
+
type: import("vue").PropType<"horizontal" | "vertical">;
|
|
18780
|
+
default: any;
|
|
18781
|
+
};
|
|
18782
|
+
optionTwoLinesKey: {
|
|
18783
|
+
type: import("vue").PropType<string>;
|
|
18784
|
+
default: any;
|
|
18785
|
+
};
|
|
17995
18786
|
isIndeterminate: {
|
|
17996
18787
|
type: import("vue").PropType<boolean>;
|
|
17997
18788
|
default: boolean;
|
|
@@ -18031,7 +18822,7 @@ declare const _default: {
|
|
|
18031
18822
|
selectedProp: {
|
|
18032
18823
|
type: import("vue").PropType<boolean>;
|
|
18033
18824
|
};
|
|
18034
|
-
}>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "option" | "disabled" | "active" | "endIconType" | "isIndeterminate" | "subtitle" | "selectAllOption" | "nameKey" | "imageKey" | "iconKey" | "iconType" | "endIconKey" | "toolTipPlacement">;
|
|
18825
|
+
}>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "option" | "disabled" | "active" | "endIconType" | "optionTwoLinesVariant" | "optionTwoLinesKey" | "isIndeterminate" | "subtitle" | "selectAllOption" | "nameKey" | "imageKey" | "iconKey" | "iconType" | "endIconKey" | "toolTipPlacement">;
|
|
18035
18826
|
$attrs: {
|
|
18036
18827
|
[x: string]: unknown;
|
|
18037
18828
|
};
|
|
@@ -18062,6 +18853,14 @@ declare const _default: {
|
|
|
18062
18853
|
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
18063
18854
|
default: string;
|
|
18064
18855
|
};
|
|
18856
|
+
optionTwoLinesVariant: {
|
|
18857
|
+
type: import("vue").PropType<"horizontal" | "vertical">;
|
|
18858
|
+
default: any;
|
|
18859
|
+
};
|
|
18860
|
+
optionTwoLinesKey: {
|
|
18861
|
+
type: import("vue").PropType<string>;
|
|
18862
|
+
default: any;
|
|
18863
|
+
};
|
|
18065
18864
|
isIndeterminate: {
|
|
18066
18865
|
type: import("vue").PropType<boolean>;
|
|
18067
18866
|
default: boolean;
|
|
@@ -18106,6 +18905,8 @@ declare const _default: {
|
|
|
18106
18905
|
disabled: boolean;
|
|
18107
18906
|
active: boolean;
|
|
18108
18907
|
endIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
18908
|
+
optionTwoLinesVariant: "horizontal" | "vertical";
|
|
18909
|
+
optionTwoLinesKey: string;
|
|
18109
18910
|
isIndeterminate: boolean;
|
|
18110
18911
|
subtitle: string;
|
|
18111
18912
|
selectAllOption: boolean;
|
|
@@ -18152,6 +18953,14 @@ declare const _default: {
|
|
|
18152
18953
|
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
18153
18954
|
default: string;
|
|
18154
18955
|
};
|
|
18956
|
+
optionTwoLinesVariant: {
|
|
18957
|
+
type: import("vue").PropType<"horizontal" | "vertical">;
|
|
18958
|
+
default: any;
|
|
18959
|
+
};
|
|
18960
|
+
optionTwoLinesKey: {
|
|
18961
|
+
type: import("vue").PropType<string>;
|
|
18962
|
+
default: any;
|
|
18963
|
+
};
|
|
18155
18964
|
isIndeterminate: {
|
|
18156
18965
|
type: import("vue").PropType<boolean>;
|
|
18157
18966
|
default: boolean;
|
|
@@ -18212,6 +19021,14 @@ declare const _default: {
|
|
|
18212
19021
|
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
18213
19022
|
default: string;
|
|
18214
19023
|
};
|
|
19024
|
+
optionTwoLinesVariant: {
|
|
19025
|
+
type: import("vue").PropType<"horizontal" | "vertical">;
|
|
19026
|
+
default: any;
|
|
19027
|
+
};
|
|
19028
|
+
optionTwoLinesKey: {
|
|
19029
|
+
type: import("vue").PropType<string>;
|
|
19030
|
+
default: any;
|
|
19031
|
+
};
|
|
18215
19032
|
isIndeterminate: {
|
|
18216
19033
|
type: import("vue").PropType<boolean>;
|
|
18217
19034
|
default: boolean;
|
|
@@ -18256,6 +19073,8 @@ declare const _default: {
|
|
|
18256
19073
|
disabled: boolean;
|
|
18257
19074
|
active: boolean;
|
|
18258
19075
|
endIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
19076
|
+
optionTwoLinesVariant: "horizontal" | "vertical";
|
|
19077
|
+
optionTwoLinesKey: string;
|
|
18259
19078
|
isIndeterminate: boolean;
|
|
18260
19079
|
subtitle: string;
|
|
18261
19080
|
selectAllOption: boolean;
|
|
@@ -18430,6 +19249,8 @@ declare const _default: {
|
|
|
18430
19249
|
optionEndIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
18431
19250
|
valueToCopy: string;
|
|
18432
19251
|
disabledOptionKey: string;
|
|
19252
|
+
optionTwoLinesVariant: "horizontal" | "vertical";
|
|
19253
|
+
optionTwoLinesKey: string;
|
|
18433
19254
|
fullWidth: boolean;
|
|
18434
19255
|
optionsListWidth: string;
|
|
18435
19256
|
statusType: "default" | "disabled" | "success" | "warning" | "error" | "archive";
|
|
@@ -18618,6 +19439,14 @@ declare const _default: {
|
|
|
18618
19439
|
type: import("vue").PropType<string>;
|
|
18619
19440
|
default: string;
|
|
18620
19441
|
};
|
|
19442
|
+
optionTwoLinesVariant: {
|
|
19443
|
+
type: import("vue").PropType<"horizontal" | "vertical">;
|
|
19444
|
+
default: any;
|
|
19445
|
+
};
|
|
19446
|
+
optionTwoLinesKey: {
|
|
19447
|
+
type: import("vue").PropType<string>;
|
|
19448
|
+
default: any;
|
|
19449
|
+
};
|
|
18621
19450
|
fullWidth: {
|
|
18622
19451
|
type: import("vue").PropType<boolean>;
|
|
18623
19452
|
default: boolean;
|
|
@@ -18647,7 +19476,7 @@ declare const _default: {
|
|
|
18647
19476
|
"onUpdate:isOpen"?: (value: unknown) => any;
|
|
18648
19477
|
onOpened?: () => any;
|
|
18649
19478
|
onClosed?: () => any;
|
|
18650
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "theme" | "disabled" | "size" | "flip" | "mandatory" | "testId" | "container" | "placement" | "distance" | "popperClass" | "selected" | "onClear" | "modelValue" | "placeholder" | "multi" | "showSelectAll" | "defaultOpen" | "keepOpen" | "autoSize" | "disableKeyboardEvents" | "isOnTop" | "skidding" | "triggerLabel" | "triggerHelperText" | "triggerFeedbackText" | "triggerFeedbackVariant" | "triggerFeedbackShowIcon" | "triggerShowAllSelectedText" | "predefinedTrigger" | "inlineSearch" | "inlineSearchPlaceholder" | "onSearch" | "noResultsText" | "searchAutoFocus" | "optionNameKey" | "optionIconKey" | "optionImageKey" | "optionIconType" | "optionEndIconKey" | "optionEndIconType" | "valueToCopy" | "disabledOptionKey" | "fullWidth" | "optionsListWidth" | "statusType" | "disableVirtualScroll" | "overrideOptionCountCalculation">;
|
|
19479
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "theme" | "disabled" | "size" | "flip" | "mandatory" | "testId" | "container" | "placement" | "distance" | "popperClass" | "selected" | "onClear" | "modelValue" | "placeholder" | "multi" | "showSelectAll" | "defaultOpen" | "keepOpen" | "autoSize" | "disableKeyboardEvents" | "isOnTop" | "skidding" | "triggerLabel" | "triggerHelperText" | "triggerFeedbackText" | "triggerFeedbackVariant" | "triggerFeedbackShowIcon" | "triggerShowAllSelectedText" | "predefinedTrigger" | "inlineSearch" | "inlineSearchPlaceholder" | "onSearch" | "noResultsText" | "searchAutoFocus" | "optionNameKey" | "optionIconKey" | "optionImageKey" | "optionIconType" | "optionEndIconKey" | "optionEndIconType" | "valueToCopy" | "disabledOptionKey" | "optionTwoLinesVariant" | "optionTwoLinesKey" | "fullWidth" | "optionsListWidth" | "statusType" | "disableVirtualScroll" | "overrideOptionCountCalculation">;
|
|
18651
19480
|
$attrs: {
|
|
18652
19481
|
[x: string]: unknown;
|
|
18653
19482
|
};
|
|
@@ -18844,6 +19673,14 @@ declare const _default: {
|
|
|
18844
19673
|
type: import("vue").PropType<string>;
|
|
18845
19674
|
default: string;
|
|
18846
19675
|
};
|
|
19676
|
+
optionTwoLinesVariant: {
|
|
19677
|
+
type: import("vue").PropType<"horizontal" | "vertical">;
|
|
19678
|
+
default: any;
|
|
19679
|
+
};
|
|
19680
|
+
optionTwoLinesKey: {
|
|
19681
|
+
type: import("vue").PropType<string>;
|
|
19682
|
+
default: any;
|
|
19683
|
+
};
|
|
18847
19684
|
fullWidth: {
|
|
18848
19685
|
type: import("vue").PropType<boolean>;
|
|
18849
19686
|
default: boolean;
|
|
@@ -18928,6 +19765,8 @@ declare const _default: {
|
|
|
18928
19765
|
optionEndIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
18929
19766
|
valueToCopy: string;
|
|
18930
19767
|
disabledOptionKey: string;
|
|
19768
|
+
optionTwoLinesVariant: "horizontal" | "vertical";
|
|
19769
|
+
optionTwoLinesKey: string;
|
|
18931
19770
|
fullWidth: boolean;
|
|
18932
19771
|
optionsListWidth: string;
|
|
18933
19772
|
statusType: "default" | "disabled" | "success" | "warning" | "error" | "archive";
|
|
@@ -19136,6 +19975,14 @@ declare const _default: {
|
|
|
19136
19975
|
type: import("vue").PropType<string>;
|
|
19137
19976
|
default: string;
|
|
19138
19977
|
};
|
|
19978
|
+
optionTwoLinesVariant: {
|
|
19979
|
+
type: import("vue").PropType<"horizontal" | "vertical">;
|
|
19980
|
+
default: any;
|
|
19981
|
+
};
|
|
19982
|
+
optionTwoLinesKey: {
|
|
19983
|
+
type: import("vue").PropType<string>;
|
|
19984
|
+
default: any;
|
|
19985
|
+
};
|
|
19139
19986
|
fullWidth: {
|
|
19140
19987
|
type: import("vue").PropType<boolean>;
|
|
19141
19988
|
default: boolean;
|
|
@@ -19355,6 +20202,14 @@ declare const _default: {
|
|
|
19355
20202
|
type: import("vue").PropType<string>;
|
|
19356
20203
|
default: string;
|
|
19357
20204
|
};
|
|
20205
|
+
optionTwoLinesVariant: {
|
|
20206
|
+
type: import("vue").PropType<"horizontal" | "vertical">;
|
|
20207
|
+
default: any;
|
|
20208
|
+
};
|
|
20209
|
+
optionTwoLinesKey: {
|
|
20210
|
+
type: import("vue").PropType<string>;
|
|
20211
|
+
default: any;
|
|
20212
|
+
};
|
|
19358
20213
|
fullWidth: {
|
|
19359
20214
|
type: import("vue").PropType<boolean>;
|
|
19360
20215
|
default: boolean;
|
|
@@ -19439,6 +20294,8 @@ declare const _default: {
|
|
|
19439
20294
|
optionEndIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
19440
20295
|
valueToCopy: string;
|
|
19441
20296
|
disabledOptionKey: string;
|
|
20297
|
+
optionTwoLinesVariant: "horizontal" | "vertical";
|
|
20298
|
+
optionTwoLinesKey: string;
|
|
19442
20299
|
fullWidth: boolean;
|
|
19443
20300
|
optionsListWidth: string;
|
|
19444
20301
|
statusType: "default" | "disabled" | "success" | "warning" | "error" | "archive";
|
|
@@ -19720,6 +20577,8 @@ declare const _default: {
|
|
|
19720
20577
|
disabled: boolean;
|
|
19721
20578
|
active: boolean;
|
|
19722
20579
|
endIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
20580
|
+
optionTwoLinesVariant: "horizontal" | "vertical";
|
|
20581
|
+
optionTwoLinesKey: string;
|
|
19723
20582
|
isIndeterminate: boolean;
|
|
19724
20583
|
subtitle: string;
|
|
19725
20584
|
selectAllOption: boolean;
|
|
@@ -19746,6 +20605,14 @@ declare const _default: {
|
|
|
19746
20605
|
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
19747
20606
|
default: string;
|
|
19748
20607
|
};
|
|
20608
|
+
optionTwoLinesVariant: {
|
|
20609
|
+
type: import("vue").PropType<"horizontal" | "vertical">;
|
|
20610
|
+
default: any;
|
|
20611
|
+
};
|
|
20612
|
+
optionTwoLinesKey: {
|
|
20613
|
+
type: import("vue").PropType<string>;
|
|
20614
|
+
default: any;
|
|
20615
|
+
};
|
|
19749
20616
|
isIndeterminate: {
|
|
19750
20617
|
type: import("vue").PropType<boolean>;
|
|
19751
20618
|
default: boolean;
|
|
@@ -19785,7 +20652,7 @@ declare const _default: {
|
|
|
19785
20652
|
selectedProp: {
|
|
19786
20653
|
type: import("vue").PropType<boolean>;
|
|
19787
20654
|
};
|
|
19788
|
-
}>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "option" | "disabled" | "active" | "endIconType" | "isIndeterminate" | "subtitle" | "selectAllOption" | "nameKey" | "imageKey" | "iconKey" | "iconType" | "endIconKey" | "toolTipPlacement">;
|
|
20655
|
+
}>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "option" | "disabled" | "active" | "endIconType" | "optionTwoLinesVariant" | "optionTwoLinesKey" | "isIndeterminate" | "subtitle" | "selectAllOption" | "nameKey" | "imageKey" | "iconKey" | "iconType" | "endIconKey" | "toolTipPlacement">;
|
|
19789
20656
|
$attrs: {
|
|
19790
20657
|
[x: string]: unknown;
|
|
19791
20658
|
};
|
|
@@ -19816,6 +20683,14 @@ declare const _default: {
|
|
|
19816
20683
|
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
19817
20684
|
default: string;
|
|
19818
20685
|
};
|
|
20686
|
+
optionTwoLinesVariant: {
|
|
20687
|
+
type: import("vue").PropType<"horizontal" | "vertical">;
|
|
20688
|
+
default: any;
|
|
20689
|
+
};
|
|
20690
|
+
optionTwoLinesKey: {
|
|
20691
|
+
type: import("vue").PropType<string>;
|
|
20692
|
+
default: any;
|
|
20693
|
+
};
|
|
19819
20694
|
isIndeterminate: {
|
|
19820
20695
|
type: import("vue").PropType<boolean>;
|
|
19821
20696
|
default: boolean;
|
|
@@ -19860,6 +20735,8 @@ declare const _default: {
|
|
|
19860
20735
|
disabled: boolean;
|
|
19861
20736
|
active: boolean;
|
|
19862
20737
|
endIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
20738
|
+
optionTwoLinesVariant: "horizontal" | "vertical";
|
|
20739
|
+
optionTwoLinesKey: string;
|
|
19863
20740
|
isIndeterminate: boolean;
|
|
19864
20741
|
subtitle: string;
|
|
19865
20742
|
selectAllOption: boolean;
|
|
@@ -19906,6 +20783,14 @@ declare const _default: {
|
|
|
19906
20783
|
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
19907
20784
|
default: string;
|
|
19908
20785
|
};
|
|
20786
|
+
optionTwoLinesVariant: {
|
|
20787
|
+
type: import("vue").PropType<"horizontal" | "vertical">;
|
|
20788
|
+
default: any;
|
|
20789
|
+
};
|
|
20790
|
+
optionTwoLinesKey: {
|
|
20791
|
+
type: import("vue").PropType<string>;
|
|
20792
|
+
default: any;
|
|
20793
|
+
};
|
|
19909
20794
|
isIndeterminate: {
|
|
19910
20795
|
type: import("vue").PropType<boolean>;
|
|
19911
20796
|
default: boolean;
|
|
@@ -19966,6 +20851,14 @@ declare const _default: {
|
|
|
19966
20851
|
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
19967
20852
|
default: string;
|
|
19968
20853
|
};
|
|
20854
|
+
optionTwoLinesVariant: {
|
|
20855
|
+
type: import("vue").PropType<"horizontal" | "vertical">;
|
|
20856
|
+
default: any;
|
|
20857
|
+
};
|
|
20858
|
+
optionTwoLinesKey: {
|
|
20859
|
+
type: import("vue").PropType<string>;
|
|
20860
|
+
default: any;
|
|
20861
|
+
};
|
|
19969
20862
|
isIndeterminate: {
|
|
19970
20863
|
type: import("vue").PropType<boolean>;
|
|
19971
20864
|
default: boolean;
|
|
@@ -20010,6 +20903,8 @@ declare const _default: {
|
|
|
20010
20903
|
disabled: boolean;
|
|
20011
20904
|
active: boolean;
|
|
20012
20905
|
endIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
20906
|
+
optionTwoLinesVariant: "horizontal" | "vertical";
|
|
20907
|
+
optionTwoLinesKey: string;
|
|
20013
20908
|
isIndeterminate: boolean;
|
|
20014
20909
|
subtitle: string;
|
|
20015
20910
|
selectAllOption: boolean;
|