@valaxyjs/devtools 0.19.10 → 0.19.12
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-BRT_tNcN.js → about-Cb961iZ7.js} +1 -1
- package/dist/client/assets/{categories-BkoD6Okt.js → categories-sQfB3FdC.js} +1 -1
- package/dist/client/assets/{index-EIUO5ARy.js → index-BUdNacqN.js} +68 -51
- package/dist/client/assets/{index-BiZFdN8P.js → index-CaURY-iQ.js} +2 -2
- package/dist/client/assets/{migration-sqXQ1Rub.js → migration-CSZiiXr3.js} +2 -2
- package/dist/client/assets/{splitpanes.es-CFspD77U.js → splitpanes.es-D_5miwZj.js} +3 -3
- package/dist/client/assets/{tags-DTkAuVA6.js → tags-BNZ-KRbk.js} +1 -1
- package/dist/client/index.html +1 -1
- package/dist/index.cjs +1 -1
- package/package.json +3 -3
- package/src/client/components.d.ts +47 -47
- package/src/client/vite.config.ts +8 -0
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { _ as _export_sfc } from './_plugin-vue_export-helper-DgDhiqFL.js';
|
|
2
|
-
import {
|
|
2
|
+
import { a as createElementBlock, o as openBlock } from './index-BUdNacqN.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 {
|
|
2
|
+
import { a as createElementBlock, o as openBlock } from './index-BUdNacqN.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-CaURY-iQ.js","./_plugin-vue_export-helper-DgDhiqFL.js","./splitpanes.es-D_5miwZj.js","./index-DF84L4of.css","./about-Cb961iZ7.js","./categories-sQfB3FdC.js","./migration-CSZiiXr3.js","./tags-BNZ-KRbk.js"])))=>i.map(i=>d[i]);
|
|
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.7
|
|
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.7
|
|
287
287
|
* (c) 2018-present Yuxi (Evan) You and Vue contributors
|
|
288
288
|
* @license MIT
|
|
289
289
|
**/
|
|
@@ -400,7 +400,7 @@ class ReactiveEffect {
|
|
|
400
400
|
this.deps = void 0;
|
|
401
401
|
this.depsTail = void 0;
|
|
402
402
|
this.flags = 1 | 4;
|
|
403
|
-
this.
|
|
403
|
+
this.next = void 0;
|
|
404
404
|
this.cleanup = void 0;
|
|
405
405
|
this.scheduler = void 0;
|
|
406
406
|
if (activeEffectScope && activeEffectScope.active) {
|
|
@@ -427,9 +427,7 @@ class ReactiveEffect {
|
|
|
427
427
|
return;
|
|
428
428
|
}
|
|
429
429
|
if (!(this.flags & 8)) {
|
|
430
|
-
this
|
|
431
|
-
this.nextEffect = batchedEffect;
|
|
432
|
-
batchedEffect = this;
|
|
430
|
+
batch(this);
|
|
433
431
|
}
|
|
434
432
|
}
|
|
435
433
|
run() {
|
|
@@ -485,7 +483,12 @@ class ReactiveEffect {
|
|
|
485
483
|
}
|
|
486
484
|
}
|
|
487
485
|
let batchDepth = 0;
|
|
488
|
-
let
|
|
486
|
+
let batchedSub;
|
|
487
|
+
function batch(sub) {
|
|
488
|
+
sub.flags |= 8;
|
|
489
|
+
sub.next = batchedSub;
|
|
490
|
+
batchedSub = sub;
|
|
491
|
+
}
|
|
489
492
|
function startBatch() {
|
|
490
493
|
batchDepth++;
|
|
491
494
|
}
|
|
@@ -494,15 +497,16 @@ function endBatch() {
|
|
|
494
497
|
return;
|
|
495
498
|
}
|
|
496
499
|
let error;
|
|
497
|
-
while (
|
|
498
|
-
let e =
|
|
499
|
-
|
|
500
|
+
while (batchedSub) {
|
|
501
|
+
let e = batchedSub;
|
|
502
|
+
batchedSub = void 0;
|
|
500
503
|
while (e) {
|
|
501
|
-
const next = e.
|
|
502
|
-
e.
|
|
504
|
+
const next = e.next;
|
|
505
|
+
e.next = void 0;
|
|
503
506
|
e.flags &= ~8;
|
|
504
507
|
if (e.flags & 1) {
|
|
505
508
|
try {
|
|
509
|
+
;
|
|
506
510
|
e.trigger();
|
|
507
511
|
} catch (err) {
|
|
508
512
|
if (!error) error = err;
|
|
@@ -542,7 +546,7 @@ function cleanupDeps(sub) {
|
|
|
542
546
|
}
|
|
543
547
|
function isDirty(sub) {
|
|
544
548
|
for (let link = sub.deps; link; link = link.nextDep) {
|
|
545
|
-
if (link.dep.version !== link.version || link.dep.computed && refreshComputed(link.dep.computed) || link.dep.version !== link.version) {
|
|
549
|
+
if (link.dep.version !== link.version || link.dep.computed && (refreshComputed(link.dep.computed) || link.dep.version !== link.version)) {
|
|
546
550
|
return true;
|
|
547
551
|
}
|
|
548
552
|
}
|
|
@@ -562,7 +566,7 @@ function refreshComputed(computed2) {
|
|
|
562
566
|
computed2.globalVersion = globalVersion;
|
|
563
567
|
const dep = computed2.dep;
|
|
564
568
|
computed2.flags |= 2;
|
|
565
|
-
if (dep.version > 0 && !computed2.isSSR && !isDirty(computed2)) {
|
|
569
|
+
if (dep.version > 0 && !computed2.isSSR && computed2.deps && !isDirty(computed2)) {
|
|
566
570
|
computed2.flags &= ~2;
|
|
567
571
|
return;
|
|
568
572
|
}
|
|
@@ -587,7 +591,7 @@ function refreshComputed(computed2) {
|
|
|
587
591
|
computed2.flags &= ~2;
|
|
588
592
|
}
|
|
589
593
|
}
|
|
590
|
-
function removeSub(link) {
|
|
594
|
+
function removeSub(link, fromComputed = false) {
|
|
591
595
|
const { dep, prevSub, nextSub } = link;
|
|
592
596
|
if (prevSub) {
|
|
593
597
|
prevSub.nextSub = nextSub;
|
|
@@ -600,10 +604,15 @@ function removeSub(link) {
|
|
|
600
604
|
if (dep.subs === link) {
|
|
601
605
|
dep.subs = prevSub;
|
|
602
606
|
}
|
|
603
|
-
if (!dep.subs
|
|
604
|
-
dep.computed
|
|
605
|
-
|
|
606
|
-
|
|
607
|
+
if (!dep.subs) {
|
|
608
|
+
if (dep.computed) {
|
|
609
|
+
dep.computed.flags &= ~4;
|
|
610
|
+
for (let l = dep.computed.deps; l; l = l.nextDep) {
|
|
611
|
+
removeSub(l, true);
|
|
612
|
+
}
|
|
613
|
+
} else if (dep.map && !fromComputed) {
|
|
614
|
+
dep.map.delete(dep.key);
|
|
615
|
+
if (!dep.map.size) targetMap.delete(dep.target);
|
|
607
616
|
}
|
|
608
617
|
}
|
|
609
618
|
}
|
|
@@ -656,6 +665,9 @@ class Dep {
|
|
|
656
665
|
this.version = 0;
|
|
657
666
|
this.activeLink = void 0;
|
|
658
667
|
this.subs = void 0;
|
|
668
|
+
this.target = void 0;
|
|
669
|
+
this.map = void 0;
|
|
670
|
+
this.key = void 0;
|
|
659
671
|
}
|
|
660
672
|
track(debugInfo) {
|
|
661
673
|
if (!activeSub || !shouldTrack || activeSub === this.computed) {
|
|
@@ -703,7 +715,10 @@ class Dep {
|
|
|
703
715
|
try {
|
|
704
716
|
if (false) ;
|
|
705
717
|
for (let link = this.subs; link; link = link.prevSub) {
|
|
706
|
-
link.sub.notify()
|
|
718
|
+
if (link.sub.notify()) {
|
|
719
|
+
;
|
|
720
|
+
link.sub.dep.notify();
|
|
721
|
+
}
|
|
707
722
|
}
|
|
708
723
|
} finally {
|
|
709
724
|
endBatch();
|
|
@@ -744,6 +759,9 @@ function track(target, type, key) {
|
|
|
744
759
|
let dep = depsMap.get(key);
|
|
745
760
|
if (!dep) {
|
|
746
761
|
depsMap.set(key, dep = new Dep());
|
|
762
|
+
dep.target = target;
|
|
763
|
+
dep.map = depsMap;
|
|
764
|
+
dep.key = key;
|
|
747
765
|
}
|
|
748
766
|
{
|
|
749
767
|
dep.track();
|
|
@@ -1587,8 +1605,10 @@ class ComputedRefImpl {
|
|
|
1587
1605
|
*/
|
|
1588
1606
|
notify() {
|
|
1589
1607
|
this.flags |= 16;
|
|
1590
|
-
if (
|
|
1591
|
-
|
|
1608
|
+
if (!(this.flags & 8) && // avoid infinite self recursion
|
|
1609
|
+
activeSub !== this) {
|
|
1610
|
+
batch(this);
|
|
1611
|
+
return true;
|
|
1592
1612
|
}
|
|
1593
1613
|
}
|
|
1594
1614
|
get value() {
|
|
@@ -1696,20 +1716,12 @@ function watch$1(source, cb, options = EMPTY_OBJ) {
|
|
|
1696
1716
|
remove(scope.effects, effect2);
|
|
1697
1717
|
}
|
|
1698
1718
|
};
|
|
1699
|
-
if (once) {
|
|
1700
|
-
|
|
1701
|
-
|
|
1702
|
-
|
|
1703
|
-
|
|
1704
|
-
|
|
1705
|
-
};
|
|
1706
|
-
} else {
|
|
1707
|
-
const _getter = getter;
|
|
1708
|
-
getter = () => {
|
|
1709
|
-
_getter();
|
|
1710
|
-
watchHandle();
|
|
1711
|
-
};
|
|
1712
|
-
}
|
|
1719
|
+
if (once && cb) {
|
|
1720
|
+
const _cb = cb;
|
|
1721
|
+
cb = (...args) => {
|
|
1722
|
+
_cb(...args);
|
|
1723
|
+
watchHandle();
|
|
1724
|
+
};
|
|
1713
1725
|
}
|
|
1714
1726
|
let oldValue = isMultiSource ? new Array(source.length).fill(INITIAL_WATCHER_VALUE) : INITIAL_WATCHER_VALUE;
|
|
1715
1727
|
const job = (immediateFirstRun) => {
|
|
@@ -1813,7 +1825,7 @@ function traverse(value, depth = Infinity, seen) {
|
|
|
1813
1825
|
/* Injected with object hook! */
|
|
1814
1826
|
|
|
1815
1827
|
/**
|
|
1816
|
-
* @vue/runtime-core v3.5.
|
|
1828
|
+
* @vue/runtime-core v3.5.7
|
|
1817
1829
|
* (c) 2018-present Yuxi (Evan) You and Vue contributors
|
|
1818
1830
|
* @license MIT
|
|
1819
1831
|
**/
|
|
@@ -2060,7 +2072,9 @@ function flushPreFlushCbs(instance, seen, i = isFlushing ? flushIndex + 1 : 0) {
|
|
|
2060
2072
|
cb.flags &= ~1;
|
|
2061
2073
|
}
|
|
2062
2074
|
cb();
|
|
2063
|
-
cb.flags
|
|
2075
|
+
if (!(cb.flags & 4)) {
|
|
2076
|
+
cb.flags &= ~1;
|
|
2077
|
+
}
|
|
2064
2078
|
}
|
|
2065
2079
|
}
|
|
2066
2080
|
}
|
|
@@ -2104,7 +2118,9 @@ function flushJobs(seen) {
|
|
|
2104
2118
|
job.i,
|
|
2105
2119
|
job.i ? 15 : 14
|
|
2106
2120
|
);
|
|
2107
|
-
job.flags
|
|
2121
|
+
if (!(job.flags & 4)) {
|
|
2122
|
+
job.flags &= ~1;
|
|
2123
|
+
}
|
|
2108
2124
|
}
|
|
2109
2125
|
}
|
|
2110
2126
|
} finally {
|
|
@@ -4874,11 +4890,12 @@ function doWatch(source, cb, options = EMPTY_OBJ) {
|
|
|
4874
4890
|
} else if (!cb || immediate) {
|
|
4875
4891
|
baseWatchOptions.once = true;
|
|
4876
4892
|
} else {
|
|
4877
|
-
|
|
4878
|
-
stop: NOOP,
|
|
4879
|
-
resume: NOOP,
|
|
4880
|
-
pause: NOOP
|
|
4893
|
+
const watchStopHandle = () => {
|
|
4881
4894
|
};
|
|
4895
|
+
watchStopHandle.stop = NOOP;
|
|
4896
|
+
watchStopHandle.resume = NOOP;
|
|
4897
|
+
watchStopHandle.pause = NOOP;
|
|
4898
|
+
return watchStopHandle;
|
|
4882
4899
|
}
|
|
4883
4900
|
}
|
|
4884
4901
|
const instance = currentInstance;
|
|
@@ -5890,12 +5907,12 @@ function h(type, propsOrChildren, children) {
|
|
|
5890
5907
|
return createVNode(type, propsOrChildren, children);
|
|
5891
5908
|
}
|
|
5892
5909
|
}
|
|
5893
|
-
const version = "3.5.
|
|
5910
|
+
const version = "3.5.7";
|
|
5894
5911
|
|
|
5895
5912
|
/* Injected with object hook! */
|
|
5896
5913
|
|
|
5897
5914
|
/**
|
|
5898
|
-
* @vue/runtime-dom v3.5.
|
|
5915
|
+
* @vue/runtime-dom v3.5.7
|
|
5899
5916
|
* (c) 2018-present Yuxi (Evan) You and Vue contributors
|
|
5900
5917
|
* @license MIT
|
|
5901
5918
|
**/
|
|
@@ -8405,31 +8422,31 @@ const routes = [
|
|
|
8405
8422
|
{
|
|
8406
8423
|
path: "/",
|
|
8407
8424
|
name: "/",
|
|
8408
|
-
component: () => __vitePreload(() => import('./index-
|
|
8425
|
+
component: () => __vitePreload(() => import('./index-CaURY-iQ.js'),true?__vite__mapDeps([0,1,2,3]):void 0,import.meta.url)
|
|
8409
8426
|
/* no children */
|
|
8410
8427
|
},
|
|
8411
8428
|
{
|
|
8412
8429
|
path: "/about",
|
|
8413
8430
|
name: "/about",
|
|
8414
|
-
component: () => __vitePreload(() => import('./about-
|
|
8431
|
+
component: () => __vitePreload(() => import('./about-Cb961iZ7.js'),true?__vite__mapDeps([4,1]):void 0,import.meta.url)
|
|
8415
8432
|
/* no children */
|
|
8416
8433
|
},
|
|
8417
8434
|
{
|
|
8418
8435
|
path: "/categories",
|
|
8419
8436
|
name: "/categories",
|
|
8420
|
-
component: () => __vitePreload(() => import('./categories-
|
|
8437
|
+
component: () => __vitePreload(() => import('./categories-sQfB3FdC.js'),true?__vite__mapDeps([5,1]):void 0,import.meta.url)
|
|
8421
8438
|
/* no children */
|
|
8422
8439
|
},
|
|
8423
8440
|
{
|
|
8424
8441
|
path: "/migration",
|
|
8425
8442
|
name: "/migration",
|
|
8426
|
-
component: () => __vitePreload(() => import('./migration-
|
|
8443
|
+
component: () => __vitePreload(() => import('./migration-CSZiiXr3.js'),true?__vite__mapDeps([6,2]):void 0,import.meta.url)
|
|
8427
8444
|
/* no children */
|
|
8428
8445
|
},
|
|
8429
8446
|
{
|
|
8430
8447
|
path: "/tags",
|
|
8431
8448
|
name: "/tags",
|
|
8432
|
-
component: () => __vitePreload(() => import('./tags-
|
|
8449
|
+
component: () => __vitePreload(() => import('./tags-BNZ-KRbk.js'),true?__vite__mapDeps([7,1]):void 0,import.meta.url)
|
|
8433
8450
|
/* no children */
|
|
8434
8451
|
}
|
|
8435
8452
|
];
|
|
@@ -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-BUdNacqN.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-D_5miwZj.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-BUdNacqN.js';
|
|
2
|
+
import { g, M, a as axios } from './splitpanes.es-D_5miwZj.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-BUdNacqN.js';
|
|
2
2
|
|
|
3
3
|
function bind(fn, thisArg) {
|
|
4
4
|
return function wrap() {
|
|
@@ -1492,7 +1492,7 @@ function stringifySafely(rawValue, parser, encoder) {
|
|
|
1492
1492
|
}
|
|
1493
1493
|
}
|
|
1494
1494
|
|
|
1495
|
-
return (
|
|
1495
|
+
return (0, JSON.stringify)(rawValue);
|
|
1496
1496
|
}
|
|
1497
1497
|
|
|
1498
1498
|
const defaults = {
|
|
@@ -2751,7 +2751,7 @@ const composeSignals = (signals, timeout) => {
|
|
|
2751
2751
|
const streamChunk = function* (chunk, chunkSize) {
|
|
2752
2752
|
let len = chunk.byteLength;
|
|
2753
2753
|
|
|
2754
|
-
if (
|
|
2754
|
+
if (len < chunkSize) {
|
|
2755
2755
|
yield chunk;
|
|
2756
2756
|
return;
|
|
2757
2757
|
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { _ as _export_sfc } from './_plugin-vue_export-helper-DgDhiqFL.js';
|
|
2
|
-
import {
|
|
2
|
+
import { a as createElementBlock, o as openBlock } from './index-BUdNacqN.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-BUdNacqN.js"></script>
|
|
20
20
|
<link rel="stylesheet" crossorigin href="./assets/index-DphOJtuC.css">
|
|
21
21
|
</head>
|
|
22
22
|
|
package/dist/index.cjs
CHANGED
|
@@ -19,7 +19,7 @@ const bodyParser__default = /*#__PURE__*/_interopDefaultCompat(bodyParser);
|
|
|
19
19
|
const matter__default = /*#__PURE__*/_interopDefaultCompat(matter);
|
|
20
20
|
const fs__default = /*#__PURE__*/_interopDefaultCompat(fs);
|
|
21
21
|
|
|
22
|
-
const DIR_DIST = typeof __dirname !== "undefined" ? __dirname : node_path.dirname(node_url.fileURLToPath((typeof document === 'undefined' ? require('u' + 'rl').pathToFileURL(__filename).href : (_documentCurrentScript && _documentCurrentScript.src || new URL('index.cjs', document.baseURI).href))));
|
|
22
|
+
const DIR_DIST = typeof __dirname !== "undefined" ? __dirname : node_path.dirname(node_url.fileURLToPath((typeof document === 'undefined' ? require('u' + 'rl').pathToFileURL(__filename).href : (_documentCurrentScript && _documentCurrentScript.tagName.toUpperCase() === 'SCRIPT' && _documentCurrentScript.src || new URL('index.cjs', document.baseURI).href))));
|
|
23
23
|
const DEVTOOLS_CLIENT_FOLDER = node_path.resolve(DIR_DIST, "../dist/client");
|
|
24
24
|
const DIR_CLIENT = DEVTOOLS_CLIENT_FOLDER;
|
|
25
25
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@valaxyjs/devtools",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.19.
|
|
4
|
+
"version": "0.19.12",
|
|
5
5
|
"repository": {
|
|
6
6
|
"url": "https://github.com/YunYouJun/valaxy"
|
|
7
7
|
},
|
|
@@ -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.6.2",
|
|
36
36
|
"unbuild": "^2.0.0",
|
|
37
37
|
"unplugin-vue-router": "^0.10.8",
|
|
38
|
-
"vite": "^5.4.
|
|
38
|
+
"vite": "^5.4.7"
|
|
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.7_typescript@5.6.2_/node_modules/@advjs/gui/client/components/accordion/AGUIAccordion.vue')['default']
|
|
11
|
+
AGUIAccordionItem: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.7_typescript@5.6.2_/node_modules/@advjs/gui/client/components/accordion/AGUIAccordionItem.vue')['default']
|
|
12
|
+
AGUIApp: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.7_typescript@5.6.2_/node_modules/@advjs/gui/client/components/AGUIApp.vue')['default']
|
|
13
|
+
AGUIAssetsExplorer: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.7_typescript@5.6.2_/node_modules/@advjs/gui/client/components/explorer/AGUIAssetsExplorer.vue')['default']
|
|
14
|
+
AGUIBreadcrumb: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.7_typescript@5.6.2_/node_modules/@advjs/gui/client/components/breadcrumb/AGUIBreadcrumb.vue')['default']
|
|
15
|
+
AGUIButton: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.7_typescript@5.6.2_/node_modules/@advjs/gui/client/components/button/AGUIButton.vue')['default']
|
|
16
|
+
AGUICheckbox: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.7_typescript@5.6.2_/node_modules/@advjs/gui/client/components/AGUICheckbox.vue')['default']
|
|
17
|
+
AGUIColorPicker: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.7_typescript@5.6.2_/node_modules/@advjs/gui/client/components/AGUIColorPicker.vue')['default']
|
|
18
|
+
AGUIContextMenu: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.7_typescript@5.6.2_/node_modules/@advjs/gui/client/components/context-menu/AGUIContextMenu.vue')['default']
|
|
19
|
+
AGUIContextMenuItem: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.7_typescript@5.6.2_/node_modules/@advjs/gui/client/components/context-menu/AGUIContextMenuItem.vue')['default']
|
|
20
|
+
AGUIDetails: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.7_typescript@5.6.2_/node_modules/@advjs/gui/client/components/AGUIDetails.vue')['default']
|
|
21
|
+
AGUIExplorerControls: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.7_typescript@5.6.2_/node_modules/@advjs/gui/client/components/explorer/AGUIExplorerControls.vue')['default']
|
|
22
|
+
AGUIFileHandler: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.7_typescript@5.6.2_/node_modules/@advjs/gui/client/components/file/AGUIFileHandler.vue')['default']
|
|
23
|
+
AGUIFileItem: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.7_typescript@5.6.2_/node_modules/@advjs/gui/client/components/explorer/AGUIFileItem.vue')['default']
|
|
24
|
+
AGUIFileList: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.7_typescript@5.6.2_/node_modules/@advjs/gui/client/components/explorer/AGUIFileList.vue')['default']
|
|
25
|
+
AGUIForm: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.7_typescript@5.6.2_/node_modules/@advjs/gui/client/components/form/AGUIForm.vue')['default']
|
|
26
|
+
AGUIFormItem: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.7_typescript@5.6.2_/node_modules/@advjs/gui/client/components/form/AGUIFormItem.vue')['default']
|
|
27
|
+
AGUIHr: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.7_typescript@5.6.2_/node_modules/@advjs/gui/client/components/common/AGUIHr.vue')['default']
|
|
28
|
+
AGUIIcon: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.7_typescript@5.6.2_/node_modules/@advjs/gui/client/components/icon/AGUIIcon.vue')['default']
|
|
29
|
+
AGUIIconButton: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.7_typescript@5.6.2_/node_modules/@advjs/gui/client/components/button/AGUIIconButton.vue')['default']
|
|
30
|
+
AGUIInnerInput: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.7_typescript@5.6.2_/node_modules/@advjs/gui/client/components/input/AGUIInnerInput.vue')['default']
|
|
31
|
+
AGUIInput: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.7_typescript@5.6.2_/node_modules/@advjs/gui/client/components/input/AGUIInput.vue')['default']
|
|
32
|
+
AGUIInputNumber: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.7_typescript@5.6.2_/node_modules/@advjs/gui/client/components/input/AGUIInputNumber.vue')['default']
|
|
33
|
+
AGUIInputVector: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.7_typescript@5.6.2_/node_modules/@advjs/gui/client/components/input/AGUIInputVector.vue')['default']
|
|
34
|
+
AGUILayout: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.7_typescript@5.6.2_/node_modules/@advjs/gui/client/components/layout/AGUILayout.vue')['default']
|
|
35
|
+
AGUIMenubar: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.7_typescript@5.6.2_/node_modules/@advjs/gui/client/components/menu/AGUIMenubar.vue')['default']
|
|
36
|
+
AGUIMenubarMenu: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.7_typescript@5.6.2_/node_modules/@advjs/gui/client/components/menu/AGUIMenubarMenu.vue')['default']
|
|
37
|
+
AGUINumberField: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.7_typescript@5.6.2_/node_modules/@advjs/gui/client/components/AGUINumberField.vue')['default']
|
|
38
|
+
AGUINumberSlider: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.7_typescript@5.6.2_/node_modules/@advjs/gui/client/components/AGUINumberSlider.vue')['default']
|
|
39
|
+
AGUIOpenDirectory: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.7_typescript@5.6.2_/node_modules/@advjs/gui/client/components/explorer/AGUIOpenDirectory.vue')['default']
|
|
40
|
+
AGUIOverlay: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.7_typescript@5.6.2_/node_modules/@advjs/gui/client/components/AGUIOverlay.vue')['default']
|
|
41
|
+
AGUIPanel: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.7_typescript@5.6.2_/node_modules/@advjs/gui/client/components/AGUIPanel.vue')['default']
|
|
42
|
+
AGUIPropertiesForm: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.7_typescript@5.6.2_/node_modules/@advjs/gui/client/components/panel/AGUIPropertiesForm.vue')['default']
|
|
43
|
+
AGUIPropertiesPanel: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.7_typescript@5.6.2_/node_modules/@advjs/gui/client/components/panel/AGUIPropertiesPanel.vue')['default']
|
|
44
|
+
AGUIProperty: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.7_typescript@5.6.2_/node_modules/@advjs/gui/client/components/AGUIProperty.vue')['default']
|
|
45
|
+
AGUISelect: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.7_typescript@5.6.2_/node_modules/@advjs/gui/client/components/select/AGUISelect.vue')['default']
|
|
46
|
+
AGUISlider: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.7_typescript@5.6.2_/node_modules/@advjs/gui/client/components/AGUISlider.vue')['default']
|
|
47
|
+
AGUITabPanel: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.7_typescript@5.6.2_/node_modules/@advjs/gui/client/components/tabs/AGUITabPanel.vue')['default']
|
|
48
|
+
AGUITabs: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.7_typescript@5.6.2_/node_modules/@advjs/gui/client/components/tabs/AGUITabs.vue')['default']
|
|
49
|
+
AGUITextarea: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.7_typescript@5.6.2_/node_modules/@advjs/gui/client/components/textarea/AGUITextarea.vue')['default']
|
|
50
|
+
AGUIToast: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.7_typescript@5.6.2_/node_modules/@advjs/gui/client/components/toast/AGUIToast.vue')['default']
|
|
51
|
+
AGUIToggleIcon: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.7_typescript@5.6.2_/node_modules/@advjs/gui/client/components/button/AGUIToggleIcon.vue')['default']
|
|
52
|
+
AGUIToolbar: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.7_typescript@5.6.2_/node_modules/@advjs/gui/client/components/toolbar/AGUIToolbar.vue')['default']
|
|
53
|
+
AGUITree: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.7_typescript@5.6.2_/node_modules/@advjs/gui/client/components/tree/AGUITree.vue')['default']
|
|
54
|
+
AGUITreeNode: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.7_typescript@5.6.2_/node_modules/@advjs/gui/client/components/tree/AGUITreeNode.vue')['default']
|
|
55
|
+
BIconChevronLeft: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.7_typescript@5.6.2_/node_modules/@advjs/gui/client/components/icons/BIconChevronLeft.vue')['default']
|
|
56
|
+
BIconChevronRight: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.7_typescript@5.6.2_/node_modules/@advjs/gui/client/components/icons/BIconChevronRight.vue')['default']
|
|
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']
|