vite-plugin-vue-devtools 0.0.12 → 0.0.14

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.
Files changed (28) hide show
  1. package/dist/client/assets/{inspect-95be8b35.js → IframeView.vue_vue_type_script_setup_true_lang-8ebd667e.js} +3 -20
  2. package/dist/client/assets/{VCard-7914da83.js → VCard-11a8877a.js} +1 -1
  3. package/dist/client/assets/{VIcon.vue_vue_type_script_setup_true_lang-26cb9d64.js → VIcon.vue_vue_type_script_setup_true_lang-af70f694.js} +1 -1
  4. package/dist/client/assets/{VIconButton.vue_vue_type_script_setup_true_lang-dab4dc71.js → VIconButton.vue_vue_type_script_setup_true_lang-6aa5cb0d.js} +2 -2
  5. package/dist/client/assets/{VIconTitle.vue_vue_type_script_setup_true_lang-1bbb2033.js → VIconTitle.vue_vue_type_script_setup_true_lang-0d3b7394.js} +1 -1
  6. package/dist/client/assets/{VPanelGrids-733278d6.js → VPanelGrids-c5507ef9.js} +1 -1
  7. package/dist/client/assets/{VTextInput.vue_vue_type_script_setup_true_lang-dede00e7.js → VTextInput.vue_vue_type_script_setup_true_lang-27694cb4.js} +3 -3
  8. package/dist/client/assets/{__inspecting-ac57cfe2.js → __inspecting-336e65a6.js} +2 -2
  9. package/dist/client/assets/{assets-40310f26.js → assets-421f53f9.js} +8 -8
  10. package/dist/client/assets/{components-8abb94d8.js → components-0518c05b.js} +7 -7
  11. package/dist/client/assets/{documentations-ab483662.js → documentations-df9246a6.js} +92 -44
  12. package/dist/client/assets/{graph-45c33d8f.js → graph-edcd5690.js} +2 -2
  13. package/dist/client/assets/{index-d7f947d1.js → index-3785a229.js} +205 -13
  14. package/dist/client/assets/{index-ea632118.css → index-890fc037.css} +1 -1
  15. package/dist/client/assets/{index-7930cd83.js → index-d487d3ee.js} +1 -1
  16. package/dist/client/assets/inspect-586596cb.js +21 -0
  17. package/dist/client/assets/{overview-f2a16196.js → overview-785a62ce.js} +5 -5
  18. package/dist/client/assets/{pages-52fb2c5c.js → pages-ccc683ad.js} +4 -4
  19. package/dist/client/assets/{pinia-69e3497c.js → pinia-ea8411a5.js} +5 -5
  20. package/dist/client/assets/{routes-f32e8bb5.js → routes-d914e33b.js} +7 -7
  21. package/dist/client/assets/{rpc-5116c57e.js → rpc-adef96e1.js} +1 -1
  22. package/dist/client/assets/{settings-a4c43db5.js → settings-e66a0349.js} +3 -3
  23. package/dist/client/assets/{splitpanes.es-09f32a7b.js → splitpanes.es-ff1ff11d.js} +4 -4
  24. package/dist/client/assets/{timeline-9da4ec07.js → timeline-aa15bc7b.js} +7 -7
  25. package/dist/client/index.html +2 -2
  26. package/package.json +1 -1
  27. package/src/node/Container.vue +6 -11
  28. package/src/node/app.js +15 -1
@@ -5235,6 +5235,198 @@ function getSequence(arr) {
5235
5235
  }
5236
5236
 
5237
5237
  const isTeleport = (type) => type.__isTeleport;
