@vuetify/v0 0.1.0 → 0.1.2
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 +19 -135
- package/dist/components/index.d.mts +2 -2
- package/dist/components/index.mjs +3 -3
- package/dist/{components-V4KaMfn-.mjs → components-z56rRlS4.mjs} +2 -2
- package/dist/composables/index.d.mts +3 -3
- package/dist/composables/index.mjs +3 -3
- package/dist/constants/index.mjs +1 -1
- package/dist/date/index.mjs +1 -1
- package/dist/{globals-CgcVstn0.mjs → globals-VwjZ5i4B.mjs} +1 -1
- package/dist/{index-DsiFkTD8.d.mts → index-CLKfXGEQ.d.mts} +4 -34
- package/dist/{index-CSjKBMhp.d.mts → index-PuLeBGZ3.d.mts} +254 -254
- package/dist/{index-t-t6sAn3.d.mts → index-qSuLpob3.d.mts} +4 -4
- package/dist/index.d.mts +4 -4
- package/dist/index.mjs +4 -4
- package/dist/json/web-types.json +1 -1
- package/dist/{useClickOutside-Cj8CguMD.mjs → useClickOutside-Dp1MHIjr.mjs} +19 -135
- package/package.json +1 -1
package/dist/browser/index.js
CHANGED
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import * as Vue from "vue";
|
|
2
|
-
import { Fragment, computed, createBlock, createCommentVNode, createElementBlock, createPropsRestProxy, createTextVNode, createVNode, defineComponent, effectScope, guardReactiveProps, inject, isRef, mergeModels, mergeProps, nextTick, normalizeProps, onBeforeUnmount, onMounted, onScopeDispose, onUnmounted, openBlock, provide, reactive, readonly, ref, renderSlot, resolveDynamicComponent, shallowReactive, shallowReadonly, shallowRef, toDisplayString, toRef, toValue, unref, useAttrs, useId as useId$1, useModel, useTemplateRef, vShow, watch, watchEffect, withCtx, withDirectives } from "vue";
|
|
3
|
-
import flagsmith from "flagsmith";
|
|
2
|
+
import { Fragment, computed, createBlock, createCommentVNode, createElementBlock, createPropsRestProxy, createTextVNode, createVNode, defineComponent, effectScope, guardReactiveProps, inject, isRef, mergeModels, mergeProps, nextTick, normalizeProps, onBeforeUnmount, onMounted, onScopeDispose, onUnmounted, openBlock, provide, reactive, readonly, ref, renderSlot, resolveDynamicComponent, shallowReactive, shallowReadonly, shallowRef, toDisplayString, toRaw, toRef, toValue, unref, useAttrs, useId as useId$1, useModel, useTemplateRef, vShow, watch, watchEffect, withCtx, withDirectives } from "vue";
|
|
4
3
|
|
|
5
4
|
//#region src/constants/htmlElements.ts
|
|
6
5
|
const selfClosingTags = [
|
|
@@ -686,7 +685,7 @@ const SUPPORTS_MATCH_MEDIA = IN_BROWSER && "matchMedia" in window && typeof wind
|
|
|
686
685
|
const SUPPORTS_OBSERVER = IN_BROWSER && "ResizeObserver" in window;
|
|
687
686
|
const SUPPORTS_INTERSECTION_OBSERVER = IN_BROWSER && "IntersectionObserver" in window;
|
|
688
687
|
const SUPPORTS_MUTATION_OBSERVER = IN_BROWSER && "MutationObserver" in window;
|
|
689
|
-
const version = "0.1.
|
|
688
|
+
const version = "0.1.2";
|
|
690
689
|
/* v8 ignore next -- build-time constant, __DEV__ short-circuits in tests */
|
|
691
690
|
const __LOGGER_ENABLED__ = false;
|
|
692
691
|
|
|
@@ -1571,7 +1570,7 @@ function createSelection(_options = {}) {
|
|
|
1571
1570
|
return registry.seek(direction, from, (ticket) => !toValue(ticket.disabled));
|
|
1572
1571
|
}
|
|
1573
1572
|
function mandate() {
|
|
1574
|
-
if (!mandatory || registry.size === 0 || selectedIds.size > 0) return;
|
|
1573
|
+
if (!toValue(mandatory) || registry.size === 0 || selectedIds.size > 0) return;
|
|
1575
1574
|
const ticket = seek("first");
|
|
1576
1575
|
if (ticket) select(ticket.id);
|
|
1577
1576
|
}
|
|
@@ -1579,12 +1578,12 @@ function createSelection(_options = {}) {
|
|
|
1579
1578
|
if (toValue(disabled)) return;
|
|
1580
1579
|
const item = registry.get(id);
|
|
1581
1580
|
if (!item || toValue(item.disabled)) return;
|
|
1582
|
-
if (!multiple) selectedIds.clear();
|
|
1581
|
+
if (!toValue(multiple)) selectedIds.clear();
|
|
1583
1582
|
selectedIds.add(id);
|
|
1584
1583
|
}
|
|
1585
1584
|
function unselect(id) {
|
|
1586
1585
|
if (toValue(disabled)) return;
|
|
1587
|
-
if (mandatory && selectedIds.size === 1) return;
|
|
1586
|
+
if (toValue(mandatory) && selectedIds.size === 1) return;
|
|
1588
1587
|
selectedIds.delete(id);
|
|
1589
1588
|
}
|
|
1590
1589
|
function toggle(id) {
|
|
@@ -1607,8 +1606,8 @@ function createSelection(_options = {}) {
|
|
|
1607
1606
|
id
|
|
1608
1607
|
};
|
|
1609
1608
|
const ticket = registry.register(item);
|
|
1610
|
-
if (enroll && !toValue(disabled) && !toValue(item.disabled)) selectedIds.add(ticket.id);
|
|
1611
|
-
if (mandatory === "force") mandate();
|
|
1609
|
+
if (toValue(enroll) && !toValue(disabled) && !toValue(item.disabled)) selectedIds.add(ticket.id);
|
|
1610
|
+
if (toValue(mandatory) === "force") mandate();
|
|
1612
1611
|
return ticket;
|
|
1613
1612
|
}
|
|
1614
1613
|
function unregister(id) {
|
|
@@ -2304,7 +2303,7 @@ function useProxyModel(registry, model, options) {
|
|
|
2304
2303
|
}
|
|
2305
2304
|
function transformOut(val) {
|
|
2306
2305
|
if (/* @__PURE__ */ isFunction(_transformOut)) return _transformOut(val);
|
|
2307
|
-
return multiple ? val : val[0];
|
|
2306
|
+
return toValue(multiple) ? val : val[0];
|
|
2308
2307
|
}
|
|
2309
2308
|
const modelAsArray = transformIn(model);
|
|
2310
2309
|
const pending = new Set(modelAsArray);
|
|
@@ -2326,10 +2325,10 @@ function useProxyModel(registry, model, options) {
|
|
|
2326
2325
|
const currentIds = new Set(toValue(registry.selectedIds));
|
|
2327
2326
|
const targetIds = /* @__PURE__ */ new Set();
|
|
2328
2327
|
for (const value of transformIn(val)) {
|
|
2329
|
-
const ids = registry.browse(value);
|
|
2328
|
+
const ids = registry.browse(toRaw(value));
|
|
2330
2329
|
if (ids) for (const id of ids) targetIds.add(id);
|
|
2331
2330
|
}
|
|
2332
|
-
if (multiple) {
|
|
2331
|
+
if (toValue(multiple)) {
|
|
2333
2332
|
for (const id of currentIds.difference(targetIds)) registry.selectedIds.delete(id);
|
|
2334
2333
|
for (const id of targetIds.difference(currentIds)) registry.selectedIds.add(id);
|
|
2335
2334
|
} else {
|
|
@@ -2341,7 +2340,7 @@ function useProxyModel(registry, model, options) {
|
|
|
2341
2340
|
registryWatch.resume();
|
|
2342
2341
|
}, {
|
|
2343
2342
|
flush: "sync",
|
|
2344
|
-
deep: multiple
|
|
2343
|
+
deep: toValue(multiple)
|
|
2345
2344
|
});
|
|
2346
2345
|
function onRegister(data) {
|
|
2347
2346
|
const ticket = data;
|
|
@@ -4279,118 +4278,6 @@ function useDate(namespace = "v0:date") {
|
|
|
4279
4278
|
//#region src/composables/useFeatures/adapters/generic/index.ts
|
|
4280
4279
|
var FeaturesAdapter = class {};
|
|
4281
4280
|
|
|
4282
|
-
//#endregion
|
|
4283
|
-
//#region src/composables/useFeatures/adapters/flagsmith/index.ts
|
|
4284
|
-
/**
|
|
4285
|
-
* @module FlagsmithFeatureAdapter
|
|
4286
|
-
*
|
|
4287
|
-
* @remarks
|
|
4288
|
-
* Flagsmith adapter for feature flags.
|
|
4289
|
-
*/
|
|
4290
|
-
var FlagsmithFeatureAdapter = class {
|
|
4291
|
-
client;
|
|
4292
|
-
options;
|
|
4293
|
-
constructor(client = flagsmith, options) {
|
|
4294
|
-
this.client = client;
|
|
4295
|
-
this.options = options;
|
|
4296
|
-
}
|
|
4297
|
-
setup(onUpdate) {
|
|
4298
|
-
const updateFlags = () => {
|
|
4299
|
-
const flags = this.client.getAllFlags();
|
|
4300
|
-
const adapterFlags = {};
|
|
4301
|
-
if (flags) for (const [key, flag] of Object.entries(flags)) {
|
|
4302
|
-
const isEnabled = flag.enabled;
|
|
4303
|
-
const variation = flag.value;
|
|
4304
|
-
adapterFlags[key] = variation !== null && variation !== void 0 ? {
|
|
4305
|
-
$value: isEnabled,
|
|
4306
|
-
$variation: variation
|
|
4307
|
-
} : isEnabled;
|
|
4308
|
-
}
|
|
4309
|
-
return adapterFlags;
|
|
4310
|
-
};
|
|
4311
|
-
this.client.init({
|
|
4312
|
-
...this.options,
|
|
4313
|
-
onChange: (oldFlags, params, loadingState) => {
|
|
4314
|
-
onUpdate(updateFlags());
|
|
4315
|
-
this.options.onChange?.(oldFlags, params, loadingState);
|
|
4316
|
-
}
|
|
4317
|
-
});
|
|
4318
|
-
this.disposeFn = () => this.client.stopListening();
|
|
4319
|
-
return updateFlags();
|
|
4320
|
-
}
|
|
4321
|
-
dispose() {
|
|
4322
|
-
this.disposeFn();
|
|
4323
|
-
}
|
|
4324
|
-
disposeFn = () => {};
|
|
4325
|
-
};
|
|
4326
|
-
|
|
4327
|
-
//#endregion
|
|
4328
|
-
//#region src/composables/useFeatures/adapters/launchdarkly/index.ts
|
|
4329
|
-
var LaunchDarklyFeatureAdapter = class {
|
|
4330
|
-
constructor(client) {
|
|
4331
|
-
this.client = client;
|
|
4332
|
-
}
|
|
4333
|
-
setup(onUpdate) {
|
|
4334
|
-
const updateFlags = () => {
|
|
4335
|
-
const allFlags = this.client.allFlags();
|
|
4336
|
-
const flags = {};
|
|
4337
|
-
for (const [key, value] of Object.entries(allFlags)) flags[key] = typeof value === "boolean" ? value : {
|
|
4338
|
-
$value: true,
|
|
4339
|
-
$variation: value
|
|
4340
|
-
};
|
|
4341
|
-
onUpdate(flags);
|
|
4342
|
-
return flags;
|
|
4343
|
-
};
|
|
4344
|
-
this.client.on("change", updateFlags);
|
|
4345
|
-
this.disposeFn = () => this.client.off("change", updateFlags);
|
|
4346
|
-
return updateFlags();
|
|
4347
|
-
}
|
|
4348
|
-
dispose() {
|
|
4349
|
-
this.disposeFn();
|
|
4350
|
-
}
|
|
4351
|
-
disposeFn = () => {};
|
|
4352
|
-
};
|
|
4353
|
-
|
|
4354
|
-
//#endregion
|
|
4355
|
-
//#region src/composables/useFeatures/adapters/posthog/index.ts
|
|
4356
|
-
var PostHogFeatureAdapter = class {
|
|
4357
|
-
constructor(client) {
|
|
4358
|
-
this.client = client;
|
|
4359
|
-
}
|
|
4360
|
-
setup(onUpdate) {
|
|
4361
|
-
const updateFlags = () => {
|
|
4362
|
-
const flags = {};
|
|
4363
|
-
const activeFlags = this.client.featureFlags.getFlags();
|
|
4364
|
-
if (activeFlags) {
|
|
4365
|
-
for (const key of activeFlags) {
|
|
4366
|
-
const isEnabled = this.client.isFeatureEnabled(key) ?? false;
|
|
4367
|
-
const payload = this.client.getFeatureFlagPayload(key);
|
|
4368
|
-
if (payload !== void 0 && payload !== null) flags[key] = {
|
|
4369
|
-
$value: isEnabled,
|
|
4370
|
-
$variation: payload
|
|
4371
|
-
};
|
|
4372
|
-
else {
|
|
4373
|
-
const variant = this.client.getFeatureFlag(key);
|
|
4374
|
-
flags[key] = variant !== true && variant !== false && variant !== void 0 && variant !== null ? {
|
|
4375
|
-
$value: true,
|
|
4376
|
-
$variation: variant
|
|
4377
|
-
} : isEnabled;
|
|
4378
|
-
}
|
|
4379
|
-
}
|
|
4380
|
-
onUpdate(flags);
|
|
4381
|
-
return flags;
|
|
4382
|
-
}
|
|
4383
|
-
return {};
|
|
4384
|
-
};
|
|
4385
|
-
this.disposeFn = this.client.onFeatureFlags(updateFlags);
|
|
4386
|
-
return updateFlags();
|
|
4387
|
-
}
|
|
4388
|
-
dispose() {
|
|
4389
|
-
this.disposeFn();
|
|
4390
|
-
}
|
|
4391
|
-
disposeFn = () => {};
|
|
4392
|
-
};
|
|
4393
|
-
|
|
4394
4281
|
//#endregion
|
|
4395
4282
|
//#region src/composables/useFeatures/index.ts
|
|
4396
4283
|
/**
|
|
@@ -7822,6 +7709,7 @@ var ThemeAdapter = class {
|
|
|
7822
7709
|
*/
|
|
7823
7710
|
var Vuetify0ThemeAdapter = class extends ThemeAdapter {
|
|
7824
7711
|
cspNonce;
|
|
7712
|
+
sheet;
|
|
7825
7713
|
constructor(options = {}) {
|
|
7826
7714
|
super(options.prefix ?? "v0");
|
|
7827
7715
|
this.cspNonce = options.cspNonce;
|
|
@@ -7861,16 +7749,11 @@ var Vuetify0ThemeAdapter = class extends ThemeAdapter {
|
|
|
7861
7749
|
}
|
|
7862
7750
|
upsert(styles) {
|
|
7863
7751
|
if (!IN_BROWSER) return;
|
|
7864
|
-
|
|
7865
|
-
|
|
7866
|
-
|
|
7867
|
-
if (!styleEl) {
|
|
7868
|
-
styleEl = document.createElement("style");
|
|
7869
|
-
styleEl.id = id;
|
|
7870
|
-
if (this.cspNonce) styleEl.setAttribute("nonce", this.cspNonce);
|
|
7871
|
-
document.head.append(styleEl);
|
|
7752
|
+
if (!this.sheet) {
|
|
7753
|
+
this.sheet = new CSSStyleSheet();
|
|
7754
|
+
document.adoptedStyleSheets.push(this.sheet);
|
|
7872
7755
|
}
|
|
7873
|
-
|
|
7756
|
+
this.sheet.replaceSync(styles);
|
|
7874
7757
|
}
|
|
7875
7758
|
};
|
|
7876
7759
|
|
|
@@ -8833,7 +8716,7 @@ function useClickOutside(target, handler, options = {}) {
|
|
|
8833
8716
|
* Resolve target(s) to an array of HTMLElements.
|
|
8834
8717
|
*/
|
|
8835
8718
|
function getTargets() {
|
|
8836
|
-
return toArray(target).map((source) => toValue(source)).filter((el) =>
|
|
8719
|
+
return toArray(target).map((source) => toValue(source)).filter((el) => !!el && /* @__PURE__ */ isFunction(el.contains));
|
|
8837
8720
|
}
|
|
8838
8721
|
/**
|
|
8839
8722
|
* Resolve ignore targets to a tuple of [selectors, elements].
|
|
@@ -8881,6 +8764,7 @@ function useClickOutside(target, handler, options = {}) {
|
|
|
8881
8764
|
const targets = getTargets();
|
|
8882
8765
|
if (targets.length === 0) return false;
|
|
8883
8766
|
return targets.every((el) => {
|
|
8767
|
+
if (/* @__PURE__ */ isNullOrUndefined(el) || !/* @__PURE__ */ isFunction(el.contains)) return false;
|
|
8884
8768
|
return el !== eventTarget && !el.contains(eventTarget);
|
|
8885
8769
|
});
|
|
8886
8770
|
}
|
|
@@ -11213,4 +11097,4 @@ const Tabs = {
|
|
|
11213
11097
|
};
|
|
11214
11098
|
|
|
11215
11099
|
//#endregion
|
|
11216
|
-
export { Atom_default as Atom, Avatar, AvatarFallback_default as AvatarFallback, AvatarImage_default as AvatarImage, AvatarRoot_default as AvatarRoot, COMMON_ELEMENTS, Checkbox, CheckboxGroup_default as CheckboxGroup, CheckboxHiddenInput_default as CheckboxHiddenInput, CheckboxIndicator_default as CheckboxIndicator, CheckboxRoot_default as CheckboxRoot, CheckboxSelectAll_default as CheckboxSelectAll, ConsolaLoggerAdapter, Dialog, DialogActivator_default as DialogActivator, DialogClose_default as DialogClose, DialogContent_default as DialogContent, DialogDescription_default as DialogDescription, DialogRoot_default as DialogRoot, DialogTitle_default as DialogTitle, ExpansionPanel, ExpansionPanelActivator_default as ExpansionPanelActivator, ExpansionPanelContent_default as ExpansionPanelContent, ExpansionPanelHeader_default as ExpansionPanelHeader, ExpansionPanelItem_default as ExpansionPanelItem, ExpansionPanelRoot_default as ExpansionPanelRoot, FeaturesAdapter,
|
|
11100
|
+
export { Atom_default as Atom, Avatar, AvatarFallback_default as AvatarFallback, AvatarImage_default as AvatarImage, AvatarRoot_default as AvatarRoot, COMMON_ELEMENTS, Checkbox, CheckboxGroup_default as CheckboxGroup, CheckboxHiddenInput_default as CheckboxHiddenInput, CheckboxIndicator_default as CheckboxIndicator, CheckboxRoot_default as CheckboxRoot, CheckboxSelectAll_default as CheckboxSelectAll, ConsolaLoggerAdapter, Dialog, DialogActivator_default as DialogActivator, DialogClose_default as DialogClose, DialogContent_default as DialogContent, DialogDescription_default as DialogDescription, DialogRoot_default as DialogRoot, DialogTitle_default as DialogTitle, ExpansionPanel, ExpansionPanelActivator_default as ExpansionPanelActivator, ExpansionPanelContent_default as ExpansionPanelContent, ExpansionPanelHeader_default as ExpansionPanelHeader, ExpansionPanelItem_default as ExpansionPanelItem, ExpansionPanelRoot_default as ExpansionPanelRoot, FeaturesAdapter, Group, GroupItem_default as GroupItem, GroupRoot_default as GroupRoot, IN_BROWSER, MemoryAdapter, Pagination, PaginationEllipsis_default as PaginationEllipsis, PaginationFirst_default as PaginationFirst, PaginationItem_default as PaginationItem, PaginationLast_default as PaginationLast, PaginationNext_default as PaginationNext, PaginationPrev_default as PaginationPrev, PaginationRoot_default as PaginationRoot, PaginationStatus_default as PaginationStatus, PermissionAdapter, PinoLoggerAdapter, Popover, PopoverActivator_default as PopoverActivator, PopoverContent_default as PopoverContent, PopoverRoot_default as PopoverRoot, Radio, RadioGroup_default as RadioGroup, RadioHiddenInput_default as RadioHiddenInput, RadioIndicator_default as RadioIndicator, RadioRoot_default as RadioRoot, SELF_CLOSING_TAGS, SUPPORTS_INTERSECTION_OBSERVER, SUPPORTS_MATCH_MEDIA, SUPPORTS_MUTATION_OBSERVER, SUPPORTS_OBSERVER, SUPPORTS_TOUCH, Selection, SelectionItem_default as SelectionItem, SelectionRoot_default as SelectionRoot, Single, SingleItem_default as SingleItem, SingleRoot_default as SingleRoot, Step, StepItem_default as StepItem, StepRoot_default as StepRoot, Tabs, TabsItem_default as TabsItem, TabsList_default as TabsList, TabsPanel_default as TabsPanel, TabsRoot_default as TabsRoot, Vuetify0LocaleAdapter, Vuetify0LoggerAdapter, Vuetify0ThemeAdapter, __LOGGER_ENABLED__, clamp, createBreakpoints, createBreakpointsContext, createBreakpointsPlugin, createContext, createDate, createDateContext, createDatePlugin, createFallbackHydration, createFeatures, createFeaturesContext, createFeaturesPlugin, createFilter, createFilterContext, createForm, createFormContext, createGroup, createGroupContext, createHydration, createHydrationContext, createHydrationPlugin, createLocale, createLocaleContext, createLocaleFallback, createLocalePlugin, createLogger, createLoggerContext, createLoggerPlugin, createNested, createNestedContext, createOverflow, createOverflowContext, createPagination, createPaginationContext, createPermissions, createPermissionsContext, createPermissionsPlugin, createPlugin, createQueue, createQueueContext, createRegistry, createRegistryContext, createSelection, createSelectionContext, createSingle, createSingleContext, createStep, createStepContext, createStorage, createStorageContext, createStoragePlugin, createTheme, createThemeContext, createThemePlugin, createTimeline, createTimelineContext, createTokens, createTokensContext, createTrinity, debounce, instanceExists, instanceName, isArray, isBoolean, isFunction, isNaN, isNull, isNullOrUndefined, isNumber, isObject, isPrimitive, isSelfClosingTag, isString, isSymbol, isUndefined, mergeDeep, multipleOpenStrategy, provideAvatarContext, provideCheckboxGroup, provideCheckboxRoot, provideContext, provideDialogContext, provideExpansionPanelItem, provideExpansionPanelSelection, provideGroupRoot, providePaginationControls, providePaginationItems, providePaginationRoot, providePopoverContext, provideRadioGroup, provideRadioRoot, provideSelectionRoot, provideSingleRoot, provideStepRoot, provideTabsRoot, range, singleOpenStrategy, toArray, toReactive, useAvatarRoot, useBreakpoints, useCheckboxGroup, useCheckboxRoot, useClickOutside, useContext, useDate, useDialogContext, useDocumentEventListener, useElementIntersection, useElementSize, useEventListener, useExpansionPanelItem, useExpansionPanelRoot, useFeatures, useFilter, useFilterContext, useForm, useGroup, useGroupRoot, useHotkey, useHydration, useId, useIntersectionObserver, useLazy, useLocale, useLogger, useMediaQuery, useMutationObserver, useNested, useOverflow, usePagination, usePaginationControls, usePaginationItems, usePaginationRoot, usePermissions, usePopoverContext, usePrefersContrast, usePrefersDark, usePrefersReducedMotion, useProxyModel, useProxyRegistry, useQueue, useRadioGroup, useRadioRoot, useResizeObserver, useSelection, useSelectionRoot, useSingle, useSingleRoot, useStep, useStepRoot, useStorage, useTabsRoot, useTheme, useTimeline, useToggleScope, useTokens, useVirtual, useWindowEventListener, version };
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import "../index-DlxrzbvZ.mjs";
|
|
2
|
-
import { $ as RadioRootSlotProps, $n as DialogContext, $t as providePaginationControls, A as SingleItemProps, An as ExpansionPanelOptionsContext, Ar as AvatarImageEmits, At as PaginationStatusSlotProps, B as SelectionItemSlotProps, Bn as DialogDescriptionProps, Br as AtomExpose, Bt as _default$22, C as _default$41, Cn as _default$17, Cr as _default$4, Ct as PopoverRootProps, D as provideStepRoot, Dn as _default$18, Dr as AvatarFallbackProps, Dt as usePopoverContext, E as _default$42, En as ExpansionPanelItemSlotProps, Er as Avatar, Et as providePopoverContext, F as _default$40, Fn as useExpansionPanelRoot, Fr as AvatarRootProps, Ft as PaginationNextProps, G as provideSelectionRoot, Gn as _default$14, Gt as PaginationFirstSlotProps, H as SelectionRootProps, Hn as _default$12, Hr as AtomSlots, Ht as PaginationPrevSlotProps, I as provideSingleRoot, In as Dialog, Ir as AvatarTicket, It as PaginationNextSlotProps, J as RadioIndicatorProps, Jn as DialogContentSlotProps, Jt as PaginationItemSlotProps, K as useSelectionRoot, Kn as DialogContentEmits, Kt as _default$23, L as useSingleRoot, Ln as DialogCloseProps, Lr as _default$3, Lt as _default$26, M as _default$39, Mn as ExpansionPanelRootSlotProps, Mr as AvatarImageSlotProps, Mt as PaginationLastProps, N as SingleRootProps, Nn as _default$19, Nr as _default$2, Nt as PaginationLastSlotProps, O as useStepRoot, On as provideExpansionPanelItem, Or as AvatarFallbackSlotProps, Ot as Pagination, P as SingleRootSlotProps, Pn as provideExpansionPanelSelection, Pr as AvatarContext, Pt as _default$25, Q as RadioRootProps, Qn as _default$9, Qt as _default$28, R as Selection, Rn as DialogCloseSlotProps, Rr as provideAvatarContext, Rt as PaginationEllipsisProps, S as StepItemSlotProps, Sn as ExpansionPanelHeaderSlotProps, Sr as CheckboxGroupSlotProps, St as PopoverContext, T as StepRootSlotProps, Tn as ExpansionPanelItemProps, Tr as useCheckboxGroup, Tt as _default$32, U as SelectionRootSlotProps, Un as DialogTitleProps, Ur as _default, Ut as _default$27, V as _default$37, Vn as DialogDescriptionSlotProps, Vr as AtomProps, Vt as PaginationPrevProps, W as _default$38, Wn as DialogTitleSlotProps, Wt as PaginationFirstProps, X as _default$35, Xn as DialogActivatorProps, Xt as PaginationRootProps, Y as RadioIndicatorSlotProps, Yn as _default$11, Yt as _default$24, Z as RadioRootContext, Zn as DialogActivatorSlotProps, Zt as PaginationRootSlotProps, _ as _default$46, _n as _default$16, _r as provideCheckboxRoot, _t as PopoverContentSlotProps, a as TabsItemProps, an as Group, ar as Checkbox, at as _default$34, b as Step, bn as _default$15, br as _default$5, bt as PopoverActivatorSlotProps, c as TabsListProps, cn as _default$20, cr as _default$8, ct as RadioGroupProps, d as TabsActivation, dn as _default$21, dr as _default$6, dt as _default$33, en as providePaginationItems, er as DialogRootProps, et as RadioState, f as TabsContext, fn as provideGroupRoot, fr as CheckboxRootContext, ft as provideRadioGroup, g as TabsTicket, gn as ExpansionPanelContentSlotProps, gr as _default$7, gt as PopoverContentProps, h as TabsRootSlotProps, hn as ExpansionPanelContentProps, hr as CheckboxState, ht as PopoverContentEmits, i as _default$45, in as usePaginationRoot, ir as useDialogContext, it as RadioHiddenInputProps, j as SingleItemSlotProps, jn as ExpansionPanelRootProps, jr as AvatarImageProps, jt as _default$29, k as Single, kn as useExpansionPanelItem, kr as _default$1, kt as PaginationStatusProps, l as TabsListSlotProps, ln as GroupRootProps, lr as CheckboxIndicatorProps, lt as RadioGroupSlotProps, m as TabsRootProps, mn as ExpansionPanel, mr as CheckboxRootSlotProps, mt as Popover, n as TabsPanelProps, nn as usePaginationControls, nr as _default$13, nt as provideRadioRoot, o as TabsItemSlotProps, on as GroupItemProps, or as CheckboxSelectAllProps, ot as RadioActivation, p as TabsOrientation, pn as useGroupRoot, pr as CheckboxRootProps, pt as useRadioGroup, q as Radio, qn as DialogContentProps, qt as PaginationItemProps, r as TabsPanelSlotProps, rn as usePaginationItems, rr as provideDialogContext, rt as useRadioRoot, s as _default$43, sn as GroupItemSlotProps, sr as CheckboxSelectAllSlotProps, st as RadioGroupContext, t as Tabs, tn as providePaginationRoot, tr as DialogRootSlotProps, tt as _default$36, u as _default$44, un as GroupRootSlotProps, ur as CheckboxIndicatorSlotProps, ut as RadioTicket, v as provideTabsRoot, vn as ExpansionPanelActivatorProps, vr as useCheckboxRoot, vt as _default$31, w as StepRootProps, wn as ExpansionPanelItemContext, wr as provideCheckboxGroup, wt as PopoverRootSlotProps, x as StepItemProps, xn as ExpansionPanelHeaderProps, xr as CheckboxGroupProps, xt as _default$30, y as useTabsRoot, yn as ExpansionPanelActivatorSlotProps, yr as CheckboxHiddenInputProps, yt as PopoverActivatorProps, z as SelectionItemProps, zn as _default$10, zr as useAvatarRoot, zt as PaginationEllipsisSlotProps } from "../index-
|
|
3
|
-
import "../index-
|
|
2
|
+
import { $ as RadioRootSlotProps, $n as DialogContext, $t as providePaginationControls, A as SingleItemProps, An as ExpansionPanelOptionsContext, Ar as AvatarImageEmits, At as PaginationStatusSlotProps, B as SelectionItemSlotProps, Bn as DialogDescriptionProps, Br as AtomExpose, Bt as _default$22, C as _default$41, Cn as _default$17, Cr as _default$4, Ct as PopoverRootProps, D as provideStepRoot, Dn as _default$18, Dr as AvatarFallbackProps, Dt as usePopoverContext, E as _default$42, En as ExpansionPanelItemSlotProps, Er as Avatar, Et as providePopoverContext, F as _default$40, Fn as useExpansionPanelRoot, Fr as AvatarRootProps, Ft as PaginationNextProps, G as provideSelectionRoot, Gn as _default$14, Gt as PaginationFirstSlotProps, H as SelectionRootProps, Hn as _default$12, Hr as AtomSlots, Ht as PaginationPrevSlotProps, I as provideSingleRoot, In as Dialog, Ir as AvatarTicket, It as PaginationNextSlotProps, J as RadioIndicatorProps, Jn as DialogContentSlotProps, Jt as PaginationItemSlotProps, K as useSelectionRoot, Kn as DialogContentEmits, Kt as _default$23, L as useSingleRoot, Ln as DialogCloseProps, Lr as _default$3, Lt as _default$26, M as _default$39, Mn as ExpansionPanelRootSlotProps, Mr as AvatarImageSlotProps, Mt as PaginationLastProps, N as SingleRootProps, Nn as _default$19, Nr as _default$2, Nt as PaginationLastSlotProps, O as useStepRoot, On as provideExpansionPanelItem, Or as AvatarFallbackSlotProps, Ot as Pagination, P as SingleRootSlotProps, Pn as provideExpansionPanelSelection, Pr as AvatarContext, Pt as _default$25, Q as RadioRootProps, Qn as _default$9, Qt as _default$28, R as Selection, Rn as DialogCloseSlotProps, Rr as provideAvatarContext, Rt as PaginationEllipsisProps, S as StepItemSlotProps, Sn as ExpansionPanelHeaderSlotProps, Sr as CheckboxGroupSlotProps, St as PopoverContext, T as StepRootSlotProps, Tn as ExpansionPanelItemProps, Tr as useCheckboxGroup, Tt as _default$32, U as SelectionRootSlotProps, Un as DialogTitleProps, Ur as _default, Ut as _default$27, V as _default$37, Vn as DialogDescriptionSlotProps, Vr as AtomProps, Vt as PaginationPrevProps, W as _default$38, Wn as DialogTitleSlotProps, Wt as PaginationFirstProps, X as _default$35, Xn as DialogActivatorProps, Xt as PaginationRootProps, Y as RadioIndicatorSlotProps, Yn as _default$11, Yt as _default$24, Z as RadioRootContext, Zn as DialogActivatorSlotProps, Zt as PaginationRootSlotProps, _ as _default$46, _n as _default$16, _r as provideCheckboxRoot, _t as PopoverContentSlotProps, a as TabsItemProps, an as Group, ar as Checkbox, at as _default$34, b as Step, bn as _default$15, br as _default$5, bt as PopoverActivatorSlotProps, c as TabsListProps, cn as _default$20, cr as _default$8, ct as RadioGroupProps, d as TabsActivation, dn as _default$21, dr as _default$6, dt as _default$33, en as providePaginationItems, er as DialogRootProps, et as RadioState, f as TabsContext, fn as provideGroupRoot, fr as CheckboxRootContext, ft as provideRadioGroup, g as TabsTicket, gn as ExpansionPanelContentSlotProps, gr as _default$7, gt as PopoverContentProps, h as TabsRootSlotProps, hn as ExpansionPanelContentProps, hr as CheckboxState, ht as PopoverContentEmits, i as _default$45, in as usePaginationRoot, ir as useDialogContext, it as RadioHiddenInputProps, j as SingleItemSlotProps, jn as ExpansionPanelRootProps, jr as AvatarImageProps, jt as _default$29, k as Single, kn as useExpansionPanelItem, kr as _default$1, kt as PaginationStatusProps, l as TabsListSlotProps, ln as GroupRootProps, lr as CheckboxIndicatorProps, lt as RadioGroupSlotProps, m as TabsRootProps, mn as ExpansionPanel, mr as CheckboxRootSlotProps, mt as Popover, n as TabsPanelProps, nn as usePaginationControls, nr as _default$13, nt as provideRadioRoot, o as TabsItemSlotProps, on as GroupItemProps, or as CheckboxSelectAllProps, ot as RadioActivation, p as TabsOrientation, pn as useGroupRoot, pr as CheckboxRootProps, pt as useRadioGroup, q as Radio, qn as DialogContentProps, qt as PaginationItemProps, r as TabsPanelSlotProps, rn as usePaginationItems, rr as provideDialogContext, rt as useRadioRoot, s as _default$43, sn as GroupItemSlotProps, sr as CheckboxSelectAllSlotProps, st as RadioGroupContext, t as Tabs, tn as providePaginationRoot, tr as DialogRootSlotProps, tt as _default$36, u as _default$44, un as GroupRootSlotProps, ur as CheckboxIndicatorSlotProps, ut as RadioTicket, v as provideTabsRoot, vn as ExpansionPanelActivatorProps, vr as useCheckboxRoot, vt as _default$31, w as StepRootProps, wn as ExpansionPanelItemContext, wr as provideCheckboxGroup, wt as PopoverRootSlotProps, x as StepItemProps, xn as ExpansionPanelHeaderProps, xr as CheckboxGroupProps, xt as _default$30, y as useTabsRoot, yn as ExpansionPanelActivatorSlotProps, yr as CheckboxHiddenInputProps, yt as PopoverActivatorProps, z as SelectionItemProps, zn as _default$10, zr as useAvatarRoot, zt as PaginationEllipsisSlotProps } from "../index-PuLeBGZ3.mjs";
|
|
3
|
+
import "../index-qSuLpob3.mjs";
|
|
4
4
|
export { _default as Atom, AtomExpose, AtomProps, AtomSlots, Avatar, AvatarContext, _default$1 as AvatarFallback, AvatarFallbackProps, AvatarFallbackSlotProps, _default$2 as AvatarImage, AvatarImageEmits, AvatarImageProps, AvatarImageSlotProps, _default$3 as AvatarRoot, AvatarRootProps, AvatarTicket, Checkbox, _default$4 as CheckboxGroup, CheckboxGroupProps, CheckboxGroupSlotProps, _default$5 as CheckboxHiddenInput, CheckboxHiddenInputProps, _default$6 as CheckboxIndicator, CheckboxIndicatorProps, CheckboxIndicatorSlotProps, _default$7 as CheckboxRoot, CheckboxRootContext, CheckboxRootProps, CheckboxRootSlotProps, _default$8 as CheckboxSelectAll, CheckboxSelectAllProps, CheckboxSelectAllSlotProps, CheckboxState, Dialog, _default$9 as DialogActivator, DialogActivatorProps, DialogActivatorSlotProps, _default$10 as DialogClose, DialogCloseProps, DialogCloseSlotProps, _default$11 as DialogContent, DialogContentEmits, DialogContentProps, DialogContentSlotProps, DialogContext, _default$12 as DialogDescription, DialogDescriptionProps, DialogDescriptionSlotProps, _default$13 as DialogRoot, DialogRootProps, DialogRootSlotProps, _default$14 as DialogTitle, DialogTitleProps, DialogTitleSlotProps, ExpansionPanel, _default$15 as ExpansionPanelActivator, ExpansionPanelActivatorProps, ExpansionPanelActivatorSlotProps, _default$16 as ExpansionPanelContent, ExpansionPanelContentProps, ExpansionPanelContentSlotProps, _default$17 as ExpansionPanelHeader, ExpansionPanelHeaderProps, ExpansionPanelHeaderSlotProps, _default$18 as ExpansionPanelItem, ExpansionPanelItemContext, ExpansionPanelItemProps, ExpansionPanelItemSlotProps, ExpansionPanelOptionsContext, _default$19 as ExpansionPanelRoot, ExpansionPanelRootProps, ExpansionPanelRootSlotProps, Group, _default$20 as GroupItem, GroupItemProps, GroupItemSlotProps, _default$21 as GroupRoot, GroupRootProps, GroupRootSlotProps, Pagination, _default$22 as PaginationEllipsis, PaginationEllipsisProps, PaginationEllipsisSlotProps, _default$23 as PaginationFirst, PaginationFirstProps, PaginationFirstSlotProps, _default$24 as PaginationItem, PaginationItemProps, PaginationItemSlotProps, _default$25 as PaginationLast, PaginationLastProps, PaginationLastSlotProps, _default$26 as PaginationNext, PaginationNextProps, PaginationNextSlotProps, _default$27 as PaginationPrev, PaginationPrevProps, PaginationPrevSlotProps, _default$28 as PaginationRoot, PaginationRootProps, PaginationRootSlotProps, _default$29 as PaginationStatus, PaginationStatusProps, PaginationStatusSlotProps, Popover, _default$30 as PopoverActivator, PopoverActivatorProps, PopoverActivatorSlotProps, _default$31 as PopoverContent, PopoverContentEmits, PopoverContentProps, PopoverContentSlotProps, PopoverContext, _default$32 as PopoverRoot, PopoverRootProps, PopoverRootSlotProps, Radio, RadioActivation, _default$33 as RadioGroup, RadioGroupContext, RadioGroupProps, RadioGroupSlotProps, _default$34 as RadioHiddenInput, RadioHiddenInputProps, _default$35 as RadioIndicator, RadioIndicatorProps, RadioIndicatorSlotProps, _default$36 as RadioRoot, RadioRootContext, RadioRootProps, RadioRootSlotProps, RadioState, RadioTicket, Selection, _default$37 as SelectionItem, SelectionItemProps, SelectionItemSlotProps, _default$38 as SelectionRoot, SelectionRootProps, SelectionRootSlotProps, Single, _default$39 as SingleItem, SingleItemProps, SingleItemSlotProps, _default$40 as SingleRoot, SingleRootProps, SingleRootSlotProps, Step, _default$41 as StepItem, StepItemProps, StepItemSlotProps, _default$42 as StepRoot, StepRootProps, StepRootSlotProps, Tabs, TabsActivation, TabsContext, _default$43 as TabsItem, TabsItemProps, TabsItemSlotProps, _default$44 as TabsList, TabsListProps, TabsListSlotProps, TabsOrientation, _default$45 as TabsPanel, TabsPanelProps, TabsPanelSlotProps, _default$46 as TabsRoot, TabsRootProps, TabsRootSlotProps, TabsTicket, provideAvatarContext, provideCheckboxGroup, provideCheckboxRoot, provideDialogContext, provideExpansionPanelItem, provideExpansionPanelSelection, provideGroupRoot, providePaginationControls, providePaginationItems, providePaginationRoot, providePopoverContext, provideRadioGroup, provideRadioRoot, provideSelectionRoot, provideSingleRoot, provideStepRoot, provideTabsRoot, useAvatarRoot, useCheckboxGroup, useCheckboxRoot, useDialogContext, useExpansionPanelItem, useExpansionPanelRoot, useGroupRoot, usePaginationControls, usePaginationItems, usePaginationRoot, usePopoverContext, useRadioGroup, useRadioRoot, useSelectionRoot, useSingleRoot, useStepRoot, useTabsRoot };
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import "../htmlElements-DO9n35bD.mjs";
|
|
2
2
|
import "../utilities-B58TiS_S.mjs";
|
|
3
|
-
import { $ as Group, A as provideRadioGroup, At as CheckboxGroup_default, B as PaginationPrev_default, C as Radio, Ct as Checkbox, D as provideRadioRoot, Dt as CheckboxRoot_default, E as RadioRoot_default, Et as CheckboxHiddenInput_default, F as PopoverRoot_default, Ft as AvatarFallback_default, G as PaginationEllipsis_default, H as PaginationLast_default, I as providePopoverContext, It as AvatarRoot_default, J as providePaginationItems, K as PaginationRoot_default, L as usePopoverContext, Lt as provideAvatarContext, M as Popover, Mt as useCheckboxGroup, N as PopoverContent_default, Nt as Avatar, O as useRadioRoot, Ot as provideCheckboxRoot, P as PopoverActivator_default, Pt as AvatarImage_default, Q as usePaginationRoot, R as Pagination, Rt as useAvatarRoot, S as useSelectionRoot, St as useDialogContext, T as RadioHiddenInput_default, Tt as CheckboxIndicator_default, U as PaginationItem_default, V as PaginationNext_default, W as PaginationFirst_default, X as usePaginationControls, Y as providePaginationRoot, Z as usePaginationItems, _ as useSingleRoot, _t as DialogDescription_default, a as TabsRoot_default, at as ExpansionPanelHeader_default, b as SelectionRoot_default, bt as DialogRoot_default, c as Step, ct as ExpansionPanelItem_default, d as provideStepRoot, dt as ExpansionPanelRoot_default, et as GroupItem_default, f as useStepRoot, ft as provideExpansionPanelSelection, g as provideSingleRoot, gt as DialogTitle_default, h as SingleRoot_default, ht as DialogActivator_default, i as TabsList_default, it as ExpansionPanel, j as useRadioGroup, jt as provideCheckboxGroup, k as RadioGroup_default, kt as useCheckboxRoot, l as StepItem_default, lt as provideExpansionPanelItem, m as SingleItem_default, mt as Dialog, n as TabsPanel_default, nt as provideGroupRoot, o as provideTabsRoot, ot as ExpansionPanelContent_default, p as Single, pt as useExpansionPanelRoot, q as providePaginationControls, r as TabsItem_default, rt as useGroupRoot, s as useTabsRoot, st as ExpansionPanelActivator_default, t as Tabs, tt as GroupRoot_default, u as StepRoot_default, ut as useExpansionPanelItem, v as Selection, vt as DialogContent_default, w as RadioIndicator_default, wt as CheckboxSelectAll_default, x as provideSelectionRoot, xt as provideDialogContext, y as SelectionItem_default, yt as DialogClose_default, z as PaginationStatus_default, zt as Atom_default } from "../components-
|
|
4
|
-
import "../useClickOutside-
|
|
5
|
-
import "../globals-
|
|
3
|
+
import { $ as Group, A as provideRadioGroup, At as CheckboxGroup_default, B as PaginationPrev_default, C as Radio, Ct as Checkbox, D as provideRadioRoot, Dt as CheckboxRoot_default, E as RadioRoot_default, Et as CheckboxHiddenInput_default, F as PopoverRoot_default, Ft as AvatarFallback_default, G as PaginationEllipsis_default, H as PaginationLast_default, I as providePopoverContext, It as AvatarRoot_default, J as providePaginationItems, K as PaginationRoot_default, L as usePopoverContext, Lt as provideAvatarContext, M as Popover, Mt as useCheckboxGroup, N as PopoverContent_default, Nt as Avatar, O as useRadioRoot, Ot as provideCheckboxRoot, P as PopoverActivator_default, Pt as AvatarImage_default, Q as usePaginationRoot, R as Pagination, Rt as useAvatarRoot, S as useSelectionRoot, St as useDialogContext, T as RadioHiddenInput_default, Tt as CheckboxIndicator_default, U as PaginationItem_default, V as PaginationNext_default, W as PaginationFirst_default, X as usePaginationControls, Y as providePaginationRoot, Z as usePaginationItems, _ as useSingleRoot, _t as DialogDescription_default, a as TabsRoot_default, at as ExpansionPanelHeader_default, b as SelectionRoot_default, bt as DialogRoot_default, c as Step, ct as ExpansionPanelItem_default, d as provideStepRoot, dt as ExpansionPanelRoot_default, et as GroupItem_default, f as useStepRoot, ft as provideExpansionPanelSelection, g as provideSingleRoot, gt as DialogTitle_default, h as SingleRoot_default, ht as DialogActivator_default, i as TabsList_default, it as ExpansionPanel, j as useRadioGroup, jt as provideCheckboxGroup, k as RadioGroup_default, kt as useCheckboxRoot, l as StepItem_default, lt as provideExpansionPanelItem, m as SingleItem_default, mt as Dialog, n as TabsPanel_default, nt as provideGroupRoot, o as provideTabsRoot, ot as ExpansionPanelContent_default, p as Single, pt as useExpansionPanelRoot, q as providePaginationControls, r as TabsItem_default, rt as useGroupRoot, s as useTabsRoot, st as ExpansionPanelActivator_default, t as Tabs, tt as GroupRoot_default, u as StepRoot_default, ut as useExpansionPanelItem, v as Selection, vt as DialogContent_default, w as RadioIndicator_default, wt as CheckboxSelectAll_default, x as provideSelectionRoot, xt as provideDialogContext, y as SelectionItem_default, yt as DialogClose_default, z as PaginationStatus_default, zt as Atom_default } from "../components-z56rRlS4.mjs";
|
|
4
|
+
import "../useClickOutside-Dp1MHIjr.mjs";
|
|
5
|
+
import "../globals-VwjZ5i4B.mjs";
|
|
6
6
|
|
|
7
7
|
export { Atom_default as Atom, Avatar, AvatarFallback_default as AvatarFallback, AvatarImage_default as AvatarImage, AvatarRoot_default as AvatarRoot, Checkbox, CheckboxGroup_default as CheckboxGroup, CheckboxHiddenInput_default as CheckboxHiddenInput, CheckboxIndicator_default as CheckboxIndicator, CheckboxRoot_default as CheckboxRoot, CheckboxSelectAll_default as CheckboxSelectAll, Dialog, DialogActivator_default as DialogActivator, DialogClose_default as DialogClose, DialogContent_default as DialogContent, DialogDescription_default as DialogDescription, DialogRoot_default as DialogRoot, DialogTitle_default as DialogTitle, ExpansionPanel, ExpansionPanelActivator_default as ExpansionPanelActivator, ExpansionPanelContent_default as ExpansionPanelContent, ExpansionPanelHeader_default as ExpansionPanelHeader, ExpansionPanelItem_default as ExpansionPanelItem, ExpansionPanelRoot_default as ExpansionPanelRoot, Group, GroupItem_default as GroupItem, GroupRoot_default as GroupRoot, Pagination, PaginationEllipsis_default as PaginationEllipsis, PaginationFirst_default as PaginationFirst, PaginationItem_default as PaginationItem, PaginationLast_default as PaginationLast, PaginationNext_default as PaginationNext, PaginationPrev_default as PaginationPrev, PaginationRoot_default as PaginationRoot, PaginationStatus_default as PaginationStatus, Popover, PopoverActivator_default as PopoverActivator, PopoverContent_default as PopoverContent, PopoverRoot_default as PopoverRoot, Radio, RadioGroup_default as RadioGroup, RadioHiddenInput_default as RadioHiddenInput, RadioIndicator_default as RadioIndicator, RadioRoot_default as RadioRoot, Selection, SelectionItem_default as SelectionItem, SelectionRoot_default as SelectionRoot, Single, SingleItem_default as SingleItem, SingleRoot_default as SingleRoot, Step, StepItem_default as StepItem, StepRoot_default as StepRoot, Tabs, TabsItem_default as TabsItem, TabsList_default as TabsList, TabsPanel_default as TabsPanel, TabsRoot_default as TabsRoot, provideAvatarContext, provideCheckboxGroup, provideCheckboxRoot, provideDialogContext, provideExpansionPanelItem, provideExpansionPanelSelection, provideGroupRoot, providePaginationControls, providePaginationItems, providePaginationRoot, providePopoverContext, provideRadioGroup, provideRadioRoot, provideSelectionRoot, provideSingleRoot, provideStepRoot, provideTabsRoot, useAvatarRoot, useCheckboxGroup, useCheckboxRoot, useDialogContext, useExpansionPanelItem, useExpansionPanelRoot, useGroupRoot, usePaginationControls, usePaginationItems, usePaginationRoot, usePopoverContext, useRadioGroup, useRadioRoot, useSelectionRoot, useSingleRoot, useStepRoot, useTabsRoot };
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { r as isSelfClosingTag } from "./htmlElements-DO9n35bD.mjs";
|
|
2
2
|
import { c as isNullOrUndefined, f as isString, s as isNull, u as isObject } from "./utilities-B58TiS_S.mjs";
|
|
3
|
-
import {
|
|
4
|
-
import { t as IN_BROWSER } from "./globals-
|
|
3
|
+
import { Kt as createRegistry, Lt as useProxyModel, P as createOverflow, Rt as createGroup, Ut as createSelection, b as createStep, j as createPagination, o as useToggleScope, rn as createContext, t as useClickOutside, wt as createSingle, yt as useLocale } from "./useClickOutside-Dp1MHIjr.mjs";
|
|
4
|
+
import { t as IN_BROWSER } from "./globals-VwjZ5i4B.mjs";
|
|
5
5
|
import { Fragment, computed, createBlock, createCommentVNode, createElementBlock, createPropsRestProxy, createTextVNode, createVNode, defineComponent, guardReactiveProps, mergeModels, mergeProps, nextTick, normalizeProps, onBeforeUnmount, onMounted, onUnmounted, openBlock, renderSlot, resolveDynamicComponent, shallowRef, toDisplayString, toRef, toValue, unref, useAttrs, useId, useModel, useTemplateRef, vShow, watch, withCtx, withDirectives } from "vue";
|
|
6
6
|
|
|
7
7
|
//#region src/components/Atom/Atom.vue
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import "../index-DlxrzbvZ.mjs";
|
|
2
|
-
import { A as createGroupContext, B as RegistryContext, C as usePagination, D as GroupTicket, E as GroupOptions, F as SelectionTicket, G as createRegistry, H as RegistryEventCallback, I as SelectionTicketInput, J as createTrinity, K as createRegistryContext, L as createSelection, M as SelectionContext, N as SelectionContextOptions, O as GroupTicketInput, P as SelectionOptions, R as createSelectionContext, S as createPaginationContext, T as GroupContextOptions, U as RegistryOptions, V as RegistryContextOptions, W as RegistryTicket, _ as PaginationContext, a as StepTicketInput, b as PaginationTicket, c as useStep, d as SingleOptions, f as SingleTicket, g as useSingle, h as createSingleContext, i as StepTicket, j as useGroup, k as createGroup, l as SingleContext, m as createSingle, n as StepContextOptions, o as createStep, p as SingleTicketInput, q as ContextTrinity, r as StepOptions, s as createStepContext, t as StepContext, u as SingleContextOptions, v as PaginationContextOptions, w as GroupContext, x as createPagination, y as PaginationOptions, z as useSelection } from "../index-
|
|
3
|
-
import { $ as QueueTicket, $n as createForm, $r as
|
|
2
|
+
import { A as createGroupContext, B as RegistryContext, C as usePagination, D as GroupTicket, E as GroupOptions, F as SelectionTicket, G as createRegistry, H as RegistryEventCallback, I as SelectionTicketInput, J as createTrinity, K as createRegistryContext, L as createSelection, M as SelectionContext, N as SelectionContextOptions, O as GroupTicketInput, P as SelectionOptions, R as createSelectionContext, S as createPaginationContext, T as GroupContextOptions, U as RegistryOptions, V as RegistryContextOptions, W as RegistryTicket, _ as PaginationContext, a as StepTicketInput, b as PaginationTicket, c as useStep, d as SingleOptions, f as SingleTicket, g as useSingle, h as createSingleContext, i as StepTicket, j as useGroup, k as createGroup, l as SingleContext, m as createSingle, n as StepContextOptions, o as createStep, p as SingleTicketInput, q as ContextTrinity, r as StepOptions, s as createStepContext, t as StepContext, u as SingleContextOptions, v as PaginationContextOptions, w as GroupContext, x as createPagination, y as PaginationOptions, z as useSelection } from "../index-qSuLpob3.mjs";
|
|
3
|
+
import { $ as QueueTicket, $n as createForm, $r as useDate, $t as LoggerPluginOptions, A as useTheme, An as useElementIntersection, Ar as TokenAlias, At as singleOpenStrategy, B as useStorage, Bn as useHydration, Br as useTokens, Bt as OpenStrategyContext, C as ThemePluginOptions, Ci as provideContext, Cn as LazyContext, Cr as createFeaturesPlugin, Ct as createOverflow, D as createTheme, Dn as IntersectionObserverOptions, Dr as FeaturesAdapterInterface, Dt as createNestedContext, E as ThemeTicketInput, En as IntersectionObserverEntry, Er as FeaturesAdapterFlags, Et as createNested, F as StorageOptions, Fn as HydrationPluginOptions, Fr as TokenPrimitive, Ft as NestedRegistration, G as ResizeObserverOptions, Gn as FormContext, Gr as useWindowEventListener, Gt as MediaQueryContext, H as StorageType, Hn as UseHotkeyOptions, Hr as EventHandler, Ht as UseMutationObserverOptions, I as StoragePluginOptions, In as createFallbackHydration, Ir as TokenTicket, It as NestedSelectionMode, J as useElementSize, Jn as FormTicket, Jr as DateOptions, Jt as usePrefersDark, K as UseElementSizeReturn, Kn as FormContextOptions, Kr as DateContext, Kt as useMediaQuery, L as createStorage, Ln as createHydration, Lr as TokenValue, Lt as NestedTicket, M as ThemeAdapter, Mn as HydrationContext, Mr as TokenContext, Mt as NestedContextOptions, N as StorageContext, Nn as HydrationContextOptions, Nr as TokenContextOptions, Nt as NestedOpenMode, O as createThemeContext, On as UseElementIntersectionReturn, Or as FeaturesAdapterValue, Ot as useNested, P as StorageContextOptions, Pn as HydrationOptions, Pr as TokenOptions, Pt as NestedOptions, Q as QueueOptions, Qn as FormValue, Qr as createDatePlugin, Qt as LoggerOptions, R as createStorageContext, Rn as createHydrationContext, Rr as createTokens, Rt as NestedTicketInput, S as ThemeOptions, Si as createContext, Sn as LocaleAdapter, Sr as createFeaturesContext, St as OverflowOptions, T as ThemeTicket, Tn as useLazy, Tr as FeaturesAdapter, Tt as useOverflow, U as MemoryAdapter, Un as UseHotkeyReturn, Ur as useDocumentEventListener, Ut as UseMutationObserverReturn, V as StorageAdapter, Vn as PlatformContext, Vr as CleanupFunction, Vt as MutationObserverRecord, W as ResizeObserverEntry, Wn as useHotkey, Wr as useEventListener, Wt as useMutationObserver, X as QueueContext, Xn as FormValidationResult, Xr as createDate, Xt as LoggerContext, Y as useResizeObserver, Yn as FormTicketInput, Yr as DatePluginOptions, Yt as usePrefersReducedMotion, Z as QueueContextOptions, Zn as FormValidationRule, Zr as createDateContext, Zt as LoggerContextOptions, _ as useTimeline, _i as Plugin, _n as createLocaleContext, _r as FeatureOptions, _t as usePermissions, a as VirtualItem, ai as useClickOutside, an as Vuetify0LoggerAdapter, ar as FilterItem, at as ProxyRegistryOptions, b as ThemeContext, bi as ContextKey, bn as useLocale, br as FeatureTicketInput, bt as OverflowContext, c as useVirtual, ci as BreakpointsContextOptions, cn as LoggerAdapter, cr as FilterQuery, ct as useProxyModel, d as TimelineContext, di as createBreakpoints, dn as LocaleOptions, dr as createFilter, dt as PermissionOptions, ei as ClickOutsideElement, en as createLogger, er as createFormContext, et as QueueTicketInput, f as TimelineContextOptions, fi as createBreakpointsContext, fn as LocalePluginOptions, fr as createFilterContext, ft as PermissionPluginOptions, g as createTimelineContext, gi as toArray, gn as createLocale, gr as FeatureContextOptions, gt as createPermissionsPlugin, h as createTimeline, hi as toReactive, hn as LocaleTicketInput, hr as FeatureContext, ht as createPermissionsContext, i as VirtualDirection, ii as UseClickOutsideReturn, in as LogLevel, ir as FilterFunction, it as ProxyRegistryContext, j as Vuetify0ThemeAdapter, jn as useIntersectionObserver, jr as TokenCollection, jt as NestedContext, k as createThemePlugin, kn as UseIntersectionObserverReturn, kr as FlatTokenCollection, kt as multipleOpenStrategy, l as ToggleScopeControls, li as BreakpointsOptions, ln as LocaleContext, lr as FilterResult, lt as PermissionContext, m as TimelineTicket, mi as useBreakpoints, mn as LocaleTicket, mr as useFilterContext, mt as createPermissions, n as VirtualAnchor, ni as ClickOutsideTarget, nn as createLoggerPlugin, nr as FilterContext, nt as createQueueContext, o as VirtualOptions, oi as BreakpointName, on as PinoLoggerAdapter, or as FilterMode, ot as useProxyRegistry, p as TimelineOptions, pi as createBreakpointsPlugin, pn as LocaleRecord, pr as useFilter, pt as PermissionTicket, q as UseResizeObserverReturn, qn as FormOptions, qr as DateContextOptions, qt as usePrefersContrast, r as VirtualContext, ri as UseClickOutsideOptions, rn as useLogger, rr as FilterContextOptions, rt as useQueue, s as VirtualState, si as BreakpointsContext, sn as ConsolaLoggerAdapter, sr as FilterOptions, st as ProxyModelOptions, t as ScrollToOptions, ti as ClickOutsideIgnoreTarget, tn as createLoggerContext, tr as useForm, tt as createQueue, u as useToggleScope, ui as BreakpointsPluginOptions, un as LocaleContextOptions, ur as Primitive, ut as PermissionContextOptions, v as Colors, vi as PluginOptions, vn as createLocaleFallback, vr as FeaturePluginOptions, vt as PermissionAdapter, w as ThemeRecord, wi as useContext, wn as LazyOptions, wr as useFeatures, wt as createOverflowContext, x as ThemeContextOptions, xi as CreateContextOptions, xn as Vuetify0LocaleAdapter, xr as createFeatures, xt as OverflowContextOptions, y as ThemeColors, yi as createPlugin, yn as createLocalePlugin, yr as FeatureTicket, yt as PermissionAdapterInterface, z as createStoragePlugin, zn as createHydrationPlugin, zr as createTokensContext, zt as OpenStrategy } from "../index-CLKfXGEQ.mjs";
|
|
4
4
|
import { t as DateAdapter } from "../adapter-L4Php1_S.mjs";
|
|
5
|
-
export { BreakpointName, BreakpointsContext, BreakpointsContextOptions, BreakpointsOptions, BreakpointsPluginOptions, CleanupFunction, ClickOutsideElement, ClickOutsideIgnoreTarget, ClickOutsideTarget, Colors, ConsolaLoggerAdapter, ContextKey, ContextTrinity, CreateContextOptions, DateAdapter, DateContext, DateContextOptions, DateOptions, DatePluginOptions, EventHandler, FeatureContext, FeatureContextOptions, FeatureOptions, FeaturePluginOptions, FeatureTicket, FeatureTicketInput, FeaturesAdapter, FeaturesAdapterFlags, FeaturesAdapterInterface, FeaturesAdapterValue, FilterContext, FilterContextOptions, FilterFunction, FilterItem, FilterMode, FilterOptions, FilterQuery, FilterResult,
|
|
5
|
+
export { BreakpointName, BreakpointsContext, BreakpointsContextOptions, BreakpointsOptions, BreakpointsPluginOptions, CleanupFunction, ClickOutsideElement, ClickOutsideIgnoreTarget, ClickOutsideTarget, Colors, ConsolaLoggerAdapter, ContextKey, ContextTrinity, CreateContextOptions, DateAdapter, DateContext, DateContextOptions, DateOptions, DatePluginOptions, EventHandler, FeatureContext, FeatureContextOptions, FeatureOptions, FeaturePluginOptions, FeatureTicket, FeatureTicketInput, FeaturesAdapter, FeaturesAdapterFlags, FeaturesAdapterInterface, FeaturesAdapterValue, FilterContext, FilterContextOptions, FilterFunction, FilterItem, FilterMode, FilterOptions, FilterQuery, FilterResult, FlatTokenCollection, FormContext, FormContextOptions, FormOptions, FormTicket, FormTicketInput, FormValidationResult, FormValidationRule, FormValue, GroupContext, GroupContextOptions, GroupOptions, GroupTicket, GroupTicketInput, HydrationContext, HydrationContextOptions, HydrationOptions, HydrationPluginOptions, IntersectionObserverEntry, IntersectionObserverOptions, LazyContext, LazyOptions, LocaleAdapter, LocaleContext, LocaleContextOptions, LocaleOptions, LocalePluginOptions, LocaleRecord, LocaleTicket, LocaleTicketInput, LogLevel, LoggerAdapter, LoggerContext, LoggerContextOptions, LoggerOptions, LoggerPluginOptions, MediaQueryContext, MemoryAdapter, MutationObserverRecord, NestedContext, NestedContextOptions, NestedOpenMode, NestedOptions, NestedRegistration, NestedSelectionMode, NestedTicket, NestedTicketInput, OpenStrategy, OpenStrategyContext, OverflowContext, OverflowContextOptions, OverflowOptions, PaginationContext, PaginationContextOptions, PaginationOptions, PaginationTicket, PermissionAdapter, PermissionAdapterInterface, PermissionContext, PermissionContextOptions, PermissionOptions, PermissionPluginOptions, PermissionTicket, PinoLoggerAdapter, PlatformContext, Plugin, PluginOptions, Primitive, ProxyModelOptions, ProxyRegistryContext, ProxyRegistryOptions, QueueContext, QueueContextOptions, QueueOptions, QueueTicket, QueueTicketInput, RegistryContext, RegistryContextOptions, RegistryEventCallback, RegistryOptions, RegistryTicket, ResizeObserverEntry, ResizeObserverOptions, ScrollToOptions, SelectionContext, SelectionContextOptions, SelectionOptions, SelectionTicket, SelectionTicketInput, SingleContext, SingleContextOptions, SingleOptions, SingleTicket, SingleTicketInput, StepContext, StepContextOptions, StepOptions, StepTicket, StepTicketInput, StorageAdapter, StorageContext, StorageContextOptions, StorageOptions, StoragePluginOptions, StorageType, ThemeAdapter, ThemeColors, ThemeContext, ThemeContextOptions, ThemeOptions, ThemePluginOptions, ThemeRecord, ThemeTicket, ThemeTicketInput, TimelineContext, TimelineContextOptions, TimelineOptions, TimelineTicket, ToggleScopeControls, TokenAlias, TokenCollection, TokenContext, TokenContextOptions, TokenOptions, TokenPrimitive, TokenTicket, TokenValue, UseClickOutsideOptions, UseClickOutsideReturn, UseElementIntersectionReturn, UseElementSizeReturn, UseHotkeyOptions, UseHotkeyReturn, UseIntersectionObserverReturn, UseMutationObserverOptions, UseMutationObserverReturn, UseResizeObserverReturn, VirtualAnchor, VirtualContext, VirtualDirection, VirtualItem, VirtualOptions, VirtualState, Vuetify0LocaleAdapter, Vuetify0LoggerAdapter, Vuetify0ThemeAdapter, createBreakpoints, createBreakpointsContext, createBreakpointsPlugin, createContext, createDate, createDateContext, createDatePlugin, createFallbackHydration, createFeatures, createFeaturesContext, createFeaturesPlugin, createFilter, createFilterContext, createForm, createFormContext, createGroup, createGroupContext, createHydration, createHydrationContext, createHydrationPlugin, createLocale, createLocaleContext, createLocaleFallback, createLocalePlugin, createLogger, createLoggerContext, createLoggerPlugin, createNested, createNestedContext, createOverflow, createOverflowContext, createPagination, createPaginationContext, createPermissions, createPermissionsContext, createPermissionsPlugin, createPlugin, createQueue, createQueueContext, createRegistry, createRegistryContext, createSelection, createSelectionContext, createSingle, createSingleContext, createStep, createStepContext, createStorage, createStorageContext, createStoragePlugin, createTheme, createThemeContext, createThemePlugin, createTimeline, createTimelineContext, createTokens, createTokensContext, createTrinity, multipleOpenStrategy, provideContext, singleOpenStrategy, toArray, toReactive, useBreakpoints, useClickOutside, useContext, useDate, useDocumentEventListener, useElementIntersection, useElementSize, useEventListener, useFeatures, useFilter, useFilterContext, useForm, useGroup, useHotkey, useHydration, useIntersectionObserver, useLazy, useLocale, useLogger, useMediaQuery, useMutationObserver, useNested, useOverflow, usePagination, usePermissions, usePrefersContrast, usePrefersDark, usePrefersReducedMotion, useProxyModel, useProxyRegistry, useQueue, useResizeObserver, useSelection, useSingle, useStep, useStorage, useTheme, useTimeline, useToggleScope, useTokens, useVirtual, useWindowEventListener };
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import "../utilities-B58TiS_S.mjs";
|
|
2
|
-
import { $ as createForm, $t as
|
|
3
|
-
import "../globals-
|
|
2
|
+
import { $ as createForm, $t as PinoLoggerAdapter, A as PermissionAdapter, At as useBreakpoints, B as createNestedContext, Bt as useGroup, C as createQueue, Ct as useTokens, D as createPermissionsContext, Dt as createBreakpoints, E as createPermissions, Et as useSingle, F as createOverflowContext, Ft as useHydration, G as useMediaQuery, Gt as useSelection, H as multipleOpenStrategy, Ht as useProxyRegistry, I as useOverflow, It as toReactive, J as usePrefersReducedMotion, Jt as createLogger, K as usePrefersContrast, Kt as createRegistry, L as useElementSize, Lt as useProxyModel, M as createPaginationContext, Mt as createHydration, N as usePagination, Nt as createHydrationContext, O as createPermissionsPlugin, Ot as createBreakpointsContext, P as createOverflow, Pt as createHydrationPlugin, Q as useHotkey, Qt as Vuetify0LoggerAdapter, R as useResizeObserver, Rt as createGroup, S as useStep, St as createTokensContext, T as useQueue, Tt as createSingleContext, U as singleOpenStrategy, Ut as createSelection, V as useNested, Vt as toArray, W as useMutationObserver, Wt as createSelectionContext, X as useElementIntersection, Xt as createLoggerPlugin, Y as useLazy, Yt as createLoggerContext, Z as useIntersectionObserver, Zt as useLogger, _ as createStoragePlugin, _t as createLocaleFallback, a as useVirtual, an as useContext, at as useFilterContext, b as createStep, bt as Vuetify0LocaleAdapter, c as createTimelineContext, ct as createFeaturesPlugin, d as createThemeContext, dt as createDate, en as ConsolaLoggerAdapter, et as createFormContext, f as createThemePlugin, ft as createDateContext, g as createStorageContext, gt as createLocaleContext, h as createStorage, ht as createLocale, i as useWindowEventListener, in as provideContext, it as useFilter, j as createPagination, jt as createFallbackHydration, k as usePermissions, kt as createBreakpointsPlugin, l as useTimeline, lt as useFeatures, m as Vuetify0ThemeAdapter, mt as useDate, n as useDocumentEventListener, nn as createTrinity, nt as createFilter, o as useToggleScope, ot as createFeatures, p as useTheme, pt as createDatePlugin, q as usePrefersDark, qt as createRegistryContext, r as useEventListener, rn as createContext, rt as createFilterContext, s as createTimeline, st as createFeaturesContext, t as useClickOutside, tn as createPlugin, tt as useForm, u as createTheme, ut as FeaturesAdapter, v as useStorage, vt as createLocalePlugin, w as createQueueContext, wt as createSingle, x as createStepContext, xt as createTokens, y as MemoryAdapter, yt as useLocale, z as createNested, zt as createGroupContext } from "../useClickOutside-Dp1MHIjr.mjs";
|
|
3
|
+
import "../globals-VwjZ5i4B.mjs";
|
|
4
4
|
|
|
5
|
-
export { ConsolaLoggerAdapter, FeaturesAdapter,
|
|
5
|
+
export { ConsolaLoggerAdapter, FeaturesAdapter, MemoryAdapter, PermissionAdapter, PinoLoggerAdapter, Vuetify0LocaleAdapter, Vuetify0LoggerAdapter, Vuetify0ThemeAdapter, createBreakpoints, createBreakpointsContext, createBreakpointsPlugin, createContext, createDate, createDateContext, createDatePlugin, createFallbackHydration, createFeatures, createFeaturesContext, createFeaturesPlugin, createFilter, createFilterContext, createForm, createFormContext, createGroup, createGroupContext, createHydration, createHydrationContext, createHydrationPlugin, createLocale, createLocaleContext, createLocaleFallback, createLocalePlugin, createLogger, createLoggerContext, createLoggerPlugin, createNested, createNestedContext, createOverflow, createOverflowContext, createPagination, createPaginationContext, createPermissions, createPermissionsContext, createPermissionsPlugin, createPlugin, createQueue, createQueueContext, createRegistry, createRegistryContext, createSelection, createSelectionContext, createSingle, createSingleContext, createStep, createStepContext, createStorage, createStorageContext, createStoragePlugin, createTheme, createThemeContext, createThemePlugin, createTimeline, createTimelineContext, createTokens, createTokensContext, createTrinity, multipleOpenStrategy, provideContext, singleOpenStrategy, toArray, toReactive, useBreakpoints, useClickOutside, useContext, useDate, useDocumentEventListener, useElementIntersection, useElementSize, useEventListener, useFeatures, useFilter, useFilterContext, useForm, useGroup, useHotkey, useHydration, useIntersectionObserver, useLazy, useLocale, useLogger, useMediaQuery, useMutationObserver, useNested, useOverflow, usePagination, usePermissions, usePrefersContrast, usePrefersDark, usePrefersReducedMotion, useProxyModel, useProxyRegistry, useQueue, useResizeObserver, useSelection, useSingle, useStep, useStorage, useTheme, useTimeline, useToggleScope, useTokens, useVirtual, useWindowEventListener };
|
package/dist/constants/index.mjs
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { n as SELF_CLOSING_TAGS, r as isSelfClosingTag, t as COMMON_ELEMENTS } from "../htmlElements-DO9n35bD.mjs";
|
|
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-VwjZ5i4B.mjs";
|
|
3
3
|
import "../constants-DHKqjdjH.mjs";
|
|
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 };
|
package/dist/date/index.mjs
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { c as isNullOrUndefined, f as isString, l as isNumber, s as isNull } from "../utilities-B58TiS_S.mjs";
|
|
2
|
-
import { t as IN_BROWSER } from "../globals-
|
|
2
|
+
import { t as IN_BROWSER } from "../globals-VwjZ5i4B.mjs";
|
|
3
3
|
|
|
4
4
|
//#region rolldown:runtime
|
|
5
5
|
var __create = Object.create;
|
|
@@ -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.1.
|
|
8
|
+
const version = "0.1.2";
|
|
9
9
|
/* v8 ignore next -- build-time constant, __DEV__ short-circuits in tests */
|
|
10
10
|
const __LOGGER_ENABLED__ = process.env.NODE_ENV !== "production" || process.env.VITE_LOGGER_ENABLED === "true";
|
|
11
11
|
|
|
@@ -1,10 +1,7 @@
|
|
|
1
1
|
import { a as ID, o as MaybeArray } from "./index-DlxrzbvZ.mjs";
|
|
2
|
-
import { B as RegistryContext, D as GroupTicket, E as GroupOptions, F as SelectionTicket, M as SelectionContext, O as GroupTicketInput, T as GroupContextOptions, U as RegistryOptions, V as RegistryContextOptions, W as RegistryTicket, d as SingleOptions, f as SingleTicket, l as SingleContext, p as SingleTicketInput, q as ContextTrinity, w as GroupContext } from "./index-
|
|
2
|
+
import { B as RegistryContext, D as GroupTicket, E as GroupOptions, F as SelectionTicket, M as SelectionContext, O as GroupTicketInput, T as GroupContextOptions, U as RegistryOptions, V as RegistryContextOptions, W as RegistryTicket, d as SingleOptions, f as SingleTicket, l as SingleContext, p as SingleTicketInput, q as ContextTrinity, w as GroupContext } from "./index-qSuLpob3.mjs";
|
|
3
3
|
import { t as DateAdapter } from "./adapter-L4Php1_S.mjs";
|
|
4
4
|
import { App, ComputedRef, InjectionKey, MaybeRef, MaybeRefOrGetter, Reactive, Ref, ShallowRef, UnwrapNestedRefs, WatchSource } from "vue";
|
|
5
|
-
import { IFlagsmith, IInitConfig } from "flagsmith";
|
|
6
|
-
import { LDClient } from "launchdarkly-js-client-sdk";
|
|
7
|
-
import { PostHog } from "posthog-js";
|
|
8
5
|
|
|
9
6
|
//#region src/composables/createContext/index.d.ts
|
|
10
7
|
|
|
@@ -858,34 +855,6 @@ declare abstract class FeaturesAdapter implements FeaturesAdapterInterface {
|
|
|
858
855
|
abstract setup(onUpdate: (flags: FeaturesAdapterFlags) => void): FeaturesAdapterFlags;
|
|
859
856
|
}
|
|
860
857
|
//#endregion
|
|
861
|
-
//#region src/composables/useFeatures/adapters/flagsmith/index.d.ts
|
|
862
|
-
declare class FlagsmithFeatureAdapter implements FeaturesAdapterInterface {
|
|
863
|
-
private client;
|
|
864
|
-
private options;
|
|
865
|
-
constructor(client: IFlagsmith | undefined, options: IInitConfig);
|
|
866
|
-
setup(onUpdate: (flags: FeaturesAdapterFlags) => void): FeaturesAdapterFlags;
|
|
867
|
-
dispose(): void;
|
|
868
|
-
private disposeFn;
|
|
869
|
-
}
|
|
870
|
-
//#endregion
|
|
871
|
-
//#region src/composables/useFeatures/adapters/launchdarkly/index.d.ts
|
|
872
|
-
declare class LaunchDarklyFeatureAdapter implements FeaturesAdapterInterface {
|
|
873
|
-
private client;
|
|
874
|
-
constructor(client: LDClient);
|
|
875
|
-
setup(onUpdate: (flags: FeaturesAdapterFlags) => void): FeaturesAdapterFlags;
|
|
876
|
-
dispose(): void;
|
|
877
|
-
private disposeFn;
|
|
878
|
-
}
|
|
879
|
-
//#endregion
|
|
880
|
-
//#region src/composables/useFeatures/adapters/posthog/index.d.ts
|
|
881
|
-
declare class PostHogFeatureAdapter implements FeaturesAdapterInterface {
|
|
882
|
-
private client;
|
|
883
|
-
constructor(client: PostHog);
|
|
884
|
-
setup(onUpdate: (flags: FeaturesAdapterFlags) => void): FeaturesAdapterFlags;
|
|
885
|
-
dispose(): void;
|
|
886
|
-
private disposeFn;
|
|
887
|
-
}
|
|
888
|
-
//#endregion
|
|
889
858
|
//#region src/composables/useFeatures/index.d.ts
|
|
890
859
|
/**
|
|
891
860
|
* Input type for feature tickets - what users provide to register().
|
|
@@ -2813,7 +2782,7 @@ declare function usePermissions<Z extends PermissionTicket = PermissionTicket, E
|
|
|
2813
2782
|
//#endregion
|
|
2814
2783
|
//#region src/composables/useProxyModel/index.d.ts
|
|
2815
2784
|
interface ProxyModelOptions {
|
|
2816
|
-
multiple?: boolean
|
|
2785
|
+
multiple?: MaybeRefOrGetter<boolean>;
|
|
2817
2786
|
transformIn?: (val: unknown) => unknown;
|
|
2818
2787
|
transformOut?: (val: unknown) => unknown;
|
|
2819
2788
|
}
|
|
@@ -3466,6 +3435,7 @@ interface Vuetify0ThemeOptions {
|
|
|
3466
3435
|
*/
|
|
3467
3436
|
declare class Vuetify0ThemeAdapter extends ThemeAdapter {
|
|
3468
3437
|
cspNonce?: string;
|
|
3438
|
+
sheet?: CSSStyleSheet;
|
|
3469
3439
|
constructor(options?: Vuetify0ThemeOptions);
|
|
3470
3440
|
setup<T extends ThemeAdapterSetupContext>(app: App, context: T, target?: string | HTMLElement | null): void;
|
|
3471
3441
|
update(colors: Record<ID, Colors>, isDark?: boolean): void;
|
|
@@ -4258,4 +4228,4 @@ interface VirtualContext<T = unknown> {
|
|
|
4258
4228
|
*/
|
|
4259
4229
|
declare function useVirtual<T = unknown>(items: Ref<readonly T[]>, _options?: VirtualOptions): VirtualContext<T>;
|
|
4260
4230
|
//#endregion
|
|
4261
|
-
export { QueueTicket as $, createForm as $n,
|
|
4231
|
+
export { QueueTicket as $, createForm as $n, useDate as $r, LoggerPluginOptions as $t, useTheme as A, useElementIntersection as An, TokenAlias as Ar, singleOpenStrategy as At, useStorage as B, useHydration as Bn, useTokens as Br, OpenStrategyContext as Bt, ThemePluginOptions as C, provideContext as Ci, LazyContext as Cn, createFeaturesPlugin as Cr, createOverflow as Ct, createTheme as D, IntersectionObserverOptions as Dn, FeaturesAdapterInterface as Dr, createNestedContext as Dt, ThemeTicketInput as E, IntersectionObserverEntry as En, FeaturesAdapterFlags as Er, createNested as Et, StorageOptions as F, HydrationPluginOptions as Fn, TokenPrimitive as Fr, NestedRegistration as Ft, ResizeObserverOptions as G, FormContext as Gn, useWindowEventListener as Gr, MediaQueryContext as Gt, StorageType as H, UseHotkeyOptions as Hn, EventHandler as Hr, UseMutationObserverOptions as Ht, StoragePluginOptions as I, createFallbackHydration as In, TokenTicket as Ir, NestedSelectionMode as It, useElementSize as J, FormTicket as Jn, DateOptions as Jr, usePrefersDark as Jt, UseElementSizeReturn as K, FormContextOptions as Kn, DateContext as Kr, useMediaQuery as Kt, createStorage as L, createHydration as Ln, TokenValue as Lr, NestedTicket as Lt, ThemeAdapter as M, HydrationContext as Mn, TokenContext as Mr, NestedContextOptions as Mt, StorageContext as N, HydrationContextOptions as Nn, TokenContextOptions as Nr, NestedOpenMode as Nt, createThemeContext as O, UseElementIntersectionReturn as On, FeaturesAdapterValue as Or, useNested as Ot, StorageContextOptions as P, HydrationOptions as Pn, TokenOptions as Pr, NestedOptions as Pt, QueueOptions as Q, FormValue as Qn, createDatePlugin as Qr, LoggerOptions as Qt, createStorageContext as R, createHydrationContext as Rn, createTokens as Rr, NestedTicketInput as Rt, ThemeOptions as S, createContext as Si, LocaleAdapter as Sn, createFeaturesContext as Sr, OverflowOptions as St, ThemeTicket as T, useLazy as Tn, FeaturesAdapter as Tr, useOverflow as Tt, MemoryAdapter as U, UseHotkeyReturn as Un, useDocumentEventListener as Ur, UseMutationObserverReturn as Ut, StorageAdapter as V, PlatformContext as Vn, CleanupFunction as Vr, MutationObserverRecord as Vt, ResizeObserverEntry as W, useHotkey as Wn, useEventListener as Wr, useMutationObserver as Wt, QueueContext as X, FormValidationResult as Xn, createDate as Xr, LoggerContext as Xt, useResizeObserver as Y, FormTicketInput as Yn, DatePluginOptions as Yr, usePrefersReducedMotion as Yt, QueueContextOptions as Z, FormValidationRule as Zn, createDateContext as Zr, LoggerContextOptions as Zt, useTimeline as _, Plugin as _i, createLocaleContext as _n, FeatureOptions as _r, usePermissions as _t, VirtualItem as a, useClickOutside as ai, Vuetify0LoggerAdapter as an, FilterItem as ar, ProxyRegistryOptions as at, ThemeContext as b, ContextKey as bi, useLocale as bn, FeatureTicketInput as br, OverflowContext as bt, useVirtual as c, BreakpointsContextOptions as ci, LoggerAdapter as cn, FilterQuery as cr, useProxyModel as ct, TimelineContext as d, createBreakpoints as di, LocaleOptions as dn, createFilter as dr, PermissionOptions as dt, ClickOutsideElement as ei, createLogger as en, createFormContext as er, QueueTicketInput as et, TimelineContextOptions as f, createBreakpointsContext as fi, LocalePluginOptions as fn, createFilterContext as fr, PermissionPluginOptions as ft, createTimelineContext as g, toArray as gi, createLocale as gn, FeatureContextOptions as gr, createPermissionsPlugin as gt, createTimeline as h, toReactive as hi, LocaleTicketInput as hn, FeatureContext as hr, createPermissionsContext as ht, VirtualDirection as i, UseClickOutsideReturn as ii, LogLevel as in, FilterFunction as ir, ProxyRegistryContext as it, Vuetify0ThemeAdapter as j, useIntersectionObserver as jn, TokenCollection as jr, NestedContext as jt, createThemePlugin as k, UseIntersectionObserverReturn as kn, FlatTokenCollection as kr, multipleOpenStrategy as kt, ToggleScopeControls as l, BreakpointsOptions as li, LocaleContext as ln, FilterResult as lr, PermissionContext as lt, TimelineTicket as m, useBreakpoints as mi, LocaleTicket as mn, useFilterContext as mr, createPermissions as mt, VirtualAnchor as n, ClickOutsideTarget as ni, createLoggerPlugin as nn, FilterContext as nr, createQueueContext as nt, VirtualOptions as o, BreakpointName as oi, PinoLoggerAdapter as on, FilterMode as or, useProxyRegistry as ot, TimelineOptions as p, createBreakpointsPlugin as pi, LocaleRecord as pn, useFilter as pr, PermissionTicket as pt, UseResizeObserverReturn as q, FormOptions as qn, DateContextOptions as qr, usePrefersContrast as qt, VirtualContext as r, UseClickOutsideOptions as ri, useLogger as rn, FilterContextOptions as rr, useQueue as rt, VirtualState as s, BreakpointsContext as si, ConsolaLoggerAdapter as sn, FilterOptions as sr, ProxyModelOptions as st, ScrollToOptions as t, ClickOutsideIgnoreTarget as ti, createLoggerContext as tn, useForm as tr, createQueue as tt, useToggleScope as u, BreakpointsPluginOptions as ui, LocaleContextOptions as un, Primitive as ur, PermissionContextOptions as ut, Colors as v, PluginOptions as vi, createLocaleFallback as vn, FeaturePluginOptions as vr, PermissionAdapter as vt, ThemeRecord as w, useContext as wi, LazyOptions as wn, useFeatures as wr, createOverflowContext as wt, ThemeContextOptions as x, CreateContextOptions as xi, Vuetify0LocaleAdapter as xn, createFeatures as xr, OverflowContextOptions as xt, ThemeColors as y, createPlugin as yi, createLocalePlugin as yn, FeatureTicket as yr, PermissionAdapterInterface as yt, createStoragePlugin as z, createHydrationPlugin as zn, createTokensContext as zr, OpenStrategy as zt };
|