@sit-onyx/headless 1.0.0-beta.21 → 1.0.0-beta.22

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 (86) hide show
  1. package/dist/composables/comboBox/SelectOnlyCombobox.d.vue.ts +299 -0
  2. package/dist/composables/comboBox/TestCombobox.ct.d.ts +1 -0
  3. package/dist/composables/comboBox/TestCombobox.d.vue.ts +299 -0
  4. package/dist/composables/comboBox/createComboBox.d.ts +370 -0
  5. package/dist/composables/comboBox/createComboBox.testing.d.ts +10 -0
  6. package/dist/composables/helpers/useDismissible.d.ts +10 -0
  7. package/dist/composables/helpers/useGlobalListener.d.ts +10 -0
  8. package/dist/composables/helpers/useGlobalListener.spec.d.ts +1 -0
  9. package/dist/composables/helpers/useOutsideClick.d.ts +26 -0
  10. package/dist/composables/helpers/useOutsideClick.spec.d.ts +1 -0
  11. package/dist/composables/helpers/useTypeAhead.d.ts +11 -0
  12. package/dist/composables/helpers/useTypeAhead.spec.d.ts +1 -0
  13. package/dist/composables/listbox/TestListbox.ct.d.ts +1 -0
  14. package/dist/composables/listbox/TestListbox.d.vue.ts +2 -0
  15. package/dist/composables/listbox/createListbox.d.ts +102 -0
  16. package/dist/composables/listbox/createListbox.testing.d.ts +24 -0
  17. package/dist/composables/menuButton/TestMenuButton.ct.d.ts +1 -0
  18. package/dist/composables/menuButton/TestMenuButton.d.vue.ts +2 -0
  19. package/dist/composables/menuButton/createMenuButton.d.ts +78 -0
  20. package/dist/composables/menuButton/createMenuButton.testing.d.ts +24 -0
  21. package/dist/composables/navigationMenu/TestMenu.ct.d.ts +1 -0
  22. package/dist/composables/navigationMenu/TestMenu.d.vue.ts +2 -0
  23. package/dist/composables/navigationMenu/createMenu.d.ts +21 -0
  24. package/dist/composables/navigationMenu/createMenu.testing.d.ts +16 -0
  25. package/dist/composables/tabs/TestTabs.ct.d.ts +1 -0
  26. package/dist/composables/tabs/TestTabs.d.vue.ts +2 -0
  27. package/dist/composables/tabs/createTabs.d.ts +48 -0
  28. package/dist/composables/tabs/createTabs.testing.d.ts +13 -0
  29. package/dist/composables/tooltip/createToggletip.d.ts +36 -0
  30. package/dist/composables/tooltip/createTooltip.d.ts +42 -0
  31. package/dist/index.d.ts +11 -0
  32. package/dist/index.js +1088 -0
  33. package/dist/playwright.d.ts +5 -0
  34. package/dist/playwright.js +369 -0
  35. package/dist/utils/builder.d.ts +85 -0
  36. package/dist/utils/keyboard.d.ts +26 -0
  37. package/dist/utils/keyboard.spec.d.ts +1 -0
  38. package/dist/utils/math.d.ts +6 -0
  39. package/dist/utils/math.spec.d.ts +1 -0
  40. package/dist/utils/object.d.ts +5 -0
  41. package/dist/utils/object.spec.d.ts +1 -0
  42. package/dist/utils/timer.d.ts +10 -0
  43. package/{src/utils/types.ts → dist/utils/types.d.ts} +4 -12
  44. package/dist/utils/vitest.d.ts +12 -0
  45. package/package.json +16 -7
  46. package/src/composables/comboBox/SelectOnlyCombobox.vue +0 -90
  47. package/src/composables/comboBox/TestCombobox.ct.tsx +0 -24
  48. package/src/composables/comboBox/TestCombobox.vue +0 -84
  49. package/src/composables/comboBox/createComboBox.testing.ts +0 -168
  50. package/src/composables/comboBox/createComboBox.ts +0 -280
  51. package/src/composables/helpers/useDismissible.ts +0 -19
  52. package/src/composables/helpers/useGlobalListener.spec.ts +0 -93
  53. package/src/composables/helpers/useGlobalListener.ts +0 -64
  54. package/src/composables/helpers/useOutsideClick.spec.ts +0 -117
  55. package/src/composables/helpers/useOutsideClick.ts +0 -69
  56. package/src/composables/helpers/useTypeAhead.spec.ts +0 -29
  57. package/src/composables/helpers/useTypeAhead.ts +0 -26
  58. package/src/composables/listbox/TestListbox.ct.tsx +0 -17
  59. package/src/composables/listbox/TestListbox.vue +0 -92
  60. package/src/composables/listbox/createListbox.testing.ts +0 -141
  61. package/src/composables/listbox/createListbox.ts +0 -234
  62. package/src/composables/menuButton/TestMenuButton.ct.tsx +0 -14
  63. package/src/composables/menuButton/TestMenuButton.vue +0 -29
  64. package/src/composables/menuButton/createMenuButton.testing.ts +0 -91
  65. package/src/composables/menuButton/createMenuButton.ts +0 -206
  66. package/src/composables/navigationMenu/TestMenu.ct.tsx +0 -12
  67. package/src/composables/navigationMenu/TestMenu.vue +0 -16
  68. package/src/composables/navigationMenu/createMenu.testing.ts +0 -37
  69. package/src/composables/navigationMenu/createMenu.ts +0 -55
  70. package/src/composables/tabs/TestTabs.ct.tsx +0 -12
  71. package/src/composables/tabs/TestTabs.vue +0 -28
  72. package/src/composables/tabs/createTabs.testing.ts +0 -151
  73. package/src/composables/tabs/createTabs.ts +0 -129
  74. package/src/composables/tooltip/createToggletip.ts +0 -58
  75. package/src/composables/tooltip/createTooltip.ts +0 -71
  76. package/src/index.ts +0 -11
  77. package/src/playwright.ts +0 -5
  78. package/src/utils/builder.ts +0 -135
  79. package/src/utils/keyboard.spec.ts +0 -53
  80. package/src/utils/keyboard.ts +0 -351
  81. package/src/utils/math.spec.ts +0 -14
  82. package/src/utils/math.ts +0 -6
  83. package/src/utils/object.spec.ts +0 -33
  84. package/src/utils/object.ts +0 -8
  85. package/src/utils/timer.ts +0 -22
  86. package/src/utils/vitest.ts +0 -36
