@valaxyjs/devtools 0.19.12 → 0.19.13

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-2rGc1_3m.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-2rGc1_3m.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-St96CNy3.js","./_plugin-vue_export-helper-DgDhiqFL.js","./splitpanes.es-C2vqJ7Dd.js","./index-DF84L4of.css","./about-KxQQ0J3i.js","./categories-BJDhqvJ_.js","./migration-BqJrSlZu.js","./tags-j5q0INtW.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.10
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.10
287
287
  * (c) 2018-present Yuxi (Evan) You and Vue contributors
288
288
  * @license MIT
289
289
  **/
@@ -499,9 +499,17 @@ function endBatch() {
499
499
  let error;
500
500
  while (batchedSub) {
501
501
  let e = batchedSub;
502
+ let next;
503
+ while (e) {
504
+ if (!(e.flags & 1)) {
505
+ e.flags &= ~8;
506
+ }
507
+ e = e.next;
508
+ }
509
+ e = batchedSub;
502
510
  batchedSub = void 0;
503
511
  while (e) {
504
- const next = e.next;
512
+ next = e.next;
505
513
  e.next = void 0;
506
514
  e.flags &= ~8;
507
515
  if (e.flags & 1) {
@@ -591,7 +599,7 @@ function refreshComputed(computed2) {
591
599
  computed2.flags &= ~2;
592
600
  }
593
601
  }
594
- function removeSub(link, fromComputed = false) {
602
+ function removeSub(link, soft = false) {
595
603
  const { dep, prevSub, nextSub } = link;
596
604
  if (prevSub) {
597
605
  prevSub.nextSub = nextSub;
@@ -604,17 +612,15 @@ function removeSub(link, fromComputed = false) {
604
612
  if (dep.subs === link) {
605
613
  dep.subs = prevSub;
606
614
  }
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);
615
+ if (!dep.subs && dep.computed) {
616
+ dep.computed.flags &= ~4;
617
+ for (let l = dep.computed.deps; l; l = l.nextDep) {
618
+ removeSub(l, true);
616
619
  }
617
620
  }
621
+ if (!soft && !--dep.sc && dep.map) {
622
+ dep.map.delete(dep.key);
623
+ }
618
624
  }
619
625
  function removeDep(link) {
620
626
  const { prevDep, nextDep } = link;
@@ -668,6 +674,7 @@ class Dep {
668
674
  this.target = void 0;
669
675
  this.map = void 0;
670
676
  this.key = void 0;
677
+ this.sc = 0;
671
678
  }
672
679
  track(debugInfo) {
673
680
  if (!activeSub || !shouldTrack || activeSub === this.computed) {
@@ -683,9 +690,7 @@ class Dep {
683
690
  activeSub.depsTail.nextDep = link;
684
691
  activeSub.depsTail = link;
685
692
  }
686
- if (activeSub.flags & 4) {
687
- addSub(link);
688
- }
693
+ addSub(link);
689
694
  } else if (link.version === -1) {
690
695
  link.version = this.version;
691
696
  if (link.nextDep) {
@@ -726,19 +731,22 @@ class Dep {
726
731
  }
727
732
  }
728
733
  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);
734
+ link.dep.sc++;
735
+ if (link.sub.flags & 4) {
736
+ const computed2 = link.dep.computed;
737
+ if (computed2 && !link.dep.subs) {
738
+ computed2.flags |= 4 | 16;
739
+ for (let l = computed2.deps; l; l = l.nextDep) {
740
+ addSub(l);
741
+ }
734
742
  }
743
+ const currentTail = link.dep.subs;
744
+ if (currentTail !== link) {
745
+ link.prevSub = currentTail;
746
+ if (currentTail) currentTail.nextSub = link;
747
+ }
748
+ link.dep.subs = link;
735
749
  }
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
750
  }
743
751
  const targetMap = /* @__PURE__ */ new WeakMap();
744
752
  const ITERATE_KEY = Symbol(
@@ -1596,6 +1604,7 @@ class ComputedRefImpl {
1596
1604
  this.depsTail = void 0;
1597
1605
  this.flags = 16;
1598
1606
  this.globalVersion = globalVersion - 1;
1607
+ this.next = void 0;
1599
1608
  this.effect = this;
1600
1609
  this["__v_isReadonly"] = !setter;
1601
1610
  this.isSSR = isSSR;
@@ -1825,7 +1834,7 @@ function traverse(value, depth = Infinity, seen) {
1825
1834
  /* Injected with object hook! */
1826
1835
 
1827
1836
  /**
1828
- * @vue/runtime-core v3.5.7
1837
+ * @vue/runtime-core v3.5.10
1829
1838
  * (c) 2018-present Yuxi (Evan) You and Vue contributors
1830
1839
  * @license MIT
1831
1840
  **/
@@ -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.10";
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.10
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-St96CNy3.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-KxQQ0J3i.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-BJDhqvJ_.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-BqJrSlZu.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-j5q0INtW.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-2rGc1_3m.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-C2vqJ7Dd.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-2rGc1_3m.js';
2
+ import { g, M, a as axios } from './splitpanes.es-C2vqJ7Dd.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-2rGc1_3m.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-2rGc1_3m.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-2rGc1_3m.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.19.13",
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.10_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.10_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.10_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.10_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.10_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.10_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.10_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.10_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.10_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.10_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.10_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.10_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.10_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.10_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.10_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.10_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.10_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.10_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.10_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.10_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.10_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.10_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.10_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.10_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.10_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.10_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.10_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.10_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.10_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.10_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.10_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.10_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.10_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.10_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.10_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.10_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.10_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.10_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.10_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.10_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.10_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.10_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.10_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.10_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.10_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.10_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.10_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']