@valaxyjs/devtools 0.20.4 → 0.20.5
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-Cy0ZFvm_.js → about-fwLgTlz5.js} +1 -1
- package/dist/client/assets/{categories-C6S2heod.js → categories-BH1LT9Ew.js} +1 -1
- package/dist/client/assets/{index-CcaUtiJO.js → index-C0sDfLZp.js} +39 -22
- package/dist/client/assets/{index-5H19JSsG.js → index-C7UY5Jwe.js} +2 -2
- package/dist/client/assets/{migration-D1-xv_2f.js → migration-DZ1dFStt.js} +2 -2
- package/dist/client/assets/{splitpanes.es-B8vsrzes.js → splitpanes.es-9Ifkhfso.js} +40 -71
- package/dist/client/assets/{tags-RXd29qDr.js → tags-Cp1XyAHo.js} +1 -1
- package/dist/client/index.html +1 -1
- package/package.json +5 -5
- 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-C0sDfLZp.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-C0sDfLZp.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-C7UY5Jwe.js","./_plugin-vue_export-helper-DgDhiqFL.js","./splitpanes.es-9Ifkhfso.js","./index-BsE069b2.css","./about-fwLgTlz5.js","./categories-BH1LT9Ew.js","./migration-DZ1dFStt.js","./tags-Cp1XyAHo.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.13
|
|
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.13
|
|
287
287
|
* (c) 2018-present Yuxi (Evan) You and Vue contributors
|
|
288
288
|
* @license MIT
|
|
289
289
|
**/
|
|
@@ -365,17 +365,21 @@ class EffectScope {
|
|
|
365
365
|
}
|
|
366
366
|
stop(fromParent) {
|
|
367
367
|
if (this._active) {
|
|
368
|
+
this._active = false;
|
|
368
369
|
let i, l;
|
|
369
370
|
for (i = 0, l = this.effects.length; i < l; i++) {
|
|
370
371
|
this.effects[i].stop();
|
|
371
372
|
}
|
|
373
|
+
this.effects.length = 0;
|
|
372
374
|
for (i = 0, l = this.cleanups.length; i < l; i++) {
|
|
373
375
|
this.cleanups[i]();
|
|
374
376
|
}
|
|
377
|
+
this.cleanups.length = 0;
|
|
375
378
|
if (this.scopes) {
|
|
376
379
|
for (i = 0, l = this.scopes.length; i < l; i++) {
|
|
377
380
|
this.scopes[i].stop(true);
|
|
378
381
|
}
|
|
382
|
+
this.scopes.length = 0;
|
|
379
383
|
}
|
|
380
384
|
if (!this.detached && this.parent && !fromParent) {
|
|
381
385
|
const last = this.parent.scopes.pop();
|
|
@@ -385,7 +389,6 @@ class EffectScope {
|
|
|
385
389
|
}
|
|
386
390
|
}
|
|
387
391
|
this.parent = void 0;
|
|
388
|
-
this._active = false;
|
|
389
392
|
}
|
|
390
393
|
}
|
|
391
394
|
}
|
|
@@ -1035,6 +1038,7 @@ class BaseReactiveHandler {
|
|
|
1035
1038
|
this._isShallow = _isShallow;
|
|
1036
1039
|
}
|
|
1037
1040
|
get(target, key, receiver) {
|
|
1041
|
+
if (key === "__v_skip") return target["__v_skip"];
|
|
1038
1042
|
const isReadonly2 = this._isReadonly, isShallow2 = this._isShallow;
|
|
1039
1043
|
if (key === "__v_isReactive") {
|
|
1040
1044
|
return !isReadonly2;
|
|
@@ -1659,7 +1663,7 @@ function watch$1(source, cb, options = EMPTY_OBJ) {
|
|
|
1659
1663
|
const scope = getCurrentScope();
|
|
1660
1664
|
const watchHandle = () => {
|
|
1661
1665
|
effect2.stop();
|
|
1662
|
-
if (scope) {
|
|
1666
|
+
if (scope && scope.active) {
|
|
1663
1667
|
remove(scope.effects, effect2);
|
|
1664
1668
|
}
|
|
1665
1669
|
};
|
|
@@ -1772,7 +1776,7 @@ function traverse(value, depth = Infinity, seen) {
|
|
|
1772
1776
|
/* Injected with object hook! */
|
|
1773
1777
|
|
|
1774
1778
|
/**
|
|
1775
|
-
* @vue/runtime-core v3.5.
|
|
1779
|
+
* @vue/runtime-core v3.5.13
|
|
1776
1780
|
* (c) 2018-present Yuxi (Evan) You and Vue contributors
|
|
1777
1781
|
* @license MIT
|
|
1778
1782
|
**/
|
|
@@ -2205,6 +2209,9 @@ function setRef(rawRef, oldRawRef, parentSuspense, vnode, isUnmount = false) {
|
|
|
2205
2209
|
return;
|
|
2206
2210
|
}
|
|
2207
2211
|
if (isAsyncWrapper(vnode) && !isUnmount) {
|
|
2212
|
+
if (vnode.shapeFlag & 512 && vnode.type.__asyncResolved && vnode.component.subTree.component) {
|
|
2213
|
+
setRef(rawRef, oldRawRef, parentSuspense, vnode.component.subTree);
|
|
2214
|
+
}
|
|
2208
2215
|
return;
|
|
2209
2216
|
}
|
|
2210
2217
|
const refValue = vnode.shapeFlag & 4 ? getComponentPublicInstance(vnode.component) : vnode.el;
|
|
@@ -5220,9 +5227,9 @@ function closeBlock() {
|
|
|
5220
5227
|
currentBlock = blockStack[blockStack.length - 1] || null;
|
|
5221
5228
|
}
|
|
5222
5229
|
let isBlockTreeEnabled = 1;
|
|
5223
|
-
function setBlockTracking(value) {
|
|
5230
|
+
function setBlockTracking(value, inVOnce = false) {
|
|
5224
5231
|
isBlockTreeEnabled += value;
|
|
5225
|
-
if (value < 0 && currentBlock) {
|
|
5232
|
+
if (value < 0 && currentBlock && inVOnce) {
|
|
5226
5233
|
currentBlock.hasOnce = true;
|
|
5227
5234
|
}
|
|
5228
5235
|
}
|
|
@@ -5859,12 +5866,12 @@ function h(type, propsOrChildren, children) {
|
|
|
5859
5866
|
return createVNode(type, propsOrChildren, children);
|
|
5860
5867
|
}
|
|
5861
5868
|
}
|
|
5862
|
-
const version = "3.5.
|
|
5869
|
+
const version = "3.5.13";
|
|
5863
5870
|
|
|
5864
5871
|
/* Injected with object hook! */
|
|
5865
5872
|
|
|
5866
5873
|
/**
|
|
5867
|
-
* @vue/runtime-dom v3.5.
|
|
5874
|
+
* @vue/runtime-dom v3.5.13
|
|
5868
5875
|
* (c) 2018-present Yuxi (Evan) You and Vue contributors
|
|
5869
5876
|
* @license MIT
|
|
5870
5877
|
**/
|
|
@@ -6429,7 +6436,7 @@ function normalizeContainer(container) {
|
|
|
6429
6436
|
/* Injected with object hook! */
|
|
6430
6437
|
|
|
6431
6438
|
/*!
|
|
6432
|
-
* vue-router v4.
|
|
6439
|
+
* vue-router v4.5.0
|
|
6433
6440
|
* (c) 2024 Eduardo San Martin Morote
|
|
6434
6441
|
* @license MIT
|
|
6435
6442
|
*/
|
|
@@ -6947,7 +6954,7 @@ function tokensToParser(segments, extraOptions) {
|
|
|
6947
6954
|
pattern += "/?";
|
|
6948
6955
|
if (options.end)
|
|
6949
6956
|
pattern += "$";
|
|
6950
|
-
else if (options.strict)
|
|
6957
|
+
else if (options.strict && !pattern.endsWith("/"))
|
|
6951
6958
|
pattern += "(?:/|$)";
|
|
6952
6959
|
const re = new RegExp(pattern, options.sensitive ? "" : "i");
|
|
6953
6960
|
function parse(path) {
|
|
@@ -7224,8 +7231,9 @@ function createRouterMatcher(routes, globalOptions) {
|
|
|
7224
7231
|
originalMatcher = originalMatcher || matcher;
|
|
7225
7232
|
if (originalMatcher !== matcher)
|
|
7226
7233
|
originalMatcher.alias.push(matcher);
|
|
7227
|
-
if (isRootAdd && record.name && !isAliasRecord(matcher))
|
|
7234
|
+
if (isRootAdd && record.name && !isAliasRecord(matcher)) {
|
|
7228
7235
|
removeRoute(record.name);
|
|
7236
|
+
}
|
|
7229
7237
|
}
|
|
7230
7238
|
if (isMatchable(matcher)) {
|
|
7231
7239
|
insertMatcher(matcher);
|
|
@@ -7602,10 +7610,14 @@ function useLink(props) {
|
|
|
7602
7610
|
const isExactActive = computed(() => activeRecordIndex.value > -1 && activeRecordIndex.value === currentRoute.matched.length - 1 && isSameRouteLocationParams(currentRoute.params, route.value.params));
|
|
7603
7611
|
function navigate(e = {}) {
|
|
7604
7612
|
if (guardEvent(e)) {
|
|
7605
|
-
|
|
7613
|
+
const p = router[unref(props.replace) ? "replace" : "push"](
|
|
7606
7614
|
unref(props.to)
|
|
7607
7615
|
// avoid uncaught errors are they are logged anyway
|
|
7608
7616
|
).catch(noop);
|
|
7617
|
+
if (props.viewTransition && typeof document !== "undefined" && "startViewTransition" in document) {
|
|
7618
|
+
document.startViewTransition(() => p);
|
|
7619
|
+
}
|
|
7620
|
+
return p;
|
|
7609
7621
|
}
|
|
7610
7622
|
return Promise.resolve();
|
|
7611
7623
|
}
|
|
@@ -7617,6 +7629,9 @@ function useLink(props) {
|
|
|
7617
7629
|
navigate
|
|
7618
7630
|
};
|
|
7619
7631
|
}
|
|
7632
|
+
function preferSingleVNode(vnodes) {
|
|
7633
|
+
return vnodes.length === 1 ? vnodes[0] : vnodes;
|
|
7634
|
+
}
|
|
7620
7635
|
const RouterLinkImpl = /* @__PURE__ */ defineComponent({
|
|
7621
7636
|
name: "RouterLink",
|
|
7622
7637
|
compatConfig: { MODE: 3 },
|
|
@@ -7649,7 +7664,7 @@ const RouterLinkImpl = /* @__PURE__ */ defineComponent({
|
|
|
7649
7664
|
[getLinkClass(props.exactActiveClass, options.linkExactActiveClass, "router-link-exact-active")]: link.isExactActive
|
|
7650
7665
|
}));
|
|
7651
7666
|
return () => {
|
|
7652
|
-
const children = slots.default && slots.default(link);
|
|
7667
|
+
const children = slots.default && preferSingleVNode(slots.default(link));
|
|
7653
7668
|
return props.custom ? children : h("a", {
|
|
7654
7669
|
"aria-current": link.isExactActive ? props.ariaCurrentValue : null,
|
|
7655
7670
|
href: link.href,
|
|
@@ -8083,7 +8098,7 @@ function createRouter$1(options) {
|
|
|
8083
8098
|
const toLocation = resolve(to);
|
|
8084
8099
|
const shouldRedirect = handleRedirectRecord(toLocation);
|
|
8085
8100
|
if (shouldRedirect) {
|
|
8086
|
-
pushWithRedirect(assign(shouldRedirect, { replace: true }), toLocation).catch(noop);
|
|
8101
|
+
pushWithRedirect(assign(shouldRedirect, { replace: true, force: true }), toLocation).catch(noop);
|
|
8087
8102
|
return;
|
|
8088
8103
|
}
|
|
8089
8104
|
pendingLocation = toLocation;
|
|
@@ -8105,7 +8120,9 @@ function createRouter$1(options) {
|
|
|
8105
8120
|
/* ErrorTypes.NAVIGATION_GUARD_REDIRECT */
|
|
8106
8121
|
)) {
|
|
8107
8122
|
pushWithRedirect(
|
|
8108
|
-
error.to,
|
|
8123
|
+
assign(locationAsObject(error.to), {
|
|
8124
|
+
force: true
|
|
8125
|
+
}),
|
|
8109
8126
|
toLocation
|
|
8110
8127
|
// avoid an uncaught rejection, let push call triggerError
|
|
8111
8128
|
).then((failure) => {
|
|
@@ -8374,31 +8391,31 @@ const routes = [
|
|
|
8374
8391
|
{
|
|
8375
8392
|
path: "/",
|
|
8376
8393
|
name: "/",
|
|
8377
|
-
component: () => __vitePreload(() => import('./index-
|
|
8394
|
+
component: () => __vitePreload(() => import('./index-C7UY5Jwe.js'),true?__vite__mapDeps([0,1,2,3]):void 0,import.meta.url)
|
|
8378
8395
|
/* no children */
|
|
8379
8396
|
},
|
|
8380
8397
|
{
|
|
8381
8398
|
path: "/about",
|
|
8382
8399
|
name: "/about",
|
|
8383
|
-
component: () => __vitePreload(() => import('./about-
|
|
8400
|
+
component: () => __vitePreload(() => import('./about-fwLgTlz5.js'),true?__vite__mapDeps([4,1]):void 0,import.meta.url)
|
|
8384
8401
|
/* no children */
|
|
8385
8402
|
},
|
|
8386
8403
|
{
|
|
8387
8404
|
path: "/categories",
|
|
8388
8405
|
name: "/categories",
|
|
8389
|
-
component: () => __vitePreload(() => import('./categories-
|
|
8406
|
+
component: () => __vitePreload(() => import('./categories-BH1LT9Ew.js'),true?__vite__mapDeps([5,1]):void 0,import.meta.url)
|
|
8390
8407
|
/* no children */
|
|
8391
8408
|
},
|
|
8392
8409
|
{
|
|
8393
8410
|
path: "/migration",
|
|
8394
8411
|
name: "/migration",
|
|
8395
|
-
component: () => __vitePreload(() => import('./migration-
|
|
8412
|
+
component: () => __vitePreload(() => import('./migration-DZ1dFStt.js'),true?__vite__mapDeps([6,2]):void 0,import.meta.url)
|
|
8396
8413
|
/* no children */
|
|
8397
8414
|
},
|
|
8398
8415
|
{
|
|
8399
8416
|
path: "/tags",
|
|
8400
8417
|
name: "/tags",
|
|
8401
|
-
component: () => __vitePreload(() => import('./tags-
|
|
8418
|
+
component: () => __vitePreload(() => import('./tags-Cp1XyAHo.js'),true?__vite__mapDeps([7,1]):void 0,import.meta.url)
|
|
8402
8419
|
/* no children */
|
|
8403
8420
|
}
|
|
8404
8421
|
];
|
|
@@ -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-C0sDfLZp.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-9Ifkhfso.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-C0sDfLZp.js';
|
|
2
|
+
import { g, M, a as axios } from './splitpanes.es-9Ifkhfso.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-C0sDfLZp.js';
|
|
2
2
|
|
|
3
3
|
function bind(fn, thisArg) {
|
|
4
4
|
return function wrap() {
|
|
@@ -1163,7 +1163,7 @@ function encode(val) {
|
|
|
1163
1163
|
*
|
|
1164
1164
|
* @param {string} url The base of the url (e.g., http://www.google.com)
|
|
1165
1165
|
* @param {object} [params] The params to be appended
|
|
1166
|
-
* @param {?object} options
|
|
1166
|
+
* @param {?(object|Function)} options
|
|
1167
1167
|
*
|
|
1168
1168
|
* @returns {string} The formatted url
|
|
1169
1169
|
*/
|
|
@@ -1175,6 +1175,12 @@ function buildURL(url, params, options) {
|
|
|
1175
1175
|
|
|
1176
1176
|
const _encode = options && options.encode || encode;
|
|
1177
1177
|
|
|
1178
|
+
if (utils$1.isFunction(options)) {
|
|
1179
|
+
options = {
|
|
1180
|
+
serialize: options
|
|
1181
|
+
};
|
|
1182
|
+
}
|
|
1183
|
+
|
|
1178
1184
|
const serializeFn = options && options.serialize;
|
|
1179
1185
|
|
|
1180
1186
|
let serializedParams;
|
|
@@ -2201,68 +2207,18 @@ const asyncDecorator = (fn) => (...args) => utils$1.asap(() => fn(...args));
|
|
|
2201
2207
|
|
|
2202
2208
|
/* Injected with object hook! */
|
|
2203
2209
|
|
|
2204
|
-
const isURLSameOrigin = platform.hasStandardBrowserEnv ?
|
|
2205
|
-
|
|
2206
|
-
// Standard browser envs have full support of the APIs needed to test
|
|
2207
|
-
// whether the request URL is of the same origin as current location.
|
|
2208
|
-
(function standardBrowserEnv() {
|
|
2209
|
-
const msie = platform.navigator && /(msie|trident)/i.test(platform.navigator.userAgent);
|
|
2210
|
-
const urlParsingNode = document.createElement('a');
|
|
2211
|
-
let originURL;
|
|
2212
|
-
|
|
2213
|
-
/**
|
|
2214
|
-
* Parse a URL to discover its components
|
|
2215
|
-
*
|
|
2216
|
-
* @param {String} url The URL to be parsed
|
|
2217
|
-
* @returns {Object}
|
|
2218
|
-
*/
|
|
2219
|
-
function resolveURL(url) {
|
|
2220
|
-
let href = url;
|
|
2221
|
-
|
|
2222
|
-
if (msie) {
|
|
2223
|
-
// IE needs attribute set twice to normalize properties
|
|
2224
|
-
urlParsingNode.setAttribute('href', href);
|
|
2225
|
-
href = urlParsingNode.href;
|
|
2226
|
-
}
|
|
2227
|
-
|
|
2228
|
-
urlParsingNode.setAttribute('href', href);
|
|
2229
|
-
|
|
2230
|
-
// urlParsingNode provides the UrlUtils interface - http://url.spec.whatwg.org/#urlutils
|
|
2231
|
-
return {
|
|
2232
|
-
href: urlParsingNode.href,
|
|
2233
|
-
protocol: urlParsingNode.protocol ? urlParsingNode.protocol.replace(/:$/, '') : '',
|
|
2234
|
-
host: urlParsingNode.host,
|
|
2235
|
-
search: urlParsingNode.search ? urlParsingNode.search.replace(/^\?/, '') : '',
|
|
2236
|
-
hash: urlParsingNode.hash ? urlParsingNode.hash.replace(/^#/, '') : '',
|
|
2237
|
-
hostname: urlParsingNode.hostname,
|
|
2238
|
-
port: urlParsingNode.port,
|
|
2239
|
-
pathname: (urlParsingNode.pathname.charAt(0) === '/') ?
|
|
2240
|
-
urlParsingNode.pathname :
|
|
2241
|
-
'/' + urlParsingNode.pathname
|
|
2242
|
-
};
|
|
2243
|
-
}
|
|
2244
|
-
|
|
2245
|
-
originURL = resolveURL(window.location.href);
|
|
2246
|
-
|
|
2247
|
-
/**
|
|
2248
|
-
* Determine if a URL shares the same origin as the current location
|
|
2249
|
-
*
|
|
2250
|
-
* @param {String} requestURL The URL to test
|
|
2251
|
-
* @returns {boolean} True if URL shares the same origin, otherwise false
|
|
2252
|
-
*/
|
|
2253
|
-
return function isURLSameOrigin(requestURL) {
|
|
2254
|
-
const parsed = (utils$1.isString(requestURL)) ? resolveURL(requestURL) : requestURL;
|
|
2255
|
-
return (parsed.protocol === originURL.protocol &&
|
|
2256
|
-
parsed.host === originURL.host);
|
|
2257
|
-
};
|
|
2258
|
-
})() :
|
|
2210
|
+
const isURLSameOrigin = platform.hasStandardBrowserEnv ? ((origin, isMSIE) => (url) => {
|
|
2211
|
+
url = new URL(url, platform.origin);
|
|
2259
2212
|
|
|
2260
|
-
|
|
2261
|
-
|
|
2262
|
-
|
|
2263
|
-
|
|
2264
|
-
|
|
2265
|
-
|
|
2213
|
+
return (
|
|
2214
|
+
origin.protocol === url.protocol &&
|
|
2215
|
+
origin.host === url.host &&
|
|
2216
|
+
(isMSIE || origin.port === url.port)
|
|
2217
|
+
);
|
|
2218
|
+
})(
|
|
2219
|
+
new URL(platform.origin),
|
|
2220
|
+
platform.navigator && /(msie|trident)/i.test(platform.navigator.userAgent)
|
|
2221
|
+
) : () => true;
|
|
2266
2222
|
|
|
2267
2223
|
/* Injected with object hook! */
|
|
2268
2224
|
|
|
@@ -2375,7 +2331,7 @@ function mergeConfig(config1, config2) {
|
|
|
2375
2331
|
config2 = config2 || {};
|
|
2376
2332
|
const config = {};
|
|
2377
2333
|
|
|
2378
|
-
function getMergedValue(target, source, caseless) {
|
|
2334
|
+
function getMergedValue(target, source, prop, caseless) {
|
|
2379
2335
|
if (utils$1.isPlainObject(target) && utils$1.isPlainObject(source)) {
|
|
2380
2336
|
return utils$1.merge.call({caseless}, target, source);
|
|
2381
2337
|
} else if (utils$1.isPlainObject(source)) {
|
|
@@ -2387,11 +2343,11 @@ function mergeConfig(config1, config2) {
|
|
|
2387
2343
|
}
|
|
2388
2344
|
|
|
2389
2345
|
// eslint-disable-next-line consistent-return
|
|
2390
|
-
function mergeDeepProperties(a, b, caseless) {
|
|
2346
|
+
function mergeDeepProperties(a, b, prop , caseless) {
|
|
2391
2347
|
if (!utils$1.isUndefined(b)) {
|
|
2392
|
-
return getMergedValue(a, b, caseless);
|
|
2348
|
+
return getMergedValue(a, b, prop , caseless);
|
|
2393
2349
|
} else if (!utils$1.isUndefined(a)) {
|
|
2394
|
-
return getMergedValue(undefined, a, caseless);
|
|
2350
|
+
return getMergedValue(undefined, a, prop , caseless);
|
|
2395
2351
|
}
|
|
2396
2352
|
}
|
|
2397
2353
|
|
|
@@ -2449,7 +2405,7 @@ function mergeConfig(config1, config2) {
|
|
|
2449
2405
|
socketPath: defaultToConfig2,
|
|
2450
2406
|
responseEncoding: defaultToConfig2,
|
|
2451
2407
|
validateStatus: mergeDirectKeys,
|
|
2452
|
-
headers: (a, b) => mergeDeepProperties(headersToObject(a), headersToObject(b), true)
|
|
2408
|
+
headers: (a, b , prop) => mergeDeepProperties(headersToObject(a), headersToObject(b),prop, true)
|
|
2453
2409
|
};
|
|
2454
2410
|
|
|
2455
2411
|
utils$1.forEach(Object.keys(Object.assign({}, config1, config2)), function computeConfigValue(prop) {
|
|
@@ -3210,7 +3166,7 @@ function dispatchRequest(config) {
|
|
|
3210
3166
|
|
|
3211
3167
|
/* Injected with object hook! */
|
|
3212
3168
|
|
|
3213
|
-
const VERSION = "1.7.
|
|
3169
|
+
const VERSION = "1.7.8";
|
|
3214
3170
|
/* Injected with object hook! */
|
|
3215
3171
|
|
|
3216
3172
|
const validators$1 = {};
|
|
@@ -3262,6 +3218,14 @@ validators$1.transitional = function transitional(validator, version, message) {
|
|
|
3262
3218
|
};
|
|
3263
3219
|
};
|
|
3264
3220
|
|
|
3221
|
+
validators$1.spelling = function spelling(correctSpelling) {
|
|
3222
|
+
return (value, opt) => {
|
|
3223
|
+
// eslint-disable-next-line no-console
|
|
3224
|
+
console.warn(`${opt} is likely a misspelling of ${correctSpelling}`);
|
|
3225
|
+
return true;
|
|
3226
|
+
}
|
|
3227
|
+
};
|
|
3228
|
+
|
|
3265
3229
|
/**
|
|
3266
3230
|
* Assert object's properties type
|
|
3267
3231
|
*
|
|
@@ -3333,9 +3297,9 @@ class Axios {
|
|
|
3333
3297
|
return await this._request(configOrUrl, config);
|
|
3334
3298
|
} catch (err) {
|
|
3335
3299
|
if (err instanceof Error) {
|
|
3336
|
-
let dummy;
|
|
3300
|
+
let dummy = {};
|
|
3337
3301
|
|
|
3338
|
-
Error.captureStackTrace ? Error.captureStackTrace(dummy
|
|
3302
|
+
Error.captureStackTrace ? Error.captureStackTrace(dummy) : (dummy = new Error());
|
|
3339
3303
|
|
|
3340
3304
|
// slice off the Error: ... line
|
|
3341
3305
|
const stack = dummy.stack ? dummy.stack.replace(/^.+\n/, '') : '';
|
|
@@ -3390,6 +3354,11 @@ class Axios {
|
|
|
3390
3354
|
}
|
|
3391
3355
|
}
|
|
3392
3356
|
|
|
3357
|
+
validator.assertOptions(config, {
|
|
3358
|
+
baseUrl: validators.spelling('baseURL'),
|
|
3359
|
+
withXsrfToken: validators.spelling('withXSRFToken')
|
|
3360
|
+
}, true);
|
|
3361
|
+
|
|
3393
3362
|
// Set config.method
|
|
3394
3363
|
config.method = (config.method || this.defaults.method || 'get').toLowerCase();
|
|
3395
3364
|
|
|
@@ -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-C0sDfLZp.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-C0sDfLZp.js"></script>
|
|
20
20
|
<link rel="stylesheet" crossorigin href="./assets/index-CGiiZwdq.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.20.
|
|
4
|
+
"version": "0.20.5",
|
|
5
5
|
"repository": {
|
|
6
6
|
"url": "https://github.com/YunYouJun/valaxy"
|
|
7
7
|
},
|
|
@@ -18,8 +18,8 @@
|
|
|
18
18
|
"types": "dist/index.d.ts",
|
|
19
19
|
"dependencies": {
|
|
20
20
|
"@rollup/pluginutils": "^5.1.3",
|
|
21
|
-
"axios": "^1.7.
|
|
22
|
-
"body-parser": "^
|
|
21
|
+
"axios": "^1.7.8",
|
|
22
|
+
"body-parser": "^2.0.1",
|
|
23
23
|
"http-proxy-middleware": "^3.0.3",
|
|
24
24
|
"js-yaml": "^4.1.0",
|
|
25
25
|
"picocolors": "^1.1.1",
|
|
@@ -32,10 +32,10 @@
|
|
|
32
32
|
"@types/splitpanes": "^2.2.6",
|
|
33
33
|
"gray-matter": "^4.0.3",
|
|
34
34
|
"splitpanes": "^3.1.5",
|
|
35
|
-
"typescript": "^5.
|
|
35
|
+
"typescript": "^5.7.2",
|
|
36
36
|
"unbuild": "^2.0.0",
|
|
37
37
|
"unplugin-vue-router": "^0.10.8",
|
|
38
|
-
"vite": "^
|
|
38
|
+
"vite": "^6.0.0"
|
|
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.
|
|
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.13_typescript@5.7.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.13_typescript@5.7.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.13_typescript@5.7.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.13_typescript@5.7.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.13_typescript@5.7.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.13_typescript@5.7.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.13_typescript@5.7.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.13_typescript@5.7.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.13_typescript@5.7.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.13_typescript@5.7.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.13_typescript@5.7.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.13_typescript@5.7.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.13_typescript@5.7.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.13_typescript@5.7.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.13_typescript@5.7.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.13_typescript@5.7.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.13_typescript@5.7.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.13_typescript@5.7.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.13_typescript@5.7.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.13_typescript@5.7.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.13_typescript@5.7.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.13_typescript@5.7.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.13_typescript@5.7.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.13_typescript@5.7.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.13_typescript@5.7.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.13_typescript@5.7.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.13_typescript@5.7.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.13_typescript@5.7.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.13_typescript@5.7.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.13_typescript@5.7.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.13_typescript@5.7.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.13_typescript@5.7.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.13_typescript@5.7.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.13_typescript@5.7.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.13_typescript@5.7.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.13_typescript@5.7.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.13_typescript@5.7.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.13_typescript@5.7.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.13_typescript@5.7.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.13_typescript@5.7.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.13_typescript@5.7.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.13_typescript@5.7.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.13_typescript@5.7.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.13_typescript@5.7.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.13_typescript@5.7.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.13_typescript@5.7.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.13_typescript@5.7.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']
|