@vuetify/v0 0.0.22 → 0.0.23

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.
@@ -1,6 +1,7 @@
1
1
  import { a as MaybeArray, i as ID } from "./index-DYSwiS9k.mjs";
2
2
  import { B as RegistryTicket, I as RegistryContext, L as RegistryContextOptions, M as SelectionTicket, S as GroupContext, T as GroupTicket, U as ContextTrinity, c as SingleContext, d as SingleTicket, k as SelectionContext, u as SingleOptions, z as RegistryOptions } from "./index-Bby5ljat.mjs";
3
3
  import { App, ComputedRef, InjectionKey, MaybeRef, MaybeRefOrGetter, Ref, ShallowRef, UnwrapNestedRefs, WatchSource } from "vue";
4
+ import { Temporal } from "@js-temporal/polyfill";
4
5
 
5
6
  //#region src/composables/createContext/index.d.ts
6
7
 
@@ -453,6 +454,340 @@ interface UseClickOutsideReturn {
453
454
  */
454
455
  declare function useClickOutside(target: MaybeArray<ClickOutsideTarget>, handler: (event: PointerEvent | FocusEvent) => void, options?: UseClickOutsideOptions): UseClickOutsideReturn;
455
456
  //#endregion
457
+ //#region src/composables/useDate/adapters/adapter.d.ts
458
+ interface DateAdapter<T = Temporal.PlainDateTime> {
459
+ /** Current locale for formatting */
460
+ locale?: string;
461
+ /** Create a date from various input types */
462
+ date: (value?: unknown) => T | null;
463
+ /** Convert to JavaScript Date object */
464
+ toJsDate: (value: T) => Date;
465
+ /** Parse ISO 8601 string */
466
+ parseISO: (date: string) => T;
467
+ /** Convert to ISO 8601 string */
468
+ toISO: (date: T) => string;
469
+ /** Parse date string with custom format */
470
+ parse: (value: string, format: string) => T | null;
471
+ /** Check if value is a valid date (type predicate for narrowing) */
472
+ isValid: (date: unknown) => date is T;
473
+ /** Check if value is null (type predicate for narrowing) */
474
+ isNull: (value: T | null) => value is null;
475
+ /** Get current locale code */
476
+ getCurrentLocaleCode: () => string;
477
+ /** Check if current locale uses 12-hour cycle */
478
+ is12HourCycleInCurrentLocale: () => boolean;
479
+ /** Format date using preset format key */
480
+ format: (date: T, formatString: string) => string;
481
+ /** Format date using custom format string */
482
+ formatByString: (date: T, formatString: string) => string;
483
+ /** Get helper text for format string (e.g., "mm/dd/yyyy") */
484
+ getFormatHelperText: (format: string) => string;
485
+ /** Format number according to locale */
486
+ formatNumber: (numberToFormat: string) => string;
487
+ /** Get meridiem text (AM/PM) for locale */
488
+ getMeridiemText: (ampm: 'am' | 'pm') => string;
489
+ startOfDay: (date: T) => T;
490
+ endOfDay: (date: T) => T;
491
+ /** @param firstDayOfWeek - 0=Sunday, 1=Monday, etc. */
492
+ startOfWeek: (date: T, firstDayOfWeek?: number) => T;
493
+ /** @param firstDayOfWeek - 0=Sunday, 1=Monday, etc. */
494
+ endOfWeek: (date: T, firstDayOfWeek?: number) => T;
495
+ startOfMonth: (date: T) => T;
496
+ endOfMonth: (date: T) => T;
497
+ startOfYear: (date: T) => T;
498
+ endOfYear: (date: T) => T;
499
+ addSeconds: (date: T, amount: number) => T;
500
+ addMinutes: (date: T, amount: number) => T;
501
+ addHours: (date: T, amount: number) => T;
502
+ addDays: (date: T, amount: number) => T;
503
+ addWeeks: (date: T, amount: number) => T;
504
+ addMonths: (date: T, amount: number) => T;
505
+ addYears: (date: T, amount: number) => T;
506
+ isAfter: (date: T, comparing: T) => boolean;
507
+ isAfterDay: (date: T, comparing: T) => boolean;
508
+ isAfterMonth: (date: T, comparing: T) => boolean;
509
+ isAfterYear: (date: T, comparing: T) => boolean;
510
+ isBefore: (date: T, comparing: T) => boolean;
511
+ isBeforeDay: (date: T, comparing: T) => boolean;
512
+ isBeforeMonth: (date: T, comparing: T) => boolean;
513
+ isBeforeYear: (date: T, comparing: T) => boolean;
514
+ isEqual: (date: T, comparing: T) => boolean;
515
+ isSameDay: (date: T, comparing: T) => boolean;
516
+ isSameMonth: (date: T, comparing: T) => boolean;
517
+ isSameYear: (date: T, comparing: T) => boolean;
518
+ isSameHour: (date: T, comparing: T) => boolean;
519
+ isWithinRange: (date: T, range: [T, T]) => boolean;
520
+ getYear: (date: T) => number;
521
+ getMonth: (date: T) => number;
522
+ getDate: (date: T) => number;
523
+ getHours: (date: T) => number;
524
+ getMinutes: (date: T) => number;
525
+ getSeconds: (date: T) => number;
526
+ /** @param comparing - Can be T or ISO string */
527
+ getDiff: (date: T, comparing: T | string, unit?: string) => number;
528
+ /** @param minimalDays - Minimum days in first week for it to count as week 1 */
529
+ getWeek: (date: T, firstDayOfWeek?: number, minimalDays?: number) => number;
530
+ /** Get number of days in the month */
531
+ getDaysInMonth: (date: T) => number;
532
+ setYear: (date: T, year: number) => T;
533
+ setMonth: (date: T, month: number) => T;
534
+ setDate: (date: T, day: number) => T;
535
+ setHours: (date: T, hours: number) => T;
536
+ setMinutes: (date: T, minutes: number) => T;
537
+ setSeconds: (date: T, seconds: number) => T;
538
+ getWeekdays: (firstDayOfWeek?: number, weekdayFormat?: 'long' | 'short' | 'narrow') => string[];
539
+ getWeekArray: (date: T, firstDayOfWeek?: number) => T[][];
540
+ /** Get array of months in a year (12 dates, one for each month) */
541
+ getMonthArray: (date: T) => T[];
542
+ /** Get array of years between start and end dates */
543
+ getYearRange: (start: T, end: T) => T[];
544
+ getNextMonth: (date: T) => T;
545
+ getPreviousMonth: (date: T) => T;
546
+ /** Merge date from one value with time from another */
547
+ mergeDateAndTime: (date: T, time: T) => T;
548
+ }
549
+ //#endregion
550
+ //#region src/composables/useDate/adapters/v0.d.ts
551
+ type PlainDateTime = Temporal.PlainDateTime;
552
+ declare class Vuetify0DateAdapter implements DateAdapter<PlainDateTime> {
553
+ private _locale;
554
+ /** Cache for Intl.DateTimeFormat instances, keyed by locale + options */
555
+ private formatCache;
556
+ /** Cache for Intl.NumberFormat instances, keyed by locale */
557
+ private numberFormatCache;
558
+ constructor(locale?: string);
559
+ /** Current locale. Setting a new locale clears format caches. */
560
+ get locale(): string;
561
+ set locale(value: string);
562
+ /**
563
+ * Create a date from various input types.
564
+ *
565
+ * @param value - Date value (PlainDateTime, PlainDate, ZonedDateTime, Date, ISO string, timestamp)
566
+ * @returns PlainDateTime or null if invalid
567
+ *
568
+ * @remarks
569
+ * **SSR Safety:** When called without arguments:
570
+ * - Browser: Returns current time via `Temporal.Now.plainDateTimeISO()`
571
+ * - Server: Returns epoch (1970-01-01T00:00:00) for deterministic rendering
572
+ *
573
+ * For SSR apps needing current time, pass `Date.now()` explicitly and handle
574
+ * hydration via `<ClientOnly>` (Nuxt) or `v-if` + `onMounted` pattern.
575
+ */
576
+ date(value?: unknown): PlainDateTime | null;
577
+ toJsDate(value: PlainDateTime): Date;
578
+ parseISO(dateString: string): PlainDateTime;
579
+ toISO(date: PlainDateTime): string;
580
+ /**
581
+ * Parses a date string into a PlainDateTime.
582
+ *
583
+ * **Known limitation**: The `format` parameter is currently ignored.
584
+ * Temporal API doesn't provide built-in format parsing, and implementing
585
+ * full format string parsing (e.g., 'MM/DD/YYYY') would require a
586
+ * substantial custom parser. This method delegates to `date()` which
587
+ * handles ISO 8601 strings and common formats.
588
+ *
589
+ * For custom format parsing, consider using a library like date-fns or
590
+ * luxon with a custom adapter.
591
+ *
592
+ * @param value - The date string to parse
593
+ * @param _format - Format hint (currently ignored)
594
+ * @returns Parsed PlainDateTime or null if invalid
595
+ */
596
+ parse(value: string, _format: string): PlainDateTime | null;
597
+ isValid(date: unknown): date is PlainDateTime;
598
+ isNull(value: PlainDateTime | null): value is null;
599
+ getCurrentLocaleCode(): string;
600
+ is12HourCycleInCurrentLocale(): boolean;
601
+ format(date: PlainDateTime, formatString: string): string;
602
+ formatByString(date: PlainDateTime, formatString: string): string;
603
+ getFormatHelperText(format: string): string;
604
+ formatNumber(numberToFormat: string): string;
605
+ getMeridiemText(ampm: 'am' | 'pm'): string;
606
+ startOfDay(date: PlainDateTime): PlainDateTime;
607
+ endOfDay(date: PlainDateTime): PlainDateTime;
608
+ startOfWeek(date: PlainDateTime, firstDayOfWeek?: number): PlainDateTime;
609
+ endOfWeek(date: PlainDateTime, firstDayOfWeek?: number): PlainDateTime;
610
+ startOfMonth(date: PlainDateTime): PlainDateTime;
611
+ endOfMonth(date: PlainDateTime): PlainDateTime;
612
+ startOfYear(date: PlainDateTime): PlainDateTime;
613
+ endOfYear(date: PlainDateTime): PlainDateTime;
614
+ addSeconds(date: PlainDateTime, amount: number): PlainDateTime;
615
+ addMinutes(date: PlainDateTime, amount: number): PlainDateTime;
616
+ addHours(date: PlainDateTime, amount: number): PlainDateTime;
617
+ addDays(date: PlainDateTime, amount: number): PlainDateTime;
618
+ addWeeks(date: PlainDateTime, amount: number): PlainDateTime;
619
+ addMonths(date: PlainDateTime, amount: number): PlainDateTime;
620
+ addYears(date: PlainDateTime, amount: number): PlainDateTime;
621
+ isAfter(date: PlainDateTime, comparing: PlainDateTime): boolean;
622
+ isAfterDay(date: PlainDateTime, comparing: PlainDateTime): boolean;
623
+ isAfterMonth(date: PlainDateTime, comparing: PlainDateTime): boolean;
624
+ isAfterYear(date: PlainDateTime, comparing: PlainDateTime): boolean;
625
+ isBefore(date: PlainDateTime, comparing: PlainDateTime): boolean;
626
+ isBeforeDay(date: PlainDateTime, comparing: PlainDateTime): boolean;
627
+ isBeforeMonth(date: PlainDateTime, comparing: PlainDateTime): boolean;
628
+ isBeforeYear(date: PlainDateTime, comparing: PlainDateTime): boolean;
629
+ isEqual(date: PlainDateTime, comparing: PlainDateTime): boolean;
630
+ isSameDay(date: PlainDateTime, comparing: PlainDateTime): boolean;
631
+ isSameMonth(date: PlainDateTime, comparing: PlainDateTime): boolean;
632
+ isSameYear(date: PlainDateTime, comparing: PlainDateTime): boolean;
633
+ isSameHour(date: PlainDateTime, comparing: PlainDateTime): boolean;
634
+ isWithinRange(date: PlainDateTime, [start, end]: [PlainDateTime, PlainDateTime]): boolean;
635
+ getYear(date: PlainDateTime): number;
636
+ getMonth(date: PlainDateTime): number;
637
+ getDate(date: PlainDateTime): number;
638
+ getHours(date: PlainDateTime): number;
639
+ getMinutes(date: PlainDateTime): number;
640
+ getSeconds(date: PlainDateTime): number;
641
+ getDiff(date: PlainDateTime, comparing: PlainDateTime | string, unit?: string): number;
642
+ getWeek(date: PlainDateTime, firstDayOfWeek?: number, minimalDays?: number): number;
643
+ getDaysInMonth(date: PlainDateTime): number;
644
+ setYear(date: PlainDateTime, year: number): PlainDateTime;
645
+ setMonth(date: PlainDateTime, month: number): PlainDateTime;
646
+ setDate(date: PlainDateTime, day: number): PlainDateTime;
647
+ setHours(date: PlainDateTime, hours: number): PlainDateTime;
648
+ setMinutes(date: PlainDateTime, minutes: number): PlainDateTime;
649
+ setSeconds(date: PlainDateTime, seconds: number): PlainDateTime;
650
+ getWeekdays(firstDayOfWeek?: number, format?: 'long' | 'short' | 'narrow'): string[];
651
+ getWeekArray(date: PlainDateTime, firstDayOfWeek?: number): PlainDateTime[][];
652
+ getMonthArray(date: PlainDateTime): PlainDateTime[];
653
+ getYearRange(start: PlainDateTime, end: PlainDateTime): PlainDateTime[];
654
+ getNextMonth(date: PlainDateTime): PlainDateTime;
655
+ getPreviousMonth(date: PlainDateTime): PlainDateTime;
656
+ mergeDateAndTime(date: PlainDateTime, time: PlainDateTime): PlainDateTime;
657
+ /**
658
+ * Gets a cached Intl.DateTimeFormat instance or creates one if not cached.
659
+ * Cache is limited to MAX_CACHE_SIZE entries to prevent memory leaks.
660
+ */
661
+ private getFormatter;
662
+ /**
663
+ * Gets a cached Intl.NumberFormat instance or creates one if not cached.
664
+ * Cache is limited to MAX_CACHE_SIZE entries to prevent memory leaks.
665
+ */
666
+ private getNumberFormatter;
667
+ }
668
+ //#endregion
669
+ //#region src/composables/useDate/index.d.ts
670
+ /** The default date type when using Vuetify0DateAdapter */
671
+ type DefaultDateType = Temporal.PlainDateTime;
672
+ interface DateContext<Z = DefaultDateType> {
673
+ /** The date adapter instance */
674
+ adapter: DateAdapter<Z>;
675
+ /** Current locale (reactive, synced with useLocale if available) */
676
+ locale: ComputedRef<string | undefined>;
677
+ }
678
+ /** Options for date composables */
679
+ interface DateOptions<Z = DefaultDateType> {
680
+ /** Custom date adapter instance (defaults to Vuetify0DateAdapter) */
681
+ adapter?: DateAdapter<Z>;
682
+ /** Locale for formatting (defaults to useLocale's selected locale or 'en-US') */
683
+ locale?: string;
684
+ /** Short locale codes mapped to full Intl locale strings (e.g., { en: 'en-US' }) */
685
+ locales?: Record<string, string>;
686
+ }
687
+ /** Context options with namespace */
688
+ interface DateContextOptions<Z = DefaultDateType> extends DateOptions<Z> {
689
+ namespace?: string;
690
+ }
691
+ /** Plugin options */
692
+ interface DatePluginOptions<Z = DefaultDateType> extends DateContextOptions<Z> {}
693
+ /**
694
+ * Creates a new date context.
695
+ *
696
+ * @param options Optional adapter and locale configuration.
697
+ * @template E The date context type.
698
+ * @returns A date context.
699
+ *
700
+ * @see https://0.vuetifyjs.com/composables/plugins/use-date
701
+ *
702
+ * @example
703
+ * ```ts
704
+ * const { adapter } = createDate()
705
+ * const today = adapter.date() // Temporal.PlainDateTime
706
+ *
707
+ * // With locale options
708
+ * const { adapter: deAdapter } = createDate({ locale: 'de-DE' })
709
+ *
710
+ * // With custom adapter
711
+ * const { adapter } = createDate({ adapter: new DateFnsAdapter() })
712
+ * ```
713
+ */
714
+ declare function createDate<Z = DefaultDateType, E extends DateContext<Z> = DateContext<Z>>(options?: DateOptions<Z>): E;
715
+ /**
716
+ * Creates a fallback date context for when useDate is called outside of a Vue component.
717
+ *
718
+ * @returns A fallback date context with Vuetify0DateAdapter.
719
+ * @internal
720
+ */
721
+ declare function createDateFallback(): DateContext<DefaultDateType>;
722
+ /**
723
+ * Creates a new date context trinity.
724
+ *
725
+ * @param options Optional adapter, locale, and namespace configuration.
726
+ * @template E The date context type.
727
+ * @returns A trinity [useContext, provideContext, defaultContext].
728
+ *
729
+ * @see https://0.vuetifyjs.com/composables/plugins/use-date
730
+ *
731
+ * @example
732
+ * ```ts
733
+ * const [useAppDate, provideAppDate] = createDateContext({
734
+ * namespace: 'app:date',
735
+ * })
736
+ *
737
+ * // With custom adapter
738
+ * const [useAppDate, provideAppDate] = createDateContext({
739
+ * adapter: new DateFnsAdapter(),
740
+ * namespace: 'app:date',
741
+ * })
742
+ * ```
743
+ */
744
+ declare function createDateContext<Z = DefaultDateType, E extends DateContext<Z> = DateContext<Z>>(options?: DateContextOptions<Z>): ContextTrinity<E>;
745
+ /**
746
+ * Creates a new date plugin.
747
+ *
748
+ * @param options Optional adapter, locale, and namespace configuration.
749
+ * @template E The date context type.
750
+ * @returns A Vue plugin.
751
+ *
752
+ * @see https://0.vuetifyjs.com/composables/plugins/use-date
753
+ *
754
+ * @example
755
+ * ```ts
756
+ * const app = createApp(App)
757
+ * app.use(createDatePlugin())
758
+ *
759
+ * // With options
760
+ * app.use(createDatePlugin({ locale: 'de-DE' }))
761
+ *
762
+ * // With custom adapter
763
+ * app.use(createDatePlugin({ adapter: new DateFnsAdapter() }))
764
+ * ```
765
+ */
766
+ declare function createDatePlugin<Z = DefaultDateType, E extends DateContext<Z> = DateContext<Z>>(options?: DatePluginOptions<Z>): Plugin;
767
+ /**
768
+ * Returns the current date context.
769
+ *
770
+ * When called inside a component with a provided date context (via plugin or provider),
771
+ * returns that context. Otherwise, returns a fallback context with Vuetify0DateAdapter.
772
+ *
773
+ * @param namespace The namespace to look up (defaults to 'v0:date').
774
+ * @template E The date context type.
775
+ * @returns The current date context.
776
+ *
777
+ * @see https://0.vuetifyjs.com/composables/plugins/use-date
778
+ *
779
+ * @example
780
+ * ```vue
781
+ * <script setup lang="ts">
782
+ * import { useDate } from '@vuetify/v0'
783
+ *
784
+ * const { adapter, locale } = useDate()
785
+ * const today = adapter.date()
786
+ * </script>
787
+ * ```
788
+ */
789
+ declare function useDate<Z = DefaultDateType, E extends DateContext<Z> = DateContext<Z>>(namespace?: string): E;
790
+ //#endregion
456
791
  //#region src/composables/useEventListener/index.d.ts
457
792
  type CleanupFunction = () => void;
458
793
  type EventHandler<E = Event> = (event: E) => void;
@@ -533,7 +868,7 @@ declare function useWindowEventListener<E extends keyof WindowEventMap>(event: M
533
868
  */
534
869
  declare function useDocumentEventListener<E extends keyof DocumentEventMap>(event: MaybeRefOrGetter<MaybeArray<E>>, listener: MaybeRef<MaybeArray<(this: Document, event: DocumentEventMap[E]) => void>>, options?: MaybeRefOrGetter<boolean | AddEventListenerOptions>): CleanupFunction;
535
870
  //#endregion
536
- //#region src/composables/useTokens/index.d.ts
871
+ //#region src/composables/createTokens/index.d.ts
537
872
  interface TokenAlias<T = unknown> {
538
873
  [key: string]: unknown;
539
874
  $value: T;
@@ -560,11 +895,11 @@ interface TokenContext<Z extends TokenTicket> extends RegistryContext<Z> {
560
895
  * @returns True if the token is an alias, false otherwise.
561
896
  * @remarks An alias is a string that starts with "{" and ends with "}".
562
897
  *
563
- * @see https://0.vuetifyjs.com/composables/registration/use-tokens#is-alias
898
+ * @see https://0.vuetifyjs.com/composables/registration/create-tokens#is-alias
564
899
  *
565
900
  * @example
566
901
  * ```ts
567
- * const tokens = useTokens({
902
+ * const tokens = createTokens({
568
903
  * colors: {
569
904
  * primary: '#3b82f6',
570
905
  * secondary: '{colors.primary}', // Alias reference
@@ -583,11 +918,11 @@ interface TokenContext<Z extends TokenTicket> extends RegistryContext<Z> {
583
918
  * @returns The resolved value of the token or alias, or undefined if not found.
584
919
  * @remarks This function can resolve nested aliases and supports token paths using dot notation.
585
920
  *
586
- * @see https://0.vuetifyjs.com/composables/registration/use-tokens#resolve
921
+ * @see https://0.vuetifyjs.com/composables/registration/create-tokens#resolve
587
922
  *
588
923
  * @example
589
924
  * ```ts
590
- * const tokens = useTokens({
925
+ * const tokens = createTokens({
591
926
  * colors: {
592
927
  * primary: '#3b82f6',
593
928
  * secondary: '{colors.primary}', // Alias reference
@@ -627,13 +962,13 @@ interface TokenContextOptions extends TokenOptions, RegistryContextOptions {
627
962
  * @returns A new token instance.
628
963
  *
629
964
  * @see https://www.designtokens.org/tr/drafts/format/
630
- * @see https://0.vuetifyjs.com/composables/registration/use-tokens
965
+ * @see https://0.vuetifyjs.com/composables/registration/create-tokens
631
966
  *
632
967
  * @example
633
968
  * ```ts
634
- * import { useTokens } from '@vuetify/v0'
969
+ * import { createTokens } from '@vuetify/v0'
635
970
  *
636
- * const tokens = useTokens({
971
+ * const tokens = createTokens({
637
972
  * colors: {
638
973
  * primary: '#3b82f6',
639
974
  * secondary: '{colors.primary}', // Alias reference
@@ -654,7 +989,7 @@ declare function createTokens<Z extends TokenTicket = TokenTicket, E extends Tok
654
989
  * @template E The type of the token context.
655
990
  * @returns A new token context.
656
991
  *
657
- * @see https://0.vuetifyjs.com/composables/registration/use-tokens
992
+ * @see https://0.vuetifyjs.com/composables/registration/create-tokens
658
993
  *
659
994
  * @example
660
995
  * ```ts
@@ -678,7 +1013,7 @@ declare function createTokensContext<Z extends TokenTicket = TokenTicket, E exte
678
1013
  * @param namespace The namespace for the tokens context. Defaults to `'v0:tokens'`.
679
1014
  * @returns The current tokens instance.
680
1015
  *
681
- * @see https://0.vuetifyjs.com/composables/registration/use-tokens
1016
+ * @see https://0.vuetifyjs.com/composables/registration/create-tokens
682
1017
  *
683
1018
  * @example
684
1019
  * ```vue
@@ -947,7 +1282,7 @@ declare function useFilter<Z extends FilterItem>(query: FilterQuery, items: Mayb
947
1282
  */
948
1283
  declare function useFilterContext<Z extends FilterItem = FilterItem, E extends FilterContext<Z> = FilterContext<Z>>(namespace?: string): E;
949
1284
  //#endregion
950
- //#region src/composables/useForm/index.d.ts
1285
+ //#region src/composables/createForm/index.d.ts
951
1286
  type FormValidationResult = string | true | Promise<string | true>;
952
1287
  type FormValidationRule = (value: unknown) => FormValidationResult;
953
1288
  type FormValue = Ref<unknown> | ShallowRef<unknown>;
@@ -984,7 +1319,7 @@ interface FormContextOptions extends RegistryOptions {
984
1319
  * @template E The type of the form context.
985
1320
  * @returns A new form instance.
986
1321
  *
987
- * @see https://0.vuetifyjs.com/composables/forms/use-form
1322
+ * @see https://0.vuetifyjs.com/composables/forms/create-form
988
1323
  *
989
1324
  * @example
990
1325
  * ```ts
@@ -1014,7 +1349,7 @@ declare function createForm<Z extends FormTicket = FormTicket, E extends FormCon
1014
1349
  * @template E The type of the form context.
1015
1350
  * @returns A new form context.
1016
1351
  *
1017
- * @see https://0.vuetifyjs.com/composables/forms/use-form
1352
+ * @see https://0.vuetifyjs.com/composables/forms/create-form
1018
1353
  *
1019
1354
  * @example
1020
1355
  * ```ts
@@ -1044,7 +1379,7 @@ declare function createFormContext<Z extends FormTicket = FormTicket, E extends
1044
1379
  * @param namespace The namespace for the form context. Defaults to `'v0:form'`.
1045
1380
  * @returns The current form instance.
1046
1381
  *
1047
- * @see https://0.vuetifyjs.com/composables/forms/use-form
1382
+ * @see https://0.vuetifyjs.com/composables/forms/create-form
1048
1383
  *
1049
1384
  * @example
1050
1385
  * ```vue
@@ -1369,6 +1704,78 @@ interface UseElementIntersectionReturn extends UseIntersectionObserverReturn {
1369
1704
  */
1370
1705
  declare function useElementIntersection(target: MaybeRef$1<Element | null | undefined>, options?: IntersectionObserverOptions): UseElementIntersectionReturn;
1371
1706
  //#endregion
1707
+ //#region src/composables/useLazy/index.d.ts
1708
+ interface LazyOptions {
1709
+ /**
1710
+ * When true, content renders immediately without waiting for activation.
1711
+ * @default false
1712
+ */
1713
+ eager?: MaybeRefOrGetter<boolean>;
1714
+ }
1715
+ interface LazyContext {
1716
+ /**
1717
+ * Whether the lazy content has been activated at least once.
1718
+ */
1719
+ readonly isBooted: Readonly<ShallowRef<boolean>>;
1720
+ /**
1721
+ * Whether content should be rendered.
1722
+ * True when: isBooted OR eager OR active
1723
+ */
1724
+ readonly hasContent: Readonly<Ref<boolean>>;
1725
+ /**
1726
+ * Reset booted state. Call on leave transition if not eager.
1727
+ */
1728
+ reset: () => void;
1729
+ /**
1730
+ * Transition callback for after-leave. Resets if not eager.
1731
+ */
1732
+ onAfterLeave: () => void;
1733
+ }
1734
+ /**
1735
+ * Deferred content rendering for performance optimization.
1736
+ *
1737
+ * @param active Reactive boolean controlling activation state
1738
+ * @param options Configuration options
1739
+ * @returns Lazy context with state refs and control functions
1740
+ *
1741
+ * @see https://0.vuetifyjs.com/composables/system/use-lazy
1742
+ *
1743
+ * @example
1744
+ * ```ts
1745
+ * import { ref } from 'vue'
1746
+ * import { useLazy } from '@vuetify/v0'
1747
+ *
1748
+ * const isOpen = ref(false)
1749
+ * const { hasContent, onAfterLeave } = useLazy(isOpen)
1750
+ *
1751
+ * // In template:
1752
+ * // <Transition @after-leave="onAfterLeave">
1753
+ * // <div v-if="isOpen">
1754
+ * // <template v-if="hasContent">
1755
+ * // <!-- Heavy content here -->
1756
+ * // </template>
1757
+ * // </div>
1758
+ * // </Transition>
1759
+ * ```
1760
+ *
1761
+ * @example
1762
+ * Eager mode (render immediately):
1763
+ * ```ts
1764
+ * const { hasContent } = useLazy(isOpen, { eager: true })
1765
+ * // hasContent.value is always true
1766
+ * ```
1767
+ *
1768
+ * @example
1769
+ * With reactive eager prop:
1770
+ * ```ts
1771
+ * const props = defineProps<{ eager: boolean }>()
1772
+ * const { hasContent } = useLazy(isOpen, {
1773
+ * eager: toRef(() => props.eager),
1774
+ * })
1775
+ * ```
1776
+ */
1777
+ declare function useLazy(active: MaybeRefOrGetter<boolean>, options?: LazyOptions): LazyContext;
1778
+ //#endregion
1372
1779
  //#region src/composables/useLocale/adapters/adapter.d.ts
1373
1780
  interface LocaleAdapter {
1374
1781
  t: (message: string, ...params: unknown[]) => string;
@@ -1841,15 +2248,16 @@ interface UseMutationObserverReturn {
1841
2248
  * resume()
1842
2249
  * ```
1843
2250
  */
1844
- declare function useMutationObserver(target: Ref<Element | undefined>, callback: (entries: MutationObserverRecord[]) => void, options?: UseMutationObserverOptions): UseMutationObserverReturn;
2251
+ declare function useMutationObserver(target: Ref<Element | null | undefined>, callback: (entries: MutationObserverRecord[]) => void, options?: UseMutationObserverOptions): UseMutationObserverReturn;
1845
2252
  //#endregion
1846
2253
  //#region src/composables/useOverflow/index.d.ts
1847
2254
  interface OverflowOptions {
1848
2255
  /**
1849
2256
  * Container element to track. Can be a ref, getter, or MaybeRefOrGetter.
1850
2257
  * When provided, useOverflow tracks this element's width automatically.
2258
+ * Accepts null for compatibility with Vue's useTemplateRef.
1851
2259
  */
1852
- container?: MaybeRefOrGetter<Element | undefined>;
2260
+ container?: MaybeRefOrGetter<Element | null | undefined>;
1853
2261
  /** Gap between items in pixels */
1854
2262
  gap?: MaybeRefOrGetter<number>;
1855
2263
  /** Reserved space in pixels (for nav buttons, ellipsis, etc) */
@@ -1869,7 +2277,7 @@ interface OverflowOptions {
1869
2277
  }
1870
2278
  interface OverflowContext {
1871
2279
  /** Container element ref */
1872
- container: ShallowRef<Element | undefined>;
2280
+ container: ShallowRef<Element | null | undefined>;
1873
2281
  /** Current container width */
1874
2282
  width: Readonly<ShallowRef<number>>;
1875
2283
  /** How many items fit in available space */
@@ -1935,7 +2343,8 @@ declare function createOverflow<E extends OverflowContext = OverflowContext>(opt
1935
2343
  * Creates an overflow context with dependency injection support.
1936
2344
  *
1937
2345
  * @param options Configuration options including namespace
1938
- * @returns Trinity tuple: [useContext, provideContext, defaultContext]
2346
+ * @template E The type of the overflow context
2347
+ * @returns Trinity tuple: [useOverflow, provideOverflow, defaultOverflow]
1939
2348
  *
1940
2349
  * @example
1941
2350
  * ```ts
@@ -1958,8 +2367,11 @@ declare function createOverflowContext<E extends OverflowContext = OverflowConte
1958
2367
  * Returns the current overflow context from dependency injection.
1959
2368
  *
1960
2369
  * @param namespace The namespace for the overflow context. Defaults to `v0:overflow`.
2370
+ * @template E The type of the overflow context
1961
2371
  * @returns The current overflow context.
1962
2372
  *
2373
+ * @throws An error if the overflow context is not found and no default is provided.
2374
+ *
1963
2375
  * @example
1964
2376
  * ```vue
1965
2377
  * <script lang="ts" setup>
@@ -2169,7 +2581,7 @@ interface ProxyRegistryContext<Z extends RegistryTicket = RegistryTicket> {
2169
2581
  */
2170
2582
  declare function useProxyRegistry<Z extends RegistryTicket = RegistryTicket>(registry: RegistryContext<Z>, options?: ProxyRegistryOptions): ProxyRegistryContext<Z>;
2171
2583
  //#endregion
2172
- //#region src/composables/useQueue/index.d.ts
2584
+ //#region src/composables/createQueue/index.d.ts
2173
2585
  interface QueueTicket<V = unknown> extends RegistryTicket<V> {
2174
2586
  /**
2175
2587
  * Timeout in milliseconds
@@ -2209,7 +2621,7 @@ interface QueueContext<Z extends QueueTicket = QueueTicket> extends RegistryCont
2209
2621
  * - Subsequent tickets are paused until they become first in queue
2210
2622
  * - Each ticket receives a `dismiss()` method for convenience
2211
2623
  *
2212
- * @see https://0.vuetifyjs.com/composables/registration/use-queue#register
2624
+ * @see https://0.vuetifyjs.com/composables/registration/create-queue#register
2213
2625
  *
2214
2626
  * @example
2215
2627
  * ```ts
@@ -2237,7 +2649,7 @@ interface QueueContext<Z extends QueueTicket = QueueTicket> extends RegistryCont
2237
2649
  * - If the removed ticket was first in queue, automatically resumes the next ticket
2238
2650
  * - Returns the unregistered ticket or `undefined` if not found
2239
2651
  *
2240
- * @see https://0.vuetifyjs.com/composables/registration/use-queue#unregister
2652
+ * @see https://0.vuetifyjs.com/composables/registration/create-queue#unregister
2241
2653
  *
2242
2654
  * @example
2243
2655
  * ```ts
@@ -2265,7 +2677,7 @@ interface QueueContext<Z extends QueueTicket = QueueTicket> extends RegistryCont
2265
2677
  * - Returns the paused ticket or `undefined` if no pausable ticket exists
2266
2678
  * - The timeout will not progress while paused
2267
2679
  *
2268
- * @see https://0.vuetifyjs.com/composables/registration/use-queue#pause
2680
+ * @see https://0.vuetifyjs.com/composables/registration/create-queue#pause
2269
2681
  *
2270
2682
  * @example
2271
2683
  * ```ts
@@ -2290,7 +2702,7 @@ interface QueueContext<Z extends QueueTicket = QueueTicket> extends RegistryCont
2290
2702
  * - Returns the resumed ticket or `undefined` if no resumable ticket exists
2291
2703
  * - The timeout will continue from its full duration (not from where it was paused)
2292
2704
  *
2293
- * @see https://0.vuetifyjs.com/composables/registration/use-queue#resume
2705
+ * @see https://0.vuetifyjs.com/composables/registration/create-queue#resume
2294
2706
  *
2295
2707
  * @example
2296
2708
  * ```ts
@@ -2316,7 +2728,7 @@ interface QueueContext<Z extends QueueTicket = QueueTicket> extends RegistryCont
2316
2728
  * - Clears all active timeouts
2317
2729
  * - Resets the queue to an empty state
2318
2730
  *
2319
- * @see https://0.vuetifyjs.com/composables/registration/use-queue#clear
2731
+ * @see https://0.vuetifyjs.com/composables/registration/create-queue#clear
2320
2732
  *
2321
2733
  * @example
2322
2734
  * ```ts
@@ -2344,7 +2756,7 @@ interface QueueContext<Z extends QueueTicket = QueueTicket> extends RegistryCont
2344
2756
  * - Should be called when the queue is no longer needed
2345
2757
  * - Automatically called on scope disposal
2346
2758
  *
2347
- * @see https://0.vuetifyjs.com/composables/registration/use-queue#dispose
2759
+ * @see https://0.vuetifyjs.com/composables/registration/create-queue#dispose
2348
2760
  *
2349
2761
  * @example
2350
2762
  * ```ts
@@ -2384,7 +2796,7 @@ interface QueueContextOptions extends QueueOptions {
2384
2796
  * @template E The type of queue context that extends QueueContext<Z>. Use this when extending the queue with additional methods.
2385
2797
  * @returns A new queue instance
2386
2798
  *
2387
- * @see https://0.vuetifyjs.com/composables/registration/use-queue
2799
+ * @see https://0.vuetifyjs.com/composables/registration/create-queue
2388
2800
  *
2389
2801
  * @example
2390
2802
  * ```ts
@@ -2416,7 +2828,7 @@ declare function createQueue<Z extends QueueTicket = QueueTicket, E extends Queu
2416
2828
  * @template E The type of the queue context.
2417
2829
  * @returns A new queue context.
2418
2830
  *
2419
- * @see https://0.vuetifyjs.com/composables/registration/use-queue
2831
+ * @see https://0.vuetifyjs.com/composables/registration/create-queue
2420
2832
  *
2421
2833
  * @example
2422
2834
  * ```ts
@@ -2434,7 +2846,7 @@ declare function createQueueContext<Z extends QueueTicket = QueueTicket, E exten
2434
2846
  * @param namespace The namespace for the queue context. Defaults to `'v0:queue'`.
2435
2847
  * @returns The current queue instance.
2436
2848
  *
2437
- * @see https://0.vuetifyjs.com/composables/registration/use-queue
2849
+ * @see https://0.vuetifyjs.com/composables/registration/create-queue
2438
2850
  *
2439
2851
  * @example
2440
2852
  * ```vue
@@ -2525,7 +2937,7 @@ interface UseResizeObserverReturn {
2525
2937
  * resume()
2526
2938
  * ```
2527
2939
  */
2528
- declare function useResizeObserver(target: Ref<Element | undefined>, callback: (entries: ResizeObserverEntry[]) => void, options?: ResizeObserverOptions): UseResizeObserverReturn;
2940
+ declare function useResizeObserver(target: Ref<Element | null | undefined>, callback: (entries: ResizeObserverEntry[]) => void, options?: ResizeObserverOptions): UseResizeObserverReturn;
2529
2941
  interface UseElementSizeReturn extends UseResizeObserverReturn {
2530
2942
  /**
2531
2943
  * The width of the element in pixels
@@ -2559,7 +2971,7 @@ interface UseElementSizeReturn extends UseResizeObserverReturn {
2559
2971
  * })
2560
2972
  * ```
2561
2973
  */
2562
- declare function useElementSize(target: Ref<Element | undefined>): UseElementSizeReturn;
2974
+ declare function useElementSize(target: Ref<Element | null | undefined>): UseElementSizeReturn;
2563
2975
  //#endregion
2564
2976
  //#region src/composables/useStorage/adapters/adapter.d.ts
2565
2977
  interface StorageAdapter$1 {
@@ -2982,14 +3394,14 @@ declare function createThemePlugin<Z extends ThemeTicket = ThemeTicket, E extend
2982
3394
  */
2983
3395
  declare function useTheme<Z extends ThemeTicket = ThemeTicket, E extends ThemeContext<Z> = ThemeContext<Z>>(namespace?: string): E;
2984
3396
  //#endregion
2985
- //#region src/composables/useTimeline/index.d.ts
3397
+ //#region src/composables/createTimeline/index.d.ts
2986
3398
  interface TimelineContext<Z extends TimelineTicket> extends RegistryContext<Z> {
2987
3399
  /**
2988
3400
  * Removes the last registered ticket and stores it for redo
2989
3401
  *
2990
3402
  * @return The removed ticket, or undefined if there are no tickets to undo.
2991
3403
  *
2992
- * @see https://0.vuetifyjs.com/composables/registration/use-timeline#undo
3404
+ * @see https://0.vuetifyjs.com/composables/registration/create-timeline#undo
2993
3405
  *
2994
3406
  * @example
2995
3407
  * ```ts
@@ -3012,7 +3424,7 @@ interface TimelineContext<Z extends TimelineTicket> extends RegistryContext<Z> {
3012
3424
  *
3013
3425
  * @returns The restored ticket, or undefined if there are no tickets to redo.
3014
3426
  *
3015
- * @see https://0.vuetifyjs.com/composables/registration/use-timeline#redo
3427
+ * @see https://0.vuetifyjs.com/composables/registration/create-timeline#redo
3016
3428
  *
3017
3429
  * @example
3018
3430
  * ```ts
@@ -3054,7 +3466,7 @@ interface TimelineContextOptions extends TimelineOptions {
3054
3466
  * @template E The type of the timeline context.
3055
3467
  * @returns A new timeline instance.
3056
3468
  *
3057
- * @see https://0.vuetifyjs.com/composables/registration/use-timeline
3469
+ * @see https://0.vuetifyjs.com/composables/registration/create-timeline
3058
3470
  *
3059
3471
  * @example
3060
3472
  * ```ts
@@ -3082,7 +3494,7 @@ declare function createTimeline<Z extends TimelineTicket = TimelineTicket, E ext
3082
3494
  * @template E The type of the timeline context.
3083
3495
  * @returns A new timeline context.
3084
3496
  *
3085
- * @see https://0.vuetifyjs.com/composables/registration/use-timeline
3497
+ * @see https://0.vuetifyjs.com/composables/registration/create-timeline
3086
3498
  *
3087
3499
  * @example
3088
3500
  * ```ts
@@ -3109,7 +3521,7 @@ declare function createTimelineContext<Z extends TimelineTicket = TimelineTicket
3109
3521
  * @param namespace The namespace for the timeline context. Defaults to `'v0:timeline'`.
3110
3522
  * @returns The current timeline instance.
3111
3523
  *
3112
- * @see https://0.vuetifyjs.com/composables/registration/use-timeline
3524
+ * @see https://0.vuetifyjs.com/composables/registration/create-timeline
3113
3525
  *
3114
3526
  * @example
3115
3527
  * ```vue
@@ -3490,4 +3902,4 @@ interface VirtualContext<T = unknown> {
3490
3902
  */
3491
3903
  declare function useVirtual<T = unknown>(items: Ref<readonly T[]>, _options?: VirtualOptions): VirtualContext<T>;
3492
3904
  //#endregion
3493
- export { createQueue as $, createFeatures as $n, createLocaleContext as $t, Vuetify0ThemeAdapter as A, FormValidationRule as An, BreakpointsPluginOptions as Ar, usePrefersContrast as At, StorageAdapter as B, FilterOptions as Bn, ContextKey as Br, useLogger as Bt, ThemePluginOptions as C, UseHotkeyReturn as Cn, UseClickOutsideOptions as Cr, useOverflow as Ct, createThemeContext as D, FormOptions as Dn, BreakpointsContext as Dr, useMutationObserver as Dt, createTheme as E, FormContextOptions as En, BreakpointName as Er, UseMutationObserverReturn as Et, StoragePluginOptions as F, FilterContext as Fn, toReactive as Fr, LoggerOptions as Ft, UseElementSizeReturn as G, createFilterContext as Gn, LoggerAdapter as Gt, MemoryAdapter as H, FilterResult as Hn, createContext as Hr, Vuetify0LoggerAdapter as Ht, createStorage as I, FilterContextOptions as In, toArray as Ir, LoggerPluginOptions as It, useResizeObserver as J, FeatureContext as Jn, LocaleOptions as Jt, UseResizeObserverReturn as K, useFilter as Kn, LocaleContext as Kt, createStorageContext as L, FilterFunction as Ln, Plugin as Lr, createLogger as Lt, StorageContext as M, createForm as Mn, createBreakpointsContext as Mr, usePrefersReducedMotion as Mt, StorageContextOptions as N, createFormContext as Nn, createBreakpointsPlugin as Nr, LoggerContext as Nt, createThemePlugin as O, FormTicket as On, BreakpointsContextOptions as Or, MediaQueryContext as Ot, StorageOptions as P, useForm as Pn, useBreakpoints as Pr, LoggerContextOptions as Pt, QueueTicket as Q, FeatureTicket as Qn, createLocale as Qt, createStoragePlugin as R, FilterItem as Rn, PluginOptions as Rr, createLoggerContext as Rt, ThemeOptions as S, UseHotkeyOptions as Sn, ClickOutsideTarget as Sr, createOverflowContext as St, ThemeTicket as T, FormContext as Tn, useClickOutside as Tr, UseMutationObserverOptions as Tt, ResizeObserverEntry as U, Primitive as Un, provideContext as Ur, PinoLoggerAdapter as Ut, StorageType as V, FilterQuery as Vn, CreateContextOptions as Vr, LogLevel as Vt, ResizeObserverOptions as W, createFilter as Wn, useContext as Wr, ConsolaLoggerAdapter as Wt, QueueContextOptions as X, FeatureOptions as Xn, LocaleRecord as Xt, QueueContext as Y, FeatureContextOptions as Yn, LocalePluginOptions as Yt, QueueOptions as Z, FeaturePluginOptions as Zn, LocaleTicket as Zt, useTimeline as _, createHydration as _n, useDocumentEventListener as _r, PermissionAdapterInterface as _t, VirtualItem as a, IntersectionObserverEntry as an, TokenCollection as ar, ProxyModelOptions as at, ThemeContext as b, useHydration as bn, ClickOutsideElement as br, OverflowOptions as bt, useVirtual as c, UseElementIntersectionReturn as cn, TokenOptions as cr, PermissionContextOptions as ct, TimelineContext as d, useIntersectionObserver as dn, TokenValue as dr, PermissionTicket as dt, createLocaleFallback as en, createFeaturesContext as er, createQueueContext as et, TimelineContextOptions as f, HydrationContext as fn, createTokens as fr, createPermissions as ft, createTimelineContext as g, createFallbackHydration as gn, EventHandler as gr, PermissionAdapter as gt, createTimeline as h, HydrationPluginOptions as hn, CleanupFunction as hr, usePermissions as ht, VirtualDirection as i, LocaleAdapter as in, TokenAlias as ir, useProxyRegistry as it, ThemeAdapter as j, FormValue as jn, createBreakpoints as jr, usePrefersDark as jt, useTheme as k, FormValidationResult as kn, BreakpointsOptions as kr, useMediaQuery as kt, ToggleScopeControls as l, UseIntersectionObserverReturn as ln, TokenPrimitive as lr, PermissionOptions as lt, TimelineTicket as m, HydrationOptions as mn, useTokens as mr, createPermissionsPlugin as mt, VirtualAnchor as n, useLocale as nn, useFeatures as nr, ProxyRegistryContext as nt, VirtualOptions as o, IntersectionObserverOptions as on, TokenContext as or, useProxyModel as ot, TimelineOptions as p, HydrationContextOptions as pn, createTokensContext as pr, createPermissionsContext as pt, useElementSize as q, useFilterContext as qn, LocaleContextOptions as qt, VirtualContext as r, Vuetify0LocaleAdapter as rn, FlatTokenCollection as rr, ProxyRegistryOptions as rt, VirtualState as s, MaybeRef$1 as sn, TokenContextOptions as sr, PermissionContext as st, ScrollToOptions as t, createLocalePlugin as tn, createFeaturesPlugin as tr, useQueue as tt, useToggleScope as u, useElementIntersection as un, TokenTicket as ur, PermissionPluginOptions as ut, Colors as v, createHydrationContext as vn, useEventListener as vr, OverflowContext as vt, ThemeRecord as w, useHotkey as wn, UseClickOutsideReturn as wr, MutationObserverRecord as wt, ThemeContextOptions as x, PlatformContext as xn, ClickOutsideIgnoreTarget as xr, createOverflow as xt, ThemeColors as y, createHydrationPlugin as yn, useWindowEventListener as yr, OverflowContextOptions as yt, useStorage as z, FilterMode as zn, createPlugin as zr, createLoggerPlugin as zt };
3905
+ export { createQueue as $, FeatureOptions as $n, createPlugin as $r, createLocaleContext as $t, Vuetify0ThemeAdapter as A, FormOptions as An, createDatePlugin as Ar, usePrefersContrast as At, StorageAdapter as B, FilterFunction as Bn, BreakpointName as Br, useLogger as Bt, ThemePluginOptions as C, useHydration as Cn, DateContext as Cr, useOverflow as Ct, createThemeContext as D, useHotkey as Dn, createDate as Dr, useMutationObserver as Dt, createTheme as E, UseHotkeyReturn as En, DatePluginOptions as Er, UseMutationObserverReturn as Et, StoragePluginOptions as F, createForm as Fn, ClickOutsideIgnoreTarget as Fr, LoggerOptions as Ft, UseElementSizeReturn as G, FilterResult as Gn, createBreakpoints as Gr, LoggerAdapter as Gt, MemoryAdapter as H, FilterMode as Hn, BreakpointsContextOptions as Hr, Vuetify0LoggerAdapter as Ht, createStorage as I, createFormContext as In, ClickOutsideTarget as Ir, LoggerPluginOptions as It, useResizeObserver as J, createFilterContext as Jn, useBreakpoints as Jr, LocaleOptions as Jt, UseResizeObserverReturn as K, Primitive as Kn, createBreakpointsContext as Kr, LocaleContext as Kt, createStorageContext as L, useForm as Ln, UseClickOutsideOptions as Lr, createLogger as Lt, StorageContext as M, FormValidationResult as Mn, Vuetify0DateAdapter as Mr, usePrefersReducedMotion as Mt, StorageContextOptions as N, FormValidationRule as Nn, DateAdapter as Nr, LoggerContext as Nt, createThemePlugin as O, FormContext as On, createDateContext as Or, MediaQueryContext as Ot, StorageOptions as P, FormValue as Pn, ClickOutsideElement as Pr, LoggerContextOptions as Pt, QueueTicket as Q, FeatureContextOptions as Qn, PluginOptions as Qr, createLocale as Qt, createStoragePlugin as R, FilterContext as Rn, UseClickOutsideReturn as Rr, createLoggerContext as Rt, ThemeOptions as S, createHydrationPlugin as Sn, useWindowEventListener as Sr, createOverflowContext as St, ThemeTicket as T, UseHotkeyOptions as Tn, DateOptions as Tr, UseMutationObserverOptions as Tt, ResizeObserverEntry as U, FilterOptions as Un, BreakpointsOptions as Ur, PinoLoggerAdapter as Ut, StorageType as V, FilterItem as Vn, BreakpointsContext as Vr, LogLevel as Vt, ResizeObserverOptions as W, FilterQuery as Wn, BreakpointsPluginOptions as Wr, ConsolaLoggerAdapter as Wt, QueueContextOptions as X, useFilterContext as Xn, toArray as Xr, LocaleRecord as Xt, QueueContext as Y, useFilter as Yn, toReactive as Yr, LocalePluginOptions as Yt, QueueOptions as Z, FeatureContext as Zn, Plugin as Zr, LocaleTicket as Zt, useTimeline as _, HydrationOptions as _n, useTokens as _r, PermissionAdapterInterface as _t, VirtualItem as a, LazyContext as an, useFeatures as ar, ProxyModelOptions as at, ThemeContext as b, createHydration as bn, useDocumentEventListener as br, OverflowOptions as bt, useVirtual as c, IntersectionObserverEntry as cn, TokenCollection as cr, PermissionContextOptions as ct, TimelineContext as d, UseElementIntersectionReturn as dn, TokenOptions as dr, PermissionTicket as dt, ContextKey as ei, createLocaleFallback as en, FeaturePluginOptions as er, createQueueContext as et, TimelineContextOptions as f, UseIntersectionObserverReturn as fn, TokenPrimitive as fr, createPermissions as ft, createTimelineContext as g, HydrationContextOptions as gn, createTokensContext as gr, PermissionAdapter as gt, createTimeline as h, HydrationContext as hn, createTokens as hr, usePermissions as ht, VirtualDirection as i, useContext as ii, LocaleAdapter as in, createFeaturesPlugin as ir, useProxyRegistry as it, ThemeAdapter as j, FormTicket as jn, useDate as jr, usePrefersDark as jt, useTheme as k, FormContextOptions as kn, createDateFallback as kr, useMediaQuery as kt, ToggleScopeControls as l, IntersectionObserverOptions as ln, TokenContext as lr, PermissionOptions as lt, TimelineTicket as m, useIntersectionObserver as mn, TokenValue as mr, createPermissionsPlugin as mt, VirtualAnchor as n, createContext as ni, useLocale as nn, createFeatures as nr, ProxyRegistryContext as nt, VirtualOptions as o, LazyOptions as on, FlatTokenCollection as or, useProxyModel as ot, TimelineOptions as p, useElementIntersection as pn, TokenTicket as pr, createPermissionsContext as pt, useElementSize as q, createFilter as qn, createBreakpointsPlugin as qr, LocaleContextOptions as qt, VirtualContext as r, provideContext as ri, Vuetify0LocaleAdapter as rn, createFeaturesContext as rr, ProxyRegistryOptions as rt, VirtualState as s, useLazy as sn, TokenAlias as sr, PermissionContext as st, ScrollToOptions as t, CreateContextOptions as ti, createLocalePlugin as tn, FeatureTicket as tr, useQueue as tt, useToggleScope as u, MaybeRef$1 as un, TokenContextOptions as ur, PermissionPluginOptions as ut, Colors as v, HydrationPluginOptions as vn, CleanupFunction as vr, OverflowContext as vt, ThemeRecord as w, PlatformContext as wn, DateContextOptions as wr, MutationObserverRecord as wt, ThemeContextOptions as x, createHydrationContext as xn, useEventListener as xr, createOverflow as xt, ThemeColors as y, createFallbackHydration as yn, EventHandler as yr, OverflowContextOptions as yt, useStorage as z, FilterContextOptions as zn, useClickOutside as zr, createLoggerPlugin as zt };