@knime/kds-components 0.23.2 → 0.24.0

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 (148) hide show
  1. package/dist/index.css +531 -1523
  2. package/dist/index.js +7234 -10323
  3. package/dist/index.js.map +1 -1
  4. package/dist/src/{containers/ListItem/ListItemDivider/ListItemDivider.vue.d.ts → accessories/Divider/KdsDivider.vue.d.ts} +1 -1
  5. package/dist/src/accessories/Divider/KdsDivider.vue.d.ts.map +1 -0
  6. package/dist/src/accessories/Divider/index.d.ts +2 -0
  7. package/dist/src/accessories/Divider/index.d.ts.map +1 -0
  8. package/dist/src/accessories/index.d.ts +1 -0
  9. package/dist/src/accessories/index.d.ts.map +1 -1
  10. package/dist/src/buttons/KdsMenuButton/KdsMenuButton.vue.d.ts +71 -38
  11. package/dist/src/buttons/KdsMenuButton/KdsMenuButton.vue.d.ts.map +1 -1
  12. package/dist/src/buttons/KdsSplitButton/KdsSplitButton.vue.d.ts +71 -38
  13. package/dist/src/buttons/KdsSplitButton/KdsSplitButton.vue.d.ts.map +1 -1
  14. package/dist/src/containers/ContextMenu/KdsContextMenu.vue.d.ts +14 -0
  15. package/dist/src/containers/ContextMenu/KdsContextMenu.vue.d.ts.map +1 -0
  16. package/dist/src/containers/ContextMenu/index.d.ts +3 -0
  17. package/dist/src/containers/ContextMenu/index.d.ts.map +1 -0
  18. package/dist/src/containers/ContextMenu/types.d.ts +35 -0
  19. package/dist/src/containers/ContextMenu/types.d.ts.map +1 -0
  20. package/dist/src/containers/ListContainer/KdsListContainer.vue.d.ts +1 -0
  21. package/dist/src/containers/ListContainer/KdsListContainer.vue.d.ts.map +1 -1
  22. package/dist/src/containers/ListContainer/types.d.ts +2 -0
  23. package/dist/src/containers/ListContainer/types.d.ts.map +1 -1
  24. package/dist/src/containers/ListItem/KdsListItem/KdsListItem.vue.d.ts.map +1 -1
  25. package/dist/src/containers/ListItem/KdsListItem/types.d.ts +25 -3
  26. package/dist/src/containers/ListItem/KdsListItem/types.d.ts.map +1 -1
  27. package/dist/src/containers/Menu/KdsMenu.vue.d.ts +363 -0
  28. package/dist/src/containers/Menu/KdsMenu.vue.d.ts.map +1 -0
  29. package/dist/src/containers/Menu/index.d.ts +3 -0
  30. package/dist/src/containers/Menu/index.d.ts.map +1 -0
  31. package/dist/src/containers/Menu/types.d.ts +13 -0
  32. package/dist/src/containers/Menu/types.d.ts.map +1 -0
  33. package/dist/src/containers/MenuContainer/KdsMenuContainer.vue.d.ts +1 -28
  34. package/dist/src/containers/MenuContainer/KdsMenuContainer.vue.d.ts.map +1 -1
  35. package/dist/src/containers/MenuContainer/KdsMenuItem.vue.d.ts +14 -0
  36. package/dist/src/containers/MenuContainer/KdsMenuItem.vue.d.ts.map +1 -0
  37. package/dist/src/containers/MenuContainer/types.d.ts +23 -5
  38. package/dist/src/containers/MenuContainer/types.d.ts.map +1 -1
  39. package/dist/src/containers/_helpers/useListItemKeyboardNav.d.ts +27 -0
  40. package/dist/src/containers/_helpers/useListItemKeyboardNav.d.ts.map +1 -0
  41. package/dist/src/containers/_helpers/useStableItemIds.d.ts +19 -0
  42. package/dist/src/containers/_helpers/useStableItemIds.d.ts.map +1 -0
  43. package/dist/src/containers/index.d.ts +5 -2
  44. package/dist/src/containers/index.d.ts.map +1 -1
  45. package/dist/src/forms/_helper/InfoPopover/KdsInfoToggleButton.vue.d.ts +136 -16
  46. package/dist/src/forms/_helper/InfoPopover/KdsInfoToggleButton.vue.d.ts.map +1 -1
  47. package/dist/src/forms/_helper/KdsLabel.vue.d.ts.map +1 -1
  48. package/dist/src/forms/_helper/VariablePopover/KdsVariableToggleButton.vue.d.ts +136 -16
  49. package/dist/src/forms/_helper/VariablePopover/KdsVariableToggleButton.vue.d.ts.map +1 -1
  50. package/dist/src/forms/inputs/BaseInput.vue.d.ts +7 -0
  51. package/dist/src/forms/inputs/BaseInput.vue.d.ts.map +1 -1
  52. package/dist/src/forms/inputs/ColorInput/KdsColorInput.vue.d.ts +68 -8
  53. package/dist/src/forms/inputs/ColorInput/KdsColorInput.vue.d.ts.map +1 -1
  54. package/dist/src/forms/inputs/DateInput/KdsDateInput.vue.d.ts +184 -99
  55. package/dist/src/forms/inputs/DateInput/KdsDateInput.vue.d.ts.map +1 -1
  56. package/dist/src/forms/inputs/DateInput/KdsDatePicker.vue.d.ts +88 -0
  57. package/dist/src/forms/inputs/DateInput/KdsDatePicker.vue.d.ts.map +1 -0
  58. package/dist/src/forms/inputs/DateInput/_helper/DatePickerDayGrid.vue.d.ts +17 -0
  59. package/dist/src/forms/inputs/DateInput/_helper/DatePickerDayGrid.vue.d.ts.map +1 -0
  60. package/dist/src/forms/inputs/DateInput/_helper/DatePickerMonthGrid.vue.d.ts +14 -0
  61. package/dist/src/forms/inputs/DateInput/_helper/DatePickerMonthGrid.vue.d.ts.map +1 -0
  62. package/dist/src/forms/inputs/DateInput/_helper/DatePickerYearGrid.vue.d.ts +14 -0
  63. package/dist/src/forms/inputs/DateInput/_helper/DatePickerYearGrid.vue.d.ts.map +1 -0
  64. package/dist/src/forms/inputs/DateInput/_helper/types.d.ts +18 -0
  65. package/dist/src/forms/inputs/DateInput/_helper/types.d.ts.map +1 -0
  66. package/dist/src/forms/inputs/DateInput/dateUtils.d.ts +4 -3
  67. package/dist/src/forms/inputs/DateInput/dateUtils.d.ts.map +1 -1
  68. package/dist/src/forms/inputs/DateInput/enums.d.ts +7 -0
  69. package/dist/src/forms/inputs/DateInput/enums.d.ts.map +1 -0
  70. package/dist/src/forms/inputs/DateInput/index.d.ts +1 -1
  71. package/dist/src/forms/inputs/DateInput/index.d.ts.map +1 -1
  72. package/dist/src/forms/inputs/DateInput/types.d.ts +22 -6
  73. package/dist/src/forms/inputs/DateInput/types.d.ts.map +1 -1
  74. package/dist/src/forms/inputs/DateInput/useDateInputMask.d.ts +12 -0
  75. package/dist/src/forms/inputs/DateInput/useDateInputMask.d.ts.map +1 -0
  76. package/dist/src/forms/inputs/DateTimeFormatInput/KdsDateTimeFormatInput.vue.d.ts +68 -8
  77. package/dist/src/forms/inputs/DateTimeFormatInput/KdsDateTimeFormatInput.vue.d.ts.map +1 -1
  78. package/dist/src/forms/inputs/NumberInput/KdsNumberInput.vue.d.ts +8 -1
  79. package/dist/src/forms/inputs/NumberInput/KdsNumberInput.vue.d.ts.map +1 -1
  80. package/dist/src/forms/inputs/PasswordInput/KdsPasswordInput.vue.d.ts +8 -1
  81. package/dist/src/forms/inputs/PasswordInput/KdsPasswordInput.vue.d.ts.map +1 -1
  82. package/dist/src/forms/inputs/PatternInput/KdsPatternInput.vue.d.ts +8 -1
  83. package/dist/src/forms/inputs/PatternInput/KdsPatternInput.vue.d.ts.map +1 -1
  84. package/dist/src/forms/inputs/SearchInput/KdsSearchInput.vue.d.ts +80 -11
  85. package/dist/src/forms/inputs/SearchInput/KdsSearchInput.vue.d.ts.map +1 -1
  86. package/dist/src/forms/inputs/TextInput/KdsTextInput.vue.d.ts +80 -11
  87. package/dist/src/forms/inputs/TextInput/KdsTextInput.vue.d.ts.map +1 -1
  88. package/dist/src/forms/inputs/TimeInput/KdsTimeInput.vue.d.ts +1221 -0
  89. package/dist/src/forms/inputs/TimeInput/KdsTimeInput.vue.d.ts.map +1 -0
  90. package/dist/src/forms/inputs/TimeInput/TimePicker.vue.d.ts +886 -0
  91. package/dist/src/forms/inputs/TimeInput/TimePicker.vue.d.ts.map +1 -0
  92. package/dist/src/forms/inputs/TimeInput/enums.d.ts +7 -0
  93. package/dist/src/forms/inputs/TimeInput/enums.d.ts.map +1 -0
  94. package/dist/src/forms/inputs/TimeInput/index.d.ts +4 -0
  95. package/dist/src/forms/inputs/TimeInput/index.d.ts.map +1 -0
  96. package/dist/src/forms/inputs/TimeInput/types.d.ts +15 -0
  97. package/dist/src/forms/inputs/TimeInput/types.d.ts.map +1 -0
  98. package/dist/src/forms/inputs/TimeInput/useTimeInputMask.d.ts +13 -0
  99. package/dist/src/forms/inputs/TimeInput/useTimeInputMask.d.ts.map +1 -0
  100. package/dist/src/forms/inputs/UsernameInput/KdsUsernameInput.vue.d.ts +8 -1
  101. package/dist/src/forms/inputs/UsernameInput/KdsUsernameInput.vue.d.ts.map +1 -1
  102. package/dist/src/forms/inputs/UsernameInput/enums.d.ts +1 -1
  103. package/dist/src/forms/inputs/index.d.ts +2 -0
  104. package/dist/src/forms/inputs/index.d.ts.map +1 -1
  105. package/dist/src/forms/inputs/useInputSegments.d.ts +16 -0
  106. package/dist/src/forms/inputs/useInputSegments.d.ts.map +1 -0
  107. package/dist/src/forms/inputs/useInputSegments.helpers.d.ts +64 -0
  108. package/dist/src/forms/inputs/useInputSegments.helpers.d.ts.map +1 -0
  109. package/dist/src/forms/inputs/useInputSegmentsDnd.d.ts +20 -0
  110. package/dist/src/forms/inputs/useInputSegmentsDnd.d.ts.map +1 -0
  111. package/dist/src/forms/inputs/useInputSegmentsMouse.d.ts +19 -0
  112. package/dist/src/forms/inputs/useInputSegmentsMouse.d.ts.map +1 -0
  113. package/dist/src/forms/selects/Dropdown/DropdownContainer.vue.d.ts +12 -3
  114. package/dist/src/forms/selects/Dropdown/DropdownContainer.vue.d.ts.map +1 -1
  115. package/dist/src/forms/selects/Dropdown/KdsDropdown.vue.d.ts +80 -11
  116. package/dist/src/forms/selects/Dropdown/KdsDropdown.vue.d.ts.map +1 -1
  117. package/dist/src/forms/selects/Dropdown/KdsMultiSelectDropdown.vue.d.ts +80 -11
  118. package/dist/src/forms/selects/Dropdown/KdsMultiSelectDropdown.vue.d.ts.map +1 -1
  119. package/dist/src/forms/selects/Dropdown/MultiSelectDropdownContainer.vue.d.ts +12 -3
  120. package/dist/src/forms/selects/Dropdown/MultiSelectDropdownContainer.vue.d.ts.map +1 -1
  121. package/dist/src/index.d.ts +2 -0
  122. package/dist/src/index.d.ts.map +1 -1
  123. package/dist/src/layouts/Navigation/KdsNavItem/KdsNavItem.vue.d.ts +12 -0
  124. package/dist/src/layouts/Navigation/KdsNavItem/KdsNavItem.vue.d.ts.map +1 -0
  125. package/dist/src/layouts/Navigation/KdsNavItem/index.d.ts +3 -0
  126. package/dist/src/layouts/Navigation/KdsNavItem/index.d.ts.map +1 -0
  127. package/dist/src/layouts/Navigation/KdsNavItem/types.d.ts +21 -0
  128. package/dist/src/layouts/Navigation/KdsNavItem/types.d.ts.map +1 -0
  129. package/dist/src/layouts/Navigation/KdsNavigation.vue.d.ts +14 -0
  130. package/dist/src/layouts/Navigation/KdsNavigation.vue.d.ts.map +1 -0
  131. package/dist/src/layouts/Navigation/index.d.ts +5 -0
  132. package/dist/src/layouts/Navigation/index.d.ts.map +1 -0
  133. package/dist/src/layouts/Navigation/types.d.ts +14 -0
  134. package/dist/src/layouts/Navigation/types.d.ts.map +1 -0
  135. package/dist/src/layouts/index.d.ts +2 -0
  136. package/dist/src/layouts/index.d.ts.map +1 -1
  137. package/dist/src/overlays/Popover/KdsPopover.vue.d.ts +52 -7
  138. package/dist/src/overlays/Popover/KdsPopover.vue.d.ts.map +1 -1
  139. package/dist/src/overlays/Popover/enums.d.ts +2 -1
  140. package/dist/src/overlays/Popover/enums.d.ts.map +1 -1
  141. package/dist/src/overlays/Popover/types.d.ts +34 -11
  142. package/dist/src/overlays/Popover/types.d.ts.map +1 -1
  143. package/dist/src/patterns/ResponsiveButtonGroup/KdsResponsiveButtonGroup.vue.d.ts +71 -38
  144. package/dist/src/patterns/ResponsiveButtonGroup/KdsResponsiveButtonGroup.vue.d.ts.map +1 -1
  145. package/package.json +4 -4
  146. package/dist/src/containers/ListItem/ListItemDivider/ListItemDivider.vue.d.ts.map +0 -1
  147. package/dist/src/containers/ListItem/ListItemDivider/index.d.ts +0 -2
  148. package/dist/src/containers/ListItem/ListItemDivider/index.d.ts.map +0 -1
