@valaxyjs/devtools 0.19.13 → 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.
- package/dist/client/assets/{about-KxQQ0J3i.js → about-D9O4oadt.js} +1 -1
- package/dist/client/assets/{categories-BJDhqvJ_.js → categories-SKB6lSvM.js} +1 -1
- package/dist/client/assets/{index-2rGc1_3m.js → index-D3oYxIsD.js} +39 -39
- package/dist/client/assets/{index-St96CNy3.js → index-DRy8N1pt.js} +2 -2
- package/dist/client/assets/{migration-BqJrSlZu.js → migration-Ckc8nT6B.js} +2 -2
- package/dist/client/assets/{splitpanes.es-C2vqJ7Dd.js → splitpanes.es-Bnf-PNLD.js} +1 -1
- package/dist/client/assets/{tags-j5q0INtW.js → tags-D--MSn5m.js} +1 -1
- package/dist/client/index.html +1 -1
- package/package.json +1 -1
- package/src/client/components.d.ts +47 -47
|
@@ -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-
|
|
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-
|
|
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-
|
|
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.
|
|
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.
|
|
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
|
-
|
|
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,20 +502,22 @@ 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;
|
|
502
|
-
let next;
|
|
503
|
-
while (e) {
|
|
504
|
-
if (!(e.flags & 1)) {
|
|
505
|
-
e.flags &= ~8;
|
|
506
|
-
}
|
|
507
|
-
e = e.next;
|
|
508
|
-
}
|
|
509
|
-
e = batchedSub;
|
|
510
518
|
batchedSub = void 0;
|
|
511
519
|
while (e) {
|
|
512
|
-
next = e.next;
|
|
520
|
+
const next = e.next;
|
|
513
521
|
e.next = void 0;
|
|
514
522
|
e.flags &= ~8;
|
|
515
523
|
if (e.flags & 1) {
|
|
@@ -671,7 +679,6 @@ class Dep {
|
|
|
671
679
|
this.version = 0;
|
|
672
680
|
this.activeLink = void 0;
|
|
673
681
|
this.subs = void 0;
|
|
674
|
-
this.target = void 0;
|
|
675
682
|
this.map = void 0;
|
|
676
683
|
this.key = void 0;
|
|
677
684
|
this.sc = 0;
|
|
@@ -767,7 +774,6 @@ function track(target, type, key) {
|
|
|
767
774
|
let dep = depsMap.get(key);
|
|
768
775
|
if (!dep) {
|
|
769
776
|
depsMap.set(key, dep = new Dep());
|
|
770
|
-
dep.target = target;
|
|
771
777
|
dep.map = depsMap;
|
|
772
778
|
dep.key = key;
|
|
773
779
|
}
|
|
@@ -1616,7 +1622,7 @@ class ComputedRefImpl {
|
|
|
1616
1622
|
this.flags |= 16;
|
|
1617
1623
|
if (!(this.flags & 8) && // avoid infinite self recursion
|
|
1618
1624
|
activeSub !== this) {
|
|
1619
|
-
batch(this);
|
|
1625
|
+
batch(this, true);
|
|
1620
1626
|
return true;
|
|
1621
1627
|
}
|
|
1622
1628
|
}
|
|
@@ -1834,7 +1840,7 @@ function traverse(value, depth = Infinity, seen) {
|
|
|
1834
1840
|
/* Injected with object hook! */
|
|
1835
1841
|
|
|
1836
1842
|
/**
|
|
1837
|
-
* @vue/runtime-core v3.5.
|
|
1843
|
+
* @vue/runtime-core v3.5.11
|
|
1838
1844
|
* (c) 2018-present Yuxi (Evan) You and Vue contributors
|
|
1839
1845
|
* @license MIT
|
|
1840
1846
|
**/
|
|
@@ -2007,10 +2013,8 @@ function logError(err, type, contextVNode, throwInDev = true, throwInProd = fals
|
|
|
2007
2013
|
console.error(err);
|
|
2008
2014
|
}
|
|
2009
2015
|
}
|
|
2010
|
-
let isFlushing = false;
|
|
2011
|
-
let isFlushPending = false;
|
|
2012
2016
|
const queue = [];
|
|
2013
|
-
let flushIndex =
|
|
2017
|
+
let flushIndex = -1;
|
|
2014
2018
|
const pendingPostFlushCbs = [];
|
|
2015
2019
|
let activePostFlushCbs = null;
|
|
2016
2020
|
let postFlushIndex = 0;
|
|
@@ -2021,7 +2025,7 @@ function nextTick(fn) {
|
|
|
2021
2025
|
return fn ? p.then(this ? fn.bind(this) : fn) : p;
|
|
2022
2026
|
}
|
|
2023
2027
|
function findInsertionIndex$1(id) {
|
|
2024
|
-
let start =
|
|
2028
|
+
let start = flushIndex + 1;
|
|
2025
2029
|
let end = queue.length;
|
|
2026
2030
|
while (start < end) {
|
|
2027
2031
|
const middle = start + end >>> 1;
|
|
@@ -2050,8 +2054,7 @@ function queueJob(job) {
|
|
|
2050
2054
|
}
|
|
2051
2055
|
}
|
|
2052
2056
|
function queueFlush() {
|
|
2053
|
-
if (!
|
|
2054
|
-
isFlushPending = true;
|
|
2057
|
+
if (!currentFlushPromise) {
|
|
2055
2058
|
currentFlushPromise = resolvedPromise.then(flushJobs);
|
|
2056
2059
|
}
|
|
2057
2060
|
}
|
|
@@ -2068,7 +2071,7 @@ function queuePostFlushCb(cb) {
|
|
|
2068
2071
|
}
|
|
2069
2072
|
queueFlush();
|
|
2070
2073
|
}
|
|
2071
|
-
function flushPreFlushCbs(instance, seen, i =
|
|
2074
|
+
function flushPreFlushCbs(instance, seen, i = flushIndex + 1) {
|
|
2072
2075
|
for (; i < queue.length; i++) {
|
|
2073
2076
|
const cb = queue[i];
|
|
2074
2077
|
if (cb && cb.flags & 2) {
|
|
@@ -2112,8 +2115,6 @@ function flushPostFlushCbs(seen) {
|
|
|
2112
2115
|
}
|
|
2113
2116
|
const getId = (job) => job.id == null ? job.flags & 2 ? -1 : Infinity : job.id;
|
|
2114
2117
|
function flushJobs(seen) {
|
|
2115
|
-
isFlushPending = false;
|
|
2116
|
-
isFlushing = true;
|
|
2117
2118
|
try {
|
|
2118
2119
|
for (flushIndex = 0; flushIndex < queue.length; flushIndex++) {
|
|
2119
2120
|
const job = queue[flushIndex];
|
|
@@ -2139,10 +2140,9 @@ function flushJobs(seen) {
|
|
|
2139
2140
|
job.flags &= ~1;
|
|
2140
2141
|
}
|
|
2141
2142
|
}
|
|
2142
|
-
flushIndex =
|
|
2143
|
+
flushIndex = -1;
|
|
2143
2144
|
queue.length = 0;
|
|
2144
2145
|
flushPostFlushCbs();
|
|
2145
|
-
isFlushing = false;
|
|
2146
2146
|
currentFlushPromise = null;
|
|
2147
2147
|
if (queue.length || pendingPostFlushCbs.length) {
|
|
2148
2148
|
flushJobs();
|
|
@@ -4741,7 +4741,7 @@ function baseCreateRenderer(options, createHydrationFns) {
|
|
|
4741
4741
|
const teleportEnd = el && el[TeleportEndKey];
|
|
4742
4742
|
return teleportEnd ? hostNextSibling(teleportEnd) : el;
|
|
4743
4743
|
};
|
|
4744
|
-
let
|
|
4744
|
+
let isFlushing = false;
|
|
4745
4745
|
const render = (vnode, container, namespace) => {
|
|
4746
4746
|
if (vnode == null) {
|
|
4747
4747
|
if (container._vnode) {
|
|
@@ -4759,11 +4759,11 @@ function baseCreateRenderer(options, createHydrationFns) {
|
|
|
4759
4759
|
);
|
|
4760
4760
|
}
|
|
4761
4761
|
container._vnode = vnode;
|
|
4762
|
-
if (!
|
|
4763
|
-
|
|
4762
|
+
if (!isFlushing) {
|
|
4763
|
+
isFlushing = true;
|
|
4764
4764
|
flushPreFlushCbs();
|
|
4765
4765
|
flushPostFlushCbs();
|
|
4766
|
-
|
|
4766
|
+
isFlushing = false;
|
|
4767
4767
|
}
|
|
4768
4768
|
};
|
|
4769
4769
|
const internals = {
|
|
@@ -5916,12 +5916,12 @@ function h(type, propsOrChildren, children) {
|
|
|
5916
5916
|
return createVNode(type, propsOrChildren, children);
|
|
5917
5917
|
}
|
|
5918
5918
|
}
|
|
5919
|
-
const version = "3.5.
|
|
5919
|
+
const version = "3.5.11";
|
|
5920
5920
|
|
|
5921
5921
|
/* Injected with object hook! */
|
|
5922
5922
|
|
|
5923
5923
|
/**
|
|
5924
|
-
* @vue/runtime-dom v3.5.
|
|
5924
|
+
* @vue/runtime-dom v3.5.11
|
|
5925
5925
|
* (c) 2018-present Yuxi (Evan) You and Vue contributors
|
|
5926
5926
|
* @license MIT
|
|
5927
5927
|
**/
|
|
@@ -8430,31 +8430,31 @@ const routes = [
|
|
|
8430
8430
|
{
|
|
8431
8431
|
path: "/",
|
|
8432
8432
|
name: "/",
|
|
8433
|
-
component: () => __vitePreload(() => import('./index-
|
|
8433
|
+
component: () => __vitePreload(() => import('./index-DRy8N1pt.js'),true?__vite__mapDeps([0,1,2,3]):void 0,import.meta.url)
|
|
8434
8434
|
/* no children */
|
|
8435
8435
|
},
|
|
8436
8436
|
{
|
|
8437
8437
|
path: "/about",
|
|
8438
8438
|
name: "/about",
|
|
8439
|
-
component: () => __vitePreload(() => import('./about-
|
|
8439
|
+
component: () => __vitePreload(() => import('./about-D9O4oadt.js'),true?__vite__mapDeps([4,1]):void 0,import.meta.url)
|
|
8440
8440
|
/* no children */
|
|
8441
8441
|
},
|
|
8442
8442
|
{
|
|
8443
8443
|
path: "/categories",
|
|
8444
8444
|
name: "/categories",
|
|
8445
|
-
component: () => __vitePreload(() => import('./categories-
|
|
8445
|
+
component: () => __vitePreload(() => import('./categories-SKB6lSvM.js'),true?__vite__mapDeps([5,1]):void 0,import.meta.url)
|
|
8446
8446
|
/* no children */
|
|
8447
8447
|
},
|
|
8448
8448
|
{
|
|
8449
8449
|
path: "/migration",
|
|
8450
8450
|
name: "/migration",
|
|
8451
|
-
component: () => __vitePreload(() => import('./migration-
|
|
8451
|
+
component: () => __vitePreload(() => import('./migration-Ckc8nT6B.js'),true?__vite__mapDeps([6,2]):void 0,import.meta.url)
|
|
8452
8452
|
/* no children */
|
|
8453
8453
|
},
|
|
8454
8454
|
{
|
|
8455
8455
|
path: "/tags",
|
|
8456
8456
|
name: "/tags",
|
|
8457
|
-
component: () => __vitePreload(() => import('./tags-
|
|
8457
|
+
component: () => __vitePreload(() => import('./tags-D--MSn5m.js'),true?__vite__mapDeps([7,1]):void 0,import.meta.url)
|
|
8458
8458
|
/* no children */
|
|
8459
8459
|
}
|
|
8460
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-
|
|
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-
|
|
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-
|
|
2
|
-
import { g, M, a as axios } from './splitpanes.es-
|
|
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-
|
|
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-
|
|
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
|
|
package/dist/client/index.html
CHANGED
|
@@ -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-
|
|
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
|
@@ -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.
|
|
11
|
-
AGUIAccordionItem: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.
|
|
12
|
-
AGUIApp: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.
|
|
13
|
-
AGUIAssetsExplorer: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.
|
|
14
|
-
AGUIBreadcrumb: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.
|
|
15
|
-
AGUIButton: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.
|
|
16
|
-
AGUICheckbox: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.
|
|
17
|
-
AGUIColorPicker: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.
|
|
18
|
-
AGUIContextMenu: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.
|
|
19
|
-
AGUIContextMenuItem: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.
|
|
20
|
-
AGUIDetails: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.
|
|
21
|
-
AGUIExplorerControls: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.
|
|
22
|
-
AGUIFileHandler: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.
|
|
23
|
-
AGUIFileItem: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.
|
|
24
|
-
AGUIFileList: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.
|
|
25
|
-
AGUIForm: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.
|
|
26
|
-
AGUIFormItem: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.
|
|
27
|
-
AGUIHr: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.
|
|
28
|
-
AGUIIcon: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.
|
|
29
|
-
AGUIIconButton: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.
|
|
30
|
-
AGUIInnerInput: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.
|
|
31
|
-
AGUIInput: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.
|
|
32
|
-
AGUIInputNumber: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.
|
|
33
|
-
AGUIInputVector: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.
|
|
34
|
-
AGUILayout: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.
|
|
35
|
-
AGUIMenubar: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.
|
|
36
|
-
AGUIMenubarMenu: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.
|
|
37
|
-
AGUINumberField: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.
|
|
38
|
-
AGUINumberSlider: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.
|
|
39
|
-
AGUIOpenDirectory: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.
|
|
40
|
-
AGUIOverlay: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.
|
|
41
|
-
AGUIPanel: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.
|
|
42
|
-
AGUIPropertiesForm: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.
|
|
43
|
-
AGUIPropertiesPanel: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.
|
|
44
|
-
AGUIProperty: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.
|
|
45
|
-
AGUISelect: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.
|
|
46
|
-
AGUISlider: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.
|
|
47
|
-
AGUITabPanel: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.
|
|
48
|
-
AGUITabs: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.
|
|
49
|
-
AGUITextarea: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.
|
|
50
|
-
AGUIToast: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.
|
|
51
|
-
AGUIToggleIcon: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.
|
|
52
|
-
AGUIToolbar: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.
|
|
53
|
-
AGUITree: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.
|
|
54
|
-
AGUITreeNode: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.
|
|
55
|
-
BIconChevronLeft: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.
|
|
56
|
-
BIconChevronRight: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.
|
|
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']
|