5238
+ const isTeleportDisabled = (props) => props && (props.disabled || props.disabled === '');
5239
+ const isTargetSVG = (target) => typeof SVGElement !== 'undefined' && target instanceof SVGElement;
5240
+ const resolveTarget = (props, select) => {
5241
+ const targetSelector = props && props.to;
5242
+ if (isString(targetSelector)) {
5243
+ if (!select) {
5244
+ return null;
5245
+ }
5246
+ else {
5247
+ const target = select(targetSelector);
5248
+ return target;
5249
+ }
5250
+ }
5251
+ else {
5252
+ return targetSelector;
5253
+ }
5254
+ };
5255
+ const TeleportImpl = {
5256
+ __isTeleport: true,
5257
+ process(n1, n2, container, anchor, parentComponent, parentSuspense, isSVG, slotScopeIds, optimized, internals) {
5258
+ const { mc: mountChildren, pc: patchChildren, pbc: patchBlockChildren, o: { insert, querySelector, createText, createComment } } = internals;
5259
+ const disabled = isTeleportDisabled(n2.props);
5260
+ let { shapeFlag, children, dynamicChildren } = n2;
5261
+ if (n1 == null) {
5262
+ // insert anchors in the main view
5263
+ const placeholder = (n2.el = createText(''));
5264
+ const mainAnchor = (n2.anchor = createText(''));
5265
+ insert(placeholder, container, anchor);
5266
+ insert(mainAnchor, container, anchor);
5267
+ const target = (n2.target = resolveTarget(n2.props, querySelector));
5268
+ const targetAnchor = (n2.targetAnchor = createText(''));
5269
+ if (target) {
5270
+ insert(targetAnchor, target);
5271
+ // #2652 we could be teleporting from a non-SVG tree into an SVG tree
5272
+ isSVG = isSVG || isTargetSVG(target);
5273
+ }
5274
+ const mount = (container, anchor) => {
5275
+ // Teleport *always* has Array children. This is enforced in both the
5276
+ // compiler and vnode children normalization.
5277
+ if (shapeFlag & 16 /* ShapeFlags.ARRAY_CHILDREN */) {
5278
+ mountChildren(children, container, anchor, parentComponent, parentSuspense, isSVG, slotScopeIds, optimized);
5279
+ }
5280
+ };
5281
+ if (disabled) {
5282
+ mount(container, mainAnchor);
5283
+ }
5284
+ else if (target) {
5285
+ mount(target, targetAnchor);
5286
+ }
5287
+ }
5288
+ else {
5289
+ // update content
5290
+ n2.el = n1.el;
5291
+ const mainAnchor = (n2.anchor = n1.anchor);
5292
+ const target = (n2.target = n1.target);
5293
+ const targetAnchor = (n2.targetAnchor = n1.targetAnchor);
5294
+ const wasDisabled = isTeleportDisabled(n1.props);
5295
+ const currentContainer = wasDisabled ? container : target;
5296
+ const currentAnchor = wasDisabled ? mainAnchor : targetAnchor;
5297
+ isSVG = isSVG || isTargetSVG(target);
5298
+ if (dynamicChildren) {
5299
+ // fast path when the teleport happens to be a block root
5300
+ patchBlockChildren(n1.dynamicChildren, dynamicChildren, currentContainer, parentComponent, parentSuspense, isSVG, slotScopeIds);
5301
+ // even in block tree mode we need to make sure all root-level nodes
5302
+ // in the teleport inherit previous DOM references so that they can
5303
+ // be moved in future patches.
5304
+ traverseStaticChildren(n1, n2, true);
5305
+ }
5306
+ else if (!optimized) {
5307
+ patchChildren(n1, n2, currentContainer, currentAnchor, parentComponent, parentSuspense, isSVG, slotScopeIds, false);
5308
+ }
5309
+ if (disabled) {
5310
+ if (!wasDisabled) {
5311
+ // enabled -> disabled
5312
+ // move into main container
5313
+ moveTeleport(n2, container, mainAnchor, internals, 1 /* TeleportMoveTypes.TOGGLE */);
5314
+ }
5315
+ }
5316
+ else {
5317
+ // target changed
5318
+ if ((n2.props && n2.props.to) !== (n1.props && n1.props.to)) {
5319
+ const nextTarget = (n2.target = resolveTarget(n2.props, querySelector));
5320
+ if (nextTarget) {
5321
+ moveTeleport(n2, nextTarget, null, internals, 0 /* TeleportMoveTypes.TARGET_CHANGE */);
5322
+ }
5323
+ }
5324
+ else if (wasDisabled) {
5325
+ // disabled -> enabled
5326
+ // move into teleport target
5327
+ moveTeleport(n2, target, targetAnchor, internals, 1 /* TeleportMoveTypes.TOGGLE */);
5328
+ }
5329
+ }
5330
+ }
5331
+ updateCssVars(n2);
5332
+ },
5333
+ remove(vnode, parentComponent, parentSuspense, optimized, { um: unmount, o: { remove: hostRemove } }, doRemove) {
5334
+ const { shapeFlag, children, anchor, targetAnchor, target, props } = vnode;
5335
+ if (target) {
5336
+ hostRemove(targetAnchor);
5337
+ }
5338
+ // an unmounted teleport should always remove its children if not disabled
5339
+ if (doRemove || !isTeleportDisabled(props)) {
5340
+ hostRemove(anchor);
5341
+ if (shapeFlag & 16 /* ShapeFlags.ARRAY_CHILDREN */) {
5342
+ for (let i = 0; i < children.length; i++) {
5343
+ const child = children[i];
5344
+ unmount(child, parentComponent, parentSuspense, true, !!child.dynamicChildren);
5345
+ }
5346
+ }
5347
+ }
5348
+ },
5349
+ move: moveTeleport,
5350
+ hydrate: hydrateTeleport
5351
+ };
5352
+ function moveTeleport(vnode, container, parentAnchor, { o: { insert }, m: move }, moveType = 2 /* TeleportMoveTypes.REORDER */) {
5353
+ // move target anchor if this is a target change.
5354
+ if (moveType === 0 /* TeleportMoveTypes.TARGET_CHANGE */) {
5355
+ insert(vnode.targetAnchor, container, parentAnchor);
5356
+ }
5357
+ const { el, anchor, shapeFlag, children, props } = vnode;
5358
+ const isReorder = moveType === 2 /* TeleportMoveTypes.REORDER */;
5359
+ // move main view anchor if this is a re-order.
5360
+ if (isReorder) {
5361
+ insert(el, container, parentAnchor);
5362
+ }
5363
+ // if this is a re-order and teleport is enabled (content is in target)
5364
+ // do not move children. So the opposite is: only move children if this
5365
+ // is not a reorder, or the teleport is disabled
5366
+ if (!isReorder || isTeleportDisabled(props)) {
5367
+ // Teleport has either Array children or no children.
5368
+ if (shapeFlag & 16 /* ShapeFlags.ARRAY_CHILDREN */) {
5369
+ for (let i = 0; i < children.length; i++) {
5370
+ move(children[i], container, parentAnchor, 2 /* MoveType.REORDER */);
5371
+ }
5372
+ }
5373
+ }
5374
+ // move main view anchor if this is a re-order.
5375
+ if (isReorder) {
5376
+ insert(anchor, container, parentAnchor);
5377
+ }
5378
+ }
5379
+ function hydrateTeleport(node, vnode, parentComponent, parentSuspense, slotScopeIds, optimized, { o: { nextSibling, parentNode, querySelector } }, hydrateChildren) {
5380
+ const target = (vnode.target = resolveTarget(vnode.props, querySelector));
5381
+ if (target) {
5382
+ // if multiple teleports rendered to the same target element, we need to
5383
+ // pick up from where the last teleport finished instead of the first node
5384
+ const targetNode = target._lpa || target.firstChild;
5385
+ if (vnode.shapeFlag & 16 /* ShapeFlags.ARRAY_CHILDREN */) {
5386
+ if (isTeleportDisabled(vnode.props)) {
5387
+ vnode.anchor = hydrateChildren(nextSibling(node), vnode, parentNode(node), parentComponent, parentSuspense, slotScopeIds, optimized);
5388
+ vnode.targetAnchor = targetNode;
5389
+ }
5390
+ else {
5391
+ vnode.anchor = nextSibling(node);
5392
+ // lookahead until we find the target anchor
5393
+ // we cannot rely on return value of hydrateChildren() because there
5394
+ // could be nested teleports
5395
+ let targetAnchor = targetNode;
5396
+ while (targetAnchor) {
5397
+ targetAnchor = nextSibling(targetAnchor);
5398
+ if (targetAnchor &&
5399
+ targetAnchor.nodeType === 8 &&
5400
+ targetAnchor.data === 'teleport anchor') {
5401
+ vnode.targetAnchor = targetAnchor;
5402
+ target._lpa =
5403
+ vnode.targetAnchor && nextSibling(vnode.targetAnchor);
5404
+ break;
5405
+ }
5406
+ }
5407
+ hydrateChildren(targetNode, vnode, target, parentComponent, parentSuspense, slotScopeIds, optimized);
5408
+ }
5409
+ }
5410
+ updateCssVars(vnode);
5411
+ }
5412
+ return vnode.anchor && nextSibling(vnode.anchor);
5413
+ }
5414
+ // Force-casted public typing for h and TSX props inference
5415
+ const Teleport = TeleportImpl;
5416
+ function updateCssVars(vnode) {
5417
+ // presence of .ut method indicates owner component uses css vars.
5418
+ // code path here can assume browser environment.
5419
+ const ctx = vnode.ctx;
5420
+ if (ctx && ctx.ut) {
5421
+ let node = vnode.children[0].el;
5422
+ while (node !== vnode.targetAnchor) {
5423
+ if (node.nodeType === 1)
5424
+ node.setAttribute('data-v-owner', ctx.uid);
5425
+ node = node.nextSibling;
5426
+ }
5427
+ ctx.ut();
5428
+ }
5429
+ }
5238
5430
 