@@ -0,0 +1,299 @@
1
+ declare const _default: import('vue').DefineComponent<{}, {
2
+ comboBox: {
3
+ elements: {
4
+ option: import('vue').ComputedRef<(data: {
5
+ label: string;
6
+ value: string;
7
+ disabled?: boolean;
8
+ selected?: boolean;
9
+ }) => {
10
+ readonly id: string;
11
+ readonly role: "option";
12
+ readonly "aria-label": string;
13
+ readonly "aria-disabled": boolean | undefined;
14
+ readonly "aria-checked": boolean | undefined;
15
+ readonly "aria-selected": boolean | undefined;
16
+ readonly onClick: () => false | void | undefined;
17
+ }>;
18
+ group: import('vue').ComputedRef<(options: {
19
+ label: string;
20
+ }) => {
21
+ role: string;
22
+ "aria-label": string;
23
+ }>;
24
+ listbox: import('vue').ComputedRef<{
25
+ id: string;
26
+ onMousedown: (e: MouseEvent) => void;
27
+ innerHTML?: string;
28
+ class?: any;
29
+ style?: import('vue').StyleValue;
30
+ accesskey?: string;
31
+ contenteditable?: (boolean | "true" | "false") | "inherit" | "plaintext-only";
32
+ contextmenu?: string;
33
+ dir?: string;
34
+ draggable?: boolean | "true" | "false";
35
+ hidden?: (boolean | "true" | "false") | "" | "hidden" | "until-found";
36
+ inert?: boolean | "true" | "false";
37
+ lang?: string;
38
+ placeholder?: string;
39
+ spellcheck?: boolean | "true" | "false";
40
+ tabindex?: string | number;
41
+ title?: string;
42
+ translate?: "yes" | "no";
43
+ radiogroup?: string;
44
+ role?: string;
45
+ about?: string;
46
+ datatype?: string;
47
+ inlist?: any;
48
+ prefix?: string;
49
+ property?: string;
50
+ resource?: string;
51
+ typeof?: string;
52
+ vocab?: string;
53
+ autocapitalize?: string;
54
+ autocorrect?: string;
55
+ autosave?: string;
56
+ color?: string;
57
+ itemprop?: string;
58
+ itemscope?: boolean | "true" | "false";
59
+ itemtype?: string;
60
+ itemid?: string;
61
+ itemref?: string;
62
+ results?: string | number;
63
+ security?: string;
64
+ unselectable?: "on" | "off";
65
+ inputmode?: "none" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | "search";
66
+ is?: string;
67
+ 'aria-activedescendant'?: string;
68
+ 'aria-atomic'?: boolean | "true" | "false";
69
+ 'aria-autocomplete'?: "none" | "inline" | "list" | "both";
70
+ 'aria-busy'?: boolean | "true" | "false";
71
+ 'aria-checked'?: (boolean | "true" | "false") | "mixed";
72
+ 'aria-colcount'?: string | number;
73
+ 'aria-colindex'?: string | number;
74
+ 'aria-colspan'?: string | number;
75
+ 'aria-controls'?: string;
76
+ 'aria-current'?: (boolean | "true" | "false") | "page" | "step" | "location" | "date" | "time";
77
+ 'aria-describedby'?: string;
78
+ 'aria-details'?: string;
79
+ 'aria-disabled'?: boolean | "true" | "false";
80
+ 'aria-dropeffect'?: "none" | "copy" | "execute" | "link" | "move" | "popup";
81
+ 'aria-errormessage'?: string;
82
+ 'aria-expanded'?: boolean | "true" | "false";
83
+ 'aria-flowto'?: string;
84
+ 'aria-grabbed'?: boolean | "true" | "false";
85
+ 'aria-haspopup'?: (boolean | "true" | "false") | "menu" | "listbox" | "tree" | "grid" | "dialog";
86
+ 'aria-hidden'?: boolean | "true" | "false";
87
+ 'aria-invalid'?: (boolean | "true" | "false") | "grammar" | "spelling";
88
+ 'aria-keyshortcuts'?: string;
89
+ 'aria-label'?: string;
90
+ 'aria-labelledby'?: string;
91
+ 'aria-level'?: string | number;
92
+ 'aria-live'?: "off" | "assertive" | "polite";
93
+ 'aria-modal'?: boolean | "true" | "false";
94
+ 'aria-multiline'?: boolean | "true" | "false";
95
+ 'aria-multiselectable'?: boolean | "true" | "false";
96
+ 'aria-orientation'?: "horizontal" | "vertical";
97
+ 'aria-owns'?: string;
98
+ 'aria-placeholder'?: string;
99
+ 'aria-posinset'?: string | number;
100
+ 'aria-pressed'?: (boolean | "true" | "false") | "mixed";
101
+ 'aria-readonly'?: boolean | "true" | "false";
102
+ 'aria-relevant'?: "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text" | "text additions" | "text removals";
103
+ 'aria-required'?: boolean | "true" | "false";
104
+ 'aria-roledescription'?: string;
105
+ 'aria-rowcount'?: string | number;
106
+ 'aria-rowindex'?: string | number;
107
+ 'aria-rowspan'?: string | number;
108
+ 'aria-selected'?: boolean | "true" | "false";
109
+ 'aria-setsize'?: string | number;
110
+ 'aria-sort'?: "none" | "ascending" | "descending" | "other";
111
+ 'aria-valuemax'?: string | number;
112
+ 'aria-valuemin'?: string | number;
113
+ 'aria-valuenow'?: string | number;
114
+ 'aria-valuetext'?: string;
115
+ onCopy?: ((payload: ClipboardEvent) => void) | undefined;
116
+ onCut?: ((payload: ClipboardEvent) => void) | undefined;
117
+ onPaste?: ((payload: ClipboardEvent) => void) | undefined;
118
+ onCompositionend?: ((payload: CompositionEvent) => void) | undefined;
119
+ onCompositionstart?: ((payload: CompositionEvent) => void) | undefined;
120
+ onCompositionupdate?: ((payload: CompositionEvent) => void) | undefined;
121
+ onDrag?: ((payload: DragEvent) => void) | undefined;
122
+ onDragend?: ((payload: DragEvent) => void) | undefined;
123
+ onDragenter?: ((payload: DragEvent) => void) | undefined;
124
+ onDragexit?: ((payload: DragEvent) => void) | undefined;
125
+ onDragleave?: ((payload: DragEvent) => void) | undefined;
126
+ onDragover?: ((payload: DragEvent) => void) | undefined;
127
+ onDragstart?: ((payload: DragEvent) => void) | undefined;
128
+ onDrop?: ((payload: DragEvent) => void) | undefined;
129
+ onFocus?: ((payload: FocusEvent) => void) | undefined;
130
+ onFocusin?: ((payload: FocusEvent) => void) | undefined;
131
+ onFocusout?: ((payload: FocusEvent) => void) | undefined;
132
+ onBlur?: ((payload: FocusEvent) => void) | undefined;
133
+ onChange?: ((payload: Event) => void) | undefined;
134
+ onBeforeinput?: ((payload: Event) => void) | undefined;
135
+ onInput?: ((payload: Event) => void) | undefined;
136
+ onReset?: ((payload: Event) => void) | undefined;
137
+ onSubmit?: ((payload: Event) => void) | undefined;
138
+ onInvalid?: ((payload: Event) => void) | undefined;
139
+ onLoad?: ((payload: Event) => void) | undefined;
140
+ onError?: ((payload: Event) => void) | undefined;
141
+ onKeydown?: ((payload: KeyboardEvent) => void) | undefined;
142
+ onKeypress?: ((payload: KeyboardEvent) => void) | undefined;
143
+ onKeyup?: ((payload: KeyboardEvent) => void) | undefined;
144
+ onAuxclick?: ((payload: MouseEvent) => void) | undefined;
145
+ onClick?: ((payload: MouseEvent) => void) | undefined;
146
+ onContextmenu?: ((payload: MouseEvent) => void) | undefined;
147
+ onDblclick?: ((payload: MouseEvent) => void) | undefined;
148
+ onMouseenter?: ((payload: MouseEvent) => void) | undefined;
149
+ onMouseleave?: ((payload: MouseEvent) => void) | undefined;
150
+ onMousemove?: ((payload: MouseEvent) => void) | undefined;
151
+ onMouseout?: ((payload: MouseEvent) => void) | undefined;
152
+ onMouseover?: ((payload: MouseEvent) => void) | undefined;
153
+ onMouseup?: ((payload: MouseEvent) => void) | undefined;
154
+ onAbort?: ((payload: Event) => void) | undefined;
155
+ onCanplay?: ((payload: Event) => void) | undefined;
156
+ onCanplaythrough?: ((payload: Event) => void) | undefined;
157
+ onDurationchange?: ((payload: Event) => void) | undefined;
158
+ onEmptied?: ((payload: Event) => void) | undefined;
159
+ onEncrypted?: ((payload: Event) => void) | undefined;
160
+ onEnded?: ((payload: Event) => void) | undefined;
161
+ onLoadeddata?: ((payload: Event) => void) | undefined;
162
+ onLoadedmetadata?: ((payload: Event) => void) | undefined;
163
+ onLoadstart?: ((payload: Event) => void) | undefined;
164
+ onPause?: ((payload: Event) => void) | undefined;
165
+ onPlay?: ((payload: Event) => void) | undefined;
166
+ onPlaying?: ((payload: Event) => void) | undefined;
167
+ onProgress?: ((payload: Event) => void) | undefined;
168
+ onRatechange?: ((payload: Event) => void) | undefined;
169
+ onSeeked?: ((payload: Event) => void) | undefined;
170
+ onSeeking?: ((payload: Event) => void) | undefined;
171
+ onStalled?: ((payload: Event) => void) | undefined;
172
+ onSuspend?: ((payload: Event) => void) | undefined;
173
+ onTimeupdate?: ((payload: Event) => void) | undefined;
174
+ onVolumechange?: ((payload: Event) => void) | undefined;
175
+ onWaiting?: ((payload: Event) => void) | undefined;
176
+ onSelect?: ((payload: Event) => void) | undefined;
177
+ onScroll?: ((payload: Event) => void) | undefined;
178
+ onScrollend?: ((payload: Event) => void) | undefined;
179
+ onTouchcancel?: ((payload: TouchEvent) => void) | undefined;
180
+ onTouchend?: ((payload: TouchEvent) => void) | undefined;
181
+ onTouchmove?: ((payload: TouchEvent) => void) | undefined;
182
+ onTouchstart?: ((payload: TouchEvent) => void) | undefined;
183
+ onPointerdown?: ((payload: PointerEvent) => void) | undefined;
184
+ onPointermove?: ((payload: PointerEvent) => void) | undefined;
185
+ onPointerup?: ((payload: PointerEvent) => void) | undefined;
186
+ onPointercancel?: ((payload: PointerEvent) => void) | undefined;
187
+ onPointerenter?: ((payload: PointerEvent) => void) | undefined;
188
+ onPointerleave?: ((payload: PointerEvent) => void) | undefined;
189
+ onPointerover?: ((payload: PointerEvent) => void) | undefined;
190
+ onPointerout?: ((payload: PointerEvent) => void) | undefined;
191
+ onWheel?: ((payload: WheelEvent) => void) | undefined;
192
+ onAnimationstart?: ((payload: AnimationEvent) => void) | undefined;
193
+ onAnimationend?: ((payload: AnimationEvent) => void) | undefined;
194
+ onAnimationiteration?: ((payload: AnimationEvent) => void) | undefined;
195
+ onTransitionend?: ((payload: TransitionEvent) => void) | undefined;
196
+ onTransitionstart?: ((payload: TransitionEvent) => void) | undefined;
197
+ ref?: import('vue').Ref<Element | ({
198
+ $: import('vue').ComponentInternalInstance;
199
+ $data: {};
200
+ $props: {};
201
+ $attrs: {
202
+ [x: string]: unknown;
203
+ };
204
+ $refs: {
205
+ [x: string]: unknown;
206
+ };
207
+ $slots: Readonly<{
208
+ [name: string]: import('vue').Slot<any> | undefined;
209
+ }>;
210
+ $root: import('vue').ComponentPublicInstance | null;
211
+ $parent: import('vue').ComponentPublicInstance | null;
212
+ $host: Element | null;
213
+ $emit: (event: string, ...args: any[]) => void;
214
+ $el: any;
215
+ $options: import('vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import('vue').ComponentProvideOptions> & {
216
+ beforeCreate?: (() => void) | (() => void)[];
217
+ created?: (() => void) | (() => void)[];
218
+ beforeMount?: (() => void) | (() => void)[];
219
+ mounted?: (() => void) | (() => void)[];
220
+ beforeUpdate?: (() => void) | (() => void)[];
221
+ updated?: (() => void) | (() => void)[];
222
+ activated?: (() => void) | (() => void)[];
223
+ deactivated?: (() => void) | (() => void)[];
224
+ beforeDestroy?: (() => void) | (() => void)[];
225
+ beforeUnmount?: (() => void) | (() => void)[];
226
+ destroyed?: (() => void) | (() => void)[];
227
+ unmounted?: (() => void) | (() => void)[];
228
+ renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
229
+ renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
230
+ errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
231
+ };
232
+ $forceUpdate: () => void;
233
+ $nextTick: typeof import('vue').nextTick;
234
+ $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;
235
+ } & Readonly<{}> & Omit<{}, never> & import('vue').ShallowUnwrapRef<{}> & {} & import('vue').ComponentCustomProperties & {} & {
236
+ $el: Element;
237
+ }) | null, Element | ({
238
+ $: import('vue').ComponentInternalInstance;
239
+ $data: {};
240
+ $props: {};
241
+ $attrs: {
242
+ [x: string]: unknown;
243
+ };
244
+ $refs: {
245
+ [x: string]: unknown;
246
+ };
247
+ $slots: Readonly<{
248
+ [name: string]: import('vue').Slot<any> | undefined;
249
+ }>;
250
+ $root: import('vue').ComponentPublicInstance | null;
251
+ $parent: import('vue').ComponentPublicInstance | null;
252
+ $host: Element | null;
253
+ $emit: (event: string, ...args: any[]) => void;
254
+ $el: any;
255
+ $options: import('vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import('vue').ComponentProvideOptions> & {
256
+ beforeCreate?: (() => void) | (() => void)[];
257
+ created?: (() => void) | (() => void)[];
258
+ beforeMount?: (() => void) | (() => void)[];
259
+ mounted?: (() => void) | (() => void)[];
260
+ beforeUpdate?: (() => void) | (() => void)[];
261
+ updated?: (() => void) | (() => void)[];
262
+ activated?: (() => void) | (() => void)[];
263
+ deactivated?: (() => void) | (() => void)[];
264
+ beforeDestroy?: (() => void) | (() => void)[];
265
+ beforeUnmount?: (() => void) | (() => void)[];
266
+ destroyed?: (() => void) | (() => void)[];
267
+ unmounted?: (() => void) | (() => void)[];
268
+ renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
269
+ renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
270
+ errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
271
+ };
272
+ $forceUpdate: () => void;
273
+ $nextTick: typeof import('vue').nextTick;
274
+ $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;
275
+ } & Readonly<{}> & Omit<{}, never> & import('vue').ShallowUnwrapRef<{}> & {} & import('vue').ComponentCustomProperties & {} & {
276
+ $el: Element;
277
+ }) | null> | undefined;
278
+ }>;
279
+ input: import('vue').ComputedRef<{
280
+ "aria-autocomplete"?: "none" | undefined;
281
+ type?: string | undefined;
282
+ role: string;
283
+ "aria-expanded": boolean;
284
+ "aria-controls": string;
285
+ "aria-label": string;
286
+ "aria-activedescendant": string | undefined;
287
+ onInput: (event: Event) => void;
288
+ onKeydown: (event: KeyboardEvent) => void;
289
+ }>;
290
+ button: import('vue').ComputedRef<{
291
+ tabindex: string;
292
+ onClick: () => void | undefined;
293
+ }>;
294
+ };
295
+ };
296
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {
297
+ combobox: HTMLDivElement;
298
+ }, HTMLDivElement>;
299
+ export default _default;
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,299 @@
1
+ declare const _default: import('vue').DefineComponent<{}, {
2
+ comboBox: {
3
+ elements: {
4
+ option: import('vue').ComputedRef<(data: {
5
+ label: string;
6
+ value: string;
7
+ disabled?: boolean;
8
+ selected?: boolean;
9
+ }) => {
10
+ readonly id: string;
11
+ readonly role: "option";
12
+ readonly "aria-label": string;
13
+ readonly "aria-disabled": boolean | undefined;
14
+ readonly "aria-checked": boolean | undefined;
15
+ readonly "aria-selected": boolean | undefined;
16
+ readonly onClick: () => false | void | undefined;
17
+ }>;
18
+ group: import('vue').ComputedRef<(options: {
19
+ label: string;
20
+ }) => {
21
+ role: string;
22
+ "aria-label": string;
23
+ }>;
24
+ listbox: import('vue').ComputedRef<{
25
+ id: string;
26
+ onMousedown: (e: MouseEvent) => void;
27
+ innerHTML?: string;
28
+ class?: any;
29
+ style?: import('vue').StyleValue;
30
+ accesskey?: string;
31
+ contenteditable?: (boolean | "true" | "false") | "inherit" | "plaintext-only";
32
+ contextmenu?: string;
33
+ dir?: string;
34
+ draggable?: boolean | "true" | "false";
35
+ hidden?: (boolean | "true" | "false") | "" | "hidden" | "until-found";
36
+ inert?: boolean | "true" | "false";
37
+ lang?: string;
38
+ placeholder?: string;
39
+ spellcheck?: boolean | "true" | "false";
40
+ tabindex?: string | number;
41
+ title?: string;
42
+ translate?: "yes" | "no";
43
+ radiogroup?: string;
44
+ role?: string;
45
+ about?: string;
46
+ datatype?: string;
47
+ inlist?: any;
48
+ prefix?: string;
49
+ property?: string;
50
+ resource?: string;
51
+ typeof?: string;
52
+ vocab?: string;
53
+ autocapitalize?: string;
54
+ autocorrect?: string;
55
+ autosave?: string;
56
+ color?: string;
57
+ itemprop?: string;
58
+ itemscope?: boolean | "true" | "false";
59
+ itemtype?: string;
60
+ itemid?: string;
61
+ itemref?: string;
62
+ results?: string | number;
63
+ security?: string;
64
+ unselectable?: "on" | "off";
65
+ inputmode?: "none" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | "search";
66
+ is?: string;
67
+ 'aria-activedescendant'?: string;
68
+ 'aria-atomic'?: boolean | "true" | "false";
69
+ 'aria-autocomplete'?: "none" | "inline" | "list" | "both";
70
+ 'aria-busy'?: boolean | "true" | "false";
71
+ 'aria-checked'?: (boolean | "true" | "false") | "mixed";
72
+ 'aria-colcount'?: string | number;
73
+ 'aria-colindex'?: string | number;
74
+ 'aria-colspan'?: string | number;
75
+ 'aria-controls'?: string;
76
+ 'aria-current'?: (boolean | "true" | "false") | "page" | "step" | "location" | "date" | "time";
77
+ 'aria-describedby'?: string;
78
+ 'aria-details'?: string;
79
+ 'aria-disabled'?: boolean | "true" | "false";
80
+ 'aria-dropeffect'?: "none" | "copy" | "execute" | "link" | "move" | "popup";
81
+ 'aria-errormessage'?: string;
82
+ 'aria-expanded'?: boolean | "true" | "false";
83
+ 'aria-flowto'?: string;
84
+ 'aria-grabbed'?: boolean | "true" | "false";
85
+ 'aria-haspopup'?: (boolean | "true" | "false") | "menu" | "listbox" | "tree" | "grid" | "dialog";
86
+ 'aria-hidden'?: boolean | "true" | "false";
87
+ 'aria-invalid'?: (boolean | "true" | "false") | "grammar" | "spelling";
88
+ 'aria-keyshortcuts'?: string;
89
+ 'aria-label'?: string;
90
+ 'aria-labelledby'?: string;
91
+ 'aria-level'?: string | number;
92
+ 'aria-live'?: "off" | "assertive" | "polite";
93
+ 'aria-modal'?: boolean | "true" | "false";
94
+ 'aria-multiline'?: boolean | "true" | "false";
95
+ 'aria-multiselectable'?: boolean | "true" | "false";
96
+ 'aria-orientation'?: "horizontal" | "vertical";
97
+ 'aria-owns'?: string;
98
+ 'aria-placeholder'?: string;
99
+ 'aria-posinset'?: string | number;
100
+ 'aria-pressed'?: (boolean | "true" | "false") | "mixed";
101
+ 'aria-readonly'?: boolean | "true" | "false";
102
+ 'aria-relevant'?: "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text" | "text additions" | "text removals";
103
+ 'aria-required'?: boolean | "true" | "false";
104
+ 'aria-roledescription'?: string;
105
+ 'aria-rowcount'?: string | number;
106
+ 'aria-rowindex'?: string | number;
107
+ 'aria-rowspan'?: string | number;
108
+ 'aria-selected'?: boolean | "true" | "false";
109
+ 'aria-setsize'?: string | number;
110
+ 'aria-sort'?: "none" | "ascending" | "descending" | "other";
111
+ 'aria-valuemax'?: string | number;
112
+ 'aria-valuemin'?: string | number;
113
+ 'aria-valuenow'?: string | number;
114
+ 'aria-valuetext'?: string;
115
+ onCopy?: ((payload: ClipboardEvent) => void) | undefined;
116
+ onCut?: ((payload: ClipboardEvent) => void) | undefined;
117
+ onPaste?: ((payload: ClipboardEvent) => void) | undefined;
118
+ onCompositionend?: ((payload: CompositionEvent) => void) | undefined;
119
+ onCompositionstart?: ((payload: CompositionEvent) => void) | undefined;
120
+ onCompositionupdate?: ((payload: CompositionEvent) => void) | undefined;
121
+ onDrag?: ((payload: DragEvent) => void) | undefined;
122
+ onDragend?: ((payload: DragEvent) => void) | undefined;
123
+ onDragenter?: ((payload: DragEvent) => void) | undefined;
124
+ onDragexit?: ((payload: DragEvent) => void) | undefined;
125
+ onDragleave?: ((payload: DragEvent) => void) | undefined;
126
+ onDragover?: ((payload: DragEvent) => void) | undefined;
127
+ onDragstart?: ((payload: DragEvent) => void) | undefined;
128
+ onDrop?: ((payload: DragEvent) => void) | undefined;
129
+ onFocus?: ((payload: FocusEvent) => void) | undefined;
130
+ onFocusin?: ((payload: FocusEvent) => void) | undefined;
131
+ onFocusout?: ((payload: FocusEvent) => void) | undefined;
132
+ onBlur?: ((payload: FocusEvent) => void) | undefined;
133
+ onChange?: ((payload: Event) => void) | undefined;
134
+ onBeforeinput?: ((payload: Event) => void) | undefined;
135
+ onInput?: ((payload: Event) => void) | undefined;
136
+ onReset?: ((payload: Event) => void) | undefined;
137
+ onSubmit?: ((payload: Event) => void) | undefined;
138
+ onInvalid?: ((payload: Event) => void) | undefined;
139
+ onLoad?: ((payload: Event) => void) | undefined;
140
+ onError?: ((payload: Event) => void) | undefined;
141
+ onKeydown?: ((payload: KeyboardEvent) => void) | undefined;
142
+ onKeypress?: ((payload: KeyboardEvent) => void) | undefined;
143
+ onKeyup?: ((payload: KeyboardEvent) => void) | undefined;
144
+ onAuxclick?: ((payload: MouseEvent) => void) | undefined;
145
+ onClick?: ((payload: MouseEvent) => void) | undefined;
146
+ onContextmenu?: ((payload: MouseEvent) => void) | undefined;
147
+ onDblclick?: ((payload: MouseEvent) => void) | undefined;
148
+ onMouseenter?: ((payload: MouseEvent) => void) | undefined;
149
+ onMouseleave?: ((payload: MouseEvent) => void) | undefined;
150
+ onMousemove?: ((payload: MouseEvent) => void) | undefined;
151
+ onMouseout?: ((payload: MouseEvent) => void) | undefined;
152
+ onMouseover?: ((payload: MouseEvent) => void) | undefined;
153
+ onMouseup?: ((payload: MouseEvent) => void) | undefined;
154
+ onAbort?: ((payload: Event) => void) | undefined;
155
+ onCanplay?: ((payload: Event) => void) | undefined;
156
+ onCanplaythrough?: ((payload: Event) => void) | undefined;
157
+ onDurationchange?: ((payload: Event) => void) | undefined;
158
+ onEmptied?: ((payload: Event) => void) | undefined;
159
+ onEncrypted?: ((payload: Event) => void) | undefined;
160
+ onEnded?: ((payload: Event) => void) | undefined;
161
+ onLoadeddata?: ((payload: Event) => void) | undefined;
162
+ onLoadedmetadata?: ((payload: Event) => void) | undefined;
163
+ onLoadstart?: ((payload: Event) => void) | undefined;
164
+ onPause?: ((payload: Event) => void) | undefined;
165
+ onPlay?: ((payload: Event) => void) | undefined;
166
+ onPlaying?: ((payload: Event) => void) | undefined;
167
+ onProgress?: ((payload: Event) => void) | undefined;
168
+ onRatechange?: ((payload: Event) => void) | undefined;
169
+ onSeeked?: ((payload: Event) => void) | undefined;
170
+ onSeeking?: ((payload: Event) => void) | undefined;
171
+ onStalled?: ((payload: Event) => void) | undefined;
172
+ onSuspend?: ((payload: Event) => void) | undefined;
173
+ onTimeupdate?: ((payload: Event) => void) | undefined;
174
+ onVolumechange?: ((payload: Event) => void) | undefined;
175
+ onWaiting?: ((payload: Event) => void) | undefined;
176
+ onSelect?: ((payload: Event) => void) | undefined;
177
+ onScroll?: ((payload: Event) => void) | undefined;
178
+ onScrollend?: ((payload: Event) => void) | undefined;
179
+ onTouchcancel?: ((payload: TouchEvent) => void) | undefined;
180
+ onTouchend?: ((payload: TouchEvent) => void) | undefined;
181
+ onTouchmove?: ((payload: TouchEvent) => void) | undefined;
182
+ onTouchstart?: ((payload: TouchEvent) => void) | undefined;
183
+ onPointerdown?: ((payload: PointerEvent) => void) | undefined;
184
+ onPointermove?: ((payload: PointerEvent) => void) | undefined;
185
+ onPointerup?: ((payload: PointerEvent) => void) | undefined;
186
+ onPointercancel?: ((payload: PointerEvent) => void) | undefined;
187
+ onPointerenter?: ((payload: PointerEvent) => void) | undefined;
188
+ onPointerleave?: ((payload: PointerEvent) => void) | undefined;
189
+ onPointerover?: ((payload: PointerEvent) => void) | undefined;
190
+ onPointerout?: ((payload: PointerEvent) => void) | undefined;
191
+ onWheel?: ((payload: WheelEvent) => void) | undefined;
192
+ onAnimationstart?: ((payload: AnimationEvent) => void) | undefined;
193
+ onAnimationend?: ((payload: AnimationEvent) => void) | undefined;
194
+ onAnimationiteration?: ((payload: AnimationEvent) => void) | undefined;
195
+ onTransitionend?: ((payload: TransitionEvent) => void) | undefined;
196
+ onTransitionstart?: ((payload: TransitionEvent) => void) | undefined;
197
+ ref?: import('vue').Ref<Element | ({
198
+ $: import('vue').ComponentInternalInstance;
199
+ $data: {};
200
+ $props: {};
201
+ $attrs: {
202
+ [x: string]: unknown;
203
+ };
204
+ $refs: {
205
+ [x: string]: unknown;
206
+ };
207
+ $slots: Readonly<{
208
+ [name: string]: import('vue').Slot<any> | undefined;
209
+ }>;
210
+ $root: import('vue').ComponentPublicInstance | null;
211
+ $parent: import('vue').ComponentPublicInstance | null;
212
+ $host: Element | null;
213
+ $emit: (event: string, ...args: any[]) => void;
214
+ $el: any;
215
+ $options: import('vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import('vue').ComponentProvideOptions> & {
216
+ beforeCreate?: (() => void) | (() => void)[];
217
+ created?: (() => void) | (() => void)[];
218
+ beforeMount?: (() => void) | (() => void)[];
219
+ mounted?: (() => void) | (() => void)[];
220
+ beforeUpdate?: (() => void) | (() => void)[];
221
+ updated?: (() => void) | (() => void)[];
222
+ activated?: (() => void) | (() => void)[];
223
+ deactivated?: (() => void) | (() => void)[];
224
+ beforeDestroy?: (() => void) | (() => void)[];
225
+ beforeUnmount?: (() => void) | (() => void)[];
226
+ destroyed?: (() => void) | (() => void)[];
227
+ unmounted?: (() => void) | (() => void)[];
228
+ renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
229
+ renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
230
+ errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
231
+ };
232
+ $forceUpdate: () => void;
233
+ $nextTick: typeof import('vue').nextTick;
234
+ $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;
235
+ } & Readonly<{}> & Omit<{}, never> & import('vue').ShallowUnwrapRef<{}> & {} & import('vue').ComponentCustomProperties & {} & {
236
+ $el: Element;
237
+ }) | null, Element | ({
238
+ $: import('vue').ComponentInternalInstance;
239
+ $data: {};
240
+ $props: {};
241
+ $attrs: {
242
+ [x: string]: unknown;
243
+ };
244
+ $refs: {
245
+ [x: string]: unknown;
246
+ };
247
+ $slots: Readonly<{
248
+ [name: string]: import('vue').Slot<any> | undefined;
249
+ }>;
250
+ $root: import('vue').ComponentPublicInstance | null;
251
+ $parent: import('vue').ComponentPublicInstance | null;
252
+ $host: Element | null;
253
+ $emit: (event: string, ...args: any[]) => void;
254
+ $el: any;
255
+ $options: import('vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import('vue').ComponentProvideOptions> & {
256
+ beforeCreate?: (() => void) | (() => void)[];
257
+ created?: (() => void) | (() => void)[];
258
+ beforeMount?: (() => void) | (() => void)[];
259
+ mounted?: (() => void) | (() => void)[];
260
+ beforeUpdate?: (() => void) | (() => void)[];
261
+ updated?: (() => void) | (() => void)[];
262
+ activated?: (() => void) | (() => void)[];
263
+ deactivated?: (() => void) | (() => void)[];
264
+ beforeDestroy?: (() => void) | (() => void)[];
265
+ beforeUnmount?: (() => void) | (() => void)[];
266
+ destroyed?: (() => void) | (() => void)[];
267
+ unmounted?: (() => void) | (() => void)[];
268
+ renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
269
+ renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
270
+ errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
271
+ };
272
+ $forceUpdate: () => void;
273
+ $nextTick: typeof import('vue').nextTick;
274
+ $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;
275
+ } & Readonly<{}> & Omit<{}, never> & import('vue').ShallowUnwrapRef<{}> & {} & import('vue').ComponentCustomProperties & {} & {
276
+ $el: Element;
277
+ }) | null> | undefined;
278
+ }>;
279
+ input: import('vue').ComputedRef<{
280
+ "aria-autocomplete"?: "list" | undefined;
281
+ type?: string | undefined;
282
+ role: string;
283
+ "aria-expanded": boolean;
284
+ "aria-controls": string;
285
+ "aria-label": string;
286
+ "aria-activedescendant": string | undefined;
287
+ onInput: (event: Event) => void;
288
+ onKeydown: (event: KeyboardEvent) => void;
289
+ }>;
290
+ button: import('vue').ComputedRef<{
291
+ tabindex: string;
292
+ onClick: () => void | undefined;
293
+ }>;
294
+ };
295
+ };
296
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {
297
+ combobox: HTMLDivElement;
298
+ }, HTMLDivElement>;
299
+ export default _default;