@valaxyjs/devtools 0.19.6 → 0.19.8

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 { o as openBlock, a as createElementBlock } from './index-CPK49_y2.js';
2
+ import { o as openBlock, a as createElementBlock } from './index-B1KXxAEg.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 { o as openBlock, a as createElementBlock } from './index-CPK49_y2.js';
2
+ import { o as openBlock, a as createElementBlock } from './index-B1KXxAEg.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-BnannfxL.js","./_plugin-vue_export-helper-DgDhiqFL.js","./splitpanes.es-tsc-z8w6.js","./index-DF84L4of.css","./about-OznFGoV6.js","./categories-Dof0ZrYR.js","./migration-BvfMdnj6.js","./tags-BIEb0ZZ9.js"])))=>i.map(i=>d[i]);
1
+ const __vite__mapDeps=(i,m=__vite__mapDeps,d=(m.f||(m.f=["./index-CN4D-pyL.js","./_plugin-vue_export-helper-DgDhiqFL.js","./splitpanes.es-CS1Tksze.js","./index-DF84L4of.css","./about-GOQp0_NO.js","./categories-B9cCje3e.js","./migration-CFDlazxl.js","./tags-M0cV8ng9.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.4.35
42
+ * @vue/shared v3.4.38
43
43
  * (c) 2018-present Yuxi (Evan) You and Vue contributors
44
44
  * @license MIT
45
45
  **/
@@ -278,7 +278,7 @@ const stringifySymbol = (v, i = "") => {
278
278
  /* Injected with object hook! */
279
279
 
280
280
  /**
281
- * @vue/reactivity v3.4.35
281
+ * @vue/reactivity v3.4.38
282
282
  * (c) 2018-present Yuxi (Evan) You and Vue contributors
283
283
  * @license MIT
284
284
  **/
@@ -637,7 +637,7 @@ class BaseReactiveHandler {
637
637
  return isShallow2;
638
638
  } else if (key === "__v_raw") {
639
639
  if (receiver === (isReadonly2 ? isShallow2 ? shallowReadonlyMap : readonlyMap : isShallow2 ? shallowReactiveMap : reactiveMap).get(target) || // receiver is not the reactive proxy, but has the same prototype
640
- // this means the reciever is a user proxy of the reactive proxy
640
+ // this means the receiver is a user proxy of the reactive proxy
641
641
  Object.getPrototypeOf(target) === Object.getPrototypeOf(receiver)) {
642
642
  return target;
643
643
  }
@@ -1256,7 +1256,7 @@ function proxyRefs(objectWithRefs) {
1256
1256
  /* Injected with object hook! */
1257
1257
 
1258
1258
  /**
1259
- * @vue/runtime-core v3.4.35
1259
+ * @vue/runtime-core v3.4.38
1260
1260
  * (c) 2018-present Yuxi (Evan) You and Vue contributors
1261
1261
  * @license MIT
1262
1262
  **/
@@ -2450,7 +2450,7 @@ function provide(key, value) {
2450
2450
  function inject(key, defaultValue, treatDefaultAsFactory = false) {
2451
2451
  const instance = currentInstance || currentRenderingInstance;
2452
2452
  if (instance || currentApp) {
2453
- const provides = instance ? instance.parent == null ? instance.vnode.appContext && instance.vnode.appContext.provides : instance.parent.provides : currentApp._context.provides;
2453
+ const provides = currentApp ? currentApp._context.provides : instance ? instance.parent == null ? instance.vnode.appContext && instance.vnode.appContext.provides : instance.parent.provides : void 0;
2454
2454
  if (provides && key in provides) {
2455
2455
  return provides[key];
2456
2456
  } else if (arguments.length > 1) {
@@ -4132,13 +4132,13 @@ function baseCreateRenderer(options, createHydrationFns) {
4132
4132
  namespace
4133
4133
  );
4134
4134
  }
4135
+ container._vnode = vnode;
4135
4136
  if (!isFlushing2) {
4136
4137
  isFlushing2 = true;
4137
4138
  flushPreFlushCbs();
4138
4139
  flushPostFlushCbs();
4139
4140
  isFlushing2 = false;
4140
4141
  }
4141
- container._vnode = vnode;
4142
4142
  };
4143
4143
  const internals = {
4144
4144
  p: patch,
@@ -5410,12 +5410,12 @@ function h(type, propsOrChildren, children) {
5410
5410
  return createVNode(type, propsOrChildren, children);
5411
5411
  }
5412
5412
  }
5413
- const version = "3.4.35";
5413
+ const version = "3.4.38";
5414
5414
 
5415
5415
  /* Injected with object hook! */
5416
5416
 
5417
5417
  /**
5418
- * @vue/runtime-dom v3.4.35
5418
+ * @vue/runtime-dom v3.4.38
5419
5419
  * (c) 2018-present Yuxi (Evan) You and Vue contributors
5420
5420
  * @license MIT
5421
5421
  **/
@@ -5950,7 +5950,7 @@ function normalizeContainer(container) {
5950
5950
  /* Injected with object hook! */
5951
5951
 
5952
5952
  /*!
5953
- * vue-router v4.4.2
5953
+ * vue-router v4.4.3
5954
5954
  * (c) 2024 Eduardo San Martin Morote
5955
5955
  * @license MIT
5956
5956
  */
@@ -7861,7 +7861,9 @@ const scriptRel = 'modulepreload';const assetsURL = function(dep, importerUrl) {
7861
7861
  );
7862
7862
  }
7863
7863
  return promise.then(() => baseModule()).catch((err) => {
7864
- const e = new Event("vite:preloadError", { cancelable: true });
7864
+ const e = new Event("vite:preloadError", {
7865
+ cancelable: true
7866
+ });
7865
7867
  e.payload = err;
7866
7868
  window.dispatchEvent(e);
7867
7869
  if (!e.defaultPrevented) {
@@ -7875,31 +7877,31 @@ const routes = [
7875
7877
  {
7876
7878
  path: "/",
7877
7879
  name: "/",
7878
- component: () => __vitePreload(() => import('./index-BnannfxL.js'),true?__vite__mapDeps([0,1,2,3]):void 0,import.meta.url)
7880
+ component: () => __vitePreload(() => import('./index-CN4D-pyL.js'),true?__vite__mapDeps([0,1,2,3]):void 0,import.meta.url)
7879
7881
  /* no children */
7880
7882
  },
7881
7883
  {
7882
7884
  path: "/about",
7883
7885
  name: "/about",
7884
- component: () => __vitePreload(() => import('./about-OznFGoV6.js'),true?__vite__mapDeps([4,1]):void 0,import.meta.url)
7886
+ component: () => __vitePreload(() => import('./about-GOQp0_NO.js'),true?__vite__mapDeps([4,1]):void 0,import.meta.url)
7885
7887
  /* no children */
7886
7888
  },
7887
7889
  {
7888
7890
  path: "/categories",
7889
7891
  name: "/categories",
7890
- component: () => __vitePreload(() => import('./categories-Dof0ZrYR.js'),true?__vite__mapDeps([5,1]):void 0,import.meta.url)
7892
+ component: () => __vitePreload(() => import('./categories-B9cCje3e.js'),true?__vite__mapDeps([5,1]):void 0,import.meta.url)
7891
7893
  /* no children */
7892
7894
  },
7893
7895
  {
7894
7896
  path: "/migration",
7895
7897
  name: "/migration",
7896
- component: () => __vitePreload(() => import('./migration-BvfMdnj6.js'),true?__vite__mapDeps([6,2]):void 0,import.meta.url)
7898
+ component: () => __vitePreload(() => import('./migration-CFDlazxl.js'),true?__vite__mapDeps([6,2]):void 0,import.meta.url)
7897
7899
  /* no children */
7898
7900
  },
7899
7901
  {
7900
7902
  path: "/tags",
7901
7903
  name: "/tags",
7902
- component: () => __vitePreload(() => import('./tags-BIEb0ZZ9.js'),true?__vite__mapDeps([7,1]):void 0,import.meta.url)
7904
+ component: () => __vitePreload(() => import('./tags-M0cV8ng9.js'),true?__vite__mapDeps([7,1]):void 0,import.meta.url)
7903
7905
  /* no children */
7904
7906
  }
7905
7907
  ];
@@ -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-CPK49_y2.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-B1KXxAEg.js';
2
2
  import { _ as _export_sfc } from './_plugin-vue_export-helper-DgDhiqFL.js';
3
- import { a as axios, g, M } from './splitpanes.es-tsc-z8w6.js';
3
+ import { a as axios, g, M } from './splitpanes.es-CS1Tksze.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-CPK49_y2.js';
2
- import { g, M, a as axios } from './splitpanes.es-tsc-z8w6.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-B1KXxAEg.js';
2
+ import { g, M, a as axios } from './splitpanes.es-CS1Tksze.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-CPK49_y2.js';
1
+ import { E as h, o as openBlock, a as createElementBlock, r as renderSlot, G as normalizeStyle } from './index-B1KXxAEg.js';
2
2
 
3
3
  function bind(fn, thisArg) {
4
4
  return function wrap() {
@@ -3185,7 +3185,7 @@ function dispatchRequest(config) {
3185
3185
 
3186
3186
  /* Injected with object hook! */
3187
3187
 
3188
- const VERSION = "1.7.3";
3188
+ const VERSION = "1.7.4";
3189
3189
  /* Injected with object hook! */
3190
3190
 
3191
3191
  const validators$1 = {};
@@ -1,5 +1,5 @@
1
1
  import { _ as _export_sfc } from './_plugin-vue_export-helper-DgDhiqFL.js';
2
- import { o as openBlock, a as createElementBlock } from './index-CPK49_y2.js';
2
+ import { o as openBlock, a as createElementBlock } from './index-B1KXxAEg.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-CPK49_y2.js"></script>
19
+ <script type="module" crossorigin src="./assets/index-B1KXxAEg.js"></script>
20
20
  <link rel="stylesheet" crossorigin href="./assets/index-DzN-2s1X.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.6",
4
+ "version": "0.19.8",
5
5
  "repository": {
6
6
  "url": "https://github.com/YunYouJun/valaxy"
7
7
  },
@@ -18,7 +18,7 @@
18
18
  "types": "dist/index.d.ts",
19
19
  "dependencies": {
20
20
  "@rollup/pluginutils": "^5.1.0",
21
- "axios": "^1.7.3",
21
+ "axios": "^1.7.4",
22
22
  "body-parser": "^1.20.2",
23
23
  "http-proxy-middleware": "^3.0.0",
24
24
  "js-yaml": "^4.1.0",
@@ -27,15 +27,15 @@
27
27
  },
28
28
  "devDependencies": {
29
29
  "@advjs/gui": "0.0.7-beta.1",
30
- "@iconify-json/ri": "^1.1.21",
30
+ "@iconify-json/ri": "^1.1.22",
31
31
  "@types/body-parser": "^1.19.5",
32
32
  "@types/splitpanes": "^2.2.6",
33
33
  "gray-matter": "^4.0.3",
34
34
  "splitpanes": "^3.1.5",
35
35
  "typescript": "^5.5.4",
36
36
  "unbuild": "^2.0.0",
37
- "unplugin-vue-router": "^0.10.2",
38
- "vite": "^5.3.5"
37
+ "unplugin-vue-router": "^0.10.7",
38
+ "vite": "^5.4.1"
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.4.35_typescript@5.5.4_/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.4.35_typescript@5.5.4_/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.4.35_typescript@5.5.4_/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.4.35_typescript@5.5.4_/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.4.35_typescript@5.5.4_/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.4.35_typescript@5.5.4_/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.4.35_typescript@5.5.4_/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.4.35_typescript@5.5.4_/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.4.35_typescript@5.5.4_/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.4.35_typescript@5.5.4_/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.4.35_typescript@5.5.4_/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.4.35_typescript@5.5.4_/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.4.35_typescript@5.5.4_/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.4.35_typescript@5.5.4_/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.4.35_typescript@5.5.4_/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.4.35_typescript@5.5.4_/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.4.35_typescript@5.5.4_/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.4.35_typescript@5.5.4_/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.4.35_typescript@5.5.4_/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.4.35_typescript@5.5.4_/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.4.35_typescript@5.5.4_/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.4.35_typescript@5.5.4_/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.4.35_typescript@5.5.4_/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.4.35_typescript@5.5.4_/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.4.35_typescript@5.5.4_/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.4.35_typescript@5.5.4_/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.4.35_typescript@5.5.4_/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.4.35_typescript@5.5.4_/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.4.35_typescript@5.5.4_/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.4.35_typescript@5.5.4_/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.4.35_typescript@5.5.4_/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.4.35_typescript@5.5.4_/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.4.35_typescript@5.5.4_/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.4.35_typescript@5.5.4_/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.4.35_typescript@5.5.4_/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.4.35_typescript@5.5.4_/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.4.35_typescript@5.5.4_/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.4.35_typescript@5.5.4_/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.4.35_typescript@5.5.4_/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.4.35_typescript@5.5.4_/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.4.35_typescript@5.5.4_/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.4.35_typescript@5.5.4_/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.4.35_typescript@5.5.4_/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.4.35_typescript@5.5.4_/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.4.35_typescript@5.5.4_/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.4.35_typescript@5.5.4_/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.4.35_typescript@5.5.4_/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.4.38_typescript@5.5.4_/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.4.38_typescript@5.5.4_/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.4.38_typescript@5.5.4_/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.4.38_typescript@5.5.4_/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.4.38_typescript@5.5.4_/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.4.38_typescript@5.5.4_/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.4.38_typescript@5.5.4_/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.4.38_typescript@5.5.4_/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.4.38_typescript@5.5.4_/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.4.38_typescript@5.5.4_/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.4.38_typescript@5.5.4_/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.4.38_typescript@5.5.4_/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.4.38_typescript@5.5.4_/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.4.38_typescript@5.5.4_/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.4.38_typescript@5.5.4_/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.4.38_typescript@5.5.4_/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.4.38_typescript@5.5.4_/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.4.38_typescript@5.5.4_/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.4.38_typescript@5.5.4_/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.4.38_typescript@5.5.4_/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.4.38_typescript@5.5.4_/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.4.38_typescript@5.5.4_/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.4.38_typescript@5.5.4_/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.4.38_typescript@5.5.4_/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.4.38_typescript@5.5.4_/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.4.38_typescript@5.5.4_/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.4.38_typescript@5.5.4_/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.4.38_typescript@5.5.4_/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.4.38_typescript@5.5.4_/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.4.38_typescript@5.5.4_/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.4.38_typescript@5.5.4_/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.4.38_typescript@5.5.4_/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.4.38_typescript@5.5.4_/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.4.38_typescript@5.5.4_/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.4.38_typescript@5.5.4_/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.4.38_typescript@5.5.4_/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.4.38_typescript@5.5.4_/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.4.38_typescript@5.5.4_/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.4.38_typescript@5.5.4_/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.4.38_typescript@5.5.4_/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.4.38_typescript@5.5.4_/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.4.38_typescript@5.5.4_/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.4.38_typescript@5.5.4_/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.4.38_typescript@5.5.4_/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.4.38_typescript@5.5.4_/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.4.38_typescript@5.5.4_/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.4.38_typescript@5.5.4_/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']