@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
@@ -123,11 +123,13 @@ declare const _default: import('vue').DefineComponent<({
123
123
  readonly inputmode?: "none" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | "search" | undefined;
124
124
  readonly clearable?: boolean | undefined;
125
125
  readonly pattern?: string | undefined;
126
+ readonly segments?: import('../useInputSegments.helpers.ts').KdsInputSegmentsConfig | undefined;
126
127
  readonly onInput?: ((event: Event) => any) | undefined;
127
128
  readonly onClick?: ((event: MouseEvent) => any) | undefined;
128
129
  readonly onBlur?: ((event: FocusEvent) => any) | undefined;
129
130
  readonly onFocus?: ((event: FocusEvent) => any) | undefined;
130
131
  readonly onKeydown?: ((event: KeyboardEvent) => any) | undefined;
132
+ readonly onPaste?: ((event: ClipboardEvent) => any) | undefined;
131
133
  readonly "onUpdate:modelValue"?: ((value: string) => any) | undefined;
132
134
  } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
133
135
  $attrs: import('vue').Attrs;
@@ -142,7 +144,7 @@ declare const _default: import('vue').DefineComponent<({
142
144
  $root: import('vue').ComponentPublicInstance | null;
143
145
  $parent: import('vue').ComponentPublicInstance | null;
144
146
  $host: Element | null;
145
- $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: "update:modelValue", value: string) => void);
147
+ $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);
146
148
  $el: HTMLDivElement;
