@vuetify/v0 0.0.7 → 0.0.8
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/LICENSE.md +21 -0
- package/README.md +62 -189
- package/dist/browser/index.js +1072 -535
- package/dist/components/index.d.ts +3 -3
- package/dist/components/index.js +4 -4
- package/dist/{components-ClYPFhaF.js → components-BJF0Dsww.js} +4 -188
- package/dist/composables/index.d.ts +2 -2
- package/dist/composables/index.js +3 -3
- package/dist/{composables-DkRocfS_.js → composables-D-M1DZRo.js} +1071 -352
- package/dist/constants/index.js +1 -1
- package/dist/{globals-BQnaatWT.js → globals-B2jAuapu.js} +1 -1
- package/dist/{index-BoDCUSPn.d.ts → index-Bcj8Vovs.d.ts} +1104 -251
- package/dist/index-DoTdnxOm.d.ts +241 -0
- package/dist/index.d.ts +3 -3
- package/dist/index.js +4 -4
- package/package.json +1 -1
- package/dist/index-BVouO8cc.d.ts +0 -410
|
@@ -0,0 +1,241 @@
|
|
|
1
|
+
import { t as DOMElement } from "./index-C_lAPFXS.js";
|
|
2
|
+
import { Ir as ContextKey, fr as RegistryTicket, lr as RegistryContext } from "./index-Bcj8Vovs.js";
|
|
3
|
+
import * as vue129 from "vue";
|
|
4
|
+
import { ComputedGetter, ShallowRef, TemplateRef } from "vue";
|
|
5
|
+
|
|
6
|
+
//#region src/components/Atom/Atom.vue.d.ts
|
|
7
|
+
interface AtomProps {
|
|
8
|
+
as?: DOMElement | null;
|
|
9
|
+
renderless?: boolean;
|
|
10
|
+
}
|
|
11
|
+
interface AtomSlots<T> {
|
|
12
|
+
default: (props: T) => any;
|
|
13
|
+
}
|
|
14
|
+
interface AtomExpose {
|
|
15
|
+
element: TemplateRef<HTMLElement | null>;
|
|
16
|
+
}
|
|
17
|
+
interface AtomPrivateProps extends AtomProps {}
|
|
18
|
+
declare const _default: <T extends Record<string, any> = {}>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: __VLS_PrettifyLocal<Pick<NonNullable<Awaited<typeof __VLS_setup>>, "attrs" | "emit" | "slots">>, __VLS_expose?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
|
|
19
|
+
props: __VLS_PrettifyLocal<Pick<Partial<{}> & Omit<{} & vue129.VNodeProps & vue129.AllowedComponentProps & vue129.ComponentCustomProps, never>, never> & AtomPrivateProps & {}> & vue129.PublicProps;
|
|
20
|
+
expose(exposed: vue129.ShallowUnwrapRef<AtomExpose>): void;
|
|
21
|
+
attrs: any;
|
|
22
|
+
slots: AtomSlots<T>;
|
|
23
|
+
emit: {};
|
|
24
|
+
}>) => vue129.VNode & {
|
|
25
|
+
__ctx?: Awaited<typeof __VLS_setup>;
|
|
26
|
+
};
|
|
27
|
+
type __VLS_PrettifyLocal<T> = { [K in keyof T as K]: T[K] } & {};
|
|
28
|
+
//#endregion
|
|
29
|
+
//#region src/components/Avatar/AvatarFallback.vue.d.ts
|
|
30
|
+
interface AvatarFallbackProps extends AtomProps {}
|
|
31
|
+
//#endregion
|
|
32
|
+
//#region src/components/Avatar/AvatarImage.vue.d.ts
|
|
33
|
+
interface AvatarImageProps extends AtomProps {
|
|
34
|
+
src?: string;
|
|
35
|
+
priority?: number;
|
|
36
|
+
}
|
|
37
|
+
interface AvatarImageEmits {
|
|
38
|
+
load: [e: Event];
|
|
39
|
+
error: [e: Event];
|
|
40
|
+
}
|
|
41
|
+
//#endregion
|
|
42
|
+
//#region src/components/Avatar/AvatarRoot.vue.d.ts
|
|
43
|
+
interface AvatarRootProps extends AtomProps {}
|
|
44
|
+
interface AvatarTicket extends RegistryTicket {
|
|
45
|
+
type: 'image' | 'fallback';
|
|
46
|
+
priority: number;
|
|
47
|
+
status: 'idle' | 'loading' | 'loaded' | 'error';
|
|
48
|
+
isVisible: Readonly<ComputedGetter<boolean>>;
|
|
49
|
+
}
|
|
50
|
+
interface AvatarContext extends RegistryContext<AvatarTicket> {
|
|
51
|
+
reset: () => void;
|
|
52
|
+
}
|
|
53
|
+
declare const useAvatarContext: () => AvatarContext, provideAvatarContext: (context?: AvatarContext | undefined, app?: vue129.App) => AvatarContext, registry: AvatarContext;
|
|
54
|
+
//#endregion
|
|
55
|
+
//#region src/components/Avatar/index.d.ts
|
|
56
|
+
declare const Avatar: {
|
|
57
|
+
Fallback: {
|
|
58
|
+
new (...args: any[]): vue129.CreateComponentPublicInstanceWithMixins<Readonly<AvatarFallbackProps> & Readonly<{}>, {}, {}, {}, {}, vue129.ComponentOptionsMixin, vue129.ComponentOptionsMixin, {}, vue129.PublicProps, {}, false, {}, {}, vue129.GlobalComponents, vue129.GlobalDirectives, string, {}, any, vue129.ComponentProvideOptions, {
|
|
59
|
+
P: {};
|
|
60
|
+
B: {};
|
|
61
|
+
D: {};
|
|
62
|
+
C: {};
|
|
63
|
+
M: {};
|
|
64
|
+
Defaults: {};
|
|
65
|
+
}, Readonly<AvatarFallbackProps> & Readonly<{}>, {}, {}, {}, {}, {}>;
|
|
66
|
+
__isFragment?: never;
|
|
67
|
+
__isTeleport?: never;
|
|
68
|
+
__isSuspense?: never;
|
|
69
|
+
} & vue129.ComponentOptionsBase<Readonly<AvatarFallbackProps> & Readonly<{}>, {}, {}, {}, {}, vue129.ComponentOptionsMixin, vue129.ComponentOptionsMixin, {}, string, {}, {}, string, {}, vue129.GlobalComponents, vue129.GlobalDirectives, string, vue129.ComponentProvideOptions> & vue129.VNodeProps & vue129.AllowedComponentProps & vue129.ComponentCustomProps & (new () => {
|
|
70
|
+
$slots: {
|
|
71
|
+
default?: (props: {}) => any;
|
|
72
|
+
};
|
|
73
|
+
});
|
|
74
|
+
Image: {
|
|
75
|
+
new (...args: any[]): vue129.CreateComponentPublicInstanceWithMixins<Readonly<AvatarImageProps> & Readonly<{
|
|
76
|
+
onError?: ((e: Event) => any) | undefined;
|
|
77
|
+
onLoad?: ((e: Event) => any) | undefined;
|
|
78
|
+
}>, {}, {}, {}, {}, vue129.ComponentOptionsMixin, vue129.ComponentOptionsMixin, {
|
|
79
|
+
error: (e: Event) => any;
|
|
80
|
+
load: (e: Event) => any;
|
|
81
|
+
}, vue129.PublicProps, {}, false, {}, {}, vue129.GlobalComponents, vue129.GlobalDirectives, string, {}, any, vue129.ComponentProvideOptions, {
|
|
82
|
+
P: {};
|
|
83
|
+
B: {};
|
|
84
|
+
D: {};
|
|
85
|
+
C: {};
|
|
86
|
+
M: {};
|
|
87
|
+
Defaults: {};
|
|
88
|
+
}, Readonly<AvatarImageProps> & Readonly<{
|
|
89
|
+
onError?: ((e: Event) => any) | undefined;
|
|
90
|
+
onLoad?: ((e: Event) => any) | undefined;
|
|
91
|
+
}>, {}, {}, {}, {}, {}>;
|
|
92
|
+
__isFragment?: never;
|
|
93
|
+
__isTeleport?: never;
|
|
94
|
+
__isSuspense?: never;
|
|
95
|
+
} & vue129.ComponentOptionsBase<Readonly<AvatarImageProps> & Readonly<{
|
|
96
|
+
onError?: ((e: Event) => any) | undefined;
|
|
97
|
+
onLoad?: ((e: Event) => any) | undefined;
|
|
98
|
+
}>, {}, {}, {}, {}, vue129.ComponentOptionsMixin, vue129.ComponentOptionsMixin, {
|
|
99
|
+
error: (e: Event) => any;
|
|
100
|
+
load: (e: Event) => any;
|
|
101
|
+
}, string, {}, {}, string, {}, vue129.GlobalComponents, vue129.GlobalDirectives, string, vue129.ComponentProvideOptions> & vue129.VNodeProps & vue129.AllowedComponentProps & vue129.ComponentCustomProps & (new () => {
|
|
102
|
+
$slots: {
|
|
103
|
+
default: (props: {
|
|
104
|
+
src: string;
|
|
105
|
+
onError: (e: Event) => void;
|
|
106
|
+
onLoad: (e: Event) => void;
|
|
107
|
+
role: string;
|
|
108
|
+
}) => any;
|
|
109
|
+
};
|
|
110
|
+
});
|
|
111
|
+
Root: {
|
|
112
|
+
new (...args: any[]): vue129.CreateComponentPublicInstanceWithMixins<Readonly<AvatarRootProps> & Readonly<{}>, {}, {}, {}, {}, vue129.ComponentOptionsMixin, vue129.ComponentOptionsMixin, {}, vue129.PublicProps, {}, false, {}, {}, vue129.GlobalComponents, vue129.GlobalDirectives, string, {}, any, vue129.ComponentProvideOptions, {
|
|
113
|
+
P: {};
|
|
114
|
+
B: {};
|
|
115
|
+
D: {};
|
|
116
|
+
C: {};
|
|
117
|
+
M: {};
|
|
118
|
+
Defaults: {};
|
|
119
|
+
}, Readonly<AvatarRootProps> & Readonly<{}>, {}, {}, {}, {}, {}>;
|
|
120
|
+
__isFragment?: never;
|
|
121
|
+
__isTeleport?: never;
|
|
122
|
+
__isSuspense?: never;
|
|
123
|
+
} & vue129.ComponentOptionsBase<Readonly<AvatarRootProps> & Readonly<{}>, {}, {}, {}, {}, vue129.ComponentOptionsMixin, vue129.ComponentOptionsMixin, {}, string, {}, {}, string, {}, vue129.GlobalComponents, vue129.GlobalDirectives, string, vue129.ComponentProvideOptions> & vue129.VNodeProps & vue129.AllowedComponentProps & vue129.ComponentCustomProps & (new () => {
|
|
124
|
+
$slots: {
|
|
125
|
+
default?: (props: {}) => any;
|
|
126
|
+
};
|
|
127
|
+
});
|
|
128
|
+
};
|
|
129
|
+
//#endregion
|
|
130
|
+
//#region src/components/Popover/PopoverRoot.vue.d.ts
|
|
131
|
+
interface PopoverContext {
|
|
132
|
+
isSelected: ShallowRef<boolean>;
|
|
133
|
+
id: string;
|
|
134
|
+
toggle: () => void;
|
|
135
|
+
}
|
|
136
|
+
interface PopoverRootProps extends AtomProps {
|
|
137
|
+
id?: string;
|
|
138
|
+
}
|
|
139
|
+
declare const usePopoverContext: (key?: ContextKey<PopoverContext>) => PopoverContext, providePopoverContext: (context: PopoverContext, app?: vue129.App) => PopoverContext;
|
|
140
|
+
//#endregion
|
|
141
|
+
//#region src/components/Popover/PopoverAnchor.vue.d.ts
|
|
142
|
+
interface PopoverAnchorProps extends AtomProps {
|
|
143
|
+
target?: string;
|
|
144
|
+
}
|
|
145
|
+
//#endregion
|
|
146
|
+
//#region src/components/Popover/PopoverContent.vue.d.ts
|
|
147
|
+
interface PopoverContentProps extends AtomProps {
|
|
148
|
+
id?: string;
|
|
149
|
+
positionArea?: string;
|
|
150
|
+
positionTry?: string;
|
|
151
|
+
}
|
|
152
|
+
interface PopoverContentEmits {
|
|
153
|
+
beforetoggle: [e: ToggleEvent];
|
|
154
|
+
}
|
|
155
|
+
//#endregion
|
|
156
|
+
//#region src/components/Popover/index.d.ts
|
|
157
|
+
declare const Popover: {
|
|
158
|
+
Root: {
|
|
159
|
+
new (...args: any[]): vue129.CreateComponentPublicInstanceWithMixins<Readonly<PopoverRootProps & {
|
|
160
|
+
modelValue?: boolean;
|
|
161
|
+
}> & Readonly<{
|
|
162
|
+
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
163
|
+
}>, {}, {}, {}, {}, vue129.ComponentOptionsMixin, vue129.ComponentOptionsMixin, {
|
|
164
|
+
"update:modelValue": (value: boolean) => any;
|
|
165
|
+
}, vue129.PublicProps, {}, false, {}, {}, vue129.GlobalComponents, vue129.GlobalDirectives, string, {}, any, vue129.ComponentProvideOptions, {
|
|
166
|
+
P: {};
|
|
167
|
+
B: {};
|
|
168
|
+
D: {};
|
|
169
|
+
C: {};
|
|
170
|
+
M: {};
|
|
171
|
+
Defaults: {};
|
|
172
|
+
}, Readonly<PopoverRootProps & {
|
|
173
|
+
modelValue?: boolean;
|
|
174
|
+
}> & Readonly<{
|
|
175
|
+
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
176
|
+
}>, {}, {}, {}, {}, {}>;
|
|
177
|
+
__isFragment?: never;
|
|
178
|
+
__isTeleport?: never;
|
|
179
|
+
__isSuspense?: never;
|
|
180
|
+
} & vue129.ComponentOptionsBase<Readonly<PopoverRootProps & {
|
|
181
|
+
modelValue?: boolean;
|
|
182
|
+
}> & Readonly<{
|
|
183
|
+
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
184
|
+
}>, {}, {}, {}, {}, vue129.ComponentOptionsMixin, vue129.ComponentOptionsMixin, {
|
|
185
|
+
"update:modelValue": (value: boolean) => any;
|
|
186
|
+
}, string, {}, {}, string, {}, vue129.GlobalComponents, vue129.GlobalDirectives, string, vue129.ComponentProvideOptions> & vue129.VNodeProps & vue129.AllowedComponentProps & vue129.ComponentCustomProps & (new () => {
|
|
187
|
+
$slots: {
|
|
188
|
+
default: (props: {
|
|
189
|
+
id: Readonly<vue129.Ref<string, string>>;
|
|
190
|
+
isSelected: vue129.ModelRef<boolean, string, boolean, boolean>;
|
|
191
|
+
toggle: () => void;
|
|
192
|
+
}) => any;
|
|
193
|
+
};
|
|
194
|
+
});
|
|
195
|
+
Anchor: {
|
|
196
|
+
new (...args: any[]): vue129.CreateComponentPublicInstanceWithMixins<Readonly<PopoverAnchorProps> & Readonly<{}>, {}, {}, {}, {}, vue129.ComponentOptionsMixin, vue129.ComponentOptionsMixin, {}, vue129.PublicProps, {}, false, {}, {}, vue129.GlobalComponents, vue129.GlobalDirectives, string, {}, any, vue129.ComponentProvideOptions, {
|
|
197
|
+
P: {};
|
|
198
|
+
B: {};
|
|
199
|
+
D: {};
|
|
200
|
+
C: {};
|
|
201
|
+
M: {};
|
|
202
|
+
Defaults: {};
|
|
203
|
+
}, Readonly<PopoverAnchorProps> & Readonly<{}>, {}, {}, {}, {}, {}>;
|
|
204
|
+
__isFragment?: never;
|
|
205
|
+
__isTeleport?: never;
|
|
206
|
+
__isSuspense?: never;
|
|
207
|
+
} & vue129.ComponentOptionsBase<Readonly<PopoverAnchorProps> & Readonly<{}>, {}, {}, {}, {}, vue129.ComponentOptionsMixin, vue129.ComponentOptionsMixin, {}, string, {}, {}, string, {}, vue129.GlobalComponents, vue129.GlobalDirectives, string, vue129.ComponentProvideOptions> & vue129.VNodeProps & vue129.AllowedComponentProps & vue129.ComponentCustomProps & (new () => {
|
|
208
|
+
$slots: {
|
|
209
|
+
default?: (props: {}) => any;
|
|
210
|
+
};
|
|
211
|
+
});
|
|
212
|
+
Content: {
|
|
213
|
+
new (...args: any[]): vue129.CreateComponentPublicInstanceWithMixins<Readonly<PopoverContentProps> & Readonly<{
|
|
214
|
+
onBeforetoggle?: ((e: ToggleEvent) => any) | undefined;
|
|
215
|
+
}>, {}, {}, {}, {}, vue129.ComponentOptionsMixin, vue129.ComponentOptionsMixin, {
|
|
216
|
+
beforetoggle: (e: ToggleEvent) => any;
|
|
217
|
+
}, vue129.PublicProps, {}, false, {}, {}, vue129.GlobalComponents, vue129.GlobalDirectives, string, {}, any, vue129.ComponentProvideOptions, {
|
|
218
|
+
P: {};
|
|
219
|
+
B: {};
|
|
220
|
+
D: {};
|
|
221
|
+
C: {};
|
|
222
|
+
M: {};
|
|
223
|
+
Defaults: {};
|
|
224
|
+
}, Readonly<PopoverContentProps> & Readonly<{
|
|
225
|
+
onBeforetoggle?: ((e: ToggleEvent) => any) | undefined;
|
|
226
|
+
}>, {}, {}, {}, {}, {}>;
|
|
227
|
+
__isFragment?: never;
|
|
228
|
+
__isTeleport?: never;
|
|
229
|
+
__isSuspense?: never;
|
|
230
|
+
} & vue129.ComponentOptionsBase<Readonly<PopoverContentProps> & Readonly<{
|
|
231
|
+
onBeforetoggle?: ((e: ToggleEvent) => any) | undefined;
|
|
232
|
+
}>, {}, {}, {}, {}, vue129.ComponentOptionsMixin, vue129.ComponentOptionsMixin, {
|
|
233
|
+
beforetoggle: (e: ToggleEvent) => any;
|
|
234
|
+
}, string, {}, {}, string, {}, vue129.GlobalComponents, vue129.GlobalDirectives, string, vue129.ComponentProvideOptions> & vue129.VNodeProps & vue129.AllowedComponentProps & vue129.ComponentCustomProps & (new () => {
|
|
235
|
+
$slots: {
|
|
236
|
+
default?: (props: {}) => any;
|
|
237
|
+
};
|
|
238
|
+
});
|
|
239
|
+
};
|
|
240
|
+
//#endregion
|
|
241
|
+
export { AvatarFallbackProps as _, PopoverContext as a, AtomSlots as b, usePopoverContext as c, AvatarRootProps as d, provideAvatarContext as f, AvatarImageProps as g, AvatarImageEmits as h, PopoverAnchorProps as i, Avatar as l, useAvatarContext as m, PopoverContentEmits as n, PopoverRootProps as o, registry as p, PopoverContentProps as r, providePopoverContext as s, Popover as t, AvatarContext as u, AtomExpose as v, _default as x, AtomProps as y };
|
package/dist/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import "./index-C_lAPFXS.js";
|
|
2
|
-
import {
|
|
3
|
-
import { $ as
|
|
2
|
+
import { _ as AvatarFallbackProps, a as PopoverContext, b as AtomSlots, c as usePopoverContext, d as AvatarRootProps, f as provideAvatarContext, g as AvatarImageProps, h as AvatarImageEmits, i as PopoverAnchorProps, l as Avatar, m as useAvatarContext, n as PopoverContentEmits, o as PopoverRootProps, p as registry, r as PopoverContentProps, s as providePopoverContext, t as Popover, u as AvatarContext, v as AtomExpose, x as _default, y as AtomProps } from "./index-DoTdnxOm.js";
|
|
3
|
+
import { $ as ProxyRegistryContext, $n as createGroup, $t as IntersectionObserverOptions, A as useStorage, An as FeatureOptions, Ar as toArray, At as LoggerAdapter, B as createStepContext, Bn as TokenContext, Bt as useLocale, C as StorageContextOptions, Cn as FilterQuery, Cr as BreakpointsOptions, Ct as createLoggerContext, D as createStorageContext, Dn as useFilter, Dr as createBreakpointsPlugin, Dt as Vuetify0LoggerAdapter, E as createStorage, En as UseFilterResult, Er as createBreakpointsContext, Et as LogLevel, F as StepContext, Fn as createFeaturesPlugin, Fr as createPlugin, Ft as LocaleRecord, G as useResizeObserver, Gn as TokenValue, Gt as SingleOptions, H as ResizeObserverEntry, Hn as TokenOptions, Ht as LocaleAdapter, I as StepContextOptions, In as useFeatures, Ir as ContextKey, It as LocaleTicket, J as QueueOptions, Jn as useTokens, Jt as createSingleContext, K as QueueContext, Kn as createTokens, Kt as SingleTicket, L as StepOptions, Ln as FlatTokenCollection, Lr as createContext, Lt as createLocale, M as StorageAdapter, Mn as FeatureTicket, Mr as createTrinity, Mt as LocaleContextOptions, N as StorageType, Nn as createFeatures, Nr as Plugin, Nt as LocaleOptions, O as createStoragePlugin, On as FeatureContext, Or as useBreakpoints, Ot as PinoLoggerAdapter, P as MemoryAdapter, Pn as createFeaturesContext, Pr as PluginOptions, Pt as LocalePluginOptions, Q as useQueue, Qn as GroupTicket, Qt as IntersectionObserverEntry, R as StepTicket, Rn as TokenAlias, Rr as provideContext, Rt as createLocaleContext, S as StorageContext, Sn as FilterMode, Sr as BreakpointsContextOptions, St as createLogger, T as StoragePluginOptions, Tn as UseFilterOptions, Tr as createBreakpoints, Tt as useLogger, U as ResizeObserverOptions, Un as TokenPrimitive, Ut as SingleContext, V as useStep, Vn as TokenContextOptions, Vt as Vuetify0LocaleAdapter, W as useElementSize, Wn as TokenTicket, Wt as SingleContextOptions, X as createQueue, Xn as GroupContextOptions, Xt as KeyHandler, Y as QueueTicket, Yn as GroupContext, Yt as useSingle, Z as createQueueContext, Zn as GroupOptions, Zt as useKeydown, _ as createThemeContext, _n as createForm, _r as useDocumentEventListener, _t as useMutationObserver, a as createTimeline, an as HydrationPluginOptions, ar as SelectionTicket, at as PermissionContextOptions, b as Vuetify0ThemeAdapter, bn as FilterFunction, br as BreakpointName, bt as LoggerOptions, c as Colors, cn as createHydrationPlugin, cr as useSelection, ct as PermissionTicket, d as ThemeContextOptions, dn as FormContextOptions, dr as RegistryOptions, dt as createPermissionsPlugin, en as useElementIntersection, er as createGroupContext, et as ProxyRegistryOptions, f as ThemeOptions, fn as FormOptions, fr as RegistryTicket, ft as usePermissions, g as createTheme, gn as FormValue, gr as EventHandler, gt as UseMutationObserverOptions, h as ThemeTicket, hn as FormValidationRule, hr as CleanupFunction, ht as MutationObserverRecord, i as TimelineTicket, in as HydrationOptions, ir as SelectionOptions, it as PermissionContext, j as useStorageContext, jn as FeaturePluginOptions, jr as ContextTrinity, jt as LocaleContext, k as provideStorageContext, kn as FeatureContextOptions, kr as toReactive, kt as ConsolaLoggerAdapter, l as ThemeColors, ln as useHydration, lr as RegistryContext, lt as createPermissions, m as ThemeRecord, mn as FormValidationResult, mr as useRegistry, mt as PermissionAdapterInterface, n as TimelineContextOptions, nn as HydrationContext, nr as SelectionContext, nt as ProxyModelOptions, o as createTimelineContext, on as createHydration, or as createSelection, ot as PermissionOptions, p as ThemePluginOptions, pn as FormTicket, pr as createRegistryContext, pt as PermissionAdapter, q as QueueContextOptions, qn as createTokensContext, qt as createSingle, r as TimelineOptions, rn as HydrationContextOptions, rr as SelectionContextOptions, rt as useProxyModel, s as useTimeline, sn as createHydrationContext, sr as createSelectionContext, st as PermissionPluginOptions, t as TimelineContext, tn as useIntersectionObserver, tr as useGroup, tt as useProxyRegistry, u as ThemeContext, un as FormContext, ur as RegistryContextOptions, ut as createPermissionsContext, v as createThemePlugin, vn as createFormContext, vr as useEventListener, vt as LoggerContext, w as StorageOptions, wn as Primitive, wr as BreakpointsPluginOptions, wt as createLoggerPlugin, x as ThemeAdapter, xn as FilterItem, xr as BreakpointsContext, xt as LoggerPluginOptions, y as useTheme, yn as useForm, yr as useWindowEventListener, yt as LoggerContextOptions, z as createStep, zn as TokenCollection, zr as useContext, zt as createLocalePlugin } from "./index-Bcj8Vovs.js";
|
|
4
4
|
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-BKc0YiL1.js";
|
|
5
5
|
import { a as isNullOrUndefined, c as isPrimitive, d as mergeDeep, i as isFunction, l as isString, n as isArray, o as isNumber, r as isBoolean, s as isObject, t as genId, u as isUndefined } from "./index-DIX3zaZG.js";
|
|
6
|
-
export { _default as Atom, AtomExpose, AtomProps, AtomSlots, Avatar, AvatarContext, AvatarFallbackProps, AvatarImageEmits, AvatarImageProps, AvatarRootProps, BreakpointName,
|
|
6
|
+
export { _default as Atom, AtomExpose, AtomProps, AtomSlots, Avatar, AvatarContext, AvatarFallbackProps, AvatarImageEmits, AvatarImageProps, AvatarRootProps, BreakpointName, BreakpointsContext, BreakpointsContextOptions, BreakpointsOptions, BreakpointsPluginOptions, COMMON_ELEMENTS, CleanupFunction, Colors, ConsolaLoggerAdapter, ContextKey, ContextTrinity, EventHandler, FeatureContext, FeatureContextOptions, FeatureOptions, FeaturePluginOptions, FeatureTicket, FilterFunction, FilterItem, FilterMode, FilterQuery, FlatTokenCollection, FormContext, FormContextOptions, FormOptions, FormTicket, FormValidationResult, FormValidationRule, FormValue, GroupContext, GroupContextOptions, GroupOptions, GroupTicket, HTMLElementName, HydrationContext, HydrationContextOptions, HydrationOptions, HydrationPluginOptions, IN_BROWSER, IntersectionObserverEntry, IntersectionObserverOptions, KeyHandler, LocaleAdapter, LocaleContext, LocaleContextOptions, LocaleOptions, LocalePluginOptions, LocaleRecord, LocaleTicket, LogLevel, LoggerAdapter, LoggerContext, LoggerContextOptions, LoggerOptions, LoggerPluginOptions, MemoryAdapter, MutationObserverRecord, PermissionAdapter, PermissionAdapterInterface, PermissionContext, PermissionContextOptions, PermissionOptions, PermissionPluginOptions, PermissionTicket, PinoLoggerAdapter, Plugin, PluginOptions, Popover, PopoverAnchorProps, PopoverContentEmits, PopoverContentProps, PopoverContext, PopoverRootProps, Primitive, ProxyModelOptions, ProxyRegistryContext, ProxyRegistryOptions, QueueContext, QueueContextOptions, QueueOptions, QueueTicket, RegistryContext, RegistryContextOptions, RegistryOptions, RegistryTicket, ResizeObserverEntry, ResizeObserverOptions, SELF_CLOSING_TAGS, SUPPORTS_INTERSECTION_OBSERVER, SUPPORTS_MATCH_MEDIA, SUPPORTS_MUTATION_OBSERVER, SUPPORTS_OBSERVER, SUPPORTS_TOUCH, SelectionContext, SelectionContextOptions, SelectionOptions, SelectionTicket, SelfClosingElement, SingleContext, SingleContextOptions, SingleOptions, SingleTicket, StepContext, StepContextOptions, StepOptions, StepTicket, StorageAdapter, StorageContext, StorageContextOptions, StorageOptions, StoragePluginOptions, StorageType, ThemeAdapter, ThemeColors, ThemeContext, ThemeContextOptions, ThemeOptions, ThemePluginOptions, ThemeRecord, ThemeTicket, TimelineContext, TimelineContextOptions, TimelineOptions, TimelineTicket, TokenAlias, TokenCollection, TokenContext, TokenContextOptions, TokenOptions, TokenPrimitive, TokenTicket, TokenValue, UseFilterOptions, UseFilterResult, UseMutationObserverOptions, Vuetify0LocaleAdapter, Vuetify0LoggerAdapter, Vuetify0ThemeAdapter, __LOGGER_ENABLED__, createBreakpoints, createBreakpointsContext, createBreakpointsPlugin, createContext, createFeatures, createFeaturesContext, createFeaturesPlugin, createForm, createFormContext, createGroup, createGroupContext, createHydration, createHydrationContext, createHydrationPlugin, createLocale, createLocaleContext, createLocalePlugin, createLogger, createLoggerContext, createLoggerPlugin, createPermissions, createPermissionsContext, createPermissionsPlugin, createPlugin, createQueue, createQueueContext, createRegistryContext, createSelection, createSelectionContext, createSingle, createSingleContext, createStep, createStepContext, createStorage, createStorageContext, createStoragePlugin, createTheme, createThemeContext, createThemePlugin, createTimeline, createTimelineContext, createTokens, createTokensContext, createTrinity, genId, isArray, isBoolean, isFunction, isNullOrUndefined, isNumber, isObject, isPrimitive, isSelfClosingTag, isString, isUndefined, mergeDeep, provideAvatarContext, provideContext, providePopoverContext, provideStorageContext, registry, toArray, toReactive, useAvatarContext, useBreakpoints, useContext, useDocumentEventListener, useElementIntersection, useElementSize, useEventListener, useFeatures, useFilter, useForm, useGroup, useHydration, useIntersectionObserver, useKeydown, useLocale, useLogger, useMutationObserver, usePermissions, usePopoverContext, useProxyModel, useProxyRegistry, useQueue, useRegistry, useResizeObserver, useSelection, useSingle, useStep, useStorage, useStorageContext, useTheme, useTimeline, useTokens, useWindowEventListener, version };
|
package/dist/index.js
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { n as SELF_CLOSING_TAGS, r as isSelfClosingTag, t as COMMON_ELEMENTS } from "./htmlElements-lF7PGahL.js";
|
|
2
|
-
import { a as
|
|
3
|
-
import { $ as
|
|
2
|
+
import { a as provideAvatarContext, c as Atom_default, i as Avatar, n as providePopoverContext, o as registry, r as usePopoverContext, s as useAvatarContext, t as Popover } from "./components-BJF0Dsww.js";
|
|
3
|
+
import { $ as useTokens, A as PermissionAdapter, At as createContext, B as useKeydown, C as useQueue, Ct as createHydrationContext, D as createPermissionsContext, Dt as toArray, E as createPermissions, Et as toReactive, F as useLocale, G as useForm, H as useIntersectionObserver, I as Vuetify0LocaleAdapter, J as createFeaturesContext, K as useFilter, L as createSingle, M as createLocale, Mt as useContext, N as createLocaleContext, O as createPermissionsPlugin, Ot as createTrinity, P as createLocalePlugin, Q as createTokensContext, R as createSingleContext, S as createQueueContext, St as createHydration, T as useProxyModel, Tt as useHydration, U as createForm, V as useElementIntersection, W as createFormContext, X as useFeatures, Y as createFeaturesPlugin, Z as createTokens, _ as createStepContext, _t as useWindowEventListener, a as createThemeContext, at as useSelection, b as useResizeObserver, bt as createBreakpointsPlugin, c as Vuetify0ThemeAdapter, ct as createLogger, d as createStoragePlugin, dt as useLogger, et as createGroup, f as provideStorageContext, ft as Vuetify0LoggerAdapter, g as createStep, gt as useEventListener, h as MemoryAdapter, ht as useDocumentEventListener, i as createTheme, it as createSelectionContext, j as useMutationObserver, jt as provideContext, k as usePermissions, kt as createPlugin, l as createStorage, lt as createLoggerContext, m as useStorageContext, mt as ConsolaLoggerAdapter, n as createTimelineContext, nt as useGroup, o as createThemePlugin, ot as createRegistryContext, p as useStorage, pt as PinoLoggerAdapter, q as createFeatures, r as useTimeline, rt as createSelection, s as useTheme, st as useRegistry, t as createTimeline, tt as createGroupContext, u as createStorageContext, ut as createLoggerPlugin, v as useStep, vt as createBreakpoints, w as useProxyRegistry, wt as createHydrationPlugin, x as createQueue, xt as useBreakpoints, y as useElementSize, yt as createBreakpointsContext, z as useSingle } from "./composables-D-M1DZRo.js";
|
|
4
4
|
import { a as isNullOrUndefined, c as isPrimitive, d as mergeDeep, i as isFunction, l as isString, n as isArray, o as isNumber, r as isBoolean, s as isObject, t as genId, u as isUndefined } from "./utilities-rsKHgU2m.js";
|
|
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-
|
|
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-B2jAuapu.js";
|
|
6
6
|
import "./constants-De5c3_aB.js";
|
|
7
7
|
|
|
8
|
-
export { Atom_default as Atom, Avatar,
|
|
8
|
+
export { Atom_default as Atom, Avatar, COMMON_ELEMENTS, ConsolaLoggerAdapter, IN_BROWSER, MemoryAdapter, PermissionAdapter, PinoLoggerAdapter, Popover, SELF_CLOSING_TAGS, SUPPORTS_INTERSECTION_OBSERVER, SUPPORTS_MATCH_MEDIA, SUPPORTS_MUTATION_OBSERVER, SUPPORTS_OBSERVER, SUPPORTS_TOUCH, Vuetify0LocaleAdapter, Vuetify0LoggerAdapter, Vuetify0ThemeAdapter, __LOGGER_ENABLED__, createBreakpoints, createBreakpointsContext, createBreakpointsPlugin, createContext, createFeatures, createFeaturesContext, createFeaturesPlugin, createForm, createFormContext, createGroup, createGroupContext, createHydration, createHydrationContext, createHydrationPlugin, createLocale, createLocaleContext, createLocalePlugin, createLogger, createLoggerContext, createLoggerPlugin, createPermissions, createPermissionsContext, createPermissionsPlugin, createPlugin, createQueue, createQueueContext, createRegistryContext, createSelection, createSelectionContext, createSingle, createSingleContext, createStep, createStepContext, createStorage, createStorageContext, createStoragePlugin, createTheme, createThemeContext, createThemePlugin, createTimeline, createTimelineContext, createTokens, createTokensContext, createTrinity, genId, isArray, isBoolean, isFunction, isNullOrUndefined, isNumber, isObject, isPrimitive, isSelfClosingTag, isString, isUndefined, mergeDeep, provideAvatarContext, provideContext, providePopoverContext, provideStorageContext, registry, toArray, toReactive, useAvatarContext, useBreakpoints, useContext, useDocumentEventListener, useElementIntersection, useElementSize, useEventListener, useFeatures, useFilter, useForm, useGroup, useHydration, useIntersectionObserver, useKeydown, useLocale, useLogger, useMutationObserver, usePermissions, usePopoverContext, useProxyModel, useProxyRegistry, useQueue, useRegistry, useResizeObserver, useSelection, useSingle, useStep, useStorage, useStorageContext, useTheme, useTimeline, useTokens, useWindowEventListener, version };
|