@vuetify/v0 0.0.21 → 0.0.22
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/dist/browser/index.js +6075 -5323
- package/dist/components/index.d.mts +4 -4
- package/dist/components/index.mjs +5 -5
- package/dist/{components-BomyjmT3.mjs → components-mxRTI3xB.mjs} +315 -26
- package/dist/composables/index.d.mts +4 -4
- package/dist/composables/index.mjs +4 -5
- package/dist/constants/index.d.mts +1 -1
- package/dist/constants/index.mjs +2 -2
- package/dist/{globals-C3JrEDXZ.mjs → globals-B0yp-n-D.mjs} +1 -1
- package/dist/{index-MLb3LH9a.d.mts → index-Bby5ljat.d.mts} +55 -55
- package/dist/{index-CxeZr8jO.d.mts → index-D3xuqKI0.d.mts} +6 -2
- package/dist/{index-B0QJdwz9.d.mts → index-DF1O-1ZO.d.mts} +618 -167
- package/dist/{index-OU0IRbIS.d.mts → index-Dr-ge3ZA.d.mts} +182 -55
- package/dist/index.d.mts +7 -7
- package/dist/index.mjs +6 -7
- package/dist/types/index.d.mts +1 -1
- package/dist/useClickOutside-bbFXLr1p.mjs +6750 -0
- package/dist/utilities/index.d.mts +3 -3
- package/dist/utilities/index.mjs +2 -2
- package/dist/{utilities-CjDz-Xvn.mjs → utilities-CKvM4p7S.mjs} +14 -1
- package/package.json +1 -1
- package/dist/composables-CbAPZabd.mjs +0 -3113
- package/dist/useStep-CfgBbrJB.mjs +0 -3192
- /package/dist/{constants-DypzAkYp.mjs → constants-3l8TGg5J.mjs} +0 -0
- /package/dist/{index-B9mKi4pr.d.mts → index-DMQJJUrv.d.mts} +0 -0
- /package/dist/{index-4jSy8KIt.d.mts → index-DYSwiS9k.d.mts} +0 -0
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { a as MaybeArray, i as ID } from "./index-
|
|
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-
|
|
1
|
+
import { a as MaybeArray, i as ID } from "./index-DYSwiS9k.mjs";
|
|
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
4
|
|
|
5
5
|
//#region src/composables/createContext/index.d.ts
|
|
@@ -358,6 +358,13 @@ interface UseClickOutsideOptions {
|
|
|
358
358
|
* browser limitations. Use element refs instead when ignoring shadow hosts.
|
|
359
359
|
*/
|
|
360
360
|
ignore?: MaybeRefOrGetter<ClickOutsideIgnoreTarget[]>;
|
|
361
|
+
/**
|
|
362
|
+
* Use bounding rect instead of DOM containment to detect outside clicks.
|
|
363
|
+
* When true, checks if click coordinates are outside the element's bounding box.
|
|
364
|
+
* Useful for native <dialog> elements where backdrop clicks have the dialog as target.
|
|
365
|
+
* @default false
|
|
366
|
+
*/
|
|
367
|
+
bounds?: boolean;
|
|
361
368
|
}
|
|
362
369
|
interface UseClickOutsideReturn {
|
|
363
370
|
/**
|
|
@@ -431,6 +438,18 @@ interface UseClickOutsideReturn {
|
|
|
431
438
|
* { ignore: ['[data-app-bar]'] }
|
|
432
439
|
* )
|
|
433
440
|
* ```
|
|
441
|
+
*
|
|
442
|
+
* @example Native dialog with bounds detection
|
|
443
|
+
* ```ts
|
|
444
|
+
* // For native <dialog> elements, use bounds mode to detect backdrop clicks
|
|
445
|
+
* const dialogRef = useTemplateRef<HTMLDialogElement>('dialog')
|
|
446
|
+
*
|
|
447
|
+
* useClickOutside(
|
|
448
|
+
* dialogRef,
|
|
449
|
+
* () => { dialogRef.value?.close() },
|
|
450
|
+
* { bounds: true }
|
|
451
|
+
* )
|
|
452
|
+
* ```
|
|
434
453
|
*/
|
|
435
454
|
declare function useClickOutside(target: MaybeArray<ClickOutsideTarget>, handler: (event: PointerEvent | FocusEvent) => void, options?: UseClickOutsideOptions): UseClickOutsideReturn;
|
|
436
455
|
//#endregion
|
|
@@ -1044,6 +1063,96 @@ declare function createFormContext<Z extends FormTicket = FormTicket, E extends
|
|
|
1044
1063
|
*/
|
|
1045
1064
|
declare function useForm<Z extends FormTicket = FormTicket, E extends FormContext<Z> = FormContext<Z>>(namespace?: string): E;
|
|
1046
1065
|
//#endregion
|
|
1066
|
+
//#region src/composables/useHotkey/index.d.ts
|
|
1067
|
+
interface UseHotkeyOptions {
|
|
1068
|
+
/**
|
|
1069
|
+
* The keyboard event type to listen for.
|
|
1070
|
+
* @default 'keydown'
|
|
1071
|
+
*/
|
|
1072
|
+
event?: MaybeRefOrGetter<'keydown' | 'keyup'>;
|
|
1073
|
+
/**
|
|
1074
|
+
* Whether to trigger the callback when an input element is focused.
|
|
1075
|
+
* @default false
|
|
1076
|
+
*/
|
|
1077
|
+
inputs?: MaybeRefOrGetter<boolean>;
|
|
1078
|
+
/**
|
|
1079
|
+
* Whether to prevent the default browser action.
|
|
1080
|
+
* @default true
|
|
1081
|
+
*/
|
|
1082
|
+
preventDefault?: MaybeRefOrGetter<boolean>;
|
|
1083
|
+
/**
|
|
1084
|
+
* Whether to stop event propagation.
|
|
1085
|
+
* @default false
|
|
1086
|
+
*/
|
|
1087
|
+
stopPropagation?: MaybeRefOrGetter<boolean>;
|
|
1088
|
+
/**
|
|
1089
|
+
* Timeout in ms before a key sequence resets.
|
|
1090
|
+
* @default 1000
|
|
1091
|
+
*/
|
|
1092
|
+
sequenceTimeout?: MaybeRefOrGetter<number>;
|
|
1093
|
+
}
|
|
1094
|
+
interface UseHotkeyReturn {
|
|
1095
|
+
/**
|
|
1096
|
+
* Whether the hotkey listener is currently active (listening for keys).
|
|
1097
|
+
* False when paused, when keys is undefined, or in SSR.
|
|
1098
|
+
*/
|
|
1099
|
+
readonly isActive: Readonly<Ref<boolean>>;
|
|
1100
|
+
/**
|
|
1101
|
+
* Whether the hotkey listener is currently paused.
|
|
1102
|
+
*/
|
|
1103
|
+
readonly isPaused: Readonly<Ref<boolean>>;
|
|
1104
|
+
/**
|
|
1105
|
+
* Pause listening (removes listener but keeps configuration).
|
|
1106
|
+
*/
|
|
1107
|
+
pause: () => void;
|
|
1108
|
+
/**
|
|
1109
|
+
* Resume listening after pause.
|
|
1110
|
+
*/
|
|
1111
|
+
resume: () => void;
|
|
1112
|
+
/**
|
|
1113
|
+
* Stop listening and clean up (removes listener).
|
|
1114
|
+
*/
|
|
1115
|
+
stop: () => void;
|
|
1116
|
+
}
|
|
1117
|
+
/**
|
|
1118
|
+
* Platform context for testing platform-specific behavior.
|
|
1119
|
+
* @internal
|
|
1120
|
+
*/
|
|
1121
|
+
interface PlatformContext {
|
|
1122
|
+
isMac: boolean;
|
|
1123
|
+
}
|
|
1124
|
+
/**
|
|
1125
|
+
* A composable that listens for hotkey combinations and sequences.
|
|
1126
|
+
*
|
|
1127
|
+
* @param keys - The hotkey string (e.g., 'ctrl+k', 'g-h')
|
|
1128
|
+
* @param callback - The function to call when the hotkey is triggered
|
|
1129
|
+
* @param options - Configuration options
|
|
1130
|
+
* @returns An object with state refs and control methods
|
|
1131
|
+
*
|
|
1132
|
+
* @see https://0.vuetifyjs.com/composables/system/use-hotkey
|
|
1133
|
+
*
|
|
1134
|
+
* @example
|
|
1135
|
+
* ```ts
|
|
1136
|
+
* import { useHotkey } from '@vuetify/v0'
|
|
1137
|
+
*
|
|
1138
|
+
* // Simple combination
|
|
1139
|
+
* const { isActive, pause, resume } = useHotkey('ctrl+k', () => {
|
|
1140
|
+
* console.log('Command palette opened')
|
|
1141
|
+
* })
|
|
1142
|
+
*
|
|
1143
|
+
* // Key sequence (GitHub-style)
|
|
1144
|
+
* useHotkey('g-h', () => console.log('Go home'))
|
|
1145
|
+
*
|
|
1146
|
+
* // With options
|
|
1147
|
+
* useHotkey('escape', closeModal, { inputs: true })
|
|
1148
|
+
*
|
|
1149
|
+
* // Pause/resume control
|
|
1150
|
+
* pause() // Temporarily disable
|
|
1151
|
+
* resume() // Re-enable
|
|
1152
|
+
* ```
|
|
1153
|
+
*/
|
|
1154
|
+
declare function useHotkey(keys: MaybeRefOrGetter<string | undefined>, callback: (e: KeyboardEvent) => void, options?: UseHotkeyOptions, _platform?: PlatformContext): UseHotkeyReturn;
|
|
1155
|
+
//#endregion
|
|
1047
1156
|
//#region src/composables/useHydration/index.d.ts
|
|
1048
1157
|
interface HydrationContext {
|
|
1049
1158
|
isHydrated: Readonly<ShallowRef<boolean>>;
|
|
@@ -1260,56 +1369,6 @@ interface UseElementIntersectionReturn extends UseIntersectionObserverReturn {
|
|
|
1260
1369
|
*/
|
|
1261
1370
|
declare function useElementIntersection(target: MaybeRef$1<Element | null | undefined>, options?: IntersectionObserverOptions): UseElementIntersectionReturn;
|
|
1262
1371
|
//#endregion
|
|
1263
|
-
//#region src/composables/useKeydown/index.d.ts
|
|
1264
|
-
interface KeyHandler {
|
|
1265
|
-
key: string;
|
|
1266
|
-
handler: (event: KeyboardEvent) => void;
|
|
1267
|
-
preventDefault?: boolean;
|
|
1268
|
-
stopPropagation?: boolean;
|
|
1269
|
-
}
|
|
1270
|
-
interface UseKeydownReturn {
|
|
1271
|
-
/**
|
|
1272
|
-
* Whether the listener is currently active
|
|
1273
|
-
*/
|
|
1274
|
-
readonly isActive: Readonly<Ref<boolean>>;
|
|
1275
|
-
/**
|
|
1276
|
-
* Start listening for keydown events
|
|
1277
|
-
*/
|
|
1278
|
-
start: () => void;
|
|
1279
|
-
/**
|
|
1280
|
-
* Stop listening for keydown events
|
|
1281
|
-
*/
|
|
1282
|
-
stop: () => void;
|
|
1283
|
-
}
|
|
1284
|
-
/**
|
|
1285
|
-
* A composable that adds a keydown event listener to the document.
|
|
1286
|
-
*
|
|
1287
|
-
* @param handlers The key handlers to add.
|
|
1288
|
-
* @returns An object with methods to start and stop listening.
|
|
1289
|
-
*
|
|
1290
|
-
* @see https://0.vuetifyjs.com/composables/system/use-keydown
|
|
1291
|
-
*
|
|
1292
|
-
* @example
|
|
1293
|
-
* ```ts
|
|
1294
|
-
* import { useKeydown } from '@vuetify/v0'
|
|
1295
|
-
*
|
|
1296
|
-
* // Single handler
|
|
1297
|
-
* useKeydown({ key: 'Escape', handler: () => console.log('Escape pressed') })
|
|
1298
|
-
*
|
|
1299
|
-
* // Multiple handlers
|
|
1300
|
-
* const { isActive, start, stop } = useKeydown([
|
|
1301
|
-
* { key: 'Enter', handler: () => console.log('Enter pressed') },
|
|
1302
|
-
* { key: 'Escape', handler: () => console.log('Escape pressed'), preventDefault: true },
|
|
1303
|
-
* ])
|
|
1304
|
-
*
|
|
1305
|
-
* // Listener is automatically active when called in component setup
|
|
1306
|
-
* // Manually control if needed:
|
|
1307
|
-
* stop()
|
|
1308
|
-
* start()
|
|
1309
|
-
* ```
|
|
1310
|
-
*/
|
|
1311
|
-
declare function useKeydown(handlers: MaybeRefOrGetter<KeyHandler[] | KeyHandler>): UseKeydownReturn;
|
|
1312
|
-
//#endregion
|
|
1313
1372
|
//#region src/composables/useLocale/adapters/adapter.d.ts
|
|
1314
1373
|
interface LocaleAdapter {
|
|
1315
1374
|
t: (message: string, ...params: unknown[]) => string;
|
|
@@ -1626,6 +1685,74 @@ declare function createLoggerPlugin<E extends LoggerContext = LoggerContext>(_op
|
|
|
1626
1685
|
*/
|
|
1627
1686
|
declare function useLogger<E extends LoggerContext = LoggerContext>(namespace?: string): E;
|
|
1628
1687
|
//#endregion
|
|
1688
|
+
//#region src/composables/useMediaQuery/index.d.ts
|
|
1689
|
+
interface MediaQueryContext {
|
|
1690
|
+
/** Whether the media query currently matches */
|
|
1691
|
+
readonly matches: Readonly<ShallowRef<boolean>>;
|
|
1692
|
+
/** The current media query string */
|
|
1693
|
+
readonly query: ComputedRef<string>;
|
|
1694
|
+
/** The underlying MediaQueryList (null on server) */
|
|
1695
|
+
readonly mediaQueryList: Readonly<ShallowRef<MediaQueryList | null>>;
|
|
1696
|
+
/** Stop listening and clean up */
|
|
1697
|
+
stop: () => void;
|
|
1698
|
+
}
|
|
1699
|
+
/**
|
|
1700
|
+
* Reactive media query matching.
|
|
1701
|
+
*
|
|
1702
|
+
* @param query CSS media query string (reactive).
|
|
1703
|
+
* @returns The media query context.
|
|
1704
|
+
*
|
|
1705
|
+
* @see https://0.vuetifyjs.com/composables/system/use-media-query
|
|
1706
|
+
*
|
|
1707
|
+
* @example
|
|
1708
|
+
* ```ts
|
|
1709
|
+
* // Static query
|
|
1710
|
+
* const { matches } = useMediaQuery('(prefers-color-scheme: dark)')
|
|
1711
|
+
*
|
|
1712
|
+
* // Dynamic query
|
|
1713
|
+
* const minWidth = ref(768)
|
|
1714
|
+
* const { matches } = useMediaQuery(() => `(min-width: ${minWidth.value}px)`)
|
|
1715
|
+
*
|
|
1716
|
+
* // Manual cleanup
|
|
1717
|
+
* const { matches, stop } = useMediaQuery('(hover: hover)')
|
|
1718
|
+
* stop() // Remove listener early
|
|
1719
|
+
* ```
|
|
1720
|
+
*/
|
|
1721
|
+
declare function useMediaQuery(query: MaybeRefOrGetter<string>): MediaQueryContext;
|
|
1722
|
+
/**
|
|
1723
|
+
* Check if the user prefers dark color scheme.
|
|
1724
|
+
*
|
|
1725
|
+
* @returns The media query context.
|
|
1726
|
+
*
|
|
1727
|
+
* @example
|
|
1728
|
+
* ```ts
|
|
1729
|
+
* const { matches: prefersDark } = usePrefersDark()
|
|
1730
|
+
* ```
|
|
1731
|
+
*/
|
|
1732
|
+
declare function usePrefersDark(): MediaQueryContext;
|
|
1733
|
+
/**
|
|
1734
|
+
* Check if the user prefers reduced motion.
|
|
1735
|
+
*
|
|
1736
|
+
* @returns The media query context.
|
|
1737
|
+
*
|
|
1738
|
+
* @example
|
|
1739
|
+
* ```ts
|
|
1740
|
+
* const { matches: prefersReducedMotion } = usePrefersReducedMotion()
|
|
1741
|
+
* ```
|
|
1742
|
+
*/
|
|
1743
|
+
declare function usePrefersReducedMotion(): MediaQueryContext;
|
|
1744
|
+
/**
|
|
1745
|
+
* Check if the user prefers more contrast.
|
|
1746
|
+
*
|
|
1747
|
+
* @returns The media query context.
|
|
1748
|
+
*
|
|
1749
|
+
* @example
|
|
1750
|
+
* ```ts
|
|
1751
|
+
* const { matches: prefersContrast } = usePrefersContrast()
|
|
1752
|
+
* ```
|
|
1753
|
+
*/
|
|
1754
|
+
declare function usePrefersContrast(): MediaQueryContext;
|
|
1755
|
+
//#endregion
|
|
1629
1756
|
//#region src/composables/useMutationObserver/index.d.ts
|
|
1630
1757
|
interface MutationObserverRecord {
|
|
1631
1758
|
type: 'attributes' | 'childList' | 'characterData';
|
|
@@ -2031,9 +2158,9 @@ interface ProxyRegistryContext<Z extends RegistryTicket = RegistryTicket> {
|
|
|
2031
2158
|
*
|
|
2032
2159
|
* @example
|
|
2033
2160
|
* ```ts
|
|
2034
|
-
* import {
|
|
2161
|
+
* import { createRegistry, useProxyRegistry } from '@vuetify/v0'
|
|
2035
2162
|
*
|
|
2036
|
-
* const registry =
|
|
2163
|
+
* const registry = createRegistry({ events: true })
|
|
2037
2164
|
* const proxy = useProxyRegistry(registry)
|
|
2038
2165
|
*
|
|
2039
2166
|
* registry.register({ value: 'Item 1' })
|
|
@@ -3363,4 +3490,4 @@ interface VirtualContext<T = unknown> {
|
|
|
3363
3490
|
*/
|
|
3364
3491
|
declare function useVirtual<T = unknown>(items: Ref<readonly T[]>, _options?: VirtualOptions): VirtualContext<T>;
|
|
3365
3492
|
//#endregion
|
|
3366
|
-
export { createQueue as $,
|
|
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 };
|
package/dist/index.d.mts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import "./index-
|
|
2
|
-
import { $ as PaginationEllipsisSlotProps, $t as _default$
|
|
3
|
-
import { A as SelectionContextOptions, B as RegistryTicket, C as GroupContextOptions, D as createGroupContext, E as createGroup, F as useSelection, H as
|
|
4
|
-
import { $ as createQueue, $n as
|
|
5
|
-
import { a as isSelfClosingTag, c as SUPPORTS_MATCH_MEDIA, d as SUPPORTS_TOUCH, f as __LOGGER_ENABLED__, i as SelfClosingElement, l as SUPPORTS_MUTATION_OBSERVER, n as HTMLElementName, o as IN_BROWSER, p as version, r as SELF_CLOSING_TAGS, s as SUPPORTS_INTERSECTION_OBSERVER, t as COMMON_ELEMENTS, u as SUPPORTS_OBSERVER } from "./index-
|
|
6
|
-
import { _ as
|
|
7
|
-
export { _default as Atom, AtomExpose, AtomProps, AtomSlots, Avatar, AvatarContext, _default$1 as AvatarFallback, AvatarFallbackProps, AvatarFallbackSlotProps, _default$2 as AvatarImage, AvatarImageEmits, AvatarImageProps, AvatarImageSlotProps, _default$3 as AvatarRoot, AvatarRootProps, AvatarTicket, BreakpointName, BreakpointsContext, BreakpointsContextOptions, BreakpointsOptions, BreakpointsPluginOptions, COMMON_ELEMENTS, CleanupFunction, ClickOutsideElement, ClickOutsideIgnoreTarget, ClickOutsideTarget, Colors, ConsolaLoggerAdapter, ContextKey, ContextTrinity, CreateContextOptions, EventHandler, ExpansionPanel, _default$
|
|
1
|
+
import "./index-DYSwiS9k.mjs";
|
|
2
|
+
import { $ as PaginationEllipsisSlotProps, $t as _default$5, A as PopoverContentProps, An as _default$3, At as ExpansionPanelContentSlotProps, B as providePopoverContext, Bt as ExpansionPanelItemSlotProps, C as SelectionRootProps, Cn as AvatarImageEmits, Ct as GroupRootProps, D as useSelectionRoot, Dn as AvatarContext, Dt as useGroupRoot, E as provideSelectionRoot, En as _default$2, Et as provideGroupRoot, F as _default$25, Fn as AtomSlots, Ft as ExpansionPanelHeaderProps, G as _default$24, Gt as ExpansionPanelRootProps, H as Pagination, Ht as provideExpansionPanelItem, I as PopoverContext, In as _default, It as ExpansionPanelHeaderSlotProps, J as _default$20, Jt as provideExpansionPanelSelection, K as PaginationLastProps, Kt as ExpansionPanelRootSlotProps, L as PopoverRootProps, Lt as _default$12, M as _default$26, Mn as useAvatarRoot, Mt as ExpansionPanelActivatorProps, N as PopoverActivatorProps, Nn as AtomExpose, Nt as ExpansionPanelActivatorSlotProps, O as Popover, On as AvatarRootProps, Ot as ExpansionPanel, P as PopoverActivatorSlotProps, Pn as AtomProps, Pt as _default$10, Q as PaginationEllipsisProps, Qt as DialogCloseSlotProps, R as PopoverRootSlotProps, Rt as ExpansionPanelItemContext, S as _default$28, Sn as _default$1, St as _default$15, T as _default$29, Tn as AvatarImageSlotProps, Tt as _default$16, U as PaginationStatusProps, Ut as useExpansionPanelItem, V as usePopoverContext, Vt as _default$13, W as PaginationStatusSlotProps, Wt as ExpansionPanelOptionsContext, X as PaginationNextSlotProps, Xt as Dialog, Y as PaginationNextProps, Yt as useExpansionPanelRoot, Z as _default$21, Zt as DialogCloseProps, _ as provideSingleRoot, _n as provideDialogContext, _t as usePaginationItems, a as StepRootProps, an as _default$9, at as PaginationFirstSlotProps, b as SelectionItemProps, bn as AvatarFallbackProps, bt as GroupItemProps, c as provideStepRoot, cn as DialogContentSlotProps, ct as PaginationItemSlotProps, d as SingleItemProps, dn as DialogActivatorSlotProps, dt as PaginationRootSlotProps, en as DialogDescriptionProps, et as _default$17, f as SingleItemSlotProps, fn as _default$4, ft as _default$23, g as _default$31, gn as _default$8, gt as usePaginationControls, h as SingleRootSlotProps, hn as DialogRootSlotProps, ht as providePaginationRoot, i as _default$32, in as DialogTitleSlotProps, it as PaginationFirstProps, j as PopoverContentSlotProps, jn as provideAvatarContext, jt as _default$11, k as PopoverContentEmits, kn as AvatarTicket, kt as ExpansionPanelContentProps, l as useStepRoot, ln as _default$6, lt as _default$19, m as SingleRootProps, mn as DialogRootProps, mt as providePaginationItems, n as StepItemProps, nn as _default$7, nt as PaginationPrevSlotProps, o as StepRootSlotProps, on as DialogContentEmits, ot as _default$18, p as _default$30, pn as DialogContext, pt as providePaginationControls, q as PaginationLastSlotProps, qt as _default$14, r as StepItemSlotProps, rn as DialogTitleProps, rt as _default$22, s as _default$33, sn as DialogContentProps, st as PaginationItemProps, t as Step, tn as DialogDescriptionSlotProps, tt as PaginationPrevProps, u as Single, un as DialogActivatorProps, ut as PaginationRootProps, v as useSingleRoot, vn as useDialogContext, vt as usePaginationRoot, w as SelectionRootSlotProps, wn as AvatarImageProps, wt as GroupRootSlotProps, x as SelectionItemSlotProps, xn as AvatarFallbackSlotProps, xt as GroupItemSlotProps, y as Selection, yn as Avatar, yt as Group, z as _default$27, zt as ExpansionPanelItemProps } from "./index-DF1O-1ZO.mjs";
|
|
3
|
+
import { A as SelectionContextOptions, B as RegistryTicket, C as GroupContextOptions, D as createGroupContext, E as createGroup, F as useSelection, H as createRegistryContext, I as RegistryContext, L as RegistryContextOptions, M as SelectionTicket, N as createSelection, O as useGroup, P as createSelectionContext, R as RegistryEventCallback, S as GroupContext, T as GroupTicket, U as ContextTrinity, V as createRegistry, W as createTrinity, _ as PaginationOptions, a as createStep, b as createPaginationContext, c as SingleContext, d as SingleTicket, f as createSingle, g as PaginationContextOptions, h as PaginationContext, i as StepTicket, j as SelectionOptions, k as SelectionContext, l as SingleContextOptions, m as useSingle, n as StepContextOptions, o as createStepContext, p as createSingleContext, r as StepOptions, s as useStep, t as StepContext, u as SingleOptions, v as PaginationTicket, w as GroupOptions, x as usePagination, y as createPagination, z as RegistryOptions } from "./index-Bby5ljat.mjs";
|
|
4
|
+
import { $ as createQueue, $n as createFeatures, $t as createLocaleContext, A as Vuetify0ThemeAdapter, An as FormValidationRule, Ar as BreakpointsPluginOptions, At as usePrefersContrast, B as StorageAdapter, Bn as FilterOptions, Br as ContextKey, Bt as useLogger, C as ThemePluginOptions, Cn as UseHotkeyReturn, Cr as UseClickOutsideOptions, Ct as useOverflow, D as createThemeContext, Dn as FormOptions, Dr as BreakpointsContext, Dt as useMutationObserver, E as createTheme, En as FormContextOptions, Er as BreakpointName, Et as UseMutationObserverReturn, F as StoragePluginOptions, Fn as FilterContext, Fr as toReactive, Ft as LoggerOptions, G as UseElementSizeReturn, Gn as createFilterContext, Gt as LoggerAdapter, H as MemoryAdapter, Hn as FilterResult, Hr as createContext, Ht as Vuetify0LoggerAdapter, I as createStorage, In as FilterContextOptions, Ir as toArray, It as LoggerPluginOptions, J as useResizeObserver, Jn as FeatureContext, Jt as LocaleOptions, K as UseResizeObserverReturn, Kn as useFilter, Kt as LocaleContext, L as createStorageContext, Ln as FilterFunction, Lr as Plugin, Lt as createLogger, M as StorageContext, Mn as createForm, Mr as createBreakpointsContext, Mt as usePrefersReducedMotion, N as StorageContextOptions, Nn as createFormContext, Nr as createBreakpointsPlugin, Nt as LoggerContext, O as createThemePlugin, On as FormTicket, Or as BreakpointsContextOptions, Ot as MediaQueryContext, P as StorageOptions, Pn as useForm, Pr as useBreakpoints, Pt as LoggerContextOptions, Q as QueueTicket, Qn as FeatureTicket, Qt as createLocale, R as createStoragePlugin, Rn as FilterItem, Rr as PluginOptions, Rt as createLoggerContext, S as ThemeOptions, Sn as UseHotkeyOptions, Sr as ClickOutsideTarget, St as createOverflowContext, T as ThemeTicket, Tn as FormContext, Tr as useClickOutside, Tt as UseMutationObserverOptions, U as ResizeObserverEntry, Un as Primitive, Ur as provideContext, Ut as PinoLoggerAdapter, V as StorageType, Vn as FilterQuery, Vr as CreateContextOptions, Vt as LogLevel, W as ResizeObserverOptions, Wn as createFilter, Wr as useContext, Wt as ConsolaLoggerAdapter, X as QueueContextOptions, Xn as FeatureOptions, Xt as LocaleRecord, Y as QueueContext, Yn as FeatureContextOptions, Yt as LocalePluginOptions, Z as QueueOptions, Zn as FeaturePluginOptions, Zt as LocaleTicket, _ as useTimeline, _n as createHydration, _r as useDocumentEventListener, _t as PermissionAdapterInterface, a as VirtualItem, an as IntersectionObserverEntry, ar as TokenCollection, at as ProxyModelOptions, b as ThemeContext, bn as useHydration, br as ClickOutsideElement, bt as OverflowOptions, c as useVirtual, cn as UseElementIntersectionReturn, cr as TokenOptions, ct as PermissionContextOptions, d as TimelineContext, dn as useIntersectionObserver, dr as TokenValue, dt as PermissionTicket, en as createLocaleFallback, er as createFeaturesContext, et as createQueueContext, f as TimelineContextOptions, fn as HydrationContext, fr as createTokens, ft as createPermissions, g as createTimelineContext, gn as createFallbackHydration, gr as EventHandler, gt as PermissionAdapter, h as createTimeline, hn as HydrationPluginOptions, hr as CleanupFunction, ht as usePermissions, i as VirtualDirection, in as LocaleAdapter, ir as TokenAlias, it as useProxyRegistry, j as ThemeAdapter, jn as FormValue, jr as createBreakpoints, jt as usePrefersDark, k as useTheme, kn as FormValidationResult, kr as BreakpointsOptions, kt as useMediaQuery, l as ToggleScopeControls, ln as UseIntersectionObserverReturn, lr as TokenPrimitive, lt as PermissionOptions, m as TimelineTicket, mn as HydrationOptions, mr as useTokens, mt as createPermissionsPlugin, n as VirtualAnchor, nn as useLocale, nr as useFeatures, nt as ProxyRegistryContext, o as VirtualOptions, on as IntersectionObserverOptions, or as TokenContext, ot as useProxyModel, p as TimelineOptions, pn as HydrationContextOptions, pr as createTokensContext, pt as createPermissionsContext, q as useElementSize, qn as useFilterContext, qt as LocaleContextOptions, r as VirtualContext, rn as Vuetify0LocaleAdapter, rr as FlatTokenCollection, rt as ProxyRegistryOptions, s as VirtualState, sn as MaybeRef, sr as TokenContextOptions, st as PermissionContext, t as ScrollToOptions, tn as createLocalePlugin, tr as createFeaturesPlugin, tt as useQueue, u as useToggleScope, un as useElementIntersection, ur as TokenTicket, ut as PermissionPluginOptions, v as Colors, vn as createHydrationContext, vr as useEventListener, vt as OverflowContext, w as ThemeRecord, wn as useHotkey, wr as UseClickOutsideReturn, wt as MutationObserverRecord, x as ThemeContextOptions, xn as PlatformContext, xr as ClickOutsideIgnoreTarget, xt as createOverflow, y as ThemeColors, yn as createHydrationPlugin, yr as useWindowEventListener, yt as OverflowContextOptions, z as useStorage, zn as FilterMode, zr as createPlugin, zt as createLoggerPlugin } from "./index-Dr-ge3ZA.mjs";
|
|
5
|
+
import { a as isSelfClosingTag, c as SUPPORTS_MATCH_MEDIA, d as SUPPORTS_TOUCH, f as __LOGGER_ENABLED__, i as SelfClosingElement, l as SUPPORTS_MUTATION_OBSERVER, n as HTMLElementName, o as IN_BROWSER, p as version, r as SELF_CLOSING_TAGS, s as SUPPORTS_INTERSECTION_OBSERVER, t as COMMON_ELEMENTS, u as SUPPORTS_OBSERVER } from "./index-DMQJJUrv.mjs";
|
|
6
|
+
import { _ as isUndefined, a as genId, c as isFunction, d as isNullOrUndefined, f as isNumber, g as isSymbol, h as isString, i as debounce, l as isNaN, m as isPrimitive, n as instanceName, o as isArray, p as isObject, r as clamp, s as isBoolean, t as instanceExists, u as isNull, v as mergeDeep, y as range } from "./index-D3xuqKI0.mjs";
|
|
7
|
+
export { _default as Atom, AtomExpose, AtomProps, AtomSlots, Avatar, AvatarContext, _default$1 as AvatarFallback, AvatarFallbackProps, AvatarFallbackSlotProps, _default$2 as AvatarImage, AvatarImageEmits, AvatarImageProps, AvatarImageSlotProps, _default$3 as AvatarRoot, AvatarRootProps, AvatarTicket, BreakpointName, BreakpointsContext, BreakpointsContextOptions, BreakpointsOptions, BreakpointsPluginOptions, COMMON_ELEMENTS, CleanupFunction, ClickOutsideElement, ClickOutsideIgnoreTarget, ClickOutsideTarget, Colors, ConsolaLoggerAdapter, ContextKey, ContextTrinity, CreateContextOptions, Dialog, _default$4 as DialogActivator, DialogActivatorProps, DialogActivatorSlotProps, _default$5 as DialogClose, DialogCloseProps, DialogCloseSlotProps, _default$6 as DialogContent, DialogContentEmits, DialogContentProps, DialogContentSlotProps, DialogContext, _default$7 as DialogDescription, DialogDescriptionProps, DialogDescriptionSlotProps, _default$8 as DialogRoot, DialogRootProps, DialogRootSlotProps, _default$9 as DialogTitle, DialogTitleProps, DialogTitleSlotProps, EventHandler, ExpansionPanel, _default$10 as ExpansionPanelActivator, ExpansionPanelActivatorProps, ExpansionPanelActivatorSlotProps, _default$11 as ExpansionPanelContent, ExpansionPanelContentProps, ExpansionPanelContentSlotProps, _default$12 as ExpansionPanelHeader, ExpansionPanelHeaderProps, ExpansionPanelHeaderSlotProps, _default$13 as ExpansionPanelItem, ExpansionPanelItemContext, ExpansionPanelItemProps, ExpansionPanelItemSlotProps, ExpansionPanelOptionsContext, _default$14 as ExpansionPanelRoot, ExpansionPanelRootProps, ExpansionPanelRootSlotProps, FeatureContext, FeatureContextOptions, FeatureOptions, FeaturePluginOptions, FeatureTicket, FilterContext, FilterContextOptions, FilterFunction, FilterItem, FilterMode, FilterOptions, FilterQuery, FilterResult, FlatTokenCollection, FormContext, FormContextOptions, FormOptions, FormTicket, FormValidationResult, FormValidationRule, FormValue, Group, GroupContext, GroupContextOptions, _default$15 as GroupItem, GroupItemProps, GroupItemSlotProps, GroupOptions, _default$16 as GroupRoot, GroupRootProps, GroupRootSlotProps, GroupTicket, HTMLElementName, HydrationContext, HydrationContextOptions, HydrationOptions, HydrationPluginOptions, IN_BROWSER, IntersectionObserverEntry, IntersectionObserverOptions, LocaleAdapter, LocaleContext, LocaleContextOptions, LocaleOptions, LocalePluginOptions, LocaleRecord, LocaleTicket, LogLevel, LoggerAdapter, LoggerContext, LoggerContextOptions, LoggerOptions, LoggerPluginOptions, MaybeRef, MediaQueryContext, MemoryAdapter, MutationObserverRecord, OverflowContext, OverflowContextOptions, OverflowOptions, Pagination, PaginationContext, PaginationContextOptions, _default$17 as PaginationEllipsis, PaginationEllipsisProps, PaginationEllipsisSlotProps, _default$18 as PaginationFirst, PaginationFirstProps, PaginationFirstSlotProps, _default$19 as PaginationItem, PaginationItemProps, PaginationItemSlotProps, _default$20 as PaginationLast, PaginationLastProps, PaginationLastSlotProps, _default$21 as PaginationNext, PaginationNextProps, PaginationNextSlotProps, PaginationOptions, _default$22 as PaginationPrev, PaginationPrevProps, PaginationPrevSlotProps, _default$23 as PaginationRoot, PaginationRootProps, PaginationRootSlotProps, _default$24 as PaginationStatus, PaginationStatusProps, PaginationStatusSlotProps, PaginationTicket, PermissionAdapter, PermissionAdapterInterface, PermissionContext, PermissionContextOptions, PermissionOptions, PermissionPluginOptions, PermissionTicket, PinoLoggerAdapter, PlatformContext, Plugin, PluginOptions, Popover, _default$25 as PopoverActivator, PopoverActivatorProps, PopoverActivatorSlotProps, _default$26 as PopoverContent, PopoverContentEmits, PopoverContentProps, PopoverContentSlotProps, PopoverContext, _default$27 as PopoverRoot, PopoverRootProps, PopoverRootSlotProps, Primitive, ProxyModelOptions, ProxyRegistryContext, ProxyRegistryOptions, QueueContext, QueueContextOptions, QueueOptions, QueueTicket, RegistryContext, RegistryContextOptions, RegistryEventCallback, RegistryOptions, RegistryTicket, ResizeObserverEntry, ResizeObserverOptions, SELF_CLOSING_TAGS, SUPPORTS_INTERSECTION_OBSERVER, SUPPORTS_MATCH_MEDIA, SUPPORTS_MUTATION_OBSERVER, SUPPORTS_OBSERVER, SUPPORTS_TOUCH, ScrollToOptions, Selection, SelectionContext, SelectionContextOptions, _default$28 as SelectionItem, SelectionItemProps, SelectionItemSlotProps, SelectionOptions, _default$29 as SelectionRoot, SelectionRootProps, SelectionRootSlotProps, SelectionTicket, SelfClosingElement, Single, SingleContext, SingleContextOptions, _default$30 as SingleItem, SingleItemProps, SingleItemSlotProps, SingleOptions, _default$31 as SingleRoot, SingleRootProps, SingleRootSlotProps, SingleTicket, Step, StepContext, StepContextOptions, _default$32 as StepItem, StepItemProps, StepItemSlotProps, StepOptions, _default$33 as StepRoot, StepRootProps, StepRootSlotProps, StepTicket, StorageAdapter, StorageContext, StorageContextOptions, StorageOptions, StoragePluginOptions, StorageType, ThemeAdapter, ThemeColors, ThemeContext, ThemeContextOptions, ThemeOptions, ThemePluginOptions, ThemeRecord, ThemeTicket, TimelineContext, TimelineContextOptions, TimelineOptions, TimelineTicket, ToggleScopeControls, TokenAlias, TokenCollection, TokenContext, TokenContextOptions, TokenOptions, TokenPrimitive, TokenTicket, TokenValue, UseClickOutsideOptions, UseClickOutsideReturn, UseElementIntersectionReturn, UseElementSizeReturn, UseHotkeyOptions, UseHotkeyReturn, UseIntersectionObserverReturn, UseMutationObserverOptions, UseMutationObserverReturn, UseResizeObserverReturn, VirtualAnchor, VirtualContext, VirtualDirection, VirtualItem, VirtualOptions, VirtualState, Vuetify0LocaleAdapter, Vuetify0LoggerAdapter, Vuetify0ThemeAdapter, __LOGGER_ENABLED__, clamp, createBreakpoints, createBreakpointsContext, createBreakpointsPlugin, createContext, createFallbackHydration, createFeatures, createFeaturesContext, createFeaturesPlugin, createFilter, createFilterContext, createForm, createFormContext, createGroup, createGroupContext, createHydration, createHydrationContext, createHydrationPlugin, createLocale, createLocaleContext, createLocaleFallback, createLocalePlugin, createLogger, createLoggerContext, createLoggerPlugin, createOverflow, createOverflowContext, createPagination, createPaginationContext, createPermissions, createPermissionsContext, createPermissionsPlugin, createPlugin, createQueue, createQueueContext, createRegistry, createRegistryContext, createSelection, createSelectionContext, createSingle, createSingleContext, createStep, createStepContext, createStorage, createStorageContext, createStoragePlugin, createTheme, createThemeContext, createThemePlugin, createTimeline, createTimelineContext, createTokens, createTokensContext, createTrinity, debounce, genId, instanceExists, instanceName, isArray, isBoolean, isFunction, isNaN, isNull, isNullOrUndefined, isNumber, isObject, isPrimitive, isSelfClosingTag, isString, isSymbol, isUndefined, mergeDeep, provideAvatarContext, provideContext, provideDialogContext, provideExpansionPanelItem, provideExpansionPanelSelection, provideGroupRoot, providePaginationControls, providePaginationItems, providePaginationRoot, providePopoverContext, provideSelectionRoot, provideSingleRoot, provideStepRoot, range, toArray, toReactive, useAvatarRoot, useBreakpoints, useClickOutside, useContext, useDialogContext, useDocumentEventListener, useElementIntersection, useElementSize, useEventListener, useExpansionPanelItem, useExpansionPanelRoot, useFeatures, useFilter, useFilterContext, useForm, useGroup, useGroupRoot, useHotkey, useHydration, useIntersectionObserver, useLocale, useLogger, useMediaQuery, useMutationObserver, useOverflow, usePagination, usePaginationControls, usePaginationItems, usePaginationRoot, usePermissions, usePopoverContext, usePrefersContrast, usePrefersDark, usePrefersReducedMotion, useProxyModel, useProxyRegistry, useQueue, useResizeObserver, useSelection, useSelectionRoot, useSingle, useSingleRoot, useStep, useStepRoot, useStorage, useTheme, useTimeline, useToggleScope, useTokens, useVirtual, useWindowEventListener, version };
|
package/dist/index.mjs
CHANGED
|
@@ -1,9 +1,8 @@
|
|
|
1
1
|
import { n as SELF_CLOSING_TAGS, r as isSelfClosingTag, t as COMMON_ELEMENTS } from "./htmlElements-CXObxj0V.mjs";
|
|
2
|
-
import { _ as
|
|
3
|
-
import { $ as
|
|
4
|
-
import { A as
|
|
5
|
-
import { a as SUPPORTS_OBSERVER, c as version, i as SUPPORTS_MUTATION_OBSERVER, n as SUPPORTS_INTERSECTION_OBSERVER, o as SUPPORTS_TOUCH, r as SUPPORTS_MATCH_MEDIA, s as __LOGGER_ENABLED__, t as IN_BROWSER } from "./globals-
|
|
6
|
-
import
|
|
7
|
-
import "./constants-DypzAkYp.mjs";
|
|
2
|
+
import { _ as isUndefined, a as genId, c as isFunction, d as isNullOrUndefined, f as isNumber, g as isSymbol, h as isString, i as debounce, l as isNaN, m as isPrimitive, n as instanceName, o as isArray, p as isObject, r as clamp, s as isBoolean, t as instanceExists, u as isNull, v as mergeDeep, y as range } from "./utilities-CKvM4p7S.mjs";
|
|
3
|
+
import { $ as DialogActivator_default, A as PaginationRoot_default, B as provideGroupRoot, C as PaginationStatus_default, D as PaginationItem_default, E as PaginationLast_default, F as usePaginationItems, G as ExpansionPanelActivator_default, H as ExpansionPanel, I as usePaginationRoot, J as useExpansionPanelItem, K as ExpansionPanelItem_default, L as Group, M as providePaginationItems, N as providePaginationRoot, O as PaginationFirst_default, P as usePaginationControls, Q as Dialog, R as GroupItem_default, S as Pagination, T as PaginationNext_default, U as ExpansionPanelHeader_default, V as useGroupRoot, W as ExpansionPanelContent_default, X as provideExpansionPanelSelection, Y as ExpansionPanelRoot_default, Z as useExpansionPanelRoot, _ as PopoverContent_default, a as useStepRoot, at as provideDialogContext, b as providePopoverContext, c as SingleRoot_default, ct as AvatarImage_default, d as Selection, dt as provideAvatarContext, et as DialogTitle_default, f as SelectionItem_default, ft as useAvatarRoot, g as Popover, h as useSelectionRoot, i as provideStepRoot, it as DialogRoot_default, j as providePaginationControls, k as PaginationEllipsis_default, l as provideSingleRoot, lt as AvatarFallback_default, m as provideSelectionRoot, n as StepItem_default, nt as DialogContent_default, o as Single, ot as useDialogContext, p as SelectionRoot_default, pt as Atom_default, q as provideExpansionPanelItem, r as StepRoot_default, rt as DialogClose_default, s as SingleItem_default, st as Avatar, t as Step, tt as DialogDescription_default, u as useSingleRoot, ut as AvatarRoot_default, v as PopoverActivator_default, w as PaginationPrev_default, x as usePopoverContext, y as PopoverRoot_default, z as GroupRoot_default } from "./components-mxRTI3xB.mjs";
|
|
4
|
+
import { $ as useSingle, A as usePermissions, At as toReactive, B as useMutationObserver, Bt as useLogger, C as createQueue, Ct as createBreakpointsPlugin, D as createPermissions, Dt as createHydrationContext, E as useProxyModel, Et as createHydration, F as createOverflow, Ft as createRegistry, G as createLocale, Gt as createTrinity, H as usePrefersContrast, Ht as PinoLoggerAdapter, I as createOverflowContext, It as createRegistryContext, J as createLocalePlugin, Jt as useContext, K as createLocaleContext, Kt as createContext, L as useOverflow, Lt as createLogger, M as createPagination, Mt as createSelection, N as createPaginationContext, Nt as createSelectionContext, O as createPermissionsContext, Ot as createHydrationPlugin, P as usePagination, Pt as useSelection, Q as createSingleContext, R as useElementSize, Rt as createLoggerContext, S as useStep, St as createBreakpointsContext, T as useQueue, Tt as createFallbackHydration, U as usePrefersDark, Ut as ConsolaLoggerAdapter, V as useMediaQuery, Vt as Vuetify0LoggerAdapter, W as usePrefersReducedMotion, Wt as createPlugin, X as Vuetify0LocaleAdapter, Y as useLocale, Z as createSingle, _ as createStoragePlugin, _t as createGroup, a as useVirtual, at as useForm, b as createStep, bt as useProxyRegistry, c as createTimelineContext, ct as useFilter, d as createThemeContext, dt as createFeaturesContext, et as useElementIntersection, f as createThemePlugin, ft as createFeaturesPlugin, g as createStorageContext, gt as useTokens, h as createStorage, ht as createTokensContext, i as useWindowEventListener, it as createFormContext, j as PermissionAdapter, jt as toArray, k as createPermissionsPlugin, kt as useHydration, l as useTimeline, lt as useFilterContext, m as Vuetify0ThemeAdapter, mt as createTokens, n as useDocumentEventListener, nt as useHotkey, o as useToggleScope, ot as createFilter, p as useTheme, pt as useFeatures, q as createLocaleFallback, qt as provideContext, r as useEventListener, rt as createForm, s as createTimeline, st as createFilterContext, t as useClickOutside, tt as useIntersectionObserver, u as createTheme, ut as createFeatures, v as useStorage, vt as createGroupContext, w as createQueueContext, wt as useBreakpoints, x as createStepContext, xt as createBreakpoints, y as MemoryAdapter, yt as useGroup, z as useResizeObserver, zt as createLoggerPlugin } from "./useClickOutside-bbFXLr1p.mjs";
|
|
5
|
+
import { a as SUPPORTS_OBSERVER, c as version, i as SUPPORTS_MUTATION_OBSERVER, n as SUPPORTS_INTERSECTION_OBSERVER, o as SUPPORTS_TOUCH, r as SUPPORTS_MATCH_MEDIA, s as __LOGGER_ENABLED__, t as IN_BROWSER } from "./globals-B0yp-n-D.mjs";
|
|
6
|
+
import "./constants-3l8TGg5J.mjs";
|
|
8
7
|
|
|
9
|
-
export { Atom_default as Atom, Avatar, AvatarFallback_default as AvatarFallback, AvatarImage_default as AvatarImage, AvatarRoot_default as AvatarRoot, COMMON_ELEMENTS, ConsolaLoggerAdapter, ExpansionPanel, ExpansionPanelActivator_default as ExpansionPanelActivator, ExpansionPanelContent_default as ExpansionPanelContent, ExpansionPanelHeader_default as ExpansionPanelHeader, ExpansionPanelItem_default as ExpansionPanelItem, ExpansionPanelRoot_default as ExpansionPanelRoot, Group, GroupItem_default as GroupItem, GroupRoot_default as GroupRoot, IN_BROWSER, MemoryAdapter, Pagination, PaginationEllipsis_default as PaginationEllipsis, PaginationFirst_default as PaginationFirst, PaginationItem_default as PaginationItem, PaginationLast_default as PaginationLast, PaginationNext_default as PaginationNext, PaginationPrev_default as PaginationPrev, PaginationRoot_default as PaginationRoot, PaginationStatus_default as PaginationStatus, PermissionAdapter, PinoLoggerAdapter, Popover,
|
|
8
|
+
export { Atom_default as Atom, Avatar, AvatarFallback_default as AvatarFallback, AvatarImage_default as AvatarImage, AvatarRoot_default as AvatarRoot, COMMON_ELEMENTS, ConsolaLoggerAdapter, Dialog, DialogActivator_default as DialogActivator, DialogClose_default as DialogClose, DialogContent_default as DialogContent, DialogDescription_default as DialogDescription, DialogRoot_default as DialogRoot, DialogTitle_default as DialogTitle, ExpansionPanel, ExpansionPanelActivator_default as ExpansionPanelActivator, ExpansionPanelContent_default as ExpansionPanelContent, ExpansionPanelHeader_default as ExpansionPanelHeader, ExpansionPanelItem_default as ExpansionPanelItem, ExpansionPanelRoot_default as ExpansionPanelRoot, Group, GroupItem_default as GroupItem, GroupRoot_default as GroupRoot, IN_BROWSER, MemoryAdapter, Pagination, PaginationEllipsis_default as PaginationEllipsis, PaginationFirst_default as PaginationFirst, PaginationItem_default as PaginationItem, PaginationLast_default as PaginationLast, PaginationNext_default as PaginationNext, PaginationPrev_default as PaginationPrev, PaginationRoot_default as PaginationRoot, PaginationStatus_default as PaginationStatus, PermissionAdapter, PinoLoggerAdapter, Popover, PopoverActivator_default as PopoverActivator, PopoverContent_default as PopoverContent, PopoverRoot_default as PopoverRoot, SELF_CLOSING_TAGS, SUPPORTS_INTERSECTION_OBSERVER, SUPPORTS_MATCH_MEDIA, SUPPORTS_MUTATION_OBSERVER, SUPPORTS_OBSERVER, SUPPORTS_TOUCH, Selection, SelectionItem_default as SelectionItem, SelectionRoot_default as SelectionRoot, Single, SingleItem_default as SingleItem, SingleRoot_default as SingleRoot, Step, StepItem_default as StepItem, StepRoot_default as StepRoot, Vuetify0LocaleAdapter, Vuetify0LoggerAdapter, Vuetify0ThemeAdapter, __LOGGER_ENABLED__, clamp, createBreakpoints, createBreakpointsContext, createBreakpointsPlugin, createContext, createFallbackHydration, createFeatures, createFeaturesContext, createFeaturesPlugin, createFilter, createFilterContext, createForm, createFormContext, createGroup, createGroupContext, createHydration, createHydrationContext, createHydrationPlugin, createLocale, createLocaleContext, createLocaleFallback, createLocalePlugin, createLogger, createLoggerContext, createLoggerPlugin, createOverflow, createOverflowContext, createPagination, createPaginationContext, createPermissions, createPermissionsContext, createPermissionsPlugin, createPlugin, createQueue, createQueueContext, createRegistry, createRegistryContext, createSelection, createSelectionContext, createSingle, createSingleContext, createStep, createStepContext, createStorage, createStorageContext, createStoragePlugin, createTheme, createThemeContext, createThemePlugin, createTimeline, createTimelineContext, createTokens, createTokensContext, createTrinity, debounce, genId, instanceExists, instanceName, isArray, isBoolean, isFunction, isNaN, isNull, isNullOrUndefined, isNumber, isObject, isPrimitive, isSelfClosingTag, isString, isSymbol, isUndefined, mergeDeep, provideAvatarContext, provideContext, provideDialogContext, provideExpansionPanelItem, provideExpansionPanelSelection, provideGroupRoot, providePaginationControls, providePaginationItems, providePaginationRoot, providePopoverContext, provideSelectionRoot, provideSingleRoot, provideStepRoot, range, toArray, toReactive, useAvatarRoot, useBreakpoints, useClickOutside, useContext, useDialogContext, useDocumentEventListener, useElementIntersection, useElementSize, useEventListener, useExpansionPanelItem, useExpansionPanelRoot, useFeatures, useFilter, useFilterContext, useForm, useGroup, useGroupRoot, useHotkey, useHydration, useIntersectionObserver, useLocale, useLogger, useMediaQuery, useMutationObserver, useOverflow, usePagination, usePaginationControls, usePaginationItems, usePaginationRoot, usePermissions, usePopoverContext, usePrefersContrast, usePrefersDark, usePrefersReducedMotion, useProxyModel, useProxyRegistry, useQueue, useResizeObserver, useSelection, useSelectionRoot, useSingle, useSingleRoot, useStep, useStepRoot, useStorage, useTheme, useTimeline, useToggleScope, useTokens, useVirtual, useWindowEventListener, version };
|
package/dist/types/index.d.mts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { a as MaybeArray, i as ID, n as DeepPartial, o as UnknownObject, r as GenericObject, t as DOMElement } from "../index-
|
|
1
|
+
import { a as MaybeArray, i as ID, n as DeepPartial, o as UnknownObject, r as GenericObject, t as DOMElement } from "../index-DYSwiS9k.mjs";
|
|
2
2
|
export { DOMElement, DeepPartial, GenericObject, ID, MaybeArray, UnknownObject };
|