5239
5431
  const Fragment = Symbol(undefined);
5240
5432
  const Text = Symbol(undefined);
@@ -14233,18 +14425,18 @@ const _sfc_main$8 = /* @__PURE__ */ defineComponent({
14233
14425
 
14234
14426
  /* Injected with object hook! */
14235
14427
 
14236
- const __pages_import_0__ = () => __vitePreload(() => import('./timeline-9da4ec07.js'),true?["./timeline-9da4ec07.js","./splitpanes.es-09f32a7b.js","./VIcon.vue_vue_type_script_setup_true_lang-26cb9d64.js","./index-7930cd83.js","./VIconButton.vue_vue_type_script_setup_true_lang-dab4dc71.js","./VPanelGrids-733278d6.js","./VCard-7914da83.js","./timeline-b315b2e0.css"]:void 0,import.meta.url);
14237
- const __pages_import_1__ = () => __vitePreload(() => import('./settings-a4c43db5.js'),true?["./settings-a4c43db5.js","./VIcon.vue_vue_type_script_setup_true_lang-26cb9d64.js","./VIconTitle.vue_vue_type_script_setup_true_lang-1bbb2033.js"]:void 0,import.meta.url);
14238
- const __pages_import_2__ = () => __vitePreload(() => import('./routes-f32e8bb5.js'),true?["./routes-f32e8bb5.js","./VPanelGrids-733278d6.js","./VCard-7914da83.js","./splitpanes.es-09f32a7b.js","./VIcon.vue_vue_type_script_setup_true_lang-26cb9d64.js","./index-7930cd83.js","./VIconButton.vue_vue_type_script_setup_true_lang-dab4dc71.js"]:void 0,import.meta.url);
14239
- const __pages_import_3__ = () => __vitePreload(() => import('./pinia-69e3497c.js'),true?["./pinia-69e3497c.js","./splitpanes.es-09f32a7b.js","./VIcon.vue_vue_type_script_setup_true_lang-26cb9d64.js","./index-7930cd83.js","./VIconButton.vue_vue_type_script_setup_true_lang-dab4dc71.js"]:void 0,import.meta.url);
14240
- const __pages_import_4__ = () => __vitePreload(() => import('./pages-52fb2c5c.js'),true?["./pages-52fb2c5c.js","./VTextInput.vue_vue_type_script_setup_true_lang-dede00e7.js","./VIconTitle.vue_vue_type_script_setup_true_lang-1bbb2033.js","./VIcon.vue_vue_type_script_setup_true_lang-26cb9d64.js","./VTextInput-52804693.css"]:void 0,import.meta.url);
14241
- const __pages_import_5__ = () => __vitePreload(() => import('./overview-f2a16196.js'),true?["./overview-f2a16196.js","./VPanelGrids-733278d6.js","./rpc-5116c57e.js","./index-7930cd83.js"]:void 0,import.meta.url);
14242
- const __pages_import_6__ = () => __vitePreload(() => import('./inspect-95be8b35.js'),true?["./inspect-95be8b35.js","./rpc-5116c57e.js"]:void 0,import.meta.url);
14243
- const __pages_import_8__ = () => __vitePreload(() => import('./graph-45c33d8f.js'),true?["./graph-45c33d8f.js","./fuse.esm-c317b696.js","./rpc-5116c57e.js"]:void 0,import.meta.url);
14244
- const __pages_import_9__ = () => __vitePreload(() => import('./documentations-ab483662.js'),true?["./documentations-ab483662.js","./VCard-7914da83.js","./rpc-5116c57e.js"]:void 0,import.meta.url);
14245
- const __pages_import_10__ = () => __vitePreload(() => import('./components-8abb94d8.js'),true?["./components-8abb94d8.js","./VPanelGrids-733278d6.js","./VCard-7914da83.js","./splitpanes.es-09f32a7b.js","./VIcon.vue_vue_type_script_setup_true_lang-26cb9d64.js","./index-7930cd83.js","./VIconButton.vue_vue_type_script_setup_true_lang-dab4dc71.js"]:void 0,import.meta.url);
14246
- const __pages_import_11__ = () => __vitePreload(() => import('./assets-40310f26.js'),true?["./assets-40310f26.js","./VPanelGrids-733278d6.js","./VCard-7914da83.js","./VIconButton.vue_vue_type_script_setup_true_lang-dab4dc71.js","./VIcon.vue_vue_type_script_setup_true_lang-26cb9d64.js","./rpc-5116c57e.js","./VTextInput.vue_vue_type_script_setup_true_lang-dede00e7.js","./VIconTitle.vue_vue_type_script_setup_true_lang-1bbb2033.js","./VTextInput-52804693.css","./fuse.esm-c317b696.js"]:void 0,import.meta.url);
14247
- const __pages_import_12__ = () => __vitePreload(() => import('./__inspecting-ac57cfe2.js'),true?["./__inspecting-ac57cfe2.js","./VPanelGrids-733278d6.js"]:void 0,import.meta.url);
14428
+ const __pages_import_0__ = () => __vitePreload(() => import('./timeline-aa15bc7b.js'),true?["./timeline-aa15bc7b.js","./splitpanes.es-ff1ff11d.js","./VIcon.vue_vue_type_script_setup_true_lang-af70f694.js","./index-d487d3ee.js","./VIconButton.vue_vue_type_script_setup_true_lang-6aa5cb0d.js","./VPanelGrids-c5507ef9.js","./VCard-11a8877a.js","./timeline-b315b2e0.css"]:void 0,import.meta.url);
14429
+ const __pages_import_1__ = () => __vitePreload(() => import('./settings-e66a0349.js'),true?["./settings-e66a0349.js","./VIcon.vue_vue_type_script_setup_true_lang-af70f694.js","./VIconTitle.vue_vue_type_script_setup_true_lang-0d3b7394.js"]:void 0,import.meta.url);
14430
+ const __pages_import_2__ = () => __vitePreload(() => import('./routes-d914e33b.js'),true?["./routes-d914e33b.js","./VPanelGrids-c5507ef9.js","./VCard-11a8877a.js","./splitpanes.es-ff1ff11d.js","./VIcon.vue_vue_type_script_setup_true_lang-af70f694.js","./index-d487d3ee.js","./VIconButton.vue_vue_type_script_setup_true_lang-6aa5cb0d.js"]:void 0,import.meta.url);
14431
+ const __pages_import_3__ = () => __vitePreload(() => import('./pinia-ea8411a5.js'),true?["./pinia-ea8411a5.js","./splitpanes.es-ff1ff11d.js","./VIcon.vue_vue_type_script_setup_true_lang-af70f694.js","./index-d487d3ee.js","./VIconButton.vue_vue_type_script_setup_true_lang-6aa5cb0d.js"]:void 0,import.meta.url);
14432
+ const __pages_import_4__ = () => __vitePreload(() => import('./pages-ccc683ad.js'),true?["./pages-ccc683ad.js","./VTextInput.vue_vue_type_script_setup_true_lang-27694cb4.js","./VIconTitle.vue_vue_type_script_setup_true_lang-0d3b7394.js","./VIcon.vue_vue_type_script_setup_true_lang-af70f694.js","./VTextInput-52804693.css"]:void 0,import.meta.url);
14433
+ const __pages_import_5__ = () => __vitePreload(() => import('./overview-785a62ce.js'),true?["./overview-785a62ce.js","./VPanelGrids-c5507ef9.js","./rpc-adef96e1.js","./index-d487d3ee.js"]:void 0,import.meta.url);
14434
+ const __pages_import_6__ = () => __vitePreload(() => import('./inspect-586596cb.js'),true?["./inspect-586596cb.js","./IframeView.vue_vue_type_script_setup_true_lang-8ebd667e.js","./rpc-adef96e1.js"]:void 0,import.meta.url);
14435
+ const __pages_import_8__ = () => __vitePreload(() => import('./graph-edcd5690.js'),true?["./graph-edcd5690.js","./fuse.esm-c317b696.js","./rpc-adef96e1.js"]:void 0,import.meta.url);
14436
+ const __pages_import_9__ = () => __vitePreload(() => import('./documentations-df9246a6.js'),true?["./documentations-df9246a6.js","./VCard-11a8877a.js","./IframeView.vue_vue_type_script_setup_true_lang-8ebd667e.js","./rpc-adef96e1.js"]:void 0,import.meta.url);
14437
+ const __pages_import_10__ = () => __vitePreload(() => import('./components-0518c05b.js'),true?["./components-0518c05b.js","./VPanelGrids-c5507ef9.js","./VCard-11a8877a.js","./splitpanes.es-ff1ff11d.js","./VIcon.vue_vue_type_script_setup_true_lang-af70f694.js","./index-d487d3ee.js","./VIconButton.vue_vue_type_script_setup_true_lang-6aa5cb0d.js"]:void 0,import.meta.url);
14438
+ const __pages_import_11__ = () => __vitePreload(() => import('./assets-421f53f9.js'),true?["./assets-421f53f9.js","./VPanelGrids-c5507ef9.js","./VCard-11a8877a.js","./VIconButton.vue_vue_type_script_setup_true_lang-6aa5cb0d.js","./VIcon.vue_vue_type_script_setup_true_lang-af70f694.js","./rpc-adef96e1.js","./VTextInput.vue_vue_type_script_setup_true_lang-27694cb4.js","./VIconTitle.vue_vue_type_script_setup_true_lang-0d3b7394.js","./VTextInput-52804693.css","./fuse.esm-c317b696.js"]:void 0,import.meta.url);
14439
+ const __pages_import_12__ = () => __vitePreload(() => import('./__inspecting-336e65a6.js'),true?["./__inspecting-336e65a6.js","./VPanelGrids-c5507ef9.js"]:void 0,import.meta.url);
14248
14440
 
14249
14441
  const routes$1 = [{"name":"timeline","path":"/timeline","component":__pages_import_0__,"props":true},{"name":"settings","path":"/settings","component":__pages_import_1__,"props":true},{"name":"routes","path":"/routes","component":__pages_import_2__,"props":true},{"name":"pinia","path":"/pinia","component":__pages_import_3__,"props":true},{"name":"pages","path":"/pages","component":__pages_import_4__,"props":true},{"name":"overview","path":"/overview","component":__pages_import_5__,"props":true},{"name":"inspect","path":"/inspect","component":__pages_import_6__,"props":true},{"name":"index","path":"/","component":_sfc_main$8,"props":true},{"name":"graph","path":"/graph","component":__pages_import_8__,"props":true},{"name":"documentations","path":"/documentations","component":__pages_import_9__,"props":true},{"name":"components","path":"/components","component":__pages_import_10__,"props":true},{"name":"assets","path":"/assets","component":__pages_import_11__,"props":true},{"name":"__inspecting","path":"/__inspecting","component":__pages_import_12__,"props":true}];
14250
14442
  /* Injected with object hook! */
@@ -15572,4 +15764,4 @@ app.mount("#app");
15572
15764
 
15573
15765
  /* Injected with object hook! */
15574
15766
 
15575
- export { computed as $, timelineLayer as A, activeTimelineEvents as B, activeTimelineEventIndex as C, toggleTimelineEventIndex as D, timelineEventDetails as E, Fragment as F, activeLayerId as G, toggleTimelineLayer as H, useVModel as I, vModelSelect as J, isRef as K, vModelCheckbox as L, withKeys as M, useCategorizedTabs as N, createTextVNode as O, useDevToolsSettings as P, _sfc_main$b as Q, _sfc_main$5 as R, _sfc_main$7 as S, router$1 as T, routeRecordMatcherState as U, activeRouteRecordMatcherState as V, activeRouteRecordIndex as W, toggleRouteRecordMatcher as X, __unplugin_components_1 as Y, ref as Z, _sfc_main$4 as _, popScopeId as a, piniaStoresCategory as a0, toRaw as a1, piniaState as a2, piniaGetters as a3, withModifiers as a4, onMounted as a5, currentRoute as a6, routes as a7, vueVersion as a8, __unplugin_components_0$1 as a9, useNotification as aA, useEventListener as aB, useDevtoolsClient as aC, useColorMode as aa, reactive as ab, useElementBounding as ac, watchEffect as ad, onUnmounted as ae, useStorage as af, vModelText as ag, useDark as ah, watch as ai, shallowRef as aj, onVueInstanceUpdate as ak, instance as al, nanoid as am, vShow as an, h as ao, useElementSize as ap, onClickOutside as aq, Transition as ar, useStyleTag as as, computedAsync as at, useTimeAgo as au, onKeyDown as av, _export_sfc as aw, vModelDynamic as ax, __vitePreload as ay, useClipboard as az, resolveDirective as b, createBlock as c, withDirectives as d, createElementBlock as e, renderSlot as f, createCommentVNode as g, withCtx as h, renderList as i, resolveDynamicComponent as j, mergeProps as k, normalizeStyle as l, markRaw as m, nextTick as n, openBlock as o, pushScopeId as p, normalizeClass as q, resolveComponent as r, shallowReactive as s, toHandlers as t, createVNode as u, defineComponent as v, withScopeId as w, createBaseVNode as x, toDisplayString as y, unref as z };
15767
+ export { computed as $, timelineLayer as A, activeTimelineEvents as B, activeTimelineEventIndex as C, toggleTimelineEventIndex as D, timelineEventDetails as E, Fragment as F, activeLayerId as G, toggleTimelineLayer as H, useVModel as I, vModelSelect as J, isRef as K, vModelCheckbox as L, withKeys as M, useCategorizedTabs as N, createTextVNode as O, useDevToolsSettings as P, _sfc_main$b as Q, _sfc_main$5 as R, _sfc_main$7 as S, router$1 as T, routeRecordMatcherState as U, activeRouteRecordMatcherState as V, activeRouteRecordIndex as W, toggleRouteRecordMatcher as X, __unplugin_components_1 as Y, ref as Z, _sfc_main$4 as _, popScopeId as a, piniaStoresCategory as a0, toRaw as a1, piniaState as a2, piniaGetters as a3, withModifiers as a4, onMounted as a5, currentRoute as a6, routes as a7, vueVersion as a8, __unplugin_components_0$1 as a9, useClipboard as aA, useNotification as aB, useEventListener as aC, useDevtoolsClient as aD, useStorage as aa, vModelText as ab, useDark as ac, watch as ad, Teleport as ae, useColorMode as af, reactive as ag, useElementBounding as ah, watchEffect as ai, onUnmounted as aj, shallowRef as ak, onVueInstanceUpdate as al, instance as am, nanoid as an, vShow as ao, h as ap, useElementSize as aq, onClickOutside as ar, Transition as as, useStyleTag as at, computedAsync as au, useTimeAgo as av, onKeyDown as aw, _export_sfc as ax, vModelDynamic as ay, __vitePreload as az, resolveDirective as b, createBlock as c, withDirectives as d, createElementBlock as e, renderSlot as f, createCommentVNode as g, withCtx as h, renderList as i, resolveDynamicComponent as j, mergeProps as k, normalizeStyle as l, markRaw as m, nextTick as n, openBlock as o, pushScopeId as p, normalizeClass as q, resolveComponent as r, shallowReactive as s, toHandlers as t, createVNode as u, defineComponent as v, withScopeId as w, createBaseVNode as x, toDisplayString as y, unref as z };