@@ -0,0 +1,1221 @@
1
+ import { nextTick } from 'vue';
2
+ import { Temporal } from 'temporal-polyfill';
3
+ import { KdsTimeInputGranularity, KdsTimeInputProps } from './types.ts';
4
+ type __VLS_Props = KdsTimeInputProps;
5
+ type __VLS_PublicProps = {
6
+ modelValue?: Temporal.PlainTime | null;
7
+ "granularity"?: KdsTimeInputGranularity;
8
+ } & __VLS_Props;
9
+ declare const _default: import('vue').DefineComponent<__VLS_PublicProps, {
10
+ focus: () => void;
11
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
12
+ "update:modelValue": (value: Temporal.PlainTime | null) => any;
13
+ "update:granularity": (value: KdsTimeInputGranularity) => any;
14
+ }, string, import('vue').PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
15
+ "onUpdate:modelValue"?: ((value: Temporal.PlainTime | null) => any) | undefined;
16
+ "onUpdate:granularity"?: ((value: KdsTimeInputGranularity) => any) | undefined;
17
+ }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
18
+ baseInput: ({
19
+ $: import('vue').ComponentInternalInstance;
20
+ $data: {};
21
+ $props: {
22
+ readonly modelValue?: string | undefined;
23
+ readonly id?: string | undefined;
24
+ readonly type?: "text" | "email" | "password" | "number" | "tel" | "url" | "search" | undefined;
25
+ readonly min?: number | string | undefined;
26
+ readonly max?: number | string | undefined;
27
+ readonly ariaExpanded?: boolean | undefined;
28
+ readonly step?: number | undefined;
29
+ readonly placeholder?: string | undefined;
30
+ readonly disabled?: boolean | undefined;
31
+ readonly leadingIcon?: import('../../../index.ts').KdsIconName | undefined;
32
+ readonly trailingIcon?: import('../../../index.ts').KdsIconName | undefined;
33
+ readonly error?: boolean | undefined;
34
+ readonly autocomplete?: string | undefined;
35
+ readonly ariaLabel?: string | undefined;
36
+ readonly ariaLabelledby?: string | undefined;
37
+ readonly ariaDescribedby?: string | undefined;
38
+ readonly ariaInvalid?: boolean | undefined;
39
+ readonly role?: string | undefined;
40
+ readonly ariaValuenow?: number | undefined;
41
+ readonly ariaValuemin?: number | undefined;
42
+ readonly ariaValuemax?: number | undefined;
43
+ readonly ariaValuetext?: string | undefined;
44
+ readonly ariaActivedescendant?: string | undefined;
45
+ readonly ariaHaspopup?: "listbox" | "menu" | "dialog" | "grid" | "tree" | "true" | undefined;
46
+ readonly ariaControls?: string | undefined;
47
+ readonly ariaAutocomplete?: "none" | "inline" | "list" | "both" | undefined;
48
+ readonly unit?: string | undefined;
49
+ readonly inputmode?: "none" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | "search" | undefined;
50
+ readonly clearable?: boolean | undefined;
51
+ readonly pattern?: string | undefined;
52
+ readonly segments?: import('../useInputSegments.helpers.ts').KdsInputSegmentsConfig | undefined;
53
+ readonly onInput?: ((event: Event) => any) | undefined;
54
+ readonly onClick?: ((event: MouseEvent) => any) | undefined;
55
+ readonly onBlur?: ((event: FocusEvent) => any) | undefined;
56
+ readonly onFocus?: ((event: FocusEvent) => any) | undefined;
57
+ readonly onKeydown?: ((event: KeyboardEvent) => any) | undefined;
58
+ readonly onPaste?: ((event: ClipboardEvent) => any) | undefined;
59
+ readonly "onUpdate:modelValue"?: ((value: string) => any) | undefined;
60
+ } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
61
+ $attrs: import('vue').Attrs;
62
+ $refs: {
63
+ [x: string]: unknown;
64
+ } & {
65
+ input: HTMLInputElement;
66
+ };
67
+ $slots: Readonly<{
68
+ [name: string]: import('vue').Slot<any> | undefined;
69
+ }>;
70
+ $root: import('vue').ComponentPublicInstance | null;
71
+ $parent: import('vue').ComponentPublicInstance | null;
72
+ $host: Element | null;
73
+ $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);
74
+ $el: HTMLDivElement;
75
+ $options: import('vue').ComponentOptionsBase<Readonly<{
76
+ modelValue?: string;
77
+ } & {
78
+ id?: string;
79
+ type?: "text" | "email" | "password" | "number" | "tel" | "url" | "search";
80
+ min?: number | string;
81
+ max?: number | string;
82
+ ariaExpanded?: boolean;
83
+ step?: number;
84
+ placeholder?: string;
85
+ disabled?: boolean;
86
+ leadingIcon?: import('../../../index.ts').KdsIconName;
87
+ trailingIcon?: import('../../../index.ts').KdsIconName;
88
+ error?: boolean;
89
+ autocomplete?: string;
90
+ ariaLabel?: string;
91
+ ariaLabelledby?: string;
92
+ ariaDescribedby?: string;
93
+ ariaInvalid?: boolean;
94
+ role?: string;
95
+ ariaValuenow?: number;
96
+ ariaValuemin?: number;
97
+ ariaValuemax?: number;
98
+ ariaValuetext?: string;
99
+ ariaActivedescendant?: string;
100
+ ariaHaspopup?: "listbox" | "menu" | "dialog" | "grid" | "tree" | "true";
101
+ ariaControls?: string;
102
+ ariaAutocomplete?: "none" | "inline" | "list" | "both";
103
+ unit?: string;
104
+ inputmode?: "none" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | "search";
105
+ clearable?: boolean;
106
+ pattern?: string;
107
+ segments?: import('../useInputSegments.helpers.ts').KdsInputSegmentsConfig;
108
+ }> & Readonly<{
109
+ onInput?: ((event: Event) => any) | undefined;
110
+ onClick?: ((event: MouseEvent) => any) | undefined;
111
+ onBlur?: ((event: FocusEvent) => any) | undefined;
112
+ onFocus?: ((event: FocusEvent) => any) | undefined;
113
+ onKeydown?: ((event: KeyboardEvent) => any) | undefined;
114
+ onPaste?: ((event: ClipboardEvent) => any) | undefined;
115
+ "onUpdate:modelValue"?: ((value: string) => any) | undefined;
116
+ }>, {
117
+ focus: () => void;
118
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
119
+ input: (event: Event) => any;
120
+ click: (event: MouseEvent) => any;
121
+ blur: (event: FocusEvent) => any;
122
+ focus: (event: FocusEvent) => any;
123
+ keydown: (event: KeyboardEvent) => any;
124
+ paste: (event: ClipboardEvent) => any;
125
+ "update:modelValue": (value: string) => any;
126
+ }, string, {}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
127
+ beforeCreate?: (() => void) | (() => void)[];
128
+ created?: (() => void) | (() => void)[];
129
+ beforeMount?: (() => void) | (() => void)[];
130
+ mounted?: (() => void) | (() => void)[];
131
+ beforeUpdate?: (() => void) | (() => void)[];
132
+ updated?: (() => void) | (() => void)[];
133
+ activated?: (() => void) | (() => void)[];
134
+ deactivated?: (() => void) | (() => void)[];
135
+ beforeDestroy?: (() => void) | (() => void)[];
136
+ beforeUnmount?: (() => void) | (() => void)[];
137
+ destroyed?: (() => void) | (() => void)[];
138
+ unmounted?: (() => void) | (() => void)[];
139
+ renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
140
+ renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
141
+ errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
142
+ };
143
+ $forceUpdate: () => void;
144
+ $nextTick: typeof nextTick;
145
+ $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;
146
+ } & Readonly<{}> & Omit<Readonly<{
147
+ modelValue?: string;
148
+ } & {
149
+ id?: string;
150
+ type?: "text" | "email" | "password" | "number" | "tel" | "url" | "search";
151
+ min?: number | string;
152
+ max?: number | string;
153
+ ariaExpanded?: boolean;
154
+ step?: number;
155
+ placeholder?: string;
156
+ disabled?: boolean;
157
+ leadingIcon?: import('../../../index.ts').KdsIconName;
158
+ trailingIcon?: import('../../../index.ts').KdsIconName;
159
+ error?: boolean;
160
+ autocomplete?: string;
161
+ ariaLabel?: string;
162
+ ariaLabelledby?: string;
163
+ ariaDescribedby?: string;
164
+ ariaInvalid?: boolean;
165
+ role?: string;
166
+ ariaValuenow?: number;
167
+ ariaValuemin?: number;
168
+ ariaValuemax?: number;
169
+ ariaValuetext?: string;
170
+ ariaActivedescendant?: string;
171
+ ariaHaspopup?: "listbox" | "menu" | "dialog" | "grid" | "tree" | "true";
172
+ ariaControls?: string;
173
+ ariaAutocomplete?: "none" | "inline" | "list" | "both";
174
+ unit?: string;
175
+ inputmode?: "none" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | "search";
176
+ clearable?: boolean;
177
+ pattern?: string;
178
+ segments?: import('../useInputSegments.helpers.ts').KdsInputSegmentsConfig;
179
+ }> & Readonly<{
180
+ onInput?: ((event: Event) => any) | undefined;
181
+ onClick?: ((event: MouseEvent) => any) | undefined;
182
+ onBlur?: ((event: FocusEvent) => any) | undefined;
183
+ onFocus?: ((event: FocusEvent) => any) | undefined;
184
+ onKeydown?: ((event: KeyboardEvent) => any) | undefined;
185
+ onPaste?: ((event: ClipboardEvent) => any) | undefined;
186
+ "onUpdate:modelValue"?: ((value: string) => any) | undefined;
187
+ }>, "focus"> & {
188
+ focus: () => void;
189
+ } & {} & import('vue').ComponentCustomProperties & {} & {
190
+ $slots: {
191
+ leading?(_: {}): any;
192
+ trailing?(_: {}): any;
193
+ };
194
+ }) | null;
195
+ popoverRef: ({
196
+ $: import('vue').ComponentInternalInstance;
197
+ $data: {};
198
+ $props: ({
199
+ readonly modelValue?: boolean | undefined;
200
+ readonly role?: import('../../../overlays/Popover/types.ts').KdsPopoverRole | undefined;
201
+ readonly popoverType?: import('../../../overlays/Popover/types.ts').KdsPopoverType | undefined;
202
+ readonly fullWidth?: boolean | undefined;
203
+ readonly maxInlineSize?: string | undefined;
204
+ readonly content?: string | undefined;
205
+ readonly placement?: Exclude<import('../../../overlays/Popover/types.ts').KdsPopoverPlacement, "custom"> | undefined;
206
+ readonly customPlacementPosition?: never | undefined;
207
+ readonly "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
208
+ } | {
209
+ readonly modelValue?: boolean | undefined;
210
+ readonly role?: import('../../../overlays/Popover/types.ts').KdsPopoverRole | undefined;
211
+ readonly popoverType?: import('../../../overlays/Popover/types.ts').KdsPopoverType | undefined;
212
+ readonly fullWidth?: boolean | undefined;
213
+ readonly maxInlineSize?: string | undefined;
214
+ readonly content?: string | undefined;
215
+ readonly placement: "custom";
216
+ readonly customPlacementPosition: {
217
+ x: number;
218
+ y: number;
219
+ };
220
+ readonly "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
221
+ }) & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
222
+ $attrs: import('vue').Attrs;
223
+ $refs: {
224
+ [x: string]: unknown;
225
+ } & {
226
+ popoverEl: HTMLDivElement;
227
+ };
228
+ $slots: Readonly<{
229
+ [name: string]: import('vue').Slot<any> | undefined;
230
+ }>;
231
+ $root: import('vue').ComponentPublicInstance | null;
232
+ $parent: import('vue').ComponentPublicInstance | null;
233
+ $host: Element | null;
234
+ $emit: (event: "update:modelValue", value: boolean) => void;
235
+ $el: HTMLDivElement;
236
+ $options: import('vue').ComponentOptionsBase<Readonly<({
237
+ modelValue?: boolean;
238
+ } & {
239
+ role?: import('../../../overlays/Popover/types.ts').KdsPopoverRole;
240
+ popoverType?: import('../../../overlays/Popover/types.ts').KdsPopoverType;
241
+ fullWidth?: boolean;
242
+ maxInlineSize?: string;
243
+ content?: string;
244
+ } & {
245
+ placement?: Exclude<import('../../../overlays/Popover/types.ts').KdsPopoverPlacement, "custom">;
246
+ customPlacementPosition?: never;
247
+ }) | ({
248
+ modelValue?: boolean;
249
+ } & {
250
+ role?: import('../../../overlays/Popover/types.ts').KdsPopoverRole;
251
+ popoverType?: import('../../../overlays/Popover/types.ts').KdsPopoverType;
252
+ fullWidth?: boolean;
253
+ maxInlineSize?: string;
254
+ content?: string;
255
+ } & {
256
+ placement: "custom";
257
+ customPlacementPosition: {
258
+ x: number;
259
+ y: number;
260
+ };
261
+ })> & Readonly<{
262
+ "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
263
+ }>, {
264
+ anchorStyle: Record<string, string>;
265
+ popoverId: string;
266
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
267
+ "update:modelValue": (value: boolean) => any;
268
+ }, string, {}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
269
+ beforeCreate?: (() => void) | (() => void)[];
270
+ created?: (() => void) | (() => void)[];
271
+ beforeMount?: (() => void) | (() => void)[];
272
+ mounted?: (() => void) | (() => void)[];
273
+ beforeUpdate?: (() => void) | (() => void)[];
274
+ updated?: (() => void) | (() => void)[];
275
+ activated?: (() => void) | (() => void)[];
276
+ deactivated?: (() => void) | (() => void)[];
277
+ beforeDestroy?: (() => void) | (() => void)[];
278
+ beforeUnmount?: (() => void) | (() => void)[];
279
+ destroyed?: (() => void) | (() => void)[];
280
+ unmounted?: (() => void) | (() => void)[];
281
+ renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
282
+ renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
283
+ errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
284
+ };
285
+ $forceUpdate: () => void;
286
+ $nextTick: typeof nextTick;
287
+ $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;
288
+ } & Readonly<{}> & Omit<{} & (Readonly<({
289
+ modelValue?: boolean;
290
+ } & {
291
+ role?: import('../../../overlays/Popover/types.ts').KdsPopoverRole;
292
+ popoverType?: import('../../../overlays/Popover/types.ts').KdsPopoverType;
293
+ fullWidth?: boolean;
294
+ maxInlineSize?: string;
295
+ content?: string;
296
+ } & {
297
+ placement?: Exclude<import('../../../overlays/Popover/types.ts').KdsPopoverPlacement, "custom">;
298
+ customPlacementPosition?: never;
299
+ }) | ({
300
+ modelValue?: boolean;
301
+ } & {
302
+ role?: import('../../../overlays/Popover/types.ts').KdsPopoverRole;
303
+ popoverType?: import('../../../overlays/Popover/types.ts').KdsPopoverType;
304
+ fullWidth?: boolean;
305
+ maxInlineSize?: string;
306
+ content?: string;
307
+ } & {
308
+ placement: "custom";
309
+ customPlacementPosition: {
310
+ x: number;
311
+ y: number;
312
+ };
313
+ })> & Readonly<{
314
+ "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
315
+ }>), "anchorStyle" | "popoverId"> & {
316
+ anchorStyle: Record<string, string>;
317
+ popoverId: string;
318
+ } & {} & import('vue').ComponentCustomProperties & {} & {
319
+ $slots: {
320
+ default?(_: {}): any;
321
+ };
322
+ }) | null;
323
+ timePickerRef: import('vue').CreateComponentPublicInstanceWithMixins<Readonly<{
324
+ modelValue: Temporal.PlainTime | null;
325
+ granularity?: KdsTimeInputGranularity;
326
+ } & {
327
+ maxGranularity: KdsTimeInputGranularity;
328
+ }> & Readonly<{
329
+ "onUpdate:modelValue"?: ((value: Temporal.PlainTime | null) => any) | undefined;
330
+ "onUpdate:granularity"?: ((value: KdsTimeInputGranularity) => any) | undefined;
331
+ }>, {
332
+ focus: () => void;
333
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
334
+ "update:modelValue": (value: Temporal.PlainTime | null) => any;
335
+ "update:granularity": (value: KdsTimeInputGranularity) => any;
336
+ }, import('vue').PublicProps, {}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {
337
+ hourInput: import('vue').CreateComponentPublicInstanceWithMixins<Readonly<({
338
+ modelValue?: number;
339
+ } & {
340
+ description?: string;
341
+ } & {
342
+ label: string;
343
+ ariaLabel?: never;
344
+ } & {
345
+ id?: string;
346
+ } & {
347
+ error?: boolean | undefined;
348
+ subText?: string | undefined;
349
+ validating?: boolean | undefined;
350
+ preserveSubTextSpace?: boolean | undefined;
351
+ } & {
352
+ placeholder?: string;
353
+ disabled?: boolean;
354
+ autocomplete?: string;
355
+ } & {
356
+ unit?: string;
357
+ min?: number;
358
+ max?: number;
359
+ step?: number;
360
+ }) | ({
361
+ modelValue?: number;
362
+ } & {
363
+ description?: string;
364
+ } & {
365
+ label?: never;
366
+ ariaLabel: string;
367
+ } & {
368
+ id?: string;
369
+ } & {
370
+ error?: boolean | undefined;
371
+ subText?: string | undefined;
372
+ validating?: boolean | undefined;
373
+ preserveSubTextSpace?: boolean | undefined;
374
+ } & {
375
+ placeholder?: string;
376
+ disabled?: boolean;
377
+ autocomplete?: string;
378
+ } & {
379
+ unit?: string;
380
+ min?: number;
381
+ max?: number;
382
+ step?: number;
383
+ })> & Readonly<{
384
+ "onUpdate:modelValue"?: ((value: number) => any) | undefined;
385
+ }>, {
386
+ focus: () => void;
387
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
388
+ "update:modelValue": (value: number) => any;
389
+ }, import('vue').PublicProps, {}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {
390
+ baseInput: ({
391
+ $: import('vue').ComponentInternalInstance;
392
+ $data: {};
393
+ $props: {
394
+ readonly modelValue?: string | undefined;
395
+ readonly id?: string | undefined;
396
+ readonly type?: "text" | "email" | "password" | "number" | "tel" | "url" | "search" | undefined;
397
+ readonly min?: number | string | undefined;
398
+ readonly max?: number | string | undefined;
399
+ readonly ariaExpanded?: boolean | undefined;
400
+ readonly step?: number | undefined;
401
+ readonly placeholder?: string | undefined;
402
+ readonly disabled?: boolean | undefined;
403
+ readonly leadingIcon?: import('../../../index.ts').KdsIconName | undefined;
404
+ readonly trailingIcon?: import('../../../index.ts').KdsIconName | undefined;
405
+ readonly error?: boolean | undefined;
406
+ readonly autocomplete?: string | undefined;
407
+ readonly ariaLabel?: string | undefined;
408
+ readonly ariaLabelledby?: string | undefined;
409
+ readonly ariaDescribedby?: string | undefined;
410
+ readonly ariaInvalid?: boolean | undefined;
411
+ readonly role?: string | undefined;
412
+ readonly ariaValuenow?: number | undefined;
413
+ readonly ariaValuemin?: number | undefined;
414
+ readonly ariaValuemax?: number | undefined;
415
+ readonly ariaValuetext?: string | undefined;
416
+ readonly ariaActivedescendant?: string | undefined;
417
+ readonly ariaHaspopup?: "listbox" | "menu" | "dialog" | "grid" | "tree" | "true" | undefined;
418
+ readonly ariaControls?: string | undefined;
419
+ readonly ariaAutocomplete?: "none" | "inline" | "list" | "both" | undefined;
420
+ readonly unit?: string | undefined;
421
+ readonly inputmode?: "none" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | "search" | undefined;
422
+ readonly clearable?: boolean | undefined;
423
+ readonly pattern?: string | undefined;
424
+ readonly segments?: import('../useInputSegments.helpers.ts').KdsInputSegmentsConfig | undefined;
425
+ readonly onInput?: ((event: Event) => any) | undefined;
426
+ readonly onClick?: ((event: MouseEvent) => any) | undefined;
427
+ readonly onBlur?: ((event: FocusEvent) => any) | undefined;
428
+ readonly onFocus?: ((event: FocusEvent) => any) | undefined;
429
+ readonly onKeydown?: ((event: KeyboardEvent) => any) | undefined;
430
+ readonly onPaste?: ((event: ClipboardEvent) => any) | undefined;
431
+ readonly "onUpdate:modelValue"?: ((value: string) => any) | undefined;
432
+ } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
433
+ $attrs: import('vue').Attrs;
434
+ $refs: {
435
+ [x: string]: unknown;
436
+ } & {
437
+ input: HTMLInputElement;
438
+ };
439
+ $slots: Readonly<{
440
+ [name: string]: import('vue').Slot<any> | undefined;
441
+ }>;
442
+ $root: import('vue').ComponentPublicInstance | null;
443
+ $parent: import('vue').ComponentPublicInstance | null;
444
+ $host: Element | null;
445
+ $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);
446
+ $el: HTMLDivElement;
447
+ $options: import('vue').ComponentOptionsBase<Readonly<{
448
+ modelValue?: string;
449
+ } & {
450
+ id?: string;
451
+ type?: "text" | "email" | "password" | "number" | "tel" | "url" | "search";
452
+ min?: number | string;
453
+ max?: number | string;
454
+ ariaExpanded?: boolean;
455
+ step?: number;
456
+ placeholder?: string;
457
+ disabled?: boolean;
458
+ leadingIcon?: import('../../../index.ts').KdsIconName;
459
+ trailingIcon?: import('../../../index.ts').KdsIconName;
460
+ error?: boolean;
461
+ autocomplete?: string;
462
+ ariaLabel?: string;
463
+ ariaLabelledby?: string;
464
+ ariaDescribedby?: string;
465
+ ariaInvalid?: boolean;
466
+ role?: string;
467
+ ariaValuenow?: number;
468
+ ariaValuemin?: number;
469
+ ariaValuemax?: number;
470
+ ariaValuetext?: string;
471
+ ariaActivedescendant?: string;
472
+ ariaHaspopup?: "listbox" | "menu" | "dialog" | "grid" | "tree" | "true";
473
+ ariaControls?: string;
474
+ ariaAutocomplete?: "none" | "inline" | "list" | "both";
475
+ unit?: string;
476
+ inputmode?: "none" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | "search";
477
+ clearable?: boolean;
478
+ pattern?: string;
479
+ segments?: import('../useInputSegments.helpers.ts').KdsInputSegmentsConfig;
480
+ }> & Readonly<{
481
+ onInput?: ((event: Event) => any) | undefined;
482
+ onClick?: ((event: MouseEvent) => any) | undefined;
483
+ onBlur?: ((event: FocusEvent) => any) | undefined;
484
+ onFocus?: ((event: FocusEvent) => any) | undefined;
485
+ onKeydown?: ((event: KeyboardEvent) => any) | undefined;
486
+ onPaste?: ((event: ClipboardEvent) => any) | undefined;
487
+ "onUpdate:modelValue"?: ((value: string) => any) | undefined;
488
+ }>, {
489
+ focus: () => void;
490
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
491
+ input: (event: Event) => any;
492
+ click: (event: MouseEvent) => any;
493
+ blur: (event: FocusEvent) => any;
494
+ focus: (event: FocusEvent) => any;
495
+ keydown: (event: KeyboardEvent) => any;
496
+ paste: (event: ClipboardEvent) => any;
497
+ "update:modelValue": (value: string) => any;
498
+ }, string, {}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
499
+ beforeCreate?: (() => void) | (() => void)[];
500
+ created?: (() => void) | (() => void)[];
501
+ beforeMount?: (() => void) | (() => void)[];
502
+ mounted?: (() => void) | (() => void)[];
503
+ beforeUpdate?: (() => void) | (() => void)[];
504
+ updated?: (() => void) | (() => void)[];
505
+ activated?: (() => void) | (() => void)[];
506
+ deactivated?: (() => void) | (() => void)[];
507
+ beforeDestroy?: (() => void) | (() => void)[];
508
+ beforeUnmount?: (() => void) | (() => void)[];
509
+ destroyed?: (() => void) | (() => void)[];
510
+ unmounted?: (() => void) | (() => void)[];
511
+ renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
512
+ renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
513
+ errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
514
+ };
515
+ $forceUpdate: () => void;
516
+ $nextTick: typeof nextTick;
517
+ $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;
518
+ } & Readonly<{}> & Omit<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
+ }>, "focus"> & {
560
+ focus: () => void;
561
+ } & {} & import('vue').ComponentCustomProperties & {} & {
562
+ $slots: {
563
+ leading?(_: {}): any;
564
+ trailing?(_: {}): any;
565
+ };
566
+ }) | null;
567
+ }, HTMLDivElement, import('vue').ComponentProvideOptions, {
568
+ P: {};
569
+ B: {};
570
+ D: {};
571
+ C: {};
572
+ M: {};
573
+ Defaults: {};
574
+ }, {} & (Readonly<({
575
+ modelValue?: number;
576
+ } & {
577
+ description?: string;
578
+ } & {
579
+ label: string;
580
+ ariaLabel?: never;
581
+ } & {
582
+ id?: string;
583
+ } & {
584
+ error?: boolean | undefined;
585
+ subText?: string | undefined;
586
+ validating?: boolean | undefined;
587
+ preserveSubTextSpace?: boolean | undefined;
588
+ } & {
589
+ placeholder?: string;
590
+ disabled?: boolean;
591
+ autocomplete?: string;
592
+ } & {
593
+ unit?: string;
594
+ min?: number;
595
+ max?: number;
596
+ step?: number;
597
+ }) | ({
598
+ modelValue?: number;
599
+ } & {
600
+ description?: string;
601
+ } & {
602
+ label?: never;
603
+ ariaLabel: string;
604
+ } & {
605
+ id?: string;
606
+ } & {
607
+ error?: boolean | undefined;
608
+ subText?: string | undefined;
609
+ validating?: boolean | undefined;
610
+ preserveSubTextSpace?: boolean | undefined;
611
+ } & {
612
+ placeholder?: string;
613
+ disabled?: boolean;
614
+ autocomplete?: string;
615
+ } & {
616
+ unit?: string;
617
+ min?: number;
618
+ max?: number;
619
+ step?: number;
620
+ })> & Readonly<{
621
+ "onUpdate:modelValue"?: ((value: number) => any) | undefined;
622
+ }>), {
623
+ focus: () => void;
624
+ }, {}, {}, {}, {}> | null;
625
+ secondInput: import('vue').CreateComponentPublicInstanceWithMixins<Readonly<({
626
+ modelValue?: number;
627
+ } & {
628
+ description?: string;
629
+ } & {
630
+ label: string;
631
+ ariaLabel?: never;
632
+ } & {
633
+ id?: string;
634
+ } & {
635
+ error?: boolean | undefined;
636
+ subText?: string | undefined;
637
+ validating?: boolean | undefined;
638
+ preserveSubTextSpace?: boolean | undefined;
639
+ } & {
640
+ placeholder?: string;
641
+ disabled?: boolean;
642
+ autocomplete?: string;
643
+ } & {
644
+ unit?: string;
645
+ min?: number;
646
+ max?: number;
647
+ step?: number;
648
+ }) | ({
649
+ modelValue?: number;
650
+ } & {
651
+ description?: string;
652
+ } & {
653
+ label?: never;
654
+ ariaLabel: string;
655
+ } & {
656
+ id?: string;
657
+ } & {
658
+ error?: boolean | undefined;
659
+ subText?: string | undefined;
660
+ validating?: boolean | undefined;
661
+ preserveSubTextSpace?: boolean | undefined;
662
+ } & {
663
+ placeholder?: string;
664
+ disabled?: boolean;
665
+ autocomplete?: string;
666
+ } & {
667
+ unit?: string;
668
+ min?: number;
669
+ max?: number;
670
+ step?: number;
671
+ })> & Readonly<{
672
+ "onUpdate:modelValue"?: ((value: number) => any) | undefined;
673
+ }>, {
674
+ focus: () => void;
675
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
676
+ "update:modelValue": (value: number) => any;
677
+ }, import('vue').PublicProps, {}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {
678
+ baseInput: ({
679
+ $: import('vue').ComponentInternalInstance;
680
+ $data: {};
681
+ $props: {
682
+ readonly modelValue?: string | undefined;
683
+ readonly id?: string | undefined;
684
+ readonly type?: "text" | "email" | "password" | "number" | "tel" | "url" | "search" | undefined;
685
+ readonly min?: number | string | undefined;
686
+ readonly max?: number | string | undefined;
687
+ readonly ariaExpanded?: boolean | undefined;
688
+ readonly step?: number | undefined;
689
+ readonly placeholder?: string | undefined;
690
+ readonly disabled?: boolean | undefined;
691
+ readonly leadingIcon?: import('../../../index.ts').KdsIconName | undefined;
692
+ readonly trailingIcon?: import('../../../index.ts').KdsIconName | undefined;
693
+ readonly error?: boolean | undefined;
694
+ readonly autocomplete?: string | undefined;
695
+ readonly ariaLabel?: string | undefined;
696
+ readonly ariaLabelledby?: string | undefined;
697
+ readonly ariaDescribedby?: string | undefined;
698
+ readonly ariaInvalid?: boolean | undefined;
699
+ readonly role?: string | undefined;
700
+ readonly ariaValuenow?: number | undefined;
701
+ readonly ariaValuemin?: number | undefined;
702
+ readonly ariaValuemax?: number | undefined;
703
+ readonly ariaValuetext?: string | undefined;
704
+ readonly ariaActivedescendant?: string | undefined;
705
+ readonly ariaHaspopup?: "listbox" | "menu" | "dialog" | "grid" | "tree" | "true" | undefined;
706
+ readonly ariaControls?: string | undefined;
707
+ readonly ariaAutocomplete?: "none" | "inline" | "list" | "both" | undefined;
708
+ readonly unit?: string | undefined;
709
+ readonly inputmode?: "none" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | "search" | undefined;
710
+ readonly clearable?: boolean | undefined;
711
+ readonly pattern?: string | undefined;
712
+ readonly segments?: import('../useInputSegments.helpers.ts').KdsInputSegmentsConfig | undefined;
713
+ readonly onInput?: ((event: Event) => any) | undefined;
714
+ readonly onClick?: ((event: MouseEvent) => any) | undefined;
715
+ readonly onBlur?: ((event: FocusEvent) => any) | undefined;
716
+ readonly onFocus?: ((event: FocusEvent) => any) | undefined;
717
+ readonly onKeydown?: ((event: KeyboardEvent) => any) | undefined;
718
+ readonly onPaste?: ((event: ClipboardEvent) => any) | undefined;
719
+ readonly "onUpdate:modelValue"?: ((value: string) => any) | undefined;
720
+ } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
721
+ $attrs: import('vue').Attrs;
722
+ $refs: {
723
+ [x: string]: unknown;
724
+ } & {
725
+ input: HTMLInputElement;
726
+ };
727
+ $slots: Readonly<{
728
+ [name: string]: import('vue').Slot<any> | undefined;
729
+ }>;
730
+ $root: import('vue').ComponentPublicInstance | null;
731
+ $parent: import('vue').ComponentPublicInstance | null;
732
+ $host: Element | null;
733
+ $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);
734
+ $el: HTMLDivElement;
735
+ $options: import('vue').ComponentOptionsBase<Readonly<{
736
+ modelValue?: string;
737
+ } & {
738
+ id?: string;
739
+ type?: "text" | "email" | "password" | "number" | "tel" | "url" | "search";
740
+ min?: number | string;
741
+ max?: number | string;
742
+ ariaExpanded?: boolean;
743
+ step?: number;
744
+ placeholder?: string;
745
+ disabled?: boolean;
746
+ leadingIcon?: import('../../../index.ts').KdsIconName;
747
+ trailingIcon?: import('../../../index.ts').KdsIconName;
748
+ error?: boolean;
749
+ autocomplete?: string;
750
+ ariaLabel?: string;
751
+ ariaLabelledby?: string;
752
+ ariaDescribedby?: string;
753
+ ariaInvalid?: boolean;
754
+ role?: string;
755
+ ariaValuenow?: number;
756
+ ariaValuemin?: number;
757
+ ariaValuemax?: number;
758
+ ariaValuetext?: string;
759
+ ariaActivedescendant?: string;
760
+ ariaHaspopup?: "listbox" | "menu" | "dialog" | "grid" | "tree" | "true";
761
+ ariaControls?: string;
762
+ ariaAutocomplete?: "none" | "inline" | "list" | "both";
763
+ unit?: string;
764
+ inputmode?: "none" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | "search";
765
+ clearable?: boolean;
766
+ pattern?: string;
767
+ segments?: import('../useInputSegments.helpers.ts').KdsInputSegmentsConfig;
768
+ }> & Readonly<{
769
+ onInput?: ((event: Event) => any) | undefined;
770
+ onClick?: ((event: MouseEvent) => any) | undefined;
771
+ onBlur?: ((event: FocusEvent) => any) | undefined;
772
+ onFocus?: ((event: FocusEvent) => any) | undefined;
773
+ onKeydown?: ((event: KeyboardEvent) => any) | undefined;
774
+ onPaste?: ((event: ClipboardEvent) => any) | undefined;
775
+ "onUpdate:modelValue"?: ((value: string) => any) | undefined;
776
+ }>, {
777
+ focus: () => void;
778
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
779
+ input: (event: Event) => any;
780
+ click: (event: MouseEvent) => any;
781
+ blur: (event: FocusEvent) => any;
782
+ focus: (event: FocusEvent) => any;
783
+ keydown: (event: KeyboardEvent) => any;
784
+ paste: (event: ClipboardEvent) => any;
785
+ "update:modelValue": (value: string) => any;
786
+ }, string, {}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
787
+ beforeCreate?: (() => void) | (() => void)[];
788
+ created?: (() => void) | (() => void)[];
789
+ beforeMount?: (() => void) | (() => void)[];
790
+ mounted?: (() => void) | (() => void)[];
791
+ beforeUpdate?: (() => void) | (() => void)[];
792
+ updated?: (() => void) | (() => void)[];
793
+ activated?: (() => void) | (() => void)[];
794
+ deactivated?: (() => void) | (() => void)[];
795
+ beforeDestroy?: (() => void) | (() => void)[];
796
+ beforeUnmount?: (() => void) | (() => void)[];
797
+ destroyed?: (() => void) | (() => void)[];
798
+ unmounted?: (() => void) | (() => void)[];
799
+ renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
800
+ renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
801
+ errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
802
+ };
803
+ $forceUpdate: () => void;
804
+ $nextTick: typeof nextTick;
805
+ $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;
806
+ } & Readonly<{}> & Omit<Readonly<{
807
+ modelValue?: string;
808
+ } & {
809
+ id?: string;
810
+ type?: "text" | "email" | "password" | "number" | "tel" | "url" | "search";
811
+ min?: number | string;
812
+ max?: number | string;
813
+ ariaExpanded?: boolean;
814
+ step?: number;
815
+ placeholder?: string;
816
+ disabled?: boolean;
817
+ leadingIcon?: import('../../../index.ts').KdsIconName;
818
+ trailingIcon?: import('../../../index.ts').KdsIconName;
819
+ error?: boolean;
820
+ autocomplete?: string;
821
+ ariaLabel?: string;
822
+ ariaLabelledby?: string;
823
+ ariaDescribedby?: string;
824
+ ariaInvalid?: boolean;
825
+ role?: string;
826
+ ariaValuenow?: number;
827
+ ariaValuemin?: number;
828
+ ariaValuemax?: number;
829
+ ariaValuetext?: string;
830
+ ariaActivedescendant?: string;
831
+ ariaHaspopup?: "listbox" | "menu" | "dialog" | "grid" | "tree" | "true";
832
+ ariaControls?: string;
833
+ ariaAutocomplete?: "none" | "inline" | "list" | "both";
834
+ unit?: string;
835
+ inputmode?: "none" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | "search";
836
+ clearable?: boolean;
837
+ pattern?: string;
838
+ segments?: import('../useInputSegments.helpers.ts').KdsInputSegmentsConfig;
839
+ }> & Readonly<{
840
+ onInput?: ((event: Event) => any) | undefined;
841
+ onClick?: ((event: MouseEvent) => any) | undefined;
842
+ onBlur?: ((event: FocusEvent) => any) | undefined;
843
+ onFocus?: ((event: FocusEvent) => any) | undefined;
844
+ onKeydown?: ((event: KeyboardEvent) => any) | undefined;
845
+ onPaste?: ((event: ClipboardEvent) => any) | undefined;
846
+ "onUpdate:modelValue"?: ((value: string) => any) | undefined;
847
+ }>, "focus"> & {
848
+ focus: () => void;
849
+ } & {} & import('vue').ComponentCustomProperties & {} & {
850
+ $slots: {
851
+ leading?(_: {}): any;
852
+ trailing?(_: {}): any;
853
+ };
854
+ }) | null;
855
+ }, HTMLDivElement, import('vue').ComponentProvideOptions, {
856
+ P: {};
857
+ B: {};
858
+ D: {};
859
+ C: {};
860
+ M: {};
861
+ Defaults: {};
862
+ }, {} & (Readonly<({
863
+ modelValue?: number;
864
+ } & {
865
+ description?: string;
866
+ } & {
867
+ label: string;
868
+ ariaLabel?: never;
869
+ } & {
870
+ id?: string;
871
+ } & {
872
+ error?: boolean | undefined;
873
+ subText?: string | undefined;
874
+ validating?: boolean | undefined;
875
+ preserveSubTextSpace?: boolean | undefined;
876
+ } & {
877
+ placeholder?: string;
878
+ disabled?: boolean;
879
+ autocomplete?: string;
880
+ } & {
881
+ unit?: string;
882
+ min?: number;
883
+ max?: number;
884
+ step?: number;
885
+ }) | ({
886
+ modelValue?: number;
887
+ } & {
888
+ description?: string;
889
+ } & {
890
+ label?: never;
891
+ ariaLabel: string;
892
+ } & {
893
+ id?: string;
894
+ } & {
895
+ error?: boolean | undefined;
896
+ subText?: string | undefined;
897
+ validating?: boolean | undefined;
898
+ preserveSubTextSpace?: boolean | undefined;
899
+ } & {
900
+ placeholder?: string;
901
+ disabled?: boolean;
902
+ autocomplete?: string;
903
+ } & {
904
+ unit?: string;
905
+ min?: number;
906
+ max?: number;
907
+ step?: number;
908
+ })> & Readonly<{
909
+ "onUpdate:modelValue"?: ((value: number) => any) | undefined;
910
+ }>), {
911
+ focus: () => void;
912
+ }, {}, {}, {}, {}> | null;
913
+ millisecondInput: import('vue').CreateComponentPublicInstanceWithMixins<Readonly<({
914
+ modelValue?: number;
915
+ } & {
916
+ description?: string;
917
+ } & {
918
+ label: string;
919
+ ariaLabel?: never;
920
+ } & {
921
+ id?: string;
922
+ } & {
923
+ error?: boolean | undefined;
924
+ subText?: string | undefined;
925
+ validating?: boolean | undefined;
926
+ preserveSubTextSpace?: boolean | undefined;
927
+ } & {
928
+ placeholder?: string;
929
+ disabled?: boolean;
930
+ autocomplete?: string;
931
+ } & {
932
+ unit?: string;
933
+ min?: number;
934
+ max?: number;
935
+ step?: number;
936
+ }) | ({
937
+ modelValue?: number;
938
+ } & {
939
+ description?: string;
940
+ } & {
941
+ label?: never;
942
+ ariaLabel: string;
943
+ } & {
944
+ id?: string;
945
+ } & {
946
+ error?: boolean | undefined;
947
+ subText?: string | undefined;
948
+ validating?: boolean | undefined;
949
+ preserveSubTextSpace?: boolean | undefined;
950
+ } & {
951
+ placeholder?: string;
952
+ disabled?: boolean;
953
+ autocomplete?: string;
954
+ } & {
955
+ unit?: string;
956
+ min?: number;
957
+ max?: number;
958
+ step?: number;
959
+ })> & Readonly<{
960
+ "onUpdate:modelValue"?: ((value: number) => any) | undefined;
961
+ }>, {
962
+ focus: () => void;
963
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
964
+ "update:modelValue": (value: number) => any;
965
+ }, import('vue').PublicProps, {}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {
966
+ baseInput: ({
967
+ $: import('vue').ComponentInternalInstance;
968
+ $data: {};
969
+ $props: {
970
+ readonly modelValue?: string | undefined;
971
+ readonly id?: string | undefined;
972
+ readonly type?: "text" | "email" | "password" | "number" | "tel" | "url" | "search" | undefined;
973
+ readonly min?: number | string | undefined;
974
+ readonly max?: number | string | undefined;
975
+ readonly ariaExpanded?: boolean | undefined;
976
+ readonly step?: number | undefined;
977
+ readonly placeholder?: string | undefined;
978
+ readonly disabled?: boolean | undefined;
979
+ readonly leadingIcon?: import('../../../index.ts').KdsIconName | undefined;
980
+ readonly trailingIcon?: import('../../../index.ts').KdsIconName | undefined;
981
+ readonly error?: boolean | undefined;
982
+ readonly autocomplete?: string | undefined;
983
+ readonly ariaLabel?: string | undefined;
984
+ readonly ariaLabelledby?: string | undefined;
985
+ readonly ariaDescribedby?: string | undefined;
986
+ readonly ariaInvalid?: boolean | undefined;
987
+ readonly role?: string | undefined;
988
+ readonly ariaValuenow?: number | undefined;
989
+ readonly ariaValuemin?: number | undefined;
990
+ readonly ariaValuemax?: number | undefined;
991
+ readonly ariaValuetext?: string | undefined;
992
+ readonly ariaActivedescendant?: string | undefined;
993
+ readonly ariaHaspopup?: "listbox" | "menu" | "dialog" | "grid" | "tree" | "true" | undefined;
994
+ readonly ariaControls?: string | undefined;
995
+ readonly ariaAutocomplete?: "none" | "inline" | "list" | "both" | undefined;
996
+ readonly unit?: string | undefined;
997
+ readonly inputmode?: "none" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | "search" | undefined;
998
+ readonly clearable?: boolean | undefined;
999
+ readonly pattern?: string | undefined;
1000
+ readonly segments?: import('../useInputSegments.helpers.ts').KdsInputSegmentsConfig | undefined;
1001
+ readonly onInput?: ((event: Event) => any) | undefined;
1002
+ readonly onClick?: ((event: MouseEvent) => any) | undefined;
1003
+ readonly onBlur?: ((event: FocusEvent) => any) | undefined;
1004
+ readonly onFocus?: ((event: FocusEvent) => any) | undefined;
1005
+ readonly onKeydown?: ((event: KeyboardEvent) => any) | undefined;
1006
+ readonly onPaste?: ((event: ClipboardEvent) => any) | undefined;
1007
+ readonly "onUpdate:modelValue"?: ((value: string) => any) | undefined;
1008
+ } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
1009
+ $attrs: import('vue').Attrs;
1010
+ $refs: {
1011
+ [x: string]: unknown;
1012
+ } & {
1013
+ input: HTMLInputElement;
1014
+ };
1015
+ $slots: Readonly<{
1016
+ [name: string]: import('vue').Slot<any> | undefined;
1017
+ }>;
1018
+ $root: import('vue').ComponentPublicInstance | null;
1019
+ $parent: import('vue').ComponentPublicInstance | null;
1020
+ $host: Element | null;
1021
+ $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);
1022
+ $el: HTMLDivElement;
1023
+ $options: import('vue').ComponentOptionsBase<Readonly<{
1024
+ modelValue?: string;
1025
+ } & {
1026
+ id?: string;
1027
+ type?: "text" | "email" | "password" | "number" | "tel" | "url" | "search";
1028
+ min?: number | string;
1029
+ max?: number | string;
1030
+ ariaExpanded?: boolean;
1031
+ step?: number;
1032
+ placeholder?: string;
1033
+ disabled?: boolean;
1034
+ leadingIcon?: import('../../../index.ts').KdsIconName;
1035
+ trailingIcon?: import('../../../index.ts').KdsIconName;
1036
+ error?: boolean;
1037
+ autocomplete?: string;
1038
+ ariaLabel?: string;
1039
+ ariaLabelledby?: string;
1040
+ ariaDescribedby?: string;
1041
+ ariaInvalid?: boolean;
1042
+ role?: string;
1043
+ ariaValuenow?: number;
1044
+ ariaValuemin?: number;
1045
+ ariaValuemax?: number;
1046
+ ariaValuetext?: string;
1047
+ ariaActivedescendant?: string;
1048
+ ariaHaspopup?: "listbox" | "menu" | "dialog" | "grid" | "tree" | "true";
1049
+ ariaControls?: string;
1050
+ ariaAutocomplete?: "none" | "inline" | "list" | "both";
1051
+ unit?: string;
1052
+ inputmode?: "none" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | "search";
1053
+ clearable?: boolean;
1054
+ pattern?: string;
1055
+ segments?: import('../useInputSegments.helpers.ts').KdsInputSegmentsConfig;
1056
+ }> & Readonly<{
1057
+ onInput?: ((event: Event) => any) | undefined;
1058
+ onClick?: ((event: MouseEvent) => any) | undefined;
1059
+ onBlur?: ((event: FocusEvent) => any) | undefined;
1060
+ onFocus?: ((event: FocusEvent) => any) | undefined;
1061
+ onKeydown?: ((event: KeyboardEvent) => any) | undefined;
1062
+ onPaste?: ((event: ClipboardEvent) => any) | undefined;
1063
+ "onUpdate:modelValue"?: ((value: string) => any) | undefined;
1064
+ }>, {
1065
+ focus: () => void;
1066
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
1067
+ input: (event: Event) => any;
1068
+ click: (event: MouseEvent) => any;
1069
+ blur: (event: FocusEvent) => any;
1070
+ focus: (event: FocusEvent) => any;
1071
+ keydown: (event: KeyboardEvent) => any;
1072
+ paste: (event: ClipboardEvent) => any;
1073
+ "update:modelValue": (value: string) => any;
1074
+ }, string, {}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
1075
+ beforeCreate?: (() => void) | (() => void)[];
1076
+ created?: (() => void) | (() => void)[];
1077
+ beforeMount?: (() => void) | (() => void)[];
1078
+ mounted?: (() => void) | (() => void)[];
1079
+ beforeUpdate?: (() => void) | (() => void)[];
1080
+ updated?: (() => void) | (() => void)[];
1081
+ activated?: (() => void) | (() => void)[];
1082
+ deactivated?: (() => void) | (() => void)[];
1083
+ beforeDestroy?: (() => void) | (() => void)[];
1084
+ beforeUnmount?: (() => void) | (() => void)[];
1085
+ destroyed?: (() => void) | (() => void)[];
1086
+ unmounted?: (() => void) | (() => void)[];
1087
+ renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
1088
+ renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
1089
+ errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
1090
+ };
1091
+ $forceUpdate: () => void;
1092
+ $nextTick: typeof nextTick;
1093
+ $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;
1094
+ } & Readonly<{}> & Omit<Readonly<{
1095
+ modelValue?: string;
1096
+ } & {
1097
+ id?: string;
1098
+ type?: "text" | "email" | "password" | "number" | "tel" | "url" | "search";
1099
+ min?: number | string;
1100
+ max?: number | string;
1101
+ ariaExpanded?: boolean;
1102
+ step?: number;
1103
+ placeholder?: string;
1104
+ disabled?: boolean;
1105
+ leadingIcon?: import('../../../index.ts').KdsIconName;
1106
+ trailingIcon?: import('../../../index.ts').KdsIconName;
1107
+ error?: boolean;
1108
+ autocomplete?: string;
1109
+ ariaLabel?: string;
1110
+ ariaLabelledby?: string;
1111
+ ariaDescribedby?: string;
1112
+ ariaInvalid?: boolean;
1113
+ role?: string;
1114
+ ariaValuenow?: number;
1115
+ ariaValuemin?: number;
1116
+ ariaValuemax?: number;
1117
+ ariaValuetext?: string;
1118
+ ariaActivedescendant?: string;
1119
+ ariaHaspopup?: "listbox" | "menu" | "dialog" | "grid" | "tree" | "true";
1120
+ ariaControls?: string;
1121
+ ariaAutocomplete?: "none" | "inline" | "list" | "both";
1122
+ unit?: string;
1123
+ inputmode?: "none" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | "search";
1124
+ clearable?: boolean;
1125
+ pattern?: string;
1126
+ segments?: import('../useInputSegments.helpers.ts').KdsInputSegmentsConfig;
1127
+ }> & Readonly<{
1128
+ onInput?: ((event: Event) => any) | undefined;
1129
+ onClick?: ((event: MouseEvent) => any) | undefined;
1130
+ onBlur?: ((event: FocusEvent) => any) | undefined;
1131
+ onFocus?: ((event: FocusEvent) => any) | undefined;
1132
+ onKeydown?: ((event: KeyboardEvent) => any) | undefined;
1133
+ onPaste?: ((event: ClipboardEvent) => any) | undefined;
1134
+ "onUpdate:modelValue"?: ((value: string) => any) | undefined;
1135
+ }>, "focus"> & {
1136
+ focus: () => void;
1137
+ } & {} & import('vue').ComponentCustomProperties & {} & {
1138
+ $slots: {
1139
+ leading?(_: {}): any;
1140
+ trailing?(_: {}): any;
1141
+ };
1142
+ }) | null;
1143
+ }, HTMLDivElement, import('vue').ComponentProvideOptions, {
1144
+ P: {};
1145
+ B: {};
1146
+ D: {};
1147
+ C: {};
1148
+ M: {};
1149
+ Defaults: {};
1150
+ }, {} & (Readonly<({
1151
+ modelValue?: number;
1152
+ } & {
1153
+ description?: string;
1154
+ } & {
1155
+ label: string;
1156
+ ariaLabel?: never;
1157
+ } & {
1158
+ id?: string;
1159
+ } & {
1160
+ error?: boolean | undefined;
1161
+ subText?: string | undefined;
1162
+ validating?: boolean | undefined;
1163
+ preserveSubTextSpace?: boolean | undefined;
1164
+ } & {
1165
+ placeholder?: string;
1166
+ disabled?: boolean;
1167
+ autocomplete?: string;
1168
+ } & {
1169
+ unit?: string;
1170
+ min?: number;
1171
+ max?: number;
1172
+ step?: number;
1173
+ }) | ({
1174
+ modelValue?: number;
1175
+ } & {
1176
+ description?: string;
1177
+ } & {
1178
+ label?: never;
1179
+ ariaLabel: string;
1180
+ } & {
1181
+ id?: string;
1182
+ } & {
1183
+ error?: boolean | undefined;
1184
+ subText?: string | undefined;
1185
+ validating?: boolean | undefined;
1186
+ preserveSubTextSpace?: boolean | undefined;
1187
+ } & {
1188
+ placeholder?: string;
1189
+ disabled?: boolean;
1190
+ autocomplete?: string;
1191
+ } & {
1192
+ unit?: string;
1193
+ min?: number;
1194
+ max?: number;
1195
+ step?: number;
1196
+ })> & Readonly<{
1197
+ "onUpdate:modelValue"?: ((value: number) => any) | undefined;
1198
+ }>), {
1199
+ focus: () => void;
1200
+ }, {}, {}, {}, {}> | null;
1201
+ }, HTMLDivElement, import('vue').ComponentProvideOptions, {
1202
+ P: {};
1203
+ B: {};
1204
+ D: {};
1205
+ C: {};
1206
+ M: {};
1207
+ Defaults: {};
1208
+ }, Readonly<{
1209
+ modelValue: Temporal.PlainTime | null;
1210
+ granularity?: KdsTimeInputGranularity;
1211
+ } & {
1212
+ maxGranularity: KdsTimeInputGranularity;
1213
+ }> & Readonly<{
1214
+ "onUpdate:modelValue"?: ((value: Temporal.PlainTime | null) => any) | undefined;
1215
+ "onUpdate:granularity"?: ((value: KdsTimeInputGranularity) => any) | undefined;
1216
+ }>, {
1217
+ focus: () => void;
1218
+ }, {}, {}, {}, {}> | null;
1219
+ }, HTMLDivElement>;
1220
+ export default _default;
1221
+ //# sourceMappingURL=KdsTimeInput.vue.d.ts.map