@vuetify/v0 0.0.24 → 0.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -2
- package/dist/browser/index.js +165 -66
- package/dist/components/index.d.mts +4 -4
- package/dist/components/index.mjs +3 -3
- package/dist/{components-D_yAxHwn.mjs → components-BOipMGkD.mjs} +11 -6
- package/dist/composables/index.d.mts +4 -4
- package/dist/composables/index.mjs +3 -3
- package/dist/constants/index.mjs +1 -1
- package/dist/date/index.mjs +1 -1
- package/dist/{globals-BhNI7no7.mjs → globals-qE_M6ZhX.mjs} +1 -1
- package/dist/{index-OghXharF.d.mts → index-Bx6Ke-u_.d.mts} +291 -264
- package/dist/{index-kvJsAOSg.d.mts → index-CoO8LW8o.d.mts} +1 -1
- package/dist/{index-ZW2YLa57.d.mts → index-DlxrzbvZ.d.mts} +15 -14
- package/dist/{index-isYKpbs6.d.mts → index-DmNXO254.d.mts} +239 -73
- package/dist/{index-DknfL2GU.d.mts → index-qSuLpob3.d.mts} +226 -45
- package/dist/index.d.mts +6 -6
- package/dist/index.mjs +4 -4
- package/dist/json/attributes.json +5 -1
- package/dist/json/tags.json +1 -0
- package/dist/json/web-types.json +12 -2
- package/dist/types/index.d.mts +2 -2
- package/dist/{useClickOutside-w-Y2QxHh.mjs → useClickOutside-DcrXfUVx.mjs} +156 -62
- package/dist/utilities/index.d.mts +2 -2
- package/package.json +19 -2
package/README.md
CHANGED
|
@@ -46,7 +46,7 @@ This is a **pnpm monorepo** containing:
|
|
|
46
46
|
|
|
47
47
|
- **Node.js** >= 22
|
|
48
48
|
- **pnpm** >= 10.6
|
|
49
|
-
- **Vue** >= 3.
|
|
49
|
+
- **Vue** >= 3.5.0
|
|
50
50
|
|
|
51
51
|
## Installation
|
|
52
52
|
|
|
@@ -170,7 +170,7 @@ Plugin-capable composables following the trinity pattern:
|
|
|
170
170
|
- **Slot-Driven**: Maximum flexibility through comprehensive slot APIs
|
|
171
171
|
- **CSS Variables**: All styling configurable via `--v0-*` custom properties
|
|
172
172
|
- **TypeScript Native**: Full type safety with generics for extensibility
|
|
173
|
-
- **Minimal Dependencies**: Only Vue 3.
|
|
173
|
+
- **Minimal Dependencies**: Only Vue 3.5+ required (markdown libraries optional)
|
|
174
174
|
- **Composable Architecture**: Reusable logic through Vue 3 composables
|
|
175
175
|
|
|
176
176
|
## Documentation
|
package/dist/browser/index.js
CHANGED
|
@@ -1,5 +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";
|
|
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";
|
|
3
3
|
|
|
4
4
|
//#region src/constants/htmlElements.ts
|
|
5
5
|
const selfClosingTags = [
|
|
@@ -685,7 +685,7 @@ const SUPPORTS_MATCH_MEDIA = IN_BROWSER && "matchMedia" in window && typeof wind
|
|
|
685
685
|
const SUPPORTS_OBSERVER = IN_BROWSER && "ResizeObserver" in window;
|
|
686
686
|
const SUPPORTS_INTERSECTION_OBSERVER = IN_BROWSER && "IntersectionObserver" in window;
|
|
687
687
|
const SUPPORTS_MUTATION_OBSERVER = IN_BROWSER && "MutationObserver" in window;
|
|
688
|
-
const version = "0.
|
|
688
|
+
const version = "0.1.1";
|
|
689
689
|
/* v8 ignore next -- build-time constant, __DEV__ short-circuits in tests */
|
|
690
690
|
const __LOGGER_ENABLED__ = false;
|
|
691
691
|
|
|
@@ -1142,12 +1142,13 @@ function useLogger(namespace = "v0:logger") {
|
|
|
1142
1142
|
*/
|
|
1143
1143
|
function createRegistry(options) {
|
|
1144
1144
|
const logger$1 = useLogger();
|
|
1145
|
-
const
|
|
1145
|
+
const events = options?.events ?? false;
|
|
1146
|
+
const reactive$1 = options?.reactive ?? false;
|
|
1147
|
+
const collection = reactive$1 ? shallowReactive(/* @__PURE__ */ new Map()) : /* @__PURE__ */ new Map();
|
|
1146
1148
|
const catalog = /* @__PURE__ */ new Map();
|
|
1147
1149
|
const directory = /* @__PURE__ */ new Map();
|
|
1148
1150
|
const cache = /* @__PURE__ */ new Map();
|
|
1149
1151
|
const listeners = /* @__PURE__ */ new Map();
|
|
1150
|
-
const events = options?.events ?? false;
|
|
1151
1152
|
let indexDependentCount = 0;
|
|
1152
1153
|
let needsReindex = false;
|
|
1153
1154
|
let minDirtyIndex = Infinity;
|
|
@@ -1337,13 +1338,14 @@ function createRegistry(options) {
|
|
|
1337
1338
|
const value = valueIsUndefined ? index : registration.value;
|
|
1338
1339
|
const valueIsIndex = valueIsUndefined;
|
|
1339
1340
|
if (valueIsIndex) indexDependentCount++;
|
|
1340
|
-
const
|
|
1341
|
+
const rawTicket = {
|
|
1341
1342
|
...registration,
|
|
1342
1343
|
id,
|
|
1343
1344
|
index,
|
|
1344
1345
|
value,
|
|
1345
1346
|
valueIsIndex
|
|
1346
1347
|
};
|
|
1348
|
+
const ticket = reactive$1 ? shallowReactive(rawTicket) : rawTicket;
|
|
1347
1349
|
collection.set(ticket.id, ticket);
|
|
1348
1350
|
directory.set(ticket.index, ticket.id);
|
|
1349
1351
|
assign(ticket.value, ticket.id);
|
|
@@ -1496,8 +1498,9 @@ function createRegistryContext(_options = {}) {
|
|
|
1496
1498
|
* Supports disabled items, mandatory selection enforcement, and auto-enrollment.
|
|
1497
1499
|
*
|
|
1498
1500
|
* @param options The options for the selection instance.
|
|
1499
|
-
* @template Z The type
|
|
1500
|
-
* @template E The type
|
|
1501
|
+
* @template Z The input ticket type - what users provide to register(). Extend SelectionTicketInput to add custom properties.
|
|
1502
|
+
* @template E The output ticket type - what users receive from get(). Automatically includes selection methods.
|
|
1503
|
+
* @template R The context type. Defaults to SelectionContext<Z, E>.
|
|
1501
1504
|
* @returns A new selection instance with selection management methods.
|
|
1502
1505
|
*
|
|
1503
1506
|
* @remarks
|
|
@@ -1520,6 +1523,7 @@ function createRegistryContext(_options = {}) {
|
|
|
1520
1523
|
* ```ts
|
|
1521
1524
|
* import { createSelection } from '@vuetify/v0'
|
|
1522
1525
|
*
|
|
1526
|
+
* // Basic usage
|
|
1523
1527
|
* const selection = createSelection({ mandatory: true })
|
|
1524
1528
|
*
|
|
1525
1529
|
* selection.onboard([
|
|
@@ -1534,6 +1538,23 @@ function createRegistryContext(_options = {}) {
|
|
|
1534
1538
|
* console.log(selection.selectedIds) // Set { 'item-1', 'item-3' }
|
|
1535
1539
|
* console.log(Array.from(selection.selectedValues.value)) // ['Item 1', 'Item 3']
|
|
1536
1540
|
* ```
|
|
1541
|
+
*
|
|
1542
|
+
* @example
|
|
1543
|
+
* ```ts
|
|
1544
|
+
* // With custom ticket type
|
|
1545
|
+
* interface MyTicket extends SelectionTicketInput {
|
|
1546
|
+
* label: string
|
|
1547
|
+
* icon?: string
|
|
1548
|
+
* }
|
|
1549
|
+
*
|
|
1550
|
+
* const tabs = createSelection<MyTicket>()
|
|
1551
|
+
*
|
|
1552
|
+
* tabs.register({ label: 'Home', icon: 'mdi-home' })
|
|
1553
|
+
* tabs.register({ label: 'Settings' })
|
|
1554
|
+
*
|
|
1555
|
+
* const ticket = tabs.get('...')
|
|
1556
|
+
* // ticket has: label, icon, isSelected, select(), unselect(), toggle()
|
|
1557
|
+
* ```
|
|
1537
1558
|
*/
|
|
1538
1559
|
function createSelection(_options = {}) {
|
|
1539
1560
|
const { disabled = false, enroll = false, mandatory = false, multiple = false, ...options } = _options;
|
|
@@ -1549,7 +1570,7 @@ function createSelection(_options = {}) {
|
|
|
1549
1570
|
return registry.seek(direction, from, (ticket) => !toValue(ticket.disabled));
|
|
1550
1571
|
}
|
|
1551
1572
|
function mandate() {
|
|
1552
|
-
if (!mandatory || registry.size === 0 || selectedIds.size > 0) return;
|
|
1573
|
+
if (!toValue(mandatory) || registry.size === 0 || selectedIds.size > 0) return;
|
|
1553
1574
|
const ticket = seek("first");
|
|
1554
1575
|
if (ticket) select(ticket.id);
|
|
1555
1576
|
}
|
|
@@ -1557,12 +1578,12 @@ function createSelection(_options = {}) {
|
|
|
1557
1578
|
if (toValue(disabled)) return;
|
|
1558
1579
|
const item = registry.get(id);
|
|
1559
1580
|
if (!item || toValue(item.disabled)) return;
|
|
1560
|
-
if (!multiple) selectedIds.clear();
|
|
1581
|
+
if (!toValue(multiple)) selectedIds.clear();
|
|
1561
1582
|
selectedIds.add(id);
|
|
1562
1583
|
}
|
|
1563
1584
|
function unselect(id) {
|
|
1564
1585
|
if (toValue(disabled)) return;
|
|
1565
|
-
if (mandatory && selectedIds.size === 1) return;
|
|
1586
|
+
if (toValue(mandatory) && selectedIds.size === 1) return;
|
|
1566
1587
|
selectedIds.delete(id);
|
|
1567
1588
|
}
|
|
1568
1589
|
function toggle(id) {
|
|
@@ -1585,8 +1606,8 @@ function createSelection(_options = {}) {
|
|
|
1585
1606
|
id
|
|
1586
1607
|
};
|
|
1587
1608
|
const ticket = registry.register(item);
|
|
1588
|
-
if (enroll && !toValue(disabled) && !toValue(item.disabled)) selectedIds.add(ticket.id);
|
|
1589
|
-
if (mandatory === "force") mandate();
|
|
1609
|
+
if (toValue(enroll) && !toValue(disabled) && !toValue(item.disabled)) selectedIds.add(ticket.id);
|
|
1610
|
+
if (toValue(mandatory) === "force") mandate();
|
|
1590
1611
|
return ticket;
|
|
1591
1612
|
}
|
|
1592
1613
|
function unregister(id) {
|
|
@@ -1631,8 +1652,9 @@ function createSelection(_options = {}) {
|
|
|
1631
1652
|
* Creates a new selection context.
|
|
1632
1653
|
*
|
|
1633
1654
|
* @param options The options for the selection context.
|
|
1634
|
-
* @template Z The type
|
|
1635
|
-
* @template E The type
|
|
1655
|
+
* @template Z The input ticket type - what users provide to register().
|
|
1656
|
+
* @template E The output ticket type - what users receive from get().
|
|
1657
|
+
* @template R The context type. Defaults to SelectionContext<Z, E>.
|
|
1636
1658
|
* @returns A new selection context.
|
|
1637
1659
|
*
|
|
1638
1660
|
* @see https://0.vuetifyjs.com/composables/selection/use-selection
|
|
@@ -1654,6 +1676,17 @@ function createSelection(_options = {}) {
|
|
|
1654
1676
|
* const checkboxes = useCheckboxes()
|
|
1655
1677
|
* checkboxes.select('checkbox-1')
|
|
1656
1678
|
* ```
|
|
1679
|
+
*
|
|
1680
|
+
* @example
|
|
1681
|
+
* ```ts
|
|
1682
|
+
* // With custom ticket type
|
|
1683
|
+
* interface TabTicket extends SelectionTicketInput {
|
|
1684
|
+
* label: string
|
|
1685
|
+
* icon?: string
|
|
1686
|
+
* }
|
|
1687
|
+
*
|
|
1688
|
+
* export const [useTabs, provideTabs, tabs] = createSelectionContext<TabTicket>()
|
|
1689
|
+
* ```
|
|
1657
1690
|
*/
|
|
1658
1691
|
function createSelectionContext(_options = {}) {
|
|
1659
1692
|
const { namespace = "v0:selection", ...options } = _options;
|
|
@@ -1668,6 +1701,9 @@ function createSelectionContext(_options = {}) {
|
|
|
1668
1701
|
* Returns the current selection instance.
|
|
1669
1702
|
*
|
|
1670
1703
|
* @param namespace The namespace for the selection context. Defaults to `'v0:selection'`.
|
|
1704
|
+
* @template Z The input ticket type.
|
|
1705
|
+
* @template E The output ticket type.
|
|
1706
|
+
* @template R The context type.
|
|
1671
1707
|
* @returns The current selection instance.
|
|
1672
1708
|
*
|
|
1673
1709
|
* @see https://0.vuetifyjs.com/composables/selection/use-selection
|
|
@@ -2153,8 +2189,9 @@ function createGroup(_options = {}) {
|
|
|
2153
2189
|
* Creates a new group context.
|
|
2154
2190
|
*
|
|
2155
2191
|
* @param options The options for the group context.
|
|
2156
|
-
* @template Z The
|
|
2157
|
-
* @template E The
|
|
2192
|
+
* @template Z The input ticket type.
|
|
2193
|
+
* @template E The output ticket type.
|
|
2194
|
+
* @template R The context type.
|
|
2158
2195
|
* @returns A new group context.
|
|
2159
2196
|
*
|
|
2160
2197
|
* @see https://0.vuetifyjs.com/composables/selection/use-group
|
|
@@ -2189,6 +2226,9 @@ function createGroupContext(_options = {}) {
|
|
|
2189
2226
|
* Returns the current group instance.
|
|
2190
2227
|
*
|
|
2191
2228
|
* @param namespace The namespace for the group context. Defaults to `'v0:group'`.
|
|
2229
|
+
* @template Z The input ticket type.
|
|
2230
|
+
* @template E The output ticket type.
|
|
2231
|
+
* @template R The context type.
|
|
2192
2232
|
* @returns The current group instance.
|
|
2193
2233
|
*
|
|
2194
2234
|
* @see https://0.vuetifyjs.com/composables/selection/use-group
|
|
@@ -2285,7 +2325,7 @@ function useProxyModel(registry, model, options) {
|
|
|
2285
2325
|
const currentIds = new Set(toValue(registry.selectedIds));
|
|
2286
2326
|
const targetIds = /* @__PURE__ */ new Set();
|
|
2287
2327
|
for (const value of transformIn(val)) {
|
|
2288
|
-
const ids = registry.browse(value);
|
|
2328
|
+
const ids = registry.browse(toRaw(value));
|
|
2289
2329
|
if (ids) for (const id of ids) targetIds.add(id);
|
|
2290
2330
|
}
|
|
2291
2331
|
if (multiple) {
|
|
@@ -3425,8 +3465,9 @@ function useBreakpoints(namespace = "v0:breakpoints") {
|
|
|
3425
3465
|
* Adds computed singular properties: `selectedId`, `selectedItem`, `selectedIndex`, `selectedValue`.
|
|
3426
3466
|
*
|
|
3427
3467
|
* @param options The options for the single selection instance.
|
|
3428
|
-
* @template Z The type
|
|
3429
|
-
* @template E The type
|
|
3468
|
+
* @template Z The input ticket type - what users provide to register().
|
|
3469
|
+
* @template E The output ticket type - what users receive from get().
|
|
3470
|
+
* @template R The context type.
|
|
3430
3471
|
* @returns A new single selection instance with single-selection enforcement.
|
|
3431
3472
|
*
|
|
3432
3473
|
* @remarks
|
|
@@ -3467,6 +3508,18 @@ function useBreakpoints(namespace = "v0:breakpoints") {
|
|
|
3467
3508
|
* console.log(tabs.selectedId.value) // 'about'
|
|
3468
3509
|
* console.log(tabs.selectedIds.size) // 1 (always enforces single selection)
|
|
3469
3510
|
* ```
|
|
3511
|
+
*
|
|
3512
|
+
* @example
|
|
3513
|
+
* ```ts
|
|
3514
|
+
* // With custom ticket type
|
|
3515
|
+
* interface TabTicket extends SingleTicketInput {
|
|
3516
|
+
* label: string
|
|
3517
|
+
* icon?: string
|
|
3518
|
+
* }
|
|
3519
|
+
*
|
|
3520
|
+
* const tabs = createSingle<TabTicket>()
|
|
3521
|
+
* tabs.register({ label: 'Home', icon: 'mdi-home' })
|
|
3522
|
+
* ```
|
|
3470
3523
|
*/
|
|
3471
3524
|
function createSingle(_options = {}) {
|
|
3472
3525
|
const { mandatory = false, multiple = false, ...options } = _options;
|
|
@@ -3504,8 +3557,9 @@ function createSingle(_options = {}) {
|
|
|
3504
3557
|
* Creates a new single selection context.
|
|
3505
3558
|
*
|
|
3506
3559
|
* @param options The options for the single selection context.
|
|
3507
|
-
* @template Z The
|
|
3508
|
-
* @template E The
|
|
3560
|
+
* @template Z The input ticket type.
|
|
3561
|
+
* @template E The output ticket type.
|
|
3562
|
+
* @template R The context type.
|
|
3509
3563
|
* @returns A new single selection context.
|
|
3510
3564
|
*
|
|
3511
3565
|
* @see https://0.vuetifyjs.com/composables/selection/use-single
|
|
@@ -3538,6 +3592,9 @@ function createSingleContext(_options = {}) {
|
|
|
3538
3592
|
* Returns the current single selection instance.
|
|
3539
3593
|
*
|
|
3540
3594
|
* @param namespace The namespace for the single selection context. Defaults to `'v0:single'`.
|
|
3595
|
+
* @template Z The input ticket type.
|
|
3596
|
+
* @template E The output ticket type.
|
|
3597
|
+
* @template R The context type.
|
|
3541
3598
|
* @returns The current single selection instance.
|
|
3542
3599
|
*
|
|
3543
3600
|
* @see https://0.vuetifyjs.com/composables/selection/use-single
|
|
@@ -4217,6 +4274,10 @@ function useDate(namespace = "v0:date") {
|
|
|
4217
4274
|
return useContext(namespace);
|
|
4218
4275
|
}
|
|
4219
4276
|
|
|
4277
|
+
//#endregion
|
|
4278
|
+
//#region src/composables/useFeatures/adapters/generic/index.ts
|
|
4279
|
+
var FeaturesAdapter = class {};
|
|
4280
|
+
|
|
4220
4281
|
//#endregion
|
|
4221
4282
|
//#region src/composables/useFeatures/index.ts
|
|
4222
4283
|
/**
|
|
@@ -4233,6 +4294,7 @@ function useDate(namespace = "v0:date") {
|
|
|
4233
4294
|
* - Auto-selection of enabled features
|
|
4234
4295
|
* - Multi-select support for feature combinations
|
|
4235
4296
|
* - Perfect for A/B testing, progressive rollout, feature toggles
|
|
4297
|
+
* - Adapter pattern for external feature flag services
|
|
4236
4298
|
*
|
|
4237
4299
|
* Inheritance chain: useRegistry → createSelection → createGroup → createFeatures
|
|
4238
4300
|
* Integrates with useTokens for token-based features.
|
|
@@ -4263,7 +4325,10 @@ function useDate(namespace = "v0:date") {
|
|
|
4263
4325
|
function createFeatures(_options = {}) {
|
|
4264
4326
|
const { features, ...options } = _options;
|
|
4265
4327
|
const tokens = createTokens(features, { flat: true });
|
|
4266
|
-
const registry = createGroup(
|
|
4328
|
+
const registry = createGroup({
|
|
4329
|
+
...options,
|
|
4330
|
+
reactive: true
|
|
4331
|
+
});
|
|
4267
4332
|
for (const [id, { value }] of tokens.entries()) register({
|
|
4268
4333
|
id,
|
|
4269
4334
|
value
|
|
@@ -4282,10 +4347,22 @@ function createFeatures(_options = {}) {
|
|
|
4282
4347
|
if (/* @__PURE__ */ isBoolean(ticket.value) && ticket.value === true || /* @__PURE__ */ isObject(ticket.value) && /* @__PURE__ */ isBoolean(ticket.value.$value) && ticket.value.$value === true) registry.select(ticket.id);
|
|
4283
4348
|
return ticket;
|
|
4284
4349
|
}
|
|
4350
|
+
function sync(flags) {
|
|
4351
|
+
for (const [id, value] of Object.entries(flags)) if (registry.get(id)) {
|
|
4352
|
+
const shouldSelect = /* @__PURE__ */ isBoolean(value) ? value === true : /* @__PURE__ */ isObject(value) && /* @__PURE__ */ isBoolean(value.$value) && value.$value === true;
|
|
4353
|
+
registry.upsert(id, { value });
|
|
4354
|
+
if (shouldSelect) registry.select(id);
|
|
4355
|
+
else registry.unselect(id);
|
|
4356
|
+
} else register({
|
|
4357
|
+
id,
|
|
4358
|
+
value
|
|
4359
|
+
});
|
|
4360
|
+
}
|
|
4285
4361
|
return {
|
|
4286
4362
|
...registry,
|
|
4287
4363
|
variation,
|
|
4288
4364
|
register,
|
|
4365
|
+
sync,
|
|
4289
4366
|
get size() {
|
|
4290
4367
|
return registry.size;
|
|
4291
4368
|
}
|
|
@@ -4354,7 +4431,7 @@ function createFeaturesContext(_options = {}) {
|
|
|
4354
4431
|
* ```
|
|
4355
4432
|
*/
|
|
4356
4433
|
function createFeaturesPlugin(_options = {}) {
|
|
4357
|
-
const { namespace = "v0:features", ...options } = _options;
|
|
4434
|
+
const { namespace = "v0:features", adapter, ...options } = _options;
|
|
4358
4435
|
const [, provideFeaturesContext, context] = createFeaturesContext({
|
|
4359
4436
|
...options,
|
|
4360
4437
|
namespace
|
|
@@ -4363,6 +4440,17 @@ function createFeaturesPlugin(_options = {}) {
|
|
|
4363
4440
|
namespace,
|
|
4364
4441
|
provide: (app) => {
|
|
4365
4442
|
provideFeaturesContext(context, app);
|
|
4443
|
+
},
|
|
4444
|
+
setup: (app) => {
|
|
4445
|
+
if (!adapter) return;
|
|
4446
|
+
const adapters = /* @__PURE__ */ isArray(adapter) ? adapter : [adapter];
|
|
4447
|
+
for (const adapter$1 of adapters) {
|
|
4448
|
+
const initialFlags = adapter$1.setup((flags) => {
|
|
4449
|
+
context.sync(flags);
|
|
4450
|
+
});
|
|
4451
|
+
context.sync(initialFlags);
|
|
4452
|
+
if (/* @__PURE__ */ isFunction(adapter$1.dispose)) app.onUnmount(() => adapter$1.dispose());
|
|
4453
|
+
}
|
|
4366
4454
|
}
|
|
4367
4455
|
});
|
|
4368
4456
|
}
|
|
@@ -5253,17 +5341,17 @@ function useIntersectionObserver(target, callback, options = {}) {
|
|
|
5253
5341
|
}]);
|
|
5254
5342
|
}
|
|
5255
5343
|
watch(() => targetRef.value, (el, oldEl) => {
|
|
5256
|
-
if (oldEl) cleanup();
|
|
5344
|
+
if (oldEl || observer.value) cleanup();
|
|
5257
5345
|
if (isHydrated.value && el) setup();
|
|
5258
5346
|
}, { immediate: true });
|
|
5259
|
-
|
|
5260
|
-
|
|
5261
|
-
|
|
5262
|
-
|
|
5263
|
-
|
|
5264
|
-
|
|
5265
|
-
}
|
|
5266
|
-
}
|
|
5347
|
+
let stopHydrationWatch;
|
|
5348
|
+
if (!isHydrated.value) stopHydrationWatch = watch(() => isHydrated.value, (hydrated) => {
|
|
5349
|
+
if (hydrated && targetRef.value && !observer.value) {
|
|
5350
|
+
setup();
|
|
5351
|
+
stopHydrationWatch?.();
|
|
5352
|
+
stopHydrationWatch = void 0;
|
|
5353
|
+
}
|
|
5354
|
+
});
|
|
5267
5355
|
function cleanup() {
|
|
5268
5356
|
if (observer.value) {
|
|
5269
5357
|
observer.value.disconnect();
|
|
@@ -5280,6 +5368,8 @@ function useIntersectionObserver(target, callback, options = {}) {
|
|
|
5280
5368
|
setup();
|
|
5281
5369
|
}
|
|
5282
5370
|
function stop() {
|
|
5371
|
+
stopHydrationWatch?.();
|
|
5372
|
+
stopHydrationWatch = void 0;
|
|
5283
5373
|
cleanup();
|
|
5284
5374
|
observer.value = null;
|
|
5285
5375
|
}
|
|
@@ -5668,17 +5758,17 @@ function useMutationObserver(target, callback, options = {}) {
|
|
|
5668
5758
|
}
|
|
5669
5759
|
}
|
|
5670
5760
|
watch(() => targetRef.value, (el, oldEl) => {
|
|
5671
|
-
if (oldEl) cleanup();
|
|
5761
|
+
if (oldEl || observer.value) cleanup();
|
|
5672
5762
|
if (isHydrated.value && el) setup();
|
|
5673
5763
|
}, { immediate: true });
|
|
5674
|
-
|
|
5675
|
-
|
|
5676
|
-
|
|
5677
|
-
|
|
5678
|
-
|
|
5679
|
-
|
|
5680
|
-
}
|
|
5681
|
-
}
|
|
5764
|
+
let stopHydrationWatch;
|
|
5765
|
+
if (!isHydrated.value) stopHydrationWatch = watch(() => isHydrated.value, (hydrated) => {
|
|
5766
|
+
if (hydrated && targetRef.value && !observer.value) {
|
|
5767
|
+
setup();
|
|
5768
|
+
stopHydrationWatch?.();
|
|
5769
|
+
stopHydrationWatch = void 0;
|
|
5770
|
+
}
|
|
5771
|
+
});
|
|
5682
5772
|
function cleanup() {
|
|
5683
5773
|
if (observer.value) {
|
|
5684
5774
|
observer.value.disconnect();
|
|
@@ -5694,6 +5784,8 @@ function useMutationObserver(target, callback, options = {}) {
|
|
|
5694
5784
|
setup();
|
|
5695
5785
|
}
|
|
5696
5786
|
function stop() {
|
|
5787
|
+
stopHydrationWatch?.();
|
|
5788
|
+
stopHydrationWatch = void 0;
|
|
5697
5789
|
cleanup();
|
|
5698
5790
|
observer.value = null;
|
|
5699
5791
|
}
|
|
@@ -6305,17 +6397,17 @@ function useResizeObserver(target, callback, options = {}) {
|
|
|
6305
6397
|
}
|
|
6306
6398
|
}
|
|
6307
6399
|
watch(() => targetRef.value, (el, oldEl) => {
|
|
6308
|
-
if (oldEl) cleanup();
|
|
6400
|
+
if (oldEl || observer.value) cleanup();
|
|
6309
6401
|
if (isHydrated.value && el) setup();
|
|
6310
6402
|
}, { immediate: true });
|
|
6311
|
-
|
|
6312
|
-
|
|
6313
|
-
|
|
6314
|
-
|
|
6315
|
-
|
|
6316
|
-
|
|
6317
|
-
}
|
|
6318
|
-
}
|
|
6403
|
+
let stopHydrationWatch;
|
|
6404
|
+
if (!isHydrated.value) stopHydrationWatch = watch(() => isHydrated.value, (hydrated) => {
|
|
6405
|
+
if (hydrated && targetRef.value && !observer.value) {
|
|
6406
|
+
setup();
|
|
6407
|
+
stopHydrationWatch?.();
|
|
6408
|
+
stopHydrationWatch = void 0;
|
|
6409
|
+
}
|
|
6410
|
+
});
|
|
6319
6411
|
function cleanup() {
|
|
6320
6412
|
if (observer.value) {
|
|
6321
6413
|
observer.value.disconnect();
|
|
@@ -6331,6 +6423,8 @@ function useResizeObserver(target, callback, options = {}) {
|
|
|
6331
6423
|
setup();
|
|
6332
6424
|
}
|
|
6333
6425
|
function stop() {
|
|
6426
|
+
stopHydrationWatch?.();
|
|
6427
|
+
stopHydrationWatch = void 0;
|
|
6334
6428
|
cleanup();
|
|
6335
6429
|
observer.value = null;
|
|
6336
6430
|
}
|
|
@@ -7324,8 +7418,9 @@ function createStep(_options = {}) {
|
|
|
7324
7418
|
* Creates a new step context.
|
|
7325
7419
|
*
|
|
7326
7420
|
* @param options The options for the step context.
|
|
7327
|
-
* @template Z The
|
|
7328
|
-
* @template E The
|
|
7421
|
+
* @template Z The input ticket type.
|
|
7422
|
+
* @template E The output ticket type.
|
|
7423
|
+
* @template R The context type.
|
|
7329
7424
|
* @returns A new step context.
|
|
7330
7425
|
*
|
|
7331
7426
|
* @see https://0.vuetifyjs.com/composables/selection/use-step
|
|
@@ -7358,6 +7453,9 @@ function createStepContext(_options = {}) {
|
|
|
7358
7453
|
* Returns the current step instance.
|
|
7359
7454
|
*
|
|
7360
7455
|
* @param namespace The namespace for the step context. Defaults to `'v0:step'`.
|
|
7456
|
+
* @template Z The input ticket type.
|
|
7457
|
+
* @template E The output ticket type.
|
|
7458
|
+
* @template R The context type.
|
|
7361
7459
|
* @returns The current step instance.
|
|
7362
7460
|
*
|
|
7363
7461
|
* @see https://0.vuetifyjs.com/composables/selection/use-step
|
|
@@ -7611,6 +7709,7 @@ var ThemeAdapter = class {
|
|
|
7611
7709
|
*/
|
|
7612
7710
|
var Vuetify0ThemeAdapter = class extends ThemeAdapter {
|
|
7613
7711
|
cspNonce;
|
|
7712
|
+
sheet;
|
|
7614
7713
|
constructor(options = {}) {
|
|
7615
7714
|
super(options.prefix ?? "v0");
|
|
7616
7715
|
this.cspNonce = options.cspNonce;
|
|
@@ -7650,16 +7749,11 @@ var Vuetify0ThemeAdapter = class extends ThemeAdapter {
|
|
|
7650
7749
|
}
|
|
7651
7750
|
upsert(styles) {
|
|
7652
7751
|
if (!IN_BROWSER) return;
|
|
7653
|
-
|
|
7654
|
-
|
|
7655
|
-
|
|
7656
|
-
if (!styleEl) {
|
|
7657
|
-
styleEl = document.createElement("style");
|
|
7658
|
-
styleEl.id = id;
|
|
7659
|
-
if (this.cspNonce) styleEl.setAttribute("nonce", this.cspNonce);
|
|
7660
|
-
document.head.append(styleEl);
|
|
7752
|
+
if (!this.sheet) {
|
|
7753
|
+
this.sheet = new CSSStyleSheet();
|
|
7754
|
+
document.adoptedStyleSheets.push(this.sheet);
|
|
7661
7755
|
}
|
|
7662
|
-
|
|
7756
|
+
this.sheet.replaceSync(styles);
|
|
7663
7757
|
}
|
|
7664
7758
|
};
|
|
7665
7759
|
|
|
@@ -9968,11 +10062,13 @@ const _sfc_main$14 = /* @__PURE__ */ defineComponent({
|
|
|
9968
10062
|
});
|
|
9969
10063
|
watch(context.isSelected, (isOpen) => {
|
|
9970
10064
|
const element = ref$1.value?.element;
|
|
9971
|
-
if (!element
|
|
10065
|
+
if (!element?.isConnected) return;
|
|
10066
|
+
if (isOpen === element.matches?.(":popover-open")) return;
|
|
9972
10067
|
if (isOpen) element.showPopover?.();
|
|
9973
10068
|
else element.hidePopover?.();
|
|
9974
10069
|
});
|
|
9975
10070
|
function onToggle(e) {
|
|
10071
|
+
if (!ref$1.value?.element?.isConnected) return;
|
|
9976
10072
|
context.isSelected.value = e.newState === "open";
|
|
9977
10073
|
}
|
|
9978
10074
|
/* v8 ignore stop */
|
|
@@ -10037,6 +10133,7 @@ const _sfc_main$13 = /* @__PURE__ */ defineComponent({
|
|
|
10037
10133
|
ariaDescribedby: {},
|
|
10038
10134
|
ariaRequired: { type: Boolean },
|
|
10039
10135
|
name: {},
|
|
10136
|
+
activation: { default: "automatic" },
|
|
10040
10137
|
as: { default: "div" },
|
|
10041
10138
|
renderless: { type: Boolean }
|
|
10042
10139
|
}, {
|
|
@@ -10054,11 +10151,13 @@ const _sfc_main$13 = /* @__PURE__ */ defineComponent({
|
|
|
10054
10151
|
useProxyModel(single, model, { multiple: false });
|
|
10055
10152
|
provideRadioGroup(__props.namespace, {
|
|
10056
10153
|
...single,
|
|
10057
|
-
name: __props.name
|
|
10154
|
+
name: __props.name,
|
|
10155
|
+
activation: toRef(() => __props.activation)
|
|
10058
10156
|
});
|
|
10059
10157
|
const slotProps = toRef(() => ({
|
|
10060
10158
|
isDisabled: toValue(single.disabled),
|
|
10061
10159
|
isNoneSelected: single.selectedIds.size === 0,
|
|
10160
|
+
activation: __props.activation,
|
|
10062
10161
|
attrs: {
|
|
10063
10162
|
"role": "radiogroup",
|
|
10064
10163
|
"aria-label": __props.label || void 0,
|
|
@@ -10133,7 +10232,7 @@ const _sfc_main$12 = /* @__PURE__ */ defineComponent({
|
|
|
10133
10232
|
select();
|
|
10134
10233
|
}
|
|
10135
10234
|
function onKeydown(e) {
|
|
10136
|
-
if (e.key === " ") {
|
|
10235
|
+
if (e.key === " " || e.key === "Enter") {
|
|
10137
10236
|
e.preventDefault();
|
|
10138
10237
|
select();
|
|
10139
10238
|
return;
|
|
@@ -10153,7 +10252,7 @@ const _sfc_main$12 = /* @__PURE__ */ defineComponent({
|
|
|
10153
10252
|
else nextIndex = currentIndex === items.length - 1 ? 0 : currentIndex + 1;
|
|
10154
10253
|
const nextItem = items[nextIndex];
|
|
10155
10254
|
if (!nextItem) return;
|
|
10156
|
-
nextItem.select();
|
|
10255
|
+
if (group.activation.value === "automatic") nextItem.select();
|
|
10157
10256
|
toValue(nextItem.el)?.focus();
|
|
10158
10257
|
}
|
|
10159
10258
|
onUnmounted(() => {
|
|
@@ -10997,4 +11096,4 @@ const Tabs = {
|
|
|
10997
11096
|
};
|
|
10998
11097
|
|
|
10999
11098
|
//#endregion
|
|
11000
|
-
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, 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 };
|
|
11099
|
+
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
|
-
import "../index-
|
|
2
|
-
import { $ as RadioRootSlotProps, $n as
|
|
3
|
-
import "../index-
|
|
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, _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
|
+
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-Bx6Ke-u_.mjs";
|
|
3
|
+
import "../index-qSuLpob3.mjs";
|
|
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-BOipMGkD.mjs";
|
|
4
|
+
import "../useClickOutside-DcrXfUVx.mjs";
|
|
5
|
+
import "../globals-qE_M6ZhX.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 };
|