@valaxyjs/devtools 0.19.12 → 0.20.0-beta.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.
@@ -1,5 +1,5 @@
1
1
  import { _ as _export_sfc } from './_plugin-vue_export-helper-DgDhiqFL.js';
2
- import { a as createElementBlock, o as openBlock } from './index-BUdNacqN.js';
2
+ import { a as createElementBlock, o as openBlock } from './index-D3oYxIsD.js';
3
3
 
4
4
  /* unplugin-vue-components disabled */const _sfc_main = {};
5
5
 
@@ -1,5 +1,5 @@
1
1
  import { _ as _export_sfc } from './_plugin-vue_export-helper-DgDhiqFL.js';
2
- import { a as createElementBlock, o as openBlock } from './index-BUdNacqN.js';
2
+ import { a as createElementBlock, o as openBlock } from './index-D3oYxIsD.js';
3
3
 
4
4
  /* unplugin-vue-components disabled */const _sfc_main = {};
5
5
 
@@ -1,4 +1,4 @@
1
- const __vite__mapDeps=(i,m=__vite__mapDeps,d=(m.f||(m.f=["./index-CaURY-iQ.js","./_plugin-vue_export-helper-DgDhiqFL.js","./splitpanes.es-D_5miwZj.js","./index-DF84L4of.css","./about-Cb961iZ7.js","./categories-sQfB3FdC.js","./migration-CSZiiXr3.js","./tags-BNZ-KRbk.js"])))=>i.map(i=>d[i]);
1
+ const __vite__mapDeps=(i,m=__vite__mapDeps,d=(m.f||(m.f=["./index-DRy8N1pt.js","./_plugin-vue_export-helper-DgDhiqFL.js","./splitpanes.es-Bnf-PNLD.js","./index-DF84L4of.css","./about-D9O4oadt.js","./categories-SKB6lSvM.js","./migration-Ckc8nT6B.js","./tags-D--MSn5m.js"])))=>i.map(i=>d[i]);
2
2
  true&&(function polyfill() {
3
3
  const relList = document.createElement("link").relList;
4
4
  if (relList && relList.supports && relList.supports("modulepreload")) {
@@ -39,7 +39,7 @@ true&&(function polyfill() {
39
39
  /* Injected with object hook! */
40
40
 
41
41
  /**
42
- * @vue/shared v3.5.7
42
+ * @vue/shared v3.5.11
43
43
  * (c) 2018-present Yuxi (Evan) You and Vue contributors
44
44
  * @license MIT
45
45
  **/
@@ -283,7 +283,7 @@ const stringifySymbol = (v, i = "") => {
283
283
  /* Injected with object hook! */
284
284
 
285
285
  /**
286
- * @vue/reactivity v3.5.7
286
+ * @vue/reactivity v3.5.11
287
287
  * (c) 2018-present Yuxi (Evan) You and Vue contributors
288
288
  * @license MIT
289
289
  **/
@@ -484,8 +484,14 @@ class ReactiveEffect {
484
484
  }
485
485
  let batchDepth = 0;
486
486
  let batchedSub;
487
- function batch(sub) {
487
+ let batchedComputed;
488
+ function batch(sub, isComputed = false) {
488
489
  sub.flags |= 8;
490
+ if (isComputed) {
491
+ sub.next = batchedComputed;
492
+ batchedComputed = sub;
493
+ return;
494
+ }
489
495
  sub.next = batchedSub;
490
496
  batchedSub = sub;
491
497
  }
@@ -496,6 +502,16 @@ function endBatch() {
496
502
  if (--batchDepth > 0) {
497
503
  return;
498
504
  }
505
+ if (batchedComputed) {
506
+ let e = batchedComputed;
507
+ batchedComputed = void 0;
508
+ while (e) {
509
+ const next = e.next;
510
+ e.next = void 0;
511
+ e.flags &= ~8;
512
+ e = next;
513
+ }
514
+ }
499
515
  let error;
500
516
  while (batchedSub) {
501
517
  let e = batchedSub;
@@ -591,7 +607,7 @@ function refreshComputed(computed2) {
591
607
  computed2.flags &= ~2;
592
608
  }
593
609
  }
594
- function removeSub(link, fromComputed = false) {
610
+ function removeSub(link, soft = false) {
595
611
  const { dep, prevSub, nextSub } = link;
596
612
  if (prevSub) {
597
613
  prevSub.nextSub = nextSub;
@@ -604,17 +620,15 @@ function removeSub(link, fromComputed = false) {
604
620
  if (dep.subs === link) {
605
621
  dep.subs = prevSub;
606
622
  }
607
- if (!dep.subs) {
608
- if (dep.computed) {
609
- dep.computed.flags &= ~4;
610
- for (let l = dep.computed.deps; l; l = l.nextDep) {
611
- removeSub(l, true);
612
- }
613
- } else if (dep.map && !fromComputed) {
614
- dep.map.delete(dep.key);
615
- if (!dep.map.size) targetMap.delete(dep.target);
623
+ if (!dep.subs && dep.computed) {
624
+ dep.computed.flags &= ~4;
625
+ for (let l = dep.computed.deps; l; l = l.nextDep) {
626
+ removeSub(l, true);
616
627
  }
617
628
  }
629
+ if (!soft && !--dep.sc && dep.map) {
630
+ dep.map.delete(dep.key);
631
+ }
618
632
  }
619
633
  function removeDep(link) {
620
634
  const { prevDep, nextDep } = link;
@@ -665,9 +679,9 @@ class Dep {
665
679
  this.version = 0;
666
680
  this.activeLink = void 0;
667
681
  this.subs = void 0;
668
- this.target = void 0;
669
682
  this.map = void 0;
670
683
  this.key = void 0;
684
+ this.sc = 0;
671
685
  }
672
686
  track(debugInfo) {
673
687
  if (!activeSub || !shouldTrack || activeSub === this.computed) {
@@ -683,9 +697,7 @@ class Dep {
683
697
  activeSub.depsTail.nextDep = link;
684
698
  activeSub.depsTail = link;
685
699
  }
686
- if (activeSub.flags & 4) {
687
- addSub(link);
688
- }
700
+ addSub(link);
689
701
  } else if (link.version === -1) {
690
702
  link.version = this.version;
691
703
  if (link.nextDep) {
@@ -726,19 +738,22 @@ class Dep {
726
738
  }
727
739
  }
728
740
  function addSub(link) {
729
- const computed2 = link.dep.computed;
730
- if (computed2 && !link.dep.subs) {
731
- computed2.flags |= 4 | 16;
732
- for (let l = computed2.deps; l; l = l.nextDep) {
733
- addSub(l);
741
+ link.dep.sc++;
742
+ if (link.sub.flags & 4) {
743
+ const computed2 = link.dep.computed;
744
+ if (computed2 && !link.dep.subs) {
745
+ computed2.flags |= 4 | 16;
746
+ for (let l = computed2.deps; l; l = l.nextDep) {
747
+ addSub(l);
748
+ }
734
749
  }
750
+ const currentTail = link.dep.subs;
751
+ if (currentTail !== link) {
752
+ link.prevSub = currentTail;
753
+ if (currentTail) currentTail.nextSub = link;
754
+ }
755
+ link.dep.subs = link;
735
756
  }
736
- const currentTail = link.dep.subs;
737
- if (currentTail !== link) {
738
- link.prevSub = currentTail;
739
- if (currentTail) currentTail.nextSub = link;
740
- }
741
- link.dep.subs = link;
742
757
  }
743
758
  const targetMap = /* @__PURE__ */ new WeakMap();
744
759
  const ITERATE_KEY = Symbol(
@@ -759,7 +774,6 @@ function track(target, type, key) {
759
774
  let dep = depsMap.get(key);
760
775
  if (!dep) {
761
776
  depsMap.set(key, dep = new Dep());
762
- dep.target = target;
763
777
  dep.map = depsMap;
764
778
  dep.key = key;
765
779
  }
@@ -1596,6 +1610,7 @@ class ComputedRefImpl {
1596
1610
  this.depsTail = void 0;
1597
1611
  this.flags = 16;
1598
1612
  this.globalVersion = globalVersion - 1;
1613
+ this.next = void 0;
1599
1614
  this.effect = this;
1600
1615
  this["__v_isReadonly"] = !setter;
1601
1616
  this.isSSR = isSSR;
@@ -1607,7 +1622,7 @@ class ComputedRefImpl {
1607
1622
  this.flags |= 16;
1608
1623
  if (!(this.flags & 8) && // avoid infinite self recursion
1609
1624
  activeSub !== this) {
1610
- batch(this);
1625
+ batch(this, true);
1611
1626
  return true;
1612
1627
  }
1613
1628
  }
@@ -1825,7 +1840,7 @@ function traverse(value, depth = Infinity, seen) {
1825
1840
  /* Injected with object hook! */
1826
1841
 
1827
1842
  /**
1828
- * @vue/runtime-core v3.5.7
1843
+ * @vue/runtime-core v3.5.11
1829
1844
  * (c) 2018-present Yuxi (Evan) You and Vue contributors
1830
1845
  * @license MIT
1831
1846
  **/
@@ -1998,10 +2013,8 @@ function logError(err, type, contextVNode, throwInDev = true, throwInProd = fals
1998
2013
  console.error(err);
1999
2014
  }
2000
2015
  }
2001
- let isFlushing = false;
2002
- let isFlushPending = false;
2003
2016
  const queue = [];
2004
- let flushIndex = 0;
2017
+ let flushIndex = -1;
2005
2018
  const pendingPostFlushCbs = [];
2006
2019
  let activePostFlushCbs = null;
2007
2020
  let postFlushIndex = 0;
@@ -2012,7 +2025,7 @@ function nextTick(fn) {
2012
2025
  return fn ? p.then(this ? fn.bind(this) : fn) : p;
2013
2026
  }
2014
2027
  function findInsertionIndex$1(id) {
2015
- let start = isFlushing ? flushIndex + 1 : 0;
2028
+ let start = flushIndex + 1;
2016
2029
  let end = queue.length;
2017
2030
  while (start < end) {
2018
2031
  const middle = start + end >>> 1;
@@ -2041,8 +2054,7 @@ function queueJob(job) {
2041
2054
  }
2042
2055
  }
2043
2056
  function queueFlush() {
2044
- if (!isFlushing && !isFlushPending) {
2045
- isFlushPending = true;
2057
+ if (!currentFlushPromise) {
2046
2058
  currentFlushPromise = resolvedPromise.then(flushJobs);
2047
2059
  }
2048
2060
  }
@@ -2059,7 +2071,7 @@ function queuePostFlushCb(cb) {
2059
2071
  }
2060
2072
  queueFlush();
2061
2073
  }
2062
- function flushPreFlushCbs(instance, seen, i = isFlushing ? flushIndex + 1 : 0) {
2074
+ function flushPreFlushCbs(instance, seen, i = flushIndex + 1) {
2063
2075
  for (; i < queue.length; i++) {
2064
2076
  const cb = queue[i];
2065
2077
  if (cb && cb.flags & 2) {
@@ -2103,8 +2115,6 @@ function flushPostFlushCbs(seen) {
2103
2115
  }
2104
2116
  const getId = (job) => job.id == null ? job.flags & 2 ? -1 : Infinity : job.id;
2105
2117
  function flushJobs(seen) {
2106
- isFlushPending = false;
2107
- isFlushing = true;
2108
2118
  try {
2109
2119
  for (flushIndex = 0; flushIndex < queue.length; flushIndex++) {
2110
2120
  const job = queue[flushIndex];
@@ -2130,10 +2140,9 @@ function flushJobs(seen) {
2130
2140
  job.flags &= ~1;
2131
2141
  }
2132
2142
  }
2133
- flushIndex = 0;
2143
+ flushIndex = -1;
2134
2144
  queue.length = 0;
2135
2145
  flushPostFlushCbs();
2136
- isFlushing = false;
2137
2146
  currentFlushPromise = null;
2138
2147
  if (queue.length || pendingPostFlushCbs.length) {
2139
2148
  flushJobs();
@@ -4732,7 +4741,7 @@ function baseCreateRenderer(options, createHydrationFns) {
4732
4741
  const teleportEnd = el && el[TeleportEndKey];
4733
4742
  return teleportEnd ? hostNextSibling(teleportEnd) : el;
4734
4743
  };
4735
- let isFlushing2 = false;
4744
+ let isFlushing = false;
4736
4745
  const render = (vnode, container, namespace) => {
4737
4746
  if (vnode == null) {
4738
4747
  if (container._vnode) {
@@ -4750,11 +4759,11 @@ function baseCreateRenderer(options, createHydrationFns) {
4750
4759
  );
4751
4760
  }
4752
4761
  container._vnode = vnode;
4753
- if (!isFlushing2) {
4754
- isFlushing2 = true;
4762
+ if (!isFlushing) {
4763
+ isFlushing = true;
4755
4764
  flushPreFlushCbs();
4756
4765
  flushPostFlushCbs();
4757
- isFlushing2 = false;
4766
+ isFlushing = false;
4758
4767
  }
4759
4768
  };
4760
4769
  const internals = {
@@ -5505,7 +5514,7 @@ function normalizeVNode(child) {
5505
5514
  // #3666, avoid reference pollution when reusing vnode
5506
5515
  child.slice()
5507
5516
  );
5508
- } else if (typeof child === "object") {
5517
+ } else if (isVNode(child)) {
5509
5518
  return cloneIfMounted(child);
5510
5519
  } else {
5511
5520
  return createVNode(Text, null, String(child));
@@ -5907,12 +5916,12 @@ function h(type, propsOrChildren, children) {
5907
5916
  return createVNode(type, propsOrChildren, children);
5908
5917
  }
5909
5918
  }
5910
- const version = "3.5.7";
5919
+ const version = "3.5.11";
5911
5920
 
5912
5921
  /* Injected with object hook! */
5913
5922
 
5914
5923
  /**
5915
- * @vue/runtime-dom v3.5.7
5924
+ * @vue/runtime-dom v3.5.11
5916
5925
  * (c) 2018-present Yuxi (Evan) You and Vue contributors
5917
5926
  * @license MIT
5918
5927
  **/
@@ -6258,6 +6267,11 @@ const patchProp = (el, key, prevValue, nextValue, namespace, parentComponent) =>
6258
6267
  if (!el.tagName.includes("-") && (key === "value" || key === "checked" || key === "selected")) {
6259
6268
  patchAttr(el, key, nextValue, isSVG, parentComponent, key !== "value");
6260
6269
  }
6270
+ } else if (
6271
+ // #11081 force set props for possible async custom element
6272
+ el._isVueCE && (/[A-Z]/.test(key) || !isString(nextValue))
6273
+ ) {
6274
+ patchDOMProp(el, camelize(key), nextValue);
6261
6275
  } else {
6262
6276
  if (key === "true-value") {
6263
6277
  el._trueValue = nextValue;
@@ -6298,13 +6312,7 @@ function shouldSetAsProp(el, key, value, isSVG) {
6298
6312
  if (isNativeOn(key) && isString(value)) {
6299
6313
  return false;
6300
6314
  }
6301
- if (key in el) {
6302
- return true;
6303
- }
6304
- if (el._isVueCE && (/[A-Z]/.test(key) || !isString(value))) {
6305
- return true;
6306
- }
6307
- return false;
6315
+ return key in el;
6308
6316
  }
6309
6317
  const getModelAssigner = (vnode) => {
6310
6318
  const fn = vnode.props["onUpdate:modelValue"] || false;
@@ -6410,7 +6418,7 @@ const vModelCheckbox = {
6410
6418
  setChecked(el, binding, vnode);
6411
6419
  }
6412
6420
  };
6413
- function setChecked(el, { value, oldValue }, vnode) {
6421
+ function setChecked(el, { value }, vnode) {
6414
6422
  el._modelValue = value;
6415
6423
  let checked;
6416
6424
  if (isArray$1(value)) {
@@ -8422,31 +8430,31 @@ const routes = [
8422
8430
  {
8423
8431
  path: "/",
8424
8432
  name: "/",
8425
- component: () => __vitePreload(() => import('./index-CaURY-iQ.js'),true?__vite__mapDeps([0,1,2,3]):void 0,import.meta.url)
8433
+ component: () => __vitePreload(() => import('./index-DRy8N1pt.js'),true?__vite__mapDeps([0,1,2,3]):void 0,import.meta.url)
8426
8434
  /* no children */
8427
8435
  },
8428
8436
  {
8429
8437
  path: "/about",
8430
8438
  name: "/about",
8431
- component: () => __vitePreload(() => import('./about-Cb961iZ7.js'),true?__vite__mapDeps([4,1]):void 0,import.meta.url)
8439
+ component: () => __vitePreload(() => import('./about-D9O4oadt.js'),true?__vite__mapDeps([4,1]):void 0,import.meta.url)
8432
8440
  /* no children */
8433
8441
  },
8434
8442
  {
8435
8443
  path: "/categories",
8436
8444
  name: "/categories",
8437
- component: () => __vitePreload(() => import('./categories-sQfB3FdC.js'),true?__vite__mapDeps([5,1]):void 0,import.meta.url)
8445
+ component: () => __vitePreload(() => import('./categories-SKB6lSvM.js'),true?__vite__mapDeps([5,1]):void 0,import.meta.url)
8438
8446
  /* no children */
8439
8447
  },
8440
8448
  {
8441
8449
  path: "/migration",
8442
8450
  name: "/migration",
8443
- component: () => __vitePreload(() => import('./migration-CSZiiXr3.js'),true?__vite__mapDeps([6,2]):void 0,import.meta.url)
8451
+ component: () => __vitePreload(() => import('./migration-Ckc8nT6B.js'),true?__vite__mapDeps([6,2]):void 0,import.meta.url)
8444
8452
  /* no children */
8445
8453
  },
8446
8454
  {
8447
8455
  path: "/tags",
8448
8456
  name: "/tags",
8449
- component: () => __vitePreload(() => import('./tags-BNZ-KRbk.js'),true?__vite__mapDeps([7,1]):void 0,import.meta.url)
8457
+ component: () => __vitePreload(() => import('./tags-D--MSn5m.js'),true?__vite__mapDeps([7,1]):void 0,import.meta.url)
8450
8458
  /* no children */
8451
8459
  }
8452
8460
  ];
@@ -1,6 +1,6 @@
1
- import { g as getAppWindow, d as defineComponent, c as computed, o as openBlock, a as createElementBlock, n as normalizeClass, b as createCommentVNode, r as renderSlot, e as ref, f as onMounted, h as createBaseVNode, i as resolveComponent, j as createBlock, w as withCtx, t as toDisplayString, F as Fragment, k as renderList, l as createTextVNode, m as createVNode, p as pageData, q as toRaw, u as unref, s as frontmatter, v as getWindowProperty, x as getGlobalValaxyProperty, y as activePath, z as devtoolsRouter, A as isStaticMode } from './index-BUdNacqN.js';
1
+ import { g as getAppWindow, d as defineComponent, c as computed, o as openBlock, a as createElementBlock, n as normalizeClass, b as createCommentVNode, r as renderSlot, e as ref, f as onMounted, h as createBaseVNode, i as resolveComponent, j as createBlock, w as withCtx, t as toDisplayString, F as Fragment, k as renderList, l as createTextVNode, m as createVNode, p as pageData, q as toRaw, u as unref, s as frontmatter, v as getWindowProperty, x as getGlobalValaxyProperty, y as activePath, z as devtoolsRouter, A as isStaticMode } from './index-D3oYxIsD.js';
2
2
  import { _ as _export_sfc } from './_plugin-vue_export-helper-DgDhiqFL.js';
3
- import { a as axios, g, M } from './splitpanes.es-D_5miwZj.js';
3
+ import { a as axios, g, M } from './splitpanes.es-Bnf-PNLD.js';
4
4
 
5
5
  const target = getAppWindow();
6
6
  function openInEditor(options = {}) {
@@ -1,5 +1,5 @@
1
- import { d as defineComponent, e as ref, f as onMounted, x as getGlobalValaxyProperty, o as openBlock, j as createBlock, w as withCtx, u as unref, m as createVNode, h as createBaseVNode, a as createElementBlock, k as renderList, F as Fragment, B as withDirectives, C as vModelCheckbox, t as toDisplayString, D as vModelText } from './index-BUdNacqN.js';
2
- import { g, M, a as axios } from './splitpanes.es-D_5miwZj.js';
1
+ import { d as defineComponent, e as ref, f as onMounted, x as getGlobalValaxyProperty, o as openBlock, j as createBlock, w as withCtx, u as unref, m as createVNode, h as createBaseVNode, a as createElementBlock, k as renderList, F as Fragment, B as withDirectives, C as vModelCheckbox, t as toDisplayString, D as vModelText } from './index-D3oYxIsD.js';
2
+ import { g, M, a as axios } from './splitpanes.es-Bnf-PNLD.js';
3
3
 
4
4
  const _hoisted_1 = {
5
5
  class: "h-full",
@@ -1,4 +1,4 @@
1
- import { E as h, o as openBlock, a as createElementBlock, r as renderSlot, G as normalizeStyle } from './index-BUdNacqN.js';
1
+ import { E as h, o as openBlock, a as createElementBlock, r as renderSlot, G as normalizeStyle } from './index-D3oYxIsD.js';
2
2
 
3
3
  function bind(fn, thisArg) {
4
4
  return function wrap() {
@@ -1,5 +1,5 @@
1
1
  import { _ as _export_sfc } from './_plugin-vue_export-helper-DgDhiqFL.js';
2
- import { a as createElementBlock, o as openBlock } from './index-BUdNacqN.js';
2
+ import { a as createElementBlock, o as openBlock } from './index-D3oYxIsD.js';
3
3
 
4
4
  /* unplugin-vue-components disabled */const _sfc_main = {};
5
5
 
@@ -16,7 +16,7 @@
16
16
  document.documentElement.classList.toggle('dark', true)
17
17
  })()
18
18
  </script>
19
- <script type="module" crossorigin src="./assets/index-BUdNacqN.js"></script>
19
+ <script type="module" crossorigin src="./assets/index-D3oYxIsD.js"></script>
20
20
  <link rel="stylesheet" crossorigin href="./assets/index-DphOJtuC.css">
21
21
  </head>
22
22
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@valaxyjs/devtools",
3
3
  "type": "module",
4
- "version": "0.19.12",
4
+ "version": "0.20.0-beta.1",
5
5
  "repository": {
6
6
  "url": "https://github.com/YunYouJun/valaxy"
7
7
  },
@@ -17,7 +17,7 @@
17
17
  "module": "dist/index.mjs",
18
18
  "types": "dist/index.d.ts",
19
19
  "dependencies": {
20
- "@rollup/pluginutils": "^5.1.0",
20
+ "@rollup/pluginutils": "^5.1.2",
21
21
  "axios": "^1.7.7",
22
22
  "body-parser": "^1.20.3",
23
23
  "http-proxy-middleware": "^3.0.2",
@@ -35,7 +35,7 @@
35
35
  "typescript": "^5.6.2",
36
36
  "unbuild": "^2.0.0",
37
37
  "unplugin-vue-router": "^0.10.8",
38
- "vite": "^5.4.7"
38
+ "vite": "^5.4.8"
39
39
  },
40
40
  "scripts": {
41
41
  "build": "rimraf dist && run-s build:*",
@@ -7,53 +7,53 @@ export {}
7
7
  /* prettier-ignore */
8
8
  declare module 'vue' {
9
9
  export interface GlobalComponents {
10
- AGUIAccordion: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.7_typescript@5.6.2_/node_modules/@advjs/gui/client/components/accordion/AGUIAccordion.vue')['default']
11
- AGUIAccordionItem: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.7_typescript@5.6.2_/node_modules/@advjs/gui/client/components/accordion/AGUIAccordionItem.vue')['default']
12
- AGUIApp: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.7_typescript@5.6.2_/node_modules/@advjs/gui/client/components/AGUIApp.vue')['default']
13
- AGUIAssetsExplorer: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.7_typescript@5.6.2_/node_modules/@advjs/gui/client/components/explorer/AGUIAssetsExplorer.vue')['default']
14
- AGUIBreadcrumb: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.7_typescript@5.6.2_/node_modules/@advjs/gui/client/components/breadcrumb/AGUIBreadcrumb.vue')['default']
15
- AGUIButton: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.7_typescript@5.6.2_/node_modules/@advjs/gui/client/components/button/AGUIButton.vue')['default']
16
- AGUICheckbox: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.7_typescript@5.6.2_/node_modules/@advjs/gui/client/components/AGUICheckbox.vue')['default']
17
- AGUIColorPicker: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.7_typescript@5.6.2_/node_modules/@advjs/gui/client/components/AGUIColorPicker.vue')['default']
18
- AGUIContextMenu: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.7_typescript@5.6.2_/node_modules/@advjs/gui/client/components/context-menu/AGUIContextMenu.vue')['default']
19
- AGUIContextMenuItem: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.7_typescript@5.6.2_/node_modules/@advjs/gui/client/components/context-menu/AGUIContextMenuItem.vue')['default']
20
- AGUIDetails: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.7_typescript@5.6.2_/node_modules/@advjs/gui/client/components/AGUIDetails.vue')['default']
21
- AGUIExplorerControls: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.7_typescript@5.6.2_/node_modules/@advjs/gui/client/components/explorer/AGUIExplorerControls.vue')['default']
22
- AGUIFileHandler: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.7_typescript@5.6.2_/node_modules/@advjs/gui/client/components/file/AGUIFileHandler.vue')['default']
23
- AGUIFileItem: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.7_typescript@5.6.2_/node_modules/@advjs/gui/client/components/explorer/AGUIFileItem.vue')['default']
24
- AGUIFileList: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.7_typescript@5.6.2_/node_modules/@advjs/gui/client/components/explorer/AGUIFileList.vue')['default']
25
- AGUIForm: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.7_typescript@5.6.2_/node_modules/@advjs/gui/client/components/form/AGUIForm.vue')['default']
26
- AGUIFormItem: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.7_typescript@5.6.2_/node_modules/@advjs/gui/client/components/form/AGUIFormItem.vue')['default']
27
- AGUIHr: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.7_typescript@5.6.2_/node_modules/@advjs/gui/client/components/common/AGUIHr.vue')['default']
28
- AGUIIcon: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.7_typescript@5.6.2_/node_modules/@advjs/gui/client/components/icon/AGUIIcon.vue')['default']
29
- AGUIIconButton: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.7_typescript@5.6.2_/node_modules/@advjs/gui/client/components/button/AGUIIconButton.vue')['default']
30
- AGUIInnerInput: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.7_typescript@5.6.2_/node_modules/@advjs/gui/client/components/input/AGUIInnerInput.vue')['default']
31
- AGUIInput: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.7_typescript@5.6.2_/node_modules/@advjs/gui/client/components/input/AGUIInput.vue')['default']
32
- AGUIInputNumber: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.7_typescript@5.6.2_/node_modules/@advjs/gui/client/components/input/AGUIInputNumber.vue')['default']
33
- AGUIInputVector: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.7_typescript@5.6.2_/node_modules/@advjs/gui/client/components/input/AGUIInputVector.vue')['default']
34
- AGUILayout: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.7_typescript@5.6.2_/node_modules/@advjs/gui/client/components/layout/AGUILayout.vue')['default']
35
- AGUIMenubar: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.7_typescript@5.6.2_/node_modules/@advjs/gui/client/components/menu/AGUIMenubar.vue')['default']
36
- AGUIMenubarMenu: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.7_typescript@5.6.2_/node_modules/@advjs/gui/client/components/menu/AGUIMenubarMenu.vue')['default']
37
- AGUINumberField: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.7_typescript@5.6.2_/node_modules/@advjs/gui/client/components/AGUINumberField.vue')['default']
38
- AGUINumberSlider: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.7_typescript@5.6.2_/node_modules/@advjs/gui/client/components/AGUINumberSlider.vue')['default']
39
- AGUIOpenDirectory: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.7_typescript@5.6.2_/node_modules/@advjs/gui/client/components/explorer/AGUIOpenDirectory.vue')['default']
40
- AGUIOverlay: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.7_typescript@5.6.2_/node_modules/@advjs/gui/client/components/AGUIOverlay.vue')['default']
41
- AGUIPanel: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.7_typescript@5.6.2_/node_modules/@advjs/gui/client/components/AGUIPanel.vue')['default']
42
- AGUIPropertiesForm: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.7_typescript@5.6.2_/node_modules/@advjs/gui/client/components/panel/AGUIPropertiesForm.vue')['default']
43
- AGUIPropertiesPanel: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.7_typescript@5.6.2_/node_modules/@advjs/gui/client/components/panel/AGUIPropertiesPanel.vue')['default']
44
- AGUIProperty: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.7_typescript@5.6.2_/node_modules/@advjs/gui/client/components/AGUIProperty.vue')['default']
45
- AGUISelect: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.7_typescript@5.6.2_/node_modules/@advjs/gui/client/components/select/AGUISelect.vue')['default']
46
- AGUISlider: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.7_typescript@5.6.2_/node_modules/@advjs/gui/client/components/AGUISlider.vue')['default']
47
- AGUITabPanel: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.7_typescript@5.6.2_/node_modules/@advjs/gui/client/components/tabs/AGUITabPanel.vue')['default']
48
- AGUITabs: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.7_typescript@5.6.2_/node_modules/@advjs/gui/client/components/tabs/AGUITabs.vue')['default']
49
- AGUITextarea: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.7_typescript@5.6.2_/node_modules/@advjs/gui/client/components/textarea/AGUITextarea.vue')['default']
50
- AGUIToast: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.7_typescript@5.6.2_/node_modules/@advjs/gui/client/components/toast/AGUIToast.vue')['default']
51
- AGUIToggleIcon: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.7_typescript@5.6.2_/node_modules/@advjs/gui/client/components/button/AGUIToggleIcon.vue')['default']
52
- AGUIToolbar: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.7_typescript@5.6.2_/node_modules/@advjs/gui/client/components/toolbar/AGUIToolbar.vue')['default']
53
- AGUITree: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.7_typescript@5.6.2_/node_modules/@advjs/gui/client/components/tree/AGUITree.vue')['default']
54
- AGUITreeNode: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.7_typescript@5.6.2_/node_modules/@advjs/gui/client/components/tree/AGUITreeNode.vue')['default']
55
- BIconChevronLeft: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.7_typescript@5.6.2_/node_modules/@advjs/gui/client/components/icons/BIconChevronLeft.vue')['default']
56
- BIconChevronRight: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.7_typescript@5.6.2_/node_modules/@advjs/gui/client/components/icons/BIconChevronRight.vue')['default']
10
+ AGUIAccordion: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.11_typescript@5.6.2_/node_modules/@advjs/gui/client/components/accordion/AGUIAccordion.vue')['default']
11
+ AGUIAccordionItem: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.11_typescript@5.6.2_/node_modules/@advjs/gui/client/components/accordion/AGUIAccordionItem.vue')['default']
12
+ AGUIApp: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.11_typescript@5.6.2_/node_modules/@advjs/gui/client/components/AGUIApp.vue')['default']
13
+ AGUIAssetsExplorer: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.11_typescript@5.6.2_/node_modules/@advjs/gui/client/components/explorer/AGUIAssetsExplorer.vue')['default']
14
+ AGUIBreadcrumb: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.11_typescript@5.6.2_/node_modules/@advjs/gui/client/components/breadcrumb/AGUIBreadcrumb.vue')['default']
15
+ AGUIButton: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.11_typescript@5.6.2_/node_modules/@advjs/gui/client/components/button/AGUIButton.vue')['default']
16
+ AGUICheckbox: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.11_typescript@5.6.2_/node_modules/@advjs/gui/client/components/AGUICheckbox.vue')['default']
17
+ AGUIColorPicker: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.11_typescript@5.6.2_/node_modules/@advjs/gui/client/components/AGUIColorPicker.vue')['default']
18
+ AGUIContextMenu: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.11_typescript@5.6.2_/node_modules/@advjs/gui/client/components/context-menu/AGUIContextMenu.vue')['default']
19
+ AGUIContextMenuItem: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.11_typescript@5.6.2_/node_modules/@advjs/gui/client/components/context-menu/AGUIContextMenuItem.vue')['default']
20
+ AGUIDetails: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.11_typescript@5.6.2_/node_modules/@advjs/gui/client/components/AGUIDetails.vue')['default']
21
+ AGUIExplorerControls: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.11_typescript@5.6.2_/node_modules/@advjs/gui/client/components/explorer/AGUIExplorerControls.vue')['default']
22
+ AGUIFileHandler: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.11_typescript@5.6.2_/node_modules/@advjs/gui/client/components/file/AGUIFileHandler.vue')['default']
23
+ AGUIFileItem: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.11_typescript@5.6.2_/node_modules/@advjs/gui/client/components/explorer/AGUIFileItem.vue')['default']
24
+ AGUIFileList: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.11_typescript@5.6.2_/node_modules/@advjs/gui/client/components/explorer/AGUIFileList.vue')['default']
25
+ AGUIForm: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.11_typescript@5.6.2_/node_modules/@advjs/gui/client/components/form/AGUIForm.vue')['default']
26
+ AGUIFormItem: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.11_typescript@5.6.2_/node_modules/@advjs/gui/client/components/form/AGUIFormItem.vue')['default']
27
+ AGUIHr: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.11_typescript@5.6.2_/node_modules/@advjs/gui/client/components/common/AGUIHr.vue')['default']
28
+ AGUIIcon: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.11_typescript@5.6.2_/node_modules/@advjs/gui/client/components/icon/AGUIIcon.vue')['default']
29
+ AGUIIconButton: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.11_typescript@5.6.2_/node_modules/@advjs/gui/client/components/button/AGUIIconButton.vue')['default']
30
+ AGUIInnerInput: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.11_typescript@5.6.2_/node_modules/@advjs/gui/client/components/input/AGUIInnerInput.vue')['default']
31
+ AGUIInput: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.11_typescript@5.6.2_/node_modules/@advjs/gui/client/components/input/AGUIInput.vue')['default']
32
+ AGUIInputNumber: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.11_typescript@5.6.2_/node_modules/@advjs/gui/client/components/input/AGUIInputNumber.vue')['default']
33
+ AGUIInputVector: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.11_typescript@5.6.2_/node_modules/@advjs/gui/client/components/input/AGUIInputVector.vue')['default']
34
+ AGUILayout: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.11_typescript@5.6.2_/node_modules/@advjs/gui/client/components/layout/AGUILayout.vue')['default']
35
+ AGUIMenubar: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.11_typescript@5.6.2_/node_modules/@advjs/gui/client/components/menu/AGUIMenubar.vue')['default']
36
+ AGUIMenubarMenu: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.11_typescript@5.6.2_/node_modules/@advjs/gui/client/components/menu/AGUIMenubarMenu.vue')['default']
37
+ AGUINumberField: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.11_typescript@5.6.2_/node_modules/@advjs/gui/client/components/AGUINumberField.vue')['default']
38
+ AGUINumberSlider: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.11_typescript@5.6.2_/node_modules/@advjs/gui/client/components/AGUINumberSlider.vue')['default']
39
+ AGUIOpenDirectory: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.11_typescript@5.6.2_/node_modules/@advjs/gui/client/components/explorer/AGUIOpenDirectory.vue')['default']
40
+ AGUIOverlay: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.11_typescript@5.6.2_/node_modules/@advjs/gui/client/components/AGUIOverlay.vue')['default']
41
+ AGUIPanel: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.11_typescript@5.6.2_/node_modules/@advjs/gui/client/components/AGUIPanel.vue')['default']
42
+ AGUIPropertiesForm: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.11_typescript@5.6.2_/node_modules/@advjs/gui/client/components/panel/AGUIPropertiesForm.vue')['default']
43
+ AGUIPropertiesPanel: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.11_typescript@5.6.2_/node_modules/@advjs/gui/client/components/panel/AGUIPropertiesPanel.vue')['default']
44
+ AGUIProperty: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.11_typescript@5.6.2_/node_modules/@advjs/gui/client/components/AGUIProperty.vue')['default']
45
+ AGUISelect: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.11_typescript@5.6.2_/node_modules/@advjs/gui/client/components/select/AGUISelect.vue')['default']
46
+ AGUISlider: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.11_typescript@5.6.2_/node_modules/@advjs/gui/client/components/AGUISlider.vue')['default']
47
+ AGUITabPanel: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.11_typescript@5.6.2_/node_modules/@advjs/gui/client/components/tabs/AGUITabPanel.vue')['default']
48
+ AGUITabs: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.11_typescript@5.6.2_/node_modules/@advjs/gui/client/components/tabs/AGUITabs.vue')['default']
49
+ AGUITextarea: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.11_typescript@5.6.2_/node_modules/@advjs/gui/client/components/textarea/AGUITextarea.vue')['default']
50
+ AGUIToast: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.11_typescript@5.6.2_/node_modules/@advjs/gui/client/components/toast/AGUIToast.vue')['default']
51
+ AGUIToggleIcon: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.11_typescript@5.6.2_/node_modules/@advjs/gui/client/components/button/AGUIToggleIcon.vue')['default']
52
+ AGUIToolbar: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.11_typescript@5.6.2_/node_modules/@advjs/gui/client/components/toolbar/AGUIToolbar.vue')['default']
53
+ AGUITree: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.11_typescript@5.6.2_/node_modules/@advjs/gui/client/components/tree/AGUITree.vue')['default']
54
+ AGUITreeNode: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.11_typescript@5.6.2_/node_modules/@advjs/gui/client/components/tree/AGUITreeNode.vue')['default']
55
+ BIconChevronLeft: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.11_typescript@5.6.2_/node_modules/@advjs/gui/client/components/icons/BIconChevronLeft.vue')['default']
56
+ BIconChevronRight: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.11_typescript@5.6.2_/node_modules/@advjs/gui/client/components/icons/BIconChevronRight.vue')['default']
57
57
  PageFrontmatter: typeof import('./components/PageFrontmatter.vue')['default']
58
58
  PostPanel: typeof import('./components/PostPanel.vue')['default']
59
59
  RouterLink: typeof import('vue-router')['RouterLink']