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