@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
@@ -15,16 +15,30 @@ declare function __VLS_template(): {
15
15
  popoverEl: ({
16
16
  $: import('vue').ComponentInternalInstance;
17
17
  $data: {};
18
- $props: {
18
+ $props: ({
19
19
  readonly modelValue?: boolean | undefined;
20
- readonly placement?: import('../../../overlays/Popover').KdsPopoverPlacement | undefined;
21
20
  readonly role?: import('../../../overlays/Popover').KdsPopoverRole | undefined;
22
21
  readonly popoverType?: import('../../../overlays/Popover').KdsPopoverType | undefined;
23
22
  readonly fullWidth?: boolean | undefined;
24
23
  readonly maxInlineSize?: string | undefined;
25
24
  readonly content?: string | undefined;
25
+ readonly placement?: Exclude<import('../../../overlays/Popover').KdsPopoverPlacement, "custom"> | undefined;
26
+ readonly customPlacementPosition?: never | undefined;
26
27
  readonly "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
27
- } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
28
+ } | {
29
+ readonly modelValue?: boolean | undefined;
30
+ readonly role?: import('../../../overlays/Popover').KdsPopoverRole | undefined;
31
+ readonly popoverType?: import('../../../overlays/Popover').KdsPopoverType | undefined;
32
+ readonly fullWidth?: boolean | undefined;
33
+ readonly maxInlineSize?: string | undefined;
34
+ readonly content?: string | undefined;
35
+ readonly placement: "custom";
36
+ readonly customPlacementPosition: {
37
+ x: number;
38
+ y: number;
39
+ };
40
+ readonly "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
41
+ }) & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
28
42
  $attrs: import('vue').Attrs;
29
43
  $refs: {
30
44
  [x: string]: unknown;
@@ -39,9 +53,32 @@ declare function __VLS_template(): {
39
53
  $host: Element | null;
40
54
  $emit: (event: "update:modelValue", value: boolean) => void;
41
55
  $el: HTMLDivElement;
42
- $options: import('vue').ComponentOptionsBase<Readonly<{
56
+ $options: import('vue').ComponentOptionsBase<Readonly<({
43
57
  modelValue?: boolean;
44
- } & import('../../../overlays/Popover').KdsPopoverProps> & Readonly<{
58
+ } & {
59
+ role?: import('../../../overlays/Popover').KdsPopoverRole;
60
+ popoverType?: import('../../../overlays/Popover').KdsPopoverType;
61
+ fullWidth?: boolean;
62
+ maxInlineSize?: string;
63
+ content?: string;
64
+ } & {
65
+ placement?: Exclude<import('../../../overlays/Popover').KdsPopoverPlacement, "custom">;
66
+ customPlacementPosition?: never;
67
+ }) | ({
68
+ modelValue?: boolean;
69
+ } & {
70
+ role?: import('../../../overlays/Popover').KdsPopoverRole;
71
+ popoverType?: import('../../../overlays/Popover').KdsPopoverType;
72
+ fullWidth?: boolean;
73
+ maxInlineSize?: string;
74
+ content?: string;
75
+ } & {
76
+ placement: "custom";
77
+ customPlacementPosition: {
78
+ x: number;
79
+ y: number;
80
+ };
81
+ })> & Readonly<{
45
82
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
46
83
  }>, {
47
84
  anchorStyle: Record<string, string>;
@@ -68,11 +105,34 @@ declare function __VLS_template(): {
68
105
  $forceUpdate: () => void;
69
106
  $nextTick: typeof import('vue').nextTick;
70
107
  $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;
71
- } & Readonly<{}> & Omit<Readonly<{
108
+ } & Readonly<{}> & Omit<{} & (Readonly<({
109
+ modelValue?: boolean;
110
+ } & {
111
+ role?: import('../../../overlays/Popover').KdsPopoverRole;
112
+ popoverType?: import('../../../overlays/Popover').KdsPopoverType;
113
+ fullWidth?: boolean;
114
+ maxInlineSize?: string;
115
+ content?: string;
116
+ } & {
117
+ placement?: Exclude<import('../../../overlays/Popover').KdsPopoverPlacement, "custom">;
118
+ customPlacementPosition?: never;
119
+ }) | ({
72
120
  modelValue?: boolean;
73
- } & import('../../../overlays/Popover').KdsPopoverProps> & Readonly<{
121
+ } & {
122
+ role?: import('../../../overlays/Popover').KdsPopoverRole;
123
+ popoverType?: import('../../../overlays/Popover').KdsPopoverType;
124
+ fullWidth?: boolean;
125
+ maxInlineSize?: string;
126
+ content?: string;
127
+ } & {
128
+ placement: "custom";
129
+ customPlacementPosition: {
130
+ x: number;
131
+ y: number;
132
+ };
133
+ })> & Readonly<{
74
134
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
75
- }>, "anchorStyle" | "popoverId"> & {
135
+ }>), "anchorStyle" | "popoverId"> & {
76
136
  anchorStyle: Record<string, string>;
77
137
  popoverId: string;
78
138
  } & {} & import('vue').ComponentCustomProperties & {} & {
@@ -92,16 +152,30 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps,
92
152
  popoverEl: ({
93
153
  $: import('vue').ComponentInternalInstance;
94
154
  $data: {};
95
- $props: {
155
+ $props: ({
96
156
  readonly modelValue?: boolean | undefined;
97
- readonly placement?: import('../../../overlays/Popover').KdsPopoverPlacement | undefined;
98
157
  readonly role?: import('../../../overlays/Popover').KdsPopoverRole | undefined;
99
158
  readonly popoverType?: import('../../../overlays/Popover').KdsPopoverType | undefined;
100
159
  readonly fullWidth?: boolean | undefined;
101
160
  readonly maxInlineSize?: string | undefined;
102
161
  readonly content?: string | undefined;
162
+ readonly placement?: Exclude<import('../../../overlays/Popover').KdsPopoverPlacement, "custom"> | undefined;
163
+ readonly customPlacementPosition?: never | undefined;
164
+ readonly "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
165
+ } | {
166
+ readonly modelValue?: boolean | undefined;
167
+ readonly role?: import('../../../overlays/Popover').KdsPopoverRole | undefined;
168
+ readonly popoverType?: import('../../../overlays/Popover').KdsPopoverType | undefined;
169
+ readonly fullWidth?: boolean | undefined;
170
+ readonly maxInlineSize?: string | undefined;
171
+ readonly content?: string | undefined;
172
+ readonly placement: "custom";
173
+ readonly customPlacementPosition: {
174
+ x: number;
175
+ y: number;
176
+ };
103
177
  readonly "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
104
- } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
178
+ }) & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
105
179
  $attrs: import('vue').Attrs;
106
180
  $refs: {
107
181
  [x: string]: unknown;
@@ -116,9 +190,32 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps,
116
190
  $host: Element | null;
117
191
  $emit: (event: "update:modelValue", value: boolean) => void;
118
192
  $el: HTMLDivElement;
119
- $options: import('vue').ComponentOptionsBase<Readonly<{
193
+ $options: import('vue').ComponentOptionsBase<Readonly<({
120
194
  modelValue?: boolean;
121
- } & import('../../../overlays/Popover').KdsPopoverProps> & Readonly<{
195
+ } & {
196
+ role?: import('../../../overlays/Popover').KdsPopoverRole;
197
+ popoverType?: import('../../../overlays/Popover').KdsPopoverType;
198
+ fullWidth?: boolean;
199
+ maxInlineSize?: string;
200
+ content?: string;
201
+ } & {
202
+ placement?: Exclude<import('../../../overlays/Popover').KdsPopoverPlacement, "custom">;
203
+ customPlacementPosition?: never;
204
+ }) | ({
205
+ modelValue?: boolean;
206
+ } & {
207
+ role?: import('../../../overlays/Popover').KdsPopoverRole;
208
+ popoverType?: import('../../../overlays/Popover').KdsPopoverType;
209
+ fullWidth?: boolean;
210
+ maxInlineSize?: string;
211
+ content?: string;
212
+ } & {
213
+ placement: "custom";
214
+ customPlacementPosition: {
215
+ x: number;
216
+ y: number;
217
+ };
218
+ })> & Readonly<{
122
219
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
123
220
  }>, {
124
221
  anchorStyle: Record<string, string>;
@@ -145,11 +242,34 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps,
145
242
  $forceUpdate: () => void;
146
243
  $nextTick: typeof import('vue').nextTick;
147
244
  $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;
148
- } & Readonly<{}> & Omit<Readonly<{
245
+ } & Readonly<{}> & Omit<{} & (Readonly<({
149
246
  modelValue?: boolean;
150
- } & import('../../../overlays/Popover').KdsPopoverProps> & Readonly<{
247
+ } & {
248
+ role?: import('../../../overlays/Popover').KdsPopoverRole;
249
+ popoverType?: import('../../../overlays/Popover').KdsPopoverType;
250
+ fullWidth?: boolean;
251
+ maxInlineSize?: string;
252
+ content?: string;
253
+ } & {
254
+ placement?: Exclude<import('../../../overlays/Popover').KdsPopoverPlacement, "custom">;
255
+ customPlacementPosition?: never;
256
+ }) | ({
257
+ modelValue?: boolean;
258
+ } & {
259
+ role?: import('../../../overlays/Popover').KdsPopoverRole;
260
+ popoverType?: import('../../../overlays/Popover').KdsPopoverType;
261
+ fullWidth?: boolean;
262
+ maxInlineSize?: string;
263
+ content?: string;
264
+ } & {
265
+ placement: "custom";
266
+ customPlacementPosition: {
267
+ x: number;
268
+ y: number;
269
+ };
270
+ })> & Readonly<{
151
271
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
152
- }>, "anchorStyle" | "popoverId"> & {
272
+ }>), "anchorStyle" | "popoverId"> & {
153
273
  anchorStyle: Record<string, string>;
154
274
  popoverId: string;
155
275
  } & {} & import('vue').ComponentCustomProperties & {} & {
@@ -1 +1 @@
1
- {"version":3,"file":"KdsInfoToggleButton.vue.d.ts","sourceRoot":"","sources":["../../../../../src/forms/_helper/InfoPopover/KdsInfoToggleButton.vue"],"names":[],"mappings":"AAqHA,OAAO,KAAK,EAAE,wBAAwB,EAAE,MAAM,SAAS,CAAC;AAExD;;GAEG;AAEH,KAAK,WAAW,GAAG,wBAAwB,CAAC;AAe5C,KAAK,iBAAiB,GAAG;IACzB,UAAU,CAAC,EAAE,OAAO,CAAC;CACpB,GAAG,WAAW,CAAC;AAKhB,iBAAS,cAAc;WAqGT,OAAO,IAA6B;;yBAZpB,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;wCAyDgvjB,GAAG,8CAA8C,GAAG,yBAAyB,GAAG,6DAAmC,GAAG;;;;;;;;;;;;;;;EAxCt4jB;AAgBD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;oCAuB4vjB,GAAG,8CAA8C,GAAG,yBAAyB,GAAG,6DAAmC,GAAG;;;;;;;;;;;;;OAfr4jB,CAAC;wBACkB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;AAAnG,wBAAoG;AAQpG,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IACxC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}
1
+ {"version":3,"file":"KdsInfoToggleButton.vue.d.ts","sourceRoot":"","sources":["../../../../../src/forms/_helper/InfoPopover/KdsInfoToggleButton.vue"],"names":[],"mappings":"AAqHA,OAAO,KAAK,EAAE,wBAAwB,EAAE,MAAM,SAAS,CAAC;AAExD;;GAEG;AAEH,KAAK,WAAW,GAAG,wBAAwB,CAAC;AAe5C,KAAK,iBAAiB,GAAG;IACzB,UAAU,CAAC,EAAE,OAAO,CAAC;CACpB,GAAG,WAAW,CAAC;AAKhB,iBAAS,cAAc;WAqGT,OAAO,IAA6B;;yBAZpB,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;wCAyDgvjB,GAAG,8CAA8C,GAAG,yBAAyB,GAAG,6DAAmC,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAxCt4jB;AAgBD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;oCAuB4vjB,GAAG,8CAA8C,GAAG,yBAAyB,GAAG,6DAAmC,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;OAfr4jB,CAAC;wBACkB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;AAAnG,wBAAoG;AAQpG,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IACxC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"KdsLabel.vue.d.ts","sourceRoot":"","sources":["../../../../src/forms/_helper/KdsLabel.vue"],"names":[],"mappings":"AA8DA,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,UAAU,CAAC;;;;AAiF9C,wBAQG"}
1
+ {"version":3,"file":"KdsLabel.vue.d.ts","sourceRoot":"","sources":["../../../../src/forms/_helper/KdsLabel.vue"],"names":[],"mappings":"AAkEA,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,UAAU,CAAC;;;;AAiF9C,wBAQG"}
@@ -15,16 +15,30 @@ declare function __VLS_template(): {
15
15
  popoverEl: ({
16
16
  $: import('vue').ComponentInternalInstance;
17
17
  $data: {};
18
- $props: {
18
+ $props: ({
19
19
  readonly modelValue?: boolean | undefined;
20
- readonly placement?: import('../../../overlays/Popover/types.ts').KdsPopoverPlacement | undefined;
21
20
  readonly role?: import('../../../overlays/Popover/types.ts').KdsPopoverRole | undefined;
22
21
  readonly popoverType?: import('../../../overlays/Popover/types.ts').KdsPopoverType | undefined;
23
22
  readonly fullWidth?: boolean | undefined;
24
23
  readonly maxInlineSize?: string | undefined;
25
24
  readonly content?: string | undefined;
25
+ readonly placement?: Exclude<import('../../../overlays/Popover/types.ts').KdsPopoverPlacement, "custom"> | undefined;
26
+ readonly customPlacementPosition?: never | undefined;
26
27
  readonly "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
27
- } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
28
+ } | {
29
+ readonly modelValue?: boolean | undefined;
30
+ readonly role?: import('../../../overlays/Popover/types.ts').KdsPopoverRole | undefined;
31
+ readonly popoverType?: import('../../../overlays/Popover/types.ts').KdsPopoverType | undefined;
32
+ readonly fullWidth?: boolean | undefined;
33
+ readonly maxInlineSize?: string | undefined;
34
+ readonly content?: string | undefined;
35
+ readonly placement: "custom";
36
+ readonly customPlacementPosition: {
37
+ x: number;
38
+ y: number;
39
+ };
40
+ readonly "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
41
+ }) & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
28
42
  $attrs: import('vue').Attrs;
29
43
  $refs: {
30
44
  [x: string]: unknown;
@@ -39,9 +53,32 @@ declare function __VLS_template(): {
39
53
  $host: Element | null;
40
54
  $emit: (event: "update:modelValue", value: boolean) => void;
41
55
  $el: HTMLDivElement;
42
- $options: import('vue').ComponentOptionsBase<Readonly<{
56
+ $options: import('vue').ComponentOptionsBase<Readonly<({
43
57
  modelValue?: boolean;
44
- } & import('../../../overlays/Popover/types.ts').KdsPopoverProps> & Readonly<{
58
+ } & {
59
+ role?: import('../../../overlays/Popover/types.ts').KdsPopoverRole;
60
+ popoverType?: import('../../../overlays/Popover/types.ts').KdsPopoverType;
61
+ fullWidth?: boolean;
62
+ maxInlineSize?: string;
63
+ content?: string;
64
+ } & {
65
+ placement?: Exclude<import('../../../overlays/Popover/types.ts').KdsPopoverPlacement, "custom">;
66
+ customPlacementPosition?: never;
67
+ }) | ({
68
+ modelValue?: boolean;
69
+ } & {
70
+ role?: import('../../../overlays/Popover/types.ts').KdsPopoverRole;
71
+ popoverType?: import('../../../overlays/Popover/types.ts').KdsPopoverType;
72
+ fullWidth?: boolean;
73
+ maxInlineSize?: string;
74
+ content?: string;
75
+ } & {
76
+ placement: "custom";
77
+ customPlacementPosition: {
78
+ x: number;
79
+ y: number;
80
+ };
81
+ })> & Readonly<{
45
82
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
46
83
  }>, {
47
84
  anchorStyle: Record<string, string>;
@@ -68,11 +105,34 @@ declare function __VLS_template(): {
68
105
  $forceUpdate: () => void;
69
106
  $nextTick: typeof import('vue').nextTick;
70
107
  $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;
71
- } & Readonly<{}> & Omit<Readonly<{
108
+ } & Readonly<{}> & Omit<{} & (Readonly<({
109
+ modelValue?: boolean;
110
+ } & {
111
+ role?: import('../../../overlays/Popover/types.ts').KdsPopoverRole;
112
+ popoverType?: import('../../../overlays/Popover/types.ts').KdsPopoverType;
113
+ fullWidth?: boolean;
114
+ maxInlineSize?: string;
115
+ content?: string;
116
+ } & {
117
+ placement?: Exclude<import('../../../overlays/Popover/types.ts').KdsPopoverPlacement, "custom">;
118
+ customPlacementPosition?: never;
119
+ }) | ({
72
120
  modelValue?: boolean;
73
- } & import('../../../overlays/Popover/types.ts').KdsPopoverProps> & Readonly<{
121
+ } & {
122
+ role?: import('../../../overlays/Popover/types.ts').KdsPopoverRole;
123
+ popoverType?: import('../../../overlays/Popover/types.ts').KdsPopoverType;
124
+ fullWidth?: boolean;
125
+ maxInlineSize?: string;
126
+ content?: string;
127
+ } & {
128
+ placement: "custom";
129
+ customPlacementPosition: {
130
+ x: number;
131
+ y: number;
132
+ };
133
+ })> & Readonly<{
74
134
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
75
- }>, "anchorStyle" | "popoverId"> & {
135
+ }>), "anchorStyle" | "popoverId"> & {
76
136
  anchorStyle: Record<string, string>;
77
137
  popoverId: string;
78
138
  } & {} & import('vue').ComponentCustomProperties & {} & {
@@ -92,16 +152,30 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps,
92
152
  popoverEl: ({
93
153
  $: import('vue').ComponentInternalInstance;
94
154
  $data: {};
95
- $props: {
155
+ $props: ({
96
156
  readonly modelValue?: boolean | undefined;
97
- readonly placement?: import('../../../overlays/Popover/types.ts').KdsPopoverPlacement | undefined;
98
157
  readonly role?: import('../../../overlays/Popover/types.ts').KdsPopoverRole | undefined;
99
158
  readonly popoverType?: import('../../../overlays/Popover/types.ts').KdsPopoverType | undefined;
100
159
  readonly fullWidth?: boolean | undefined;
101
160
  readonly maxInlineSize?: string | undefined;
102
161
  readonly content?: string | undefined;
162
+ readonly placement?: Exclude<import('../../../overlays/Popover/types.ts').KdsPopoverPlacement, "custom"> | undefined;
163
+ readonly customPlacementPosition?: never | undefined;
164
+ readonly "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
165
+ } | {
166
+ readonly modelValue?: boolean | undefined;
167
+ readonly role?: import('../../../overlays/Popover/types.ts').KdsPopoverRole | undefined;
168
+ readonly popoverType?: import('../../../overlays/Popover/types.ts').KdsPopoverType | undefined;
169
+ readonly fullWidth?: boolean | undefined;
170
+ readonly maxInlineSize?: string | undefined;
171
+ readonly content?: string | undefined;
172
+ readonly placement: "custom";
173
+ readonly customPlacementPosition: {
174
+ x: number;
175
+ y: number;
176
+ };
103
177
  readonly "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
104
- } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
178
+ }) & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
105
179
  $attrs: import('vue').Attrs;
106
180
  $refs: {
107
181
  [x: string]: unknown;
@@ -116,9 +190,32 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps,
116
190
  $host: Element | null;
117
191
  $emit: (event: "update:modelValue", value: boolean) => void;
118
192
  $el: HTMLDivElement;
119
- $options: import('vue').ComponentOptionsBase<Readonly<{
193
+ $options: import('vue').ComponentOptionsBase<Readonly<({
120
194
  modelValue?: boolean;
121
- } & import('../../../overlays/Popover/types.ts').KdsPopoverProps> & Readonly<{
195
+ } & {
196
+ role?: import('../../../overlays/Popover/types.ts').KdsPopoverRole;
197
+ popoverType?: import('../../../overlays/Popover/types.ts').KdsPopoverType;
198
+ fullWidth?: boolean;
199
+ maxInlineSize?: string;
200
+ content?: string;
201
+ } & {
202
+ placement?: Exclude<import('../../../overlays/Popover/types.ts').KdsPopoverPlacement, "custom">;
203
+ customPlacementPosition?: never;
204
+ }) | ({
205
+ modelValue?: boolean;
206
+ } & {
207
+ role?: import('../../../overlays/Popover/types.ts').KdsPopoverRole;
208
+ popoverType?: import('../../../overlays/Popover/types.ts').KdsPopoverType;
209
+ fullWidth?: boolean;
210
+ maxInlineSize?: string;
211
+ content?: string;
212
+ } & {
213
+ placement: "custom";
214
+ customPlacementPosition: {
215
+ x: number;
216
+ y: number;
217
+ };
218
+ })> & Readonly<{
122
219
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
123
220
  }>, {
124
221
  anchorStyle: Record<string, string>;
@@ -145,11 +242,34 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps,
145
242
  $forceUpdate: () => void;
146
243
  $nextTick: typeof import('vue').nextTick;
147
244
  $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;
148
- } & Readonly<{}> & Omit<Readonly<{
245
+ } & Readonly<{}> & Omit<{} & (Readonly<({
149
246
  modelValue?: boolean;
150
- } & import('../../../overlays/Popover/types.ts').KdsPopoverProps> & Readonly<{
247
+ } & {
248
+ role?: import('../../../overlays/Popover/types.ts').KdsPopoverRole;
249
+ popoverType?: import('../../../overlays/Popover/types.ts').KdsPopoverType;
250
+ fullWidth?: boolean;
251
+ maxInlineSize?: string;
252
+ content?: string;
253
+ } & {
254
+ placement?: Exclude<import('../../../overlays/Popover/types.ts').KdsPopoverPlacement, "custom">;
255
+ customPlacementPosition?: never;
256
+ }) | ({
257
+ modelValue?: boolean;
258
+ } & {
259
+ role?: import('../../../overlays/Popover/types.ts').KdsPopoverRole;
260
+ popoverType?: import('../../../overlays/Popover/types.ts').KdsPopoverType;
261
+ fullWidth?: boolean;
262
+ maxInlineSize?: string;
263
+ content?: string;
264
+ } & {
265
+ placement: "custom";
266
+ customPlacementPosition: {
267
+ x: number;
268
+ y: number;
269
+ };
270
+ })> & Readonly<{
151
271
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
152
- }>, "anchorStyle" | "popoverId"> & {
272
+ }>), "anchorStyle" | "popoverId"> & {
153
273
  anchorStyle: Record<string, string>;
154
274
  popoverId: string;
155
275
  } & {} & import('vue').ComponentCustomProperties & {} & {
@@ -1 +1 @@
1
- {"version":3,"file":"KdsVariableToggleButton.vue.d.ts","sourceRoot":"","sources":["../../../../../src/forms/_helper/VariablePopover/KdsVariableToggleButton.vue"],"names":[],"mappings":"AAqLA,OAAO,KAAK,EAAE,4BAA4B,EAAE,MAAM,YAAY,CAAC;AAE/D;;GAEG;AAEH,KAAK,WAAW,GAAG,4BAA4B,CAAC;AAsEhD,KAAK,iBAAiB,GAAG;IACzB,UAAU,CAAC,EAAE,OAAO,CAAC;CACpB,GAAG,WAAW,CAAC;AAKhB,iBAAS,cAAc;WAyGT,OAAO,IAA6B;;yBAZpB,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;wCA0D42d,GAAG,8CAA8C,GAAG,yBAAyB,GAAG,6DAAmC,GAAG;;;;;;;;;;;;;;;EAzClge;AAiBD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;oCAuBw3d,GAAG,8CAA8C,GAAG,yBAAyB,GAAG,6DAAmC,GAAG;;;;;;;;;;;;;OAfjge,CAAC;wBACkB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;AAAnG,wBAAoG;AAQpG,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IACxC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}
1
+ {"version":3,"file":"KdsVariableToggleButton.vue.d.ts","sourceRoot":"","sources":["../../../../../src/forms/_helper/VariablePopover/KdsVariableToggleButton.vue"],"names":[],"mappings":"AAqLA,OAAO,KAAK,EAAE,4BAA4B,EAAE,MAAM,YAAY,CAAC;AAE/D;;GAEG;AAEH,KAAK,WAAW,GAAG,4BAA4B,CAAC;AAsEhD,KAAK,iBAAiB,GAAG;IACzB,UAAU,CAAC,EAAE,OAAO,CAAC;CACpB,GAAG,WAAW,CAAC;AAKhB,iBAAS,cAAc;WAyGT,OAAO,IAA6B;;yBAZpB,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;wCA0D42d,GAAG,8CAA8C,GAAG,yBAAyB,GAAG,6DAAmC,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAzClge;AAiBD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;oCAuBw3d,GAAG,8CAA8C,GAAG,yBAAyB,GAAG,6DAAmC,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;OAfjge,CAAC;wBACkB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;AAAnG,wBAAoG;AAQpG,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IACxC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}
@@ -1,4 +1,5 @@
1
1
  import { KdsIconName } from '../../accessories/Icon/types';
2
+ import { KdsInputSegmentsConfig } from './useInputSegments';
2
3
  type BaseInputProps = {
3
4
  /**
4
5
  * ID for the input element
@@ -123,6 +124,10 @@ type BaseInputProps = {
123
124
  * of text inputs. Should be a valid regular expression.
124
125
  */
125
126
  pattern?: string;
127
+ /**
128
+ * Optional segmented input configuration for fixed-format masked inputs.
129
+ */
130
+ segments?: KdsInputSegmentsConfig;
126
131
  };
127
132
  type __VLS_Props = BaseInputProps;
128
133
  type __VLS_PublicProps = {
@@ -151,6 +156,7 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps,
151
156
  blur: (event: FocusEvent) => any;
152
157
  focus: (event: FocusEvent) => any;
153
158
  keydown: (event: KeyboardEvent) => any;
159
+ paste: (event: ClipboardEvent) => any;
154
160
  "update:modelValue": (value: string) => any;
155
161
  }, string, import('vue').PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
156
162
  onInput?: ((event: Event) => any) | undefined;
@@ -158,6 +164,7 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps,
158
164
  onBlur?: ((event: FocusEvent) => any) | undefined;
159
165
  onFocus?: ((event: FocusEvent) => any) | undefined;
160
166
  onKeydown?: ((event: KeyboardEvent) => any) | undefined;
167
+ onPaste?: ((event: ClipboardEvent) => any) | undefined;
161
168
  "onUpdate:modelValue"?: ((value: string) => any) | undefined;
162
169
  }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
163
170
  input: HTMLInputElement;
@@ -1 +1 @@
1
- {"version":3,"file":"BaseInput.vue.d.ts","sourceRoot":"","sources":["../../../../src/forms/inputs/BaseInput.vue"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"BaseInput.vue.d.ts","sourceRoot":"","sources":["../../../../src/forms/inputs/BaseInput.vue"],"names":[],"mappings":"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"}
@@ -78,16 +78,30 @@ declare const _default: import('vue').DefineComponent<({
78
78
  popoverEl: ({
79
79
  $: import('vue').ComponentInternalInstance;
80
80
  $data: {};
81
- $props: {
81
+ $props: ({
82
82
  readonly modelValue?: boolean | undefined;
83
- readonly placement?: import('../../../overlays/Popover').KdsPopoverPlacement | undefined;
84
83
  readonly role?: import('../../../overlays/Popover').KdsPopoverRole | undefined;
85
84
  readonly popoverType?: import('../../../overlays/Popover').KdsPopoverType | undefined;
86
85
  readonly fullWidth?: boolean | undefined;
87
86
  readonly maxInlineSize?: string | undefined;
88
87
  readonly content?: string | undefined;
88
+ readonly placement?: Exclude<import('../../../overlays/Popover').KdsPopoverPlacement, "custom"> | undefined;
89
+ readonly customPlacementPosition?: never | undefined;
89
90
  readonly "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
90
- } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
91
+ } | {
92
+ readonly modelValue?: boolean | undefined;
93
+ readonly role?: import('../../../overlays/Popover').KdsPopoverRole | undefined;
94
+ readonly popoverType?: import('../../../overlays/Popover').KdsPopoverType | undefined;
95
+ readonly fullWidth?: boolean | undefined;
96
+ readonly maxInlineSize?: string | undefined;
97
+ readonly content?: string | undefined;
98
+ readonly placement: "custom";
99
+ readonly customPlacementPosition: {
100
+ x: number;
101
+ y: number;
102
+ };
103
+ readonly "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
104
+ }) & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
91
105
  $attrs: import('vue').Attrs;
92
106
  $refs: {
93
107
  [x: string]: unknown;
@@ -102,9 +116,32 @@ declare const _default: import('vue').DefineComponent<({
102
116
  $host: Element | null;
103
117
  $emit: (event: "update:modelValue", value: boolean) => void;
104
118
  $el: HTMLDivElement;
105
- $options: import('vue').ComponentOptionsBase<Readonly<{
119
+ $options: import('vue').ComponentOptionsBase<Readonly<({
106
120
  modelValue?: boolean;
107
- } & import('../../../overlays/Popover').KdsPopoverProps> & Readonly<{
121
+ } & {
122
+ role?: import('../../../overlays/Popover').KdsPopoverRole;
123
+ popoverType?: import('../../../overlays/Popover').KdsPopoverType;
124
+ fullWidth?: boolean;
125
+ maxInlineSize?: string;
126
+ content?: string;
127
+ } & {
128
+ placement?: Exclude<import('../../../overlays/Popover').KdsPopoverPlacement, "custom">;
129
+ customPlacementPosition?: never;
130
+ }) | ({
131
+ modelValue?: boolean;
132
+ } & {
133
+ role?: import('../../../overlays/Popover').KdsPopoverRole;
134
+ popoverType?: import('../../../overlays/Popover').KdsPopoverType;
135
+ fullWidth?: boolean;
136
+ maxInlineSize?: string;
137
+ content?: string;
138
+ } & {
139
+ placement: "custom";
140
+ customPlacementPosition: {
141
+ x: number;
142
+ y: number;
143
+ };
144
+ })> & Readonly<{
108
145
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
109
146
  }>, {
110
147
  anchorStyle: Record<string, string>;
@@ -131,11 +168,34 @@ declare const _default: import('vue').DefineComponent<({
131
168
  $forceUpdate: () => void;
132
169
  $nextTick: typeof import('vue').nextTick;
133
170
  $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;
134
- } & Readonly<{}> & Omit<Readonly<{
171
+ } & Readonly<{}> & Omit<{} & (Readonly<({
172
+ modelValue?: boolean;
173
+ } & {
174
+ role?: import('../../../overlays/Popover').KdsPopoverRole;
175
+ popoverType?: import('../../../overlays/Popover').KdsPopoverType;
176
+ fullWidth?: boolean;
177
+ maxInlineSize?: string;
178
+ content?: string;
179
+ } & {
180
+ placement?: Exclude<import('../../../overlays/Popover').KdsPopoverPlacement, "custom">;
181
+ customPlacementPosition?: never;
182
+ }) | ({
135
183
  modelValue?: boolean;
136
- } & import('../../../overlays/Popover').KdsPopoverProps> & Readonly<{
184
+ } & {
185
+ role?: import('../../../overlays/Popover').KdsPopoverRole;
186
+ popoverType?: import('../../../overlays/Popover').KdsPopoverType;
187
+ fullWidth?: boolean;
188
+ maxInlineSize?: string;
189
+ content?: string;
190
+ } & {
191
+ placement: "custom";
192
+ customPlacementPosition: {
193
+ x: number;
194
+ y: number;
195
+ };
196
+ })> & Readonly<{
137
197
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
138
- }>, "anchorStyle" | "popoverId"> & {
198
+ }>), "anchorStyle" | "popoverId"> & {
139
199
  anchorStyle: Record<string, string>;
140
200
  popoverId: string;
141
201
  } & {} & import('vue').ComponentCustomProperties & {} & {
@@ -1 +1 @@
1
- {"version":3,"file":"KdsColorInput.vue.d.ts","sourceRoot":"","sources":["../../../../../src/forms/inputs/ColorInput/KdsColorInput.vue"],"names":[],"mappings":";iBAiJa,MAAM;;;;;;;;;;;;;;;;;;iBAAN,MAAM;;;;;;;;;;;;;;;;;;;;iBAAN,MAAM;;;;;;;;;;;;;;;;;;iBAAN,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;oCA2M2jd,GAAG,8CAA8C,GAAG,yBAAyB,GAAG,6DAAmC,GAAG;;;;;;;;;;;;;;AAjBpsd,wBASG"}
1
+ {"version":3,"file":"KdsColorInput.vue.d.ts","sourceRoot":"","sources":["../../../../../src/forms/inputs/ColorInput/KdsColorInput.vue"],"names":[],"mappings":";iBAiJa,MAAM;;;;;;;;;;;;;;;;;;iBAAN,MAAM;;;;;;;;;;;;;;;;;;;;iBAAN,MAAM;;;;;;;;;;;;;;;;;;iBAAN,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;oCA2M2jd,GAAG,8CAA8C,GAAG,yBAAyB,GAAG,6DAAmC,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAjBpsd,wBASG"}