@knime/kds-components 0.28.10 → 0.29.1

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.
Files changed (44) hide show
  1. package/CHANGELOG.md +44 -0
  2. package/dist/index.css +419 -201
  3. package/dist/index.js +9964 -2063
  4. package/dist/index.js.map +1 -1
  5. package/dist/src/containers/FileExplorer/FileExplorerItem.vue.d.ts +1023 -0
  6. package/dist/src/containers/FileExplorer/FileExplorerItem.vue.d.ts.map +1 -0
  7. package/dist/src/containers/FileExplorer/FileExplorerItemBack.vue.d.ts +6 -0
  8. package/dist/src/containers/FileExplorer/FileExplorerItemBack.vue.d.ts.map +1 -0
  9. package/dist/src/containers/FileExplorer/FileExplorerItemBase.vue.d.ts +31 -0
  10. package/dist/src/containers/FileExplorer/FileExplorerItemBase.vue.d.ts.map +1 -0
  11. package/dist/src/containers/FileExplorer/KdsFileExplorer.vue.d.ts +1670 -0
  12. package/dist/src/containers/FileExplorer/KdsFileExplorer.vue.d.ts.map +1 -0
  13. package/dist/src/containers/FileExplorer/enums.d.ts +12 -0
  14. package/dist/src/containers/FileExplorer/enums.d.ts.map +1 -0
  15. package/dist/src/containers/FileExplorer/index.d.ts +4 -0
  16. package/dist/src/containers/FileExplorer/index.d.ts.map +1 -0
  17. package/dist/src/containers/FileExplorer/multiSelection/index.d.ts +3 -0
  18. package/dist/src/containers/FileExplorer/multiSelection/index.d.ts.map +1 -0
  19. package/dist/src/containers/FileExplorer/multiSelection/multiSelectionStateService.d.ts +67 -0
  20. package/dist/src/containers/FileExplorer/multiSelection/multiSelectionStateService.d.ts.map +1 -0
  21. package/dist/src/containers/FileExplorer/multiSelection/useFocusableMultiSelection.d.ts +19 -0
  22. package/dist/src/containers/FileExplorer/multiSelection/useFocusableMultiSelection.d.ts.map +1 -0
  23. package/dist/src/containers/FileExplorer/multiSelection/useMultiSelection.d.ts +16 -0
  24. package/dist/src/containers/FileExplorer/multiSelection/useMultiSelection.d.ts.map +1 -0
  25. package/dist/src/containers/FileExplorer/types.d.ts +86 -0
  26. package/dist/src/containers/FileExplorer/types.d.ts.map +1 -0
  27. package/dist/src/containers/FileExplorer/useItemDragging/index.d.ts +37 -0
  28. package/dist/src/containers/FileExplorer/useItemDragging/index.d.ts.map +1 -0
  29. package/dist/src/containers/FileExplorer/useKeyPressedUntilMouseClick/index.d.ts +2 -0
  30. package/dist/src/containers/FileExplorer/useKeyPressedUntilMouseClick/index.d.ts.map +1 -0
  31. package/dist/src/containers/FileExplorer/useNameValidator/index.d.ts +2 -0
  32. package/dist/src/containers/FileExplorer/useNameValidator/index.d.ts.map +1 -0
  33. package/dist/src/containers/FileExplorer/useNameValidator/useNameValidator.d.ts +13 -0
  34. package/dist/src/containers/FileExplorer/useNameValidator/useNameValidator.d.ts.map +1 -0
  35. package/dist/src/containers/FileExplorer/utils/dragGhostHelpers.d.ts +51 -0
  36. package/dist/src/containers/FileExplorer/utils/dragGhostHelpers.d.ts.map +1 -0
  37. package/dist/src/containers/FileExplorer/utils/filterSlotsForDynamicColumns.d.ts +3 -0
  38. package/dist/src/containers/FileExplorer/utils/filterSlotsForDynamicColumns.d.ts.map +1 -0
  39. package/dist/src/containers/FileExplorer/utils/popoverAnchorElement.d.ts +5 -0
  40. package/dist/src/containers/FileExplorer/utils/popoverAnchorElement.d.ts.map +1 -0
  41. package/dist/src/containers/index.d.ts +2 -0
  42. package/dist/src/containers/index.d.ts.map +1 -1
  43. package/dist/src/forms/inputs/DateInput/enums.d.ts +1 -1
  44. package/package.json +7 -4
