@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,1023 @@
1
+ import { nextTick } from 'vue';
2
+ import { KdsFileExplorerItem } from './types';
3
+ type Props = {
4
+ blacklistedNames: Array<string>;
5
+ item: KdsFileExplorerItem;
6
+ isSelected: boolean;
7
+ isDragging: boolean;
8
+ isRenameActive: boolean;
9
+ disabled: boolean;
10
+ isDraggingEnabled?: boolean;
11
+ hasOptionsMenu?: boolean;
12
+ };
13
+ declare function __VLS_template(): {
14
+ attrs: Partial<{}>;
15
+ slots: Partial<Record<string, (_: {
16
+ isRenameActive: boolean;
17
+ isSelected: boolean;
18
+ }) => any>> & {
19
+ optionsMenu?(_: {}): any;
20
+ };
21
+ refs: {
22
+ baseItem: import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('vue').ExtractPropTypes<{
23
+ isSelected: {
24
+ type: BooleanConstructor;
25
+ required: true;
26
+ };
27
+ isDragging: {
28
+ type: BooleanConstructor;
29
+ required: true;
30
+ };
31
+ disabled: {
32
+ type: BooleanConstructor;
33
+ default: boolean;
34
+ };
35
+ }>> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {
36
+ disabled: boolean;
37
+ }, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
38
+ P: {};
39
+ B: {};
40
+ D: {};
41
+ C: {};
42
+ M: {};
43
+ Defaults: {};
44
+ }, Readonly<import('vue').ExtractPropTypes<{
45
+ isSelected: {
46
+ type: BooleanConstructor;
47
+ required: true;
48
+ };
49
+ isDragging: {
50
+ type: BooleanConstructor;
51
+ required: true;
52
+ };
53
+ disabled: {
54
+ type: BooleanConstructor;
55
+ default: boolean;
56
+ };
57
+ }>> & Readonly<{}>, {}, {}, {}, {}, {
58
+ disabled: boolean;
59
+ }> | null;
60
+ renameInputContainer: HTMLDivElement;
61
+ renameInput: import('vue').CreateComponentPublicInstanceWithMixins<Readonly<({
62
+ modelValue?: string;
63
+ } & {
64
+ description?: string;
65
+ } & {
66
+ label: string;
67
+ ariaLabel?: never;
68
+ } & {
69
+ id?: string;
70
+ } & {
71
+ error?: boolean | undefined;
72
+ subText?: string | undefined;
73
+ validating?: boolean | undefined;
74
+ preserveSubTextSpace?: boolean | undefined;
75
+ } & {
76
+ placeholder?: string;
77
+ disabled?: boolean;
78
+ autocomplete?: string;
79
+ } & {
80
+ suggestions?: string[];
81
+ suggestionsHeadline?: string;
82
+ }) | ({
83
+ modelValue?: string;
84
+ } & {
85
+ description?: string;
86
+ } & {
87
+ label?: never;
88
+ ariaLabel: string;
89
+ } & {
90
+ id?: string;
91
+ } & {
92
+ error?: boolean | undefined;
93
+ subText?: string | undefined;
94
+ validating?: boolean | undefined;
95
+ preserveSubTextSpace?: boolean | undefined;
96
+ } & {
97
+ placeholder?: string;
98
+ disabled?: boolean;
99
+ autocomplete?: string;
100
+ } & {
101
+ suggestions?: string[];
102
+ suggestionsHeadline?: string;
103
+ })> & Readonly<{
104
+ "onUpdate:modelValue"?: ((value: string) => any) | undefined;
105
+ }>, {
106
+ focus: (options?: FocusOptions) => void;
107
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
108
+ "update:modelValue": (value: string) => any;
109
+ }, import('vue').PublicProps, {}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {
110
+ baseInput: ({
111
+ $: import('vue').ComponentInternalInstance;
112
+ $data: {};
113
+ $props: {
114
+ readonly modelValue?: string | undefined;
115
+ readonly id?: string | undefined;
116
+ readonly type?: "text" | "email" | "password" | "number" | "tel" | "url" | "search" | undefined;
117
+ readonly min?: number | string | undefined;
118
+ readonly max?: number | string | undefined;
119
+ readonly ariaExpanded?: boolean | undefined;
120
+ readonly step?: number | undefined;
121
+ readonly placeholder?: string | undefined;
122
+ readonly disabled?: boolean | undefined;
123
+ readonly leadingIcon?: import('../..').KdsIconName | undefined;
124
+ readonly trailingIcon?: import('../..').KdsIconName | undefined;
125
+ readonly error?: boolean | undefined;
126
+ readonly autocomplete?: string | undefined;
127
+ readonly ariaLabel?: string | undefined;
128
+ readonly ariaLabelledby?: string | undefined;
129
+ readonly ariaDescribedby?: string | undefined;
130
+ readonly ariaInvalid?: boolean | undefined;
131
+ readonly role?: string | undefined;
132
+ readonly ariaValuenow?: number | undefined;
133
+ readonly ariaValuemin?: number | undefined;
134
+ readonly ariaValuemax?: number | undefined;
135
+ readonly ariaValuetext?: string | undefined;
136
+ readonly ariaActivedescendant?: string | undefined;
137
+ readonly ariaHaspopup?: "listbox" | "menu" | "dialog" | "grid" | "tree" | "true" | undefined;
138
+ readonly ariaControls?: string | undefined;
139
+ readonly ariaAutocomplete?: "none" | "inline" | "list" | "both" | undefined;
140
+ readonly unit?: string | undefined;
141
+ readonly inputmode?: "none" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | "search" | undefined;
142
+ readonly clearable?: boolean | undefined;
143
+ readonly pattern?: string | undefined;
144
+ readonly segments?: import('../../forms/inputs/useInputSegments.helpers').KdsInputSegmentsConfig | undefined;
145
+ readonly onInput?: ((event: Event) => any) | undefined;
146
+ readonly onClick?: ((event: MouseEvent) => any) | undefined;
147
+ readonly onBlur?: ((event: FocusEvent) => any) | undefined;
148
+ readonly onFocus?: ((event: FocusEvent) => any) | undefined;
149
+ readonly onKeydown?: ((event: KeyboardEvent) => any) | undefined;
150
+ readonly onPaste?: ((event: ClipboardEvent) => any) | undefined;
151
+ readonly "onUpdate:modelValue"?: ((value: string) => any) | undefined;
152
+ } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
153
+ $attrs: import('vue').Attrs;
154
+ $refs: {
155
+ [x: string]: unknown;
156
+ } & {
157
+ input: HTMLInputElement;
158
+ };
159
+ $slots: Readonly<{
160
+ [name: string]: import('vue').Slot<any> | undefined;
161
+ }>;
162
+ $root: import('vue').ComponentPublicInstance | null;
163
+ $parent: import('vue').ComponentPublicInstance | null;
164
+ $host: Element | null;
165
+ $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);
166
+ $el: HTMLDivElement;
167
+ $options: import('vue').ComponentOptionsBase<Readonly<{
168
+ modelValue?: string;
169
+ } & {
170
+ id?: string;
171
+ type?: "text" | "email" | "password" | "number" | "tel" | "url" | "search";
172
+ min?: number | string;
173
+ max?: number | string;
174
+ ariaExpanded?: boolean;
175
+ step?: number;
176
+ placeholder?: string;
177
+ disabled?: boolean;
178
+ leadingIcon?: import('../..').KdsIconName;
179
+ trailingIcon?: import('../..').KdsIconName;
180
+ error?: boolean;
181
+ autocomplete?: string;
182
+ ariaLabel?: string;
183
+ ariaLabelledby?: string;
184
+ ariaDescribedby?: string;
185
+ ariaInvalid?: boolean;
186
+ role?: string;
187
+ ariaValuenow?: number;
188
+ ariaValuemin?: number;
189
+ ariaValuemax?: number;
190
+ ariaValuetext?: string;
191
+ ariaActivedescendant?: string;
192
+ ariaHaspopup?: "listbox" | "menu" | "dialog" | "grid" | "tree" | "true";
193
+ ariaControls?: string;
194
+ ariaAutocomplete?: "none" | "inline" | "list" | "both";
195
+ unit?: string;
196
+ inputmode?: "none" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | "search";
197
+ clearable?: boolean;
198
+ pattern?: string;
199
+ segments?: import('../../forms/inputs/useInputSegments.helpers').KdsInputSegmentsConfig;
200
+ }> & Readonly<{
201
+ onInput?: ((event: Event) => any) | undefined;
202
+ onClick?: ((event: MouseEvent) => any) | undefined;
203
+ onBlur?: ((event: FocusEvent) => any) | undefined;
204
+ onFocus?: ((event: FocusEvent) => any) | undefined;
205
+ onKeydown?: ((event: KeyboardEvent) => any) | undefined;
206
+ onPaste?: ((event: ClipboardEvent) => any) | undefined;
207
+ "onUpdate:modelValue"?: ((value: string) => any) | undefined;
208
+ }>, {
209
+ focus: (options?: FocusOptions) => void;
210
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
211
+ input: (event: Event) => any;
212
+ click: (event: MouseEvent) => any;
213
+ blur: (event: FocusEvent) => any;
214
+ focus: (event: FocusEvent) => any;
215
+ keydown: (event: KeyboardEvent) => any;
216
+ paste: (event: ClipboardEvent) => any;
217
+ "update:modelValue": (value: string) => any;
218
+ }, string, {}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
219
+ beforeCreate?: (() => void) | (() => void)[];
220
+ created?: (() => void) | (() => void)[];
221
+ beforeMount?: (() => void) | (() => void)[];
222
+ mounted?: (() => void) | (() => void)[];
223
+ beforeUpdate?: (() => void) | (() => void)[];
224
+ updated?: (() => void) | (() => void)[];
225
+ activated?: (() => void) | (() => void)[];
226
+ deactivated?: (() => void) | (() => void)[];
227
+ beforeDestroy?: (() => void) | (() => void)[];
228
+ beforeUnmount?: (() => void) | (() => void)[];
229
+ destroyed?: (() => void) | (() => void)[];
230
+ unmounted?: (() => void) | (() => void)[];
231
+ renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
232
+ renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
233
+ errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
234
+ };
235
+ $forceUpdate: () => void;
236
+ $nextTick: typeof nextTick;
237
+ $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
238
+ } & Readonly<{}> & Omit<Readonly<{
239
+ modelValue?: string;
240
+ } & {
241
+ id?: string;
242
+ type?: "text" | "email" | "password" | "number" | "tel" | "url" | "search";
243
+ min?: number | string;
244
+ max?: number | string;
245
+ ariaExpanded?: boolean;
246
+ step?: number;
247
+ placeholder?: string;
248
+ disabled?: boolean;
249
+ leadingIcon?: import('../..').KdsIconName;
250
+ trailingIcon?: import('../..').KdsIconName;
251
+ error?: boolean;
252
+ autocomplete?: string;
253
+ ariaLabel?: string;
254
+ ariaLabelledby?: string;
255
+ ariaDescribedby?: string;
256
+ ariaInvalid?: boolean;
257
+ role?: string;
258
+ ariaValuenow?: number;
259
+ ariaValuemin?: number;
260
+ ariaValuemax?: number;
261
+ ariaValuetext?: string;
262
+ ariaActivedescendant?: string;
263
+ ariaHaspopup?: "listbox" | "menu" | "dialog" | "grid" | "tree" | "true";
264
+ ariaControls?: string;
265
+ ariaAutocomplete?: "none" | "inline" | "list" | "both";
266
+ unit?: string;
267
+ inputmode?: "none" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | "search";
268
+ clearable?: boolean;
269
+ pattern?: string;
270
+ segments?: import('../../forms/inputs/useInputSegments.helpers').KdsInputSegmentsConfig;
271
+ }> & Readonly<{
272
+ onInput?: ((event: Event) => any) | undefined;
273
+ onClick?: ((event: MouseEvent) => any) | undefined;
274
+ onBlur?: ((event: FocusEvent) => any) | undefined;
275
+ onFocus?: ((event: FocusEvent) => any) | undefined;
276
+ onKeydown?: ((event: KeyboardEvent) => any) | undefined;
277
+ onPaste?: ((event: ClipboardEvent) => any) | undefined;
278
+ "onUpdate:modelValue"?: ((value: string) => any) | undefined;
279
+ }>, "focus"> & {
280
+ focus: (options?: FocusOptions) => void;
281
+ } & {} & import('vue').ComponentCustomProperties & {} & {
282
+ $slots: {
283
+ leading?(_: {}): any;
284
+ trailing?(_: {}): any;
285
+ };
286
+ }) | null;
287
+ popoverRef: ({
288
+ $: import('vue').ComponentInternalInstance;
289
+ $data: {};
290
+ $props: ({
291
+ readonly modelValue?: boolean | undefined;
292
+ readonly role?: import('../..').KdsPopoverRole | undefined;
293
+ readonly popoverType?: import('../..').KdsPopoverType | undefined;
294
+ readonly fullWidth?: boolean | undefined;
295
+ readonly maxInlineSize?: string | undefined;
296
+ readonly content?: string | undefined;
297
+ readonly placement?: Exclude<import('../..').KdsPopoverPlacement, "custom"> | undefined;
298
+ readonly customPlacementPosition?: never | undefined;
299
+ readonly "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
300
+ } | {
301
+ readonly modelValue?: boolean | undefined;
302
+ readonly role?: import('../..').KdsPopoverRole | undefined;
303
+ readonly popoverType?: import('../..').KdsPopoverType | undefined;
304
+ readonly fullWidth?: boolean | undefined;
305
+ readonly maxInlineSize?: string | undefined;
306
+ readonly content?: string | undefined;
307
+ readonly placement: "custom";
308
+ readonly customPlacementPosition: {
309
+ x: number;
310
+ y: number;
311
+ };
312
+ readonly "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
313
+ }) & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
314
+ $attrs: import('vue').Attrs;
315
+ $refs: {
316
+ [x: string]: unknown;
317
+ } & {
318
+ popoverEl: HTMLDivElement;
319
+ };
320
+ $slots: Readonly<{
321
+ [name: string]: import('vue').Slot<any> | undefined;
322
+ }>;
323
+ $root: import('vue').ComponentPublicInstance | null;
324
+ $parent: import('vue').ComponentPublicInstance | null;
325
+ $host: Element | null;
326
+ $emit: (event: "update:modelValue", value: boolean) => void;
327
+ $el: HTMLDivElement;
328
+ $options: import('vue').ComponentOptionsBase<Readonly<({
329
+ modelValue?: boolean;
330
+ } & {
331
+ role?: import('../..').KdsPopoverRole;
332
+ popoverType?: import('../..').KdsPopoverType;
333
+ fullWidth?: boolean;
334
+ maxInlineSize?: string;
335
+ content?: string;
336
+ } & {
337
+ placement?: Exclude<import('../..').KdsPopoverPlacement, "custom">;
338
+ customPlacementPosition?: never;
339
+ }) | ({
340
+ modelValue?: boolean;
341
+ } & {
342
+ role?: import('../..').KdsPopoverRole;
343
+ popoverType?: import('../..').KdsPopoverType;
344
+ fullWidth?: boolean;
345
+ maxInlineSize?: string;
346
+ content?: string;
347
+ } & {
348
+ placement: "custom";
349
+ customPlacementPosition: {
350
+ x: number;
351
+ y: number;
352
+ };
353
+ })> & Readonly<{
354
+ "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
355
+ }>, {
356
+ anchorStyle: Record<string, string>;
357
+ popoverId: string;
358
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
359
+ "update:modelValue": (value: boolean) => any;
360
+ }, string, {}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
361
+ beforeCreate?: (() => void) | (() => void)[];
362
+ created?: (() => void) | (() => void)[];
363
+ beforeMount?: (() => void) | (() => void)[];
364
+ mounted?: (() => void) | (() => void)[];
365
+ beforeUpdate?: (() => void) | (() => void)[];
366
+ updated?: (() => void) | (() => void)[];
367
+ activated?: (() => void) | (() => void)[];
368
+ deactivated?: (() => void) | (() => void)[];
369
+ beforeDestroy?: (() => void) | (() => void)[];
370
+ beforeUnmount?: (() => void) | (() => void)[];
371
+ destroyed?: (() => void) | (() => void)[];
372
+ unmounted?: (() => void) | (() => void)[];
373
+ renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
374
+ renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
375
+ errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
376
+ };
377
+ $forceUpdate: () => void;
378
+ $nextTick: typeof nextTick;
379
+ $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
380
+ } & Readonly<{}> & Omit<{} & (Readonly<({
381
+ modelValue?: boolean;
382
+ } & {
383
+ role?: import('../..').KdsPopoverRole;
384
+ popoverType?: import('../..').KdsPopoverType;
385
+ fullWidth?: boolean;
386
+ maxInlineSize?: string;
387
+ content?: string;
388
+ } & {
389
+ placement?: Exclude<import('../..').KdsPopoverPlacement, "custom">;
390
+ customPlacementPosition?: never;
391
+ }) | ({
392
+ modelValue?: boolean;
393
+ } & {
394
+ role?: import('../..').KdsPopoverRole;
395
+ popoverType?: import('../..').KdsPopoverType;
396
+ fullWidth?: boolean;
397
+ maxInlineSize?: string;
398
+ content?: string;
399
+ } & {
400
+ placement: "custom";
401
+ customPlacementPosition: {
402
+ x: number;
403
+ y: number;
404
+ };
405
+ })> & Readonly<{
406
+ "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
407
+ }>), "anchorStyle" | "popoverId"> & {
408
+ anchorStyle: Record<string, string>;
409
+ popoverId: string;
410
+ } & {} & import('vue').ComponentCustomProperties & {} & {
411
+ $slots: {
412
+ default?(_: {}): any;
413
+ };
414
+ }) | null;
415
+ listContainerRef: import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('..').KdsListContainerProps> & Readonly<{
416
+ onItemClick?: ((id?: string | undefined) => any) | undefined;
417
+ }>, {
418
+ handleKeydown: (event: KeyboardEvent) => void;
419
+ handleFocus: () => void;
420
+ handleBlur: () => void;
421
+ activeDescendant: Readonly<import('vue').Ref<string | undefined>>;
422
+ focus: () => void;
423
+ scrollSelectedIntoView: () => void;
424
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
425
+ itemClick: (id?: string | undefined) => any;
426
+ }, import('vue').PublicProps, {}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {
427
+ containerEl: HTMLDivElement;
428
+ }, HTMLDivElement, import('vue').ComponentProvideOptions, {
429
+ P: {};
430
+ B: {};
431
+ D: {};
432
+ C: {};
433
+ M: {};
434
+ Defaults: {};
435
+ }, Readonly<import('..').KdsListContainerProps> & Readonly<{
436
+ onItemClick?: ((id?: string | undefined) => any) | undefined;
437
+ }>, {
438
+ handleKeydown: (event: KeyboardEvent) => void;
439
+ handleFocus: () => void;
440
+ handleBlur: () => void;
441
+ activeDescendant: Readonly<import('vue').Ref<string | undefined>>;
442
+ focus: () => void;
443
+ scrollSelectedIntoView: () => void;
444
+ }, {}, {}, {}, {}> | null;
445
+ }, HTMLDivElement, import('vue').ComponentProvideOptions, {
446
+ P: {};
447
+ B: {};
448
+ D: {};
449
+ C: {};
450
+ M: {};
451
+ Defaults: {};
452
+ }, {} & (Readonly<({
453
+ modelValue?: string;
454
+ } & {
455
+ description?: string;
456
+ } & {
457
+ label: string;
458
+ ariaLabel?: never;
459
+ } & {
460
+ id?: string;
461
+ } & {
462
+ error?: boolean | undefined;
463
+ subText?: string | undefined;
464
+ validating?: boolean | undefined;
465
+ preserveSubTextSpace?: boolean | undefined;
466
+ } & {
467
+ placeholder?: string;
468
+ disabled?: boolean;
469
+ autocomplete?: string;
470
+ } & {
471
+ suggestions?: string[];
472
+ suggestionsHeadline?: string;
473
+ }) | ({
474
+ modelValue?: string;
475
+ } & {
476
+ description?: string;
477
+ } & {
478
+ label?: never;
479
+ ariaLabel: string;
480
+ } & {
481
+ id?: string;
482
+ } & {
483
+ error?: boolean | undefined;
484
+ subText?: string | undefined;
485
+ validating?: boolean | undefined;
486
+ preserveSubTextSpace?: boolean | undefined;
487
+ } & {
488
+ placeholder?: string;
489
+ disabled?: boolean;
490
+ autocomplete?: string;
491
+ } & {
492
+ suggestions?: string[];
493
+ suggestionsHeadline?: string;
494
+ })> & Readonly<{
495
+ "onUpdate:modelValue"?: ((value: string) => any) | undefined;
496
+ }>), {
497
+ focus: (options?: FocusOptions) => void;
498
+ }, {}, {}, {}, {}> | null;
499
+ };
500
+ rootEl: any;
501
+ };
502
+ type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
503
+ declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
504
+ click: (nativeEvent: MouseEvent) => any;
505
+ contextmenu: (nativeEvent: MouseEvent) => any;
506
+ dblclick: (nativeEvent: MouseEvent) => any;
507
+ drag: (nativeEvent: DragEvent) => any;
508
+ dragend: (nativeEvent: DragEvent) => any;
509
+ dragenter: (nativeEvent: DragEvent) => any;
510
+ dragleave: (nativeEvent: DragEvent) => any;
511
+ dragover: (nativeEvent: DragEvent) => any;
512
+ dragstart: (nativeEvent: DragEvent) => any;
513
+ drop: (nativeEvent: DragEvent) => any;
514
+ "rename:submit": (payload: {
515
+ itemId: string;
516
+ newName: string;
517
+ }) => any;
518
+ "rename:clear": () => any;
519
+ }, string, import('vue').PublicProps, Readonly<Props> & Readonly<{
520
+ onClick?: ((nativeEvent: MouseEvent) => any) | undefined;
521
+ onContextmenu?: ((nativeEvent: MouseEvent) => any) | undefined;
522
+ onDblclick?: ((nativeEvent: MouseEvent) => any) | undefined;
523
+ onDrag?: ((nativeEvent: DragEvent) => any) | undefined;
524
+ onDragend?: ((nativeEvent: DragEvent) => any) | undefined;
525
+ onDragenter?: ((nativeEvent: DragEvent) => any) | undefined;
526
+ onDragleave?: ((nativeEvent: DragEvent) => any) | undefined;
527
+ onDragover?: ((nativeEvent: DragEvent) => any) | undefined;
528
+ onDragstart?: ((nativeEvent: DragEvent) => any) | undefined;
529
+ onDrop?: ((nativeEvent: DragEvent) => any) | undefined;
530
+ "onRename:submit"?: ((payload: {
531
+ itemId: string;
532
+ newName: string;
533
+ }) => any) | undefined;
534
+ "onRename:clear"?: (() => any) | undefined;
535
+ }>, {
536
+ isDraggingEnabled: boolean;
537
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
538
+ baseItem: import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('vue').ExtractPropTypes<{
539
+ isSelected: {
540
+ type: BooleanConstructor;
541
+ required: true;
542
+ };
543
+ isDragging: {
544
+ type: BooleanConstructor;
545
+ required: true;
546
+ };
547
+ disabled: {
548
+ type: BooleanConstructor;
549
+ default: boolean;
550
+ };
551
+ }>> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {
552
+ disabled: boolean;
553
+ }, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
554
+ P: {};
555
+ B: {};
556
+ D: {};
557
+ C: {};
558
+ M: {};
559
+ Defaults: {};
560
+ }, Readonly<import('vue').ExtractPropTypes<{
561
+ isSelected: {
562
+ type: BooleanConstructor;
563
+ required: true;
564
+ };
565
+ isDragging: {
566
+ type: BooleanConstructor;
567
+ required: true;
568
+ };
569
+ disabled: {
570
+ type: BooleanConstructor;
571
+ default: boolean;
572
+ };
573
+ }>> & Readonly<{}>, {}, {}, {}, {}, {
574
+ disabled: boolean;
575
+ }> | null;
576
+ renameInputContainer: HTMLDivElement;
577
+ renameInput: import('vue').CreateComponentPublicInstanceWithMixins<Readonly<({
578
+ modelValue?: string;
579
+ } & {
580
+ description?: string;
581
+ } & {
582
+ label: string;
583
+ ariaLabel?: never;
584
+ } & {
585
+ id?: string;
586
+ } & {
587
+ error?: boolean | undefined;
588
+ subText?: string | undefined;
589
+ validating?: boolean | undefined;
590
+ preserveSubTextSpace?: boolean | undefined;
591
+ } & {
592
+ placeholder?: string;
593
+ disabled?: boolean;
594
+ autocomplete?: string;
595
+ } & {
596
+ suggestions?: string[];
597
+ suggestionsHeadline?: string;
598
+ }) | ({
599
+ modelValue?: string;
600
+ } & {
601
+ description?: string;
602
+ } & {
603
+ label?: never;
604
+ ariaLabel: string;
605
+ } & {
606
+ id?: string;
607
+ } & {
608
+ error?: boolean | undefined;
609
+ subText?: string | undefined;
610
+ validating?: boolean | undefined;
611
+ preserveSubTextSpace?: boolean | undefined;
612
+ } & {
613
+ placeholder?: string;
614
+ disabled?: boolean;
615
+ autocomplete?: string;
616
+ } & {
617
+ suggestions?: string[];
618
+ suggestionsHeadline?: string;
619
+ })> & Readonly<{
620
+ "onUpdate:modelValue"?: ((value: string) => any) | undefined;
621
+ }>, {
622
+ focus: (options?: FocusOptions) => void;
623
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
624
+ "update:modelValue": (value: string) => any;
625
+ }, import('vue').PublicProps, {}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {
626
+ baseInput: ({
627
+ $: import('vue').ComponentInternalInstance;
628
+ $data: {};
629
+ $props: {
630
+ readonly modelValue?: string | undefined;
631
+ readonly id?: string | undefined;
632
+ readonly type?: "text" | "email" | "password" | "number" | "tel" | "url" | "search" | undefined;
633
+ readonly min?: number | string | undefined;
634
+ readonly max?: number | string | undefined;
635
+ readonly ariaExpanded?: boolean | undefined;
636
+ readonly step?: number | undefined;
637
+ readonly placeholder?: string | undefined;
638
+ readonly disabled?: boolean | undefined;
639
+ readonly leadingIcon?: import('../..').KdsIconName | undefined;
640
+ readonly trailingIcon?: import('../..').KdsIconName | undefined;
641
+ readonly error?: boolean | undefined;
642
+ readonly autocomplete?: string | undefined;
643
+ readonly ariaLabel?: string | undefined;
644
+ readonly ariaLabelledby?: string | undefined;
645
+ readonly ariaDescribedby?: string | undefined;
646
+ readonly ariaInvalid?: boolean | undefined;
647
+ readonly role?: string | undefined;
648
+ readonly ariaValuenow?: number | undefined;
649
+ readonly ariaValuemin?: number | undefined;
650
+ readonly ariaValuemax?: number | undefined;
651
+ readonly ariaValuetext?: string | undefined;
652
+ readonly ariaActivedescendant?: string | undefined;
653
+ readonly ariaHaspopup?: "listbox" | "menu" | "dialog" | "grid" | "tree" | "true" | undefined;
654
+ readonly ariaControls?: string | undefined;
655
+ readonly ariaAutocomplete?: "none" | "inline" | "list" | "both" | undefined;
656
+ readonly unit?: string | undefined;
657
+ readonly inputmode?: "none" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | "search" | undefined;
658
+ readonly clearable?: boolean | undefined;
659
+ readonly pattern?: string | undefined;
660
+ readonly segments?: import('../../forms/inputs/useInputSegments.helpers').KdsInputSegmentsConfig | undefined;
661
+ readonly onInput?: ((event: Event) => any) | undefined;
662
+ readonly onClick?: ((event: MouseEvent) => any) | undefined;
663
+ readonly onBlur?: ((event: FocusEvent) => any) | undefined;
664
+ readonly onFocus?: ((event: FocusEvent) => any) | undefined;
665
+ readonly onKeydown?: ((event: KeyboardEvent) => any) | undefined;
666
+ readonly onPaste?: ((event: ClipboardEvent) => any) | undefined;
667
+ readonly "onUpdate:modelValue"?: ((value: string) => any) | undefined;
668
+ } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
669
+ $attrs: import('vue').Attrs;
670
+ $refs: {
671
+ [x: string]: unknown;
672
+ } & {
673
+ input: HTMLInputElement;
674
+ };
675
+ $slots: Readonly<{
676
+ [name: string]: import('vue').Slot<any> | undefined;
677
+ }>;
678
+ $root: import('vue').ComponentPublicInstance | null;
679
+ $parent: import('vue').ComponentPublicInstance | null;
680
+ $host: Element | null;
681
+ $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);
682
+ $el: HTMLDivElement;
683
+ $options: import('vue').ComponentOptionsBase<Readonly<{
684
+ modelValue?: string;
685
+ } & {
686
+ id?: string;
687
+ type?: "text" | "email" | "password" | "number" | "tel" | "url" | "search";
688
+ min?: number | string;
689
+ max?: number | string;
690
+ ariaExpanded?: boolean;
691
+ step?: number;
692
+ placeholder?: string;
693
+ disabled?: boolean;
694
+ leadingIcon?: import('../..').KdsIconName;
695
+ trailingIcon?: import('../..').KdsIconName;
696
+ error?: boolean;
697
+ autocomplete?: string;
698
+ ariaLabel?: string;
699
+ ariaLabelledby?: string;
700
+ ariaDescribedby?: string;
701
+ ariaInvalid?: boolean;
702
+ role?: string;
703
+ ariaValuenow?: number;
704
+ ariaValuemin?: number;
705
+ ariaValuemax?: number;
706
+ ariaValuetext?: string;
707
+ ariaActivedescendant?: string;
708
+ ariaHaspopup?: "listbox" | "menu" | "dialog" | "grid" | "tree" | "true";
709
+ ariaControls?: string;
710
+ ariaAutocomplete?: "none" | "inline" | "list" | "both";
711
+ unit?: string;
712
+ inputmode?: "none" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | "search";
713
+ clearable?: boolean;
714
+ pattern?: string;
715
+ segments?: import('../../forms/inputs/useInputSegments.helpers').KdsInputSegmentsConfig;
716
+ }> & Readonly<{
717
+ onInput?: ((event: Event) => any) | undefined;
718
+ onClick?: ((event: MouseEvent) => any) | undefined;
719
+ onBlur?: ((event: FocusEvent) => any) | undefined;
720
+ onFocus?: ((event: FocusEvent) => any) | undefined;
721
+ onKeydown?: ((event: KeyboardEvent) => any) | undefined;
722
+ onPaste?: ((event: ClipboardEvent) => any) | undefined;
723
+ "onUpdate:modelValue"?: ((value: string) => any) | undefined;
724
+ }>, {
725
+ focus: (options?: FocusOptions) => void;
726
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
727
+ input: (event: Event) => any;
728
+ click: (event: MouseEvent) => any;
729
+ blur: (event: FocusEvent) => any;
730
+ focus: (event: FocusEvent) => any;
731
+ keydown: (event: KeyboardEvent) => any;
732
+ paste: (event: ClipboardEvent) => any;
733
+ "update:modelValue": (value: string) => any;
734
+ }, string, {}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
735
+ beforeCreate?: (() => void) | (() => void)[];
736
+ created?: (() => void) | (() => void)[];
737
+ beforeMount?: (() => void) | (() => void)[];
738
+ mounted?: (() => void) | (() => void)[];
739
+ beforeUpdate?: (() => void) | (() => void)[];
740
+ updated?: (() => void) | (() => void)[];
741
+ activated?: (() => void) | (() => void)[];
742
+ deactivated?: (() => void) | (() => void)[];
743
+ beforeDestroy?: (() => void) | (() => void)[];
744
+ beforeUnmount?: (() => void) | (() => void)[];
745
+ destroyed?: (() => void) | (() => void)[];
746
+ unmounted?: (() => void) | (() => void)[];
747
+ renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
748
+ renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
749
+ errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
750
+ };
751
+ $forceUpdate: () => void;
752
+ $nextTick: typeof nextTick;
753
+ $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
754
+ } & Readonly<{}> & Omit<Readonly<{
755
+ modelValue?: string;
756
+ } & {
757
+ id?: string;
758
+ type?: "text" | "email" | "password" | "number" | "tel" | "url" | "search";
759
+ min?: number | string;
760
+ max?: number | string;
761
+ ariaExpanded?: boolean;
762
+ step?: number;
763
+ placeholder?: string;
764
+ disabled?: boolean;
765
+ leadingIcon?: import('../..').KdsIconName;
766
+ trailingIcon?: import('../..').KdsIconName;
767
+ error?: boolean;
768
+ autocomplete?: string;
769
+ ariaLabel?: string;
770
+ ariaLabelledby?: string;
771
+ ariaDescribedby?: string;
772
+ ariaInvalid?: boolean;
773
+ role?: string;
774
+ ariaValuenow?: number;
775
+ ariaValuemin?: number;
776
+ ariaValuemax?: number;
777
+ ariaValuetext?: string;
778
+ ariaActivedescendant?: string;
779
+ ariaHaspopup?: "listbox" | "menu" | "dialog" | "grid" | "tree" | "true";
780
+ ariaControls?: string;
781
+ ariaAutocomplete?: "none" | "inline" | "list" | "both";
782
+ unit?: string;
783
+ inputmode?: "none" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | "search";
784
+ clearable?: boolean;
785
+ pattern?: string;
786
+ segments?: import('../../forms/inputs/useInputSegments.helpers').KdsInputSegmentsConfig;
787
+ }> & Readonly<{
788
+ onInput?: ((event: Event) => any) | undefined;
789
+ onClick?: ((event: MouseEvent) => any) | undefined;
790
+ onBlur?: ((event: FocusEvent) => any) | undefined;
791
+ onFocus?: ((event: FocusEvent) => any) | undefined;
792
+ onKeydown?: ((event: KeyboardEvent) => any) | undefined;
793
+ onPaste?: ((event: ClipboardEvent) => any) | undefined;
794
+ "onUpdate:modelValue"?: ((value: string) => any) | undefined;
795
+ }>, "focus"> & {
796
+ focus: (options?: FocusOptions) => void;
797
+ } & {} & import('vue').ComponentCustomProperties & {} & {
798
+ $slots: {
799
+ leading?(_: {}): any;
800
+ trailing?(_: {}): any;
801
+ };
802
+ }) | null;
803
+ popoverRef: ({
804
+ $: import('vue').ComponentInternalInstance;
805
+ $data: {};
806
+ $props: ({
807
+ readonly modelValue?: boolean | undefined;
808
+ readonly role?: import('../..').KdsPopoverRole | undefined;
809
+ readonly popoverType?: import('../..').KdsPopoverType | undefined;
810
+ readonly fullWidth?: boolean | undefined;
811
+ readonly maxInlineSize?: string | undefined;
812
+ readonly content?: string | undefined;
813
+ readonly placement?: Exclude<import('../..').KdsPopoverPlacement, "custom"> | undefined;
814
+ readonly customPlacementPosition?: never | undefined;
815
+ readonly "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
816
+ } | {
817
+ readonly modelValue?: boolean | undefined;
818
+ readonly role?: import('../..').KdsPopoverRole | undefined;
819
+ readonly popoverType?: import('../..').KdsPopoverType | undefined;
820
+ readonly fullWidth?: boolean | undefined;
821
+ readonly maxInlineSize?: string | undefined;
822
+ readonly content?: string | undefined;
823
+ readonly placement: "custom";
824
+ readonly customPlacementPosition: {
825
+ x: number;
826
+ y: number;
827
+ };
828
+ readonly "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
829
+ }) & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
830
+ $attrs: import('vue').Attrs;
831
+ $refs: {
832
+ [x: string]: unknown;
833
+ } & {
834
+ popoverEl: HTMLDivElement;
835
+ };
836
+ $slots: Readonly<{
837
+ [name: string]: import('vue').Slot<any> | undefined;
838
+ }>;
839
+ $root: import('vue').ComponentPublicInstance | null;
840
+ $parent: import('vue').ComponentPublicInstance | null;
841
+ $host: Element | null;
842
+ $emit: (event: "update:modelValue", value: boolean) => void;
843
+ $el: HTMLDivElement;
844
+ $options: import('vue').ComponentOptionsBase<Readonly<({
845
+ modelValue?: boolean;
846
+ } & {
847
+ role?: import('../..').KdsPopoverRole;
848
+ popoverType?: import('../..').KdsPopoverType;
849
+ fullWidth?: boolean;
850
+ maxInlineSize?: string;
851
+ content?: string;
852
+ } & {
853
+ placement?: Exclude<import('../..').KdsPopoverPlacement, "custom">;
854
+ customPlacementPosition?: never;
855
+ }) | ({
856
+ modelValue?: boolean;
857
+ } & {
858
+ role?: import('../..').KdsPopoverRole;
859
+ popoverType?: import('../..').KdsPopoverType;
860
+ fullWidth?: boolean;
861
+ maxInlineSize?: string;
862
+ content?: string;
863
+ } & {
864
+ placement: "custom";
865
+ customPlacementPosition: {
866
+ x: number;
867
+ y: number;
868
+ };
869
+ })> & Readonly<{
870
+ "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
871
+ }>, {
872
+ anchorStyle: Record<string, string>;
873
+ popoverId: string;
874
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
875
+ "update:modelValue": (value: boolean) => any;
876
+ }, string, {}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
877
+ beforeCreate?: (() => void) | (() => void)[];
878
+ created?: (() => void) | (() => void)[];
879
+ beforeMount?: (() => void) | (() => void)[];
880
+ mounted?: (() => void) | (() => void)[];
881
+ beforeUpdate?: (() => void) | (() => void)[];
882
+ updated?: (() => void) | (() => void)[];
883
+ activated?: (() => void) | (() => void)[];
884
+ deactivated?: (() => void) | (() => void)[];
885
+ beforeDestroy?: (() => void) | (() => void)[];
886
+ beforeUnmount?: (() => void) | (() => void)[];
887
+ destroyed?: (() => void) | (() => void)[];
888
+ unmounted?: (() => void) | (() => void)[];
889
+ renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
890
+ renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
891
+ errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
892
+ };
893
+ $forceUpdate: () => void;
894
+ $nextTick: typeof nextTick;
895
+ $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
896
+ } & Readonly<{}> & Omit<{} & (Readonly<({
897
+ modelValue?: boolean;
898
+ } & {
899
+ role?: import('../..').KdsPopoverRole;
900
+ popoverType?: import('../..').KdsPopoverType;
901
+ fullWidth?: boolean;
902
+ maxInlineSize?: string;
903
+ content?: string;
904
+ } & {
905
+ placement?: Exclude<import('../..').KdsPopoverPlacement, "custom">;
906
+ customPlacementPosition?: never;
907
+ }) | ({
908
+ modelValue?: boolean;
909
+ } & {
910
+ role?: import('../..').KdsPopoverRole;
911
+ popoverType?: import('../..').KdsPopoverType;
912
+ fullWidth?: boolean;
913
+ maxInlineSize?: string;
914
+ content?: string;
915
+ } & {
916
+ placement: "custom";
917
+ customPlacementPosition: {
918
+ x: number;
919
+ y: number;
920
+ };
921
+ })> & Readonly<{
922
+ "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
923
+ }>), "anchorStyle" | "popoverId"> & {
924
+ anchorStyle: Record<string, string>;
925
+ popoverId: string;
926
+ } & {} & import('vue').ComponentCustomProperties & {} & {
927
+ $slots: {
928
+ default?(_: {}): any;
929
+ };
930
+ }) | null;
931
+ listContainerRef: import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('..').KdsListContainerProps> & Readonly<{
932
+ onItemClick?: ((id?: string | undefined) => any) | undefined;
933
+ }>, {
934
+ handleKeydown: (event: KeyboardEvent) => void;
935
+ handleFocus: () => void;
936
+ handleBlur: () => void;
937
+ activeDescendant: Readonly<import('vue').Ref<string | undefined>>;
938
+ focus: () => void;
939
+ scrollSelectedIntoView: () => void;
940
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
941
+ itemClick: (id?: string | undefined) => any;
942
+ }, import('vue').PublicProps, {}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {
943
+ containerEl: HTMLDivElement;
944
+ }, HTMLDivElement, import('vue').ComponentProvideOptions, {
945
+ P: {};
946
+ B: {};
947
+ D: {};
948
+ C: {};
949
+ M: {};
950
+ Defaults: {};
951
+ }, Readonly<import('..').KdsListContainerProps> & Readonly<{
952
+ onItemClick?: ((id?: string | undefined) => any) | undefined;
953
+ }>, {
954
+ handleKeydown: (event: KeyboardEvent) => void;
955
+ handleFocus: () => void;
956
+ handleBlur: () => void;
957
+ activeDescendant: Readonly<import('vue').Ref<string | undefined>>;
958
+ focus: () => void;
959
+ scrollSelectedIntoView: () => void;
960
+ }, {}, {}, {}, {}> | null;
961
+ }, HTMLDivElement, import('vue').ComponentProvideOptions, {
962
+ P: {};
963
+ B: {};
964
+ D: {};
965
+ C: {};
966
+ M: {};
967
+ Defaults: {};
968
+ }, {} & (Readonly<({
969
+ modelValue?: string;
970
+ } & {
971
+ description?: string;
972
+ } & {
973
+ label: string;
974
+ ariaLabel?: never;
975
+ } & {
976
+ id?: string;
977
+ } & {
978
+ error?: boolean | undefined;
979
+ subText?: string | undefined;
980
+ validating?: boolean | undefined;
981
+ preserveSubTextSpace?: boolean | undefined;
982
+ } & {
983
+ placeholder?: string;
984
+ disabled?: boolean;
985
+ autocomplete?: string;
986
+ } & {
987
+ suggestions?: string[];
988
+ suggestionsHeadline?: string;
989
+ }) | ({
990
+ modelValue?: string;
991
+ } & {
992
+ description?: string;
993
+ } & {
994
+ label?: never;
995
+ ariaLabel: string;
996
+ } & {
997
+ id?: string;
998
+ } & {
999
+ error?: boolean | undefined;
1000
+ subText?: string | undefined;
1001
+ validating?: boolean | undefined;
1002
+ preserveSubTextSpace?: boolean | undefined;
1003
+ } & {
1004
+ placeholder?: string;
1005
+ disabled?: boolean;
1006
+ autocomplete?: string;
1007
+ } & {
1008
+ suggestions?: string[];
1009
+ suggestionsHeadline?: string;
1010
+ })> & Readonly<{
1011
+ "onUpdate:modelValue"?: ((value: string) => any) | undefined;
1012
+ }>), {
1013
+ focus: (options?: FocusOptions) => void;
1014
+ }, {}, {}, {}, {}> | null;
1015
+ }, any>;
1016
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
1017
+ export default _default;
1018
+ type __VLS_WithTemplateSlots<T, S> = T & {
1019
+ new (): {
1020
+ $slots: S;
1021
+ };
1022
+ };
1023
+ //# sourceMappingURL=FileExplorerItem.vue.d.ts.map