@vuetify/v0 0.0.15 → 0.0.18

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,2442 @@
1
+ import { i as ID, t as DOMElement } from "./index-C5LQZd3v.mjs";
2
+ import { I as RegistryContext, M as SelectionTicket, S as GroupContext, T as GroupTicket, c as SingleContext, d as SingleTicket, h as PaginationContext, i as StepTicket, k as SelectionContext, t as StepContext, v as PaginationTicket, z as RegistryTicket } from "./index-DaX9-kmY.mjs";
3
+ import * as vue319 from "vue";
4
+ import { MaybeRef, Ref, ShallowRef, TemplateRef } from "vue";
5
+
6
+ //#region src/components/Atom/Atom.vue.d.ts
7
+ /**
8
+ * Props for the Atom component
9
+ */
10
+ interface AtomProps {
11
+ /**
12
+ * The HTML element to render as, or null for renderless mode
13
+ * @default 'div'
14
+ */
15
+ as?: DOMElement | null;
16
+ /**
17
+ * When true, renders slot content directly without a wrapper element
18
+ * @default false
19
+ */
20
+ renderless?: boolean;
21
+ }
22
+ /**
23
+ * Slot types for the Atom component
24
+ * @template T - The type of props passed to the slot
25
+ */
26
+ interface AtomSlots<T> {
27
+ /**
28
+ * Default slot that receives all forwarded attributes as props
29
+ */
30
+ default: (props: T) => any;
31
+ }
32
+ /**
33
+ * Values exposed by the Atom component via defineExpose
34
+ */
35
+ interface AtomExpose {
36
+ /**
37
+ * Template ref to the rendered HTML element (null in renderless mode)
38
+ */
39
+ element: TemplateRef<HTMLElement | null>;
40
+ }
41
+ interface AtomPrivateProps extends AtomProps {}
42
+ declare const __VLS_export$27: <T extends Record<string, any> = {}>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: __VLS_PrettifyLocal$11<Pick<NonNullable<Awaited<typeof __VLS_setup>>, "attrs" | "emit" | "slots">>, __VLS_expose?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
43
+ props: __VLS_PrettifyLocal$11<AtomPrivateProps> & vue319.PublicProps;
44
+ expose: (exposed: vue319.ShallowUnwrapRef<AtomExpose>) => void;
45
+ attrs: any;
46
+ slots: AtomSlots<T>;
47
+ emit: {};
48
+ }>) => vue319.VNode & {
49
+ __ctx?: Awaited<typeof __VLS_setup>;
50
+ };
51
+ declare const _default$27: typeof __VLS_export$27;
52
+ type __VLS_PrettifyLocal$11<T> = { [K in keyof T as K]: T[K] } & {};
53
+ //#endregion
54
+ //#region src/components/Avatar/AvatarRoot.vue.d.ts
55
+ interface AvatarRootProps extends AtomProps {
56
+ /** Namespace for dependency injection */
57
+ namespace?: string;
58
+ }
59
+ interface AvatarTicket extends SelectionTicket {
60
+ type?: 'image' | 'fallback';
61
+ priority?: number;
62
+ }
63
+ interface AvatarContext extends SelectionContext<AvatarTicket> {}
64
+ declare const useAvatarRoot: (key: string, defaultValue?: AvatarContext | undefined) => AvatarContext, provideAvatarContext: (key: string, context: AvatarContext, app?: vue319.App) => AvatarContext;
65
+ declare const __VLS_export$26: __VLS_WithSlots$15<vue319.DefineComponent<AvatarRootProps, {}, {}, {}, {}, vue319.ComponentOptionsMixin, vue319.ComponentOptionsMixin, {}, string, vue319.PublicProps, Readonly<AvatarRootProps> & Readonly<{}>, {}, {}, {}, {}, string, vue319.ComponentProvideOptions, false, {}, any>, {
66
+ default?: (props: {}) => any;
67
+ }>;
68
+ declare const _default$26: typeof __VLS_export$26;
69
+ type __VLS_WithSlots$15<T, S> = T & {
70
+ new (): {
71
+ $slots: S;
72
+ };
73
+ };
74
+ //#endregion
75
+ //#region src/components/Avatar/AvatarImage.vue.d.ts
76
+ interface AvatarImageProps extends AtomProps {
77
+ /** Image source URL */
78
+ src?: string;
79
+ /** Priority for display order (higher = more preferred) */
80
+ priority?: number;
81
+ /** Namespace for retrieving avatar context */
82
+ namespace?: string;
83
+ }
84
+ interface AvatarImageEmits {
85
+ load: [e: Event];
86
+ error: [e: Event];
87
+ }
88
+ interface AvatarImageSlotProps {
89
+ /** Whether this image is currently visible */
90
+ isSelected: boolean;
91
+ /** Attributes to bind to the image element */
92
+ attrs: {
93
+ role: 'img';
94
+ src?: string;
95
+ onLoad: (e: Event) => void;
96
+ onError: (e: Event) => void;
97
+ };
98
+ }
99
+ declare const __VLS_export$25: __VLS_WithSlots$14<vue319.DefineComponent<AvatarImageProps, {}, {}, {}, {}, vue319.ComponentOptionsMixin, vue319.ComponentOptionsMixin, {
100
+ load: (e: Event) => any;
101
+ error: (e: Event) => any;
102
+ }, string, vue319.PublicProps, Readonly<AvatarImageProps> & Readonly<{
103
+ onLoad?: ((e: Event) => any) | undefined;
104
+ onError?: ((e: Event) => any) | undefined;
105
+ }>, {}, {}, {}, {}, string, vue319.ComponentProvideOptions, false, {}, any>, {
106
+ default: (props: AvatarImageSlotProps) => any;
107
+ }>;
108
+ declare const _default$25: typeof __VLS_export$25;
109
+ type __VLS_WithSlots$14<T, S> = T & {
110
+ new (): {
111
+ $slots: S;
112
+ };
113
+ };
114
+ //#endregion
115
+ //#region src/components/Avatar/AvatarFallback.vue.d.ts
116
+ interface AvatarFallbackProps extends AtomProps {
117
+ /** Namespace for retrieving avatar context */
118
+ namespace?: string;
119
+ }
120
+ interface AvatarFallbackSlotProps {
121
+ /** Whether this fallback is currently visible */
122
+ isSelected: boolean;
123
+ }
124
+ declare const __VLS_export$24: __VLS_WithSlots$13<vue319.DefineComponent<AvatarFallbackProps, {}, {}, {}, {}, vue319.ComponentOptionsMixin, vue319.ComponentOptionsMixin, {}, string, vue319.PublicProps, Readonly<AvatarFallbackProps> & Readonly<{}>, {}, {}, {}, {}, string, vue319.ComponentProvideOptions, false, {}, any>, {
125
+ default: (props: AvatarFallbackSlotProps) => any;
126
+ }>;
127
+ declare const _default$24: typeof __VLS_export$24;
128
+ type __VLS_WithSlots$13<T, S> = T & {
129
+ new (): {
130
+ $slots: S;
131
+ };
132
+ };
133
+ //#endregion
134
+ //#region src/components/Avatar/index.d.ts
135
+ /**
136
+ * Avatar component with sub-components for building avatars.
137
+ *
138
+ * @see https://0.vuetifyjs.com/components/avatar
139
+ */
140
+ declare const Avatar: {
141
+ /**
142
+ * Root component for avatars.
143
+ *
144
+ * @see https://0.vuetifyjs.com/components/avatar
145
+ *
146
+ * @example
147
+ * ```vue
148
+ * <script lang="ts" setup>
149
+ * import { Avatar } from '@vuetify/v0'
150
+ * </script>
151
+ *
152
+ * <template>
153
+ * <Avatar.Root>
154
+ * <Avatar.Image src="/avatar.jpg" />
155
+ *
156
+ * <Avatar.Fallback>JD</Avatar.Fallback>
157
+ * </Avatar.Root>
158
+ * </template>
159
+ * ```
160
+ */
161
+ Root: {
162
+ new (...args: any[]): vue319.CreateComponentPublicInstanceWithMixins<Readonly<AvatarRootProps> & Readonly<{}>, {}, {}, {}, {}, vue319.ComponentOptionsMixin, vue319.ComponentOptionsMixin, {}, vue319.PublicProps, {}, false, {}, {}, vue319.GlobalComponents, vue319.GlobalDirectives, string, {}, any, vue319.ComponentProvideOptions, {
163
+ P: {};
164
+ B: {};
165
+ D: {};
166
+ C: {};
167
+ M: {};
168
+ Defaults: {};
169
+ }, Readonly<AvatarRootProps> & Readonly<{}>, {}, {}, {}, {}, {}>;
170
+ __isFragment?: never;
171
+ __isTeleport?: never;
172
+ __isSuspense?: never;
173
+ } & vue319.ComponentOptionsBase<Readonly<AvatarRootProps> & Readonly<{}>, {}, {}, {}, {}, vue319.ComponentOptionsMixin, vue319.ComponentOptionsMixin, {}, string, {}, {}, string, {}, vue319.GlobalComponents, vue319.GlobalDirectives, string, vue319.ComponentProvideOptions> & vue319.VNodeProps & vue319.AllowedComponentProps & vue319.ComponentCustomProps & (new () => {
174
+ $slots: {
175
+ default?: (props: {}) => any;
176
+ };
177
+ });
178
+ /**
179
+ * Component for displaying the avatar image.
180
+ *
181
+ * @see https://0.vuetifyjs.com/components/avatar#avatarimage
182
+ *
183
+ * @example
184
+ * ```vue
185
+ * <script lang="ts" setup>
186
+ * import { Avatar } from '@vuetify/v0'
187
+ * </script>
188
+ *
189
+ * <template>
190
+ * <Avatar.Image src="/avatar.jpg" alt="User avatar" />
191
+ * </template>
192
+ * ```
193
+ */
194
+ Image: {
195
+ new (...args: any[]): vue319.CreateComponentPublicInstanceWithMixins<Readonly<AvatarImageProps> & Readonly<{
196
+ onLoad?: ((e: Event) => any) | undefined;
197
+ onError?: ((e: Event) => any) | undefined;
198
+ }>, {}, {}, {}, {}, vue319.ComponentOptionsMixin, vue319.ComponentOptionsMixin, {
199
+ load: (e: Event) => any;
200
+ error: (e: Event) => any;
201
+ }, vue319.PublicProps, {}, false, {}, {}, vue319.GlobalComponents, vue319.GlobalDirectives, string, {}, any, vue319.ComponentProvideOptions, {
202
+ P: {};
203
+ B: {};
204
+ D: {};
205
+ C: {};
206
+ M: {};
207
+ Defaults: {};
208
+ }, Readonly<AvatarImageProps> & Readonly<{
209
+ onLoad?: ((e: Event) => any) | undefined;
210
+ onError?: ((e: Event) => any) | undefined;
211
+ }>, {}, {}, {}, {}, {}>;
212
+ __isFragment?: never;
213
+ __isTeleport?: never;
214
+ __isSuspense?: never;
215
+ } & vue319.ComponentOptionsBase<Readonly<AvatarImageProps> & Readonly<{
216
+ onLoad?: ((e: Event) => any) | undefined;
217
+ onError?: ((e: Event) => any) | undefined;
218
+ }>, {}, {}, {}, {}, vue319.ComponentOptionsMixin, vue319.ComponentOptionsMixin, {
219
+ load: (e: Event) => any;
220
+ error: (e: Event) => any;
221
+ }, string, {}, {}, string, {}, vue319.GlobalComponents, vue319.GlobalDirectives, string, vue319.ComponentProvideOptions> & vue319.VNodeProps & vue319.AllowedComponentProps & vue319.ComponentCustomProps & (new () => {
222
+ $slots: {
223
+ default: (props: AvatarImageSlotProps) => any;
224
+ };
225
+ });
226
+ /**
227
+ * Component for displaying fallback content when image fails to load.
228
+ *
229
+ * @see https://0.vuetifyjs.com/components/avatar#avatarfallback
230
+ *
231
+ * @example
232
+ * ```vue
233
+ * <script lang="ts" setup>
234
+ * import { Avatar } from '@vuetify/v0'
235
+ * </script>
236
+ *
237
+ * <template>
238
+ * <Avatar.Fallback>
239
+ * JD
240
+ * </Avatar.Fallback>
241
+ * </template>
242
+ * ```
243
+ */
244
+ Fallback: {
245
+ new (...args: any[]): vue319.CreateComponentPublicInstanceWithMixins<Readonly<AvatarFallbackProps> & Readonly<{}>, {}, {}, {}, {}, vue319.ComponentOptionsMixin, vue319.ComponentOptionsMixin, {}, vue319.PublicProps, {}, false, {}, {}, vue319.GlobalComponents, vue319.GlobalDirectives, string, {}, any, vue319.ComponentProvideOptions, {
246
+ P: {};
247
+ B: {};
248
+ D: {};
249
+ C: {};
250
+ M: {};
251
+ Defaults: {};
252
+ }, Readonly<AvatarFallbackProps> & Readonly<{}>, {}, {}, {}, {}, {}>;
253
+ __isFragment?: never;
254
+ __isTeleport?: never;
255
+ __isSuspense?: never;
256
+ } & vue319.ComponentOptionsBase<Readonly<AvatarFallbackProps> & Readonly<{}>, {}, {}, {}, {}, vue319.ComponentOptionsMixin, vue319.ComponentOptionsMixin, {}, string, {}, {}, string, {}, vue319.GlobalComponents, vue319.GlobalDirectives, string, vue319.ComponentProvideOptions> & vue319.VNodeProps & vue319.AllowedComponentProps & vue319.ComponentCustomProps & (new () => {
257
+ $slots: {
258
+ default: (props: AvatarFallbackSlotProps) => any;
259
+ };
260
+ });
261
+ };
262
+ //#endregion
263
+ //#region src/components/ExpansionPanel/ExpansionPanelRoot.vue.d.ts
264
+ interface ExpansionPanelOptionsContext {
265
+ /** Disabled state of the entire expansion panel */
266
+ isDisabled: Readonly<Ref<boolean>>;
267
+ }
268
+ interface ExpansionPanelRootProps extends AtomProps {
269
+ /** Namespace for dependency injection (default: 'v0:expansion-panel') */
270
+ namespace?: string;
271
+ /** Disables the entire expansion panel instance and all items */
272
+ disabled?: boolean;
273
+ /** Auto-expand non-disabled items when registered */
274
+ enroll?: boolean;
275
+ /**
276
+ * Mandatory expansion behavior:
277
+ * - false (default): All panels can be collapsed
278
+ * - true: Prevents collapsing the last expanded panel
279
+ * - 'force': Automatically expands the first non-disabled panel
280
+ */
281
+ mandatory?: boolean | 'force';
282
+ /**
283
+ * Enable multi-expansion mode
284
+ * - false (default): Single panel expanded at a time (accordion mode)
285
+ * - true: Multiple panels can be expanded simultaneously
286
+ * Note: Changes v-model type from T to T[]
287
+ */
288
+ multiple?: boolean;
289
+ }
290
+ interface ExpansionPanelRootSlotProps {
291
+ /** Disables the entire expansion panel instance and all registered items */
292
+ isDisabled: Readonly<Ref<boolean>>;
293
+ /** Select a panel by ID */
294
+ select: (id: ID) => void;
295
+ /** Unselect a panel by ID */
296
+ unselect: (id: ID) => void;
297
+ /** Toggle a panel's expansion state by ID */
298
+ toggle: (id: ID) => void;
299
+ }
300
+ declare const useExpansionPanelRoot: (key: string, defaultValue?: SelectionContext<SelectionTicket<unknown>> | undefined) => SelectionContext<SelectionTicket<unknown>>, provideExpansionPanelSelection: (key: string, context: SelectionContext<SelectionTicket<unknown>>, app?: vue319.App) => SelectionContext<SelectionTicket<unknown>>;
301
+ declare const __VLS_export$23: <T = unknown>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: __VLS_PrettifyLocal$10<Pick<NonNullable<Awaited<typeof __VLS_setup>>, "attrs" | "emit" | "slots">>, __VLS_expose?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
302
+ props: __VLS_PrettifyLocal$10<(ExpansionPanelRootProps & {
303
+ modelValue?: T | T[];
304
+ }) & {
305
+ [x: `on${Capitalize<string>}`]: ((...args: any) => any) | undefined;
306
+ }> & vue319.PublicProps;
307
+ expose: (exposed: {}) => void;
308
+ attrs: any;
309
+ slots: {
310
+ default: (props: ExpansionPanelRootSlotProps) => any;
311
+ };
312
+ emit: ((evt: "update:model-value", ...args: T | T[]) => void) & ((evt: "update:modelValue", value: T | T[] | undefined) => void);
313
+ }>) => vue319.VNode & {
314
+ __ctx?: Awaited<typeof __VLS_setup>;
315
+ };
316
+ declare const _default$23: typeof __VLS_export$23;
317
+ type __VLS_PrettifyLocal$10<T> = { [K in keyof T as K]: T[K] } & {};
318
+ //#endregion
319
+ //#region src/components/ExpansionPanel/ExpansionPanelItem.vue.d.ts
320
+ interface ExpansionPanelItemProps<V = unknown> extends AtomProps {
321
+ /** Unique identifier for the panel item (auto-generated if not provided) */
322
+ id?: string;
323
+ /** Value associated with this panel item for v-model binding */
324
+ value?: V;
325
+ /** Disables this specific panel item */
326
+ disabled?: MaybeRef<boolean>;
327
+ /** Namespace to retrieve the parent ExpansionPanelRoot context (default: 'v0:expansion-panel') */
328
+ namespace?: string;
329
+ }
330
+ /**
331
+ * Context provided to child components (ExpansionPanelActivator and ExpansionPanelContent)
332
+ * via dependency injection using the itemNamespace.
333
+ */
334
+ interface ExpansionPanelItemContext {
335
+ /** Selection ticket from the parent ExpansionPanel registry */
336
+ ticket: SelectionTicket;
337
+ /** Unique ID for the header/activator element (for aria-controls) */
338
+ headerId: Readonly<Ref<string>>;
339
+ /** Unique ID for the content region (for aria-labelledby) */
340
+ contentId: Readonly<Ref<string>>;
341
+ /** Combined disabled state from item and parent */
342
+ isDisabled: Readonly<Ref<boolean>>;
343
+ }
344
+ /**
345
+ * Slot props provided to the default slot of ExpansionPanelItem
346
+ */
347
+ interface ExpansionPanelItemSlotProps {
348
+ /** Whether this panel is currently selected/expanded */
349
+ isSelected: boolean;
350
+ /** Combined disabled state from item and parent */
351
+ isDisabled: boolean;
352
+ /** Attributes to bind to the root element for accessibility */
353
+ attrs: {
354
+ /** Data attribute for selected state */
355
+ 'data-selected': true | undefined;
356
+ };
357
+ }
358
+ declare const useExpansionPanelItem: (key: string, defaultValue?: ExpansionPanelItemContext | undefined) => ExpansionPanelItemContext, provideExpansionPanelItem: (key: string, context: ExpansionPanelItemContext, app?: vue319.App) => ExpansionPanelItemContext;
359
+ declare const __VLS_export$22: <V = unknown>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: __VLS_PrettifyLocal$9<Pick<NonNullable<Awaited<typeof __VLS_setup>>, "attrs" | "emit" | "slots">>, __VLS_expose?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
360
+ props: __VLS_PrettifyLocal$9<ExpansionPanelItemProps<V>> & vue319.PublicProps;
361
+ expose: (exposed: {}) => void;
362
+ attrs: any;
363
+ slots: {
364
+ default: (props: ExpansionPanelItemSlotProps) => any;
365
+ };
366
+ emit: {};
367
+ }>) => vue319.VNode & {
368
+ __ctx?: Awaited<typeof __VLS_setup>;
369
+ };
370
+ declare const _default$22: typeof __VLS_export$22;
371
+ type __VLS_PrettifyLocal$9<T> = { [K in keyof T as K]: T[K] } & {};
372
+ //#endregion
373
+ //#region src/components/ExpansionPanel/ExpansionPanelHeader.vue.d.ts
374
+ interface ExpansionPanelHeaderProps extends AtomProps {
375
+ /** Namespace for retrieving the parent ExpansionPanelItem context (default: 'v0:expansion-panel') */
376
+ namespace?: string;
377
+ }
378
+ interface ExpansionPanelHeaderSlotProps {
379
+ /** Whether this panel is currently selected/expanded */
380
+ isSelected: boolean;
381
+ /** Attributes to bind to the root element for accessibility */
382
+ attrs: {
383
+ /** Data attribute for selected state */
384
+ 'data-selected': true | undefined;
385
+ };
386
+ }
387
+ declare const __VLS_export$21: __VLS_WithSlots$12<vue319.DefineComponent<ExpansionPanelHeaderProps, {}, {}, {}, {}, vue319.ComponentOptionsMixin, vue319.ComponentOptionsMixin, {}, string, vue319.PublicProps, Readonly<ExpansionPanelHeaderProps> & Readonly<{}>, {}, {}, {}, {}, string, vue319.ComponentProvideOptions, false, {}, any>, {
388
+ default: (props: ExpansionPanelHeaderSlotProps) => any;
389
+ }>;
390
+ declare const _default$21: typeof __VLS_export$21;
391
+ type __VLS_WithSlots$12<T, S> = T & {
392
+ new (): {
393
+ $slots: S;
394
+ };
395
+ };
396
+ //#endregion
397
+ //#region src/components/ExpansionPanel/ExpansionPanelActivator.vue.d.ts
398
+ interface ExpansionPanelActivatorProps extends AtomProps {
399
+ namespace?: string;
400
+ }
401
+ interface ExpansionPanelActivatorSlotProps {
402
+ /** Disabled state */
403
+ isDisabled: boolean;
404
+ /** Whether this panel is currently selected/expanded */
405
+ isSelected: boolean;
406
+ /** Toggle the panels expansion state */
407
+ toggle: () => void;
408
+ /** Attributes to bind to the activator element for accessibility */
409
+ attrs: {
410
+ /** Unique ID for the header/activator element */
411
+ 'id': string;
412
+ /** ARIA role for accessibility (only set when not using native button) */
413
+ 'role': 'button' | undefined;
414
+ /** Tab index for keyboard navigation */
415
+ 'tabindex': number;
416
+ /** ARIA expanded state */
417
+ 'aria-expanded': boolean;
418
+ /** ARIA controls attribute pointing to content region */
419
+ 'aria-controls': string;
420
+ /** ARIA disabled state */
421
+ 'aria-disabled': boolean;
422
+ /** Data attribute for disabled state */
423
+ 'data-disabled': true | undefined;
424
+ /** Data attribute for selected state */
425
+ 'data-selected': true | undefined;
426
+ /** Disabled attribute for native button elements */
427
+ 'disabled': boolean | undefined;
428
+ /** Type attribute for native button elements */
429
+ 'type': 'button' | undefined;
430
+ /** Click handler to toggle panel */
431
+ 'onClick': () => void;
432
+ /** Keyboard handler for Enter and Space keys */
433
+ 'onKeydown': (e: KeyboardEvent) => void;
434
+ };
435
+ }
436
+ declare const __VLS_export$20: __VLS_WithSlots$11<vue319.DefineComponent<ExpansionPanelActivatorProps, {}, {}, {}, {}, vue319.ComponentOptionsMixin, vue319.ComponentOptionsMixin, {}, string, vue319.PublicProps, Readonly<ExpansionPanelActivatorProps> & Readonly<{}>, {}, {}, {}, {}, string, vue319.ComponentProvideOptions, false, {}, any>, {
437
+ default: (props: ExpansionPanelActivatorSlotProps) => any;
438
+ }>;
439
+ declare const _default$19: typeof __VLS_export$20;
440
+ type __VLS_WithSlots$11<T, S> = T & {
441
+ new (): {
442
+ $slots: S;
443
+ };
444
+ };
445
+ //#endregion
446
+ //#region src/components/ExpansionPanel/ExpansionPanelContent.vue.d.ts
447
+ interface ExpansionPanelContentProps extends AtomProps {
448
+ namespace?: string;
449
+ }
450
+ interface ExpansionPanelContentSlotProps {
451
+ /** Whether this panel is currently selected/expanded */
452
+ isSelected: boolean;
453
+ /** Attributes to bind to the content element for accessibility */
454
+ attrs: {
455
+ /** Data attribute for selected state */
456
+ 'data-selected': boolean;
457
+ /** Unique ID for the content region */
458
+ 'id': string;
459
+ /** ARIA role for accessibility */
460
+ 'role': 'region';
461
+ /** ARIA labelledby attribute pointing to header element */
462
+ 'aria-labelledby': string;
463
+ /** Whether the content is hidden */
464
+ 'hidden': boolean;
465
+ };
466
+ }
467
+ declare const __VLS_export$19: __VLS_WithSlots$10<vue319.DefineComponent<ExpansionPanelContentProps, {}, {}, {}, {}, vue319.ComponentOptionsMixin, vue319.ComponentOptionsMixin, {}, string, vue319.PublicProps, Readonly<ExpansionPanelContentProps> & Readonly<{}>, {}, {}, {}, {}, string, vue319.ComponentProvideOptions, false, {}, any>, {
468
+ default: (props: ExpansionPanelContentSlotProps) => any;
469
+ }>;
470
+ declare const _default$20: typeof __VLS_export$19;
471
+ type __VLS_WithSlots$10<T, S> = T & {
472
+ new (): {
473
+ $slots: S;
474
+ };
475
+ };
476
+ //#endregion
477
+ //#region src/components/ExpansionPanel/index.d.ts
478
+ /**
479
+ * ExpansionPanel component with sub-components for building expansion panels.
480
+ *
481
+ * @see https://0.vuetifyjs.com/components/expansion-panels
482
+ */
483
+ declare const ExpansionPanel: {
484
+ /**
485
+ * Root component for expansion panels.
486
+ *
487
+ * @see https://0.vuetifyjs.com/components/expansion-panels
488
+ *
489
+ * @example
490
+ * ```vue
491
+ * <script lang="ts" setup>
492
+ * import { ExpansionPanel } from '@vuetify/v0'
493
+ * </script>
494
+ *
495
+ * <template>
496
+ * <ExpansionPanel.Root>
497
+ * <ExpansionPanel.Item>
498
+ * <ExpansionPanel.Header>
499
+ * <ExpansionPanel.Activator>
500
+ * Click to expand
501
+ * </ExpansionPanel.Activator>
502
+ * </ExpansionPanel.Header>
503
+ *
504
+ * <ExpansionPanel.Content>
505
+ * Content goes here.
506
+ * </ExpansionPanel.Content>
507
+ * </ExpansionPanel.Item>
508
+ * </ExpansionPanel.Root>
509
+ * </template>
510
+ * ```
511
+ */
512
+ Root: <T = unknown>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: {
513
+ attrs: any;
514
+ emit: ((evt: "update:model-value", ...args: T | T[]) => void) & ((evt: "update:modelValue", value: T | T[] | undefined) => void);
515
+ slots: {
516
+ default: (props: ExpansionPanelRootSlotProps) => any;
517
+ };
518
+ }, __VLS_expose?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
519
+ props: {
520
+ [x: `on${Capitalize<string>}`]: ((...args: any) => any) | undefined;
521
+ namespace?: string | undefined;
522
+ disabled?: boolean | undefined;
523
+ enroll?: boolean | undefined;
524
+ mandatory?: boolean | "force" | undefined;
525
+ multiple?: boolean | undefined;
526
+ as?: (DOMElement | null) | undefined;
527
+ renderless?: boolean | undefined;
528
+ modelValue?: (T | T[]) | undefined;
529
+ } & vue319.PublicProps;
530
+ expose: (exposed: {}) => void;
531
+ attrs: any;
532
+ slots: {
533
+ default: (props: ExpansionPanelRootSlotProps) => any;
534
+ };
535
+ emit: ((evt: "update:model-value", ...args: T | T[]) => void) & ((evt: "update:modelValue", value: T | T[] | undefined) => void);
536
+ }>) => vue319.VNode & {
537
+ __ctx?: Awaited<typeof __VLS_setup>;
538
+ };
539
+ /**
540
+ * Component representing a single expansion panel item.
541
+ *
542
+ * @see https://0.vuetifyjs.com/components/expansion-panels#expansionpanelitem
543
+ *
544
+ * @example
545
+ * ```vue
546
+ * <script lang="ts" setup>
547
+ * import { ExpansionPanel } from '@vuetify/v0'
548
+ * </script>
549
+ *
550
+ * <template>
551
+ * <ExpansionPanel.Item>
552
+ * <ExpansionPanel.Header>
553
+ * <ExpansionPanel.Activator>
554
+ * Click to expand
555
+ * </ExpansionPanel.Activator>
556
+ * </ExpansionPanel.Header>
557
+ *
558
+ * <ExpansionPanel.Content>
559
+ * Content goes here.
560
+ * </ExpansionPanel.Content>
561
+ * </ExpansionPanel.Item>
562
+ * </template>
563
+ * ```
564
+ */
565
+ Item: <V = unknown>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: {
566
+ attrs: any;
567
+ emit: {};
568
+ slots: {
569
+ default: (props: ExpansionPanelItemSlotProps) => any;
570
+ };
571
+ }, __VLS_expose?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
572
+ props: {
573
+ id?: string | undefined;
574
+ value?: V | undefined;
575
+ disabled?: vue319.MaybeRef<boolean> | undefined;
576
+ namespace?: string | undefined;
577
+ as?: (DOMElement | null) | undefined;
578
+ renderless?: boolean | undefined;
579
+ } & vue319.PublicProps;
580
+ expose: (exposed: {}) => void;
581
+ attrs: any;
582
+ slots: {
583
+ default: (props: ExpansionPanelItemSlotProps) => any;
584
+ };
585
+ emit: {};
586
+ }>) => vue319.VNode & {
587
+ __ctx?: Awaited<typeof __VLS_setup>;
588
+ };
589
+ /**
590
+ * (optional) Component for the header section of an expansion panel item.
591
+ *
592
+ * @see https://0.vuetifyjs.com/components/expansion-panels#expansionpanelheader
593
+ *
594
+ * @example
595
+ * ```vue
596
+ * <script lang="ts" setup>
597
+ * import { ExpansionPanel } from '@vuetify/v0'
598
+ * </script>
599
+ *
600
+ * <template>
601
+ * <ExpansionPanel.Header>
602
+ * <ExpansionPanel.Activator>
603
+ * Click to expand
604
+ * </ExpansionPanel.Activator>
605
+ * </ExpansionPanel.Header>
606
+ * </template>
607
+ * ```
608
+ */
609
+ Header: {
610
+ new (...args: any[]): vue319.CreateComponentPublicInstanceWithMixins<Readonly<ExpansionPanelHeaderProps> & Readonly<{}>, {}, {}, {}, {}, vue319.ComponentOptionsMixin, vue319.ComponentOptionsMixin, {}, vue319.PublicProps, {}, false, {}, {}, vue319.GlobalComponents, vue319.GlobalDirectives, string, {}, any, vue319.ComponentProvideOptions, {
611
+ P: {};
612
+ B: {};
613
+ D: {};
614
+ C: {};
615
+ M: {};
616
+ Defaults: {};
617
+ }, Readonly<ExpansionPanelHeaderProps> & Readonly<{}>, {}, {}, {}, {}, {}>;
618
+ __isFragment?: never;
619
+ __isTeleport?: never;
620
+ __isSuspense?: never;
621
+ } & vue319.ComponentOptionsBase<Readonly<ExpansionPanelHeaderProps> & Readonly<{}>, {}, {}, {}, {}, vue319.ComponentOptionsMixin, vue319.ComponentOptionsMixin, {}, string, {}, {}, string, {}, vue319.GlobalComponents, vue319.GlobalDirectives, string, vue319.ComponentProvideOptions> & vue319.VNodeProps & vue319.AllowedComponentProps & vue319.ComponentCustomProps & (new () => {
622
+ $slots: {
623
+ default: (props: ExpansionPanelHeaderSlotProps) => any;
624
+ };
625
+ });
626
+ /**
627
+ * Component for the activator section of an expansion panel header.
628
+ *
629
+ * @see https://0.vuetifyjs.com/components/expansion-panels#expansionpanelactivator
630
+ *
631
+ * @example
632
+ * ```vue
633
+ * <script lang="ts" setup>
634
+ * import { ExpansionPanel } from '@vuetify/v0'
635
+ * </script>
636
+ *
637
+ * <template>
638
+ * <ExpansionPanel.Activator>
639
+ * Click to expand
640
+ * </ExpansionPanel.Activator>
641
+ * </template>
642
+ * ```
643
+ */
644
+ Activator: {
645
+ new (...args: any[]): vue319.CreateComponentPublicInstanceWithMixins<Readonly<ExpansionPanelActivatorProps> & Readonly<{}>, {}, {}, {}, {}, vue319.ComponentOptionsMixin, vue319.ComponentOptionsMixin, {}, vue319.PublicProps, {}, false, {}, {}, vue319.GlobalComponents, vue319.GlobalDirectives, string, {}, any, vue319.ComponentProvideOptions, {
646
+ P: {};
647
+ B: {};
648
+ D: {};
649
+ C: {};
650
+ M: {};
651
+ Defaults: {};
652
+ }, Readonly<ExpansionPanelActivatorProps> & Readonly<{}>, {}, {}, {}, {}, {}>;
653
+ __isFragment?: never;
654
+ __isTeleport?: never;
655
+ __isSuspense?: never;
656
+ } & vue319.ComponentOptionsBase<Readonly<ExpansionPanelActivatorProps> & Readonly<{}>, {}, {}, {}, {}, vue319.ComponentOptionsMixin, vue319.ComponentOptionsMixin, {}, string, {}, {}, string, {}, vue319.GlobalComponents, vue319.GlobalDirectives, string, vue319.ComponentProvideOptions> & vue319.VNodeProps & vue319.AllowedComponentProps & vue319.ComponentCustomProps & (new () => {
657
+ $slots: {
658
+ default: (props: ExpansionPanelActivatorSlotProps) => any;
659
+ };
660
+ });
661
+ /**
662
+ * Component for the content section of an expansion panel item.
663
+ *
664
+ * @see https://0.vuetifyjs.com/components/expansion-panels#expansionpanelcontent
665
+ *
666
+ * @example
667
+ * ```vue
668
+ * <script lang="ts" setup>
669
+ * import { ExpansionPanel } from '@vuetify/v0'
670
+ * </script>
671
+ *
672
+ * <template>
673
+ * <ExpansionPanel.Content>
674
+ * Content goes here.
675
+ * </ExpansionPanel.Content>
676
+ * </template>
677
+ * ```
678
+ */
679
+ Content: {
680
+ new (...args: any[]): vue319.CreateComponentPublicInstanceWithMixins<Readonly<ExpansionPanelContentProps> & Readonly<{}>, {}, {}, {}, {}, vue319.ComponentOptionsMixin, vue319.ComponentOptionsMixin, {}, vue319.PublicProps, {}, false, {}, {}, vue319.GlobalComponents, vue319.GlobalDirectives, string, {}, any, vue319.ComponentProvideOptions, {
681
+ P: {};
682
+ B: {};
683
+ D: {};
684
+ C: {};
685
+ M: {};
686
+ Defaults: {};
687
+ }, Readonly<ExpansionPanelContentProps> & Readonly<{}>, {}, {}, {}, {}, {}>;
688
+ __isFragment?: never;
689
+ __isTeleport?: never;
690
+ __isSuspense?: never;
691
+ } & vue319.ComponentOptionsBase<Readonly<ExpansionPanelContentProps> & Readonly<{}>, {}, {}, {}, {}, vue319.ComponentOptionsMixin, vue319.ComponentOptionsMixin, {}, string, {}, {}, string, {}, vue319.GlobalComponents, vue319.GlobalDirectives, string, vue319.ComponentProvideOptions> & vue319.VNodeProps & vue319.AllowedComponentProps & vue319.ComponentCustomProps & (new () => {
692
+ $slots: {
693
+ default: (props: ExpansionPanelContentSlotProps) => any;
694
+ };
695
+ });
696
+ };
697
+ //#endregion
698
+ //#region src/components/Group/GroupRoot.vue.d.ts
699
+ interface GroupRootProps {
700
+ /** Namespace for dependency injection (must match GroupItem namespace) */
701
+ namespace?: string;
702
+ /** Disables the entire group instance */
703
+ disabled?: boolean;
704
+ /** Auto-select non-disabled items on registration */
705
+ enroll?: boolean;
706
+ /**
707
+ * Controls mandatory group behavior:
708
+ * - false (default): No mandatory group enforcement
709
+ * - true: Prevents deselecting the last selected item
710
+ * - `force`: Automatically selects the first non-disabled item on registration
711
+ */
712
+ mandatory?: boolean | 'force';
713
+ }
714
+ interface GroupRootSlotProps {
715
+ /** Whether the group instance is disabled */
716
+ isDisabled: boolean;
717
+ /** Whether no items are currently selected */
718
+ isNoneSelected: boolean;
719
+ /** Whether all selectable (non-disabled) items are selected */
720
+ isAllSelected: boolean;
721
+ /** Whether some but not all selectable items are selected */
722
+ isMixed: boolean;
723
+ /** Select an item by ID */
724
+ select: (id: ID | ID[]) => void;
725
+ /** Unselect an item by ID */
726
+ unselect: (id: ID | ID[]) => void;
727
+ /** Toggle an item's group state by ID */
728
+ toggle: (id: ID | ID[]) => void;
729
+ /** Select all selectable (non-disabled) items */
730
+ selectAll: () => void;
731
+ /** Unselect all items (respects mandatory option) */
732
+ unselectAll: () => void;
733
+ /** Toggle between all selected and none selected */
734
+ toggleAll: () => void;
735
+ /** Attributes to bind to the root element */
736
+ attrs: {
737
+ 'aria-multiselectable': true;
738
+ };
739
+ }
740
+ declare const useGroupRoot: (key: string, defaultValue?: GroupContext<GroupTicket<unknown>> | undefined) => GroupContext<GroupTicket<unknown>>, provideGroupRoot: (key: string, context: GroupContext<GroupTicket<unknown>>, app?: vue319.App) => GroupContext<GroupTicket<unknown>>;
741
+ declare const __VLS_export$18: <T = unknown>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: __VLS_PrettifyLocal$8<Pick<NonNullable<Awaited<typeof __VLS_setup>>, "attrs" | "emit" | "slots">>, __VLS_expose?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
742
+ props: __VLS_PrettifyLocal$8<(GroupRootProps & {
743
+ modelValue?: T | T[];
744
+ }) & {
745
+ "onUpdate:modelValue"?: ((value: T | T[] | undefined) => any) | undefined;
746
+ "onUpdate:model-value"?: ((value: T | T[]) => any) | undefined;
747
+ }> & vue319.PublicProps;
748
+ expose: (exposed: {}) => void;
749
+ attrs: any;
750
+ slots: {
751
+ default: (props: GroupRootSlotProps) => any;
752
+ };
753
+ emit: ((evt: "update:model-value", value: T | T[]) => void) & ((evt: "update:modelValue", value: T | T[] | undefined) => void);
754
+ }>) => vue319.VNode & {
755
+ __ctx?: Awaited<typeof __VLS_setup>;
756
+ };
757
+ declare const _default$18: typeof __VLS_export$18;
758
+ type __VLS_PrettifyLocal$8<T> = { [K in keyof T as K]: T[K] } & {};
759
+ //#endregion
760
+ //#region src/components/Group/GroupItem.vue.d.ts
761
+ interface GroupItemProps<V = unknown> {
762
+ /** Unique identifier (auto-generated if not provided) */
763
+ id?: string;
764
+ /** Optional display label (passed through to slot, not used in registration) */
765
+ label?: string;
766
+ /** Value associated with this item */
767
+ value?: V;
768
+ /** Disables this specific item */
769
+ disabled?: MaybeRef<boolean>;
770
+ /** Sets the indeterminate state (for checkboxes) */
771
+ indeterminate?: MaybeRef<boolean>;
772
+ /** Namespace for dependency injection */
773
+ namespace?: string;
774
+ }
775
+ interface GroupItemSlotProps<V = unknown> {
776
+ /** Unique identifier */
777
+ id: string;
778
+ /** Optional display label */
779
+ label?: string;
780
+ /** Value associated with this item */
781
+ value: V | undefined;
782
+ /** Whether this item is currently selected */
783
+ isSelected: boolean;
784
+ /** Whether this item is in a mixed/indeterminate state */
785
+ isMixed: boolean;
786
+ /** Whether this item is disabled */
787
+ isDisabled: boolean;
788
+ /** Select this item */
789
+ select: () => void;
790
+ /** Unselect this item */
791
+ unselect: () => void;
792
+ /** Toggle this item's group state */
793
+ toggle: () => void;
794
+ /** Set this item to mixed/indeterminate state */
795
+ mix: () => void;
796
+ /** Clear mixed/indeterminate state from this item */
797
+ unmix: () => void;
798
+ /** Attributes to bind to the item element */
799
+ attrs: {
800
+ 'role': 'checkbox';
801
+ 'aria-checked': boolean | 'mixed';
802
+ 'aria-disabled': boolean;
803
+ 'data-selected': true | undefined;
804
+ 'data-disabled': true | undefined;
805
+ 'data-mixed': true | undefined;
806
+ };
807
+ }
808
+ declare const __VLS_export$17: <V = unknown>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: __VLS_PrettifyLocal$7<Pick<NonNullable<Awaited<typeof __VLS_setup>>, "attrs" | "emit" | "slots">>, __VLS_expose?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
809
+ props: __VLS_PrettifyLocal$7<GroupItemProps<V>> & vue319.PublicProps;
810
+ expose: (exposed: {}) => void;
811
+ attrs: any;
812
+ slots: {
813
+ default: (props: GroupItemSlotProps<V>) => unknown;
814
+ };
815
+ emit: {};
816
+ }>) => vue319.VNode & {
817
+ __ctx?: Awaited<typeof __VLS_setup>;
818
+ };
819
+ declare const _default$17: typeof __VLS_export$17;
820
+ type __VLS_PrettifyLocal$7<T> = { [K in keyof T as K]: T[K] } & {};
821
+ //#endregion
822
+ //#region src/components/Group/index.d.ts
823
+ /**
824
+ * Group component with sub-components for multi-selection.
825
+ *
826
+ * @see https://0.vuetifyjs.com/components/group
827
+ */
828
+ declare const Group: {
829
+ /**
830
+ * Root component for multi-selection groups.
831
+ *
832
+ * @see https://0.vuetifyjs.com/components/group
833
+ *
834
+ * @example
835
+ * ```vue
836
+ * <script lang="ts" setup>
837
+ * import { Group } from '@vuetify/v0'
838
+ * </script>
839
+ *
840
+ * <template>
841
+ * <Group.Root v-model="selected">
842
+ * <Group.Item value="a">Option A</Group.Item>
843
+ *
844
+ * <Group.Item value="b">Option B</Group.Item>
845
+ * </Group.Root>
846
+ * </template>
847
+ * ```
848
+ */
849
+ Root: <T = unknown>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: {
850
+ attrs: any;
851
+ emit: ((evt: "update:model-value", value: T | T[]) => void) & ((evt: "update:modelValue", value: T | T[] | undefined) => void);
852
+ slots: {
853
+ default: (props: GroupRootSlotProps) => any;
854
+ };
855
+ }, __VLS_expose?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
856
+ props: {
857
+ namespace?: string | undefined;
858
+ disabled?: boolean | undefined;
859
+ enroll?: boolean | undefined;
860
+ mandatory?: boolean | "force" | undefined;
861
+ modelValue?: (T | T[]) | undefined;
862
+ "onUpdate:modelValue"?: ((value: T | T[] | undefined) => any) | undefined;
863
+ "onUpdate:model-value"?: ((value: T | T[]) => any) | undefined;
864
+ } & vue319.PublicProps;
865
+ expose: (exposed: {}) => void;
866
+ attrs: any;
867
+ slots: {
868
+ default: (props: GroupRootSlotProps) => any;
869
+ };
870
+ emit: ((evt: "update:model-value", value: T | T[]) => void) & ((evt: "update:modelValue", value: T | T[] | undefined) => void);
871
+ }>) => vue319.VNode & {
872
+ __ctx?: Awaited<typeof __VLS_setup>;
873
+ };
874
+ /**
875
+ * Item component for multi-selection groups.
876
+ *
877
+ * @see https://0.vuetifyjs.com/components/group#groupitem
878
+ *
879
+ * @example
880
+ * ```vue
881
+ * <script lang="ts" setup>
882
+ * import { Group } from '@vuetify/v0'
883
+ * </script>
884
+ *
885
+ * <template>
886
+ * <Group.Item value="a">
887
+ * Option A
888
+ * </Group.Item>
889
+ * </template>
890
+ * ```
891
+ */
892
+ Item: <V = unknown>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: {
893
+ attrs: any;
894
+ emit: {};
895
+ slots: {
896
+ default: (props: GroupItemSlotProps<V>) => unknown;
897
+ };
898
+ }, __VLS_expose?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
899
+ props: {
900
+ id?: string | undefined;
901
+ label?: string | undefined;
902
+ value?: V | undefined;
903
+ disabled?: vue319.MaybeRef<boolean> | undefined;
904
+ indeterminate?: vue319.MaybeRef<boolean> | undefined;
905
+ namespace?: string | undefined;
906
+ } & vue319.PublicProps;
907
+ expose: (exposed: {}) => void;
908
+ attrs: any;
909
+ slots: {
910
+ default: (props: GroupItemSlotProps<V>) => unknown;
911
+ };
912
+ emit: {};
913
+ }>) => vue319.VNode & {
914
+ __ctx?: Awaited<typeof __VLS_setup>;
915
+ };
916
+ };
917
+ //#endregion
918
+ //#region src/components/Pagination/PaginationRoot.vue.d.ts
919
+ declare const usePaginationRoot: (key: string, defaultValue?: PaginationContext | undefined) => PaginationContext, providePaginationRoot: (key: string, context: PaginationContext, app?: vue319.App) => PaginationContext;
920
+ declare const usePaginationControls: (key: string, defaultValue?: RegistryContext<RegistryTicket<unknown>> | undefined) => RegistryContext<RegistryTicket<unknown>>, providePaginationControls: (key: string, context: RegistryContext<RegistryTicket<unknown>>, app?: vue319.App) => RegistryContext<RegistryTicket<unknown>>;
921
+ declare const usePaginationItems: (key: string, defaultValue?: RegistryContext<RegistryTicket<unknown>> | undefined) => RegistryContext<RegistryTicket<unknown>>, providePaginationItems: (key: string, context: RegistryContext<RegistryTicket<unknown>>, app?: vue319.App) => RegistryContext<RegistryTicket<unknown>>;
922
+ interface PaginationRootProps extends AtomProps {
923
+ /** Namespace for dependency injection */
924
+ namespace?: string;
925
+ /** Total number of items */
926
+ size?: number;
927
+ /**
928
+ * Number of visible page buttons.
929
+ * If undefined, auto-calculates based on container width.
930
+ */
931
+ totalVisible?: number;
932
+ /** Number of items per page */
933
+ itemsPerPage?: number;
934
+ /** Ellipsis character */
935
+ ellipsis?: string | false;
936
+ }
937
+ interface PaginationRootSlotProps {
938
+ /** Current page (1-indexed) */
939
+ page: number;
940
+ /** Total number of items */
941
+ size: number;
942
+ /** Total number of pages */
943
+ pages: number;
944
+ /** Items per page */
945
+ itemsPerPage: number;
946
+ /** Visible page items for rendering */
947
+ items: PaginationTicket[];
948
+ /** Start index of items on current page (0-indexed) */
949
+ pageStart: number;
950
+ /** End index of items on current page (exclusive) */
951
+ pageStop: number;
952
+ /** Whether on first page */
953
+ isFirst: boolean;
954
+ /** Whether on last page */
955
+ isLast: boolean;
956
+ /** Go to first page */
957
+ first: () => void;
958
+ /** Go to last page */
959
+ last: () => void;
960
+ /** Go to next page */
961
+ next: () => void;
962
+ /** Go to previous page */
963
+ prev: () => void;
964
+ /** Go to specific page */
965
+ select: (page: number) => void;
966
+ /** Attributes to bind to the root element */
967
+ attrs: {
968
+ 'aria-label': string;
969
+ 'role': 'navigation' | undefined;
970
+ };
971
+ }
972
+ declare const __VLS_export$16: <T = unknown>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: __VLS_PrettifyLocal$6<Pick<NonNullable<Awaited<typeof __VLS_setup>>, "attrs" | "emit" | "slots">>, __VLS_expose?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
973
+ props: __VLS_PrettifyLocal$6<(PaginationRootProps & {
974
+ modelValue?: number;
975
+ }) & {
976
+ [x: `on${Capitalize<string>}`]: ((...args: any) => any) | undefined;
977
+ }> & vue319.PublicProps;
978
+ expose: (exposed: {}) => void;
979
+ attrs: any;
980
+ slots: {
981
+ default: (props: PaginationRootSlotProps) => any;
982
+ };
983
+ emit: ((evt: "update:model-value", ...args: T | T[]) => void) & ((evt: "update:modelValue", value: number) => void);
984
+ }>) => vue319.VNode & {
985
+ __ctx?: Awaited<typeof __VLS_setup>;
986
+ };
987
+ declare const _default$15: typeof __VLS_export$16;
988
+ type __VLS_PrettifyLocal$6<T> = { [K in keyof T as K]: T[K] } & {};
989
+ //#endregion
990
+ //#region src/components/Pagination/PaginationItem.vue.d.ts
991
+ interface PaginationItemProps extends AtomProps {
992
+ /** Namespace for dependency injection */
993
+ namespace?: string;
994
+ /** Page number this item represents */
995
+ value: number;
996
+ /** Override disabled state */
997
+ disabled?: boolean;
998
+ /** Unique identifier for registration */
999
+ id?: string;
1000
+ }
1001
+ interface PaginationItemSlotProps {
1002
+ /** Page number */
1003
+ page: number;
1004
+ /** Whether this page is currently selected */
1005
+ isSelected: boolean;
1006
+ /** Whether this item is disabled */
1007
+ isDisabled: boolean;
1008
+ /** Go to this page */
1009
+ select: () => void;
1010
+ /** Attributes to bind to the item element */
1011
+ attrs: {
1012
+ 'aria-label': string;
1013
+ 'aria-current': 'page' | undefined;
1014
+ 'aria-disabled': boolean;
1015
+ 'data-selected': true | undefined;
1016
+ 'data-disabled': true | undefined;
1017
+ 'disabled': boolean | undefined;
1018
+ 'tabindex': number;
1019
+ 'type': 'button' | undefined;
1020
+ 'onClick': () => void;
1021
+ };
1022
+ }
1023
+ declare const __VLS_export$15: __VLS_WithSlots$9<vue319.DefineComponent<PaginationItemProps, {}, {}, {}, {}, vue319.ComponentOptionsMixin, vue319.ComponentOptionsMixin, {}, string, vue319.PublicProps, Readonly<PaginationItemProps> & Readonly<{}>, {}, {}, {}, {}, string, vue319.ComponentProvideOptions, false, {}, any>, {
1024
+ default: (props: PaginationItemSlotProps) => any;
1025
+ }>;
1026
+ declare const _default$11: typeof __VLS_export$15;
1027
+ type __VLS_WithSlots$9<T, S> = T & {
1028
+ new (): {
1029
+ $slots: S;
1030
+ };
1031
+ };
1032
+ //#endregion
1033
+ //#region src/components/Pagination/PaginationFirst.vue.d.ts
1034
+ interface PaginationFirstProps extends AtomProps {
1035
+ /** Namespace for dependency injection */
1036
+ namespace?: string;
1037
+ /** Override disabled state */
1038
+ disabled?: boolean;
1039
+ /** Unique identifier for registration */
1040
+ id?: string;
1041
+ }
1042
+ interface PaginationFirstSlotProps {
1043
+ /** Whether button is disabled */
1044
+ isDisabled: boolean;
1045
+ /** Go to first page */
1046
+ first: () => void;
1047
+ /** Attributes to bind to the button element */
1048
+ attrs: {
1049
+ 'aria-label': string;
1050
+ 'aria-disabled': boolean;
1051
+ 'data-disabled': true | undefined;
1052
+ 'disabled': boolean | undefined;
1053
+ 'tabindex': number;
1054
+ 'type': 'button' | undefined;
1055
+ 'onClick': () => void;
1056
+ };
1057
+ }
1058
+ declare const __VLS_export$14: __VLS_WithSlots$8<vue319.DefineComponent<PaginationFirstProps, {}, {}, {}, {}, vue319.ComponentOptionsMixin, vue319.ComponentOptionsMixin, {}, string, vue319.PublicProps, Readonly<PaginationFirstProps> & Readonly<{}>, {}, {}, {}, {}, string, vue319.ComponentProvideOptions, false, {}, any>, {
1059
+ default: (props: PaginationFirstSlotProps) => any;
1060
+ }>;
1061
+ declare const _default$10: typeof __VLS_export$14;
1062
+ type __VLS_WithSlots$8<T, S> = T & {
1063
+ new (): {
1064
+ $slots: S;
1065
+ };
1066
+ };
1067
+ //#endregion
1068
+ //#region src/components/Pagination/PaginationPrev.vue.d.ts
1069
+ interface PaginationPrevProps extends AtomProps {
1070
+ /** Namespace for dependency injection */
1071
+ namespace?: string;
1072
+ /** Override disabled state */
1073
+ disabled?: boolean;
1074
+ /** Unique identifier for registration */
1075
+ id?: string;
1076
+ }
1077
+ interface PaginationPrevSlotProps {
1078
+ /** Whether button is disabled */
1079
+ isDisabled: boolean;
1080
+ /** Go to previous page */
1081
+ prev: () => void;
1082
+ /** Attributes to bind to the button element */
1083
+ attrs: {
1084
+ 'aria-label': string;
1085
+ 'aria-disabled': boolean;
1086
+ 'data-disabled': true | undefined;
1087
+ 'disabled': boolean | undefined;
1088
+ 'tabindex': number;
1089
+ 'type': 'button' | undefined;
1090
+ 'onClick': () => void;
1091
+ };
1092
+ }
1093
+ declare const __VLS_export$13: __VLS_WithSlots$7<vue319.DefineComponent<PaginationPrevProps, {}, {}, {}, {}, vue319.ComponentOptionsMixin, vue319.ComponentOptionsMixin, {}, string, vue319.PublicProps, Readonly<PaginationPrevProps> & Readonly<{}>, {}, {}, {}, {}, string, vue319.ComponentProvideOptions, false, {}, any>, {
1094
+ default: (props: PaginationPrevSlotProps) => any;
1095
+ }>;
1096
+ declare const _default$14: typeof __VLS_export$13;
1097
+ type __VLS_WithSlots$7<T, S> = T & {
1098
+ new (): {
1099
+ $slots: S;
1100
+ };
1101
+ };
1102
+ //#endregion
1103
+ //#region src/components/Pagination/PaginationEllipsis.vue.d.ts
1104
+ interface PaginationEllipsisProps extends AtomProps {
1105
+ /** Namespace for dependency injection */
1106
+ namespace?: string;
1107
+ /** Ellipsis character to display (overrides context) */
1108
+ ellipsis?: string;
1109
+ /** Unique identifier for registration */
1110
+ id?: string;
1111
+ }
1112
+ interface PaginationEllipsisSlotProps {
1113
+ /** Ellipsis character */
1114
+ ellipsis: string | false;
1115
+ /** Attributes to bind to the ellipsis element */
1116
+ attrs: {
1117
+ 'aria-hidden': 'true';
1118
+ };
1119
+ }
1120
+ declare const __VLS_export$12: __VLS_WithSlots$6<vue319.DefineComponent<PaginationEllipsisProps, {}, {}, {}, {}, vue319.ComponentOptionsMixin, vue319.ComponentOptionsMixin, {}, string, vue319.PublicProps, Readonly<PaginationEllipsisProps> & Readonly<{}>, {}, {}, {}, {}, string, vue319.ComponentProvideOptions, false, {}, any>, {
1121
+ default: (props: PaginationEllipsisSlotProps) => any;
1122
+ }>;
1123
+ declare const _default$9: typeof __VLS_export$12;
1124
+ type __VLS_WithSlots$6<T, S> = T & {
1125
+ new (): {
1126
+ $slots: S;
1127
+ };
1128
+ };
1129
+ //#endregion
1130
+ //#region src/components/Pagination/PaginationNext.vue.d.ts
1131
+ interface PaginationNextProps extends AtomProps {
1132
+ /** Namespace for dependency injection */
1133
+ namespace?: string;
1134
+ /** Override disabled state */
1135
+ disabled?: boolean;
1136
+ /** Unique identifier for registration */
1137
+ id?: string;
1138
+ }
1139
+ interface PaginationNextSlotProps {
1140
+ /** Whether button is disabled */
1141
+ isDisabled: boolean;
1142
+ /** Go to next page */
1143
+ next: () => void;
1144
+ /** Attributes to bind to the button element */
1145
+ attrs: {
1146
+ 'aria-label': string;
1147
+ 'aria-disabled': boolean;
1148
+ 'data-disabled': true | undefined;
1149
+ 'disabled': boolean | undefined;
1150
+ 'tabindex': number;
1151
+ 'type': 'button' | undefined;
1152
+ 'onClick': () => void;
1153
+ };
1154
+ }
1155
+ declare const __VLS_export$11: __VLS_WithSlots$5<vue319.DefineComponent<PaginationNextProps, {}, {}, {}, {}, vue319.ComponentOptionsMixin, vue319.ComponentOptionsMixin, {}, string, vue319.PublicProps, Readonly<PaginationNextProps> & Readonly<{}>, {}, {}, {}, {}, string, vue319.ComponentProvideOptions, false, {}, any>, {
1156
+ default: (props: PaginationNextSlotProps) => any;
1157
+ }>;
1158
+ declare const _default$13: typeof __VLS_export$11;
1159
+ type __VLS_WithSlots$5<T, S> = T & {
1160
+ new (): {
1161
+ $slots: S;
1162
+ };
1163
+ };
1164
+ //#endregion
1165
+ //#region src/components/Pagination/PaginationLast.vue.d.ts
1166
+ interface PaginationLastProps extends AtomProps {
1167
+ /** Namespace for dependency injection */
1168
+ namespace?: string;
1169
+ /** Override disabled state */
1170
+ disabled?: boolean;
1171
+ /** Unique identifier for registration */
1172
+ id?: string;
1173
+ }
1174
+ interface PaginationLastSlotProps {
1175
+ /** Whether button is disabled */
1176
+ isDisabled: boolean;
1177
+ /** Go to last page */
1178
+ last: () => void;
1179
+ /** Attributes to bind to the button element */
1180
+ attrs: {
1181
+ 'aria-label': string;
1182
+ 'aria-disabled': boolean;
1183
+ 'data-disabled': true | undefined;
1184
+ 'disabled': boolean | undefined;
1185
+ 'tabindex': number;
1186
+ 'type': 'button' | undefined;
1187
+ 'onClick': () => void;
1188
+ };
1189
+ }
1190
+ declare const __VLS_export$10: __VLS_WithSlots$4<vue319.DefineComponent<PaginationLastProps, {}, {}, {}, {}, vue319.ComponentOptionsMixin, vue319.ComponentOptionsMixin, {}, string, vue319.PublicProps, Readonly<PaginationLastProps> & Readonly<{}>, {}, {}, {}, {}, string, vue319.ComponentProvideOptions, false, {}, any>, {
1191
+ default: (props: PaginationLastSlotProps) => any;
1192
+ }>;
1193
+ declare const _default$12: typeof __VLS_export$10;
1194
+ type __VLS_WithSlots$4<T, S> = T & {
1195
+ new (): {
1196
+ $slots: S;
1197
+ };
1198
+ };
1199
+ //#endregion
1200
+ //#region src/components/Pagination/PaginationStatus.vue.d.ts
1201
+ interface PaginationStatusProps extends AtomProps {
1202
+ /** Namespace for dependency injection */
1203
+ namespace?: string;
1204
+ }
1205
+ interface PaginationStatusSlotProps {
1206
+ /** Current page (1-indexed) */
1207
+ page: number;
1208
+ /** Total number of pages */
1209
+ pages: number;
1210
+ /** Announcement text */
1211
+ text: string;
1212
+ /** Attributes to bind to the status element */
1213
+ attrs: {
1214
+ 'aria-atomic': true;
1215
+ 'aria-live': 'polite';
1216
+ 'role': 'status';
1217
+ };
1218
+ }
1219
+ declare const __VLS_export$9: __VLS_WithSlots$3<vue319.DefineComponent<PaginationStatusProps, {}, {}, {}, {}, vue319.ComponentOptionsMixin, vue319.ComponentOptionsMixin, {}, string, vue319.PublicProps, Readonly<PaginationStatusProps> & Readonly<{}>, {}, {}, {}, {}, string, vue319.ComponentProvideOptions, false, {}, any>, {
1220
+ default: (props: PaginationStatusSlotProps) => any;
1221
+ }>;
1222
+ declare const _default$16: typeof __VLS_export$9;
1223
+ type __VLS_WithSlots$3<T, S> = T & {
1224
+ new (): {
1225
+ $slots: S;
1226
+ };
1227
+ };
1228
+ //#endregion
1229
+ //#region src/components/Pagination/index.d.ts
1230
+ /**
1231
+ * Pagination component with sub-components for building pagination controls.
1232
+ *
1233
+ * @see https://0.vuetifyjs.com/components/pagination
1234
+ */
1235
+ declare const Pagination: {
1236
+ /**
1237
+ * Root component for pagination controls.
1238
+ *
1239
+ * @see https://0.vuetifyjs.com/components/pagination
1240
+ *
1241
+ * @example
1242
+ * ```vue
1243
+ * <script lang="ts" setup>
1244
+ * import { Pagination } from '@vuetify/v0'
1245
+ * </script>
1246
+ *
1247
+ * <template>
1248
+ * <Pagination.Root v-model="page" :size="100">
1249
+ * <Pagination.First />
1250
+ *
1251
+ * <Pagination.Prev />
1252
+ *
1253
+ * <template v-for="item in items" :key="item.value">
1254
+ * <Pagination.Item v-if="item.type === 'page'" :value="item.value" />
1255
+ *
1256
+ * <Pagination.Ellipsis v-else />
1257
+ * </template>
1258
+ *
1259
+ * <Pagination.Next />
1260
+ *
1261
+ * <Pagination.Last />
1262
+ * </Pagination.Root>
1263
+ * </template>
1264
+ * ```
1265
+ */
1266
+ Root: <T = unknown>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: {
1267
+ attrs: any;
1268
+ emit: ((evt: "update:model-value", ...args: T | T[]) => void) & ((evt: "update:modelValue", value: number) => void);
1269
+ slots: {
1270
+ default: (props: PaginationRootSlotProps) => any;
1271
+ };
1272
+ }, __VLS_expose?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
1273
+ props: {
1274
+ [x: `on${Capitalize<string>}`]: ((...args: any) => any) | undefined;
1275
+ namespace?: string | undefined;
1276
+ size?: number | undefined;
1277
+ totalVisible?: number | undefined;
1278
+ itemsPerPage?: number | undefined;
1279
+ ellipsis?: string | false | undefined;
1280
+ as?: (DOMElement | null) | undefined;
1281
+ renderless?: boolean | undefined;
1282
+ modelValue?: number | undefined;
1283
+ } & vue319.PublicProps;
1284
+ expose: (exposed: {}) => void;
1285
+ attrs: any;
1286
+ slots: {
1287
+ default: (props: PaginationRootSlotProps) => any;
1288
+ };
1289
+ emit: ((evt: "update:model-value", ...args: T | T[]) => void) & ((evt: "update:modelValue", value: number) => void);
1290
+ }>) => vue319.VNode & {
1291
+ __ctx?: Awaited<typeof __VLS_setup>;
1292
+ };
1293
+ /**
1294
+ * Individual page button that navigates to a specific page number.
1295
+ *
1296
+ * @see https://0.vuetifyjs.com/components/pagination#paginationitem
1297
+ *
1298
+ * @example
1299
+ * ```vue
1300
+ * <script lang="ts" setup>
1301
+ * import { Pagination } from '@vuetify/v0'
1302
+ * </script>
1303
+ *
1304
+ * <template>
1305
+ * <Pagination.Item :value="1">1</Pagination.Item>
1306
+ *
1307
+ * <!-- With slot props -->
1308
+ * <Pagination.Item :value="2" v-slot="{ isSelected }">
1309
+ * <span :class="{ 'font-bold': isSelected }">2</span>
1310
+ * </Pagination.Item>
1311
+ * </template>
1312
+ * ```
1313
+ */
1314
+ Item: {
1315
+ new (...args: any[]): vue319.CreateComponentPublicInstanceWithMixins<Readonly<PaginationItemProps> & Readonly<{}>, {}, {}, {}, {}, vue319.ComponentOptionsMixin, vue319.ComponentOptionsMixin, {}, vue319.PublicProps, {}, false, {}, {}, vue319.GlobalComponents, vue319.GlobalDirectives, string, {}, any, vue319.ComponentProvideOptions, {
1316
+ P: {};
1317
+ B: {};
1318
+ D: {};
1319
+ C: {};
1320
+ M: {};
1321
+ Defaults: {};
1322
+ }, Readonly<PaginationItemProps> & Readonly<{}>, {}, {}, {}, {}, {}>;
1323
+ __isFragment?: never;
1324
+ __isTeleport?: never;
1325
+ __isSuspense?: never;
1326
+ } & vue319.ComponentOptionsBase<Readonly<PaginationItemProps> & Readonly<{}>, {}, {}, {}, {}, vue319.ComponentOptionsMixin, vue319.ComponentOptionsMixin, {}, string, {}, {}, string, {}, vue319.GlobalComponents, vue319.GlobalDirectives, string, vue319.ComponentProvideOptions> & vue319.VNodeProps & vue319.AllowedComponentProps & vue319.ComponentCustomProps & (new () => {
1327
+ $slots: {
1328
+ default: (props: PaginationItemSlotProps) => any;
1329
+ };
1330
+ });
1331
+ /**
1332
+ * Navigation button that jumps to the first page. Automatically
1333
+ * disables when already on the first page.
1334
+ *
1335
+ * @see https://0.vuetifyjs.com/components/pagination#paginationfirst
1336
+ *
1337
+ * @example
1338
+ * ```vue
1339
+ * <script lang="ts" setup>
1340
+ * import { Pagination } from '@vuetify/v0'
1341
+ * </script>
1342
+ *
1343
+ * <template>
1344
+ * <Pagination.First>First</Pagination.First>
1345
+ *
1346
+ * <!-- With slot props -->
1347
+ * <Pagination.First v-slot="{ isDisabled }">
1348
+ * <span :class="{ 'opacity-50': isDisabled }">«</span>
1349
+ * </Pagination.First>
1350
+ *
1351
+ * <!-- With data attributes -->
1352
+ * <Pagination.First class="data-[disabled]:opacity-50">
1353
+ * First
1354
+ * </Pagination.First>
1355
+ * </template>
1356
+ * ```
1357
+ */
1358
+ First: {
1359
+ new (...args: any[]): vue319.CreateComponentPublicInstanceWithMixins<Readonly<PaginationFirstProps> & Readonly<{}>, {}, {}, {}, {}, vue319.ComponentOptionsMixin, vue319.ComponentOptionsMixin, {}, vue319.PublicProps, {}, false, {}, {}, vue319.GlobalComponents, vue319.GlobalDirectives, string, {}, any, vue319.ComponentProvideOptions, {
1360
+ P: {};
1361
+ B: {};
1362
+ D: {};
1363
+ C: {};
1364
+ M: {};
1365
+ Defaults: {};
1366
+ }, Readonly<PaginationFirstProps> & Readonly<{}>, {}, {}, {}, {}, {}>;
1367
+ __isFragment?: never;
1368
+ __isTeleport?: never;
1369
+ __isSuspense?: never;
1370
+ } & vue319.ComponentOptionsBase<Readonly<PaginationFirstProps> & Readonly<{}>, {}, {}, {}, {}, vue319.ComponentOptionsMixin, vue319.ComponentOptionsMixin, {}, string, {}, {}, string, {}, vue319.GlobalComponents, vue319.GlobalDirectives, string, vue319.ComponentProvideOptions> & vue319.VNodeProps & vue319.AllowedComponentProps & vue319.ComponentCustomProps & (new () => {
1371
+ $slots: {
1372
+ default: (props: PaginationFirstSlotProps) => any;
1373
+ };
1374
+ });
1375
+ /**
1376
+ * Navigation button that moves to the previous page. Automatically
1377
+ * disables when already on the first page.
1378
+ *
1379
+ * @see https://0.vuetifyjs.com/components/pagination#paginationprev
1380
+ *
1381
+ * @example
1382
+ * ```vue
1383
+ * <script lang="ts" setup>
1384
+ * import { Pagination } from '@vuetify/v0'
1385
+ * </script>
1386
+ *
1387
+ * <template>
1388
+ * <Pagination.Prev>Prev</Pagination.Prev>
1389
+ *
1390
+ * <!-- With slot props -->
1391
+ * <Pagination.Prev v-slot="{ isDisabled }">
1392
+ * <span :class="{ 'opacity-50': isDisabled }">‹</span>
1393
+ * </Pagination.Prev>
1394
+ *
1395
+ * <!-- With data attributes -->
1396
+ * <Pagination.Prev class="data-[disabled]:opacity-50">
1397
+ * Prev
1398
+ * </Pagination.Prev>
1399
+ * </template>
1400
+ * ```
1401
+ */
1402
+ Prev: {
1403
+ new (...args: any[]): vue319.CreateComponentPublicInstanceWithMixins<Readonly<PaginationPrevProps> & Readonly<{}>, {}, {}, {}, {}, vue319.ComponentOptionsMixin, vue319.ComponentOptionsMixin, {}, vue319.PublicProps, {}, false, {}, {}, vue319.GlobalComponents, vue319.GlobalDirectives, string, {}, any, vue319.ComponentProvideOptions, {
1404
+ P: {};
1405
+ B: {};
1406
+ D: {};
1407
+ C: {};
1408
+ M: {};
1409
+ Defaults: {};
1410
+ }, Readonly<PaginationPrevProps> & Readonly<{}>, {}, {}, {}, {}, {}>;
1411
+ __isFragment?: never;
1412
+ __isTeleport?: never;
1413
+ __isSuspense?: never;
1414
+ } & vue319.ComponentOptionsBase<Readonly<PaginationPrevProps> & Readonly<{}>, {}, {}, {}, {}, vue319.ComponentOptionsMixin, vue319.ComponentOptionsMixin, {}, string, {}, {}, string, {}, vue319.GlobalComponents, vue319.GlobalDirectives, string, vue319.ComponentProvideOptions> & vue319.VNodeProps & vue319.AllowedComponentProps & vue319.ComponentCustomProps & (new () => {
1415
+ $slots: {
1416
+ default: (props: PaginationPrevSlotProps) => any;
1417
+ };
1418
+ });
1419
+ /**
1420
+ * Visual indicator for omitted page numbers. Hidden from screen
1421
+ * readers via aria-hidden. Inherits ellipsis character from Root
1422
+ * or can be overridden via prop.
1423
+ *
1424
+ * @see https://0.vuetifyjs.com/components/pagination#paginationellipsis
1425
+ *
1426
+ * @example
1427
+ * ```vue
1428
+ * <script lang="ts" setup>
1429
+ * import { Pagination } from '@vuetify/v0'
1430
+ * </script>
1431
+ *
1432
+ * <template>
1433
+ * <!-- Uses default "..." from Root -->
1434
+ * <Pagination.Ellipsis />
1435
+ *
1436
+ * <!-- Override ellipsis character -->
1437
+ * <Pagination.Ellipsis ellipsis="…" />
1438
+ * </template>
1439
+ * ```
1440
+ */
1441
+ Ellipsis: {
1442
+ new (...args: any[]): vue319.CreateComponentPublicInstanceWithMixins<Readonly<PaginationEllipsisProps> & Readonly<{}>, {}, {}, {}, {}, vue319.ComponentOptionsMixin, vue319.ComponentOptionsMixin, {}, vue319.PublicProps, {}, false, {}, {}, vue319.GlobalComponents, vue319.GlobalDirectives, string, {}, any, vue319.ComponentProvideOptions, {
1443
+ P: {};
1444
+ B: {};
1445
+ D: {};
1446
+ C: {};
1447
+ M: {};
1448
+ Defaults: {};
1449
+ }, Readonly<PaginationEllipsisProps> & Readonly<{}>, {}, {}, {}, {}, {}>;
1450
+ __isFragment?: never;
1451
+ __isTeleport?: never;
1452
+ __isSuspense?: never;
1453
+ } & vue319.ComponentOptionsBase<Readonly<PaginationEllipsisProps> & Readonly<{}>, {}, {}, {}, {}, vue319.ComponentOptionsMixin, vue319.ComponentOptionsMixin, {}, string, {}, {}, string, {}, vue319.GlobalComponents, vue319.GlobalDirectives, string, vue319.ComponentProvideOptions> & vue319.VNodeProps & vue319.AllowedComponentProps & vue319.ComponentCustomProps & (new () => {
1454
+ $slots: {
1455
+ default: (props: PaginationEllipsisSlotProps) => any;
1456
+ };
1457
+ });
1458
+ /**
1459
+ * Navigation button that moves to the next page. Automatically
1460
+ * disables when already on the last page.
1461
+ *
1462
+ * @see https://0.vuetifyjs.com/components/pagination#paginationnext
1463
+ *
1464
+ * @example
1465
+ * ```vue
1466
+ * <script lang="ts" setup>
1467
+ * import { Pagination } from '@vuetify/v0'
1468
+ * </script>
1469
+ *
1470
+ * <template>
1471
+ * <Pagination.Next>Next</Pagination.Next>
1472
+ *
1473
+ * <!-- With slot props -->
1474
+ * <Pagination.Next v-slot="{ isDisabled }">
1475
+ * <span :class="{ 'opacity-50': isDisabled }">›</span>
1476
+ * </Pagination.Next>
1477
+ *
1478
+ * <!-- With data attributes -->
1479
+ * <Pagination.Next class="data-[disabled]:opacity-50">
1480
+ * Next
1481
+ * </Pagination.Next>
1482
+ * </template>
1483
+ * ```
1484
+ */
1485
+ Next: {
1486
+ new (...args: any[]): vue319.CreateComponentPublicInstanceWithMixins<Readonly<PaginationNextProps> & Readonly<{}>, {}, {}, {}, {}, vue319.ComponentOptionsMixin, vue319.ComponentOptionsMixin, {}, vue319.PublicProps, {}, false, {}, {}, vue319.GlobalComponents, vue319.GlobalDirectives, string, {}, any, vue319.ComponentProvideOptions, {
1487
+ P: {};
1488
+ B: {};
1489
+ D: {};
1490
+ C: {};
1491
+ M: {};
1492
+ Defaults: {};
1493
+ }, Readonly<PaginationNextProps> & Readonly<{}>, {}, {}, {}, {}, {}>;
1494
+ __isFragment?: never;
1495
+ __isTeleport?: never;
1496
+ __isSuspense?: never;
1497
+ } & vue319.ComponentOptionsBase<Readonly<PaginationNextProps> & Readonly<{}>, {}, {}, {}, {}, vue319.ComponentOptionsMixin, vue319.ComponentOptionsMixin, {}, string, {}, {}, string, {}, vue319.GlobalComponents, vue319.GlobalDirectives, string, vue319.ComponentProvideOptions> & vue319.VNodeProps & vue319.AllowedComponentProps & vue319.ComponentCustomProps & (new () => {
1498
+ $slots: {
1499
+ default: (props: PaginationNextSlotProps) => any;
1500
+ };
1501
+ });
1502
+ /**
1503
+ * Navigation button that jumps to the last page. Automatically
1504
+ * disables when already on the last page.
1505
+ *
1506
+ * @see https://0.vuetifyjs.com/components/pagination#paginationlast
1507
+ *
1508
+ * @example
1509
+ * ```vue
1510
+ * <script lang="ts" setup>
1511
+ * import { Pagination } from '@vuetify/v0'
1512
+ * </script>
1513
+ *
1514
+ * <template>
1515
+ * <Pagination.Last>Last</Pagination.Last>
1516
+ *
1517
+ * <!-- With slot props -->
1518
+ * <Pagination.Last v-slot="{ isDisabled }">
1519
+ * <span :class="{ 'opacity-50': isDisabled }">»</span>
1520
+ * </Pagination.Last>
1521
+ *
1522
+ * <!-- With data attributes -->
1523
+ * <Pagination.Last class="data-[disabled]:opacity-50">
1524
+ * Last
1525
+ * </Pagination.Last>
1526
+ * </template>
1527
+ * ```
1528
+ */
1529
+ Last: {
1530
+ new (...args: any[]): vue319.CreateComponentPublicInstanceWithMixins<Readonly<PaginationLastProps> & Readonly<{}>, {}, {}, {}, {}, vue319.ComponentOptionsMixin, vue319.ComponentOptionsMixin, {}, vue319.PublicProps, {}, false, {}, {}, vue319.GlobalComponents, vue319.GlobalDirectives, string, {}, any, vue319.ComponentProvideOptions, {
1531
+ P: {};
1532
+ B: {};
1533
+ D: {};
1534
+ C: {};
1535
+ M: {};
1536
+ Defaults: {};
1537
+ }, Readonly<PaginationLastProps> & Readonly<{}>, {}, {}, {}, {}, {}>;
1538
+ __isFragment?: never;
1539
+ __isTeleport?: never;
1540
+ __isSuspense?: never;
1541
+ } & vue319.ComponentOptionsBase<Readonly<PaginationLastProps> & Readonly<{}>, {}, {}, {}, {}, vue319.ComponentOptionsMixin, vue319.ComponentOptionsMixin, {}, string, {}, {}, string, {}, vue319.GlobalComponents, vue319.GlobalDirectives, string, vue319.ComponentProvideOptions> & vue319.VNodeProps & vue319.AllowedComponentProps & vue319.ComponentCustomProps & (new () => {
1542
+ $slots: {
1543
+ default: (props: PaginationLastSlotProps) => any;
1544
+ };
1545
+ });
1546
+ /**
1547
+ * Visually-hidden live region that announces page changes to screen
1548
+ * readers. Should be styled with sr-only/visually-hidden CSS.
1549
+ *
1550
+ * @see https://0.vuetifyjs.com/components/pagination#paginationstatus
1551
+ *
1552
+ * @example
1553
+ * ```vue
1554
+ * <script lang="ts" setup>
1555
+ * import { Pagination } from '@vuetify/v0'
1556
+ * </script>
1557
+ *
1558
+ * <template>
1559
+ * <Pagination.Root v-model="page" :size="100">
1560
+ * <Pagination.Status class="sr-only" />
1561
+ * <!-- other pagination items -->
1562
+ * </Pagination.Root>
1563
+ * </template>
1564
+ * ```
1565
+ */
1566
+ Status: {
1567
+ new (...args: any[]): vue319.CreateComponentPublicInstanceWithMixins<Readonly<PaginationStatusProps> & Readonly<{}>, {}, {}, {}, {}, vue319.ComponentOptionsMixin, vue319.ComponentOptionsMixin, {}, vue319.PublicProps, {}, false, {}, {}, vue319.GlobalComponents, vue319.GlobalDirectives, string, {}, any, vue319.ComponentProvideOptions, {
1568
+ P: {};
1569
+ B: {};
1570
+ D: {};
1571
+ C: {};
1572
+ M: {};
1573
+ Defaults: {};
1574
+ }, Readonly<PaginationStatusProps> & Readonly<{}>, {}, {}, {}, {}, {}>;
1575
+ __isFragment?: never;
1576
+ __isTeleport?: never;
1577
+ __isSuspense?: never;
1578
+ } & vue319.ComponentOptionsBase<Readonly<PaginationStatusProps> & Readonly<{}>, {}, {}, {}, {}, vue319.ComponentOptionsMixin, vue319.ComponentOptionsMixin, {}, string, {}, {}, string, {}, vue319.GlobalComponents, vue319.GlobalDirectives, string, vue319.ComponentProvideOptions> & vue319.VNodeProps & vue319.AllowedComponentProps & vue319.ComponentCustomProps & (new () => {
1579
+ $slots: {
1580
+ default: (props: PaginationStatusSlotProps) => any;
1581
+ };
1582
+ });
1583
+ };
1584
+ //#endregion
1585
+ //#region src/components/Popover/PopoverRoot.vue.d.ts
1586
+ interface PopoverContext {
1587
+ isSelected: ShallowRef<boolean>;
1588
+ id: string;
1589
+ toggle: () => void;
1590
+ }
1591
+ interface PopoverRootProps extends AtomProps {
1592
+ /** Unique identifier for the popover (auto-generated if not provided) */
1593
+ id?: string;
1594
+ }
1595
+ interface PopoverRootSlotProps {
1596
+ /** Unique identifier */
1597
+ id: string;
1598
+ /** Whether the popover is currently open */
1599
+ isSelected: boolean;
1600
+ /** Toggle the popover open/closed state */
1601
+ toggle: () => void;
1602
+ }
1603
+ declare const usePopoverContext: () => PopoverContext, providePopoverContext: (context: PopoverContext, app?: vue319.App) => PopoverContext;
1604
+ declare const __VLS_export$8: __VLS_WithSlots$2<vue319.DefineComponent<PopoverRootProps & {
1605
+ modelValue?: boolean;
1606
+ }, {}, {}, {}, {}, vue319.ComponentOptionsMixin, vue319.ComponentOptionsMixin, {
1607
+ "update:modelValue": (value: boolean) => any;
1608
+ }, string, vue319.PublicProps, Readonly<PopoverRootProps & {
1609
+ modelValue?: boolean;
1610
+ }> & Readonly<{
1611
+ "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
1612
+ }>, {}, {}, {}, {}, string, vue319.ComponentProvideOptions, false, {}, any>, {
1613
+ default: (props: PopoverRootSlotProps) => any;
1614
+ }>;
1615
+ declare const _default$8: typeof __VLS_export$8;
1616
+ type __VLS_WithSlots$2<T, S> = T & {
1617
+ new (): {
1618
+ $slots: S;
1619
+ };
1620
+ };
1621
+ //#endregion
1622
+ //#region src/components/Popover/PopoverAnchor.vue.d.ts
1623
+ interface PopoverAnchorProps extends AtomProps {
1624
+ /** Target popover ID (defaults to parent PopoverRoot id) */
1625
+ target?: string;
1626
+ }
1627
+ interface PopoverAnchorSlotProps {
1628
+ /** Whether the popover is currently open */
1629
+ isOpen: boolean;
1630
+ /** Attributes to bind to the anchor element */
1631
+ attrs: {
1632
+ 'popovertarget': string;
1633
+ 'type': 'button' | undefined;
1634
+ 'data-popover-open': '' | undefined;
1635
+ };
1636
+ }
1637
+ declare const __VLS_export$7: __VLS_WithSlots$1<vue319.DefineComponent<PopoverAnchorProps, {}, {}, {}, {}, vue319.ComponentOptionsMixin, vue319.ComponentOptionsMixin, {}, string, vue319.PublicProps, Readonly<PopoverAnchorProps> & Readonly<{}>, {}, {}, {}, {}, string, vue319.ComponentProvideOptions, false, {}, any>, {
1638
+ default: (props: PopoverAnchorSlotProps) => any;
1639
+ }>;
1640
+ declare const _default$6: typeof __VLS_export$7;
1641
+ type __VLS_WithSlots$1<T, S> = T & {
1642
+ new (): {
1643
+ $slots: S;
1644
+ };
1645
+ };
1646
+ //#endregion
1647
+ //#region src/components/Popover/PopoverContent.vue.d.ts
1648
+ interface PopoverContentProps extends AtomProps {
1649
+ /** Unique identifier (defaults to parent PopoverRoot id) */
1650
+ id?: string;
1651
+ /** CSS position-area value for anchor positioning */
1652
+ positionArea?: string;
1653
+ /** CSS position-try value for fallback positioning */
1654
+ positionTry?: string;
1655
+ }
1656
+ interface PopoverContentEmits {
1657
+ beforetoggle: [e: ToggleEvent];
1658
+ }
1659
+ interface PopoverContentSlotProps {
1660
+ /** Whether the popover is currently open */
1661
+ isOpen: boolean;
1662
+ /** Attributes to bind to the content element */
1663
+ attrs: {
1664
+ id: string;
1665
+ popover: '';
1666
+ };
1667
+ }
1668
+ declare const __VLS_export$6: __VLS_WithSlots<vue319.DefineComponent<PopoverContentProps, {}, {}, {}, {}, vue319.ComponentOptionsMixin, vue319.ComponentOptionsMixin, {
1669
+ beforetoggle: (e: ToggleEvent) => any;
1670
+ }, string, vue319.PublicProps, Readonly<PopoverContentProps> & Readonly<{
1671
+ onBeforetoggle?: ((e: ToggleEvent) => any) | undefined;
1672
+ }>, {}, {}, {}, {}, string, vue319.ComponentProvideOptions, false, {}, any>, {
1673
+ default: (props: PopoverContentSlotProps) => any;
1674
+ }>;
1675
+ declare const _default$7: typeof __VLS_export$6;
1676
+ type __VLS_WithSlots<T, S> = T & {
1677
+ new (): {
1678
+ $slots: S;
1679
+ };
1680
+ };
1681
+ //#endregion
1682
+ //#region src/components/Popover/index.d.ts
1683
+ /**
1684
+ * Popover component with sub-components for building popovers.
1685
+ *
1686
+ * @see https://0.vuetifyjs.com/components/popover
1687
+ */
1688
+ declare const Popover: {
1689
+ /**
1690
+ * Root component for popovers.
1691
+ *
1692
+ * @see https://0.vuetifyjs.com/components/popover
1693
+ *
1694
+ * @example
1695
+ * ```vue
1696
+ * <script lang="ts" setup>
1697
+ * import { Popover } from '@vuetify/v0'
1698
+ * </script>
1699
+ *
1700
+ * <template>
1701
+ * <Popover.Root>
1702
+ * <Popover.Anchor>
1703
+ * Click to toggle
1704
+ * </Popover.Anchor>
1705
+ *
1706
+ * <Popover.Content>
1707
+ * Popover content goes here.
1708
+ * </Popover.Content>
1709
+ * </Popover.Root>
1710
+ * </template>
1711
+ * ```
1712
+ */
1713
+ Root: {
1714
+ new (...args: any[]): vue319.CreateComponentPublicInstanceWithMixins<Readonly<PopoverRootProps & {
1715
+ modelValue?: boolean;
1716
+ }> & Readonly<{
1717
+ "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
1718
+ }>, {}, {}, {}, {}, vue319.ComponentOptionsMixin, vue319.ComponentOptionsMixin, {
1719
+ "update:modelValue": (value: boolean) => any;
1720
+ }, vue319.PublicProps, {}, false, {}, {}, vue319.GlobalComponents, vue319.GlobalDirectives, string, {}, any, vue319.ComponentProvideOptions, {
1721
+ P: {};
1722
+ B: {};
1723
+ D: {};
1724
+ C: {};
1725
+ M: {};
1726
+ Defaults: {};
1727
+ }, Readonly<PopoverRootProps & {
1728
+ modelValue?: boolean;
1729
+ }> & Readonly<{
1730
+ "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
1731
+ }>, {}, {}, {}, {}, {}>;
1732
+ __isFragment?: never;
1733
+ __isTeleport?: never;
1734
+ __isSuspense?: never;
1735
+ } & vue319.ComponentOptionsBase<Readonly<PopoverRootProps & {
1736
+ modelValue?: boolean;
1737
+ }> & Readonly<{
1738
+ "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
1739
+ }>, {}, {}, {}, {}, vue319.ComponentOptionsMixin, vue319.ComponentOptionsMixin, {
1740
+ "update:modelValue": (value: boolean) => any;
1741
+ }, string, {}, {}, string, {}, vue319.GlobalComponents, vue319.GlobalDirectives, string, vue319.ComponentProvideOptions> & vue319.VNodeProps & vue319.AllowedComponentProps & vue319.ComponentCustomProps & (new () => {
1742
+ $slots: {
1743
+ default: (props: PopoverRootSlotProps) => any;
1744
+ };
1745
+ });
1746
+ /**
1747
+ * Component for the anchor/trigger of a popover.
1748
+ *
1749
+ * @see https://0.vuetifyjs.com/components/popover#popoveranchor
1750
+ *
1751
+ * @example
1752
+ * ```vue
1753
+ * <script lang="ts" setup>
1754
+ * import { Popover } from '@vuetify/v0'
1755
+ * </script>
1756
+ *
1757
+ * <template>
1758
+ * <Popover.Anchor>
1759
+ * Click to toggle
1760
+ * </Popover.Anchor>
1761
+ * </template>
1762
+ * ```
1763
+ */
1764
+ Anchor: {
1765
+ new (...args: any[]): vue319.CreateComponentPublicInstanceWithMixins<Readonly<PopoverAnchorProps> & Readonly<{}>, {}, {}, {}, {}, vue319.ComponentOptionsMixin, vue319.ComponentOptionsMixin, {}, vue319.PublicProps, {}, false, {}, {}, vue319.GlobalComponents, vue319.GlobalDirectives, string, {}, any, vue319.ComponentProvideOptions, {
1766
+ P: {};
1767
+ B: {};
1768
+ D: {};
1769
+ C: {};
1770
+ M: {};
1771
+ Defaults: {};
1772
+ }, Readonly<PopoverAnchorProps> & Readonly<{}>, {}, {}, {}, {}, {}>;
1773
+ __isFragment?: never;
1774
+ __isTeleport?: never;
1775
+ __isSuspense?: never;
1776
+ } & vue319.ComponentOptionsBase<Readonly<PopoverAnchorProps> & Readonly<{}>, {}, {}, {}, {}, vue319.ComponentOptionsMixin, vue319.ComponentOptionsMixin, {}, string, {}, {}, string, {}, vue319.GlobalComponents, vue319.GlobalDirectives, string, vue319.ComponentProvideOptions> & vue319.VNodeProps & vue319.AllowedComponentProps & vue319.ComponentCustomProps & (new () => {
1777
+ $slots: {
1778
+ default: (props: PopoverAnchorSlotProps) => any;
1779
+ };
1780
+ });
1781
+ /**
1782
+ * Component for the content section of a popover.
1783
+ *
1784
+ * @see https://0.vuetifyjs.com/components/popover#popovercontent
1785
+ *
1786
+ * @example
1787
+ * ```vue
1788
+ * <script lang="ts" setup>
1789
+ * import { Popover } from '@vuetify/v0'
1790
+ * </script>
1791
+ *
1792
+ * <template>
1793
+ * <Popover.Content>
1794
+ * Popover content goes here.
1795
+ * </Popover.Content>
1796
+ * </template>
1797
+ * ```
1798
+ */
1799
+ Content: {
1800
+ new (...args: any[]): vue319.CreateComponentPublicInstanceWithMixins<Readonly<PopoverContentProps> & Readonly<{
1801
+ onBeforetoggle?: ((e: ToggleEvent) => any) | undefined;
1802
+ }>, {}, {}, {}, {}, vue319.ComponentOptionsMixin, vue319.ComponentOptionsMixin, {
1803
+ beforetoggle: (e: ToggleEvent) => any;
1804
+ }, vue319.PublicProps, {}, false, {}, {}, vue319.GlobalComponents, vue319.GlobalDirectives, string, {}, any, vue319.ComponentProvideOptions, {
1805
+ P: {};
1806
+ B: {};
1807
+ D: {};
1808
+ C: {};
1809
+ M: {};
1810
+ Defaults: {};
1811
+ }, Readonly<PopoverContentProps> & Readonly<{
1812
+ onBeforetoggle?: ((e: ToggleEvent) => any) | undefined;
1813
+ }>, {}, {}, {}, {}, {}>;
1814
+ __isFragment?: never;
1815
+ __isTeleport?: never;
1816
+ __isSuspense?: never;
1817
+ } & vue319.ComponentOptionsBase<Readonly<PopoverContentProps> & Readonly<{
1818
+ onBeforetoggle?: ((e: ToggleEvent) => any) | undefined;
1819
+ }>, {}, {}, {}, {}, vue319.ComponentOptionsMixin, vue319.ComponentOptionsMixin, {
1820
+ beforetoggle: (e: ToggleEvent) => any;
1821
+ }, string, {}, {}, string, {}, vue319.GlobalComponents, vue319.GlobalDirectives, string, vue319.ComponentProvideOptions> & vue319.VNodeProps & vue319.AllowedComponentProps & vue319.ComponentCustomProps & (new () => {
1822
+ $slots: {
1823
+ default: (props: PopoverContentSlotProps) => any;
1824
+ };
1825
+ });
1826
+ };
1827
+ //#endregion
1828
+ //#region src/components/Selection/SelectionRoot.vue.d.ts
1829
+ interface SelectionRootProps {
1830
+ /** Namespace for dependency injection (must match SelectionItem namespace) */
1831
+ namespace?: string;
1832
+ /** Disables the entire selection instance */
1833
+ disabled?: boolean;
1834
+ /** Auto-select non-disabled items on registration */
1835
+ enroll?: boolean;
1836
+ /**
1837
+ * Controls mandatory selection behavior:
1838
+ * - false (default): No mandatory selection enforcement
1839
+ * - true: Prevents deselecting the last selected item
1840
+ * - `force`: Automatically selects the first non-disabled item on registration
1841
+ */
1842
+ mandatory?: boolean | 'force';
1843
+ /** Enable multi-selection mode (array v-model) */
1844
+ multiple?: boolean;
1845
+ }
1846
+ interface SelectionRootSlotProps {
1847
+ /** Whether the selection instance is disabled */
1848
+ isDisabled: boolean;
1849
+ /** Enable multi-selection mode (array v-model) */
1850
+ multiple: boolean;
1851
+ /** Select an item by ID */
1852
+ select: (id: ID) => void;
1853
+ /** Unselect an item by ID */
1854
+ unselect: (id: ID) => void;
1855
+ /** Toggle an item's selection state by ID */
1856
+ toggle: (id: ID) => void;
1857
+ /** Attributes to bind to the root element */
1858
+ attrs: {
1859
+ 'aria-multiselectable': boolean;
1860
+ };
1861
+ }
1862
+ declare const useSelectionRoot: (key: string, defaultValue?: SelectionContext<SelectionTicket<unknown>> | undefined) => SelectionContext<SelectionTicket<unknown>>, provideSelectionRoot: (key: string, context: SelectionContext<SelectionTicket<unknown>>, app?: vue319.App) => SelectionContext<SelectionTicket<unknown>>;
1863
+ declare const __VLS_export$5: <T = unknown>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: __VLS_PrettifyLocal$5<Pick<NonNullable<Awaited<typeof __VLS_setup>>, "attrs" | "emit" | "slots">>, __VLS_expose?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
1864
+ props: __VLS_PrettifyLocal$5<(SelectionRootProps & {
1865
+ modelValue?: T | T[];
1866
+ }) & {
1867
+ "onUpdate:modelValue"?: ((value: T | T[] | undefined) => any) | undefined;
1868
+ "onUpdate:model-value"?: ((value: T | T[]) => any) | undefined;
1869
+ }> & vue319.PublicProps;
1870
+ expose: (exposed: {}) => void;
1871
+ attrs: any;
1872
+ slots: {
1873
+ default: (props: SelectionRootSlotProps) => any;
1874
+ };
1875
+ emit: ((evt: "update:model-value", value: T | T[]) => void) & ((evt: "update:modelValue", value: T | T[] | undefined) => void);
1876
+ }>) => vue319.VNode & {
1877
+ __ctx?: Awaited<typeof __VLS_setup>;
1878
+ };
1879
+ declare const _default$5: typeof __VLS_export$5;
1880
+ type __VLS_PrettifyLocal$5<T> = { [K in keyof T as K]: T[K] } & {};
1881
+ //#endregion
1882
+ //#region src/components/Selection/SelectionItem.vue.d.ts
1883
+ interface SelectionItemProps<V = unknown> {
1884
+ /** Unique identifier (auto-generated if not provided) */
1885
+ id?: string;
1886
+ /** Optional display label (passed through to slot, not used in registration) */
1887
+ label?: string;
1888
+ /** Value associated with this item */
1889
+ value?: V;
1890
+ /** Disables this specific item */
1891
+ disabled?: MaybeRef<boolean>;
1892
+ /** Namespace for dependency injection */
1893
+ namespace?: string;
1894
+ }
1895
+ interface SelectionItemSlotProps<V = unknown> {
1896
+ /** Unique identifier */
1897
+ id: string;
1898
+ /** Optional display label */
1899
+ label?: string;
1900
+ /** Value associated with this item */
1901
+ value: V | undefined;
1902
+ /** Whether this item is currently selected */
1903
+ isSelected: boolean;
1904
+ /** Whether this item is disabled */
1905
+ isDisabled: boolean;
1906
+ /** Select this item */
1907
+ select: () => void;
1908
+ /** Unselect this item */
1909
+ unselect: () => void;
1910
+ /** Toggle this item's selection state */
1911
+ toggle: () => void;
1912
+ /** Attributes to bind to the item element */
1913
+ attrs: {
1914
+ 'aria-selected': boolean;
1915
+ 'aria-disabled': boolean;
1916
+ 'data-selected': true | undefined;
1917
+ 'data-disabled': true | undefined;
1918
+ };
1919
+ }
1920
+ declare const __VLS_export$4: <V = unknown>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: __VLS_PrettifyLocal$4<Pick<NonNullable<Awaited<typeof __VLS_setup>>, "attrs" | "emit" | "slots">>, __VLS_expose?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
1921
+ props: __VLS_PrettifyLocal$4<SelectionItemProps<V>> & vue319.PublicProps;
1922
+ expose: (exposed: {}) => void;
1923
+ attrs: any;
1924
+ slots: {
1925
+ default: (props: SelectionItemSlotProps<V>) => unknown;
1926
+ };
1927
+ emit: {};
1928
+ }>) => vue319.VNode & {
1929
+ __ctx?: Awaited<typeof __VLS_setup>;
1930
+ };
1931
+ declare const _default$4: typeof __VLS_export$4;
1932
+ type __VLS_PrettifyLocal$4<T> = { [K in keyof T as K]: T[K] } & {};
1933
+ //#endregion
1934
+ //#region src/components/Selection/index.d.ts
1935
+ /**
1936
+ * Selection component with sub-components for managing item selection state.
1937
+ *
1938
+ * @see https://0.vuetifyjs.com/components/selection
1939
+ */
1940
+ declare const Selection: {
1941
+ /**
1942
+ * Root component for selection contexts.
1943
+ *
1944
+ * @see https://0.vuetifyjs.com/components/selection#selectionroot
1945
+ *
1946
+ * @example
1947
+ * ```vue
1948
+ * <script lang="ts" setup>
1949
+ * import { Selection } from '@vuetify/v0'
1950
+ * </script>
1951
+ *
1952
+ * <template>
1953
+ * <Selection.Root v-model="selected" multiple>
1954
+ * <Selection.Item value="a" v-slot="{ attrs }">
1955
+ * <button v-bind="attrs">Option A</button>
1956
+ * </Selection.Item>
1957
+ *
1958
+ * <Selection.Item value="b" v-slot="{ attrs }">
1959
+ * <button v-bind="attrs">Option B</button>
1960
+ * </Selection.Item>
1961
+ * </Selection.Root>
1962
+ * </template>
1963
+ * ```
1964
+ */
1965
+ Root: <T = unknown>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: {
1966
+ attrs: any;
1967
+ emit: ((evt: "update:model-value", value: T | T[]) => void) & ((evt: "update:modelValue", value: T | T[] | undefined) => void);
1968
+ slots: {
1969
+ default: (props: SelectionRootSlotProps) => any;
1970
+ };
1971
+ }, __VLS_expose?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
1972
+ props: {
1973
+ namespace?: string | undefined;
1974
+ disabled?: boolean | undefined;
1975
+ enroll?: boolean | undefined;
1976
+ mandatory?: boolean | "force" | undefined;
1977
+ multiple?: boolean | undefined;
1978
+ modelValue?: (T | T[]) | undefined;
1979
+ "onUpdate:modelValue"?: ((value: T | T[] | undefined) => any) | undefined;
1980
+ "onUpdate:model-value"?: ((value: T | T[]) => any) | undefined;
1981
+ } & vue319.PublicProps;
1982
+ expose: (exposed: {}) => void;
1983
+ attrs: any;
1984
+ slots: {
1985
+ default: (props: SelectionRootSlotProps) => any;
1986
+ };
1987
+ emit: ((evt: "update:model-value", value: T | T[]) => void) & ((evt: "update:modelValue", value: T | T[] | undefined) => void);
1988
+ }>) => vue319.VNode & {
1989
+ __ctx?: Awaited<typeof __VLS_setup>;
1990
+ };
1991
+ /**
1992
+ * Item component for selection contexts.
1993
+ *
1994
+ * @see https://0.vuetifyjs.com/components/selection#selectionitem
1995
+ *
1996
+ * @example
1997
+ * ```vue
1998
+ * <script lang="ts" setup>
1999
+ * import { Selection } from '@vuetify/v0'
2000
+ * </script>
2001
+ *
2002
+ * <template>
2003
+ * <Selection.Item value="a" v-slot="{ attrs }">
2004
+ * <button v-bind="attrs">Option A</button>
2005
+ * </Selection.Item>
2006
+ * </template>
2007
+ * ```
2008
+ */
2009
+ Item: <V = unknown>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: {
2010
+ attrs: any;
2011
+ emit: {};
2012
+ slots: {
2013
+ default: (props: SelectionItemSlotProps<V>) => unknown;
2014
+ };
2015
+ }, __VLS_expose?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
2016
+ props: {
2017
+ id?: string | undefined;
2018
+ label?: string | undefined;
2019
+ value?: V | undefined;
2020
+ disabled?: vue319.MaybeRef<boolean> | undefined;
2021
+ namespace?: string | undefined;
2022
+ } & vue319.PublicProps;
2023
+ expose: (exposed: {}) => void;
2024
+ attrs: any;
2025
+ slots: {
2026
+ default: (props: SelectionItemSlotProps<V>) => unknown;
2027
+ };
2028
+ emit: {};
2029
+ }>) => vue319.VNode & {
2030
+ __ctx?: Awaited<typeof __VLS_setup>;
2031
+ };
2032
+ };
2033
+ //#endregion
2034
+ //#region src/components/Single/SingleRoot.vue.d.ts
2035
+ interface SingleRootProps {
2036
+ /** Namespace for dependency injection (must match SingleItem namespace) */
2037
+ namespace?: string;
2038
+ /** Disables the entire single instance */
2039
+ disabled?: boolean;
2040
+ /** Auto-select non-disabled items on registration */
2041
+ enroll?: boolean;
2042
+ /**
2043
+ * Controls mandatory single behavior:
2044
+ * - false (default): No mandatory single enforcement
2045
+ * - true: Prevents deselecting the last selected item
2046
+ * - `force`: Automatically selects the first non-disabled item on registration
2047
+ */
2048
+ mandatory?: boolean | 'force';
2049
+ }
2050
+ interface SingleRootSlotProps {
2051
+ /** Whether the single instance is disabled */
2052
+ isDisabled: boolean;
2053
+ /** Select an item by ID */
2054
+ select: (id: ID) => void;
2055
+ /** Unselect an item by ID */
2056
+ unselect: (id: ID) => void;
2057
+ /** Toggle an item's single state by ID */
2058
+ toggle: (id: ID) => void;
2059
+ /** Attributes to bind to the root element */
2060
+ attrs: {
2061
+ 'aria-multiselectable': false;
2062
+ };
2063
+ }
2064
+ declare const useSingleRoot: (key: string, defaultValue?: SingleContext<SingleTicket<unknown>> | undefined) => SingleContext<SingleTicket<unknown>>, provideSingleRoot: (key: string, context: SingleContext<SingleTicket<unknown>>, app?: vue319.App) => SingleContext<SingleTicket<unknown>>;
2065
+ declare const __VLS_export$3: <T = unknown>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: __VLS_PrettifyLocal$3<Pick<NonNullable<Awaited<typeof __VLS_setup>>, "attrs" | "emit" | "slots">>, __VLS_expose?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
2066
+ props: __VLS_PrettifyLocal$3<(SingleRootProps & {
2067
+ modelValue?: T | T[];
2068
+ }) & {
2069
+ "onUpdate:modelValue"?: ((value: T | T[] | undefined) => any) | undefined;
2070
+ }> & vue319.PublicProps;
2071
+ expose: (exposed: {}) => void;
2072
+ attrs: any;
2073
+ slots: {
2074
+ default: (props: SingleRootSlotProps) => any;
2075
+ };
2076
+ emit: (evt: "update:modelValue", value: T | T[] | undefined) => void;
2077
+ }>) => vue319.VNode & {
2078
+ __ctx?: Awaited<typeof __VLS_setup>;
2079
+ };
2080
+ declare const _default$3: typeof __VLS_export$3;
2081
+ type __VLS_PrettifyLocal$3<T> = { [K in keyof T as K]: T[K] } & {};
2082
+ //#endregion
2083
+ //#region src/components/Single/SingleItem.vue.d.ts
2084
+ interface SingleItemProps<V = unknown> {
2085
+ /** Unique identifier (auto-generated if not provided) */
2086
+ id?: string;
2087
+ /** Optional display label (passed through to slot, not used in registration) */
2088
+ label?: string;
2089
+ /** Value associated with this item */
2090
+ value?: V;
2091
+ /** Disables this specific item */
2092
+ disabled?: MaybeRef<boolean>;
2093
+ /** Namespace for dependency injection */
2094
+ namespace?: string;
2095
+ }
2096
+ interface SingleItemSlotProps<V = unknown> {
2097
+ /** Unique identifier */
2098
+ id: string;
2099
+ /** Optional display label */
2100
+ label?: string;
2101
+ /** Value associated with this item */
2102
+ value: V | undefined;
2103
+ /** Whether this item is currently selected */
2104
+ isSelected: boolean;
2105
+ /** Whether this item is disabled */
2106
+ isDisabled: boolean;
2107
+ /** Select this item */
2108
+ select: () => void;
2109
+ /** Unselect this item */
2110
+ unselect: () => void;
2111
+ /** Toggle this item's single state */
2112
+ toggle: () => void;
2113
+ /** Attributes to bind to the item element */
2114
+ attrs: {
2115
+ 'aria-selected': boolean;
2116
+ 'aria-disabled': boolean;
2117
+ 'data-selected': true | undefined;
2118
+ 'data-disabled': true | undefined;
2119
+ };
2120
+ }
2121
+ declare const __VLS_export$2: <V = unknown>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: __VLS_PrettifyLocal$2<Pick<NonNullable<Awaited<typeof __VLS_setup>>, "attrs" | "emit" | "slots">>, __VLS_expose?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
2122
+ props: __VLS_PrettifyLocal$2<SingleItemProps<V>> & vue319.PublicProps;
2123
+ expose: (exposed: {}) => void;
2124
+ attrs: any;
2125
+ slots: {
2126
+ default: (props: SingleItemSlotProps<V>) => unknown;
2127
+ };
2128
+ emit: {};
2129
+ }>) => vue319.VNode & {
2130
+ __ctx?: Awaited<typeof __VLS_setup>;
2131
+ };
2132
+ declare const _default$2: typeof __VLS_export$2;
2133
+ type __VLS_PrettifyLocal$2<T> = { [K in keyof T as K]: T[K] } & {};
2134
+ //#endregion
2135
+ //#region src/components/Single/index.d.ts
2136
+ /**
2137
+ * Single component with sub-components for building single-selection interfaces.
2138
+ *
2139
+ * @see https://0.vuetifyjs.com/components/single
2140
+ */
2141
+ declare const Single: {
2142
+ /**
2143
+ * Root component for single-selection. Only one item can be selected at a time.
2144
+ *
2145
+ * @see https://0.vuetifyjs.com/components/single#singleroot
2146
+ *
2147
+ * @example
2148
+ * ```vue
2149
+ * <script lang="ts" setup>
2150
+ * import { Single } from '@vuetify/v0'
2151
+ * </script>
2152
+ *
2153
+ * <template>
2154
+ * <Single.Root v-model="selected">
2155
+ * <Single.Item value="option1">
2156
+ * Option 1
2157
+ * </Single.Item>
2158
+ *
2159
+ * <Single.Item value="option2">
2160
+ * Option 2
2161
+ * </Single.Item>
2162
+ * </Single.Root>
2163
+ * </template>
2164
+ * ```
2165
+ */
2166
+ Root: <T = unknown>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: {
2167
+ attrs: any;
2168
+ emit: (evt: "update:modelValue", value: T | T[] | undefined) => void;
2169
+ slots: {
2170
+ default: (props: SingleRootSlotProps) => any;
2171
+ };
2172
+ }, __VLS_expose?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
2173
+ props: {
2174
+ namespace?: string | undefined;
2175
+ disabled?: boolean | undefined;
2176
+ enroll?: boolean | undefined;
2177
+ mandatory?: boolean | "force" | undefined;
2178
+ modelValue?: (T | T[]) | undefined;
2179
+ "onUpdate:modelValue"?: ((value: T | T[] | undefined) => any) | undefined;
2180
+ } & vue319.PublicProps;
2181
+ expose: (exposed: {}) => void;
2182
+ attrs: any;
2183
+ slots: {
2184
+ default: (props: SingleRootSlotProps) => any;
2185
+ };
2186
+ emit: (evt: "update:modelValue", value: T | T[] | undefined) => void;
2187
+ }>) => vue319.VNode & {
2188
+ __ctx?: Awaited<typeof __VLS_setup>;
2189
+ };
2190
+ /**
2191
+ * Component representing a selectable item within Single.Root.
2192
+ *
2193
+ * @see https://0.vuetifyjs.com/components/single#singleitem
2194
+ *
2195
+ * @example
2196
+ * ```vue
2197
+ * <script lang="ts" setup>
2198
+ * import { Single } from '@vuetify/v0'
2199
+ * </script>
2200
+ *
2201
+ * <template>
2202
+ * <Single.Item value="option1" #default="{ isSelected }">
2203
+ * <div :class="{ selected: isSelected }">
2204
+ * Option 1
2205
+ * </div>
2206
+ * </Single.Item>
2207
+ * </template>
2208
+ * ```
2209
+ */
2210
+ Item: <V = unknown>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: {
2211
+ attrs: any;
2212
+ emit: {};
2213
+ slots: {
2214
+ default: (props: SingleItemSlotProps<V>) => unknown;
2215
+ };
2216
+ }, __VLS_expose?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
2217
+ props: {
2218
+ id?: string | undefined;
2219
+ label?: string | undefined;
2220
+ value?: V | undefined;
2221
+ disabled?: vue319.MaybeRef<boolean> | undefined;
2222
+ namespace?: string | undefined;
2223
+ } & vue319.PublicProps;
2224
+ expose: (exposed: {}) => void;
2225
+ attrs: any;
2226
+ slots: {
2227
+ default: (props: SingleItemSlotProps<V>) => unknown;
2228
+ };
2229
+ emit: {};
2230
+ }>) => vue319.VNode & {
2231
+ __ctx?: Awaited<typeof __VLS_setup>;
2232
+ };
2233
+ };
2234
+ //#endregion
2235
+ //#region src/components/Step/StepRoot.vue.d.ts
2236
+ interface StepRootProps {
2237
+ /** Namespace for dependency injection (must match StepItem namespace) */
2238
+ namespace?: string;
2239
+ /** Disables the entire step instance */
2240
+ disabled?: boolean;
2241
+ /** Auto-select non-disabled items on registration */
2242
+ enroll?: boolean;
2243
+ /**
2244
+ * Controls mandatory step behavior:
2245
+ * - false (default): No mandatory step enforcement
2246
+ * - true: Prevents deselecting the last selected item
2247
+ * - `force`: Automatically selects the first non-disabled item on registration
2248
+ */
2249
+ mandatory?: boolean | 'force';
2250
+ }
2251
+ interface StepRootSlotProps {
2252
+ /** Whether the step instance is disabled */
2253
+ isDisabled: boolean;
2254
+ /** Select the first item */
2255
+ first: () => void;
2256
+ /** Select the last item */
2257
+ last: () => void;
2258
+ /** Select the next item */
2259
+ next: () => void;
2260
+ /** Select the previous item */
2261
+ prev: () => void;
2262
+ /** Step forward or backward by a specific count */
2263
+ step: (count: number) => void;
2264
+ /** Select an item by ID */
2265
+ select: (id: ID) => void;
2266
+ /** Unselect an item by ID */
2267
+ unselect: (id: ID) => void;
2268
+ /** Toggle an item's step state by ID */
2269
+ toggle: (id: ID) => void;
2270
+ /** Attributes to bind to the root element */
2271
+ attrs: {
2272
+ 'aria-multiselectable': false;
2273
+ };
2274
+ }
2275
+ declare const useStepRoot: (key: string, defaultValue?: StepContext<StepTicket<unknown>> | undefined) => StepContext<StepTicket<unknown>>, provideStepRoot: (key: string, context: StepContext<StepTicket<unknown>>, app?: vue319.App) => StepContext<StepTicket<unknown>>;
2276
+ declare const __VLS_export$1: <T = unknown>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: __VLS_PrettifyLocal$1<Pick<NonNullable<Awaited<typeof __VLS_setup>>, "attrs" | "emit" | "slots">>, __VLS_expose?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
2277
+ props: __VLS_PrettifyLocal$1<(StepRootProps & {
2278
+ modelValue?: T | T[];
2279
+ }) & {
2280
+ "onUpdate:modelValue"?: ((value: T | T[] | undefined) => any) | undefined;
2281
+ }> & vue319.PublicProps;
2282
+ expose: (exposed: {}) => void;
2283
+ attrs: any;
2284
+ slots: {
2285
+ default: (props: StepRootSlotProps) => any;
2286
+ };
2287
+ emit: (evt: "update:modelValue", value: T | T[] | undefined) => void;
2288
+ }>) => vue319.VNode & {
2289
+ __ctx?: Awaited<typeof __VLS_setup>;
2290
+ };
2291
+ declare const _default$1: typeof __VLS_export$1;
2292
+ type __VLS_PrettifyLocal$1<T> = { [K in keyof T as K]: T[K] } & {};
2293
+ //#endregion
2294
+ //#region src/components/Step/StepItem.vue.d.ts
2295
+ interface StepItemProps<V = unknown> {
2296
+ /** Unique identifier (auto-generated if not provided) */
2297
+ id?: string;
2298
+ /** Optional display label (passed through to slot, not used in registration) */
2299
+ label?: string;
2300
+ /** Value associated with this item */
2301
+ value?: V;
2302
+ /** Disables this specific item */
2303
+ disabled?: MaybeRef<boolean>;
2304
+ /** Namespace for dependency injection */
2305
+ namespace?: string;
2306
+ }
2307
+ interface StepItemSlotProps<V = unknown> {
2308
+ /** Unique identifier */
2309
+ id: string;
2310
+ /** Optional display label */
2311
+ label?: string;
2312
+ /** Value associated with this item */
2313
+ value: V | undefined;
2314
+ /** Whether this item is currently selected */
2315
+ isSelected: boolean;
2316
+ /** Whether this item is disabled */
2317
+ isDisabled: boolean;
2318
+ /** Select this item */
2319
+ select: () => void;
2320
+ /** Unselect this item */
2321
+ unselect: () => void;
2322
+ /** Toggle this item's step state */
2323
+ toggle: () => void;
2324
+ /** Attributes to bind to the item element */
2325
+ attrs: {
2326
+ 'aria-selected': boolean;
2327
+ 'aria-disabled': boolean;
2328
+ 'data-selected': true | undefined;
2329
+ 'data-disabled': true | undefined;
2330
+ };
2331
+ }
2332
+ declare const __VLS_export: <V = unknown>(__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<{
2333
+ props: __VLS_PrettifyLocal<StepItemProps<V>> & vue319.PublicProps;
2334
+ expose: (exposed: {}) => void;
2335
+ attrs: any;
2336
+ slots: {
2337
+ default: (props: StepItemSlotProps<V>) => unknown;
2338
+ };
2339
+ emit: {};
2340
+ }>) => vue319.VNode & {
2341
+ __ctx?: Awaited<typeof __VLS_setup>;
2342
+ };
2343
+ declare const _default: typeof __VLS_export;
2344
+ type __VLS_PrettifyLocal<T> = { [K in keyof T as K]: T[K] } & {};
2345
+ //#endregion
2346
+ //#region src/components/Step/index.d.ts
2347
+ /**
2348
+ * Step component with sub-components for building stepper navigation.
2349
+ *
2350
+ * @see https://0.vuetifyjs.com/components/step
2351
+ */
2352
+ declare const Step: {
2353
+ /**
2354
+ * Root component for step navigation.
2355
+ *
2356
+ * @see https://0.vuetifyjs.com/components/step
2357
+ *
2358
+ * @example
2359
+ * ```vue
2360
+ * <script lang="ts" setup>
2361
+ * import { Step } from '@vuetify/v0'
2362
+ * </script>
2363
+ *
2364
+ * <template>
2365
+ * <Step.Root>
2366
+ * <Step.Item value="account">Account</Step.Item>
2367
+ *
2368
+ * <Step.Item value="profile">Profile</Step.Item>
2369
+ *
2370
+ * <Step.Item value="review">Review</Step.Item>
2371
+ * </Step.Root>
2372
+ * </template>
2373
+ * ```
2374
+ */
2375
+ Root: <T = unknown>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: {
2376
+ attrs: any;
2377
+ emit: (evt: "update:modelValue", value: T | T[] | undefined) => void;
2378
+ slots: {
2379
+ default: (props: StepRootSlotProps) => any;
2380
+ };
2381
+ }, __VLS_expose?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
2382
+ props: {
2383
+ namespace?: string | undefined;
2384
+ disabled?: boolean | undefined;
2385
+ enroll?: boolean | undefined;
2386
+ mandatory?: boolean | "force" | undefined;
2387
+ modelValue?: (T | T[]) | undefined;
2388
+ "onUpdate:modelValue"?: ((value: T | T[] | undefined) => any) | undefined;
2389
+ } & vue319.PublicProps;
2390
+ expose: (exposed: {}) => void;
2391
+ attrs: any;
2392
+ slots: {
2393
+ default: (props: StepRootSlotProps) => any;
2394
+ };
2395
+ emit: (evt: "update:modelValue", value: T | T[] | undefined) => void;
2396
+ }>) => vue319.VNode & {
2397
+ __ctx?: Awaited<typeof __VLS_setup>;
2398
+ };
2399
+ /**
2400
+ * Component representing a single step item.
2401
+ *
2402
+ * @see https://0.vuetifyjs.com/components/step#stepitem
2403
+ *
2404
+ * @example
2405
+ * ```vue
2406
+ * <script lang="ts" setup>
2407
+ * import { Step } from '@vuetify/v0'
2408
+ * </script>
2409
+ *
2410
+ * <template>
2411
+ * <Step.Item value="account">
2412
+ * Account Setup
2413
+ * </Step.Item>
2414
+ * </template>
2415
+ * ```
2416
+ */
2417
+ Item: <V = unknown>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: {
2418
+ attrs: any;
2419
+ emit: {};
2420
+ slots: {
2421
+ default: (props: StepItemSlotProps<V>) => unknown;
2422
+ };
2423
+ }, __VLS_expose?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
2424
+ props: {
2425
+ id?: string | undefined;
2426
+ label?: string | undefined;
2427
+ value?: V | undefined;
2428
+ disabled?: vue319.MaybeRef<boolean> | undefined;
2429
+ namespace?: string | undefined;
2430
+ } & vue319.PublicProps;
2431
+ expose: (exposed: {}) => void;
2432
+ attrs: any;
2433
+ slots: {
2434
+ default: (props: StepItemSlotProps<V>) => unknown;
2435
+ };
2436
+ emit: {};
2437
+ }>) => vue319.VNode & {
2438
+ __ctx?: Awaited<typeof __VLS_setup>;
2439
+ };
2440
+ };
2441
+ //#endregion
2442
+ export { PaginationEllipsisSlotProps as $, _default$24 as $t, PopoverContentProps as A, ExpansionPanelContentSlotProps as At, providePopoverContext as B, ExpansionPanelItemSlotProps as Bt, SelectionRootProps as C, GroupRootProps as Ct, useSelectionRoot as D, useGroupRoot as Dt, provideSelectionRoot as E, provideGroupRoot as Et, _default$6 as F, ExpansionPanelHeaderProps as Ft, _default$16 as G, ExpansionPanelRootProps as Gt, Pagination as H, provideExpansionPanelItem as Ht, PopoverContext as I, ExpansionPanelHeaderSlotProps as It, _default$12 as J, provideExpansionPanelSelection as Jt, PaginationLastProps as K, ExpansionPanelRootSlotProps as Kt, PopoverRootProps as L, _default$21 as Lt, _default$7 as M, ExpansionPanelActivatorProps as Mt, PopoverAnchorProps as N, ExpansionPanelActivatorSlotProps as Nt, Popover as O, ExpansionPanel as Ot, PopoverAnchorSlotProps as P, _default$19 as Pt, PaginationEllipsisProps as Q, AvatarFallbackSlotProps as Qt, PopoverRootSlotProps as R, ExpansionPanelItemContext as Rt, _default$4 as S, _default$17 as St, _default$5 as T, _default$18 as Tt, PaginationStatusProps as U, useExpansionPanelItem as Ut, usePopoverContext as V, _default$22 as Vt, PaginationStatusSlotProps as W, ExpansionPanelOptionsContext as Wt, PaginationNextSlotProps as X, Avatar as Xt, PaginationNextProps as Y, useExpansionPanelRoot as Yt, _default$13 as Z, AvatarFallbackProps as Zt, provideSingleRoot as _, usePaginationItems as _t, StepRootProps as a, AvatarRootProps as an, PaginationFirstSlotProps as at, SelectionItemProps as b, GroupItemProps as bt, provideStepRoot as c, provideAvatarContext as cn, PaginationItemSlotProps as ct, SingleItemProps as d, AtomProps as dn, PaginationRootSlotProps as dt, AvatarImageEmits as en, _default$9 as et, SingleItemSlotProps as f, AtomSlots as fn, _default$15 as ft, _default$3 as g, usePaginationControls as gt, SingleRootSlotProps as h, providePaginationRoot as ht, _default as i, AvatarContext as in, PaginationFirstProps as it, PopoverContentSlotProps as j, _default$20 as jt, PopoverContentEmits as k, ExpansionPanelContentProps as kt, useStepRoot as l, useAvatarRoot as ln, _default$11 as lt, SingleRootProps as m, providePaginationItems as mt, StepItemProps as n, AvatarImageSlotProps as nn, PaginationPrevSlotProps as nt, StepRootSlotProps as o, AvatarTicket as on, _default$10 as ot, _default$2 as p, _default$27 as pn, providePaginationControls as pt, PaginationLastSlotProps as q, _default$23 as qt, StepItemSlotProps as r, _default$25 as rn, _default$14 as rt, _default$1 as s, _default$26 as sn, PaginationItemProps as st, Step as t, AvatarImageProps as tn, PaginationPrevProps as tt, Single as u, AtomExpose as un, PaginationRootProps as ut, useSingleRoot as v, usePaginationRoot as vt, SelectionRootSlotProps as w, GroupRootSlotProps as wt, SelectionItemSlotProps as x, GroupItemSlotProps as xt, Selection as y, Group as yt, _default$8 as z, ExpansionPanelItemProps as zt };