@@ -0,0 +1,1670 @@
1
+ import { nextTick } from 'vue';
2
+ import { KdsFileExplorerItem, KdsFileExplorerProps } from './types';
3
+ /**
4
+ * Component that handles FileExplorer interactions.
5
+ */
6
+ type __VLS_Props = KdsFileExplorerProps;
7
+ type __VLS_PublicProps = {
8
+ "activeRenamedItemId"?: string | null;
9
+ } & __VLS_Props;
10
+ declare function __VLS_template(): {
11
+ attrs: Partial<{}>;
12
+ slots: Partial<Record<string, (_: {
13
+ item: KdsFileExplorerItem<Record<string, unknown>>;
14
+ isRenameActive: boolean;
15
+ isSelected: boolean;
16
+ }) => any>> & {
17
+ itemIcon?(_: {
18
+ item: KdsFileExplorerItem<Record<string, unknown>>;
19
+ }): any;
20
+ customDragPreview?(_: {}): any;
21
+ };
22
+ refs: {
23
+ itemBack: import('vue').CreateComponentPublicInstanceWithMixins<Readonly<{
24
+ isDragging: boolean;
25
+ }> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
26
+ P: {};
27
+ B: {};
28
+ D: {};
29
+ C: {};
30
+ M: {};
31
+ Defaults: {};
32
+ }, Readonly<{
33
+ isDragging: boolean;
34
+ }> & Readonly<{}>, {}, {}, {}, {}, {}> | null;
35
+ virtualItemRefs: (({
36
+ $: import('vue').ComponentInternalInstance;
37
+ $data: {};
38
+ $props: {
39
+ readonly blacklistedNames: Array<string>;
40
+ readonly item: KdsFileExplorerItem;
41
+ readonly isSelected: boolean;
42
+ readonly isDragging: boolean;
43
+ readonly isRenameActive: boolean;
44
+ readonly disabled: boolean;
45
+ readonly isDraggingEnabled?: boolean | undefined;
46
+ readonly hasOptionsMenu?: boolean | undefined;
47
+ readonly onClick?: ((nativeEvent: MouseEvent) => any) | undefined;
48
+ readonly onContextmenu?: ((nativeEvent: MouseEvent) => any) | undefined;
49
+ readonly onDblclick?: ((nativeEvent: MouseEvent) => any) | undefined;
50
+ readonly onDrag?: ((nativeEvent: DragEvent) => any) | undefined;
51
+ readonly onDragend?: ((nativeEvent: DragEvent) => any) | undefined;
52
+ readonly onDragenter?: ((nativeEvent: DragEvent) => any) | undefined;
53
+ readonly onDragleave?: ((nativeEvent: DragEvent) => any) | undefined;
54
+ readonly onDragover?: ((nativeEvent: DragEvent) => any) | undefined;
55
+ readonly onDragstart?: ((nativeEvent: DragEvent) => any) | undefined;
56
+ readonly onDrop?: ((nativeEvent: DragEvent) => any) | undefined;
57
+ readonly "onRename:submit"?: ((payload: {
58
+ itemId: string;
59
+ newName: string;
60
+ }) => any) | undefined;
61
+ readonly "onRename:clear"?: (() => any) | undefined;
62
+ } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
63
+ $attrs: import('vue').Attrs;
64
+ $refs: {
65
+ [x: string]: unknown;
66
+ } & {
67
+ baseItem: import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('vue').ExtractPropTypes<{
68
+ isSelected: {
69
+ type: BooleanConstructor;
70
+ required: true;
71
+ };
72
+ isDragging: {
73
+ type: BooleanConstructor;
74
+ required: true;
75
+ };
76
+ disabled: {
77
+ type: BooleanConstructor;
78
+ default: boolean;
79
+ };
80
+ }>> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {
81
+ disabled: boolean;
82
+ }, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
83
+ P: {};
84
+ B: {};
85
+ D: {};
86
+ C: {};
87
+ M: {};
88
+ Defaults: {};
89
+ }, Readonly<import('vue').ExtractPropTypes<{
90
+ isSelected: {
91
+ type: BooleanConstructor;
92
+ required: true;
93
+ };
94
+ isDragging: {
95
+ type: BooleanConstructor;
96
+ required: true;
97
+ };
98
+ disabled: {
99
+ type: BooleanConstructor;
100
+ default: boolean;
101
+ };
102
+ }>> & Readonly<{}>, {}, {}, {}, {}, {
103
+ disabled: boolean;
104
+ }> | null;
105
+ renameInputContainer: HTMLDivElement;
106
+ renameInput: import('vue').CreateComponentPublicInstanceWithMixins<Readonly<({
107
+ modelValue?: string;
108
+ } & {
109
+ description?: string;
110
+ } & {
111
+ label: string;
112
+ ariaLabel?: never;
113
+ } & {
114
+ id?: string;
115
+ } & {
116
+ error?: boolean | undefined;
117
+ subText?: string | undefined;
118
+ validating?: boolean | undefined;
119
+ preserveSubTextSpace?: boolean | undefined;
120
+ } & {
121
+ placeholder?: string;
122
+ disabled?: boolean;
123
+ autocomplete?: string;
124
+ } & {
125
+ suggestions?: string[];
126
+ suggestionsHeadline?: string;
127
+ }) | ({
128
+ modelValue?: string;
129
+ } & {
130
+ description?: string;
131
+ } & {
132
+ label?: never;
133
+ ariaLabel: string;
134
+ } & {
135
+ id?: string;
136
+ } & {
137
+ error?: boolean | undefined;
138
+ subText?: string | undefined;
139
+ validating?: boolean | undefined;
140
+ preserveSubTextSpace?: boolean | undefined;
141
+ } & {
142
+ placeholder?: string;
143
+ disabled?: boolean;
144
+ autocomplete?: string;
145
+ } & {
146
+ suggestions?: string[];
147
+ suggestionsHeadline?: string;
148
+ })> & Readonly<{
149
+ "onUpdate:modelValue"?: ((value: string) => any) | undefined;
150
+ }>, {
151
+ focus: (options?: FocusOptions) => void;
152
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
153
+ "update:modelValue": (value: string) => any;
154
+ }, import('vue').PublicProps, {}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {
155
+ baseInput: ({
156
+ $: import('vue').ComponentInternalInstance;
157
+ $data: {};
158
+ $props: {
159
+ readonly modelValue?: string | undefined;
160
+ readonly id?: string | undefined;
161
+ readonly type?: "text" | "email" | "password" | "number" | "tel" | "url" | "search" | undefined;
162
+ readonly min?: number | string | undefined;
163
+ readonly max?: number | string | undefined;
164
+ readonly ariaExpanded?: boolean | undefined;
165
+ readonly step?: number | undefined;
166
+ readonly placeholder?: string | undefined;
167
+ readonly disabled?: boolean | undefined;
168
+ readonly leadingIcon?: import('../..').KdsIconName | undefined;
169
+ readonly trailingIcon?: import('../..').KdsIconName | undefined;
170
+ readonly error?: boolean | undefined;
171
+ readonly autocomplete?: string | undefined;
172
+ readonly ariaLabel?: string | undefined;
173
+ readonly ariaLabelledby?: string | undefined;
174
+ readonly ariaDescribedby?: string | undefined;
175
+ readonly ariaInvalid?: boolean | undefined;
176
+ readonly role?: string | undefined;
177
+ readonly ariaValuenow?: number | undefined;
178
+ readonly ariaValuemin?: number | undefined;
179
+ readonly ariaValuemax?: number | undefined;
180
+ readonly ariaValuetext?: string | undefined;
181
+ readonly ariaActivedescendant?: string | undefined;
182
+ readonly ariaHaspopup?: "listbox" | "menu" | "dialog" | "grid" | "tree" | "true" | undefined;
183
+ readonly ariaControls?: string | undefined;
184
+ readonly ariaAutocomplete?: "none" | "inline" | "list" | "both" | undefined;
185
+ readonly unit?: string | undefined;
186
+ readonly inputmode?: "none" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | "search" | undefined;
187
+ readonly clearable?: boolean | undefined;
188
+ readonly pattern?: string | undefined;
189
+ readonly segments?: import('../../forms/inputs/useInputSegments.helpers').KdsInputSegmentsConfig | undefined;
190
+ readonly onInput?: ((event: Event) => any) | undefined;
191
+ readonly onClick?: ((event: MouseEvent) => any) | undefined;
192
+ readonly onBlur?: ((event: FocusEvent) => any) | undefined;
193
+ readonly onFocus?: ((event: FocusEvent) => any) | undefined;
194
+ readonly onKeydown?: ((event: KeyboardEvent) => any) | undefined;
195
+ readonly onPaste?: ((event: ClipboardEvent) => any) | undefined;
196
+ readonly "onUpdate:modelValue"?: ((value: string) => any) | undefined;
197
+ } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
198
+ $attrs: import('vue').Attrs;
199
+ $refs: {
200
+ [x: string]: unknown;
201
+ } & {
202
+ input: HTMLInputElement;
203
+ };
204
+ $slots: Readonly<{
205
+ [name: string]: import('vue').Slot<any> | undefined;
206
+ }>;
207
+ $root: import('vue').ComponentPublicInstance | null;
208
+ $parent: import('vue').ComponentPublicInstance | null;
209
+ $host: Element | null;
210
+ $emit: ((event: "input", event: Event) => void) & ((event: "click", event: MouseEvent) => void) & ((event: "blur", event: FocusEvent) => void) & ((event: "focus", event: FocusEvent) => void) & ((event: "keydown", event: KeyboardEvent) => void) & ((event: "paste", event: ClipboardEvent) => void) & ((event: "update:modelValue", value: string) => void);
211
+ $el: HTMLDivElement;
212
+ $options: import('vue').ComponentOptionsBase<Readonly<{
213
+ modelValue?: string;
214
+ } & {
215
+ id?: string;
216
+ type?: "text" | "email" | "password" | "number" | "tel" | "url" | "search";
217
+ min?: number | string;
218
+ max?: number | string;
219
+ ariaExpanded?: boolean;
220
+ step?: number;
221
+ placeholder?: string;
222
+ disabled?: boolean;
223
+ leadingIcon?: import('../..').KdsIconName;
224
+ trailingIcon?: import('../..').KdsIconName;
225
+ error?: boolean;
226
+ autocomplete?: string;
227
+ ariaLabel?: string;
228
+ ariaLabelledby?: string;
229
+ ariaDescribedby?: string;
230
+ ariaInvalid?: boolean;
231
+ role?: string;
232
+ ariaValuenow?: number;
233
+ ariaValuemin?: number;
234
+ ariaValuemax?: number;
235
+ ariaValuetext?: string;
236
+ ariaActivedescendant?: string;
237
+ ariaHaspopup?: "listbox" | "menu" | "dialog" | "grid" | "tree" | "true";
238
+ ariaControls?: string;
239
+ ariaAutocomplete?: "none" | "inline" | "list" | "both";
240
+ unit?: string;
241
+ inputmode?: "none" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | "search";
242
+ clearable?: boolean;
243
+ pattern?: string;
244
+ segments?: import('../../forms/inputs/useInputSegments.helpers').KdsInputSegmentsConfig;
245
+ }> & Readonly<{
246
+ onInput?: ((event: Event) => any) | undefined;
247
+ onClick?: ((event: MouseEvent) => any) | undefined;
248
+ onBlur?: ((event: FocusEvent) => any) | undefined;
249
+ onFocus?: ((event: FocusEvent) => any) | undefined;
250
+ onKeydown?: ((event: KeyboardEvent) => any) | undefined;
251
+ onPaste?: ((event: ClipboardEvent) => any) | undefined;
252
+ "onUpdate:modelValue"?: ((value: string) => any) | undefined;
253
+ }>, {
254
+ focus: (options?: FocusOptions) => void;
255
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
256
+ input: (event: Event) => any;
257
+ click: (event: MouseEvent) => any;
258
+ blur: (event: FocusEvent) => any;
259
+ focus: (event: FocusEvent) => any;
260
+ keydown: (event: KeyboardEvent) => any;
261
+ paste: (event: ClipboardEvent) => any;
262
+ "update:modelValue": (value: string) => any;
263
+ }, string, {}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
264
+ beforeCreate?: (() => void) | (() => void)[];
265
+ created?: (() => void) | (() => void)[];
266
+ beforeMount?: (() => void) | (() => void)[];
267
+ mounted?: (() => void) | (() => void)[];
268
+ beforeUpdate?: (() => void) | (() => void)[];
269
+ updated?: (() => void) | (() => void)[];
270
+ activated?: (() => void) | (() => void)[];
271
+ deactivated?: (() => void) | (() => void)[];
272
+ beforeDestroy?: (() => void) | (() => void)[];
273
+ beforeUnmount?: (() => void) | (() => void)[];
274
+ destroyed?: (() => void) | (() => void)[];
275
+ unmounted?: (() => void) | (() => void)[];
276
+ renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
277
+ renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
278
+ errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
279
+ };
280
+ $forceUpdate: () => void;
281
+ $nextTick: typeof nextTick;
282
+ $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (
283
+ /** KEYBOARD NAV */
284
+ ...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
285
+ } & Readonly<{}> & Omit<Readonly<{
286
+ modelValue?: string;
287
+ } & {
288
+ id?: string;
289
+ type?: "text" | "email" | "password" | "number" | "tel" | "url" | "search";
290
+ min?: number | string;
291
+ max?: number | string;
292
+ ariaExpanded?: boolean;
293
+ step?: number;
294
+ placeholder?: string;
295
+ disabled?: boolean;
296
+ leadingIcon?: import('../..').KdsIconName;
297
+ trailingIcon?: import('../..').KdsIconName;
298
+ error?: boolean;
299
+ autocomplete?: string;
300
+ ariaLabel?: string;
301
+ ariaLabelledby?: string;
302
+ ariaDescribedby?: string;
303
+ ariaInvalid?: boolean;
304
+ role?: string;
305
+ ariaValuenow?: number;
306
+ ariaValuemin?: number;
307
+ ariaValuemax?: number;
308
+ ariaValuetext?: string;
309
+ ariaActivedescendant?: string;
310
+ ariaHaspopup?: "listbox" | "menu" | "dialog" | "grid" | "tree" | "true";
311
+ ariaControls?: string;
312
+ ariaAutocomplete?: "none" | "inline" | "list" | "both";
313
+ unit?: string;
314
+ inputmode?: "none" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | "search";
315
+ clearable?: boolean;
316
+ pattern?: string;
317
+ segments?: import('../../forms/inputs/useInputSegments.helpers').KdsInputSegmentsConfig;
318
+ }> & Readonly<{
319
+ onInput?: ((event: Event) => any) | undefined;
320
+ onClick?: ((event: MouseEvent) => any) | undefined;
321
+ onBlur?: ((event: FocusEvent) => any) | undefined;
322
+ onFocus?: ((event: FocusEvent) => any) | undefined;
323
+ onKeydown?: ((event: KeyboardEvent) => any) | undefined;
324
+ onPaste?: ((event: ClipboardEvent) => any) | undefined;
325
+ "onUpdate:modelValue"?: ((value: string) => any) | undefined;
326
+ }>, "focus"> & {
327
+ focus: (options?: FocusOptions) => void;
328
+ } & {} & import('vue').ComponentCustomProperties & {} & {
329
+ $slots: {
330
+ leading?(_: {}): any;
331
+ trailing?(_: {}): any;
332
+ };
333
+ }) | null;
334
+ popoverRef: ({
335
+ $: import('vue').ComponentInternalInstance;
336
+ $data: {};
337
+ $props: ({
338
+ readonly modelValue?: boolean | undefined;
339
+ readonly role?: import('../..').KdsPopoverRole | undefined;
340
+ readonly popoverType?: import('../..').KdsPopoverType | undefined;
341
+ readonly fullWidth?: boolean | undefined;
342
+ readonly maxInlineSize?: string | undefined;
343
+ readonly content?: string | undefined;
344
+ readonly placement?: Exclude<import('../..').KdsPopoverPlacement, "custom"> | undefined;
345
+ readonly customPlacementPosition?: never | undefined;
346
+ readonly "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
347
+ } | {
348
+ readonly modelValue?: boolean | undefined;
349
+ readonly role?: import('../..').KdsPopoverRole | undefined;
350
+ readonly popoverType?: import('../..').KdsPopoverType | undefined;
351
+ readonly fullWidth?: boolean | undefined;
352
+ readonly maxInlineSize?: string | undefined;
353
+ readonly content?: string | undefined;
354
+ readonly placement: "custom";
355
+ readonly customPlacementPosition: {
356
+ x: number;
357
+ y: number;
358
+ };
359
+ readonly "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
360
+ }) & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
361
+ $attrs: import('vue').Attrs;
362
+ $refs: {
363
+ [x: string]: unknown;
364
+ } & {
365
+ popoverEl: HTMLDivElement;
366
+ };
367
+ $slots: Readonly<{
368
+ [name: string]: import('vue').Slot<any> | undefined;
369
+ }>;
370
+ $root: import('vue').ComponentPublicInstance | null;
371
+ $parent: import('vue').ComponentPublicInstance | null;
372
+ $host: Element | null;
373
+ $emit: (event: "update:modelValue", value: boolean) => void;
374
+ $el: HTMLDivElement;
375
+ $options: import('vue').ComponentOptionsBase<Readonly<({
376
+ modelValue?: boolean;
377
+ } & {
378
+ role?: import('../..').KdsPopoverRole;
379
+ popoverType?: import('../..').KdsPopoverType;
380
+ fullWidth?: boolean;
381
+ maxInlineSize?: string;
382
+ content?: string;
383
+ } & {
384
+ placement?: Exclude<import('../..').KdsPopoverPlacement, "custom">;
385
+ customPlacementPosition?: never;
386
+ }) | ({
387
+ modelValue?: boolean;
388
+ } & {
389
+ role?: import('../..').KdsPopoverRole;
390
+ popoverType?: import('../..').KdsPopoverType;
391
+ fullWidth?: boolean;
392
+ maxInlineSize?: string;
393
+ content?: string;
394
+ } & {
395
+ placement: "custom";
396
+ customPlacementPosition: {
397
+ x: number;
398
+ y: number;
399
+ };
400
+ })> & Readonly<{
401
+ "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
402
+ }>, {
403
+ anchorStyle: Record<string, string>;
404
+ popoverId: string;
405
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
406
+ "update:modelValue": (value: boolean) => any;
407
+ }, string, {}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
408
+ beforeCreate?: (() => void) | (() => void)[];
409
+ created?: (() => void) | (() => void)[];
410
+ beforeMount?: (() => void) | (() => void)[];
411
+ mounted?: (() => void) | (() => void)[];
412
+ beforeUpdate?: (() => void) | (() => void)[];
413
+ updated?: (() => void) | (() => void)[];
414
+ activated?: (() => void) | (() => void)[];
415
+ deactivated?: (() => void) | (() => void)[];
416
+ beforeDestroy?: (() => void) | (() => void)[];
417
+ beforeUnmount?: (() => void) | (() => void)[];
418
+ destroyed?: (() => void) | (() => void)[];
419
+ unmounted?: (() => void) | (() => void)[];
420
+ renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
421
+ renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
422
+ errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
423
+ };
424
+ $forceUpdate: () => void;
425
+ $nextTick: typeof nextTick;
426
+ $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (
427
+ /** KEYBOARD NAV */
428
+ ...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
429
+ } & Readonly<{}> & Omit<{} & (Readonly<({
430
+ modelValue?: boolean;
431
+ } & {
432
+ role?: import('../..').KdsPopoverRole;
433
+ popoverType?: import('../..').KdsPopoverType;
434
+ fullWidth?: boolean;
435
+ maxInlineSize?: string;
436
+ content?: string;
437
+ } & {
438
+ placement?: Exclude<import('../..').KdsPopoverPlacement, "custom">;
439
+ customPlacementPosition?: never;
440
+ }) | ({
441
+ modelValue?: boolean;
442
+ } & {
443
+ role?: import('../..').KdsPopoverRole;
444
+ popoverType?: import('../..').KdsPopoverType;
445
+ fullWidth?: boolean;
446
+ maxInlineSize?: string;
447
+ content?: string;
448
+ } & {
449
+ placement: "custom";
450
+ customPlacementPosition: {
451
+ x: number;
452
+ y: number;
453
+ };
454
+ })> & Readonly<{
455
+ "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
456
+ }>), "anchorStyle" | "popoverId"> & {
457
+ anchorStyle: Record<string, string>;
458
+ popoverId: string;
459
+ } & {} & import('vue').ComponentCustomProperties & {} & {
460
+ $slots: {
461
+ default?(_: {}): any;
462
+ };
463
+ }) | null;
464
+ listContainerRef: import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('..').KdsListContainerProps> & Readonly<{
465
+ onItemClick?: ((id?: string | undefined) => any) | undefined;
466
+ }>, {
467
+ handleKeydown: (event: KeyboardEvent) => void;
468
+ handleFocus: () => void;
469
+ handleBlur: () => void;
470
+ activeDescendant: Readonly<import('vue').Ref<string | undefined>>;
471
+ focus: () => void;
472
+ scrollSelectedIntoView: () => void;
473
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
474
+ itemClick: (id?: string | undefined) => any;
475
+ }, import('vue').PublicProps, {}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {
476
+ containerEl: HTMLDivElement;
477
+ }, HTMLDivElement, import('vue').ComponentProvideOptions, {
478
+ P: {};
479
+ B: {};
480
+ D: {};
481
+ C: {};
482
+ M: {};
483
+ Defaults: {};
484
+ }, Readonly<import('..').KdsListContainerProps> & Readonly<{
485
+ onItemClick?: ((id?: string | undefined) => any) | undefined;
486
+ }>, {
487
+ handleKeydown: (event: KeyboardEvent) => void;
488
+ handleFocus: () => void;
489
+ handleBlur: () => void;
490
+ activeDescendant: Readonly<import('vue').Ref<string | undefined>>;
491
+ focus: () => void;
492
+ scrollSelectedIntoView: () => void;
493
+ }, {}, {}, {}, {}> | null;
494
+ }, HTMLDivElement, import('vue').ComponentProvideOptions, {
495
+ P: {};
496
+ B: {};
497
+ D: {};
498
+ C: {};
499
+ M: {};
500
+ Defaults: {};
501
+ }, {} & (Readonly<({
502
+ modelValue?: string;
503
+ } & {
504
+ description?: string;
505
+ } & {
506
+ label: string;
507
+ ariaLabel?: never;
508
+ } & {
509
+ id?: string;
510
+ } & {
511
+ error?: boolean | undefined;
512
+ subText?: string | undefined;
513
+ validating?: boolean | undefined;
514
+ preserveSubTextSpace?: boolean | undefined;
515
+ } & {
516
+ placeholder?: string;
517
+ disabled?: boolean;
518
+ autocomplete?: string;
519
+ } & {
520
+ suggestions?: string[];
521
+ suggestionsHeadline?: string;
522
+ }) | ({
523
+ modelValue?: string;
524
+ } & {
525
+ description?: string;
526
+ } & {
527
+ label?: never;
528
+ ariaLabel: string;
529
+ } & {
530
+ id?: string;
531
+ } & {
532
+ error?: boolean | undefined;
533
+ subText?: string | undefined;
534
+ validating?: boolean | undefined;
535
+ preserveSubTextSpace?: boolean | undefined;
536
+ } & {
537
+ placeholder?: string;
538
+ disabled?: boolean;
539
+ autocomplete?: string;
540
+ } & {
541
+ suggestions?: string[];
542
+ suggestionsHeadline?: string;
543
+ })> & Readonly<{
544
+ "onUpdate:modelValue"?: ((value: string) => any) | undefined;
545
+ }>), {
546
+ focus: (options?: FocusOptions) => void;
547
+ }, {}, {}, {}, {}> | null;
548
+ };
549
+ $slots: Readonly<{
550
+ [name: string]: import('vue').Slot<any> | undefined;
551
+ }>;
552
+ $root: import('vue').ComponentPublicInstance | null;
553
+ $parent: import('vue').ComponentPublicInstance | null;
554
+ $host: Element | null;
555
+ $emit: ((event: "click", nativeEvent: MouseEvent) => void) & ((event: "contextmenu", nativeEvent: MouseEvent) => void) & ((event: "dblclick", nativeEvent: MouseEvent) => void) & ((event: "drag", nativeEvent: DragEvent) => void) & ((event: "dragend", nativeEvent: DragEvent) => void) & ((event: "dragenter", nativeEvent: DragEvent) => void) & ((event: "dragleave", nativeEvent: DragEvent) => void) & ((event: "dragover", nativeEvent: DragEvent) => void) & ((event: "dragstart", nativeEvent: DragEvent) => void) & ((event: "drop", nativeEvent: DragEvent) => void) & ((event: "rename:submit", payload: {
556
+ itemId: string;
557
+ newName: string;
558
+ }) => void) & ((event: "rename:clear") => void);
559
+ $el: any;
560
+ $options: import('vue').ComponentOptionsBase<Readonly<{
561
+ blacklistedNames: Array<string>;
562
+ item: KdsFileExplorerItem;
563
+ isSelected: boolean;
564
+ isDragging: boolean;
565
+ isRenameActive: boolean;
566
+ disabled: boolean;
567
+ isDraggingEnabled?: boolean;
568
+ hasOptionsMenu?: boolean;
569
+ }> & Readonly<{
570
+ onClick?: ((nativeEvent: MouseEvent) => any) | undefined;
571
+ onContextmenu?: ((nativeEvent: MouseEvent) => any) | undefined;
572
+ onDblclick?: ((nativeEvent: MouseEvent) => any) | undefined;
573
+ onDrag?: ((nativeEvent: DragEvent) => any) | undefined;
574
+ onDragend?: ((nativeEvent: DragEvent) => any) | undefined;
575
+ onDragenter?: ((nativeEvent: DragEvent) => any) | undefined;
576
+ onDragleave?: ((nativeEvent: DragEvent) => any) | undefined;
577
+ onDragover?: ((nativeEvent: DragEvent) => any) | undefined;
578
+ onDragstart?: ((nativeEvent: DragEvent) => any) | undefined;
579
+ onDrop?: ((nativeEvent: DragEvent) => any) | undefined;
580
+ "onRename:submit"?: ((payload: {
581
+ itemId: string;
582
+ newName: string;
583
+ }) => any) | undefined;
584
+ "onRename:clear"?: (() => any) | undefined;
585
+ }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
586
+ click: (nativeEvent: MouseEvent) => any;
587
+ contextmenu: (nativeEvent: MouseEvent) => any;
588
+ dblclick: (nativeEvent: MouseEvent) => any;
589
+ drag: (nativeEvent: DragEvent) => any;
590
+ dragend: (nativeEvent: DragEvent) => any;
591
+ dragenter: (nativeEvent: DragEvent) => any;
592
+ dragleave: (nativeEvent: DragEvent) => any;
593
+ dragover: (nativeEvent: DragEvent) => any;
594
+ dragstart: (nativeEvent: DragEvent) => any;
595
+ drop: (nativeEvent: DragEvent) => any;
596
+ "rename:submit": (payload: {
597
+ itemId: string;
598
+ newName: string;
599
+ }) => any;
600
+ "rename:clear": () => any;
601
+ }, string, {
602
+ isDraggingEnabled: boolean;
603
+ }, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
604
+ beforeCreate?: (() => void) | (() => void)[];
605
+ created?: (() => void) | (() => void)[];
606
+ beforeMount?: (() => void) | (() => void)[];
607
+ mounted?: (() => void) | (() => void)[];
608
+ beforeUpdate?: (() => void) | (() => void)[];
609
+ updated?: (() => void) | (() => void)[];
610
+ activated?: (() => void) | (() => void)[];
611
+ deactivated?: (() => void) | (() => void)[];
612
+ beforeDestroy?: (() => void) | (() => void)[];
613
+ beforeUnmount?: (() => void) | (() => void)[];
614
+ destroyed?: (() => void) | (() => void)[];
615
+ unmounted?: (() => void) | (() => void)[];
616
+ renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
617
+ renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
618
+ errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
619
+ };
620
+ $forceUpdate: () => void;
621
+ $nextTick: typeof nextTick;
622
+ $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (
623
+ /** KEYBOARD NAV */
624
+ ...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
625
+ } & Readonly<{
626
+ isDraggingEnabled: boolean;
627
+ }> & Omit<Readonly<{
628
+ blacklistedNames: Array<string>;
629
+ item: KdsFileExplorerItem;
630
+ isSelected: boolean;
631
+ isDragging: boolean;
632
+ isRenameActive: boolean;
633
+ disabled: boolean;
634
+ isDraggingEnabled?: boolean;
635
+ hasOptionsMenu?: boolean;
636
+ }> & Readonly<{
637
+ onClick?: ((nativeEvent: MouseEvent) => any) | undefined;
638
+ onContextmenu?: ((nativeEvent: MouseEvent) => any) | undefined;
639
+ onDblclick?: ((nativeEvent: MouseEvent) => any) | undefined;
640
+ onDrag?: ((nativeEvent: DragEvent) => any) | undefined;
641
+ onDragend?: ((nativeEvent: DragEvent) => any) | undefined;
642
+ onDragenter?: ((nativeEvent: DragEvent) => any) | undefined;
643
+ onDragleave?: ((nativeEvent: DragEvent) => any) | undefined;
644
+ onDragover?: ((nativeEvent: DragEvent) => any) | undefined;
645
+ onDragstart?: ((nativeEvent: DragEvent) => any) | undefined;
646
+ onDrop?: ((nativeEvent: DragEvent) => any) | undefined;
647
+ "onRename:submit"?: ((payload: {
648
+ itemId: string;
649
+ newName: string;
650
+ }) => any) | undefined;
651
+ "onRename:clear"?: (() => any) | undefined;
652
+ }>, "isDraggingEnabled"> & {} & import('vue').ComponentCustomProperties & {} & {
653
+ $slots: Partial<Record<string, (_: {
654
+ isRenameActive: boolean;
655
+ isSelected: boolean;
656
+ }) => any>> & {
657
+ optionsMenu?(_: {}): any;
658
+ };
659
+ }) | null)[];
660
+ customPreviewContainer: HTMLDivElement;
661
+ customDragPreviewPlaceholder: HTMLDivElement;
662
+ popover: ({
663
+ $: import('vue').ComponentInternalInstance;
664
+ $data: {};
665
+ $props: ({
666
+ readonly modelValue?: boolean | undefined;
667
+ readonly role?: import('../..').KdsPopoverRole | undefined;
668
+ readonly popoverType?: import('../..').KdsPopoverType | undefined;
669
+ readonly fullWidth?: boolean | undefined;
670
+ readonly maxInlineSize?: string | undefined;
671
+ readonly content?: string | undefined;
672
+ readonly placement?: Exclude<import('../..').KdsPopoverPlacement, "custom"> | undefined;
673
+ readonly customPlacementPosition?: never | undefined;
674
+ readonly "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
675
+ } | {
676
+ readonly modelValue?: boolean | undefined;
677
+ readonly role?: import('../..').KdsPopoverRole | undefined;
678
+ readonly popoverType?: import('../..').KdsPopoverType | undefined;
679
+ readonly fullWidth?: boolean | undefined;
680
+ readonly maxInlineSize?: string | undefined;
681
+ readonly content?: string | undefined;
682
+ readonly placement: "custom";
683
+ readonly customPlacementPosition: {
684
+ x: number;
685
+ y: number;
686
+ };
687
+ readonly "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
688
+ }) & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
689
+ $attrs: import('vue').Attrs;
690
+ $refs: {
691
+ [x: string]: unknown;
692
+ } & {
693
+ popoverEl: HTMLDivElement;
694
+ };
695
+ $slots: Readonly<{
696
+ [name: string]: import('vue').Slot<any> | undefined;
697
+ }>;
698
+ $root: import('vue').ComponentPublicInstance | null;
699
+ $parent: import('vue').ComponentPublicInstance | null;
700
+ $host: Element | null;
701
+ $emit: (event: "update:modelValue", value: boolean) => void;
702
+ $el: HTMLDivElement;
703
+ $options: import('vue').ComponentOptionsBase<Readonly<({
704
+ modelValue?: boolean;
705
+ } & {
706
+ role?: import('../..').KdsPopoverRole;
707
+ popoverType?: import('../..').KdsPopoverType;
708
+ fullWidth?: boolean;
709
+ maxInlineSize?: string;
710
+ content?: string;
711
+ } & {
712
+ placement?: Exclude<import('../..').KdsPopoverPlacement, "custom">;
713
+ customPlacementPosition?: never;
714
+ }) | ({
715
+ modelValue?: boolean;
716
+ } & {
717
+ role?: import('../..').KdsPopoverRole;
718
+ popoverType?: import('../..').KdsPopoverType;
719
+ fullWidth?: boolean;
720
+ maxInlineSize?: string;
721
+ content?: string;
722
+ } & {
723
+ placement: "custom";
724
+ customPlacementPosition: {
725
+ x: number;
726
+ y: number;
727
+ };
728
+ })> & Readonly<{
729
+ "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
730
+ }>, {
731
+ anchorStyle: Record<string, string>;
732
+ popoverId: string;
733
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
734
+ "update:modelValue": (value: boolean) => any;
735
+ }, string, {}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
736
+ beforeCreate?: (() => void) | (() => void)[];
737
+ created?: (() => void) | (() => void)[];
738
+ beforeMount?: (() => void) | (() => void)[];
739
+ mounted?: (() => void) | (() => void)[];
740
+ beforeUpdate?: (() => void) | (() => void)[];
741
+ updated?: (() => void) | (() => void)[];
742
+ activated?: (() => void) | (() => void)[];
743
+ deactivated?: (() => void) | (() => void)[];
744
+ beforeDestroy?: (() => void) | (() => void)[];
745
+ beforeUnmount?: (() => void) | (() => void)[];
746
+ destroyed?: (() => void) | (() => void)[];
747
+ unmounted?: (() => void) | (() => void)[];
748
+ renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
749
+ renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
750
+ errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
751
+ };
752
+ $forceUpdate: () => void;
753
+ $nextTick: typeof nextTick;
754
+ $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (
755
+ /** KEYBOARD NAV */
756
+ ...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
757
+ } & Readonly<{}> & Omit<{} & (Readonly<({
758
+ modelValue?: boolean;
759
+ } & {
760
+ role?: import('../..').KdsPopoverRole;
761
+ popoverType?: import('../..').KdsPopoverType;
762
+ fullWidth?: boolean;
763
+ maxInlineSize?: string;
764
+ content?: string;
765
+ } & {
766
+ placement?: Exclude<import('../..').KdsPopoverPlacement, "custom">;
767
+ customPlacementPosition?: never;
768
+ }) | ({
769
+ modelValue?: boolean;
770
+ } & {
771
+ role?: import('../..').KdsPopoverRole;
772
+ popoverType?: import('../..').KdsPopoverType;
773
+ fullWidth?: boolean;
774
+ maxInlineSize?: string;
775
+ content?: string;
776
+ } & {
777
+ placement: "custom";
778
+ customPlacementPosition: {
779
+ x: number;
780
+ y: number;
781
+ };
782
+ })> & Readonly<{
783
+ "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
784
+ }>), "anchorStyle" | "popoverId"> & {
785
+ anchorStyle: Record<string, string>;
786
+ popoverId: string;
787
+ } & {} & import('vue').ComponentCustomProperties & {} & {
788
+ $slots: {
789
+ default?(_: {}): any;
790
+ };
791
+ }) | null;
792
+ contextMenu: import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('../MenuContainer').KdsMenuContainerProps> & Readonly<{
793
+ onItemClick?: ((id: string) => any) | undefined;
794
+ }>, {
795
+ focus: () => void;
796
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
797
+ itemClick: (id: string) => any;
798
+ }, import('vue').PublicProps, {}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {
799
+ containerEl: HTMLDivElement;
800
+ }, HTMLDivElement, import('vue').ComponentProvideOptions, {
801
+ P: {};
802
+ B: {};
803
+ D: {};
804
+ C: {};
805
+ M: {};
806
+ Defaults: {};
807
+ }, Readonly<import('../MenuContainer').KdsMenuContainerProps> & Readonly<{
808
+ onItemClick?: ((id: string) => any) | undefined;
809
+ }>, {
810
+ focus: () => void;
811
+ }, {}, {}, {}, {}> | null;
812
+ };
813
+ rootEl: HTMLDivElement;
814
+ };
815
+ type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
816
+ declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
817
+ drag: (payload: {
818
+ event: DragEvent;
819
+ item: KdsFileExplorerItem;
820
+ }) => any;
821
+ dragend: (payload: {
822
+ event: DragEvent;
823
+ sourceItem: KdsFileExplorerItem;
824
+ onComplete: (isSuccessfulMove: boolean) => void;
825
+ }) => any;
826
+ "update:selectedItemIds": (selectedItemIds: string[]) => any;
827
+ changeDirectory: (pathId: string) => any;
828
+ openFile: (item: KdsFileExplorerItem<Record<string, unknown>>) => any;
829
+ moveItems: (payload: {
830
+ sourceItems: Array<string>;
831
+ targetItem: string;
832
+ onComplete: (isSuccessfulMove: boolean) => void;
833
+ }) => any;
834
+ renameFile: (payload: {
835
+ itemId: string;
836
+ newName: string;
837
+ }) => any;
838
+ "update:activeRenamedItemId": (value: string | null) => any;
839
+ }, string, import('vue').PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
840
+ onDrag?: ((payload: {
841
+ event: DragEvent;
842
+ item: KdsFileExplorerItem;
843
+ }) => any) | undefined;
844
+ onDragend?: ((payload: {
845
+ event: DragEvent;
846
+ sourceItem: KdsFileExplorerItem;
847
+ onComplete: (isSuccessfulMove: boolean) => void;
848
+ }) => any) | undefined;
849
+ "onUpdate:selectedItemIds"?: ((selectedItemIds: string[]) => any) | undefined;
850
+ onChangeDirectory?: ((pathId: string) => any) | undefined;
851
+ onOpenFile?: ((item: KdsFileExplorerItem<Record<string, unknown>>) => any) | undefined;
852
+ onMoveItems?: ((payload: {
853
+ sourceItems: Array<string>;
854
+ targetItem: string;
855
+ onComplete: (isSuccessfulMove: boolean) => void;
856
+ }) => any) | undefined;
857
+ onRenameFile?: ((payload: {
858
+ itemId: string;
859
+ newName: string;
860
+ }) => any) | undefined;
861
+ "onUpdate:activeRenamedItemId"?: ((value: string | null) => any) | undefined;
862
+ }>, {
863
+ size: import('./types').KdsFileExplorerSize;
864
+ fullPath: string;
865
+ isRootFolder: boolean;
866
+ disableMultiSelect: boolean;
867
+ disableSelection: boolean;
868
+ disableDragging: boolean;
869
+ draggingAnimationMode: import('./types').KdsFileExplorerDraggingAnimationMode;
870
+ clickOutsideExceptions: Array<import('@vueuse/core').MaybeElementRef | string>;
871
+ selectedItemIds: string[];
872
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
873
+ itemBack: import('vue').CreateComponentPublicInstanceWithMixins<Readonly<{
874
+ isDragging: boolean;
875
+ }> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
876
+ P: {};
877
+ B: {};
878
+ D: {};
879
+ C: {};
880
+ M: {};
881
+ Defaults: {};
882
+ }, Readonly<{
883
+ isDragging: boolean;
884
+ }> & Readonly<{}>, {}, {}, {}, {}, {}> | null;
885
+ virtualItemRefs: (({
886
+ $: import('vue').ComponentInternalInstance;
887
+ $data: {};
888
+ $props: {
889
+ readonly blacklistedNames: Array<string>;
890
+ readonly item: KdsFileExplorerItem;
891
+ readonly isSelected: boolean;
892
+ readonly isDragging: boolean;
893
+ readonly isRenameActive: boolean;
894
+ readonly disabled: boolean;
895
+ readonly isDraggingEnabled?: boolean | undefined;
896
+ readonly hasOptionsMenu?: boolean | undefined;
897
+ readonly onClick?: ((nativeEvent: MouseEvent) => any) | undefined;
898
+ readonly onContextmenu?: ((nativeEvent: MouseEvent) => any) | undefined;
899
+ readonly onDblclick?: ((nativeEvent: MouseEvent) => any) | undefined;
900
+ readonly onDrag?: ((nativeEvent: DragEvent) => any) | undefined;
901
+ readonly onDragend?: ((nativeEvent: DragEvent) => any) | undefined;
902
+ readonly onDragenter?: ((nativeEvent: DragEvent) => any) | undefined;
903
+ readonly onDragleave?: ((nativeEvent: DragEvent) => any) | undefined;
904
+ readonly onDragover?: ((nativeEvent: DragEvent) => any) | undefined;
905
+ readonly onDragstart?: ((nativeEvent: DragEvent) => any) | undefined;
906
+ readonly onDrop?: ((nativeEvent: DragEvent) => any) | undefined;
907
+ readonly "onRename:submit"?: ((payload: {
908
+ itemId: string;
909
+ newName: string;
910
+ }) => any) | undefined;
911
+ readonly "onRename:clear"?: (() => any) | undefined;
912
+ } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
913
+ $attrs: import('vue').Attrs;
914
+ $refs: {
915
+ [x: string]: unknown;
916
+ } & {
917
+ baseItem: import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('vue').ExtractPropTypes<{
918
+ isSelected: {
919
+ type: BooleanConstructor;
920
+ required: true;
921
+ };
922
+ isDragging: {
923
+ type: BooleanConstructor;
924
+ required: true;
925
+ };
926
+ disabled: {
927
+ type: BooleanConstructor;
928
+ default: boolean;
929
+ };
930
+ }>> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {
931
+ disabled: boolean;
932
+ }, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
933
+ P: {};
934
+ B: {};
935
+ D: {};
936
+ C: {};
937
+ M: {};
938
+ Defaults: {};
939
+ }, Readonly<import('vue').ExtractPropTypes<{
940
+ isSelected: {
941
+ type: BooleanConstructor;
942
+ required: true;
943
+ };
944
+ isDragging: {
945
+ type: BooleanConstructor;
946
+ required: true;
947
+ };
948
+ disabled: {
949
+ type: BooleanConstructor;
950
+ default: boolean;
951
+ };
952
+ }>> & Readonly<{}>, {}, {}, {}, {}, {
953
+ disabled: boolean;
954
+ }> | null;
955
+ renameInputContainer: HTMLDivElement;
956
+ renameInput: import('vue').CreateComponentPublicInstanceWithMixins<Readonly<({
957
+ modelValue?: string;
958
+ } & {
959
+ description?: string;
960
+ } & {
961
+ label: string;
962
+ ariaLabel?: never;
963
+ } & {
964
+ id?: string;
965
+ } & {
966
+ error?: boolean | undefined;
967
+ subText?: string | undefined;
968
+ validating?: boolean | undefined;
969
+ preserveSubTextSpace?: boolean | undefined;
970
+ } & {
971
+ placeholder?: string;
972
+ disabled?: boolean;
973
+ autocomplete?: string;
974
+ } & {
975
+ suggestions?: string[];
976
+ suggestionsHeadline?: string;
977
+ }) | ({
978
+ modelValue?: string;
979
+ } & {
980
+ description?: string;
981
+ } & {
982
+ label?: never;
983
+ ariaLabel: string;
984
+ } & {
985
+ id?: string;
986
+ } & {
987
+ error?: boolean | undefined;
988
+ subText?: string | undefined;
989
+ validating?: boolean | undefined;
990
+ preserveSubTextSpace?: boolean | undefined;
991
+ } & {
992
+ placeholder?: string;
993
+ disabled?: boolean;
994
+ autocomplete?: string;
995
+ } & {
996
+ suggestions?: string[];
997
+ suggestionsHeadline?: string;
998
+ })> & Readonly<{
999
+ "onUpdate:modelValue"?: ((value: string) => any) | undefined;
1000
+ }>, {
1001
+ focus: (options?: FocusOptions) => void;
1002
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
1003
+ "update:modelValue": (value: string) => any;
1004
+ }, import('vue').PublicProps, {}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {
1005
+ baseInput: ({
1006
+ $: import('vue').ComponentInternalInstance;
1007
+ $data: {};
1008
+ $props: {
1009
+ readonly modelValue?: string | undefined;
1010
+ readonly id?: string | undefined;
1011
+ readonly type?: "text" | "email" | "password" | "number" | "tel" | "url" | "search" | undefined;
1012
+ readonly min?: number | string | undefined;
1013
+ readonly max?: number | string | undefined;
1014
+ readonly ariaExpanded?: boolean | undefined;
1015
+ readonly step?: number | undefined;
1016
+ readonly placeholder?: string | undefined;
1017
+ readonly disabled?: boolean | undefined;
1018
+ readonly leadingIcon?: import('../..').KdsIconName | undefined;
1019
+ readonly trailingIcon?: import('../..').KdsIconName | undefined;
1020
+ readonly error?: boolean | undefined;
1021
+ readonly autocomplete?: string | undefined;
1022
+ readonly ariaLabel?: string | undefined;
1023
+ readonly ariaLabelledby?: string | undefined;
1024
+ readonly ariaDescribedby?: string | undefined;
1025
+ readonly ariaInvalid?: boolean | undefined;
1026
+ readonly role?: string | undefined;
1027
+ readonly ariaValuenow?: number | undefined;
1028
+ readonly ariaValuemin?: number | undefined;
1029
+ readonly ariaValuemax?: number | undefined;
1030
+ readonly ariaValuetext?: string | undefined;
1031
+ readonly ariaActivedescendant?: string | undefined;
1032
+ readonly ariaHaspopup?: "listbox" | "menu" | "dialog" | "grid" | "tree" | "true" | undefined;
1033
+ readonly ariaControls?: string | undefined;
1034
+ readonly ariaAutocomplete?: "none" | "inline" | "list" | "both" | undefined;
1035
+ readonly unit?: string | undefined;
1036
+ readonly inputmode?: "none" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | "search" | undefined;
1037
+ readonly clearable?: boolean | undefined;
1038
+ readonly pattern?: string | undefined;
1039
+ readonly segments?: import('../../forms/inputs/useInputSegments.helpers').KdsInputSegmentsConfig | undefined;
1040
+ readonly onInput?: ((event: Event) => any) | undefined;
1041
+ readonly onClick?: ((event: MouseEvent) => any) | undefined;
1042
+ readonly onBlur?: ((event: FocusEvent) => any) | undefined;
1043
+ readonly onFocus?: ((event: FocusEvent) => any) | undefined;
1044
+ readonly onKeydown?: ((event: KeyboardEvent) => any) | undefined;
1045
+ readonly onPaste?: ((event: ClipboardEvent) => any) | undefined;
1046
+ readonly "onUpdate:modelValue"?: ((value: string) => any) | undefined;
1047
+ } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
1048
+ $attrs: import('vue').Attrs;
1049
+ $refs: {
1050
+ [x: string]: unknown;
1051
+ } & {
1052
+ input: HTMLInputElement;
1053
+ };
1054
+ $slots: Readonly<{
1055
+ [name: string]: import('vue').Slot<any> | undefined;
1056
+ }>;
1057
+ $root: import('vue').ComponentPublicInstance | null;
1058
+ $parent: import('vue').ComponentPublicInstance | null;
1059
+ $host: Element | null;
1060
+ $emit: ((event: "input", event: Event) => void) & ((event: "click", event: MouseEvent) => void) & ((event: "blur", event: FocusEvent) => void) & ((event: "focus", event: FocusEvent) => void) & ((event: "keydown", event: KeyboardEvent) => void) & ((event: "paste", event: ClipboardEvent) => void) & ((event: "update:modelValue", value: string) => void);
1061
+ $el: HTMLDivElement;
1062
+ $options: import('vue').ComponentOptionsBase<Readonly<{
1063
+ modelValue?: string;
1064
+ } & {
1065
+ id?: string;
1066
+ type?: "text" | "email" | "password" | "number" | "tel" | "url" | "search";
1067
+ min?: number | string;
1068
+ max?: number | string;
1069
+ ariaExpanded?: boolean;
1070
+ step?: number;
1071
+ placeholder?: string;
1072
+ disabled?: boolean;
1073
+ leadingIcon?: import('../..').KdsIconName;
1074
+ trailingIcon?: import('../..').KdsIconName;
1075
+ error?: boolean;
1076
+ autocomplete?: string;
1077
+ ariaLabel?: string;
1078
+ ariaLabelledby?: string;
1079
+ ariaDescribedby?: string;
1080
+ ariaInvalid?: boolean;
1081
+ role?: string;
1082
+ ariaValuenow?: number;
1083
+ ariaValuemin?: number;
1084
+ ariaValuemax?: number;
1085
+ ariaValuetext?: string;
1086
+ ariaActivedescendant?: string;
1087
+ ariaHaspopup?: "listbox" | "menu" | "dialog" | "grid" | "tree" | "true";
1088
+ ariaControls?: string;
1089
+ ariaAutocomplete?: "none" | "inline" | "list" | "both";
1090
+ unit?: string;
1091
+ inputmode?: "none" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | "search";
1092
+ clearable?: boolean;
1093
+ pattern?: string;
1094
+ segments?: import('../../forms/inputs/useInputSegments.helpers').KdsInputSegmentsConfig;
1095
+ }> & Readonly<{
1096
+ onInput?: ((event: Event) => any) | undefined;
1097
+ onClick?: ((event: MouseEvent) => any) | undefined;
1098
+ onBlur?: ((event: FocusEvent) => any) | undefined;
1099
+ onFocus?: ((event: FocusEvent) => any) | undefined;
1100
+ onKeydown?: ((event: KeyboardEvent) => any) | undefined;
1101
+ onPaste?: ((event: ClipboardEvent) => any) | undefined;
1102
+ "onUpdate:modelValue"?: ((value: string) => any) | undefined;
1103
+ }>, {
1104
+ focus: (options?: FocusOptions) => void;
1105
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
1106
+ input: (event: Event) => any;
1107
+ click: (event: MouseEvent) => any;
1108
+ blur: (event: FocusEvent) => any;
1109
+ focus: (event: FocusEvent) => any;
1110
+ keydown: (event: KeyboardEvent) => any;
1111
+ paste: (event: ClipboardEvent) => any;
1112
+ "update:modelValue": (value: string) => any;
1113
+ }, string, {}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
1114
+ beforeCreate?: (() => void) | (() => void)[];
1115
+ created?: (() => void) | (() => void)[];
1116
+ beforeMount?: (() => void) | (() => void)[];
1117
+ mounted?: (() => void) | (() => void)[];
1118
+ beforeUpdate?: (() => void) | (() => void)[];
1119
+ updated?: (() => void) | (() => void)[];
1120
+ activated?: (() => void) | (() => void)[];
1121
+ deactivated?: (() => void) | (() => void)[];
1122
+ beforeDestroy?: (() => void) | (() => void)[];
1123
+ beforeUnmount?: (() => void) | (() => void)[];
1124
+ destroyed?: (() => void) | (() => void)[];
1125
+ unmounted?: (() => void) | (() => void)[];
1126
+ renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
1127
+ renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
1128
+ errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
1129
+ };
1130
+ $forceUpdate: () => void;
1131
+ $nextTick: typeof nextTick;
1132
+ $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (
1133
+ /** KEYBOARD NAV */
1134
+ ...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
1135
+ } & Readonly<{}> & Omit<Readonly<{
1136
+ modelValue?: string;
1137
+ } & {
1138
+ id?: string;
1139
+ type?: "text" | "email" | "password" | "number" | "tel" | "url" | "search";
1140
+ min?: number | string;
1141
+ max?: number | string;
1142
+ ariaExpanded?: boolean;
1143
+ step?: number;
1144
+ placeholder?: string;
1145
+ disabled?: boolean;
1146
+ leadingIcon?: import('../..').KdsIconName;
1147
+ trailingIcon?: import('../..').KdsIconName;
1148
+ error?: boolean;
1149
+ autocomplete?: string;
1150
+ ariaLabel?: string;
1151
+ ariaLabelledby?: string;
1152
+ ariaDescribedby?: string;
1153
+ ariaInvalid?: boolean;
1154
+ role?: string;
1155
+ ariaValuenow?: number;
1156
+ ariaValuemin?: number;
1157
+ ariaValuemax?: number;
1158
+ ariaValuetext?: string;
1159
+ ariaActivedescendant?: string;
1160
+ ariaHaspopup?: "listbox" | "menu" | "dialog" | "grid" | "tree" | "true";
1161
+ ariaControls?: string;
1162
+ ariaAutocomplete?: "none" | "inline" | "list" | "both";
1163
+ unit?: string;
1164
+ inputmode?: "none" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | "search";
1165
+ clearable?: boolean;
1166
+ pattern?: string;
1167
+ segments?: import('../../forms/inputs/useInputSegments.helpers').KdsInputSegmentsConfig;
1168
+ }> & Readonly<{
1169
+ onInput?: ((event: Event) => any) | undefined;
1170
+ onClick?: ((event: MouseEvent) => any) | undefined;
1171
+ onBlur?: ((event: FocusEvent) => any) | undefined;
1172
+ onFocus?: ((event: FocusEvent) => any) | undefined;
1173
+ onKeydown?: ((event: KeyboardEvent) => any) | undefined;
1174
+ onPaste?: ((event: ClipboardEvent) => any) | undefined;
1175
+ "onUpdate:modelValue"?: ((value: string) => any) | undefined;
1176
+ }>, "focus"> & {
1177
+ focus: (options?: FocusOptions) => void;
1178
+ } & {} & import('vue').ComponentCustomProperties & {} & {
1179
+ $slots: {
1180
+ leading?(_: {}): any;
1181
+ trailing?(_: {}): any;
1182
+ };
1183
+ }) | null;
1184
+ popoverRef: ({
1185
+ $: import('vue').ComponentInternalInstance;
1186
+ $data: {};
1187
+ $props: ({
1188
+ readonly modelValue?: boolean | undefined;
1189
+ readonly role?: import('../..').KdsPopoverRole | undefined;
1190
+ readonly popoverType?: import('../..').KdsPopoverType | undefined;
1191
+ readonly fullWidth?: boolean | undefined;
1192
+ readonly maxInlineSize?: string | undefined;
1193
+ readonly content?: string | undefined;
1194
+ readonly placement?: Exclude<import('../..').KdsPopoverPlacement, "custom"> | undefined;
1195
+ readonly customPlacementPosition?: never | undefined;
1196
+ readonly "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
1197
+ } | {
1198
+ readonly modelValue?: boolean | undefined;
1199
+ readonly role?: import('../..').KdsPopoverRole | undefined;
1200
+ readonly popoverType?: import('../..').KdsPopoverType | undefined;
1201
+ readonly fullWidth?: boolean | undefined;
1202
+ readonly maxInlineSize?: string | undefined;
1203
+ readonly content?: string | undefined;
1204
+ readonly placement: "custom";
1205
+ readonly customPlacementPosition: {
1206
+ x: number;
1207
+ y: number;
1208
+ };
1209
+ readonly "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
1210
+ }) & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
1211
+ $attrs: import('vue').Attrs;
1212
+ $refs: {
1213
+ [x: string]: unknown;
1214
+ } & {
1215
+ popoverEl: HTMLDivElement;
1216
+ };
1217
+ $slots: Readonly<{
1218
+ [name: string]: import('vue').Slot<any> | undefined;
1219
+ }>;
1220
+ $root: import('vue').ComponentPublicInstance | null;
1221
+ $parent: import('vue').ComponentPublicInstance | null;
1222
+ $host: Element | null;
1223
+ $emit: (event: "update:modelValue", value: boolean) => void;
1224
+ $el: HTMLDivElement;
1225
+ $options: import('vue').ComponentOptionsBase<Readonly<({
1226
+ modelValue?: boolean;
1227
+ } & {
1228
+ role?: import('../..').KdsPopoverRole;
1229
+ popoverType?: import('../..').KdsPopoverType;
1230
+ fullWidth?: boolean;
1231
+ maxInlineSize?: string;
1232
+ content?: string;
1233
+ } & {
1234
+ placement?: Exclude<import('../..').KdsPopoverPlacement, "custom">;
1235
+ customPlacementPosition?: never;
1236
+ }) | ({
1237
+ modelValue?: boolean;
1238
+ } & {
1239
+ role?: import('../..').KdsPopoverRole;
1240
+ popoverType?: import('../..').KdsPopoverType;
1241
+ fullWidth?: boolean;
1242
+ maxInlineSize?: string;
1243
+ content?: string;
1244
+ } & {
1245
+ placement: "custom";
1246
+ customPlacementPosition: {
1247
+ x: number;
1248
+ y: number;
1249
+ };
1250
+ })> & Readonly<{
1251
+ "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
1252
+ }>, {
1253
+ anchorStyle: Record<string, string>;
1254
+ popoverId: string;
1255
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
1256
+ "update:modelValue": (value: boolean) => any;
1257
+ }, string, {}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
1258
+ beforeCreate?: (() => void) | (() => void)[];
1259
+ created?: (() => void) | (() => void)[];
1260
+ beforeMount?: (() => void) | (() => void)[];
1261
+ mounted?: (() => void) | (() => void)[];
1262
+ beforeUpdate?: (() => void) | (() => void)[];
1263
+ updated?: (() => void) | (() => void)[];
1264
+ activated?: (() => void) | (() => void)[];
1265
+ deactivated?: (() => void) | (() => void)[];
1266
+ beforeDestroy?: (() => void) | (() => void)[];
1267
+ beforeUnmount?: (() => void) | (() => void)[];
1268
+ destroyed?: (() => void) | (() => void)[];
1269
+ unmounted?: (() => void) | (() => void)[];
1270
+ renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
1271
+ renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
1272
+ errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
1273
+ };
1274
+ $forceUpdate: () => void;
1275
+ $nextTick: typeof nextTick;
1276
+ $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (
1277
+ /** KEYBOARD NAV */
1278
+ ...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
1279
+ } & Readonly<{}> & Omit<{} & (Readonly<({
1280
+ modelValue?: boolean;
1281
+ } & {
1282
+ role?: import('../..').KdsPopoverRole;
1283
+ popoverType?: import('../..').KdsPopoverType;
1284
+ fullWidth?: boolean;
1285
+ maxInlineSize?: string;
1286
+ content?: string;
1287
+ } & {
1288
+ placement?: Exclude<import('../..').KdsPopoverPlacement, "custom">;
1289
+ customPlacementPosition?: never;
1290
+ }) | ({
1291
+ modelValue?: boolean;
1292
+ } & {
1293
+ role?: import('../..').KdsPopoverRole;
1294
+ popoverType?: import('../..').KdsPopoverType;
1295
+ fullWidth?: boolean;
1296
+ maxInlineSize?: string;
1297
+ content?: string;
1298
+ } & {
1299
+ placement: "custom";
1300
+ customPlacementPosition: {
1301
+ x: number;
1302
+ y: number;
1303
+ };
1304
+ })> & Readonly<{
1305
+ "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
1306
+ }>), "anchorStyle" | "popoverId"> & {
1307
+ anchorStyle: Record<string, string>;
1308
+ popoverId: string;
1309
+ } & {} & import('vue').ComponentCustomProperties & {} & {
1310
+ $slots: {
1311
+ default?(_: {}): any;
1312
+ };
1313
+ }) | null;
1314
+ listContainerRef: import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('..').KdsListContainerProps> & Readonly<{
1315
+ onItemClick?: ((id?: string | undefined) => any) | undefined;
1316
+ }>, {
1317
+ handleKeydown: (event: KeyboardEvent) => void;
1318
+ handleFocus: () => void;
1319
+ handleBlur: () => void;
1320
+ activeDescendant: Readonly<import('vue').Ref<string | undefined>>;
1321
+ focus: () => void;
1322
+ scrollSelectedIntoView: () => void;
1323
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
1324
+ itemClick: (id?: string | undefined) => any;
1325
+ }, import('vue').PublicProps, {}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {
1326
+ containerEl: HTMLDivElement;
1327
+ }, HTMLDivElement, import('vue').ComponentProvideOptions, {
1328
+ P: {};
1329
+ B: {};
1330
+ D: {};
1331
+ C: {};
1332
+ M: {};
1333
+ Defaults: {};
1334
+ }, Readonly<import('..').KdsListContainerProps> & Readonly<{
1335
+ onItemClick?: ((id?: string | undefined) => any) | undefined;
1336
+ }>, {
1337
+ handleKeydown: (event: KeyboardEvent) => void;
1338
+ handleFocus: () => void;
1339
+ handleBlur: () => void;
1340
+ activeDescendant: Readonly<import('vue').Ref<string | undefined>>;
1341
+ focus: () => void;
1342
+ scrollSelectedIntoView: () => void;
1343
+ }, {}, {}, {}, {}> | null;
1344
+ }, HTMLDivElement, import('vue').ComponentProvideOptions, {
1345
+ P: {};
1346
+ B: {};
1347
+ D: {};
1348
+ C: {};
1349
+ M: {};
1350
+ Defaults: {};
1351
+ }, {} & (Readonly<({
1352
+ modelValue?: string;
1353
+ } & {
1354
+ description?: string;
1355
+ } & {
1356
+ label: string;
1357
+ ariaLabel?: never;
1358
+ } & {
1359
+ id?: string;
1360
+ } & {
1361
+ error?: boolean | undefined;
1362
+ subText?: string | undefined;
1363
+ validating?: boolean | undefined;
1364
+ preserveSubTextSpace?: boolean | undefined;
1365
+ } & {
1366
+ placeholder?: string;
1367
+ disabled?: boolean;
1368
+ autocomplete?: string;
1369
+ } & {
1370
+ suggestions?: string[];
1371
+ suggestionsHeadline?: string;
1372
+ }) | ({
1373
+ modelValue?: string;
1374
+ } & {
1375
+ description?: string;
1376
+ } & {
1377
+ label?: never;
1378
+ ariaLabel: string;
1379
+ } & {
1380
+ id?: string;
1381
+ } & {
1382
+ error?: boolean | undefined;
1383
+ subText?: string | undefined;
1384
+ validating?: boolean | undefined;
1385
+ preserveSubTextSpace?: boolean | undefined;
1386
+ } & {
1387
+ placeholder?: string;
1388
+ disabled?: boolean;
1389
+ autocomplete?: string;
1390
+ } & {
1391
+ suggestions?: string[];
1392
+ suggestionsHeadline?: string;
1393
+ })> & Readonly<{
1394
+ "onUpdate:modelValue"?: ((value: string) => any) | undefined;
1395
+ }>), {
1396
+ focus: (options?: FocusOptions) => void;
1397
+ }, {}, {}, {}, {}> | null;
1398
+ };
1399
+ $slots: Readonly<{
1400
+ [name: string]: import('vue').Slot<any> | undefined;
1401
+ }>;
1402
+ $root: import('vue').ComponentPublicInstance | null;
1403
+ $parent: import('vue').ComponentPublicInstance | null;
1404
+ $host: Element | null;
1405
+ $emit: ((event: "click", nativeEvent: MouseEvent) => void) & ((event: "contextmenu", nativeEvent: MouseEvent) => void) & ((event: "dblclick", nativeEvent: MouseEvent) => void) & ((event: "drag", nativeEvent: DragEvent) => void) & ((event: "dragend", nativeEvent: DragEvent) => void) & ((event: "dragenter", nativeEvent: DragEvent) => void) & ((event: "dragleave", nativeEvent: DragEvent) => void) & ((event: "dragover", nativeEvent: DragEvent) => void) & ((event: "dragstart", nativeEvent: DragEvent) => void) & ((event: "drop", nativeEvent: DragEvent) => void) & ((event: "rename:submit", payload: {
1406
+ itemId: string;
1407
+ newName: string;
1408
+ }) => void) & ((event: "rename:clear") => void);
1409
+ $el: any;
1410
+ $options: import('vue').ComponentOptionsBase<Readonly<{
1411
+ blacklistedNames: Array<string>;
1412
+ item: KdsFileExplorerItem;
1413
+ isSelected: boolean;
1414
+ isDragging: boolean;
1415
+ isRenameActive: boolean;
1416
+ disabled: boolean;
1417
+ isDraggingEnabled?: boolean;
1418
+ hasOptionsMenu?: boolean;
1419
+ }> & Readonly<{
1420
+ onClick?: ((nativeEvent: MouseEvent) => any) | undefined;
1421
+ onContextmenu?: ((nativeEvent: MouseEvent) => any) | undefined;
1422
+ onDblclick?: ((nativeEvent: MouseEvent) => any) | undefined;
1423
+ onDrag?: ((nativeEvent: DragEvent) => any) | undefined;
1424
+ onDragend?: ((nativeEvent: DragEvent) => any) | undefined;
1425
+ onDragenter?: ((nativeEvent: DragEvent) => any) | undefined;
1426
+ onDragleave?: ((nativeEvent: DragEvent) => any) | undefined;
1427
+ onDragover?: ((nativeEvent: DragEvent) => any) | undefined;
1428
+ onDragstart?: ((nativeEvent: DragEvent) => any) | undefined;
1429
+ onDrop?: ((nativeEvent: DragEvent) => any) | undefined;
1430
+ "onRename:submit"?: ((payload: {
1431
+ itemId: string;
1432
+ newName: string;
1433
+ }) => any) | undefined;
1434
+ "onRename:clear"?: (() => any) | undefined;
1435
+ }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
1436
+ click: (nativeEvent: MouseEvent) => any;
1437
+ contextmenu: (nativeEvent: MouseEvent) => any;
1438
+ dblclick: (nativeEvent: MouseEvent) => any;
1439
+ drag: (nativeEvent: DragEvent) => any;
1440
+ dragend: (nativeEvent: DragEvent) => any;
1441
+ dragenter: (nativeEvent: DragEvent) => any;
1442
+ dragleave: (nativeEvent: DragEvent) => any;
1443
+ dragover: (nativeEvent: DragEvent) => any;
1444
+ dragstart: (nativeEvent: DragEvent) => any;
1445
+ drop: (nativeEvent: DragEvent) => any;
1446
+ "rename:submit": (payload: {
1447
+ itemId: string;
1448
+ newName: string;
1449
+ }) => any;
1450
+ "rename:clear": () => any;
1451
+ }, string, {
1452
+ isDraggingEnabled: boolean;
1453
+ }, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
1454
+ beforeCreate?: (() => void) | (() => void)[];
1455
+ created?: (() => void) | (() => void)[];
1456
+ beforeMount?: (() => void) | (() => void)[];
1457
+ mounted?: (() => void) | (() => void)[];
1458
+ beforeUpdate?: (() => void) | (() => void)[];
1459
+ updated?: (() => void) | (() => void)[];
1460
+ activated?: (() => void) | (() => void)[];
1461
+ deactivated?: (() => void) | (() => void)[];
1462
+ beforeDestroy?: (() => void) | (() => void)[];
1463
+ beforeUnmount?: (() => void) | (() => void)[];
1464
+ destroyed?: (() => void) | (() => void)[];
1465
+ unmounted?: (() => void) | (() => void)[];
1466
+ renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
1467
+ renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
1468
+ errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
1469
+ };
1470
+ $forceUpdate: () => void;
1471
+ $nextTick: typeof nextTick;
1472
+ $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (
1473
+ /** KEYBOARD NAV */
1474
+ ...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
1475
+ } & Readonly<{
1476
+ isDraggingEnabled: boolean;
1477
+ }> & Omit<Readonly<{
1478
+ blacklistedNames: Array<string>;
1479
+ item: KdsFileExplorerItem;
1480
+ isSelected: boolean;
1481
+ isDragging: boolean;
1482
+ isRenameActive: boolean;
1483
+ disabled: boolean;
1484
+ isDraggingEnabled?: boolean;
1485
+ hasOptionsMenu?: boolean;
1486
+ }> & Readonly<{
1487
+ onClick?: ((nativeEvent: MouseEvent) => any) | undefined;
1488
+ onContextmenu?: ((nativeEvent: MouseEvent) => any) | undefined;
1489
+ onDblclick?: ((nativeEvent: MouseEvent) => any) | undefined;
1490
+ onDrag?: ((nativeEvent: DragEvent) => any) | undefined;
1491
+ onDragend?: ((nativeEvent: DragEvent) => any) | undefined;
1492
+ onDragenter?: ((nativeEvent: DragEvent) => any) | undefined;
1493
+ onDragleave?: ((nativeEvent: DragEvent) => any) | undefined;
1494
+ onDragover?: ((nativeEvent: DragEvent) => any) | undefined;
1495
+ onDragstart?: ((nativeEvent: DragEvent) => any) | undefined;
1496
+ onDrop?: ((nativeEvent: DragEvent) => any) | undefined;
1497
+ "onRename:submit"?: ((payload: {
1498
+ itemId: string;
1499
+ newName: string;
1500
+ }) => any) | undefined;
1501
+ "onRename:clear"?: (() => any) | undefined;
1502
+ }>, "isDraggingEnabled"> & {} & import('vue').ComponentCustomProperties & {} & {
1503
+ $slots: Partial<Record<string, (_: {
1504
+ isRenameActive: boolean;
1505
+ isSelected: boolean;
1506
+ }) => any>> & {
1507
+ optionsMenu?(_: {}): any;
1508
+ };
1509
+ }) | null)[];
1510
+ customPreviewContainer: HTMLDivElement;
1511
+ customDragPreviewPlaceholder: HTMLDivElement;
1512
+ popover: ({
1513
+ $: import('vue').ComponentInternalInstance;
1514
+ $data: {};
1515
+ $props: ({
1516
+ readonly modelValue?: boolean | undefined;
1517
+ readonly role?: import('../..').KdsPopoverRole | undefined;
1518
+ readonly popoverType?: import('../..').KdsPopoverType | undefined;
1519
+ readonly fullWidth?: boolean | undefined;
1520
+ readonly maxInlineSize?: string | undefined;
1521
+ readonly content?: string | undefined;
1522
+ readonly placement?: Exclude<import('../..').KdsPopoverPlacement, "custom"> | undefined;
1523
+ readonly customPlacementPosition?: never | undefined;
1524
+ readonly "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
1525
+ } | {
1526
+ readonly modelValue?: boolean | undefined;
1527
+ readonly role?: import('../..').KdsPopoverRole | undefined;
1528
+ readonly popoverType?: import('../..').KdsPopoverType | undefined;
1529
+ readonly fullWidth?: boolean | undefined;
1530
+ readonly maxInlineSize?: string | undefined;
1531
+ readonly content?: string | undefined;
1532
+ readonly placement: "custom";
1533
+ readonly customPlacementPosition: {
1534
+ x: number;
1535
+ y: number;
1536
+ };
1537
+ readonly "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
1538
+ }) & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
1539
+ $attrs: import('vue').Attrs;
1540
+ $refs: {
1541
+ [x: string]: unknown;
1542
+ } & {
1543
+ popoverEl: HTMLDivElement;
1544
+ };
1545
+ $slots: Readonly<{
1546
+ [name: string]: import('vue').Slot<any> | undefined;
1547
+ }>;
1548
+ $root: import('vue').ComponentPublicInstance | null;
1549
+ $parent: import('vue').ComponentPublicInstance | null;
1550
+ $host: Element | null;
1551
+ $emit: (event: "update:modelValue", value: boolean) => void;
1552
+ $el: HTMLDivElement;
1553
+ $options: import('vue').ComponentOptionsBase<Readonly<({
1554
+ modelValue?: boolean;
1555
+ } & {
1556
+ role?: import('../..').KdsPopoverRole;
1557
+ popoverType?: import('../..').KdsPopoverType;
1558
+ fullWidth?: boolean;
1559
+ maxInlineSize?: string;
1560
+ content?: string;
1561
+ } & {
1562
+ placement?: Exclude<import('../..').KdsPopoverPlacement, "custom">;
1563
+ customPlacementPosition?: never;
1564
+ }) | ({
1565
+ modelValue?: boolean;
1566
+ } & {
1567
+ role?: import('../..').KdsPopoverRole;
1568
+ popoverType?: import('../..').KdsPopoverType;
1569
+ fullWidth?: boolean;
1570
+ maxInlineSize?: string;
1571
+ content?: string;
1572
+ } & {
1573
+ placement: "custom";
1574
+ customPlacementPosition: {
1575
+ x: number;
1576
+ y: number;
1577
+ };
1578
+ })> & Readonly<{
1579
+ "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
1580
+ }>, {
1581
+ anchorStyle: Record<string, string>;
1582
+ popoverId: string;
1583
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
1584
+ "update:modelValue": (value: boolean) => any;
1585
+ }, string, {}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
1586
+ beforeCreate?: (() => void) | (() => void)[];
1587
+ created?: (() => void) | (() => void)[];
1588
+ beforeMount?: (() => void) | (() => void)[];
1589
+ mounted?: (() => void) | (() => void)[];
1590
+ beforeUpdate?: (() => void) | (() => void)[];
1591
+ updated?: (() => void) | (() => void)[];
1592
+ activated?: (() => void) | (() => void)[];
1593
+ deactivated?: (() => void) | (() => void)[];
1594
+ beforeDestroy?: (() => void) | (() => void)[];
1595
+ beforeUnmount?: (() => void) | (() => void)[];
1596
+ destroyed?: (() => void) | (() => void)[];
1597
+ unmounted?: (() => void) | (() => void)[];
1598
+ renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
1599
+ renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
1600
+ errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
1601
+ };
1602
+ $forceUpdate: () => void;
1603
+ $nextTick: typeof nextTick;
1604
+ $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (
1605
+ /** KEYBOARD NAV */
1606
+ ...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
1607
+ } & Readonly<{}> & Omit<{} & (Readonly<({
1608
+ modelValue?: boolean;
1609
+ } & {
1610
+ role?: import('../..').KdsPopoverRole;
1611
+ popoverType?: import('../..').KdsPopoverType;
1612
+ fullWidth?: boolean;
1613
+ maxInlineSize?: string;
1614
+ content?: string;
1615
+ } & {
1616
+ placement?: Exclude<import('../..').KdsPopoverPlacement, "custom">;
1617
+ customPlacementPosition?: never;
1618
+ }) | ({
1619
+ modelValue?: boolean;
1620
+ } & {
1621
+ role?: import('../..').KdsPopoverRole;
1622
+ popoverType?: import('../..').KdsPopoverType;
1623
+ fullWidth?: boolean;
1624
+ maxInlineSize?: string;
1625
+ content?: string;
1626
+ } & {
1627
+ placement: "custom";
1628
+ customPlacementPosition: {
1629
+ x: number;
1630
+ y: number;
1631
+ };
1632
+ })> & Readonly<{
1633
+ "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
1634
+ }>), "anchorStyle" | "popoverId"> & {
1635
+ anchorStyle: Record<string, string>;
1636
+ popoverId: string;
1637
+ } & {} & import('vue').ComponentCustomProperties & {} & {
1638
+ $slots: {
1639
+ default?(_: {}): any;
1640
+ };
1641
+ }) | null;
1642
+ contextMenu: import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('../MenuContainer').KdsMenuContainerProps> & Readonly<{
1643
+ onItemClick?: ((id: string) => any) | undefined;
1644
+ }>, {
1645
+ focus: () => void;
1646
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
1647
+ itemClick: (id: string) => any;
1648
+ }, import('vue').PublicProps, {}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {
1649
+ containerEl: HTMLDivElement;
1650
+ }, HTMLDivElement, import('vue').ComponentProvideOptions, {
1651
+ P: {};
1652
+ B: {};
1653
+ D: {};
1654
+ C: {};
1655
+ M: {};
1656
+ Defaults: {};
1657
+ }, Readonly<import('../MenuContainer').KdsMenuContainerProps> & Readonly<{
1658
+ onItemClick?: ((id: string) => any) | undefined;
1659
+ }>, {
1660
+ focus: () => void;
1661
+ }, {}, {}, {}, {}> | null;
1662
+ }, HTMLDivElement>;
1663
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
1664
+ export default _default;
1665
+ type __VLS_WithTemplateSlots<T, S> = T & {
1666
+ new (): {
1667
+ $slots: S;
1668
+ };
1669
+ };
1670
+ //# sourceMappingURL=KdsFileExplorer.vue.d.ts.map