@vuetify/v0 0.0.2 → 0.0.6

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 (36) hide show
  1. package/README.md +12 -13
  2. package/dist/browser/index.js +3347 -2056
  3. package/dist/components/index.d.ts +4 -7
  4. package/dist/components/index.js +6 -8
  5. package/dist/{components-Cc48kKWf.js → components-B5k361i-.js} +173 -190
  6. package/dist/composables/index.d.ts +3 -7
  7. package/dist/composables/index.js +4 -7
  8. package/dist/composables-CAbYjAkR.js +3746 -0
  9. package/dist/constants/index.d.ts +1 -1
  10. package/dist/constants/index.js +3 -3
  11. package/dist/{globals--2b7sF4-.js → globals-CHVv7nNV.js} +2 -2
  12. package/dist/{htmlElements-SjqYu0am.js → htmlElements-lF7PGahL.js} +1 -1
  13. package/dist/{index-z_zwVNP8.d.ts → index-BKc0YiL1.d.ts} +1 -1
  14. package/dist/index-BQfe0WBZ.d.ts +410 -0
  15. package/dist/index-BhPlroXd.d.ts +2764 -0
  16. package/dist/{index-LBy5OPMu.d.ts → index-C_lAPFXS.d.ts} +1 -1
  17. package/dist/{index-BozA2pze.d.ts → index-DIX3zaZG.d.ts} +3 -10
  18. package/dist/index.d.ts +6 -7
  19. package/dist/index.js +7 -10
  20. package/dist/types/index.d.ts +1 -1
  21. package/dist/utilities/index.d.ts +3 -3
  22. package/dist/utilities/index.js +2 -2
  23. package/dist/{utilities-D9rWEgQK.js → utilities-rsKHgU2m.js} +5 -32
  24. package/package.json +10 -38
  25. package/dist/composables-7Cbs2sdO.js +0 -1003
  26. package/dist/factories/index.d.ts +0 -2
  27. package/dist/factories/index.js +0 -3
  28. package/dist/factories-CPq2yMlr.js +0 -79
  29. package/dist/index-BnsMFYhs.d.ts +0 -1407
  30. package/dist/index-BqrLvboW.d.ts +0 -61
  31. package/dist/index-tUyghL98.d.ts +0 -19
  32. package/dist/transformers/index.d.ts +0 -2
  33. package/dist/transformers/index.js +0 -4
  34. package/dist/transformers-BAeg3QJF.js +0 -122
  35. package/dist/useTheme-DSYiiz0R.js +0 -1244
  36. /package/dist/{constants-DiTCgvMU.js → constants-De5c3_aB.js} +0 -0
