@valaxyjs/devtools 0.18.4 → 0.18.6
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-DE51eMH5.js → about-BFD_MvF9.js} +1 -1
- package/dist/client/assets/{categories-DQjxFaH0.js → categories-D_edQMeI.js} +1 -1
- package/dist/client/assets/{index-TkrdMmXn.js → index-C-zhEyv8.js} +115 -90
- package/dist/client/assets/{index-DdMkMZ7h.js → index-Cd46Agkz.js} +3 -3
- package/dist/client/assets/{tags-DITm504b.js → tags-IGhVL7Gg.js} +1 -1
- package/dist/client/index.html +2 -2
- package/package.json +8 -8
- package/src/client/components.d.ts +47 -47
- /package/dist/client/assets/{index-0oFZXSGH.css → index-DWqsJbxC.css} +0 -0
|
@@ -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-C-zhEyv8.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-C-zhEyv8.js';
|
|
3
3
|
|
|
4
4
|
/* unplugin-vue-components disabled */const _sfc_main = {};
|
|
5
5
|
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
const __vite__fileDeps=["./index-Cd46Agkz.js","./_plugin-vue_export-helper-DgDhiqFL.js","./index-DF84L4of.css","./about-BFD_MvF9.js","./categories-D_edQMeI.js","./tags-IGhVL7Gg.js"],__vite__mapDeps=i=>i.map(i=>__vite__fileDeps[i]);
|
|
1
2
|
true&&(function polyfill() {
|
|
2
3
|
const relList = document.createElement('link').relList;
|
|
3
4
|
if (relList && relList.supports && relList.supports('modulepreload')) {
|
|
@@ -44,10 +45,12 @@ true&&(function polyfill() {
|
|
|
44
45
|
/* Injected with object hook! */
|
|
45
46
|
|
|
46
47
|
/**
|
|
47
|
-
* @vue/shared v3.4.
|
|
48
|
+
* @vue/shared v3.4.23
|
|
48
49
|
* (c) 2018-present Yuxi (Evan) You and Vue contributors
|
|
49
50
|
* @license MIT
|
|
50
51
|
**/
|
|
52
|
+
/*! #__NO_SIDE_EFFECTS__ */
|
|
53
|
+
// @__NO_SIDE_EFFECTS__
|
|
51
54
|
function makeMap(str, expectsLowerCase) {
|
|
52
55
|
const set = new Set(str.split(","));
|
|
53
56
|
return expectsLowerCase ? (val) => set.has(val.toLowerCase()) : (val) => set.has(val);
|
|
@@ -217,13 +220,17 @@ const replacer = (_key, val) => {
|
|
|
217
220
|
};
|
|
218
221
|
const stringifySymbol = (v, i = "") => {
|
|
219
222
|
var _a;
|
|
220
|
-
return
|
|
223
|
+
return (
|
|
224
|
+
// Symbol.description in es2019+ so we need to cast here to pass
|
|
225
|
+
// the lib: es2016 check
|
|
226
|
+
isSymbol(v) ? `Symbol(${(_a = v.description) != null ? _a : i})` : v
|
|
227
|
+
);
|
|
221
228
|
};
|
|
222
229
|
|
|
223
230
|
/* Injected with object hook! */
|
|
224
231
|
|
|
225
232
|
/**
|
|
226
|
-
* @vue/reactivity v3.4.
|
|
233
|
+
* @vue/reactivity v3.4.23
|
|
227
234
|
* (c) 2018-present Yuxi (Evan) You and Vue contributors
|
|
228
235
|
* @license MIT
|
|
229
236
|
**/
|
|
@@ -563,25 +570,27 @@ function createArrayInstrumentations() {
|
|
|
563
570
|
return instrumentations;
|
|
564
571
|
}
|
|
565
572
|
function hasOwnProperty(key) {
|
|
573
|
+
if (!isSymbol(key))
|
|
574
|
+
key = String(key);
|
|
566
575
|
const obj = toRaw(this);
|
|
567
576
|
track(obj, "has", key);
|
|
568
577
|
return obj.hasOwnProperty(key);
|
|
569
578
|
}
|
|
570
579
|
class BaseReactiveHandler {
|
|
571
|
-
constructor(_isReadonly = false,
|
|
580
|
+
constructor(_isReadonly = false, _isShallow = false) {
|
|
572
581
|
this._isReadonly = _isReadonly;
|
|
573
|
-
this.
|
|
582
|
+
this._isShallow = _isShallow;
|
|
574
583
|
}
|
|
575
584
|
get(target, key, receiver) {
|
|
576
|
-
const isReadonly2 = this._isReadonly,
|
|
585
|
+
const isReadonly2 = this._isReadonly, isShallow2 = this._isShallow;
|
|
577
586
|
if (key === "__v_isReactive") {
|
|
578
587
|
return !isReadonly2;
|
|
579
588
|
} else if (key === "__v_isReadonly") {
|
|
580
589
|
return isReadonly2;
|
|
581
590
|
} else if (key === "__v_isShallow") {
|
|
582
|
-
return
|
|
591
|
+
return isShallow2;
|
|
583
592
|
} else if (key === "__v_raw") {
|
|
584
|
-
if (receiver === (isReadonly2 ?
|
|
593
|
+
if (receiver === (isReadonly2 ? isShallow2 ? shallowReadonlyMap : readonlyMap : isShallow2 ? shallowReactiveMap : reactiveMap).get(target) || // receiver is not the reactive proxy, but has the same prototype
|
|
585
594
|
// this means the reciever is a user proxy of the reactive proxy
|
|
586
595
|
Object.getPrototypeOf(target) === Object.getPrototypeOf(receiver)) {
|
|
587
596
|
return target;
|
|
@@ -604,7 +613,7 @@ class BaseReactiveHandler {
|
|
|
604
613
|
if (!isReadonly2) {
|
|
605
614
|
track(target, "get", key);
|
|
606
615
|
}
|
|
607
|
-
if (
|
|
616
|
+
if (isShallow2) {
|
|
608
617
|
return res;
|
|
609
618
|
}
|
|
610
619
|
if (isRef(res)) {
|
|
@@ -617,12 +626,12 @@ class BaseReactiveHandler {
|
|
|
617
626
|
}
|
|
618
627
|
}
|
|
619
628
|
class MutableReactiveHandler extends BaseReactiveHandler {
|
|
620
|
-
constructor(
|
|
621
|
-
super(false,
|
|
629
|
+
constructor(isShallow2 = false) {
|
|
630
|
+
super(false, isShallow2);
|
|
622
631
|
}
|
|
623
632
|
set(target, key, value, receiver) {
|
|
624
633
|
let oldValue = target[key];
|
|
625
|
-
if (!this.
|
|
634
|
+
if (!this._isShallow) {
|
|
626
635
|
const isOldValueReadonly = isReadonly(oldValue);
|
|
627
636
|
if (!isShallow(value) && !isReadonly(value)) {
|
|
628
637
|
oldValue = toRaw(oldValue);
|
|
@@ -674,8 +683,8 @@ class MutableReactiveHandler extends BaseReactiveHandler {
|
|
|
674
683
|
}
|
|
675
684
|
}
|
|
676
685
|
class ReadonlyReactiveHandler extends BaseReactiveHandler {
|
|
677
|
-
constructor(
|
|
678
|
-
super(true,
|
|
686
|
+
constructor(isShallow2 = false) {
|
|
687
|
+
super(true, isShallow2);
|
|
679
688
|
}
|
|
680
689
|
set(target, key) {
|
|
681
690
|
return true;
|
|
@@ -889,23 +898,16 @@ function createInstrumentations() {
|
|
|
889
898
|
clear: createReadonlyMethod("clear"),
|
|
890
899
|
forEach: createForEach(true, true)
|
|
891
900
|
};
|
|
892
|
-
const iteratorMethods = [
|
|
901
|
+
const iteratorMethods = [
|
|
902
|
+
"keys",
|
|
903
|
+
"values",
|
|
904
|
+
"entries",
|
|
905
|
+
Symbol.iterator
|
|
906
|
+
];
|
|
893
907
|
iteratorMethods.forEach((method) => {
|
|
894
|
-
mutableInstrumentations2[method] = createIterableMethod(
|
|
895
|
-
|
|
896
|
-
|
|
897
|
-
false
|
|
898
|
-
);
|
|
899
|
-
readonlyInstrumentations2[method] = createIterableMethod(
|
|
900
|
-
method,
|
|
901
|
-
true,
|
|
902
|
-
false
|
|
903
|
-
);
|
|
904
|
-
shallowInstrumentations2[method] = createIterableMethod(
|
|
905
|
-
method,
|
|
906
|
-
false,
|
|
907
|
-
true
|
|
908
|
-
);
|
|
908
|
+
mutableInstrumentations2[method] = createIterableMethod(method, false, false);
|
|
909
|
+
readonlyInstrumentations2[method] = createIterableMethod(method, true, false);
|
|
910
|
+
shallowInstrumentations2[method] = createIterableMethod(method, false, true);
|
|
909
911
|
shallowReadonlyInstrumentations2[method] = createIterableMethod(
|
|
910
912
|
method,
|
|
911
913
|
true,
|
|
@@ -1037,7 +1039,7 @@ function isShallow(value) {
|
|
|
1037
1039
|
return !!(value && value["__v_isShallow"]);
|
|
1038
1040
|
}
|
|
1039
1041
|
function isProxy(value) {
|
|
1040
|
-
return
|
|
1042
|
+
return value ? !!value["__v_raw"] : false;
|
|
1041
1043
|
}
|
|
1042
1044
|
function toRaw(observed) {
|
|
1043
1045
|
const raw = observed && observed["__v_raw"];
|
|
@@ -1053,6 +1055,7 @@ const toReactive = (value) => isObject(value) ? reactive(value) : value;
|
|
|
1053
1055
|
const toReadonly = (value) => isObject(value) ? readonly(value) : value;
|
|
1054
1056
|
class ComputedRefImpl {
|
|
1055
1057
|
constructor(getter, _setter, isReadonly2, isSSR) {
|
|
1058
|
+
this.getter = getter;
|
|
1056
1059
|
this._setter = _setter;
|
|
1057
1060
|
this.dep = void 0;
|
|
1058
1061
|
this.__v_isRef = true;
|
|
@@ -1185,7 +1188,7 @@ function proxyRefs(objectWithRefs) {
|
|
|
1185
1188
|
/* Injected with object hook! */
|
|
1186
1189
|
|
|
1187
1190
|
/**
|
|
1188
|
-
* @vue/runtime-core v3.4.
|
|
1191
|
+
* @vue/runtime-core v3.4.23
|
|
1189
1192
|
* (c) 2018-present Yuxi (Evan) You and Vue contributors
|
|
1190
1193
|
* @license MIT
|
|
1191
1194
|
**/
|
|
@@ -1201,7 +1204,10 @@ function warn$1(msg, ...args) {
|
|
|
1201
1204
|
instance,
|
|
1202
1205
|
11,
|
|
1203
1206
|
[
|
|
1204
|
-
msg + args.
|
|
1207
|
+
msg + args.map((a) => {
|
|
1208
|
+
var _a, _b;
|
|
1209
|
+
return (_b = (_a = a.toString) == null ? void 0 : _a.call(a)) != null ? _b : JSON.stringify(a);
|
|
1210
|
+
}).join(""),
|
|
1205
1211
|
instance && instance.proxy,
|
|
1206
1212
|
trace.map(
|
|
1207
1213
|
({ vnode }) => `at <${formatComponentName(instance, vnode.type)}>`
|
|
@@ -1304,11 +1310,13 @@ function callWithAsyncErrorHandling(fn, instance, type, args) {
|
|
|
1304
1310
|
}
|
|
1305
1311
|
return res;
|
|
1306
1312
|
}
|
|
1307
|
-
|
|
1308
|
-
|
|
1309
|
-
|
|
1313
|
+
if (isArray$1(fn)) {
|
|
1314
|
+
const values = [];
|
|
1315
|
+
for (let i = 0; i < fn.length; i++) {
|
|
1316
|
+
values.push(callWithAsyncErrorHandling(fn[i], instance, type, args));
|
|
1317
|
+
}
|
|
1318
|
+
return values;
|
|
1310
1319
|
}
|
|
1311
|
-
return values;
|
|
1312
1320
|
}
|
|
1313
1321
|
function handleError(err, instance, type, throwInDev = true) {
|
|
1314
1322
|
const contextVNode = instance ? instance.vnode : null;
|
|
@@ -1329,12 +1337,14 @@ function handleError(err, instance, type, throwInDev = true) {
|
|
|
1329
1337
|
}
|
|
1330
1338
|
const appErrorHandler = instance.appContext.config.errorHandler;
|
|
1331
1339
|
if (appErrorHandler) {
|
|
1340
|
+
pauseTracking();
|
|
1332
1341
|
callWithErrorHandling(
|
|
1333
1342
|
appErrorHandler,
|
|
1334
1343
|
null,
|
|
1335
1344
|
10,
|
|
1336
1345
|
[err, exposedInstance, errorInfo]
|
|
1337
1346
|
);
|
|
1347
|
+
resetTracking();
|
|
1338
1348
|
return;
|
|
1339
1349
|
}
|
|
1340
1350
|
}
|
|
@@ -2288,6 +2298,9 @@ const publicPropertiesMap = (
|
|
|
2288
2298
|
const hasSetupBinding = (state, key) => state !== EMPTY_OBJ && !state.__isScriptSetup && hasOwn(state, key);
|
|
2289
2299
|
const PublicInstanceProxyHandlers = {
|
|
2290
2300
|
get({ _: instance }, key) {
|
|
2301
|
+
if (key === "__v_skip") {
|
|
2302
|
+
return true;
|
|
2303
|
+
}
|
|
2291
2304
|
const { ctx, setupState, data, props, accessCache, type, appContext } = instance;
|
|
2292
2305
|
let normalizedProps;
|
|
2293
2306
|
if (key[0] !== "$") {
|
|
@@ -2327,7 +2340,7 @@ const PublicInstanceProxyHandlers = {
|
|
|
2327
2340
|
let cssModule, globalProperties;
|
|
2328
2341
|
if (publicGetter) {
|
|
2329
2342
|
if (key === "$attrs") {
|
|
2330
|
-
track(instance, "get",
|
|
2343
|
+
track(instance.attrs, "get", "");
|
|
2331
2344
|
}
|
|
2332
2345
|
return publicGetter(instance);
|
|
2333
2346
|
} else if (
|
|
@@ -2864,10 +2877,12 @@ function inject(key, defaultValue, treatDefaultAsFactory = false) {
|
|
|
2864
2877
|
} else ;
|
|
2865
2878
|
}
|
|
2866
2879
|
}
|
|
2880
|
+
const internalObjectProto = /* @__PURE__ */ Object.create(null);
|
|
2881
|
+
const createInternalObject = () => Object.create(internalObjectProto);
|
|
2882
|
+
const isInternalObject = (obj) => Object.getPrototypeOf(obj) === internalObjectProto;
|
|
2867
2883
|
function initProps(instance, rawProps, isStateful, isSSR = false) {
|
|
2868
2884
|
const props = {};
|
|
2869
|
-
const attrs =
|
|
2870
|
-
def(attrs, InternalObjectKey, 1);
|
|
2885
|
+
const attrs = createInternalObject();
|
|
2871
2886
|
instance.propsDefaults = /* @__PURE__ */ Object.create(null);
|
|
2872
2887
|
setFullProps(instance, rawProps, props, attrs);
|
|
2873
2888
|
for (const key in instance.propsOptions[0]) {
|
|
@@ -2972,7 +2987,7 @@ function updateProps(instance, rawProps, rawPrevProps, optimized) {
|
|
|
2972
2987
|
}
|
|
2973
2988
|
}
|
|
2974
2989
|
if (hasAttrsChanged) {
|
|
2975
|
-
trigger(instance, "set", "
|
|
2990
|
+
trigger(instance.attrs, "set", "");
|
|
2976
2991
|
}
|
|
2977
2992
|
}
|
|
2978
2993
|
function setFullProps(instance, rawProps, props, attrs) {
|
|
@@ -3191,20 +3206,19 @@ const initSlots = (instance, children) => {
|
|
|
3191
3206
|
const type = children._;
|
|
3192
3207
|
if (type) {
|
|
3193
3208
|
instance.slots = toRaw(children);
|
|
3194
|
-
def(
|
|
3209
|
+
def(instance.slots, "_", type);
|
|
3195
3210
|
} else {
|
|
3196
3211
|
normalizeObjectSlots(
|
|
3197
3212
|
children,
|
|
3198
|
-
instance.slots =
|
|
3213
|
+
instance.slots = createInternalObject()
|
|
3199
3214
|
);
|
|
3200
3215
|
}
|
|
3201
3216
|
} else {
|
|
3202
|
-
instance.slots =
|
|
3217
|
+
instance.slots = createInternalObject();
|
|
3203
3218
|
if (children) {
|
|
3204
3219
|
normalizeVNodeSlots(instance, children);
|
|
3205
3220
|
}
|
|
3206
3221
|
}
|
|
3207
|
-
def(instance.slots, InternalObjectKey, 1);
|
|
3208
3222
|
};
|
|
3209
3223
|
const updateSlots = (instance, children, optimized) => {
|
|
3210
3224
|
const { vnode, slots } = instance;
|
|
@@ -4749,7 +4763,6 @@ function isVNode(value) {
|
|
|
4749
4763
|
function isSameVNodeType(n1, n2) {
|
|
4750
4764
|
return n1.type === n2.type && n1.key === n2.key;
|
|
4751
4765
|
}
|
|
4752
|
-
const InternalObjectKey = `__vInternal`;
|
|
4753
4766
|
const normalizeKey = ({ key }) => key != null ? key : null;
|
|
4754
4767
|
const normalizeRef = ({
|
|
4755
4768
|
ref: ref3,
|
|
@@ -4867,7 +4880,7 @@ function _createVNode(type, props = null, children = null, patchFlag = 0, dynami
|
|
|
4867
4880
|
function guardReactiveProps(props) {
|
|
4868
4881
|
if (!props)
|
|
4869
4882
|
return null;
|
|
4870
|
-
return isProxy(props) ||
|
|
4883
|
+
return isProxy(props) || isInternalObject(props) ? extend({}, props) : props;
|
|
4871
4884
|
}
|
|
4872
4885
|
function cloneVNode(vnode, extraProps, mergeRef = false) {
|
|
4873
4886
|
const { props, ref: ref3, patchFlag, children } = vnode;
|
|
@@ -4960,7 +4973,7 @@ function normalizeChildren(vnode, children) {
|
|
|
4960
4973
|
} else {
|
|
4961
4974
|
type = 32;
|
|
4962
4975
|
const slotFlag = children._;
|
|
4963
|
-
if (!slotFlag && !(
|
|
4976
|
+
if (!slotFlag && !isInternalObject(children)) {
|
|
4964
4977
|
children._ctx = currentRenderingInstance;
|
|
4965
4978
|
} else if (slotFlag === 3 && currentRenderingInstance) {
|
|
4966
4979
|
if (currentRenderingInstance.slots._ === 1) {
|
|
@@ -5163,7 +5176,7 @@ function setupComponent(instance, isSSR = false) {
|
|
|
5163
5176
|
function setupStatefulComponent(instance, isSSR) {
|
|
5164
5177
|
const Component = instance.type;
|
|
5165
5178
|
instance.accessCache = /* @__PURE__ */ Object.create(null);
|
|
5166
|
-
instance.proxy =
|
|
5179
|
+
instance.proxy = new Proxy(instance.ctx, PublicInstanceProxyHandlers);
|
|
5167
5180
|
const { setup } = Component;
|
|
5168
5181
|
if (setup) {
|
|
5169
5182
|
const setupContext = instance.setupContext = setup.length > 1 ? createSetupContext(instance) : null;
|
|
@@ -5245,26 +5258,19 @@ function finishComponentSetup(instance, isSSR, skipOptions) {
|
|
|
5245
5258
|
}
|
|
5246
5259
|
}
|
|
5247
5260
|
}
|
|
5248
|
-
|
|
5249
|
-
|
|
5250
|
-
|
|
5251
|
-
|
|
5252
|
-
|
|
5253
|
-
|
|
5254
|
-
return target[key];
|
|
5255
|
-
}
|
|
5256
|
-
}
|
|
5257
|
-
));
|
|
5258
|
-
}
|
|
5261
|
+
const attrsProxyHandlers = {
|
|
5262
|
+
get(target, key) {
|
|
5263
|
+
track(target, "get", "");
|
|
5264
|
+
return target[key];
|
|
5265
|
+
}
|
|
5266
|
+
};
|
|
5259
5267
|
function createSetupContext(instance) {
|
|
5260
5268
|
const expose = (exposed) => {
|
|
5261
5269
|
instance.exposed = exposed || {};
|
|
5262
5270
|
};
|
|
5263
5271
|
{
|
|
5264
5272
|
return {
|
|
5265
|
-
|
|
5266
|
-
return getAttrsProxy(instance);
|
|
5267
|
-
},
|
|
5273
|
+
attrs: new Proxy(instance.attrs, attrsProxyHandlers),
|
|
5268
5274
|
slots: instance.slots,
|
|
5269
5275
|
emit: instance.emit,
|
|
5270
5276
|
expose
|
|
@@ -5318,7 +5324,8 @@ function isClassComponent(value) {
|
|
|
5318
5324
|
return isFunction(value) && "__vccOpts" in value;
|
|
5319
5325
|
}
|
|
5320
5326
|
const computed = (getterOrOptions, debugOptions) => {
|
|
5321
|
-
|
|
5327
|
+
const c = computed$1(getterOrOptions, debugOptions, isInSSRComponentSetup);
|
|
5328
|
+
return c;
|
|
5322
5329
|
};
|
|
5323
5330
|
function h(type, propsOrChildren, children) {
|
|
5324
5331
|
const l = arguments.length;
|
|
@@ -5340,12 +5347,12 @@ function h(type, propsOrChildren, children) {
|
|
|
5340
5347
|
return createVNode(type, propsOrChildren, children);
|
|
5341
5348
|
}
|
|
5342
5349
|
}
|
|
5343
|
-
const version = "3.4.
|
|
5350
|
+
const version = "3.4.23";
|
|
5344
5351
|
|
|
5345
5352
|
/* Injected with object hook! */
|
|
5346
5353
|
|
|
5347
5354
|
/**
|
|
5348
|
-
* @vue/runtime-dom v3.4.
|
|
5355
|
+
* @vue/runtime-dom v3.4.23
|
|
5349
5356
|
* (c) 2018-present Yuxi (Evan) You and Vue contributors
|
|
5350
5357
|
* @license MIT
|
|
5351
5358
|
**/
|
|
@@ -5430,19 +5437,28 @@ function patchClass(el, value, isSVG) {
|
|
|
5430
5437
|
el.className = value;
|
|
5431
5438
|
}
|
|
5432
5439
|
}
|
|
5433
|
-
const
|
|
5440
|
+
const vShowOriginalDisplay = Symbol("_vod");
|
|
5441
|
+
const vShowHidden = Symbol("_vsh");
|
|
5434
5442
|
const CSS_VAR_TEXT = Symbol("");
|
|
5435
5443
|
const displayRE = /(^|;)\s*display\s*:/;
|
|
5436
5444
|
function patchStyle(el, prev, next) {
|
|
5437
5445
|
const style = el.style;
|
|
5438
5446
|
const isCssString = isString(next);
|
|
5439
|
-
const currentDisplay = style.display;
|
|
5440
5447
|
let hasControlledDisplay = false;
|
|
5441
5448
|
if (next && !isCssString) {
|
|
5442
|
-
if (prev
|
|
5443
|
-
|
|
5444
|
-
|
|
5445
|
-
|
|
5449
|
+
if (prev) {
|
|
5450
|
+
if (!isString(prev)) {
|
|
5451
|
+
for (const key in prev) {
|
|
5452
|
+
if (next[key] == null) {
|
|
5453
|
+
setStyle(style, key, "");
|
|
5454
|
+
}
|
|
5455
|
+
}
|
|
5456
|
+
} else {
|
|
5457
|
+
for (const prevStyle of prev.split(";")) {
|
|
5458
|
+
const key = prevStyle.slice(0, prevStyle.indexOf(":")).trim();
|
|
5459
|
+
if (next[key] == null) {
|
|
5460
|
+
setStyle(style, key, "");
|
|
5461
|
+
}
|
|
5446
5462
|
}
|
|
5447
5463
|
}
|
|
5448
5464
|
}
|
|
@@ -5466,9 +5482,11 @@ function patchStyle(el, prev, next) {
|
|
|
5466
5482
|
el.removeAttribute("style");
|
|
5467
5483
|
}
|
|
5468
5484
|
}
|
|
5469
|
-
if (
|
|
5470
|
-
el[
|
|
5471
|
-
|
|
5485
|
+
if (vShowOriginalDisplay in el) {
|
|
5486
|
+
el[vShowOriginalDisplay] = hasControlledDisplay ? style.display : "";
|
|
5487
|
+
if (el[vShowHidden]) {
|
|
5488
|
+
style.display = "none";
|
|
5489
|
+
}
|
|
5472
5490
|
}
|
|
5473
5491
|
}
|
|
5474
5492
|
const importantRE = /\s*!important$/;
|
|
@@ -5542,15 +5560,15 @@ function patchDOMProp(el, key, value, prevChildren, parentComponent, parentSuspe
|
|
|
5542
5560
|
const tag = el.tagName;
|
|
5543
5561
|
if (key === "value" && tag !== "PROGRESS" && // custom elements may use _value internally
|
|
5544
5562
|
!tag.includes("-")) {
|
|
5545
|
-
el.
|
|
5546
|
-
const oldValue = tag === "OPTION" ? el.getAttribute("value") : el.value;
|
|
5563
|
+
const oldValue = tag === "OPTION" ? el.getAttribute("value") || "" : el.value;
|
|
5547
5564
|
const newValue = value == null ? "" : value;
|
|
5548
|
-
if (oldValue !== newValue) {
|
|
5565
|
+
if (oldValue !== newValue || !("_value" in el)) {
|
|
5549
5566
|
el.value = newValue;
|
|
5550
5567
|
}
|
|
5551
5568
|
if (value == null) {
|
|
5552
5569
|
el.removeAttribute(key);
|
|
5553
5570
|
}
|
|
5571
|
+
el._value = value;
|
|
5554
5572
|
return;
|
|
5555
5573
|
}
|
|
5556
5574
|
let needRemove = false;
|
|
@@ -5587,7 +5605,10 @@ function patchEvent(el, rawName, prevValue, nextValue, instance = null) {
|
|
|
5587
5605
|
} else {
|
|
5588
5606
|
const [name, options] = parseName(rawName);
|
|
5589
5607
|
if (nextValue) {
|
|
5590
|
-
const invoker = invokers[rawName] = createInvoker(
|
|
5608
|
+
const invoker = invokers[rawName] = createInvoker(
|
|
5609
|
+
nextValue,
|
|
5610
|
+
instance
|
|
5611
|
+
);
|
|
5591
5612
|
addEventListener(el, name, invoker, options);
|
|
5592
5613
|
} else if (existingInvoker) {
|
|
5593
5614
|
removeEventListener(el, name, existingInvoker, options);
|
|
@@ -5637,7 +5658,9 @@ function patchStopImmediatePropagation(e, value) {
|
|
|
5637
5658
|
originalStop.call(e);
|
|
5638
5659
|
e._stopped = true;
|
|
5639
5660
|
};
|
|
5640
|
-
return value.map(
|
|
5661
|
+
return value.map(
|
|
5662
|
+
(fn) => (e2) => !e2._stopped && fn && fn(e2)
|
|
5663
|
+
);
|
|
5641
5664
|
} else {
|
|
5642
5665
|
return value;
|
|
5643
5666
|
}
|
|
@@ -5755,6 +5778,11 @@ const scriptRel = 'modulepreload';const assetsURL = function(dep, importerUrl) {
|
|
|
5755
5778
|
// @ts-expect-error true will be replaced with boolean later
|
|
5756
5779
|
if (true && deps && deps.length > 0) {
|
|
5757
5780
|
const links = document.getElementsByTagName('link');
|
|
5781
|
+
const cspNonceMeta = document.querySelector('meta[property=csp-nonce]');
|
|
5782
|
+
// `.nonce` should be used to get along with nonce hiding (https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/nonce#accessing_nonces_and_nonce_hiding)
|
|
5783
|
+
// Firefox 67-74 uses modern chunks and supports CSP nonce, but does not support `.nonce`
|
|
5784
|
+
// in that case fallback to getAttribute
|
|
5785
|
+
const cspNonce = cspNonceMeta?.nonce || cspNonceMeta?.getAttribute('nonce');
|
|
5758
5786
|
promise = Promise.all(deps.map((dep) => {
|
|
5759
5787
|
// @ts-expect-error assetsURL is declared before preload.toString()
|
|
5760
5788
|
dep = assetsURL(dep, importerUrl);
|
|
@@ -5787,6 +5815,9 @@ const scriptRel = 'modulepreload';const assetsURL = function(dep, importerUrl) {
|
|
|
5787
5815
|
link.crossOrigin = '';
|
|
5788
5816
|
}
|
|
5789
5817
|
link.href = dep;
|
|
5818
|
+
if (cspNonce) {
|
|
5819
|
+
link.setAttribute('nonce', cspNonce);
|
|
5820
|
+
}
|
|
5790
5821
|
document.head.appendChild(link);
|
|
5791
5822
|
if (isCss) {
|
|
5792
5823
|
return new Promise((res, rej) => {
|
|
@@ -5814,25 +5845,25 @@ const routes = [
|
|
|
5814
5845
|
{
|
|
5815
5846
|
path: '/',
|
|
5816
5847
|
name: '/',
|
|
5817
|
-
component: () => __vitePreload(() => import('./index-
|
|
5848
|
+
component: () => __vitePreload(() => import('./index-Cd46Agkz.js'),true?__vite__mapDeps([0,1,2]):void 0,import.meta.url),
|
|
5818
5849
|
/* no children */
|
|
5819
5850
|
},
|
|
5820
5851
|
{
|
|
5821
5852
|
path: '/about',
|
|
5822
5853
|
name: '/about',
|
|
5823
|
-
component: () => __vitePreload(() => import('./about-
|
|
5854
|
+
component: () => __vitePreload(() => import('./about-BFD_MvF9.js'),true?__vite__mapDeps([3,1]):void 0,import.meta.url),
|
|
5824
5855
|
/* no children */
|
|
5825
5856
|
},
|
|
5826
5857
|
{
|
|
5827
5858
|
path: '/categories',
|
|
5828
5859
|
name: '/categories',
|
|
5829
|
-
component: () => __vitePreload(() => import('./categories-
|
|
5860
|
+
component: () => __vitePreload(() => import('./categories-D_edQMeI.js'),true?__vite__mapDeps([4,1]):void 0,import.meta.url),
|
|
5830
5861
|
/* no children */
|
|
5831
5862
|
},
|
|
5832
5863
|
{
|
|
5833
5864
|
path: '/tags',
|
|
5834
5865
|
name: '/tags',
|
|
5835
|
-
component: () => __vitePreload(() => import('./tags-
|
|
5866
|
+
component: () => __vitePreload(() => import('./tags-IGhVL7Gg.js'),true?__vite__mapDeps([5,1]):void 0,import.meta.url),
|
|
5836
5867
|
/* no children */
|
|
5837
5868
|
}
|
|
5838
5869
|
];
|
|
@@ -7735,9 +7766,3 @@ app.mount("#app");
|
|
|
7735
7766
|
/* Injected with object hook! */
|
|
7736
7767
|
|
|
7737
7768
|
export { h as A, normalizeStyle as B, isStaticMode as C, Fragment as F, createElementBlock as a, createCommentVNode as b, computed as c, defineComponent as d, ref as e, onMounted as f, getAppWindow as g, createBaseVNode as h, resolveComponent as i, createBlock as j, renderList as k, createTextVNode as l, createVNode as m, normalizeClass as n, openBlock as o, pageData as p, toRaw as q, renderSlot as r, frontmatter as s, toDisplayString as t, unref as u, getWindowProperty as v, withCtx as w, getGlobalValaxyProperty as x, activePath as y, devtoolsRouter as z };
|
|
7738
|
-
function __vite__mapDeps(indexes) {
|
|
7739
|
-
if (!__vite__mapDeps.viteFileDeps) {
|
|
7740
|
-
__vite__mapDeps.viteFileDeps = ["./index-DdMkMZ7h.js","./_plugin-vue_export-helper-DgDhiqFL.js","./index-DF84L4of.css","./about-DE51eMH5.js","./categories-DQjxFaH0.js","./tags-DITm504b.js"]
|
|
7741
|
-
}
|
|
7742
|
-
return indexes.map((i) => __vite__mapDeps.viteFileDeps[i])
|
|
7743
|
-
}
|
|
@@ -1,4 +1,4 @@
|
|
|
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 h, B as normalizeStyle, C 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 h, B as normalizeStyle, C as isStaticMode } from './index-C-zhEyv8.js';
|
|
2
2
|
import { _ as _export_sfc } from './_plugin-vue_export-helper-DgDhiqFL.js';
|
|
3
3
|
|
|
4
4
|
const target = getAppWindow();
|
|
@@ -2792,7 +2792,7 @@ function dispatchRequest(config) {
|
|
|
2792
2792
|
|
|
2793
2793
|
/* Injected with object hook! */
|
|
2794
2794
|
|
|
2795
|
-
const headersToObject = (thing) => thing instanceof AxiosHeaders$1 ? thing
|
|
2795
|
+
const headersToObject = (thing) => thing instanceof AxiosHeaders$1 ? { ...thing } : thing;
|
|
2796
2796
|
|
|
2797
2797
|
/**
|
|
2798
2798
|
* Config-specific merge-function which creates a new config-object
|
|
@@ -2896,7 +2896,7 @@ function mergeConfig(config1, config2) {
|
|
|
2896
2896
|
|
|
2897
2897
|
/* Injected with object hook! */
|
|
2898
2898
|
|
|
2899
|
-
const VERSION = "1.6.
|
|
2899
|
+
const VERSION = "1.6.8";
|
|
2900
2900
|
/* Injected with object hook! */
|
|
2901
2901
|
|
|
2902
2902
|
const validators$1 = {};
|
|
@@ -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-C-zhEyv8.js';
|
|
3
3
|
|
|
4
4
|
/* unplugin-vue-components disabled */const _sfc_main = {};
|
|
5
5
|
|
package/dist/client/index.html
CHANGED
|
@@ -6,8 +6,8 @@
|
|
|
6
6
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
7
7
|
<link rel="icon" href="/favicon.svg" type="image/svg+xml">
|
|
8
8
|
<title>Valaxy Devtools</title>
|
|
9
|
-
<script type="module" crossorigin src="./assets/index-
|
|
10
|
-
<link rel="stylesheet" crossorigin href="./assets/index-
|
|
9
|
+
<script type="module" crossorigin src="./assets/index-C-zhEyv8.js"></script>
|
|
10
|
+
<link rel="stylesheet" crossorigin href="./assets/index-DWqsJbxC.css">
|
|
11
11
|
</head>
|
|
12
12
|
|
|
13
13
|
<body data-vite-inspect-mode="DEV">
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@valaxyjs/devtools",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.18.
|
|
4
|
+
"version": "0.18.6",
|
|
5
5
|
"repository": {
|
|
6
6
|
"url": "https://github.com/YunYouJun/valaxy"
|
|
7
7
|
},
|
|
@@ -18,23 +18,23 @@
|
|
|
18
18
|
"types": "dist/index.d.ts",
|
|
19
19
|
"dependencies": {
|
|
20
20
|
"@rollup/pluginutils": "^5.1.0",
|
|
21
|
-
"axios": "^1.6.
|
|
21
|
+
"axios": "^1.6.8",
|
|
22
22
|
"body-parser": "^1.20.2",
|
|
23
|
-
"http-proxy-middleware": "^
|
|
23
|
+
"http-proxy-middleware": "^3.0.0",
|
|
24
24
|
"picocolors": "^1.0.0",
|
|
25
25
|
"sirv": "^2.0.4"
|
|
26
26
|
},
|
|
27
27
|
"devDependencies": {
|
|
28
|
-
"@advjs/gui": "0.0.
|
|
29
|
-
"@iconify-json/ri": "^1.1.
|
|
28
|
+
"@advjs/gui": "0.0.7-beta.1",
|
|
29
|
+
"@iconify-json/ri": "^1.1.20",
|
|
30
30
|
"@types/body-parser": "^1.19.5",
|
|
31
31
|
"@types/splitpanes": "^2.2.6",
|
|
32
32
|
"gray-matter": "^4.0.3",
|
|
33
33
|
"splitpanes": "^3.1.5",
|
|
34
|
-
"typescript": "^5.
|
|
34
|
+
"typescript": "^5.4.5",
|
|
35
35
|
"unbuild": "^2.0.0",
|
|
36
|
-
"unplugin-vue-router": "^0.8.
|
|
37
|
-
"vite": "^5.
|
|
36
|
+
"unplugin-vue-router": "^0.8.6",
|
|
37
|
+
"vite": "^5.2.9"
|
|
38
38
|
},
|
|
39
39
|
"scripts": {
|
|
40
40
|
"build": "rimraf dist && run-s build:*",
|
|
@@ -7,53 +7,53 @@ export {}
|
|
|
7
7
|
|
|
8
8
|
declare module 'vue' {
|
|
9
9
|
export interface GlobalComponents {
|
|
10
|
-
AGUIAccordion: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.
|
|
11
|
-
AGUIAccordionItem: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.
|
|
12
|
-
AGUIApp: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.
|
|
13
|
-
AGUIAssetsExplorer: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.
|
|
14
|
-
AGUIBreadcrumb: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.
|
|
15
|
-
AGUIButton: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.
|
|
16
|
-
AGUICheckbox: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.
|
|
17
|
-
AGUIColorPicker: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.
|
|
18
|
-
AGUIContextMenu: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.
|
|
19
|
-
AGUIContextMenuItem: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.
|
|
20
|
-
AGUIDetails: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.
|
|
21
|
-
AGUIExplorerControls: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.
|
|
22
|
-
AGUIFileHandler: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.
|
|
23
|
-
AGUIFileItem: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.
|
|
24
|
-
AGUIFileList: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.
|
|
25
|
-
AGUIForm: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.
|
|
26
|
-
AGUIFormItem: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.
|
|
27
|
-
AGUIHr: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.
|
|
28
|
-
AGUIIcon: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.
|
|
29
|
-
AGUIIconButton: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.
|
|
30
|
-
AGUIInnerInput: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.
|
|
31
|
-
AGUIInput: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.
|
|
32
|
-
AGUIInputNumber: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.
|
|
33
|
-
AGUIInputVector: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.
|
|
34
|
-
AGUILayout: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.
|
|
35
|
-
AGUIMenubar: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.
|
|
36
|
-
AGUIMenubarMenu: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.
|
|
37
|
-
AGUINumberField: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.
|
|
38
|
-
AGUINumberSlider: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.
|
|
39
|
-
AGUIOpenDirectory: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.
|
|
40
|
-
AGUIOverlay: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.
|
|
41
|
-
AGUIPanel: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.
|
|
42
|
-
AGUIPropertiesForm: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.
|
|
43
|
-
AGUIPropertiesPanel: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.
|
|
44
|
-
AGUIProperty: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.
|
|
45
|
-
AGUISelect: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.
|
|
46
|
-
AGUISlider: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.
|
|
47
|
-
AGUITabPanel: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.
|
|
48
|
-
AGUITabs: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.
|
|
49
|
-
AGUITextarea: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.
|
|
50
|
-
AGUIToast: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.
|
|
51
|
-
AGUIToggleIcon: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.
|
|
52
|
-
AGUIToolbar: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.
|
|
53
|
-
AGUITree: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.
|
|
54
|
-
AGUITreeNode: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.
|
|
55
|
-
BIconChevronLeft: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.
|
|
56
|
-
BIconChevronRight: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.
|
|
10
|
+
AGUIAccordion: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.4.23/node_modules/@advjs/gui/client/components/accordion/AGUIAccordion.vue')['default']
|
|
11
|
+
AGUIAccordionItem: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.4.23/node_modules/@advjs/gui/client/components/accordion/AGUIAccordionItem.vue')['default']
|
|
12
|
+
AGUIApp: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.4.23/node_modules/@advjs/gui/client/components/AGUIApp.vue')['default']
|
|
13
|
+
AGUIAssetsExplorer: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.4.23/node_modules/@advjs/gui/client/components/explorer/AGUIAssetsExplorer.vue')['default']
|
|
14
|
+
AGUIBreadcrumb: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.4.23/node_modules/@advjs/gui/client/components/breadcrumb/AGUIBreadcrumb.vue')['default']
|
|
15
|
+
AGUIButton: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.4.23/node_modules/@advjs/gui/client/components/button/AGUIButton.vue')['default']
|
|
16
|
+
AGUICheckbox: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.4.23/node_modules/@advjs/gui/client/components/AGUICheckbox.vue')['default']
|
|
17
|
+
AGUIColorPicker: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.4.23/node_modules/@advjs/gui/client/components/AGUIColorPicker.vue')['default']
|
|
18
|
+
AGUIContextMenu: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.4.23/node_modules/@advjs/gui/client/components/context-menu/AGUIContextMenu.vue')['default']
|
|
19
|
+
AGUIContextMenuItem: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.4.23/node_modules/@advjs/gui/client/components/context-menu/AGUIContextMenuItem.vue')['default']
|
|
20
|
+
AGUIDetails: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.4.23/node_modules/@advjs/gui/client/components/AGUIDetails.vue')['default']
|
|
21
|
+
AGUIExplorerControls: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.4.23/node_modules/@advjs/gui/client/components/explorer/AGUIExplorerControls.vue')['default']
|
|
22
|
+
AGUIFileHandler: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.4.23/node_modules/@advjs/gui/client/components/file/AGUIFileHandler.vue')['default']
|
|
23
|
+
AGUIFileItem: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.4.23/node_modules/@advjs/gui/client/components/explorer/AGUIFileItem.vue')['default']
|
|
24
|
+
AGUIFileList: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.4.23/node_modules/@advjs/gui/client/components/explorer/AGUIFileList.vue')['default']
|
|
25
|
+
AGUIForm: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.4.23/node_modules/@advjs/gui/client/components/form/AGUIForm.vue')['default']
|
|
26
|
+
AGUIFormItem: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.4.23/node_modules/@advjs/gui/client/components/form/AGUIFormItem.vue')['default']
|
|
27
|
+
AGUIHr: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.4.23/node_modules/@advjs/gui/client/components/common/AGUIHr.vue')['default']
|
|
28
|
+
AGUIIcon: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.4.23/node_modules/@advjs/gui/client/components/icon/AGUIIcon.vue')['default']
|
|
29
|
+
AGUIIconButton: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.4.23/node_modules/@advjs/gui/client/components/button/AGUIIconButton.vue')['default']
|
|
30
|
+
AGUIInnerInput: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.4.23/node_modules/@advjs/gui/client/components/input/AGUIInnerInput.vue')['default']
|
|
31
|
+
AGUIInput: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.4.23/node_modules/@advjs/gui/client/components/input/AGUIInput.vue')['default']
|
|
32
|
+
AGUIInputNumber: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.4.23/node_modules/@advjs/gui/client/components/input/AGUIInputNumber.vue')['default']
|
|
33
|
+
AGUIInputVector: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.4.23/node_modules/@advjs/gui/client/components/input/AGUIInputVector.vue')['default']
|
|
34
|
+
AGUILayout: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.4.23/node_modules/@advjs/gui/client/components/layout/AGUILayout.vue')['default']
|
|
35
|
+
AGUIMenubar: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.4.23/node_modules/@advjs/gui/client/components/menu/AGUIMenubar.vue')['default']
|
|
36
|
+
AGUIMenubarMenu: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.4.23/node_modules/@advjs/gui/client/components/menu/AGUIMenubarMenu.vue')['default']
|
|
37
|
+
AGUINumberField: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.4.23/node_modules/@advjs/gui/client/components/AGUINumberField.vue')['default']
|
|
38
|
+
AGUINumberSlider: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.4.23/node_modules/@advjs/gui/client/components/AGUINumberSlider.vue')['default']
|
|
39
|
+
AGUIOpenDirectory: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.4.23/node_modules/@advjs/gui/client/components/explorer/AGUIOpenDirectory.vue')['default']
|
|
40
|
+
AGUIOverlay: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.4.23/node_modules/@advjs/gui/client/components/AGUIOverlay.vue')['default']
|
|
41
|
+
AGUIPanel: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.4.23/node_modules/@advjs/gui/client/components/AGUIPanel.vue')['default']
|
|
42
|
+
AGUIPropertiesForm: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.4.23/node_modules/@advjs/gui/client/components/panel/AGUIPropertiesForm.vue')['default']
|
|
43
|
+
AGUIPropertiesPanel: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.4.23/node_modules/@advjs/gui/client/components/panel/AGUIPropertiesPanel.vue')['default']
|
|
44
|
+
AGUIProperty: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.4.23/node_modules/@advjs/gui/client/components/AGUIProperty.vue')['default']
|
|
45
|
+
AGUISelect: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.4.23/node_modules/@advjs/gui/client/components/select/AGUISelect.vue')['default']
|
|
46
|
+
AGUISlider: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.4.23/node_modules/@advjs/gui/client/components/AGUISlider.vue')['default']
|
|
47
|
+
AGUITabPanel: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.4.23/node_modules/@advjs/gui/client/components/tabs/AGUITabPanel.vue')['default']
|
|
48
|
+
AGUITabs: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.4.23/node_modules/@advjs/gui/client/components/tabs/AGUITabs.vue')['default']
|
|
49
|
+
AGUITextarea: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.4.23/node_modules/@advjs/gui/client/components/textarea/AGUITextarea.vue')['default']
|
|
50
|
+
AGUIToast: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.4.23/node_modules/@advjs/gui/client/components/toast/AGUIToast.vue')['default']
|
|
51
|
+
AGUIToggleIcon: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.4.23/node_modules/@advjs/gui/client/components/button/AGUIToggleIcon.vue')['default']
|
|
52
|
+
AGUIToolbar: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.4.23/node_modules/@advjs/gui/client/components/toolbar/AGUIToolbar.vue')['default']
|
|
53
|
+
AGUITree: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.4.23/node_modules/@advjs/gui/client/components/tree/AGUITree.vue')['default']
|
|
54
|
+
AGUITreeNode: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.4.23/node_modules/@advjs/gui/client/components/tree/AGUITreeNode.vue')['default']
|
|
55
|
+
BIconChevronLeft: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.4.23/node_modules/@advjs/gui/client/components/icons/BIconChevronLeft.vue')['default']
|
|
56
|
+
BIconChevronRight: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.4.23/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']
|
|
File without changes
|