@knime/kds-components 0.30.2 → 0.30.4

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