@@ -1,1407 +0,0 @@
1
- import { DOMElement, ID, MaybeArray } from "./index-LBy5OPMu.js";
2
- import { ContextTrinity, Plugin } from "./index-BqrLvboW.js";
3
- import * as vue189 from "vue";
4
- import { App, ComputedRef, InjectionKey, MaybeRef, MaybeRefOrGetter, ModelRef, Reactive, Ref, ShallowReactive, ShallowRef, TemplateRef, UnwrapNestedRefs } from "vue";
5
- import { AnyARecord } from "node:dns";
6
-
7
- //#region src/components/Atom/Atom.vue.d.ts
8
- interface AtomProps {
9
- as?: DOMElement | null;
10
- renderless?: boolean;
11
- }
12
- interface AtomSlots<T> {
13
- default: (props: T) => any;
14
- }
15
- interface AtomExpose {
16
- element: TemplateRef<HTMLElement | null>;
17
- }
18
- interface AtomPrivateProps extends AtomProps {}
19
- declare const _default$2: <T extends Record<string, any> = {}>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: __VLS_PrettifyLocal<Pick<NonNullable<Awaited<typeof __VLS_setup>>, "attrs" | "emit" | "slots">>, __VLS_expose?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
20
- props: __VLS_PrettifyLocal<Pick<Partial<{}> & Omit<{} & vue189.VNodeProps & vue189.AllowedComponentProps & vue189.ComponentCustomProps, never>, never> & AtomPrivateProps & Partial<{}>> & vue189.PublicProps;
21
- expose(exposed: vue189.ShallowUnwrapRef<AtomExpose>): void;
22
- attrs: any;
23
- slots: AtomSlots<T>;
24
- emit: {};
25
- }>) => vue189.VNode & {
26
- __ctx?: Awaited<typeof __VLS_setup>;
27
- };
28
- type __VLS_PrettifyLocal<T> = { [K in keyof T as K]: T[K] } & {};
29
- //#endregion
30
- //#region src/composables/useBreakpoints/index.d.ts
31
- type BreakpointName = 'xs' | 'sm' | 'md' | 'lg' | 'xl' | 'xxl';
32
- interface BreakpointsContext {
33
- breakpoints: Readonly<Record<BreakpointName, number>>;
34
- name: BreakpointName;
35
- width: number;
36
- height: number;
37
- isMobile: boolean;
38
- xs: boolean;
39
- sm: boolean;
40
- md: boolean;
41
- lg: boolean;
42
- xl: boolean;
43
- xxl: boolean;
44
- smAndUp: boolean;
45
- mdAndUp: boolean;
46
- lgAndUp: boolean;
47
- xlAndUp: boolean;
48
- xxlAndUp: boolean;
49
- smAndDown: boolean;
50
- mdAndDown: boolean;
51
- lgAndDown: boolean;
52
- xlAndDown: boolean;
53
- xxlAndDown: boolean;
54
- update: () => void;
55
- }
56
- interface BreakpointsOptions {
57
- mobileBreakpoint?: BreakpointName | number;
58
- breakpoints?: Partial<Record<BreakpointName, number>>;
59
- }
60
- declare const useBreakpointsContext: (namespace?: string) => BreakpointsContext, provideBreakpointsContext: (context: BreakpointsContext, app?: App) => BreakpointsContext;
61
- /**
62
- * Simple hook to access the breakpoints context.
63
- *
64
- * @returns The breakpoints context containing current breakpoint information.
65
- */
66
- declare function useBreakpoints(): BreakpointsContext;
67
- /**
68
- * Creates a reactive breakpoints system for responsive behavior management.
69
- * This function provides access to viewport dimensions, breakpoint detection, and helper flags
70
- * for determining current screen size and implementing responsive logic.
71
- *
72
- * @param options Optional configuration for breakpoint thresholds and mobile breakpoint.
73
- * @returns A breakpoints context object with reactive state and utility methods.
74
- */
75
- declare function createBreakpoints(options?: BreakpointsOptions): vue189.ShallowReactive<{
76
- breakpoints: {
77
- readonly xs: 0;
78
- readonly sm: 600;
79
- readonly md: 960;
80
- readonly lg: 1280;
81
- readonly xl: 1920;
82
- readonly xxl: 2560;
83
- };
84
- name: BreakpointName;
85
- width: number;
86
- height: number;
87
- isMobile: boolean;
88
- xs: boolean;
89
- sm: boolean;
90
- md: boolean;
91
- lg: boolean;
92
- xl: boolean;
93
- xxl: boolean;
94
- smAndUp: boolean;
95
- mdAndUp: boolean;
96
- lgAndUp: boolean;
97
- xlAndUp: boolean;
98
- xxlAndUp: boolean;
99
- smAndDown: boolean;
100
- mdAndDown: boolean;
101
- lgAndDown: boolean;
102
- xlAndDown: boolean;
103
- xxlAndDown: boolean;
104
- update: () => void;
105
- }>;
106
- /**
107
- * Creates a Vue plugin for managing responsive breakpoints with automatic updates.
108
- * This plugin sets up breakpoint tracking and updates the context when the window
109
- * is resized, providing reactive breakpoint state throughout the application.
110
- *
111
- * @param options Optional configuration for breakpoint thresholds and mobile breakpoint.
112
- * @returns A Vue plugin object with install method.
113
- */
114
- declare function createBreakpointsPlugin(options?: BreakpointsOptions): Plugin;
115
- //#endregion
116
- //#region src/components/Breakpoints/BreakpointsItem.vue.d.ts
117
- interface BreakpointsSlots {
118
- default: (scope: BreakpointsContext) => any;
119
- xs?: (scope: BreakpointsContext) => any;
120
- sm?: (scope: BreakpointsContext) => any;
121
- md?: (scope: BreakpointsContext) => any;
122
- lg?: (scope: BreakpointsContext) => any;
123
- xl?: (scope: BreakpointsContext) => any;
124
- xxl?: (scope: BreakpointsContext) => any;
125
- }
126
- //#endregion
127
- //#region src/components/Breakpoints/BreakpointsRoot.vue.d.ts
128
- interface BreakpointsRootProps extends BreakpointsOptions {}
129
- interface BreakpointsRootSlots {
130
- default: (scope: BreakpointsContext) => any;
131
- }
132
- //#endregion
133
- //#region src/components/Breakpoints/index.d.ts
134
- declare const Breakpoints: {
135
- Item: {
136
- new (...args: any[]): vue189.CreateComponentPublicInstanceWithMixins<Readonly<{}> & Readonly<{}>, void, {}, {}, {}, vue189.ComponentOptionsMixin, vue189.ComponentOptionsMixin, {}, vue189.PublicProps, {}, true, {}, {}, vue189.GlobalComponents, vue189.GlobalDirectives, string, {}, any, vue189.ComponentProvideOptions, {
137
- P: {};
138
- B: {};
139
- D: {};
140
- C: {};
141
- M: {};
142
- Defaults: {};
143
- }, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, {}>;
144
- __isFragment?: never;
145
- __isTeleport?: never;
146
- __isSuspense?: never;
147
- } & vue189.ComponentOptionsBase<Readonly<{}> & Readonly<{}>, void, {}, {}, {}, vue189.ComponentOptionsMixin, vue189.ComponentOptionsMixin, {}, string, {}, {}, string, {}, vue189.GlobalComponents, vue189.GlobalDirectives, string, vue189.ComponentProvideOptions> & vue189.VNodeProps & vue189.AllowedComponentProps & vue189.ComponentCustomProps & (new () => {
148
- $slots: BreakpointsSlots;
149
- });
150
- Root: {
151
- new (...args: any[]): vue189.CreateComponentPublicInstanceWithMixins<Readonly<BreakpointsRootProps> & Readonly<{}>, void, {}, {}, {}, vue189.ComponentOptionsMixin, vue189.ComponentOptionsMixin, {}, vue189.PublicProps, {}, false, {}, {}, vue189.GlobalComponents, vue189.GlobalDirectives, string, {}, any, vue189.ComponentProvideOptions, {
152
- P: {};
153
- B: {};
154
- D: {};
155
- C: {};
156
- M: {};
157
- Defaults: {};
158
- }, Readonly<BreakpointsRootProps> & Readonly<{}>, {}, {}, {}, {}, {}>;
159
- __isFragment?: never;
160
- __isTeleport?: never;
161
- __isSuspense?: never;
162
- } & vue189.ComponentOptionsBase<Readonly<BreakpointsRootProps> & Readonly<{}>, void, {}, {}, {}, vue189.ComponentOptionsMixin, vue189.ComponentOptionsMixin, {}, string, {}, {}, string, {}, vue189.GlobalComponents, vue189.GlobalDirectives, string, vue189.ComponentProvideOptions> & vue189.VNodeProps & vue189.AllowedComponentProps & vue189.ComponentCustomProps & (new () => {
163
- $slots: BreakpointsRootSlots;
164
- });
165
- };
166
- //#endregion
167
- //#region src/components/Context/ContextItem.vue.d.ts
168
- interface ContextSlots<T> {
169
- default: (props: {
170
- value: T;
171
- }) => any;
172
- }
173
- //#endregion
174
- //#region src/components/Context/ContextRoot.vue.d.ts
175
- interface ContextRootSlots {
176
- default: () => any;
177
- }
178
- //#endregion
179
- //#region src/components/Context/index.d.ts
180
- declare const Context: {
181
- Item: <T>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: {
182
- attrs: any;
183
- emit: {};
184
- slots: ContextSlots<T>;
185
- }, __VLS_expose?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
186
- props: {
187
- contextKey?: string | vue189.InjectionKey<T> | undefined;
188
- value?: T | undefined;
189
- } & vue189.PublicProps;
190
- expose(exposed: vue189.ShallowUnwrapRef<{}>): void;
191
- attrs: any;
192
- slots: ContextSlots<T>;
193
- emit: {};
194
- }>) => vue189.VNode & {
195
- __ctx?: Awaited<typeof __VLS_setup>;
196
- };
197
- Root: <T>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: {
198
- attrs: any;
199
- emit: {};
200
- slots: ContextRootSlots;
201
- }, __VLS_expose?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
202
- props: {
203
- contextKey: string | vue189.InjectionKey<T>;
204
- value: T;
205
- } & vue189.PublicProps;
206
- expose(exposed: vue189.ShallowUnwrapRef<{}>): void;
207
- attrs: any;
208
- slots: ContextRootSlots;
209
- emit: {};
210
- }>) => vue189.VNode & {
211
- __ctx?: Awaited<typeof __VLS_setup>;
212
- };
213
- };
214
- //#endregion
215
- //#region src/composables/useRegistry/index.d.ts
216
- interface RegistryTicket {
217
- /** The unique identifier. Is randomly generated if not provided. */
218
- id: ID;
219
- /** The index of the ticket. It's not recommended to manually set this. */
220
- index: number;
221
- /** The value associated with the ticket. If not provided, it defaults to the index. */
222
- value: unknown;
223
- /** Whether the value is derived from index. It's not recommended to manually set this. */
224
- valueIsIndex: boolean;
225
- }
226
- interface RegistryContext<Z extends RegistryTicket = RegistryTicket> {
227
- /** The collection of tickets */
228
- collection: Map<ID, Z>;
229
- /** Clear the entire registry */
230
- clear: () => void;
231
- /** Check if an item exists by ID */
232
- has: (id: ID) => boolean;
233
- /** Returns an array of registered IDs */
234
- keys: () => ID[];
235
- /** Browse for an ID by value */
236
- browse: (value: unknown) => ID | ID[] | undefined;
237
- /** lookup a ticket by index number */
238
- lookup: (index: number) => ID | undefined;
239
- /** Get a ticket by ID */
240
- get: (id: ID) => Z | undefined;
241
- /** Update or insert an item by ID */
242
- upsert: (id: ID, item?: Partial<Z>) => Z;
243
- /** Get all registered tickets */
244
- values: () => Z[];
245
- /** Get all entries as [ID, ticket] pairs */
246
- entries: () => [ID, Z][];
247
- /** Register a new item */
248
- register: (item?: Partial<Z>) => Z;
249
- /** Unregister an item by ID */
250
- unregister: (id: ID) => void;
251
- /** Reset the index directory and update all tickets */
252
- reindex: () => void;
253
- /** Listen for registry events */
254
- on: (event: string, cb: Function) => void;
255
- /** Stop listening for registry events */
256
- off: (event: string, cb: Function) => void;
257
- /** Emit an event with data */
258
- emit: (event: string, data: any) => void;
259
- /** Clears the registry and listeners */
260
- dispose: () => void;
261
- /** Onboard multiple new items */
262
- onboard: (registrations: Partial<Z>[]) => Z[];
263
- /** The size of the registry */
264
- size: number;
265
- }
266
- interface RegistryOptions {
267
- /** Enable event emission for registry operations */
268
- events?: boolean;
269
- }
270
- /**
271
- * Creates a registry for managing collections of items with registration and lookup capabilities.
272
- * This function provides the foundation for item management systems with ID-based, value-based,
273
- * and index-based access patterns.
274
- *
275
- * @param options Optional configuration for enabling events.
276
- * @template Z The type of items managed by the registry.
277
- * @template E The type of the registry context.
278
- * @returns The registry context object.
279
- */
280
- declare function useRegistry<Z extends RegistryTicket = RegistryTicket, E extends RegistryContext<Z> = RegistryContext<Z>>(options?: RegistryOptions): E;
281
- /**
282
- * Creates a registry context with full injection/provision control.
283
- * Returns the complete trinity for advanced usage scenarios.
284
- *
285
- * @param namespace The namespace for the registry context.
286
- * @param options Optional configuration for reactivity behavior.
287
- * @template Z The type of tickets managed by the registry.
288
- * @template E The type of the registry context.
289
- * @returns A tuple containing the inject function, provide function, and the registry context.
290
- */
291
- declare function createRegistryContext<Z extends RegistryTicket = RegistryTicket, E extends RegistryContext<Z> = RegistryContext<Z>>(namespace: string, options?: RegistryOptions): ContextTrinity<E>;
292
- //#endregion
293
- //#region src/composables/useSelection/index.d.ts
294
- interface SelectionTicket extends RegistryTicket {
295
- disabled: boolean;
296
- isActive: Readonly<Ref<boolean, boolean>>;
297
- /** Select self */
298
- select: () => void;
299
- /** Unselect self */
300
- unselect: () => void;
301
- /** Toggle self on and off */
302
- toggle: () => void;
303
- }
304
- interface SelectionContext<Z extends SelectionTicket> extends RegistryContext<Z> {
305
- selectedIds: Reactive<Set<ID>>;
306
- selectedItems: ComputedRef<Set<Z>>;
307
- selectedValues: ComputedRef<Set<unknown>>;
308
- /** Clear all selected IDs and reindexes */
309
- reset: () => void;
310
- /** Select a ticket by ID (Toggle ON) */
311
- select: (id: ID) => void;
312
- /** Unselect a ticket by ID (Toggle OFF) */
313
- unselect: (id: ID) => void;
314
- /** Toggles a ticket ON and OFF by ID */
315
- toggle: (id: ID) => void;
316
- /** Mandates selected ID based on "mandatory" Option */
317
- mandate: () => void;
318
- }
319
- interface SelectionOptions extends RegistryOptions {
320
- /** When true, newly registered items are automatically selected if not disabled */
321
- enroll?: boolean;
322
- mandatory?: boolean | 'force';
323
- }
324
- /**
325
- * Creates a selection context for managing collections of selectable items.
326
- * This function extends the registry functionality with selection state management.
327
- *
328
- * @param options Optional configuration for selection behavior.
329
- * @template Z The type of items managed by the selection.
330
- * @template E The type of the selection context.
331
- * @returns The selection context object.
332
- */
333
- declare function useSelection<Z extends SelectionTicket = SelectionTicket, E extends SelectionContext<Z> = SelectionContext<Z>>(options?: SelectionOptions): E;
334
- //#endregion
335
- //#region src/composables/useGroup/index.d.ts
336
- interface GroupTicket extends SelectionTicket {}
337
- interface GroupContext<Z extends GroupTicket> extends SelectionContext<Z> {
338
- selectedIndexes: ComputedRef<Set<number>>;
339
- /** Select one or more Tickets by ID */
340
- select: (ids: ID | ID[]) => void;
341
- /** Unselect one or more Tickets by ID */
342
- unselect: (ids: ID | ID[]) => void;
343
- /** Toggle one or more Tickets ON and OFF by ID */
344
- toggle: (ids: ID | ID[]) => void;
345
- }
346
- interface GroupOptions extends SelectionOptions {}
347
- /**
348
- * Creates a group selection context for managing collections of items where multiple selections can be made.
349
- * This function extends the selection functionality with group selection capabilities.
350
- *
351
- * @param options Optional configuration for group selection behavior.
352
- * @template Z The type of items managed by the group selection.
353
- * @template E The type of the group selection context.
354
- * @returns The group selection context object.
355
- */
356
- declare function useGroup<Z extends GroupTicket = GroupTicket, E extends GroupContext<Z> = GroupContext<Z>>(options?: GroupOptions): E;
357
- //#endregion
358
- //#region src/components/Group/GroupItem.vue.d.ts
359
- interface GroupItemProps {
360
- id?: string;
361
- value?: any;
362
- disabled?: boolean;
363
- namespace?: string;
364
- }
365
- interface GroupItemSlots {
366
- default: (scope: UnwrapNestedRefs<GroupTicket>) => any;
367
- }
368
- //#endregion
369
- //#region src/components/Group/GroupRoot.vue.d.ts
370
- interface GroupRootProps extends GroupOptions {
371
- namespace?: string;
372
- }
373
- interface GroupRootSlots {
374
- default: (scope: GroupContext & {
375
- model: ModelRef<any>;
376
- }) => any;
377
- }
378
- //#endregion
379
- //#region src/components/Group/index.d.ts
380
- declare const Group: {
381
- Item: {
382
- new (...args: any[]): vue189.CreateComponentPublicInstanceWithMixins<Readonly<GroupItemProps> & Readonly<{}>, void, {}, {}, {}, vue189.ComponentOptionsMixin, vue189.ComponentOptionsMixin, {}, vue189.PublicProps, {}, false, {}, {}, vue189.GlobalComponents, vue189.GlobalDirectives, string, {}, any, vue189.ComponentProvideOptions, {
383
- P: {};
384
- B: {};
385
- D: {};
386
- C: {};
387
- M: {};
388
- Defaults: {};
389
- }, Readonly<GroupItemProps> & Readonly<{}>, {}, {}, {}, {}, {}>;
390
- __isFragment?: never;
391
- __isTeleport?: never;
392
- __isSuspense?: never;
393
- } & vue189.ComponentOptionsBase<Readonly<GroupItemProps> & Readonly<{}>, void, {}, {}, {}, vue189.ComponentOptionsMixin, vue189.ComponentOptionsMixin, {}, string, {}, {}, string, {}, vue189.GlobalComponents, vue189.GlobalDirectives, string, vue189.ComponentProvideOptions> & vue189.VNodeProps & vue189.AllowedComponentProps & vue189.ComponentCustomProps & (new () => {
394
- $slots: GroupItemSlots;
395
- });
396
- Root: {
397
- new (...args: any[]): vue189.CreateComponentPublicInstanceWithMixins<Readonly<GroupRootProps & {
398
- modelValue?: any;
399
- }> & Readonly<{
400
- "onUpdate:modelValue"?: ((value: any) => any) | undefined;
401
- }>, void, {}, {}, {}, vue189.ComponentOptionsMixin, vue189.ComponentOptionsMixin, {
402
- "update:modelValue": (value: any) => any;
403
- }, vue189.PublicProps, {}, false, {}, {}, vue189.GlobalComponents, vue189.GlobalDirectives, string, {}, any, vue189.ComponentProvideOptions, {
404
- P: {};
405
- B: {};
406
- D: {};
407
- C: {};
408
- M: {};
409
- Defaults: {};
410
- }, Readonly<GroupRootProps & {
411
- modelValue?: any;
412
- }> & Readonly<{
413
- "onUpdate:modelValue"?: ((value: any) => any) | undefined;
414
- }>, {}, {}, {}, {}, {}>;
415
- __isFragment?: never;
416
- __isTeleport?: never;
417
- __isSuspense?: never;
418
- } & vue189.ComponentOptionsBase<Readonly<GroupRootProps & {
419
- modelValue?: any;
420
- }> & Readonly<{
421
- "onUpdate:modelValue"?: ((value: any) => any) | undefined;
422
- }>, void, {}, {}, {}, vue189.ComponentOptionsMixin, vue189.ComponentOptionsMixin, {
423
- "update:modelValue": (value: any) => any;
424
- }, string, {}, {}, string, {}, vue189.GlobalComponents, vue189.GlobalDirectives, string, vue189.ComponentProvideOptions> & vue189.VNodeProps & vue189.AllowedComponentProps & vue189.ComponentCustomProps & (new () => {
425
- $slots: GroupRootSlots;
426
- });
427
- };
428
- //#endregion
429
- //#region src/composables/useEventListener/index.d.ts
430
- type CleanupFunction = () => void;
431
- type EventHandler<E = Event> = (event: E) => void;
432
- /**
433
- * Attaches event listeners to the window object with automatic cleanup.
434
- * This overload provides type-safe event handling for window-specific events
435
- * with proper event map typing and automatic listener removal on scope disposal.
436
- *
437
- * @param target Window object to attach listeners to.
438
- * @param event Event name(s) to listen for from WindowEventMap.
439
- * @param listener Event handler function(s) with proper window event typing.
440
- * @param options Optional event listener configuration.
441
- * @returns Function to manually remove all attached listeners.
442
- */
443
- declare function useEventListener<E extends keyof WindowEventMap>(target: Window, event: MaybeRefOrGetter<MaybeArray<E>>, listener: MaybeRef<MaybeArray<(this: Window, event: WindowEventMap[E]) => any>>, options?: MaybeRefOrGetter<boolean | AddEventListenerOptions>): CleanupFunction;
444
- /**
445
- * Attaches event listeners to the document object with automatic cleanup.
446
- * This overload provides type-safe event handling for document-specific events
447
- * with proper event map typing and automatic listener removal on scope disposal.
448
- *
449
- * @param target Document object to attach listeners to.
450
- * @param event Event name(s) to listen for from DocumentEventMap.
451
- * @param listener Event handler function(s) with proper document event typing.
452
- * @param options Optional event listener configuration.
453
- * @returns Function to manually remove all attached listeners.
454
- */
455
- declare function useEventListener<E extends keyof DocumentEventMap>(target: Document, event: MaybeRefOrGetter<MaybeArray<E>>, listener: MaybeRef<MaybeArray<(this: Document, event: DocumentEventMap[E]) => any>>, options?: MaybeRefOrGetter<boolean | AddEventListenerOptions>): CleanupFunction;
456
- /**
457
- * Attaches event listeners to HTML elements with automatic cleanup.
458
- * This overload provides type-safe event handling for HTML element events
459
- * with reactive target support and automatic listener removal on scope disposal.
460
- *
461
- * @param target HTML element or reactive reference to element.
462
- * @param event Event name(s) to listen for from HTMLElementEventMap.
463
- * @param listener Event handler function(s) with proper HTML element event typing.
464
- * @param options Optional event listener configuration.
465
- * @returns Function to manually remove all attached listeners.
466
- */
467
- declare function useEventListener<E extends keyof HTMLElementEventMap>(target: MaybeRefOrGetter<HTMLElement | null | undefined>, event: MaybeRefOrGetter<MaybeArray<E>>, listener: MaybeRef<MaybeArray<(this: HTMLElement, event: HTMLElementEventMap[E]) => any>>, options?: MaybeRefOrGetter<boolean | AddEventListenerOptions>): CleanupFunction;
468
- /**
469
- * Attaches event listeners to any EventTarget with automatic cleanup.
470
- * This overload provides flexible event handling for any EventTarget implementation
471
- * with reactive target support and automatic listener removal on scope disposal.
472
- *
473
- * @param target EventTarget or reactive reference to target.
474
- * @param event Event name(s) to listen for as string identifiers.
475
- * @param listener Event handler function(s) with customizable event typing.
476
- * @param options Optional event listener configuration.
477
- * @returns Function to manually remove all attached listeners.
478
- */
479
- declare function useEventListener<EventType = Event>(target: MaybeRefOrGetter<EventTarget | null | undefined>, event: MaybeRefOrGetter<MaybeArray<string>>, listener: MaybeRef<MaybeArray<EventHandler<EventType>>>, options?: MaybeRefOrGetter<boolean | AddEventListenerOptions>): CleanupFunction;
480
- /**
481
- * Convenience function for attaching event listeners to the window object.
482
- * This function provides a simplified API by pre-binding the window target,
483
- * making it easier to handle window-specific events with automatic cleanup.
484
- *
485
- * @param event Event name(s) to listen for from WindowEventMap.
486
- * @param listener Event handler function(s) with proper window event typing.
487
- * @param options Optional event listener configuration.
488
- * @returns Function to manually remove all attached listeners.
489
- */
490
- declare function useWindowEventListener<E extends keyof WindowEventMap>(event: MaybeRefOrGetter<MaybeArray<E>>, listener: MaybeRef<MaybeArray<(this: Window, event: WindowEventMap[E]) => any>>, options?: MaybeRefOrGetter<boolean | AddEventListenerOptions>): CleanupFunction;
491
- /**
492
- * Convenience function for attaching event listeners to the document object.
493
- * This function provides a simplified API by pre-binding the document target,
494
- * making it easier to handle document-specific events with automatic cleanup.
495
- *
496
- * @param event Event name(s) to listen for from DocumentEventMap.
497
- * @param listener Event handler function(s) with proper document event typing.
498
- * @param options Optional event listener configuration.
499
- * @returns Function to manually remove all attached listeners.
500
- */
501
- declare function useDocumentEventListener<E extends keyof DocumentEventMap>(event: MaybeRefOrGetter<MaybeArray<E>>, listener: MaybeRef<MaybeArray<(this: Document, event: DocumentEventMap[E]) => any>>, options?: MaybeRefOrGetter<boolean | AddEventListenerOptions>): CleanupFunction;
502
- //#endregion
503
- //#region src/composables/useFilter/index.d.ts
504
- type Primitive = string | number | boolean;
505
- type FilterQuery = MaybeRefOrGetter<Primitive | Primitive[]>;
506
- type FilterItem = Primitive | Record<string, any>;
507
- type FilterMode = 'some' | 'every' | 'union' | 'intersection';
508
- type FilterFunction = (query: Primitive | Primitive[], item: FilterItem) => boolean;
509
- interface UseFilterOptions {
510
- customFilter?: FilterFunction;
511
- keys?: string[];
512
- mode?: FilterMode;
513
- }
514
- interface UseFilterResult<Z extends FilterItem = FilterItem> {
515
- items: ComputedRef<Z[]>;
516
- }
517
- /**
518
- * Creates a reactive filter for arrays based on query matching with configurable search modes.
519
- * Supports 'some' (any field matches), 'every' (all fields match), 'union' (any query matches),
520
- * and 'intersection' (all queries match) filtering strategies.
521
- *
522
- * @param query Filter query to match against items.
523
- * @param items Collection of items to filter.
524
- * @param options Optional configuration for the filter behavior.
525
- * @template Z The type of the items being filtered.
526
- * @returns A computed reference to the filtered items based on the query and options.
527
- */
528
- declare function useFilter<Z extends FilterItem>(query: FilterQuery, items: MaybeRef<Z[]>, options?: UseFilterOptions): UseFilterResult<Z>;
529
- //#endregion
530
- //#region src/composables/useForm/index.d.ts
531
- type FormValidationResult = string | true | Promise<string | true>;
532
- type FormValidationRule = (value: AnyARecord) => FormValidationResult;
533
- type FormValue = Ref<any> | ShallowRef<any>;
534
- interface FormTicket extends RegistryTicket {
535
- validate: (silent?: boolean) => Promise<boolean>;
536
- reset: () => void;
537
- validateOn: 'submit' | 'change' | string;
538
- disabled: boolean;
539
- errors: ShallowRef<string[]>;
540
- rules: FormValidationRule[];
541
- isPristine: ShallowRef<boolean>;
542
- isValid: ShallowRef<boolean | null>;
543
- isValidating: ShallowRef<boolean>;
544
- }
545
- interface FormContext<Z extends FormTicket = FormTicket> extends RegistryContext<Z> {
546
- submit: (id?: ID | ID[]) => Promise<boolean>;
547
- reset: () => void;
548
- validateOn: 'submit' | 'change' | string;
549
- isValid: ShallowRef<boolean | null>;
550
- isValidating: ShallowRef<boolean>;
551
- }
552
- interface FormOptions extends RegistryOptions {
553
- validateOn?: 'submit' | 'change' | string;
554
- }
555
- declare function useForm<Z extends FormTicket = FormTicket, E extends FormContext<Z> = FormContext<Z>>(options?: FormOptions): E;
556
- //#endregion
557
- //#region src/composables/useIntersectionObserver/index.d.ts
558
- interface IntersectionObserverEntry {
559
- boundingClientRect: DOMRectReadOnly;
560
- intersectionRatio: number;
561
- intersectionRect: DOMRectReadOnly;
562
- isIntersecting: boolean;
563
- rootBounds: DOMRectReadOnly | null;
564
- target: Element;
565
- time: number;
566
- }
567
- interface IntersectionObserverOptions {
568
- immediate?: boolean;
569
- root?: Element | null;
570
- rootMargin?: string;
571
- threshold?: number | number[];
572
- }
573
- /**
574
- * Composable for observing element intersection with viewport or ancestor
575
- *
576
- * @param target - Element ref to observe
577
- * @param callback - Callback fired on intersection change
578
- * @param options - Observer options
579
- * @returns Observer controls and intersection state
580
- *
581
- * @see https://developer.mozilla.org/en-US/docs/Web/API/IntersectionObserver
582
- */
583
- declare function useIntersectionObserver(target: Ref<Element | undefined>, callback: (entries: IntersectionObserverEntry[]) => void, options?: IntersectionObserverOptions): {
584
- isIntersecting: Readonly<Ref<boolean, boolean>>;
585
- isPaused: Readonly<Ref<boolean, boolean>>;
586
- pause: () => void;
587
- resume: () => void;
588
- stop: () => void;
589
- };
590
- /**
591
- * Convenience composable for simple intersection detection
592
- *
593
- * @param target - Element ref to observe
594
- * @param options - Observer options
595
- * @returns Reactive intersection state
596
- */
597
- declare function useElementIntersection(target: Ref<Element | undefined>, options?: IntersectionObserverOptions): {
598
- isIntersecting: Readonly<Ref<boolean, boolean>>;
599
- intersectionRatio: Readonly<Ref<number, number>>;
600
- };
601
- //#endregion
602
- //#region src/composables/useKeydown/index.d.ts
603
- interface KeyHandler {
604
- key: string;
605
- handler: (event: KeyboardEvent) => void;
606
- preventDefault?: boolean;
607
- stopPropagation?: boolean;
608
- }
609
- /**
610
- * Sets up global keyboard event listeners for specified key handlers with automatic cleanup.
611
- * This composable automatically starts listening when mounted and cleans up when the scope
612
- * is disposed, providing a clean way to handle global keyboard interactions.
613
- *
614
- * @param handlers A single handler or array of handlers to register for keydown events.
615
- * @returns Object with methods to manually start and stop listening for keydown events.
616
- */
617
- declare function useKeydown(handlers: KeyHandler[] | KeyHandler): {
618
- startListening: () => void;
619
- stopListening: () => void;
620
- };
621
- //#endregion
622
- //#region src/composables/useLayout/index.d.ts
623
- type LayoutLocation = 'top' | 'bottom' | 'left' | 'right';
624
- interface LayoutTicket extends GroupTicket {
625
- order: number;
626
- position: LayoutLocation;
627
- value: number;
628
- }
629
- interface LayoutContext<Z extends LayoutTicket> extends GroupContext<Z> {
630
- bounds: {
631
- top: ComputedRef<number>;
632
- bottom: ComputedRef<number>;
633
- left: ComputedRef<number>;
634
- right: ComputedRef<number>;
635
- };
636
- main: {
637
- x: ComputedRef<number>;
638
- y: ComputedRef<number>;
639
- width: ComputedRef<number>;
640
- height: ComputedRef<number>;
641
- };
642
- sizes: ShallowReactive<Map<ID, number>>;
643
- height: ShallowRef<number>;
644
- width: ShallowRef<number>;
645
- }
646
- interface LayoutOptions extends GroupOptions {}
647
- declare function useLayout<Z extends LayoutTicket = LayoutTicket, E extends LayoutContext<Z> = LayoutContext<Z>>(_options?: LayoutOptions): E;
648
- //#endregion
649
- //#region src/composables/useSingle/index.d.ts
650
- interface SingleTicket extends SelectionTicket {}
651
- interface SingleContext<Z extends SingleTicket> extends SelectionContext<Z> {
652
- selectedId: ComputedRef<ID | undefined>;
653
- selectedIndex: ComputedRef<number>;
654
- selectedItem: ComputedRef<Z | undefined>;
655
- selectedValue: ComputedRef<unknown>;
656
- }
657
- interface SingleOptions extends SelectionOptions {}
658
- /**
659
- * Creates a single selection context for managing collections where only one item can be selected.
660
- * This function extends the selection functionality with single-selection constraints.
661
- *
662
- * @param options Optional configuration for single selection behavior.
663
- * @template Z The type of items managed by the single selection.
664
- * @template E The type of the single selection context.
665
- * @returns The single selection context object.
666
- */
667
- declare function useSingle<Z extends SingleTicket = SingleTicket, E extends SingleContext<Z> = SingleContext<Z>>(options?: SingleOptions): E;
668
- //#endregion
669
- //#region src/composables/useTokens/index.d.ts
670
- interface TokenAlias<T = unknown> {
671
- [key: string]: unknown;
672
- $value: T;
673
- $type?: string;
674
- $description?: string;
675
- $extensions?: Record<string, unknown>;
676
- $deprecated?: boolean | string;
677
- }
678
- type TokenPrimitive = string | number | boolean;
679
- type TokenValue = TokenPrimitive | TokenAlias;
680
- interface TokenCollection {
681
- [key: string]: TokenValue | TokenCollection;
682
- }
683
- type FlatTokenCollection = {
684
- id: string;
685
- value: TokenValue;
686
- };
687
- interface TokenTicket extends RegistryTicket {}
688
- interface TokenContext<Z extends TokenTicket> extends RegistryContext<Z> {
689
- resolve: (token: string | TokenAlias) => unknown | undefined;
690
- }
691
- /**
692
- * Creates a token registry for managing design token collections with alias resolution.
693
- * Returns the token context directly for simple usage.
694
- *
695
- * @param tokens A collection of tokens to initialize with
696
- * @template Z The structure of the registry token items.
697
- * @template E The available methods for the token's context.
698
- * @returns The token context object.
699
- * @see https://www.designtokens.org/tr/drafts/format/
700
- */
701
- declare function useTokens<Z extends TokenTicket = TokenTicket, E extends TokenContext<Z> = TokenContext<Z>>(tokens?: TokenCollection): E;
702
- /**
703
- * Creates a token registry context with full injection/provision control.
704
- * Returns the complete trinity for advanced usage scenarios.
705
- *
706
- * @param namespace The namespace for the token registry context
707
- * @param tokens An optional collection of tokens to initialize
708
- * @template Z The structure of the registry token items.
709
- * @template E The available methods for the token's context.
710
- * @returns A tuple containing the inject function, provide function, and the token context.
711
- */
712
- declare function createTokensContext<Z extends TokenTicket = TokenTicket, E extends TokenContext<Z> = TokenContext<Z>>(namespace: string, tokens?: TokenCollection): ContextTrinity<E>;
713
- //#endregion
714
- //#region src/composables/useLocale/adapters/adapter.d.ts
715
- interface LocaleAdapter {
716
- t: (message: string, ...params: unknown[]) => string;
717
- n: (value: number, locale: ID | undefined, ...params: unknown[]) => string;
718
- }
719
- //#endregion
720
- //#region src/composables/useLocale/index.d.ts
721
- type LocaleTicket = SingleTicket;
722
- interface LocaleContext<Z extends LocaleTicket> extends SingleContext<Z> {
723
- t: (key: string, ...params: unknown[]) => string;
724
- n: (value: number) => string;
725
- }
726
- interface LocaleOptions extends LocalePluginOptions {}
727
- interface LocalePluginOptions<Z extends TokenCollection = TokenCollection> {
728
- adapter?: LocaleAdapter;
729
- default?: ID;
730
- fallback?: ID;
731
- messages?: Record<ID, Z>;
732
- }
733
- /**
734
- * Creates a locale registry for managing internationalization with translations and number formatting.
735
- * Supports message resolution with token references and locale-specific number formatting.
736
- *
737
- * @param namespace The namespace for the locale context.
738
- * @param options Configuration including adapter and messages.
739
- * @template Z The type of the locale context.
740
- * @template E The type of the locale items managed by the registry.
741
- * @returns An array containing the inject function, provide function, and the locale context.
742
- */
743
- declare function createLocale<Z extends LocaleTicket = LocaleTicket, E extends LocaleContext<Z> = LocaleContext<Z>>(namespace?: string, options?: LocaleOptions): ContextTrinity<E>;
744
- /**
745
- * Simple hook to access the locale context.
746
- *
747
- * @returns The locale context containing translation and formatting functions.
748
- */
749
- declare function useLocale(): LocaleContext<LocaleTicket>;
750
- /**
751
- * Creates a Vue plugin for internationalization with locale management and translation support.
752
- * Integrates with token system for message resolution and provides app-wide locale context.
753
- *
754
- * @param options Configuration for adapter, default locale, and messages.
755
- * @template Z The type of the locale context.
756
- * @template E The type of the locale items managed by the registry.
757
- * @template R The type of the token context.
758
- * @template O The type of the token items managed by the registry.
759
- * @returns Vue install function for the plugin
760
- */
761
- declare function createLocalePlugin<Z extends LocaleTicket = LocaleTicket, E extends LocaleContext<Z> = LocaleContext<Z>, R extends TokenTicket = TokenTicket, O extends TokenContext<R> = TokenContext<R>>(options?: LocalePluginOptions): Plugin;
762
- //#endregion
763
- //#region src/composables/useLogger/adapters/adapter.d.ts
764
- interface LoggerAdapter {
765
- debug: (message: string, ...args: unknown[]) => void;
766
- info: (message: string, ...args: unknown[]) => void;
767
- warn: (message: string, ...args: unknown[]) => void;
768
- error: (message: string, ...args: unknown[]) => void;
769
- trace?: (message: string, ...args: unknown[]) => void;
770
- fatal?: (message: string, ...args: unknown[]) => void;
771
- }
772
- //#endregion
773
- //#region src/composables/useLogger/adapters/consola.d.ts
774
- declare class ConsolaLoggerAdapter implements LoggerAdapter {
775
- private consola;
776
- constructor(consolaInstance: any);
777
- debug(message: string, ...args: unknown[]): void;
778
- info(message: string, ...args: unknown[]): void;
779
- warn(message: string, ...args: unknown[]): void;
780
- error(message: string, ...args: unknown[]): void;
781
- trace(message: string, ...args: unknown[]): void;
782
- fatal(message: string, ...args: unknown[]): void;
783
- }
784
- //#endregion
785
- //#region src/composables/useLogger/adapters/pino.d.ts
786
- /**
787
- * Pino logger adapter implementation
788
- *
789
- * This adapter integrates with the Pino logging library,
790
- * providing high-performance structured logging optimized
791
- * for Node.js applications with minimal overhead.
792
- */
793
- declare class PinoLoggerAdapter implements LoggerAdapter {
794
- private pino;
795
- constructor(pinoInstance: any);
796
- debug(message: string, ...args: unknown[]): void;
797
- info(message: string, ...args: unknown[]): void;
798
- warn(message: string, ...args: unknown[]): void;
799
- error(message: string, ...args: unknown[]): void;
800
- trace(message: string, ...args: unknown[]): void;
801
- fatal(message: string, ...args: unknown[]): void;
802
- private format;
803
- }
804
- //#endregion
805
- //#region src/composables/useLogger/adapters/v0.d.ts
806
- /**
807
- * Vuetify0.x logger adapter implementation
808
- *
809
- * This adapter provides console-based logging with proper formatting,
810
- * color coding, timestamps, and log level filtering for development
811
- * and production environments.
812
- */
813
- declare class Vuetify0LoggerAdapter implements LoggerAdapter {
814
- private prefix;
815
- private colors;
816
- private timestamps;
817
- constructor(options?: {
818
- prefix?: string;
819
- colors?: boolean;
820
- timestamps?: boolean;
821
- });
822
- debug(message: string, ...args: unknown[]): void;
823
- info(message: string, ...args: unknown[]): void;
824
- warn(message: string, ...args: unknown[]): void;
825
- error(message: string, ...args: unknown[]): void;
826
- trace(message: string, ...args: unknown[]): void;
827
- fatal(message: string, ...args: unknown[]): void;
828
- private format;
829
- private timestamp;
830
- private style;
831
- private log;
832
- }
833
- //#endregion
834
- //#region src/composables/useLogger/types.d.ts
835
- type LogLevel = 'trace' | 'debug' | 'info' | 'warn' | 'error' | 'fatal' | 'silent';
836
- //#endregion
837
- //#region src/composables/useLogger/index.d.ts
838
- interface LoggerContext {
839
- debug: (message: string, ...args: unknown[]) => void;
840
- info: (message: string, ...args: unknown[]) => void;
841
- warn: (message: string, ...args: unknown[]) => void;
842
- error: (message: string, ...args: unknown[]) => void;
843
- trace: (message: string, ...args: unknown[]) => void;
844
- fatal: (message: string, ...args: unknown[]) => void;
845
- level: (level: LogLevel) => void;
846
- current: () => LogLevel;
847
- enabled: () => boolean;
848
- enable: () => void;
849
- disable: () => void;
850
- }
851
- interface LoggerOptions {
852
- adapter?: LoggerAdapter;
853
- level?: LogLevel;
854
- prefix?: string;
855
- enabled?: boolean;
856
- }
857
- /**
858
- * Creates a logger context for application logging with configurable adapters and levels.
859
- * This function provides a consistent logging interface that can be configured with
860
- * different adapters and optimized for production builds with conditional compilation.
861
- *
862
- * @param options Configuration for the logger adapter, level, and behavior.
863
- * @returns A logger context object with logging methods and controls.
864
- */
865
- declare function createLogger(options?: LoggerOptions): LoggerContext;
866
- declare function useLogger(namespace?: string): LoggerContext;
867
- declare function createLoggerPlugin(options?: LoggerOptions): Plugin;
868
- //#endregion
869
- //#region src/composables/useMutationObserver/index.d.ts
870
- interface MutationObserverRecord {
871
- type: 'attributes' | 'childList' | 'characterData';
872
- target: Node;
873
- addedNodes: NodeList;
874
- removedNodes: NodeList;
875
- previousSibling: Node | null;
876
- nextSibling: Node | null;
877
- attributeName: string | null;
878
- attributeNamespace: string | null;
879
- oldValue: string | null;
880
- }
881
- interface UseMutationObserverOptions {
882
- immediate?: boolean;
883
- childList?: boolean;
884
- attributes?: boolean;
885
- characterData?: boolean;
886
- subtree?: boolean;
887
- attributeOldValue?: boolean;
888
- characterDataOldValue?: boolean;
889
- attributeFilter?: string[];
890
- }
891
- /**
892
- * Composable for observing DOM mutations
893
- *
894
- * @param target - Element ref to observe
895
- * @param callback - Callback fired on mutation
896
- * @param options - Observer options
897
- * @returns Observer controls
898
- *
899
- * @see https://developer.mozilla.org/en-US/docs/Web/API/MutationObserver
900
- */
901
- declare function useMutationObserver(target: Ref<Element | undefined>, callback: (entries: MutationObserverRecord[]) => void, options?: UseMutationObserverOptions): {
902
- isPaused: Readonly<Ref<boolean, boolean>>;
903
- pause: () => void;
904
- resume: () => void;
905
- stop: () => void;
906
- };
907
- //#endregion
908
- //#region src/composables/useProxyModel/index.d.ts
909
- interface ProxyModelOptions {
910
- /** Whether to use deep reactivity for the model */
911
- deep?: boolean;
912
- }
913
- /**
914
- * Creates a proxy model for two-way binding with a selection context.
915
- *
916
- * @param registry SelectionContext | GroupContext | SingleContext | StepContext
917
- * @template Z The type of items managed by the selection.
918
- * @template E The type of the selection context.
919
- * @returns The proxy model for two-way binding with the selection context.
920
- */
921
- declare function useProxyModel<Z extends SelectionTicket>(registry: SelectionContext<Z>, initial?: Z | Z[], options?: ProxyModelOptions, _transformIn?: (val: Z[] | Z) => Z[], _transformOut?: (val: Z[]) => Z | Z[]): vue189.WritableComputedRef<Z | Z[] | undefined, Z[]>;
922
- //#endregion
923
- //#region src/composables/useResizeObserver/index.d.ts
924
- interface ResizeObserverEntry {
925
- contentRect: {
926
- width: number;
927
- height: number;
928
- top: number;
929
- left: number;
930
- };
931
- target: Element;
932
- }
933
- interface ResizeObserverOptions {
934
- immediate?: boolean;
935
- box?: 'content-box' | 'border-box';
936
- }
937
- /**
938
- * Composable for observing element resize events
939
- *
940
- * @param target - Element ref to observe
941
- * @param callback - Callback fired on resize
942
- * @param options - Observer options
943
- * @returns Observer controls
944
- *
945
- * @see https://developer.mozilla.org/en-US/docs/Web/API/ResizeObserver
946
- */
947
- declare function useResizeObserver(target: Ref<Element | undefined>, callback: (entries: ResizeObserverEntry[]) => void, options?: ResizeObserverOptions): {
948
- isPaused: Readonly<Ref<boolean, boolean>>;
949
- pause: () => void;
950
- resume: () => void;
951
- stop: () => void;
952
- };
953
- /**
954
- * Convenience composable for tracking element dimensions
955
- *
956
- * @param target - Element ref to observe
957
- * @returns Reactive width and height
958
- */
959
- declare function useElementSize(target: Ref<Element | undefined>): {
960
- width: vue189.ShallowRef<number, number>;
961
- height: vue189.ShallowRef<number, number>;
962
- };
963
- //#endregion
964
- //#region src/composables/useStep/index.d.ts
965
- interface StepTicket extends SingleTicket {}
966
- interface StepContext<Z extends StepTicket> extends SingleContext<Z> {
967
- /** Select the first Ticket in the collection */
968
- first: () => void;
969
- /** Select the last Ticket in the collection */
970
- last: () => void;
971
- /** Select the next Ticket based on current index */
972
- next: () => void;
973
- /** Select the previous Ticket based on current index */
974
- prev: () => void;
975
- /** Step through the collection by a given count */
976
- step: (count: number) => void;
977
- }
978
- interface StepOptions extends SingleOptions {}
979
- /**
980
- * Creates a step selection context for managing collections where users can navigate through items sequentially.
981
- * This function extends the single selection functionality with stepping navigation.
982
- *
983
- * @param options Optional configuration for step behavior.
984
- * @template Z The type of items managed by the step selection.
985
- * @template E The type of the step selection context.
986
- * @returns The step selection context object.
987
- */
988
- declare function useStep<Z extends StepTicket = StepTicket, E extends StepContext<Z> = StepContext<Z>>(options?: StepOptions): E;
989
- //#endregion
990
- //#region src/composables/useStorage/adapters/index.d.ts
991
- interface StorageAdapter {
992
- getItem: (key: string) => string | null;
993
- setItem: (key: string, value: string) => void;
994
- removeItem: (key: string) => void;
995
- readonly length?: number;
996
- key?: (index: number) => string | null;
997
- }
998
- //#endregion
999
- //#region src/composables/useStorage/index.d.ts
1000
- interface StorageContext {
1001
- get: <T>(key: string, defaultValue?: T) => Ref<T>;
1002
- set: <T>(key: string, value: T) => void;
1003
- remove: (key: string) => void;
1004
- clear: () => void;
1005
- }
1006
- interface StorageOptions {
1007
- adapter?: StorageAdapter;
1008
- prefix?: string;
1009
- serializer?: {
1010
- read: (value: string) => any;
1011
- write: (value: any) => string;
1012
- };
1013
- }
1014
- declare const useStorageContext: (namespace?: string) => StorageContext, provideStorageContext: (context: StorageContext, app?: App) => StorageContext;
1015
- /**
1016
- * Creates a reactive storage system with automatic persistence and cross-adapter support.
1017
- * This function provides a consistent interface for storing and retrieving reactive values
1018
- * that automatically sync with the underlying storage adapter (localStorage, memory, etc.).
1019
- *
1020
- * @param options Optional configuration for storage adapter, prefix, and serialization.
1021
- * @template E The type of the storage context.
1022
- * @returns A storage context object with get, set, remove, and clear methods.
1023
- */
1024
- declare function createStorage<E extends StorageContext>(options?: StorageOptions): E;
1025
- /**
1026
- * Simple hook to access the storage context.
1027
- *
1028
- * @returns The storage context containing reactive storage methods.
1029
- */
1030
- declare function useStorage(): StorageContext;
1031
- /**
1032
- * Creates a Vue plugin for reactive storage capabilities with automatic persistence.
1033
- * Provides app-wide access to reactive storage that syncs with the configured adapter.
1034
- *
1035
- * @param options Optional configuration for the storage system.
1036
- * @returns A Vue plugin object with install method.
1037
- */
1038
- declare function createStoragePlugin(options?: StorageOptions): Plugin;
1039
- //#endregion
1040
- //#region src/composables/useTheme/adapters/adapter.d.ts
1041
- interface ThemeAdapterInterface {
1042
- update: (colors: Record<string, Colors>) => void;
1043
- }
1044
- declare abstract class ThemeAdapter implements ThemeAdapterInterface {
1045
- protected prefix: string;
1046
- constructor(prefix: string);
1047
- generate(colors: Record<string, Colors>): string;
1048
- abstract update(colors: Record<string, Colors>): void;
1049
- }
1050
- //#endregion
1051
- //#region src/composables/useTheme/index.d.ts
1052
- type Colors = {
1053
- [key: string]: string;
1054
- };
1055
- type ThemeColors = {
1056
- [key: string]: Colors | string;
1057
- };
1058
- type ThemeRecord = {
1059
- [key: string]: any;
1060
- dark?: boolean;
1061
- lazy?: boolean;
1062
- colors: ThemeColors;
1063
- };
1064
- type ThemeTicket = SingleTicket & {
1065
- lazy: boolean;
1066
- dark: boolean;
1067
- };
1068
- interface ThemeContext<Z extends ThemeTicket> extends SingleContext<Z> {
1069
- colors: ComputedRef<Record<string, Colors>>;
1070
- cycle: (themes: ID[]) => void;
1071
- }
1072
- interface ThemeOptions extends ThemePluginOptions {}
1073
- interface ThemePluginOptions<Z extends ThemeRecord = ThemeRecord> {
1074
- adapter?: ThemeAdapter;
1075
- default?: ID;
1076
- palette?: TokenCollection;
1077
- themes?: Record<ID, Z>;
1078
- }
1079
- /**
1080
- * Creates a theme registry for managing theme selections with dynamic color resolution.
1081
- * Supports token-based color systems and lazy theme loading for optimal performance.
1082
- *
1083
- * @param namespace The namespace for the theme context.
1084
- * @param options Configuration including adapter and themes.
1085
- * @template Z The type of theme context.
1086
- * @template E The type of theme items managed by the registry.
1087
- * @returns A tuple containing inject, provide functions and the theme context.
1088
- */
1089
- declare function createTheme<Z extends ThemeTicket = ThemeTicket, E extends ThemeContext<Z> = ThemeContext<Z>>(namespace?: string, options?: ThemeOptions): ContextTrinity<E>;
1090
- /**
1091
- * Simple hook to access the theme context.
1092
- *
1093
- * @returns The theme context containing current theme state and utilities.
1094
- */
1095
- declare function useTheme(): ThemeContext<ThemeTicket>;
1096
- /**
1097
- * Creates a Vue plugin for theme management with automatic color system updates.
1098
- * Integrates with token system for dynamic color resolution and provides reactive
1099
- * theme switching capabilities throughout the application.
1100
- *
1101
- * @param options Configuration for themes, palette, and adapter.
1102
- * @template Z The type of theme context.
1103
- * @template E The type of theme items.
1104
- * @template R The type of token context.
1105
- * @template O The type of token items.
1106
- * @returns A Vue plugin object with install method.
1107
- */
1108
- declare function createThemePlugin<Z extends ThemeTicket = ThemeTicket, E extends ThemeContext<Z> = ThemeContext<Z>, R extends TokenTicket = TokenTicket, O extends TokenContext<R> = TokenContext<R>>(_options?: ThemePluginOptions): Plugin;
1109
- //#endregion
1110
- //#region src/composables/useHydration/index.d.ts
1111
- interface HydrationContext {
1112
- isHydrated: Readonly<ShallowRef<boolean>>;
1113
- hydrate: () => void;
1114
- }
1115
- declare const useHydrationContext: (namespace?: string) => HydrationContext, provideHydrationContext: (context: HydrationContext, app?: App) => HydrationContext;
1116
- /**
1117
- * Creates a hydration context for tracking client-side hydration state in SSR applications.
1118
- * This function provides a way to determine when the application has been fully hydrated
1119
- * on the client side, which is essential for SSR/SSG compatibility.
1120
- *
1121
- * @returns A hydration context object with reactive state and hydration control.
1122
- */
1123
- declare function createHydration(): HydrationContext;
1124
- /**
1125
- * Simple hook to access the hydration context.
1126
- *
1127
- * @returns The hydration context containing hydration state and controls.
1128
- */
1129
- declare function useHydration(): HydrationContext;
1130
- /**
1131
- * Creates a Vue plugin for hydration state management in SSR/SSG applications.
1132
- * This plugin automatically detects when the root component is mounted and
1133
- * triggers the hydration process, ensuring proper client-side hydration timing.
1134
- *
1135
- * @returns A Vue plugin object with install method.
1136
- */
1137
- declare function createHydrationPlugin(): Plugin;
1138
- //#endregion
1139
- //#region src/components/Hydration/Hydration.vue.d.ts
1140
- interface HydrationSlots {
1141
- default: (scope: HydrationContext) => any;
1142
- }
1143
- declare const _default$1: __VLS_WithSlots$1<vue189.DefineComponent<{}, void, {}, {}, {}, vue189.ComponentOptionsMixin, vue189.ComponentOptionsMixin, {}, string, vue189.PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, vue189.ComponentProvideOptions, true, {}, any>, HydrationSlots>;
1144
- type __VLS_WithSlots$1<T, S> = T & {
1145
- new (): {
1146
- $slots: S;
1147
- };
1148
- };
1149
- //#endregion
1150
- //#region src/components/Hydration/HydrationRoot.vue.d.ts
1151
- interface HydrationRootSlots {
1152
- default: (scope: HydrationContext) => any;
1153
- }
1154
- declare const _default: __VLS_WithSlots<vue189.DefineComponent<{}, void, {}, {}, {}, vue189.ComponentOptionsMixin, vue189.ComponentOptionsMixin, {}, string, vue189.PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, vue189.ComponentProvideOptions, true, {}, any>, HydrationRootSlots>;
1155
- type __VLS_WithSlots<T, S> = T & {
1156
- new (): {
1157
- $slots: S;
1158
- };
1159
- };
1160
- //#endregion
1161
- //#region src/components/Popover/PopoverRoot.vue.d.ts
1162
- interface PopoverContext {
1163
- isActive: ShallowRef<boolean>;
1164
- id: string;
1165
- toggle: () => void;
1166
- }
1167
- interface PopoverRootProps extends AtomProps {
1168
- id?: string;
1169
- }
1170
- declare const usePopoverContext: (namespace?: string) => PopoverContext, providePopoverContext: (context: PopoverContext, app?: vue189.App) => PopoverContext;
1171
- //#endregion
1172
- //#region src/components/Popover/PopoverAnchor.vue.d.ts
1173
- interface PopoverAnchorProps extends AtomProps {
1174
- target?: string;
1175
- }
1176
- //#endregion
1177
- //#region src/components/Popover/PopoverContent.vue.d.ts
1178
- interface PopoverContentProps extends AtomProps {
1179
- id?: string;
1180
- positionArea?: string;
1181
- positionTry?: string;
1182
- }
1183
- interface PopoverContentEmits {
1184
- beforetoggle: [e: ToggleEvent];
1185
- }
1186
- //#endregion
1187
- //#region src/components/Popover/index.d.ts
1188
- declare const Popover: {
1189
- Root: {
1190
- new (...args: any[]): vue189.CreateComponentPublicInstanceWithMixins<Readonly<PopoverRootProps & {
1191
- modelValue?: boolean;
1192
- }> & Readonly<{
1193
- "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
1194
- }>, void, {}, {}, {}, vue189.ComponentOptionsMixin, vue189.ComponentOptionsMixin, {
1195
- "update:modelValue": (value: boolean) => any;
1196
- }, vue189.PublicProps, {}, false, {}, {}, vue189.GlobalComponents, vue189.GlobalDirectives, string, {}, any, vue189.ComponentProvideOptions, {
1197
- P: {};
1198
- B: {};
1199
- D: {};
1200
- C: {};
1201
- M: {};
1202
- Defaults: {};
1203
- }, Readonly<PopoverRootProps & {
1204
- modelValue?: boolean;
1205
- }> & Readonly<{
1206
- "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
1207
- }>, {}, {}, {}, {}, {}>;
1208
- __isFragment?: never;
1209
- __isTeleport?: never;
1210
- __isSuspense?: never;
1211
- } & vue189.ComponentOptionsBase<Readonly<PopoverRootProps & {
1212
- modelValue?: boolean;
1213
- }> & Readonly<{
1214
- "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
1215
- }>, void, {}, {}, {}, vue189.ComponentOptionsMixin, vue189.ComponentOptionsMixin, {
1216
- "update:modelValue": (value: boolean) => any;
1217
- }, string, {}, {}, string, {}, vue189.GlobalComponents, vue189.GlobalDirectives, string, vue189.ComponentProvideOptions> & vue189.VNodeProps & vue189.AllowedComponentProps & vue189.ComponentCustomProps & (new () => {
1218
- $slots: {
1219
- default: (props: {
1220
- id: Readonly<vue189.Ref<string, string>>;
1221
- isActive: vue189.ModelRef<boolean, string, boolean, boolean>;
1222
- toggle: () => void;
1223
- }) => any;
1224
- };
1225
- });
1226
- Anchor: {
1227
- new (...args: any[]): vue189.CreateComponentPublicInstanceWithMixins<Readonly<PopoverAnchorProps> & Readonly<{}>, void, {}, {}, {}, vue189.ComponentOptionsMixin, vue189.ComponentOptionsMixin, {}, vue189.PublicProps, {}, false, {}, {}, vue189.GlobalComponents, vue189.GlobalDirectives, string, {}, any, vue189.ComponentProvideOptions, {
1228
- P: {};
1229
- B: {};
1230
- D: {};
1231
- C: {};
1232
- M: {};
1233
- Defaults: {};
1234
- }, Readonly<PopoverAnchorProps> & Readonly<{}>, {}, {}, {}, {}, {}>;
1235
- __isFragment?: never;
1236
- __isTeleport?: never;
1237
- __isSuspense?: never;
1238
- } & vue189.ComponentOptionsBase<Readonly<PopoverAnchorProps> & Readonly<{}>, void, {}, {}, {}, vue189.ComponentOptionsMixin, vue189.ComponentOptionsMixin, {}, string, {}, {}, string, {}, vue189.GlobalComponents, vue189.GlobalDirectives, string, vue189.ComponentProvideOptions> & vue189.VNodeProps & vue189.AllowedComponentProps & vue189.ComponentCustomProps & (new () => {
1239
- $slots: {
1240
- default?: (props: {}) => any;
1241
- };
1242
- });
1243
- Content: {
1244
- new (...args: any[]): vue189.CreateComponentPublicInstanceWithMixins<Readonly<PopoverContentProps> & Readonly<{
1245
- onBeforetoggle?: ((e: ToggleEvent) => any) | undefined;
1246
- }>, void, {}, {}, {}, vue189.ComponentOptionsMixin, vue189.ComponentOptionsMixin, {
1247
- beforetoggle: (e: ToggleEvent) => any;
1248
- }, vue189.PublicProps, {}, false, {}, {}, vue189.GlobalComponents, vue189.GlobalDirectives, string, {}, any, vue189.ComponentProvideOptions, {
1249
- P: {};
1250
- B: {};
1251
- D: {};
1252
- C: {};
1253
- M: {};
1254
- Defaults: {};
1255
- }, Readonly<PopoverContentProps> & Readonly<{
1256
- onBeforetoggle?: ((e: ToggleEvent) => any) | undefined;
1257
- }>, {}, {}, {}, {}, {}>;
1258
- __isFragment?: never;
1259
- __isTeleport?: never;
1260
- __isSuspense?: never;
1261
- } & vue189.ComponentOptionsBase<Readonly<PopoverContentProps> & Readonly<{
1262
- onBeforetoggle?: ((e: ToggleEvent) => any) | undefined;
1263
- }>, void, {}, {}, {}, vue189.ComponentOptionsMixin, vue189.ComponentOptionsMixin, {
1264
- beforetoggle: (e: ToggleEvent) => any;
1265
- }, string, {}, {}, string, {}, vue189.GlobalComponents, vue189.GlobalDirectives, string, vue189.ComponentProvideOptions> & vue189.VNodeProps & vue189.AllowedComponentProps & vue189.ComponentCustomProps & (new () => {
1266
- $slots: {
1267
- default?: (props: {}) => any;
1268
- };
1269
- });
1270
- };
1271
- //#endregion
1272
- //#region src/components/Step/StepItem.vue.d.ts
1273
- interface StepItemProps {
1274
- id?: string;
1275
- value?: any;
1276
- disabled?: boolean;
1277
- namespace?: string;
1278
- }
1279
- interface StepItemSlots {
1280
- default: (scope: UnwrapNestedRefs<GroupTicket>) => any;
1281
- }
1282
- //#endregion
1283
- //#region src/components/Step/StepRoot.vue.d.ts
1284
- interface StepRootProps extends StepOptions {
1285
- namespace?: string;
1286
- }
1287
- interface StepRootSlots {
1288
- default: (scope: StepContext & {
1289
- model: ModelRef<any>;
1290
- }) => any;
1291
- }
1292
- //#endregion
1293
- //#region src/components/Step/index.d.ts
1294
- declare const Step: {
1295
- Item: {
1296
- new (...args: any[]): vue189.CreateComponentPublicInstanceWithMixins<Readonly<StepItemProps> & Readonly<{}>, void, {}, {}, {}, vue189.ComponentOptionsMixin, vue189.ComponentOptionsMixin, {}, vue189.PublicProps, {}, false, {}, {}, vue189.GlobalComponents, vue189.GlobalDirectives, string, {}, any, vue189.ComponentProvideOptions, {
1297
- P: {};
1298
- B: {};
1299
- D: {};
1300
- C: {};
1301
- M: {};
1302
- Defaults: {};
1303
- }, Readonly<StepItemProps> & Readonly<{}>, {}, {}, {}, {}, {}>;
1304
- __isFragment?: never;
1305
- __isTeleport?: never;
1306
- __isSuspense?: never;
1307
- } & vue189.ComponentOptionsBase<Readonly<StepItemProps> & Readonly<{}>, void, {}, {}, {}, vue189.ComponentOptionsMixin, vue189.ComponentOptionsMixin, {}, string, {}, {}, string, {}, vue189.GlobalComponents, vue189.GlobalDirectives, string, vue189.ComponentProvideOptions> & vue189.VNodeProps & vue189.AllowedComponentProps & vue189.ComponentCustomProps & (new () => {
1308
- $slots: StepItemSlots;
1309
- });
1310
- Root: {
1311
- new (...args: any[]): vue189.CreateComponentPublicInstanceWithMixins<Readonly<StepRootProps & {
1312
- modelValue?: any;
1313
- }> & Readonly<{
1314
- "onUpdate:modelValue"?: ((value: any) => any) | undefined;
1315
- }>, void, {}, {}, {}, vue189.ComponentOptionsMixin, vue189.ComponentOptionsMixin, {
1316
- "update:modelValue": (value: any) => any;
1317
- }, vue189.PublicProps, {}, false, {}, {}, vue189.GlobalComponents, vue189.GlobalDirectives, string, {}, any, vue189.ComponentProvideOptions, {
1318
- P: {};
1319
- B: {};
1320
- D: {};
1321
- C: {};
1322
- M: {};
1323
- Defaults: {};
1324
- }, Readonly<StepRootProps & {
1325
- modelValue?: any;
1326
- }> & Readonly<{
1327
- "onUpdate:modelValue"?: ((value: any) => any) | undefined;
1328
- }>, {}, {}, {}, {}, {}>;
1329
- __isFragment?: never;
1330
- __isTeleport?: never;
1331
- __isSuspense?: never;
1332
- } & vue189.ComponentOptionsBase<Readonly<StepRootProps & {
1333
- modelValue?: any;
1334
- }> & Readonly<{
1335
- "onUpdate:modelValue"?: ((value: any) => any) | undefined;
1336
- }>, void, {}, {}, {}, vue189.ComponentOptionsMixin, vue189.ComponentOptionsMixin, {
1337
- "update:modelValue": (value: any) => any;
1338
- }, string, {}, {}, string, {}, vue189.GlobalComponents, vue189.GlobalDirectives, string, vue189.ComponentProvideOptions> & vue189.VNodeProps & vue189.AllowedComponentProps & vue189.ComponentCustomProps & (new () => {
1339
- $slots: StepRootSlots;
1340
- });
1341
- };
1342
- //#endregion
1343
- //#region src/components/Theme/ThemeItem.vue.d.ts
1344
- interface ThemeSlots {
1345
- default: (scope: ThemeContext<ThemeTicket>) => any;
1346
- }
1347
- //#endregion
1348
- //#region src/components/Theme/ThemeRoot.vue.d.ts
1349
- interface ThemeRootProps {
1350
- namespace?: string;
1351
- themes?: ThemeTicket[];
1352
- }
1353
- interface ThemeRootSlots {
1354
- default: (scope: ThemeContext<ThemeTicket>) => any;
1355
- }
1356
- //#endregion
1357
- //#region src/components/Theme/index.d.ts
1358
- declare const Theme: {
1359
- Item: {
1360
- new (...args: any[]): vue189.CreateComponentPublicInstanceWithMixins<Readonly<{}> & Readonly<{}>, void, {}, {}, {}, vue189.ComponentOptionsMixin, vue189.ComponentOptionsMixin, {}, vue189.PublicProps, {}, true, {}, {}, vue189.GlobalComponents, vue189.GlobalDirectives, string, {}, any, vue189.ComponentProvideOptions, {
1361
- P: {};
1362
- B: {};
1363
- D: {};
1364
- C: {};
1365
- M: {};
1366
- Defaults: {};
1367
- }, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, {}>;
1368
- __isFragment?: never;
1369
- __isTeleport?: never;
1370
- __isSuspense?: never;
1371
- } & vue189.ComponentOptionsBase<Readonly<{}> & Readonly<{}>, void, {}, {}, {}, vue189.ComponentOptionsMixin, vue189.ComponentOptionsMixin, {}, string, {}, {}, string, {}, vue189.GlobalComponents, vue189.GlobalDirectives, string, vue189.ComponentProvideOptions> & vue189.VNodeProps & vue189.AllowedComponentProps & vue189.ComponentCustomProps & (new () => {
1372
- $slots: ThemeSlots;
1373
- });
1374
- Root: {
1375
- new (...args: any[]): vue189.CreateComponentPublicInstanceWithMixins<Readonly<ThemeRootProps & {
1376
- modelValue?: ID;
1377
- }> & Readonly<{
1378
- "onUpdate:modelValue"?: ((value: ID) => any) | undefined;
1379
- }>, void, {}, {}, {}, vue189.ComponentOptionsMixin, vue189.ComponentOptionsMixin, {
1380
- "update:modelValue": (value: ID) => any;
1381
- }, vue189.PublicProps, {}, false, {}, {}, vue189.GlobalComponents, vue189.GlobalDirectives, string, {}, any, vue189.ComponentProvideOptions, {
1382
- P: {};
1383
- B: {};
1384
- D: {};
1385
- C: {};
1386
- M: {};
1387
- Defaults: {};
1388
- }, Readonly<ThemeRootProps & {
1389
- modelValue?: ID;
1390
- }> & Readonly<{
1391
- "onUpdate:modelValue"?: ((value: ID) => any) | undefined;
1392
- }>, {}, {}, {}, {}, {}>;
1393
- __isFragment?: never;
1394
- __isTeleport?: never;
1395
- __isSuspense?: never;
1396
- } & vue189.ComponentOptionsBase<Readonly<ThemeRootProps & {
1397
- modelValue?: ID;
1398
- }> & Readonly<{
1399
- "onUpdate:modelValue"?: ((value: ID) => any) | undefined;
1400
- }>, void, {}, {}, {}, vue189.ComponentOptionsMixin, vue189.ComponentOptionsMixin, {
1401
- "update:modelValue": (value: ID) => any;
1402
- }, string, {}, {}, string, {}, vue189.GlobalComponents, vue189.GlobalDirectives, string, vue189.ComponentProvideOptions> & vue189.VNodeProps & vue189.AllowedComponentProps & vue189.ComponentCustomProps & (new () => {
1403
- $slots: ThemeRootSlots;
1404
- });
1405
- };
1406
- //#endregion
1407
- export { AtomExpose, AtomProps, AtomSlots, BreakpointName, Breakpoints, BreakpointsContext, BreakpointsOptions, CleanupFunction, Colors, ConsolaLoggerAdapter, Context, EventHandler, FilterFunction, FilterItem, FilterMode, FilterQuery, FlatTokenCollection, FormContext, FormOptions, FormTicket, FormValidationResult, FormValidationRule, FormValue, Group, GroupContext, type GroupItemProps, type GroupItemSlots, GroupOptions, type GroupRootProps, type GroupRootSlots, GroupTicket, HydrationContext, IntersectionObserverEntry, IntersectionObserverOptions, KeyHandler, LayoutContext, LayoutLocation, LayoutOptions, LayoutTicket, LocaleContext, LocaleOptions, LocalePluginOptions, LocaleTicket, type LogLevel, type LoggerAdapter, LoggerContext, LoggerOptions, MutationObserverRecord, PinoLoggerAdapter, Popover, type PopoverAnchorProps, type PopoverContentEmits, type PopoverContentProps, type PopoverContext, type PopoverRootProps, Primitive, ProxyModelOptions, RegistryContext, RegistryOptions, RegistryTicket, ResizeObserverEntry, ResizeObserverOptions, SelectionContext, SelectionOptions, SelectionTicket, SingleContext, SingleOptions, SingleTicket, Step, StepContext, type StepItemProps, type StepItemSlots, StepOptions, type StepRootProps, type StepRootSlots, StepTicket, StorageContext, StorageOptions, Theme, ThemeColors, ThemeContext, ThemeOptions, ThemePluginOptions, ThemeRecord, type ThemeRootProps, type ThemeRootSlots, type ThemeSlots, ThemeTicket, TokenAlias, TokenCollection, TokenContext, TokenPrimitive, TokenTicket, TokenValue, UseFilterOptions, UseFilterResult, UseMutationObserverOptions, Vuetify0LoggerAdapter, _default, _default$1, _default$2, createBreakpoints, createBreakpointsPlugin, createHydration, createHydrationPlugin, createLocale, createLocalePlugin, createLogger, createLoggerPlugin, createRegistryContext, createStorage, createStoragePlugin, createTheme, createThemePlugin, createTokensContext, provideBreakpointsContext, provideHydrationContext, providePopoverContext, provideStorageContext, useBreakpoints, useBreakpointsContext, useDocumentEventListener, useElementIntersection, useElementSize, useEventListener, useFilter, useForm, useGroup, useHydration, useHydrationContext, useIntersectionObserver, useKeydown, useLayout, useLocale, useLogger, useMutationObserver, usePopoverContext, useProxyModel, useRegistry, useResizeObserver, useSelection, useSingle, useStep, useStorage, useStorageContext, useTheme, useTokens, useWindowEventListener };