@vuetify/v0 0.0.6 → 0.0.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/browser/index.js +24 -17
- package/dist/components/index.d.ts +2 -2
- package/dist/components/index.js +3 -3
- package/dist/{components-B5k361i-.js → components-ClYPFhaF.js} +1 -1
- package/dist/composables/index.d.ts +2 -2
- package/dist/composables/index.js +2 -2
- package/dist/{composables-CAbYjAkR.js → composables-DkRocfS_.js} +24 -17
- package/dist/constants/index.js +1 -1
- package/dist/{globals-CHVv7nNV.js → globals-BQnaatWT.js} +1 -1
- package/dist/{index-BQfe0WBZ.d.ts → index-BVouO8cc.d.ts} +51 -51
- package/dist/{index-BhPlroXd.d.ts → index-BoDCUSPn.d.ts} +4 -3
- package/dist/index.d.ts +3 -3
- package/dist/index.js +3 -3
- package/package.json +1 -1
package/dist/browser/index.js
CHANGED
|
@@ -560,7 +560,7 @@ const SUPPORTS_MATCH_MEDIA = IN_BROWSER && "matchMedia" in window && typeof wind
|
|
|
560
560
|
const SUPPORTS_OBSERVER = IN_BROWSER && "ResizeObserver" in window;
|
|
561
561
|
const SUPPORTS_INTERSECTION_OBSERVER = IN_BROWSER && "IntersectionObserver" in window;
|
|
562
562
|
const SUPPORTS_MUTATION_OBSERVER = IN_BROWSER && "MutationObserver" in window;
|
|
563
|
-
const version = "0.0.
|
|
563
|
+
const version = "0.0.7";
|
|
564
564
|
const __LOGGER_ENABLED__ = false;
|
|
565
565
|
|
|
566
566
|
//#endregion
|
|
@@ -2093,7 +2093,7 @@ function useForm(options) {
|
|
|
2093
2093
|
if (ticket.isValid.value === false) return false;
|
|
2094
2094
|
if (ticket.isValid.value === null) return null;
|
|
2095
2095
|
}
|
|
2096
|
-
return hasFields
|
|
2096
|
+
return hasFields || null;
|
|
2097
2097
|
});
|
|
2098
2098
|
function reset() {
|
|
2099
2099
|
for (const ticket of registry$1.values()) ticket.reset();
|
|
@@ -2125,7 +2125,7 @@ function useForm(options) {
|
|
|
2125
2125
|
isValid$1.value = null;
|
|
2126
2126
|
}
|
|
2127
2127
|
async function validate$1(silent = false) {
|
|
2128
|
-
if (rules.length === 0) return true;
|
|
2128
|
+
if (rules.length === 0) return isValid$1.value = true;
|
|
2129
2129
|
isValidating$1.value = true;
|
|
2130
2130
|
try {
|
|
2131
2131
|
const errorMessages = (await Promise.all(rules.map((rule) => rule(model.value)))).filter((result) => typeof result === "string");
|
|
@@ -2538,18 +2538,19 @@ var Vuetify0LocaleAdapter = class {
|
|
|
2538
2538
|
function createLocale(namespace = "v0:locale", options = {}) {
|
|
2539
2539
|
const { adapter = new Vuetify0LocaleAdapter(), messages = {} } = options;
|
|
2540
2540
|
const [useLocaleContext, _provideLocaleContext] = createContext(namespace);
|
|
2541
|
+
const tokens = useTokens({ ...messages }, { flat: true });
|
|
2541
2542
|
const registry$1 = useSingle();
|
|
2542
2543
|
for (const id in messages) {
|
|
2543
2544
|
registry$1.register({
|
|
2544
|
-
|
|
2545
|
-
id
|
|
2545
|
+
id,
|
|
2546
|
+
value: messages[id]
|
|
2546
2547
|
});
|
|
2547
2548
|
if (id === options.default && !registry$1.selectedId.value) registry$1.select(id);
|
|
2548
2549
|
}
|
|
2549
2550
|
function t(key, ...params) {
|
|
2550
2551
|
const locale = registry$1.selectedId.value;
|
|
2551
2552
|
if (!locale) return key;
|
|
2552
|
-
const message =
|
|
2553
|
+
const message = (registry$1.get(locale)?.value)?.[key];
|
|
2553
2554
|
const template = typeof message === "string" ? resolve(locale, message) : key;
|
|
2554
2555
|
return adapter.t(template, ...params);
|
|
2555
2556
|
}
|
|
@@ -2557,13 +2558,20 @@ function createLocale(namespace = "v0:locale", options = {}) {
|
|
|
2557
2558
|
return adapter.n(value, registry$1.selectedId.value, ...params);
|
|
2558
2559
|
}
|
|
2559
2560
|
function resolve(locale, str) {
|
|
2560
|
-
return str.replace(/{([a-zA-Z0-9.-_]+)}/g, (match,
|
|
2561
|
-
const [
|
|
2562
|
-
const
|
|
2563
|
-
const
|
|
2564
|
-
const
|
|
2565
|
-
const
|
|
2566
|
-
|
|
2561
|
+
return str.replace(/{([a-zA-Z0-9.-_]+)}/g, (match, key) => {
|
|
2562
|
+
const [prefix, ...rest] = key.split(".");
|
|
2563
|
+
const path = rest.join(".");
|
|
2564
|
+
const prefixTicket = registry$1.get(prefix);
|
|
2565
|
+
const target = prefixTicket ? prefix : locale;
|
|
2566
|
+
const name = prefixTicket ? path : key;
|
|
2567
|
+
const resolved = (registry$1.get(target)?.value)?.[name];
|
|
2568
|
+
if (typeof resolved === "string") return resolve(target, resolved);
|
|
2569
|
+
const alias = `{${key}}`;
|
|
2570
|
+
if (tokens.isAlias(alias)) {
|
|
2571
|
+
const result = tokens.resolve(alias);
|
|
2572
|
+
return typeof result === "string" ? result : match;
|
|
2573
|
+
}
|
|
2574
|
+
return match;
|
|
2567
2575
|
});
|
|
2568
2576
|
}
|
|
2569
2577
|
const context = {
|
|
@@ -2601,10 +2609,10 @@ function useLocale() {
|
|
|
2601
2609
|
*
|
|
2602
2610
|
* @see https://0.vuetifyjs.com/composables/plugins/use-locale
|
|
2603
2611
|
*/
|
|
2604
|
-
function createLocalePlugin(
|
|
2605
|
-
const { adapter = new Vuetify0LocaleAdapter(), messages = {} } =
|
|
2606
|
-
const [, provideLocaleTokenContext, tokensContext] = createTokensContext("v0:locale:tokens", messages);
|
|
2612
|
+
function createLocalePlugin(_options = {}) {
|
|
2613
|
+
const { adapter = new Vuetify0LocaleAdapter(), messages = {},...options } = _options;
|
|
2607
2614
|
const [, provideLocaleContext, localeContext] = createLocale("v0:locale", {
|
|
2615
|
+
...options,
|
|
2608
2616
|
adapter,
|
|
2609
2617
|
messages
|
|
2610
2618
|
});
|
|
@@ -2612,7 +2620,6 @@ function createLocalePlugin(options = {}) {
|
|
|
2612
2620
|
namespace: "v0:locale",
|
|
2613
2621
|
provide: (app) => {
|
|
2614
2622
|
provideLocaleContext(localeContext, app);
|
|
2615
|
-
provideLocaleTokenContext(tokensContext, app);
|
|
2616
2623
|
}
|
|
2617
2624
|
});
|
|
2618
2625
|
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import "../index-C_lAPFXS.js";
|
|
2
|
-
import { C as AvatarImageEmits, D as AtomProps, E as AtomExpose, O as AtomSlots, S as useAvatarContext, T as AvatarFallbackProps, _ as Avatar, a as Popover, b as provideAvatarContext, c as PopoverAnchorProps, d as providePopoverContext, f as usePopoverContext, g as Breakpoints, h as Context, i as ThemeSlots, k as _default, l as PopoverContext, m as _default$1, n as ThemeRootProps, o as PopoverContentEmits, p as _default$2, r as ThemeRootSlots, s as PopoverContentProps, t as Theme, u as PopoverRootProps, v as AvatarContext, w as AvatarImageProps, x as registry, y as AvatarRootProps } from "../index-
|
|
3
|
-
import "../index-
|
|
2
|
+
import { C as AvatarImageEmits, D as AtomProps, E as AtomExpose, O as AtomSlots, S as useAvatarContext, T as AvatarFallbackProps, _ as Avatar, a as Popover, b as provideAvatarContext, c as PopoverAnchorProps, d as providePopoverContext, f as usePopoverContext, g as Breakpoints, h as Context, i as ThemeSlots, k as _default, l as PopoverContext, m as _default$1, n as ThemeRootProps, o as PopoverContentEmits, p as _default$2, r as ThemeRootSlots, s as PopoverContentProps, t as Theme, u as PopoverRootProps, v as AvatarContext, w as AvatarImageProps, x as registry, y as AvatarRootProps } from "../index-BVouO8cc.js";
|
|
3
|
+
import "../index-BoDCUSPn.js";
|
|
4
4
|
export { _default as Atom, AtomExpose, AtomProps, AtomSlots, Avatar, AvatarContext, AvatarFallbackProps, AvatarImageEmits, AvatarImageProps, AvatarRootProps, Breakpoints, Context, _default$1 as Hydration, _default$2 as HydrationRoot, Popover, PopoverAnchorProps, PopoverContentEmits, PopoverContentProps, PopoverContext, PopoverRootProps, Theme, ThemeRootProps, ThemeRootSlots, ThemeSlots, provideAvatarContext, providePopoverContext, registry, useAvatarContext, usePopoverContext };
|
package/dist/components/index.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import "../htmlElements-lF7PGahL.js";
|
|
2
|
-
import { a as HydrationRoot_default, c as Breakpoints, d as registry, f as useAvatarContext, i as usePopoverContext, l as Avatar, n as Popover, o as Hydration_default, p as Atom_default, r as providePopoverContext, s as Context, t as Theme, u as provideAvatarContext } from "../components-
|
|
3
|
-
import "../composables-
|
|
2
|
+
import { a as HydrationRoot_default, c as Breakpoints, d as registry, f as useAvatarContext, i as usePopoverContext, l as Avatar, n as Popover, o as Hydration_default, p as Atom_default, r as providePopoverContext, s as Context, t as Theme, u as provideAvatarContext } from "../components-ClYPFhaF.js";
|
|
3
|
+
import "../composables-DkRocfS_.js";
|
|
4
4
|
import "../utilities-rsKHgU2m.js";
|
|
5
|
-
import "../globals-
|
|
5
|
+
import "../globals-BQnaatWT.js";
|
|
6
6
|
|
|
7
7
|
export { Atom_default as Atom, Avatar, Breakpoints, Context, Hydration_default as Hydration, HydrationRoot_default as HydrationRoot, Popover, Theme, provideAvatarContext, providePopoverContext, registry, useAvatarContext, usePopoverContext };
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { r as isSelfClosingTag } from "./htmlElements-lF7PGahL.js";
|
|
2
|
-
import { W as createRegistryContext, i as useTheme, it as createHydration, n as createTheme, ot as provideHydrationContext, pt as createContext, rt as useBreakpoints, st as useHydration, tt as createBreakpoints } from "./composables-
|
|
2
|
+
import { W as createRegistryContext, i as useTheme, it as createHydration, n as createTheme, ot as provideHydrationContext, pt as createContext, rt as useBreakpoints, st as useHydration, tt as createBreakpoints } from "./composables-DkRocfS_.js";
|
|
3
3
|
import { t as genId } from "./utilities-rsKHgU2m.js";
|
|
4
4
|
import { Fragment, computed, createBlock, createCommentVNode, createElementBlock, createPropsRestProxy, defineComponent, guardReactiveProps, mergeModels, mergeProps, normalizeProps, normalizeStyle, onMounted, onUnmounted, openBlock, renderSlot, resolveDynamicComponent, toRef, unref, useAttrs, useId, useModel, useTemplateRef, vShow, withCtx, withDirectives } from "vue";
|
|
5
5
|
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import "../index-C_lAPFXS.js";
|
|
2
|
-
import { $ as PermissionAdapterInterface, $n as
|
|
3
|
-
export { BreakpointName, BreakpointsContext, BreakpointsOptions, BreakpointsPluginOptions, CleanupFunction, Colors, ConsolaLoggerAdapter, ContextKey, ContextTrinity, EventHandler, FeatureContext, FeatureOptions, FeaturePluginOptions, FeatureTicket, FilterFunction, FilterItem, FilterMode, FilterQuery, FlatTokenCollection, FormContext, FormOptions, FormTicket, FormValidationResult, FormValidationRule, FormValue, GroupContext, GroupOptions, GroupTicket, HydrationContext, IntersectionObserverEntry, IntersectionObserverOptions, KeyHandler, LocaleAdapter, LocaleContext, LocaleOptions, LocalePluginOptions, LocaleTicket, LogLevel, LoggerAdapter, LoggerContext, LoggerOptions, MemoryAdapter, MutationObserverRecord, PermissionAdapter, PermissionAdapterInterface, PermissionContext, PermissionOptions, PermissionPluginOptions, PermissionTicket, PinoLoggerAdapter, Plugin, PluginOptions, Primitive, ProxyModelOptions, ProxyRegistryContext, ProxyRegistryOptions, QueueContext, QueueOptions, QueueTicket, RegistryContext, RegistryOptions, RegistryTicket, ResizeObserverEntry, ResizeObserverOptions, SelectionContext, SelectionOptions, SelectionTicket, SingleContext, SingleOptions, SingleTicket, StepContext, StepOptions, StepTicket, StorageAdapter, StorageContext, StorageOptions, StorageType, ThemeAdapter, ThemeColors, ThemeContext, ThemeOptions, ThemePluginOptions, ThemeRecord, ThemeTicket, TimelineContext, TimelineOptions, TimelineTicket, TokenAlias, TokenCollection, TokenContext, TokenOptions, TokenPrimitive, TokenTicket, TokenValue, UseFilterOptions, UseFilterResult, UseMutationObserverOptions, Vuetify0LocaleAdapter, Vuetify0LoggerAdapter, Vuetify0ThemeAdapter, createBreakpoints, createBreakpointsPlugin, createContext, createFeatures, createFeaturesPlugin, createGroupContext, createHydration, createHydrationPlugin, createLocale, createLocalePlugin, createLogger, createLoggerPlugin, createPermissions, createPermissionsPlugin, createPlugin, createRegistryContext, createSelectionContext, createSingleContext, createStepContext, createStorage, createStoragePlugin, createTheme, createThemePlugin, createTokensContext, createTrinity, provideContext, provideHydrationContext, provideStorageContext, toArray, toReactive, useBreakpoints, useContext, useDocumentEventListener, useElementIntersection, useElementSize, useEventListener, useFeatures, useFilter, useForm, useGroup, useHydration, useHydrationContext, useIntersectionObserver, useKeydown, useLocale, useLogger, useMutationObserver, usePermissions, useProxyModel, useProxyRegistry, useQueue, useRegistry, useResizeObserver, useSelection, useSingle, useStep, useStorage, useStorageContext, useTheme, useTimeline, useTokens, useWindowEventListener };
|
|
2
|
+
import { $ as PermissionAdapterInterface, $n as createContext, $t as UseFilterResult, A as createStepContext, An as RegistryTicket, At as IntersectionObserverEntry, B as ProxyRegistryContext, Bn as BreakpointsOptions, Bt as FormContext, C as useStorageContext, Cn as SelectionContext, Ct as SingleContext, D as StepContext, Dn as useSelection, Dt as useSingle, E as MemoryAdapter, En as createSelectionContext, Et as createSingleContext, F as useResizeObserver, Fn as useDocumentEventListener, Ft as createHydration, G as PermissionContext, Gn as toReactive, Gt as FormValue, H as useProxyRegistry, Hn as createBreakpoints, Ht as FormTicket, I as QueueContext, In as useEventListener, It as createHydrationPlugin, J as PermissionTicket, Jn as createTrinity, Jt as FilterItem, K as PermissionOptions, Kn as toArray, Kt as useForm, L as QueueOptions, Ln as useWindowEventListener, Lt as provideHydrationContext, M as ResizeObserverEntry, Mn as useRegistry, Mt as useElementIntersection, N as ResizeObserverOptions, Nn as CleanupFunction, Nt as useIntersectionObserver, O as StepOptions, On as RegistryContext, Ot as KeyHandler, P as useElementSize, Pn as EventHandler, Pt as HydrationContext, Q as PermissionAdapter, Qn as ContextKey, Qt as UseFilterOptions, R as QueueTicket, Rn as BreakpointName, Rt as useHydration, S as useStorage, Sn as useGroup, St as LocaleAdapter, T as StorageType, Tn as SelectionTicket, Tt as SingleTicket, U as ProxyModelOptions, Un as createBreakpointsPlugin, Ut as FormValidationResult, V as ProxyRegistryOptions, Vn as BreakpointsPluginOptions, Vt as FormOptions, W as useProxyModel, Wn as useBreakpoints, Wt as FormValidationRule, X as createPermissionsPlugin, Xn as PluginOptions, Xt as FilterQuery, Y as createPermissions, Yn as Plugin, Yt as FilterMode, Z as usePermissions, Zn as createPlugin, Zt as Primitive, _ as StorageContext, _n as useTokens, _t as LocaleTicket, a as Colors, an as createFeatures, at as createLogger, b as createStoragePlugin, bn as GroupTicket, bt as useLocale, c as ThemeOptions, cn as FlatTokenCollection, ct as LogLevel, d as ThemeTicket, dn as TokenContext, dt as ConsolaLoggerAdapter, en as useFilter, er as provideContext, et as MutationObserverRecord, f as createTheme, fn as TokenOptions, ft as LoggerAdapter, g as ThemeAdapter, gn as createTokensContext, gt as LocaleRecord, h as Vuetify0ThemeAdapter, hn as TokenValue, ht as LocalePluginOptions, i as useTimeline, in as FeatureTicket, it as LoggerOptions, j as useStep, jn as createRegistryContext, jt as IntersectionObserverOptions, k as StepTicket, kn as RegistryOptions, kt as useKeydown, l as ThemePluginOptions, ln as TokenAlias, lt as Vuetify0LoggerAdapter, m as useTheme, mn as TokenTicket, mt as LocaleOptions, n as TimelineOptions, nn as FeatureOptions, nt as useMutationObserver, o as ThemeColors, on as createFeaturesPlugin, ot as createLoggerPlugin, p as createThemePlugin, pn as TokenPrimitive, pt as LocaleContext, q as PermissionPluginOptions, qn as ContextTrinity, qt as FilterFunction, r as TimelineTicket, rn as FeaturePluginOptions, rt as LoggerContext, s as ThemeContext, sn as useFeatures, st as useLogger, t as TimelineContext, tn as FeatureContext, tr as useContext, tt as UseMutationObserverOptions, u as ThemeRecord, un as TokenCollection, ut as PinoLoggerAdapter, v as StorageOptions, vn as GroupContext, vt as createLocale, w as StorageAdapter, wn as SelectionOptions, wt as SingleOptions, x as provideStorageContext, xn as createGroupContext, xt as Vuetify0LocaleAdapter, y as createStorage, yn as GroupOptions, yt as createLocalePlugin, z as useQueue, zn as BreakpointsContext, zt as useHydrationContext } from "../index-BoDCUSPn.js";
|
|
3
|
+
export { BreakpointName, BreakpointsContext, BreakpointsOptions, BreakpointsPluginOptions, CleanupFunction, Colors, ConsolaLoggerAdapter, ContextKey, ContextTrinity, EventHandler, FeatureContext, FeatureOptions, FeaturePluginOptions, FeatureTicket, FilterFunction, FilterItem, FilterMode, FilterQuery, FlatTokenCollection, FormContext, FormOptions, FormTicket, FormValidationResult, FormValidationRule, FormValue, GroupContext, GroupOptions, GroupTicket, HydrationContext, IntersectionObserverEntry, IntersectionObserverOptions, KeyHandler, LocaleAdapter, LocaleContext, LocaleOptions, LocalePluginOptions, LocaleRecord, LocaleTicket, LogLevel, LoggerAdapter, LoggerContext, LoggerOptions, MemoryAdapter, MutationObserverRecord, PermissionAdapter, PermissionAdapterInterface, PermissionContext, PermissionOptions, PermissionPluginOptions, PermissionTicket, PinoLoggerAdapter, Plugin, PluginOptions, Primitive, ProxyModelOptions, ProxyRegistryContext, ProxyRegistryOptions, QueueContext, QueueOptions, QueueTicket, RegistryContext, RegistryOptions, RegistryTicket, ResizeObserverEntry, ResizeObserverOptions, SelectionContext, SelectionOptions, SelectionTicket, SingleContext, SingleOptions, SingleTicket, StepContext, StepOptions, StepTicket, StorageAdapter, StorageContext, StorageOptions, StorageType, ThemeAdapter, ThemeColors, ThemeContext, ThemeOptions, ThemePluginOptions, ThemeRecord, ThemeTicket, TimelineContext, TimelineOptions, TimelineTicket, TokenAlias, TokenCollection, TokenContext, TokenOptions, TokenPrimitive, TokenTicket, TokenValue, UseFilterOptions, UseFilterResult, UseMutationObserverOptions, Vuetify0LocaleAdapter, Vuetify0LoggerAdapter, Vuetify0ThemeAdapter, createBreakpoints, createBreakpointsPlugin, createContext, createFeatures, createFeaturesPlugin, createGroupContext, createHydration, createHydrationPlugin, createLocale, createLocalePlugin, createLogger, createLoggerPlugin, createPermissions, createPermissionsPlugin, createPlugin, createRegistryContext, createSelectionContext, createSingleContext, createStepContext, createStorage, createStoragePlugin, createTheme, createThemePlugin, createTokensContext, createTrinity, provideContext, provideHydrationContext, provideStorageContext, toArray, toReactive, useBreakpoints, useContext, useDocumentEventListener, useElementIntersection, useElementSize, useEventListener, useFeatures, useFilter, useForm, useGroup, useHydration, useHydrationContext, useIntersectionObserver, useKeydown, useLocale, useLogger, useMutationObserver, usePermissions, useProxyModel, useProxyRegistry, useQueue, useRegistry, useResizeObserver, useSelection, useSingle, useStep, useStorage, useStorageContext, useTheme, useTimeline, useTokens, useWindowEventListener };
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { $ as useEventListener, A as useKeydown, B as createGroupContext, C as useMutationObserver, D as Vuetify0LocaleAdapter, E as useLocale, F as createFeatures, G as useRegistry, H as createSelectionContext, I as createFeaturesPlugin, J as useLogger, K as createLogger, L as useFeatures, M as useIntersectionObserver, N as useForm, O as createSingleContext, P as useFilter, Q as useDocumentEventListener, R as createTokensContext, S as PermissionAdapter, T as createLocalePlugin, U as useSelection, V as useGroup, W as createRegistryContext, X as PinoLoggerAdapter, Y as Vuetify0LoggerAdapter, Z as ConsolaLoggerAdapter, _ as useProxyRegistry, a as Vuetify0ThemeAdapter, at as createHydrationPlugin, b as createPermissionsPlugin, c as provideStorageContext, ct as useHydrationContext, d as MemoryAdapter, dt as createTrinity, et as useWindowEventListener, f as createStepContext, ft as createPlugin, g as useQueue, h as useResizeObserver, ht as useContext, i as useTheme, it as createHydration, j as useElementIntersection, k as useSingle, l as useStorage, lt as toReactive, m as useElementSize, mt as provideContext, n as createTheme, nt as createBreakpointsPlugin, o as createStorage, ot as provideHydrationContext, p as useStep, pt as createContext, q as createLoggerPlugin, r as createThemePlugin, rt as useBreakpoints, s as createStoragePlugin, st as useHydration, t as useTimeline, tt as createBreakpoints, u as useStorageContext, ut as toArray, v as useProxyModel, w as createLocale, x as usePermissions, y as createPermissions, z as useTokens } from "../composables-
|
|
1
|
+
import { $ as useEventListener, A as useKeydown, B as createGroupContext, C as useMutationObserver, D as Vuetify0LocaleAdapter, E as useLocale, F as createFeatures, G as useRegistry, H as createSelectionContext, I as createFeaturesPlugin, J as useLogger, K as createLogger, L as useFeatures, M as useIntersectionObserver, N as useForm, O as createSingleContext, P as useFilter, Q as useDocumentEventListener, R as createTokensContext, S as PermissionAdapter, T as createLocalePlugin, U as useSelection, V as useGroup, W as createRegistryContext, X as PinoLoggerAdapter, Y as Vuetify0LoggerAdapter, Z as ConsolaLoggerAdapter, _ as useProxyRegistry, a as Vuetify0ThemeAdapter, at as createHydrationPlugin, b as createPermissionsPlugin, c as provideStorageContext, ct as useHydrationContext, d as MemoryAdapter, dt as createTrinity, et as useWindowEventListener, f as createStepContext, ft as createPlugin, g as useQueue, h as useResizeObserver, ht as useContext, i as useTheme, it as createHydration, j as useElementIntersection, k as useSingle, l as useStorage, lt as toReactive, m as useElementSize, mt as provideContext, n as createTheme, nt as createBreakpointsPlugin, o as createStorage, ot as provideHydrationContext, p as useStep, pt as createContext, q as createLoggerPlugin, r as createThemePlugin, rt as useBreakpoints, s as createStoragePlugin, st as useHydration, t as useTimeline, tt as createBreakpoints, u as useStorageContext, ut as toArray, v as useProxyModel, w as createLocale, x as usePermissions, y as createPermissions, z as useTokens } from "../composables-DkRocfS_.js";
|
|
2
2
|
import "../utilities-rsKHgU2m.js";
|
|
3
|
-
import "../globals-
|
|
3
|
+
import "../globals-BQnaatWT.js";
|
|
4
4
|
|
|
5
5
|
export { ConsolaLoggerAdapter, MemoryAdapter, PermissionAdapter, PinoLoggerAdapter, Vuetify0LocaleAdapter, Vuetify0LoggerAdapter, Vuetify0ThemeAdapter, createBreakpoints, createBreakpointsPlugin, createContext, createFeatures, createFeaturesPlugin, createGroupContext, createHydration, createHydrationPlugin, createLocale, createLocalePlugin, createLogger, createLoggerPlugin, createPermissions, createPermissionsPlugin, createPlugin, createRegistryContext, createSelectionContext, createSingleContext, createStepContext, createStorage, createStoragePlugin, createTheme, createThemePlugin, createTokensContext, createTrinity, provideContext, provideHydrationContext, provideStorageContext, toArray, toReactive, useBreakpoints, useContext, useDocumentEventListener, useElementIntersection, useElementSize, useEventListener, useFeatures, useFilter, useForm, useGroup, useHydration, useHydrationContext, useIntersectionObserver, useKeydown, useLocale, useLogger, useMutationObserver, usePermissions, useProxyModel, useProxyRegistry, useQueue, useRegistry, useResizeObserver, useSelection, useSingle, useStep, useStorage, useStorageContext, useTheme, useTimeline, useTokens, useWindowEventListener };
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { a as isNullOrUndefined, d as mergeDeep, i as isFunction, l as isString, n as isArray, r as isBoolean, s as isObject, t as genId, u as isUndefined } from "./utilities-rsKHgU2m.js";
|
|
2
|
-
import { a as SUPPORTS_OBSERVER, i as SUPPORTS_MUTATION_OBSERVER, n as SUPPORTS_INTERSECTION_OBSERVER, s as __LOGGER_ENABLED__, t as IN_BROWSER } from "./globals-
|
|
2
|
+
import { a as SUPPORTS_OBSERVER, i as SUPPORTS_MUTATION_OBSERVER, n as SUPPORTS_INTERSECTION_OBSERVER, s as __LOGGER_ENABLED__, t as IN_BROWSER } from "./globals-BQnaatWT.js";
|
|
3
3
|
import { computed, getCurrentInstance, getCurrentScope, inject, isRef, onMounted, onScopeDispose, onUnmounted, provide, reactive, readonly, ref, shallowReactive, shallowReadonly, shallowRef, toRef, toValue, unref, watch } from "vue";
|
|
4
4
|
|
|
5
5
|
//#region src/composables/createContext/index.ts
|
|
@@ -1915,7 +1915,7 @@ function useForm(options) {
|
|
|
1915
1915
|
if (ticket.isValid.value === false) return false;
|
|
1916
1916
|
if (ticket.isValid.value === null) return null;
|
|
1917
1917
|
}
|
|
1918
|
-
return hasFields
|
|
1918
|
+
return hasFields || null;
|
|
1919
1919
|
});
|
|
1920
1920
|
function reset() {
|
|
1921
1921
|
for (const ticket of registry.values()) ticket.reset();
|
|
@@ -1947,7 +1947,7 @@ function useForm(options) {
|
|
|
1947
1947
|
isValid$1.value = null;
|
|
1948
1948
|
}
|
|
1949
1949
|
async function validate$1(silent = false) {
|
|
1950
|
-
if (rules.length === 0) return true;
|
|
1950
|
+
if (rules.length === 0) return isValid$1.value = true;
|
|
1951
1951
|
isValidating$1.value = true;
|
|
1952
1952
|
try {
|
|
1953
1953
|
const errorMessages = (await Promise.all(rules.map((rule) => rule(model.value)))).filter((result) => typeof result === "string");
|
|
@@ -2360,18 +2360,19 @@ var Vuetify0LocaleAdapter = class {
|
|
|
2360
2360
|
function createLocale(namespace = "v0:locale", options = {}) {
|
|
2361
2361
|
const { adapter = new Vuetify0LocaleAdapter(), messages = {} } = options;
|
|
2362
2362
|
const [useLocaleContext, _provideLocaleContext] = createContext(namespace);
|
|
2363
|
+
const tokens = useTokens({ ...messages }, { flat: true });
|
|
2363
2364
|
const registry = useSingle();
|
|
2364
2365
|
for (const id in messages) {
|
|
2365
2366
|
registry.register({
|
|
2366
|
-
|
|
2367
|
-
id
|
|
2367
|
+
id,
|
|
2368
|
+
value: messages[id]
|
|
2368
2369
|
});
|
|
2369
2370
|
if (id === options.default && !registry.selectedId.value) registry.select(id);
|
|
2370
2371
|
}
|
|
2371
2372
|
function t(key, ...params) {
|
|
2372
2373
|
const locale = registry.selectedId.value;
|
|
2373
2374
|
if (!locale) return key;
|
|
2374
|
-
const message =
|
|
2375
|
+
const message = (registry.get(locale)?.value)?.[key];
|
|
2375
2376
|
const template = typeof message === "string" ? resolve(locale, message) : key;
|
|
2376
2377
|
return adapter.t(template, ...params);
|
|
2377
2378
|
}
|
|
@@ -2379,13 +2380,20 @@ function createLocale(namespace = "v0:locale", options = {}) {
|
|
|
2379
2380
|
return adapter.n(value, registry.selectedId.value, ...params);
|
|
2380
2381
|
}
|
|
2381
2382
|
function resolve(locale, str) {
|
|
2382
|
-
return str.replace(/{([a-zA-Z0-9.-_]+)}/g, (match,
|
|
2383
|
-
const [
|
|
2384
|
-
const
|
|
2385
|
-
const
|
|
2386
|
-
const
|
|
2387
|
-
const
|
|
2388
|
-
|
|
2383
|
+
return str.replace(/{([a-zA-Z0-9.-_]+)}/g, (match, key) => {
|
|
2384
|
+
const [prefix, ...rest] = key.split(".");
|
|
2385
|
+
const path = rest.join(".");
|
|
2386
|
+
const prefixTicket = registry.get(prefix);
|
|
2387
|
+
const target = prefixTicket ? prefix : locale;
|
|
2388
|
+
const name = prefixTicket ? path : key;
|
|
2389
|
+
const resolved = (registry.get(target)?.value)?.[name];
|
|
2390
|
+
if (typeof resolved === "string") return resolve(target, resolved);
|
|
2391
|
+
const alias = `{${key}}`;
|
|
2392
|
+
if (tokens.isAlias(alias)) {
|
|
2393
|
+
const result = tokens.resolve(alias);
|
|
2394
|
+
return typeof result === "string" ? result : match;
|
|
2395
|
+
}
|
|
2396
|
+
return match;
|
|
2389
2397
|
});
|
|
2390
2398
|
}
|
|
2391
2399
|
const context = {
|
|
@@ -2423,10 +2431,10 @@ function useLocale() {
|
|
|
2423
2431
|
*
|
|
2424
2432
|
* @see https://0.vuetifyjs.com/composables/plugins/use-locale
|
|
2425
2433
|
*/
|
|
2426
|
-
function createLocalePlugin(
|
|
2427
|
-
const { adapter = new Vuetify0LocaleAdapter(), messages = {} } =
|
|
2428
|
-
const [, provideLocaleTokenContext, tokensContext] = createTokensContext("v0:locale:tokens", messages);
|
|
2434
|
+
function createLocalePlugin(_options = {}) {
|
|
2435
|
+
const { adapter = new Vuetify0LocaleAdapter(), messages = {},...options } = _options;
|
|
2429
2436
|
const [, provideLocaleContext, localeContext] = createLocale("v0:locale", {
|
|
2437
|
+
...options,
|
|
2430
2438
|
adapter,
|
|
2431
2439
|
messages
|
|
2432
2440
|
});
|
|
@@ -2434,7 +2442,6 @@ function createLocalePlugin(options = {}) {
|
|
|
2434
2442
|
namespace: "v0:locale",
|
|
2435
2443
|
provide: (app) => {
|
|
2436
2444
|
provideLocaleContext(localeContext, app);
|
|
2437
|
-
provideLocaleTokenContext(tokensContext, app);
|
|
2438
2445
|
}
|
|
2439
2446
|
});
|
|
2440
2447
|
}
|
package/dist/constants/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { n as SELF_CLOSING_TAGS, r as isSelfClosingTag, t as COMMON_ELEMENTS } from "../htmlElements-lF7PGahL.js";
|
|
2
|
-
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-
|
|
2
|
+
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-BQnaatWT.js";
|
|
3
3
|
import "../constants-De5c3_aB.js";
|
|
4
4
|
|
|
5
5
|
export { COMMON_ELEMENTS, IN_BROWSER, SELF_CLOSING_TAGS, SUPPORTS_INTERSECTION_OBSERVER, SUPPORTS_MATCH_MEDIA, SUPPORTS_MUTATION_OBSERVER, SUPPORTS_OBSERVER, SUPPORTS_TOUCH, __LOGGER_ENABLED__, isSelfClosingTag, version };
|
|
@@ -5,7 +5,7 @@ const SUPPORTS_MATCH_MEDIA = IN_BROWSER && "matchMedia" in window && typeof wind
|
|
|
5
5
|
const SUPPORTS_OBSERVER = IN_BROWSER && "ResizeObserver" in window;
|
|
6
6
|
const SUPPORTS_INTERSECTION_OBSERVER = IN_BROWSER && "IntersectionObserver" in window;
|
|
7
7
|
const SUPPORTS_MUTATION_OBSERVER = IN_BROWSER && "MutationObserver" in window;
|
|
8
|
-
const version = "0.0.
|
|
8
|
+
const version = "0.0.7";
|
|
9
9
|
const __LOGGER_ENABLED__ = process.env.NODE_ENV !== "production" || process.env.VITE_LOGGER_ENABLED === "true";
|
|
10
10
|
|
|
11
11
|
//#endregion
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { t as DOMElement } from "./index-C_lAPFXS.js";
|
|
2
|
-
import {
|
|
3
|
-
import * as
|
|
2
|
+
import { An as RegistryTicket, Bn as BreakpointsOptions, On as RegistryContext, Pt as HydrationContext, Qn as ContextKey, d as ThemeTicket, s as ThemeContext, zn as BreakpointsContext } from "./index-BoDCUSPn.js";
|
|
3
|
+
import * as vue182 from "vue";
|
|
4
4
|
import { ComputedGetter, InjectionKey, ShallowRef, TemplateRef } from "vue";
|
|
5
5
|
|
|
6
6
|
//#region src/components/Atom/Atom.vue.d.ts
|
|
@@ -16,12 +16,12 @@ interface AtomExpose {
|
|
|
16
16
|
}
|
|
17
17
|
interface AtomPrivateProps extends AtomProps {}
|
|
18
18
|
declare const _default$2: <T extends Record<string, any> = {}>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: __VLS_PrettifyLocal<Pick<NonNullable<Awaited<typeof __VLS_setup>>, "attrs" | "emit" | "slots">>, __VLS_expose?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
|
|
19
|
-
props: __VLS_PrettifyLocal<Pick<Partial<{}> & Omit<{} &
|
|
20
|
-
expose(exposed:
|
|
19
|
+
props: __VLS_PrettifyLocal<Pick<Partial<{}> & Omit<{} & vue182.VNodeProps & vue182.AllowedComponentProps & vue182.ComponentCustomProps, never>, never> & AtomPrivateProps & {}> & vue182.PublicProps;
|
|
20
|
+
expose(exposed: vue182.ShallowUnwrapRef<AtomExpose>): void;
|
|
21
21
|
attrs: any;
|
|
22
22
|
slots: AtomSlots<T>;
|
|
23
23
|
emit: {};
|
|
24
|
-
}>) =>
|
|
24
|
+
}>) => vue182.VNode & {
|
|
25
25
|
__ctx?: Awaited<typeof __VLS_setup>;
|
|
26
26
|
};
|
|
27
27
|
type __VLS_PrettifyLocal<T> = { [K in keyof T as K]: T[K] } & {};
|
|
@@ -50,12 +50,12 @@ interface AvatarTicket extends RegistryTicket {
|
|
|
50
50
|
interface AvatarContext extends RegistryContext<AvatarTicket> {
|
|
51
51
|
reset: () => void;
|
|
52
52
|
}
|
|
53
|
-
declare const useAvatarContext: () => AvatarContext, provideAvatarContext: (context?: AvatarContext | undefined, app?:
|
|
53
|
+
declare const useAvatarContext: () => AvatarContext, provideAvatarContext: (context?: AvatarContext | undefined, app?: vue182.App) => AvatarContext, registry: AvatarContext;
|
|
54
54
|
//#endregion
|
|
55
55
|
//#region src/components/Avatar/index.d.ts
|
|
56
56
|
declare const Avatar: {
|
|
57
57
|
Fallback: {
|
|
58
|
-
new (...args: any[]):
|
|
58
|
+
new (...args: any[]): vue182.CreateComponentPublicInstanceWithMixins<Readonly<AvatarFallbackProps> & Readonly<{}>, {}, {}, {}, {}, vue182.ComponentOptionsMixin, vue182.ComponentOptionsMixin, {}, vue182.PublicProps, {}, false, {}, {}, vue182.GlobalComponents, vue182.GlobalDirectives, string, {}, any, vue182.ComponentProvideOptions, {
|
|
59
59
|
P: {};
|
|
60
60
|
B: {};
|
|
61
61
|
D: {};
|
|
@@ -66,19 +66,19 @@ declare const Avatar: {
|
|
|
66
66
|
__isFragment?: never;
|
|
67
67
|
__isTeleport?: never;
|
|
68
68
|
__isSuspense?: never;
|
|
69
|
-
} &
|
|
69
|
+
} & vue182.ComponentOptionsBase<Readonly<AvatarFallbackProps> & Readonly<{}>, {}, {}, {}, {}, vue182.ComponentOptionsMixin, vue182.ComponentOptionsMixin, {}, string, {}, {}, string, {}, vue182.GlobalComponents, vue182.GlobalDirectives, string, vue182.ComponentProvideOptions> & vue182.VNodeProps & vue182.AllowedComponentProps & vue182.ComponentCustomProps & (new () => {
|
|
70
70
|
$slots: {
|
|
71
71
|
default?: (props: {}) => any;
|
|
72
72
|
};
|
|
73
73
|
});
|
|
74
74
|
Image: {
|
|
75
|
-
new (...args: any[]):
|
|
75
|
+
new (...args: any[]): vue182.CreateComponentPublicInstanceWithMixins<Readonly<AvatarImageProps> & Readonly<{
|
|
76
76
|
onLoad?: ((e: Event) => any) | undefined;
|
|
77
77
|
onError?: ((e: Event) => any) | undefined;
|
|
78
|
-
}>, {}, {}, {}, {},
|
|
78
|
+
}>, {}, {}, {}, {}, vue182.ComponentOptionsMixin, vue182.ComponentOptionsMixin, {
|
|
79
79
|
load: (e: Event) => any;
|
|
80
80
|
error: (e: Event) => any;
|
|
81
|
-
},
|
|
81
|
+
}, vue182.PublicProps, {}, false, {}, {}, vue182.GlobalComponents, vue182.GlobalDirectives, string, {}, any, vue182.ComponentProvideOptions, {
|
|
82
82
|
P: {};
|
|
83
83
|
B: {};
|
|
84
84
|
D: {};
|
|
@@ -92,13 +92,13 @@ declare const Avatar: {
|
|
|
92
92
|
__isFragment?: never;
|
|
93
93
|
__isTeleport?: never;
|
|
94
94
|
__isSuspense?: never;
|
|
95
|
-
} &
|
|
95
|
+
} & vue182.ComponentOptionsBase<Readonly<AvatarImageProps> & Readonly<{
|
|
96
96
|
onLoad?: ((e: Event) => any) | undefined;
|
|
97
97
|
onError?: ((e: Event) => any) | undefined;
|
|
98
|
-
}>, {}, {}, {}, {},
|
|
98
|
+
}>, {}, {}, {}, {}, vue182.ComponentOptionsMixin, vue182.ComponentOptionsMixin, {
|
|
99
99
|
load: (e: Event) => any;
|
|
100
100
|
error: (e: Event) => any;
|
|
101
|
-
}, string, {}, {}, string, {},
|
|
101
|
+
}, string, {}, {}, string, {}, vue182.GlobalComponents, vue182.GlobalDirectives, string, vue182.ComponentProvideOptions> & vue182.VNodeProps & vue182.AllowedComponentProps & vue182.ComponentCustomProps & (new () => {
|
|
102
102
|
$slots: {
|
|
103
103
|
default: (props: {
|
|
104
104
|
src: string;
|
|
@@ -109,7 +109,7 @@ declare const Avatar: {
|
|
|
109
109
|
};
|
|
110
110
|
});
|
|
111
111
|
Root: {
|
|
112
|
-
new (...args: any[]):
|
|
112
|
+
new (...args: any[]): vue182.CreateComponentPublicInstanceWithMixins<Readonly<AvatarRootProps> & Readonly<{}>, {}, {}, {}, {}, vue182.ComponentOptionsMixin, vue182.ComponentOptionsMixin, {}, vue182.PublicProps, {}, false, {}, {}, vue182.GlobalComponents, vue182.GlobalDirectives, string, {}, any, vue182.ComponentProvideOptions, {
|
|
113
113
|
P: {};
|
|
114
114
|
B: {};
|
|
115
115
|
D: {};
|
|
@@ -120,7 +120,7 @@ declare const Avatar: {
|
|
|
120
120
|
__isFragment?: never;
|
|
121
121
|
__isTeleport?: never;
|
|
122
122
|
__isSuspense?: never;
|
|
123
|
-
} &
|
|
123
|
+
} & vue182.ComponentOptionsBase<Readonly<AvatarRootProps> & Readonly<{}>, {}, {}, {}, {}, vue182.ComponentOptionsMixin, vue182.ComponentOptionsMixin, {}, string, {}, {}, string, {}, vue182.GlobalComponents, vue182.GlobalDirectives, string, vue182.ComponentProvideOptions> & vue182.VNodeProps & vue182.AllowedComponentProps & vue182.ComponentCustomProps & (new () => {
|
|
124
124
|
$slots: {
|
|
125
125
|
default?: (props: {}) => any;
|
|
126
126
|
};
|
|
@@ -147,7 +147,7 @@ interface BreakpointsRootSlots {
|
|
|
147
147
|
//#region src/components/Breakpoints/index.d.ts
|
|
148
148
|
declare const Breakpoints: {
|
|
149
149
|
Item: {
|
|
150
|
-
new (...args: any[]):
|
|
150
|
+
new (...args: any[]): vue182.CreateComponentPublicInstanceWithMixins<Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, vue182.ComponentOptionsMixin, vue182.ComponentOptionsMixin, {}, vue182.PublicProps, {}, true, {}, {}, vue182.GlobalComponents, vue182.GlobalDirectives, string, {}, any, vue182.ComponentProvideOptions, {
|
|
151
151
|
P: {};
|
|
152
152
|
B: {};
|
|
153
153
|
D: {};
|
|
@@ -158,11 +158,11 @@ declare const Breakpoints: {
|
|
|
158
158
|
__isFragment?: never;
|
|
159
159
|
__isTeleport?: never;
|
|
160
160
|
__isSuspense?: never;
|
|
161
|
-
} &
|
|
161
|
+
} & vue182.ComponentOptionsBase<Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, vue182.ComponentOptionsMixin, vue182.ComponentOptionsMixin, {}, string, {}, {}, string, {}, vue182.GlobalComponents, vue182.GlobalDirectives, string, vue182.ComponentProvideOptions> & vue182.VNodeProps & vue182.AllowedComponentProps & vue182.ComponentCustomProps & (new () => {
|
|
162
162
|
$slots: BreakpointsSlots;
|
|
163
163
|
});
|
|
164
164
|
Root: {
|
|
165
|
-
new (...args: any[]):
|
|
165
|
+
new (...args: any[]): vue182.CreateComponentPublicInstanceWithMixins<Readonly<BreakpointsRootProps> & Readonly<{}>, {}, {}, {}, {}, vue182.ComponentOptionsMixin, vue182.ComponentOptionsMixin, {}, vue182.PublicProps, {}, false, {}, {}, vue182.GlobalComponents, vue182.GlobalDirectives, string, {}, any, vue182.ComponentProvideOptions, {
|
|
166
166
|
P: {};
|
|
167
167
|
B: {};
|
|
168
168
|
D: {};
|
|
@@ -173,7 +173,7 @@ declare const Breakpoints: {
|
|
|
173
173
|
__isFragment?: never;
|
|
174
174
|
__isTeleport?: never;
|
|
175
175
|
__isSuspense?: never;
|
|
176
|
-
} &
|
|
176
|
+
} & vue182.ComponentOptionsBase<Readonly<BreakpointsRootProps> & Readonly<{}>, {}, {}, {}, {}, vue182.ComponentOptionsMixin, vue182.ComponentOptionsMixin, {}, string, {}, {}, string, {}, vue182.GlobalComponents, vue182.GlobalDirectives, string, vue182.ComponentProvideOptions> & vue182.VNodeProps & vue182.AllowedComponentProps & vue182.ComponentCustomProps & (new () => {
|
|
177
177
|
$slots: BreakpointsRootSlots;
|
|
178
178
|
});
|
|
179
179
|
};
|
|
@@ -198,14 +198,14 @@ declare const Context: {
|
|
|
198
198
|
slots: ContextSlots<T>;
|
|
199
199
|
}, __VLS_expose?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
|
|
200
200
|
props: {
|
|
201
|
-
contextKey?: string |
|
|
201
|
+
contextKey?: string | vue182.InjectionKey<T> | undefined;
|
|
202
202
|
value?: T | undefined;
|
|
203
|
-
} &
|
|
204
|
-
expose(exposed:
|
|
203
|
+
} & vue182.PublicProps;
|
|
204
|
+
expose(exposed: vue182.ShallowUnwrapRef<{}>): void;
|
|
205
205
|
attrs: any;
|
|
206
206
|
slots: ContextSlots<T>;
|
|
207
207
|
emit: {};
|
|
208
|
-
}>) =>
|
|
208
|
+
}>) => vue182.VNode & {
|
|
209
209
|
__ctx?: Awaited<typeof __VLS_setup>;
|
|
210
210
|
};
|
|
211
211
|
Root: <T>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: {
|
|
@@ -214,14 +214,14 @@ declare const Context: {
|
|
|
214
214
|
slots: ContextRootSlots;
|
|
215
215
|
}, __VLS_expose?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
|
|
216
216
|
props: {
|
|
217
|
-
contextKey: string |
|
|
217
|
+
contextKey: string | vue182.InjectionKey<T>;
|
|
218
218
|
value: T;
|
|
219
|
-
} &
|
|
220
|
-
expose(exposed:
|
|
219
|
+
} & vue182.PublicProps;
|
|
220
|
+
expose(exposed: vue182.ShallowUnwrapRef<{}>): void;
|
|
221
221
|
attrs: any;
|
|
222
222
|
slots: ContextRootSlots;
|
|
223
223
|
emit: {};
|
|
224
|
-
}>) =>
|
|
224
|
+
}>) => vue182.VNode & {
|
|
225
225
|
__ctx?: Awaited<typeof __VLS_setup>;
|
|
226
226
|
};
|
|
227
227
|
};
|
|
@@ -230,7 +230,7 @@ declare const Context: {
|
|
|
230
230
|
interface HydrationSlots {
|
|
231
231
|
default: (scope: HydrationContext) => any;
|
|
232
232
|
}
|
|
233
|
-
declare const _default$1: __VLS_WithSlots$1<
|
|
233
|
+
declare const _default$1: __VLS_WithSlots$1<vue182.DefineComponent<{}, {}, {}, {}, {}, vue182.ComponentOptionsMixin, vue182.ComponentOptionsMixin, {}, string, vue182.PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, vue182.ComponentProvideOptions, true, {}, any>, HydrationSlots>;
|
|
234
234
|
type __VLS_WithSlots$1<T, S> = T & {
|
|
235
235
|
new (): {
|
|
236
236
|
$slots: S;
|
|
@@ -241,7 +241,7 @@ type __VLS_WithSlots$1<T, S> = T & {
|
|
|
241
241
|
interface HydrationRootSlots {
|
|
242
242
|
default: (scope: HydrationContext) => any;
|
|
243
243
|
}
|
|
244
|
-
declare const _default: __VLS_WithSlots<
|
|
244
|
+
declare const _default: __VLS_WithSlots<vue182.DefineComponent<{}, {}, {}, {}, {}, vue182.ComponentOptionsMixin, vue182.ComponentOptionsMixin, {}, string, vue182.PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, vue182.ComponentProvideOptions, true, {}, any>, HydrationRootSlots>;
|
|
245
245
|
type __VLS_WithSlots<T, S> = T & {
|
|
246
246
|
new (): {
|
|
247
247
|
$slots: S;
|
|
@@ -257,7 +257,7 @@ interface PopoverContext {
|
|
|
257
257
|
interface PopoverRootProps extends AtomProps {
|
|
258
258
|
id?: string;
|
|
259
259
|
}
|
|
260
|
-
declare const usePopoverContext: (key?: ContextKey<PopoverContext>) => PopoverContext, providePopoverContext: (context: PopoverContext, app?:
|
|
260
|
+
declare const usePopoverContext: (key?: ContextKey<PopoverContext>) => PopoverContext, providePopoverContext: (context: PopoverContext, app?: vue182.App) => PopoverContext;
|
|
261
261
|
//#endregion
|
|
262
262
|
//#region src/components/Popover/PopoverAnchor.vue.d.ts
|
|
263
263
|
interface PopoverAnchorProps extends AtomProps {
|
|
@@ -277,13 +277,13 @@ interface PopoverContentEmits {
|
|
|
277
277
|
//#region src/components/Popover/index.d.ts
|
|
278
278
|
declare const Popover: {
|
|
279
279
|
Root: {
|
|
280
|
-
new (...args: any[]):
|
|
280
|
+
new (...args: any[]): vue182.CreateComponentPublicInstanceWithMixins<Readonly<PopoverRootProps & {
|
|
281
281
|
modelValue?: boolean;
|
|
282
282
|
}> & Readonly<{
|
|
283
283
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
284
|
-
}>, {}, {}, {}, {},
|
|
284
|
+
}>, {}, {}, {}, {}, vue182.ComponentOptionsMixin, vue182.ComponentOptionsMixin, {
|
|
285
285
|
"update:modelValue": (value: boolean) => any;
|
|
286
|
-
},
|
|
286
|
+
}, vue182.PublicProps, {}, false, {}, {}, vue182.GlobalComponents, vue182.GlobalDirectives, string, {}, any, vue182.ComponentProvideOptions, {
|
|
287
287
|
P: {};
|
|
288
288
|
B: {};
|
|
289
289
|
D: {};
|
|
@@ -298,23 +298,23 @@ declare const Popover: {
|
|
|
298
298
|
__isFragment?: never;
|
|
299
299
|
__isTeleport?: never;
|
|
300
300
|
__isSuspense?: never;
|
|
301
|
-
} &
|
|
301
|
+
} & vue182.ComponentOptionsBase<Readonly<PopoverRootProps & {
|
|
302
302
|
modelValue?: boolean;
|
|
303
303
|
}> & Readonly<{
|
|
304
304
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
305
|
-
}>, {}, {}, {}, {},
|
|
305
|
+
}>, {}, {}, {}, {}, vue182.ComponentOptionsMixin, vue182.ComponentOptionsMixin, {
|
|
306
306
|
"update:modelValue": (value: boolean) => any;
|
|
307
|
-
}, string, {}, {}, string, {},
|
|
307
|
+
}, string, {}, {}, string, {}, vue182.GlobalComponents, vue182.GlobalDirectives, string, vue182.ComponentProvideOptions> & vue182.VNodeProps & vue182.AllowedComponentProps & vue182.ComponentCustomProps & (new () => {
|
|
308
308
|
$slots: {
|
|
309
309
|
default: (props: {
|
|
310
|
-
id: Readonly<
|
|
311
|
-
isSelected:
|
|
310
|
+
id: Readonly<vue182.Ref<string, string>>;
|
|
311
|
+
isSelected: vue182.ModelRef<boolean, string, boolean, boolean>;
|
|
312
312
|
toggle: () => void;
|
|
313
313
|
}) => any;
|
|
314
314
|
};
|
|
315
315
|
});
|
|
316
316
|
Anchor: {
|
|
317
|
-
new (...args: any[]):
|
|
317
|
+
new (...args: any[]): vue182.CreateComponentPublicInstanceWithMixins<Readonly<PopoverAnchorProps> & Readonly<{}>, {}, {}, {}, {}, vue182.ComponentOptionsMixin, vue182.ComponentOptionsMixin, {}, vue182.PublicProps, {}, false, {}, {}, vue182.GlobalComponents, vue182.GlobalDirectives, string, {}, any, vue182.ComponentProvideOptions, {
|
|
318
318
|
P: {};
|
|
319
319
|
B: {};
|
|
320
320
|
D: {};
|
|
@@ -325,17 +325,17 @@ declare const Popover: {
|
|
|
325
325
|
__isFragment?: never;
|
|
326
326
|
__isTeleport?: never;
|
|
327
327
|
__isSuspense?: never;
|
|
328
|
-
} &
|
|
328
|
+
} & vue182.ComponentOptionsBase<Readonly<PopoverAnchorProps> & Readonly<{}>, {}, {}, {}, {}, vue182.ComponentOptionsMixin, vue182.ComponentOptionsMixin, {}, string, {}, {}, string, {}, vue182.GlobalComponents, vue182.GlobalDirectives, string, vue182.ComponentProvideOptions> & vue182.VNodeProps & vue182.AllowedComponentProps & vue182.ComponentCustomProps & (new () => {
|
|
329
329
|
$slots: {
|
|
330
330
|
default?: (props: {}) => any;
|
|
331
331
|
};
|
|
332
332
|
});
|
|
333
333
|
Content: {
|
|
334
|
-
new (...args: any[]):
|
|
334
|
+
new (...args: any[]): vue182.CreateComponentPublicInstanceWithMixins<Readonly<PopoverContentProps> & Readonly<{
|
|
335
335
|
onBeforetoggle?: ((e: ToggleEvent) => any) | undefined;
|
|
336
|
-
}>, {}, {}, {}, {},
|
|
336
|
+
}>, {}, {}, {}, {}, vue182.ComponentOptionsMixin, vue182.ComponentOptionsMixin, {
|
|
337
337
|
beforetoggle: (e: ToggleEvent) => any;
|
|
338
|
-
},
|
|
338
|
+
}, vue182.PublicProps, {}, false, {}, {}, vue182.GlobalComponents, vue182.GlobalDirectives, string, {}, any, vue182.ComponentProvideOptions, {
|
|
339
339
|
P: {};
|
|
340
340
|
B: {};
|
|
341
341
|
D: {};
|
|
@@ -348,11 +348,11 @@ declare const Popover: {
|
|
|
348
348
|
__isFragment?: never;
|
|
349
349
|
__isTeleport?: never;
|
|
350
350
|
__isSuspense?: never;
|
|
351
|
-
} &
|
|
351
|
+
} & vue182.ComponentOptionsBase<Readonly<PopoverContentProps> & Readonly<{
|
|
352
352
|
onBeforetoggle?: ((e: ToggleEvent) => any) | undefined;
|
|
353
|
-
}>, {}, {}, {}, {},
|
|
353
|
+
}>, {}, {}, {}, {}, vue182.ComponentOptionsMixin, vue182.ComponentOptionsMixin, {
|
|
354
354
|
beforetoggle: (e: ToggleEvent) => any;
|
|
355
|
-
}, string, {}, {}, string, {},
|
|
355
|
+
}, string, {}, {}, string, {}, vue182.GlobalComponents, vue182.GlobalDirectives, string, vue182.ComponentProvideOptions> & vue182.VNodeProps & vue182.AllowedComponentProps & vue182.ComponentCustomProps & (new () => {
|
|
356
356
|
$slots: {
|
|
357
357
|
default?: (props: {}) => any;
|
|
358
358
|
};
|
|
@@ -376,7 +376,7 @@ interface ThemeRootSlots {
|
|
|
376
376
|
//#region src/components/Theme/index.d.ts
|
|
377
377
|
declare const Theme: {
|
|
378
378
|
Item: {
|
|
379
|
-
new (...args: any[]):
|
|
379
|
+
new (...args: any[]): vue182.CreateComponentPublicInstanceWithMixins<Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, vue182.ComponentOptionsMixin, vue182.ComponentOptionsMixin, {}, vue182.PublicProps, {}, true, {}, {}, vue182.GlobalComponents, vue182.GlobalDirectives, string, {}, any, vue182.ComponentProvideOptions, {
|
|
380
380
|
P: {};
|
|
381
381
|
B: {};
|
|
382
382
|
D: {};
|
|
@@ -387,11 +387,11 @@ declare const Theme: {
|
|
|
387
387
|
__isFragment?: never;
|
|
388
388
|
__isTeleport?: never;
|
|
389
389
|
__isSuspense?: never;
|
|
390
|
-
} &
|
|
390
|
+
} & vue182.ComponentOptionsBase<Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, vue182.ComponentOptionsMixin, vue182.ComponentOptionsMixin, {}, string, {}, {}, string, {}, vue182.GlobalComponents, vue182.GlobalDirectives, string, vue182.ComponentProvideOptions> & vue182.VNodeProps & vue182.AllowedComponentProps & vue182.ComponentCustomProps & (new () => {
|
|
391
391
|
$slots: ThemeSlots;
|
|
392
392
|
});
|
|
393
393
|
Root: {
|
|
394
|
-
new (...args: any[]):
|
|
394
|
+
new (...args: any[]): vue182.CreateComponentPublicInstanceWithMixins<Readonly<ThemeRootProps> & Readonly<{}>, {}, {}, {}, {}, vue182.ComponentOptionsMixin, vue182.ComponentOptionsMixin, {}, vue182.PublicProps, {}, false, {}, {}, vue182.GlobalComponents, vue182.GlobalDirectives, string, {}, any, vue182.ComponentProvideOptions, {
|
|
395
395
|
P: {};
|
|
396
396
|
B: {};
|
|
397
397
|
D: {};
|
|
@@ -402,7 +402,7 @@ declare const Theme: {
|
|
|
402
402
|
__isFragment?: never;
|
|
403
403
|
__isTeleport?: never;
|
|
404
404
|
__isSuspense?: never;
|
|
405
|
-
} &
|
|
405
|
+
} & vue182.ComponentOptionsBase<Readonly<ThemeRootProps> & Readonly<{}>, {}, {}, {}, {}, vue182.ComponentOptionsMixin, vue182.ComponentOptionsMixin, {}, string, {}, {}, string, {}, vue182.GlobalComponents, vue182.GlobalDirectives, string, vue182.ComponentProvideOptions> & vue182.VNodeProps & vue182.AllowedComponentProps & vue182.ComponentCustomProps & (new () => {
|
|
406
406
|
$slots: ThemeRootSlots;
|
|
407
407
|
});
|
|
408
408
|
};
|
|
@@ -1625,13 +1625,14 @@ declare class Vuetify0LocaleAdapter implements LocaleAdapter {
|
|
|
1625
1625
|
}
|
|
1626
1626
|
//#endregion
|
|
1627
1627
|
//#region src/composables/useLocale/index.d.ts
|
|
1628
|
+
type LocaleRecord = TokenCollection;
|
|
1628
1629
|
type LocaleTicket = SingleTicket;
|
|
1629
1630
|
interface LocaleContext<Z extends LocaleTicket> extends SingleContext<Z> {
|
|
1630
1631
|
t: (key: string, ...params: unknown[]) => string;
|
|
1631
1632
|
n: (value: number) => string;
|
|
1632
1633
|
}
|
|
1633
1634
|
interface LocaleOptions extends LocalePluginOptions {}
|
|
1634
|
-
interface LocalePluginOptions<Z extends
|
|
1635
|
+
interface LocalePluginOptions<Z extends LocaleRecord = LocaleRecord> {
|
|
1635
1636
|
adapter?: LocaleAdapter;
|
|
1636
1637
|
default?: ID;
|
|
1637
1638
|
fallback?: ID;
|
|
@@ -1669,7 +1670,7 @@ declare function useLocale(): LocaleContext<LocaleTicket>;
|
|
|
1669
1670
|
*
|
|
1670
1671
|
* @see https://0.vuetifyjs.com/composables/plugins/use-locale
|
|
1671
1672
|
*/
|
|
1672
|
-
declare function createLocalePlugin<Z extends LocaleTicket = LocaleTicket, E extends LocaleContext<Z> = LocaleContext<Z
|
|
1673
|
+
declare function createLocalePlugin<Z extends LocaleTicket = LocaleTicket, E extends LocaleContext<Z> = LocaleContext<Z>>(_options?: LocalePluginOptions): Plugin;
|
|
1673
1674
|
//#endregion
|
|
1674
1675
|
//#region src/composables/useLogger/adapters/adapter.d.ts
|
|
1675
1676
|
interface LoggerAdapter {
|
|
@@ -2761,4 +2762,4 @@ interface TimelineOptions extends RegistryOptions {
|
|
|
2761
2762
|
*/
|
|
2762
2763
|
declare function useTimeline<Z extends TimelineTicket = TimelineTicket, E extends TimelineContext<Z> = TimelineContext<Z>>(_options?: TimelineOptions): E;
|
|
2763
2764
|
//#endregion
|
|
2764
|
-
export { PermissionAdapterInterface as $,
|
|
2765
|
+
export { PermissionAdapterInterface as $, createContext as $n, UseFilterResult as $t, createStepContext as A, RegistryTicket as An, IntersectionObserverEntry as At, ProxyRegistryContext as B, BreakpointsOptions as Bn, FormContext as Bt, useStorageContext as C, SelectionContext as Cn, SingleContext as Ct, StepContext as D, useSelection as Dn, useSingle as Dt, MemoryAdapter as E, createSelectionContext as En, createSingleContext as Et, useResizeObserver as F, useDocumentEventListener as Fn, createHydration as Ft, PermissionContext as G, toReactive as Gn, FormValue as Gt, useProxyRegistry as H, createBreakpoints as Hn, FormTicket as Ht, QueueContext as I, useEventListener as In, createHydrationPlugin as It, PermissionTicket as J, createTrinity as Jn, FilterItem as Jt, PermissionOptions as K, toArray as Kn, useForm as Kt, QueueOptions as L, useWindowEventListener as Ln, provideHydrationContext as Lt, ResizeObserverEntry as M, useRegistry as Mn, useElementIntersection as Mt, ResizeObserverOptions as N, CleanupFunction as Nn, useIntersectionObserver as Nt, StepOptions as O, RegistryContext as On, KeyHandler as Ot, useElementSize as P, EventHandler as Pn, HydrationContext as Pt, PermissionAdapter as Q, ContextKey as Qn, UseFilterOptions as Qt, QueueTicket as R, BreakpointName as Rn, useHydration as Rt, useStorage as S, useGroup as Sn, LocaleAdapter as St, StorageType as T, SelectionTicket as Tn, SingleTicket as Tt, ProxyModelOptions as U, createBreakpointsPlugin as Un, FormValidationResult as Ut, ProxyRegistryOptions as V, BreakpointsPluginOptions as Vn, FormOptions as Vt, useProxyModel as W, useBreakpoints as Wn, FormValidationRule as Wt, createPermissionsPlugin as X, PluginOptions as Xn, FilterQuery as Xt, createPermissions as Y, Plugin as Yn, FilterMode as Yt, usePermissions as Z, createPlugin as Zn, Primitive as Zt, StorageContext as _, useTokens as _n, LocaleTicket as _t, Colors as a, createFeatures as an, createLogger as at, createStoragePlugin as b, GroupTicket as bn, useLocale as bt, ThemeOptions as c, FlatTokenCollection as cn, LogLevel as ct, ThemeTicket as d, TokenContext as dn, ConsolaLoggerAdapter as dt, useFilter as en, provideContext as er, MutationObserverRecord as et, createTheme as f, TokenOptions as fn, LoggerAdapter as ft, ThemeAdapter as g, createTokensContext as gn, LocaleRecord as gt, Vuetify0ThemeAdapter as h, TokenValue as hn, LocalePluginOptions as ht, useTimeline as i, FeatureTicket as in, LoggerOptions as it, useStep as j, createRegistryContext as jn, IntersectionObserverOptions as jt, StepTicket as k, RegistryOptions as kn, useKeydown as kt, ThemePluginOptions as l, TokenAlias as ln, Vuetify0LoggerAdapter as lt, useTheme as m, TokenTicket as mn, LocaleOptions as mt, TimelineOptions as n, FeatureOptions as nn, useMutationObserver as nt, ThemeColors as o, createFeaturesPlugin as on, createLoggerPlugin as ot, createThemePlugin as p, TokenPrimitive as pn, LocaleContext as pt, PermissionPluginOptions as q, ContextTrinity as qn, FilterFunction as qt, TimelineTicket as r, FeaturePluginOptions as rn, LoggerContext as rt, ThemeContext as s, useFeatures as sn, useLogger as st, TimelineContext as t, FeatureContext as tn, useContext as tr, UseMutationObserverOptions as tt, ThemeRecord as u, TokenCollection as un, PinoLoggerAdapter as ut, StorageOptions as v, GroupContext as vn, createLocale as vt, StorageAdapter as w, SelectionOptions as wn, SingleOptions as wt, provideStorageContext as x, createGroupContext as xn, Vuetify0LocaleAdapter as xt, createStorage as y, GroupOptions as yn, createLocalePlugin as yt, useQueue as z, BreakpointsContext as zn, useHydrationContext as zt };
|
package/dist/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import "./index-C_lAPFXS.js";
|
|
2
|
-
import { C as AvatarImageEmits, D as AtomProps, E as AtomExpose, O as AtomSlots, S as useAvatarContext, T as AvatarFallbackProps, _ as Avatar, a as Popover, b as provideAvatarContext, c as PopoverAnchorProps, d as providePopoverContext, f as usePopoverContext, g as Breakpoints, h as Context, i as ThemeSlots, k as _default, l as PopoverContext, m as _default$1, n as ThemeRootProps, o as PopoverContentEmits, p as _default$2, r as ThemeRootSlots, s as PopoverContentProps, t as Theme, u as PopoverRootProps, v as AvatarContext, w as AvatarImageProps, x as registry, y as AvatarRootProps } from "./index-
|
|
3
|
-
import { $ as PermissionAdapterInterface, $n as
|
|
2
|
+
import { C as AvatarImageEmits, D as AtomProps, E as AtomExpose, O as AtomSlots, S as useAvatarContext, T as AvatarFallbackProps, _ as Avatar, a as Popover, b as provideAvatarContext, c as PopoverAnchorProps, d as providePopoverContext, f as usePopoverContext, g as Breakpoints, h as Context, i as ThemeSlots, k as _default, l as PopoverContext, m as _default$1, n as ThemeRootProps, o as PopoverContentEmits, p as _default$2, r as ThemeRootSlots, s as PopoverContentProps, t as Theme, u as PopoverRootProps, v as AvatarContext, w as AvatarImageProps, x as registry, y as AvatarRootProps } from "./index-BVouO8cc.js";
|
|
3
|
+
import { $ as PermissionAdapterInterface, $n as createContext, $t as UseFilterResult, A as createStepContext, An as RegistryTicket, At as IntersectionObserverEntry, B as ProxyRegistryContext, Bn as BreakpointsOptions, Bt as FormContext, C as useStorageContext, Cn as SelectionContext, Ct as SingleContext, D as StepContext, Dn as useSelection, Dt as useSingle, E as MemoryAdapter, En as createSelectionContext, Et as createSingleContext, F as useResizeObserver, Fn as useDocumentEventListener, Ft as createHydration, G as PermissionContext, Gn as toReactive, Gt as FormValue, H as useProxyRegistry, Hn as createBreakpoints, Ht as FormTicket, I as QueueContext, In as useEventListener, It as createHydrationPlugin, J as PermissionTicket, Jn as createTrinity, Jt as FilterItem, K as PermissionOptions, Kn as toArray, Kt as useForm, L as QueueOptions, Ln as useWindowEventListener, Lt as provideHydrationContext, M as ResizeObserverEntry, Mn as useRegistry, Mt as useElementIntersection, N as ResizeObserverOptions, Nn as CleanupFunction, Nt as useIntersectionObserver, O as StepOptions, On as RegistryContext, Ot as KeyHandler, P as useElementSize, Pn as EventHandler, Pt as HydrationContext, Q as PermissionAdapter, Qn as ContextKey, Qt as UseFilterOptions, R as QueueTicket, Rn as BreakpointName, Rt as useHydration, S as useStorage, Sn as useGroup, St as LocaleAdapter, T as StorageType, Tn as SelectionTicket, Tt as SingleTicket, U as ProxyModelOptions, Un as createBreakpointsPlugin, Ut as FormValidationResult, V as ProxyRegistryOptions, Vn as BreakpointsPluginOptions, Vt as FormOptions, W as useProxyModel, Wn as useBreakpoints, Wt as FormValidationRule, X as createPermissionsPlugin, Xn as PluginOptions, Xt as FilterQuery, Y as createPermissions, Yn as Plugin, Yt as FilterMode, Z as usePermissions, Zn as createPlugin, Zt as Primitive, _ as StorageContext, _n as useTokens, _t as LocaleTicket, a as Colors, an as createFeatures, at as createLogger, b as createStoragePlugin, bn as GroupTicket, bt as useLocale, c as ThemeOptions, cn as FlatTokenCollection, ct as LogLevel, d as ThemeTicket, dn as TokenContext, dt as ConsolaLoggerAdapter, en as useFilter, er as provideContext, et as MutationObserverRecord, f as createTheme, fn as TokenOptions, ft as LoggerAdapter, g as ThemeAdapter, gn as createTokensContext, gt as LocaleRecord, h as Vuetify0ThemeAdapter, hn as TokenValue, ht as LocalePluginOptions, i as useTimeline, in as FeatureTicket, it as LoggerOptions, j as useStep, jn as createRegistryContext, jt as IntersectionObserverOptions, k as StepTicket, kn as RegistryOptions, kt as useKeydown, l as ThemePluginOptions, ln as TokenAlias, lt as Vuetify0LoggerAdapter, m as useTheme, mn as TokenTicket, mt as LocaleOptions, n as TimelineOptions, nn as FeatureOptions, nt as useMutationObserver, o as ThemeColors, on as createFeaturesPlugin, ot as createLoggerPlugin, p as createThemePlugin, pn as TokenPrimitive, pt as LocaleContext, q as PermissionPluginOptions, qn as ContextTrinity, qt as FilterFunction, r as TimelineTicket, rn as FeaturePluginOptions, rt as LoggerContext, s as ThemeContext, sn as useFeatures, st as useLogger, t as TimelineContext, tn as FeatureContext, tr as useContext, tt as UseMutationObserverOptions, u as ThemeRecord, un as TokenCollection, ut as PinoLoggerAdapter, v as StorageOptions, vn as GroupContext, vt as createLocale, w as StorageAdapter, wn as SelectionOptions, wt as SingleOptions, x as provideStorageContext, xn as createGroupContext, xt as Vuetify0LocaleAdapter, y as createStorage, yn as GroupOptions, yt as createLocalePlugin, z as useQueue, zn as BreakpointsContext, zt as useHydrationContext } from "./index-BoDCUSPn.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, Breakpoints, BreakpointsContext, BreakpointsOptions, BreakpointsPluginOptions, COMMON_ELEMENTS, CleanupFunction, Colors, ConsolaLoggerAdapter, Context, ContextKey, ContextTrinity, EventHandler, FeatureContext, FeatureOptions, FeaturePluginOptions, FeatureTicket, FilterFunction, FilterItem, FilterMode, FilterQuery, FlatTokenCollection, FormContext, FormOptions, FormTicket, FormValidationResult, FormValidationRule, FormValue, GroupContext, GroupOptions, GroupTicket, HTMLElementName, _default$1 as Hydration, HydrationContext, _default$2 as HydrationRoot, IN_BROWSER, IntersectionObserverEntry, IntersectionObserverOptions, KeyHandler, LocaleAdapter, LocaleContext, LocaleOptions, LocalePluginOptions, LocaleTicket, LogLevel, LoggerAdapter, LoggerContext, LoggerOptions, MemoryAdapter, MutationObserverRecord, PermissionAdapter, PermissionAdapterInterface, PermissionContext, PermissionOptions, PermissionPluginOptions, PermissionTicket, PinoLoggerAdapter, Plugin, PluginOptions, Popover, PopoverAnchorProps, PopoverContentEmits, PopoverContentProps, PopoverContext, PopoverRootProps, Primitive, ProxyModelOptions, ProxyRegistryContext, ProxyRegistryOptions, QueueContext, QueueOptions, QueueTicket, RegistryContext, RegistryOptions, RegistryTicket, ResizeObserverEntry, ResizeObserverOptions, SELF_CLOSING_TAGS, SUPPORTS_INTERSECTION_OBSERVER, SUPPORTS_MATCH_MEDIA, SUPPORTS_MUTATION_OBSERVER, SUPPORTS_OBSERVER, SUPPORTS_TOUCH, SelectionContext, SelectionOptions, SelectionTicket, SelfClosingElement, SingleContext, SingleOptions, SingleTicket, StepContext, StepOptions, StepTicket, StorageAdapter, StorageContext, StorageOptions, StorageType, Theme, ThemeAdapter, ThemeColors, ThemeContext, ThemeOptions, ThemePluginOptions, ThemeRecord, ThemeRootProps, ThemeRootSlots, ThemeSlots, ThemeTicket, TimelineContext, TimelineOptions, TimelineTicket, TokenAlias, TokenCollection, TokenContext, TokenOptions, TokenPrimitive, TokenTicket, TokenValue, UseFilterOptions, UseFilterResult, UseMutationObserverOptions, Vuetify0LocaleAdapter, Vuetify0LoggerAdapter, Vuetify0ThemeAdapter, __LOGGER_ENABLED__, createBreakpoints, createBreakpointsPlugin, createContext, createFeatures, createFeaturesPlugin, createGroupContext, createHydration, createHydrationPlugin, createLocale, createLocalePlugin, createLogger, createLoggerPlugin, createPermissions, createPermissionsPlugin, createPlugin, createRegistryContext, createSelectionContext, createSingleContext, createStepContext, createStorage, createStoragePlugin, createTheme, createThemePlugin, createTokensContext, createTrinity, genId, isArray, isBoolean, isFunction, isNullOrUndefined, isNumber, isObject, isPrimitive, isSelfClosingTag, isString, isUndefined, mergeDeep, provideAvatarContext, provideContext, provideHydrationContext, providePopoverContext, provideStorageContext, registry, toArray, toReactive, useAvatarContext, useBreakpoints, useContext, useDocumentEventListener, useElementIntersection, useElementSize, useEventListener, useFeatures, useFilter, useForm, useGroup, useHydration, useHydrationContext, useIntersectionObserver, useKeydown, useLocale, useLogger, useMutationObserver, usePermissions, usePopoverContext, useProxyModel, useProxyRegistry, useQueue, useRegistry, useResizeObserver, useSelection, useSingle, useStep, useStorage, useStorageContext, useTheme, useTimeline, useTokens, useWindowEventListener, version };
|
|
6
|
+
export { _default as Atom, AtomExpose, AtomProps, AtomSlots, Avatar, AvatarContext, AvatarFallbackProps, AvatarImageEmits, AvatarImageProps, AvatarRootProps, BreakpointName, Breakpoints, BreakpointsContext, BreakpointsOptions, BreakpointsPluginOptions, COMMON_ELEMENTS, CleanupFunction, Colors, ConsolaLoggerAdapter, Context, ContextKey, ContextTrinity, EventHandler, FeatureContext, FeatureOptions, FeaturePluginOptions, FeatureTicket, FilterFunction, FilterItem, FilterMode, FilterQuery, FlatTokenCollection, FormContext, FormOptions, FormTicket, FormValidationResult, FormValidationRule, FormValue, GroupContext, GroupOptions, GroupTicket, HTMLElementName, _default$1 as Hydration, HydrationContext, _default$2 as HydrationRoot, IN_BROWSER, IntersectionObserverEntry, IntersectionObserverOptions, KeyHandler, LocaleAdapter, LocaleContext, LocaleOptions, LocalePluginOptions, LocaleRecord, LocaleTicket, LogLevel, LoggerAdapter, LoggerContext, LoggerOptions, MemoryAdapter, MutationObserverRecord, PermissionAdapter, PermissionAdapterInterface, PermissionContext, PermissionOptions, PermissionPluginOptions, PermissionTicket, PinoLoggerAdapter, Plugin, PluginOptions, Popover, PopoverAnchorProps, PopoverContentEmits, PopoverContentProps, PopoverContext, PopoverRootProps, Primitive, ProxyModelOptions, ProxyRegistryContext, ProxyRegistryOptions, QueueContext, QueueOptions, QueueTicket, RegistryContext, RegistryOptions, RegistryTicket, ResizeObserverEntry, ResizeObserverOptions, SELF_CLOSING_TAGS, SUPPORTS_INTERSECTION_OBSERVER, SUPPORTS_MATCH_MEDIA, SUPPORTS_MUTATION_OBSERVER, SUPPORTS_OBSERVER, SUPPORTS_TOUCH, SelectionContext, SelectionOptions, SelectionTicket, SelfClosingElement, SingleContext, SingleOptions, SingleTicket, StepContext, StepOptions, StepTicket, StorageAdapter, StorageContext, StorageOptions, StorageType, Theme, ThemeAdapter, ThemeColors, ThemeContext, ThemeOptions, ThemePluginOptions, ThemeRecord, ThemeRootProps, ThemeRootSlots, ThemeSlots, ThemeTicket, TimelineContext, TimelineOptions, TimelineTicket, TokenAlias, TokenCollection, TokenContext, TokenOptions, TokenPrimitive, TokenTicket, TokenValue, UseFilterOptions, UseFilterResult, UseMutationObserverOptions, Vuetify0LocaleAdapter, Vuetify0LoggerAdapter, Vuetify0ThemeAdapter, __LOGGER_ENABLED__, createBreakpoints, createBreakpointsPlugin, createContext, createFeatures, createFeaturesPlugin, createGroupContext, createHydration, createHydrationPlugin, createLocale, createLocalePlugin, createLogger, createLoggerPlugin, createPermissions, createPermissionsPlugin, createPlugin, createRegistryContext, createSelectionContext, createSingleContext, createStepContext, createStorage, createStoragePlugin, createTheme, createThemePlugin, createTokensContext, createTrinity, genId, isArray, isBoolean, isFunction, isNullOrUndefined, isNumber, isObject, isPrimitive, isSelfClosingTag, isString, isUndefined, mergeDeep, provideAvatarContext, provideContext, provideHydrationContext, providePopoverContext, provideStorageContext, registry, toArray, toReactive, useAvatarContext, useBreakpoints, useContext, useDocumentEventListener, useElementIntersection, useElementSize, useEventListener, useFeatures, useFilter, useForm, useGroup, useHydration, useHydrationContext, 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 HydrationRoot_default, c as Breakpoints, d as registry, f as useAvatarContext, i as usePopoverContext, l as Avatar, n as Popover, o as Hydration_default, p as Atom_default, r as providePopoverContext, s as Context, t as Theme, u as provideAvatarContext } from "./components-
|
|
3
|
-
import { $ as useEventListener, A as useKeydown, B as createGroupContext, C as useMutationObserver, D as Vuetify0LocaleAdapter, E as useLocale, F as createFeatures, G as useRegistry, H as createSelectionContext, I as createFeaturesPlugin, J as useLogger, K as createLogger, L as useFeatures, M as useIntersectionObserver, N as useForm, O as createSingleContext, P as useFilter, Q as useDocumentEventListener, R as createTokensContext, S as PermissionAdapter, T as createLocalePlugin, U as useSelection, V as useGroup, W as createRegistryContext, X as PinoLoggerAdapter, Y as Vuetify0LoggerAdapter, Z as ConsolaLoggerAdapter, _ as useProxyRegistry, a as Vuetify0ThemeAdapter, at as createHydrationPlugin, b as createPermissionsPlugin, c as provideStorageContext, ct as useHydrationContext, d as MemoryAdapter, dt as createTrinity, et as useWindowEventListener, f as createStepContext, ft as createPlugin, g as useQueue, h as useResizeObserver, ht as useContext, i as useTheme, it as createHydration, j as useElementIntersection, k as useSingle, l as useStorage, lt as toReactive, m as useElementSize, mt as provideContext, n as createTheme, nt as createBreakpointsPlugin, o as createStorage, ot as provideHydrationContext, p as useStep, pt as createContext, q as createLoggerPlugin, r as createThemePlugin, rt as useBreakpoints, s as createStoragePlugin, st as useHydration, t as useTimeline, tt as createBreakpoints, u as useStorageContext, ut as toArray, v as useProxyModel, w as createLocale, x as usePermissions, y as createPermissions, z as useTokens } from "./composables-
|
|
2
|
+
import { a as HydrationRoot_default, c as Breakpoints, d as registry, f as useAvatarContext, i as usePopoverContext, l as Avatar, n as Popover, o as Hydration_default, p as Atom_default, r as providePopoverContext, s as Context, t as Theme, u as provideAvatarContext } from "./components-ClYPFhaF.js";
|
|
3
|
+
import { $ as useEventListener, A as useKeydown, B as createGroupContext, C as useMutationObserver, D as Vuetify0LocaleAdapter, E as useLocale, F as createFeatures, G as useRegistry, H as createSelectionContext, I as createFeaturesPlugin, J as useLogger, K as createLogger, L as useFeatures, M as useIntersectionObserver, N as useForm, O as createSingleContext, P as useFilter, Q as useDocumentEventListener, R as createTokensContext, S as PermissionAdapter, T as createLocalePlugin, U as useSelection, V as useGroup, W as createRegistryContext, X as PinoLoggerAdapter, Y as Vuetify0LoggerAdapter, Z as ConsolaLoggerAdapter, _ as useProxyRegistry, a as Vuetify0ThemeAdapter, at as createHydrationPlugin, b as createPermissionsPlugin, c as provideStorageContext, ct as useHydrationContext, d as MemoryAdapter, dt as createTrinity, et as useWindowEventListener, f as createStepContext, ft as createPlugin, g as useQueue, h as useResizeObserver, ht as useContext, i as useTheme, it as createHydration, j as useElementIntersection, k as useSingle, l as useStorage, lt as toReactive, m as useElementSize, mt as provideContext, n as createTheme, nt as createBreakpointsPlugin, o as createStorage, ot as provideHydrationContext, p as useStep, pt as createContext, q as createLoggerPlugin, r as createThemePlugin, rt as useBreakpoints, s as createStoragePlugin, st as useHydration, t as useTimeline, tt as createBreakpoints, u as useStorageContext, ut as toArray, v as useProxyModel, w as createLocale, x as usePermissions, y as createPermissions, z as useTokens } from "./composables-DkRocfS_.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-BQnaatWT.js";
|
|
6
6
|
import "./constants-De5c3_aB.js";
|
|
7
7
|
|
|
8
8
|
export { Atom_default as Atom, Avatar, Breakpoints, COMMON_ELEMENTS, ConsolaLoggerAdapter, Context, Hydration_default as Hydration, HydrationRoot_default as HydrationRoot, IN_BROWSER, MemoryAdapter, PermissionAdapter, PinoLoggerAdapter, Popover, SELF_CLOSING_TAGS, SUPPORTS_INTERSECTION_OBSERVER, SUPPORTS_MATCH_MEDIA, SUPPORTS_MUTATION_OBSERVER, SUPPORTS_OBSERVER, SUPPORTS_TOUCH, Theme, Vuetify0LocaleAdapter, Vuetify0LoggerAdapter, Vuetify0ThemeAdapter, __LOGGER_ENABLED__, createBreakpoints, createBreakpointsPlugin, createContext, createFeatures, createFeaturesPlugin, createGroupContext, createHydration, createHydrationPlugin, createLocale, createLocalePlugin, createLogger, createLoggerPlugin, createPermissions, createPermissionsPlugin, createPlugin, createRegistryContext, createSelectionContext, createSingleContext, createStepContext, createStorage, createStoragePlugin, createTheme, createThemePlugin, createTokensContext, createTrinity, genId, isArray, isBoolean, isFunction, isNullOrUndefined, isNumber, isObject, isPrimitive, isSelfClosingTag, isString, isUndefined, mergeDeep, provideAvatarContext, provideContext, provideHydrationContext, providePopoverContext, provideStorageContext, registry, toArray, toReactive, useAvatarContext, useBreakpoints, useContext, useDocumentEventListener, useElementIntersection, useElementSize, useEventListener, useFeatures, useFilter, useForm, useGroup, useHydration, useHydrationContext, useIntersectionObserver, useKeydown, useLocale, useLogger, useMutationObserver, usePermissions, usePopoverContext, useProxyModel, useProxyRegistry, useQueue, useRegistry, useResizeObserver, useSelection, useSingle, useStep, useStorage, useStorageContext, useTheme, useTimeline, useTokens, useWindowEventListener, version };
|