147
149
  $options: import('vue').ComponentOptionsBase<Readonly<{
148
150
  modelValue?: string;
@@ -176,12 +178,14 @@ declare const _default: import('vue').DefineComponent<({
176
178
  inputmode?: "none" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | "search";
177
179
  clearable?: boolean;
178
180
  pattern?: string;
181
+ segments?: import('../useInputSegments.helpers.ts').KdsInputSegmentsConfig;
179
182
  }> & Readonly<{
180
183
  onInput?: ((event: Event) => any) | undefined;
181
184
  onClick?: ((event: MouseEvent) => any) | undefined;
182
185
  onBlur?: ((event: FocusEvent) => any) | undefined;
183
186
  onFocus?: ((event: FocusEvent) => any) | undefined;
184
187
  onKeydown?: ((event: KeyboardEvent) => any) | undefined;
188
+ onPaste?: ((event: ClipboardEvent) => any) | undefined;
185
189
  "onUpdate:modelValue"?: ((value: string) => any) | undefined;
186
190
  }>, {
187
191
  focus: () => void;
@@ -191,6 +195,7 @@ declare const _default: import('vue').DefineComponent<({
191
195
  blur: (event: FocusEvent) => any;
192
196
  focus: (event: FocusEvent) => any;
193
197
  keydown: (event: KeyboardEvent) => any;
198
+ paste: (event: ClipboardEvent) => any;
194
199
  "update:modelValue": (value: string) => any;
195
200
  }, string, {}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
196
201
  beforeCreate?: (() => void) | (() => void)[];
@@ -244,12 +249,14 @@ declare const _default: import('vue').DefineComponent<({
244
249
  inputmode?: "none" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | "search";
245
250
  clearable?: boolean;
246
251
  pattern?: string;
252
+ segments?: import('../useInputSegments.helpers.ts').KdsInputSegmentsConfig;
247
253
  }> & Readonly<{
248
254
  onInput?: ((event: Event) => any) | undefined;
249
255
  onClick?: ((event: MouseEvent) => any) | undefined;
250
256
  onBlur?: ((event: FocusEvent) => any) | undefined;
251
257
  onFocus?: ((event: FocusEvent) => any) | undefined;
252
258
  onKeydown?: ((event: KeyboardEvent) => any) | undefined;
259
+ onPaste?: ((event: ClipboardEvent) => any) | undefined;
253
260
  "onUpdate:modelValue"?: ((value: string) => any) | undefined;
254
261
  }>, "focus"> & {
255
262
  focus: () => void;
@@ -262,16 +269,30 @@ declare const _default: import('vue').DefineComponent<({
262
269
  popoverRef: ({
263
270
  $: import('vue').ComponentInternalInstance;
264
271
  $data: {};
265
- $props: {
272
+ $props: ({
266
273
  readonly modelValue?: boolean | undefined;
267
- readonly placement?: import('../../../overlays/Popover').KdsPopoverPlacement | undefined;
268
274
  readonly role?: import('../../../overlays/Popover').KdsPopoverRole | undefined;
269
275
  readonly popoverType?: import('../../../overlays/Popover').KdsPopoverType | undefined;
270
276
  readonly fullWidth?: boolean | undefined;
271
277
  readonly maxInlineSize?: string | undefined;
272
278
  readonly content?: string | undefined;
279
+ readonly placement?: Exclude<import('../../../overlays/Popover').KdsPopoverPlacement, "custom"> | undefined;
280
+ readonly customPlacementPosition?: never | undefined;
273
281
  readonly "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
274
- } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
282
+ } | {
283
+ readonly modelValue?: boolean | undefined;
284
+ readonly role?: import('../../../overlays/Popover').KdsPopoverRole | undefined;
285
+ readonly popoverType?: import('../../../overlays/Popover').KdsPopoverType | undefined;
286
+ readonly fullWidth?: boolean | undefined;
287
+ readonly maxInlineSize?: string | undefined;
288
+ readonly content?: string | undefined;
289
+ readonly placement: "custom";
290
+ readonly customPlacementPosition: {
291
+ x: number;
292
+ y: number;
293
+ };
294
+ readonly "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
295
+ }) & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
275
296
  $attrs: import('vue').Attrs;
276
297
  $refs: {
277
298
  [x: string]: unknown;
@@ -286,9 +307,32 @@ declare const _default: import('vue').DefineComponent<({
286
307
  $host: Element | null;
287
308
  $emit: (event: "update:modelValue", value: boolean) => void;
288
309
  $el: HTMLDivElement;
289
- $options: import('vue').ComponentOptionsBase<Readonly<{
310
+ $options: import('vue').ComponentOptionsBase<Readonly<({
311
+ modelValue?: boolean;
312
+ } & {
313
+ role?: import('../../../overlays/Popover').KdsPopoverRole;
314
+ popoverType?: import('../../../overlays/Popover').KdsPopoverType;
315
+ fullWidth?: boolean;
316
+ maxInlineSize?: string;
317
+ content?: string;
318
+ } & {
319
+ placement?: Exclude<import('../../../overlays/Popover').KdsPopoverPlacement, "custom">;
320
+ customPlacementPosition?: never;
321
+ }) | ({
290
322
  modelValue?: boolean;
291
- } & import('../../../overlays/Popover').KdsPopoverProps> & Readonly<{
323
+ } & {
324
+ role?: import('../../../overlays/Popover').KdsPopoverRole;
325
+ popoverType?: import('../../../overlays/Popover').KdsPopoverType;
326
+ fullWidth?: boolean;
327
+ maxInlineSize?: string;
328
+ content?: string;
329
+ } & {
330
+ placement: "custom";
331
+ customPlacementPosition: {
332
+ x: number;
333
+ y: number;
334
+ };
335
+ })> & Readonly<{
292
336
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
293
337
  }>, {
294
338
  anchorStyle: Record<string, string>;
@@ -315,11 +359,34 @@ declare const _default: import('vue').DefineComponent<({
315
359
  $forceUpdate: () => void;
316
360
  $nextTick: typeof import('vue').nextTick;
317
361
  $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;
318
- } & Readonly<{}> & Omit<Readonly<{
362
+ } & Readonly<{}> & Omit<{} & (Readonly<({
319
363
  modelValue?: boolean;
320
- } & import('../../../overlays/Popover').KdsPopoverProps> & Readonly<{
364
+ } & {
365
+ role?: import('../../../overlays/Popover').KdsPopoverRole;
366
+ popoverType?: import('../../../overlays/Popover').KdsPopoverType;
367
+ fullWidth?: boolean;
368
+ maxInlineSize?: string;
369
+ content?: string;
370
+ } & {
371
+ placement?: Exclude<import('../../../overlays/Popover').KdsPopoverPlacement, "custom">;
372
+ customPlacementPosition?: never;
373
+ }) | ({
374
+ modelValue?: boolean;
375
+ } & {
376
+ role?: import('../../../overlays/Popover').KdsPopoverRole;
377
+ popoverType?: import('../../../overlays/Popover').KdsPopoverType;
378
+ fullWidth?: boolean;
379
+ maxInlineSize?: string;
380
+ content?: string;
381
+ } & {
382
+ placement: "custom";
383
+ customPlacementPosition: {
384
+ x: number;
385
+ y: number;
386
+ };
387
+ })> & Readonly<{
321
388
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
322
- }>, "anchorStyle" | "popoverId"> & {
389
+ }>), "anchorStyle" | "popoverId"> & {
323
390
  anchorStyle: Record<string, string>;
324
391
  popoverId: string;
325
392
  } & {} & import('vue').ComponentCustomProperties & {} & {
@@ -327,7 +394,7 @@ declare const _default: import('vue').DefineComponent<({
327
394
  default?(_: {}): any;
328
395
  };
329
396
  }) | null;
330
- listContainerRef: import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('../../../containers/ListContainer').KdsListContainerProps> & Readonly<{
397
+ listContainerRef: import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('../../../index.ts').KdsListContainerProps> & Readonly<{
331
398
  onItemClick?: ((id?: string | undefined) => any) | undefined;
332
399
  }>, {
333
400
  handleKeydown: (event: KeyboardEvent) => void;
@@ -335,6 +402,7 @@ declare const _default: import('vue').DefineComponent<({
335
402
  handleBlur: () => void;
336
403
  activeDescendant: Readonly<import('vue').Ref<string | undefined>>;
337
404
  focus: () => void;
405
+ scrollSelectedIntoView: () => void;
338
406
  }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
339
407
  itemClick: (id?: string | undefined) => any;
340
408
  }, import('vue').PublicProps, {}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {
@@ -346,7 +414,7 @@ declare const _default: import('vue').DefineComponent<({
346
414
  C: {};
347
415
  M: {};
348
416
  Defaults: {};
349
- }, Readonly<import('../../../containers/ListContainer').KdsListContainerProps> & Readonly<{
417
+ }, Readonly<import('../../../index.ts').KdsListContainerProps> & Readonly<{
350
418
  onItemClick?: ((id?: string | undefined) => any) | undefined;
351
419
  }>, {
352
420
  handleKeydown: (event: KeyboardEvent) => void;
@@ -354,6 +422,7 @@ declare const _default: import('vue').DefineComponent<({
354
422
  handleBlur: () => void;
355
423
  activeDescendant: Readonly<import('vue').Ref<string | undefined>>;
356
424
  focus: () => void;
425
+ scrollSelectedIntoView: () => void;
357
426
  }, {}, {}, {}, {}> | null;
358
427
  }, HTMLDivElement>;
359
428
  export default _default;
@@ -1 +1 @@
1
- {"version":3,"file":"KdsTextInput.vue.d.ts","sourceRoot":"","sources":["../../../../../src/forms/inputs/TextInput/KdsTextInput.vue"],"names":[],"mappings":";iBAiUa,MAAM;;;;;;;;;;;;;;;;;;;;;iBAAN,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;iBAAN,MAAM;;;;;;;;;;;;;;;;;;;;;iBAAN,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;oCA2Ni7R,GAAG,8CAA8C,GAAG,yBAAyB,GAAG,6DAAmC,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;oCAAtH,GAAG,8CAA8C,GAAG,yBAAyB,GAAG,6DAAmC,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAlB1jS,wBAUG"}
1
+ {"version":3,"file":"KdsTextInput.vue.d.ts","sourceRoot":"","sources":["../../../../../src/forms/inputs/TextInput/KdsTextInput.vue"],"names":[],"mappings":";iBAiUa,MAAM;;;;;;;;;;;;;;;;;;;;;iBAAN,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;iBAAN,MAAM;;;;;;;;;;;;;;;;;;;;;iBAAN,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;oCA2Ni7R,GAAG,8CAA8C,GAAG,yBAAyB,GAAG,6DAAmC,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;oCAAtH,GAAG,8CAA8C,GAAG,yBAAyB,GAAG,6DAAmC,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAlB1jS,wBAUG"}