@vuetify/v0 0.0.2-beta.1

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