@valaxyjs/devtools 0.18.8 → 0.18.10

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.
@@ -38,7 +38,7 @@ true&&(function polyfill() {
38
38
  /* Injected with object hook! */
39
39
 
40
40
  /**
41
- * @vue/shared v3.4.29
41
+ * @vue/shared v3.4.31
42
42
  * (c) 2018-present Yuxi (Evan) You and Vue contributors
43
43
  * @license MIT
44
44
  **/
@@ -189,7 +189,7 @@ function includeBooleanAttr(value) {
189
189
  /* Injected with object hook! */
190
190
 
191
191
  /**
192
- * @vue/reactivity v3.4.29
192
+ * @vue/reactivity v3.4.31
193
193
  * (c) 2018-present Yuxi (Evan) You and Vue contributors
194
194
  * @license MIT
195
195
  **/
@@ -277,7 +277,7 @@ class ReactiveEffect {
277
277
  this.scheduler = scheduler;
278
278
  this.active = true;
279
279
  this.deps = [];
280
- this._dirtyLevel = 5;
280
+ this._dirtyLevel = 4;
281
281
  this._trackId = 0;
282
282
  this._runnings = 0;
283
283
  this._shouldSchedule = false;
@@ -285,18 +285,14 @@ class ReactiveEffect {
285
285
  recordEffectScope(this, scope);
286
286
  }
287
287
  get dirty() {
288
- if (this._dirtyLevel === 2)
289
- return false;
290
- if (this._dirtyLevel === 3 || this._dirtyLevel === 4) {
288
+ if (this._dirtyLevel === 2 || this._dirtyLevel === 3) {
291
289
  this._dirtyLevel = 1;
292
290
  pauseTracking();
293
291
  for (let i = 0; i < this._depsLength; i++) {
294
292
  const dep = this.deps[i];
295
293
  if (dep.computed) {
296
- if (dep.computed.effect._dirtyLevel === 2)
297
- return true;
298
294
  triggerComputed(dep.computed);
299
- if (this._dirtyLevel >= 5) {
295
+ if (this._dirtyLevel >= 4) {
300
296
  break;
301
297
  }
302
298
  }
@@ -306,10 +302,10 @@ class ReactiveEffect {
306
302
  }
307
303
  resetTracking();
308
304
  }
309
- return this._dirtyLevel >= 5;
305
+ return this._dirtyLevel >= 4;
310
306
  }
311
307
  set dirty(v) {
312
- this._dirtyLevel = v ? 5 : 0;
308
+ this._dirtyLevel = v ? 4 : 0;
313
309
  }
314
310
  run() {
315
311
  this._dirtyLevel = 0;
@@ -402,23 +398,14 @@ const queueEffectSchedulers = [];
402
398
  function triggerEffects(dep, dirtyLevel, debuggerEventExtraInfo) {
403
399
  pauseScheduling();
404
400
  for (const effect2 of dep.keys()) {
405
- if (!dep.computed && effect2.computed) {
406
- if (dep.get(effect2) === effect2._trackId && effect2._runnings > 0) {
407
- effect2._dirtyLevel = 2;
408
- continue;
409
- }
410
- }
411
401
  let tracking;
412
402
  if (effect2._dirtyLevel < dirtyLevel && (tracking != null ? tracking : tracking = dep.get(effect2) === effect2._trackId)) {
413
403
  effect2._shouldSchedule || (effect2._shouldSchedule = effect2._dirtyLevel === 0);
414
- if (effect2.computed && effect2._dirtyLevel === 2) {
415
- effect2._shouldSchedule = true;
416
- }
417
404
  effect2._dirtyLevel = dirtyLevel;
418
405
  }
419
406
  if (effect2._shouldSchedule && (tracking != null ? tracking : tracking = dep.get(effect2) === effect2._trackId)) {
420
407
  effect2.trigger();
421
- if ((!effect2._runnings || effect2.allowRecurse) && effect2._dirtyLevel !== 3) {
408
+ if ((!effect2._runnings || effect2.allowRecurse) && effect2._dirtyLevel !== 2) {
422
409
  effect2._shouldSchedule = false;
423
410
  if (effect2.scheduler) {
424
411
  queueEffectSchedulers.push(effect2.scheduler);
@@ -502,7 +489,7 @@ function trigger(target, type, key, newValue, oldValue, oldTarget) {
502
489
  if (dep) {
503
490
  triggerEffects(
504
491
  dep,
505
- 5);
492
+ 4);
506
493
  }
507
494
  }
508
495
  resetScheduling();
@@ -1047,7 +1034,7 @@ class ComputedRefImpl {
1047
1034
  () => getter(this._value),
1048
1035
  () => triggerRefValue(
1049
1036
  this,
1050
- this.effect._dirtyLevel === 3 ? 3 : 4
1037
+ this.effect._dirtyLevel === 2 ? 2 : 3
1051
1038
  )
1052
1039
  );
1053
1040
  this.effect.computed = this;
@@ -1057,11 +1044,11 @@ class ComputedRefImpl {
1057
1044
  get value() {
1058
1045
  const self = toRaw(this);
1059
1046
  if ((!self._cacheable || self.effect.dirty) && hasChanged(self._value, self._value = self.effect.run())) {
1060
- triggerRefValue(self, 5);
1047
+ triggerRefValue(self, 4);
1061
1048
  }
1062
1049
  trackRefValue(self);
1063
1050
  if (self.effect._dirtyLevel >= 2) {
1064
- triggerRefValue(self, 3);
1051
+ triggerRefValue(self, 2);
1065
1052
  }
1066
1053
  return self._value;
1067
1054
  }
@@ -1103,7 +1090,7 @@ function trackRefValue(ref2) {
1103
1090
  ));
1104
1091
  }
1105
1092
  }
1106
- function triggerRefValue(ref2, dirtyLevel = 5, newVal, oldVal) {
1093
+ function triggerRefValue(ref2, dirtyLevel = 4, newVal, oldVal) {
1107
1094
  ref2 = toRaw(ref2);
1108
1095
  const dep = ref2.dep;
1109
1096
  if (dep) {
@@ -1146,7 +1133,7 @@ class RefImpl {
1146
1133
  this._rawValue;
1147
1134
  this._rawValue = newVal;
1148
1135
  this._value = useDirectValue ? newVal : toReactive(newVal);
1149
- triggerRefValue(this, 5);
1136
+ triggerRefValue(this, 4);
1150
1137
  }
1151
1138
  }
1152
1139
  }
@@ -1172,7 +1159,7 @@ function proxyRefs(objectWithRefs) {
1172
1159
  /* Injected with object hook! */
1173
1160
 
1174
1161
  /**
1175
- * @vue/runtime-core v3.4.29
1162
+ * @vue/runtime-core v3.4.31
1176
1163
  * (c) 2018-present Yuxi (Evan) You and Vue contributors
1177
1164
  * @license MIT
1178
1165
  **/
@@ -4072,6 +4059,9 @@ function baseCreateRenderer(options, createHydrationFns) {
4072
4059
  dirs,
4073
4060
  memoIndex
4074
4061
  } = vnode;
4062
+ if (patchFlag === -2) {
4063
+ optimized = false;
4064
+ }
4075
4065
  if (ref3 != null) {
4076
4066
  setRef(ref3, null, parentSuspense, vnode, true);
4077
4067
  }
@@ -4103,7 +4093,6 @@ function baseCreateRenderer(options, createHydrationFns) {
4103
4093
  vnode,
4104
4094
  parentComponent,
4105
4095
  parentSuspense,
4106
- optimized,
4107
4096
  internals,
4108
4097
  doRemove
4109
4098
  );
@@ -5235,12 +5224,12 @@ function h(type, propsOrChildren, children) {
5235
5224
  return createVNode(type, propsOrChildren, children);
5236
5225
  }
5237
5226
  }
5238
- const version = "3.4.29";
5227
+ const version = "3.4.31";
5239
5228
 
5240
5229
  /* Injected with object hook! */
5241
5230
 
5242
5231
  /**
5243
- * @vue/runtime-dom v3.4.29
5232
+ * @vue/runtime-dom v3.4.31
5244
5233
  * (c) 2018-present Yuxi (Evan) You and Vue contributors
5245
5234
  * @license MIT
5246
5235
  **/
@@ -5430,7 +5419,10 @@ function patchAttr(el, key, value, isSVG, instance, isBoolean = isSpecialBoolean
5430
5419
  if (value == null || isBoolean && !includeBooleanAttr(value)) {
5431
5420
  el.removeAttribute(key);
5432
5421
  } else {
5433
- el.setAttribute(key, isBoolean ? "" : String(value));
5422
+ el.setAttribute(
5423
+ key,
5424
+ isBoolean ? "" : isSymbol(value) ? String(value) : value
5425
+ );
5434
5426
  }
5435
5427
  }
5436
5428
  }
@@ -5572,7 +5564,7 @@ const patchProp = (el, key, prevValue, nextValue, namespace, prevChildren, paren
5572
5564
  parentSuspense,
5573
5565
  unmountChildren
5574
5566
  );
5575
- if (key === "value" || key === "checked" || key === "selected") {
5567
+ if (!el.tagName.includes("-") && (key === "value" || key === "checked" || key === "selected")) {
5576
5568
  patchAttr(el, key, nextValue, isSVG, parentComponent, key !== "value");
5577
5569
  }
5578
5570
  } else {
@@ -5661,7 +5653,7 @@ function normalizeContainer(container) {
5661
5653
  /* Injected with object hook! */
5662
5654
 
5663
5655
  /*!
5664
- * vue-router v4.3.3
5656
+ * vue-router v4.4.0
5665
5657
  * (c) 2024 Eduardo San Martin Morote
5666
5658
  * @license MIT
5667
5659
  */
@@ -5804,6 +5796,18 @@ function resolveRelativePath(to, from) {
5804
5796
  }
5805
5797
  return fromSegments.slice(0, position).join("/") + "/" + toSegments.slice(toPosition).join("/");
5806
5798
  }
5799
+ const START_LOCATION_NORMALIZED = {
5800
+ path: "/",
5801
+ // TODO: could we use a symbol in the future?
5802
+ name: void 0,
5803
+ params: {},
5804
+ query: {},
5805
+ hash: "",
5806
+ fullPath: "/",
5807
+ matched: [],
5808
+ meta: {},
5809
+ redirectedFrom: void 0
5810
+ };
5807
5811
  var NavigationType;
5808
5812
  (function(NavigationType2) {
5809
5813
  NavigationType2["pop"] = "pop";
@@ -6072,17 +6076,6 @@ function isRouteLocation(route) {
6072
6076
  function isRouteName(name) {
6073
6077
  return typeof name === "string" || typeof name === "symbol";
6074
6078
  }
6075
- const START_LOCATION_NORMALIZED = {
6076
- path: "/",
6077
- name: void 0,
6078
- params: {},
6079
- query: {},
6080
- hash: "",
6081
- fullPath: "/",
6082
- matched: [],
6083
- meta: {},
6084
- redirectedFrom: void 0
6085
- };
6086
6079
  const NavigationFailureSymbol = Symbol("");
6087
6080
  var NavigationFailureType;
6088
6081
  (function(NavigationFailureType2) {
@@ -6553,7 +6546,18 @@ function createRouterMatcher(routes, globalOptions) {
6553
6546
  };
6554
6547
  }
6555
6548
  routes.forEach((route) => addRoute(route));
6556
- return { addRoute, resolve, removeRoute, getRoutes, getRecordMatcher };
6549
+ function clearRoutes() {
6550
+ matchers.length = 0;
6551
+ matcherMap.clear();
6552
+ }
6553
+ return {
6554
+ addRoute,
6555
+ resolve,
6556
+ removeRoute,
6557
+ clearRoutes,
6558
+ getRoutes,
6559
+ getRecordMatcher
6560
+ };
6557
6561
  }
6558
6562
  function paramsFromLocation(params, keys) {
6559
6563
  const newParams = {};
@@ -7404,6 +7408,7 @@ function createRouter$1(options) {
7404
7408
  listening: true,
7405
7409
  addRoute,
7406
7410
  removeRoute,
7411
+ clearRoutes: matcher.clearRoutes,
7407
7412
  hasRoute,
7408
7413
  getRoutes,
7409
7414
  resolve,
@@ -6,7 +6,7 @@
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-FtLpRgBM.js"></script>
9
+ <script type="module" crossorigin src="./assets/index-Ychcb-KI.js"></script>
10
10
  <link rel="stylesheet" crossorigin href="./assets/index-DIHmqMB6.css">
11
11
  </head>
12
12
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@valaxyjs/devtools",
3
3
  "type": "module",
4
- "version": "0.18.8",
4
+ "version": "0.18.10",
5
5
  "repository": {
6
6
  "url": "https://github.com/YunYouJun/valaxy"
7
7
  },
@@ -31,10 +31,10 @@
31
31
  "@types/splitpanes": "^2.2.6",
32
32
  "gray-matter": "^4.0.3",
33
33
  "splitpanes": "^3.1.5",
34
- "typescript": "^5.4.5",
34
+ "typescript": "^5.5.2",
35
35
  "unbuild": "^2.0.0",
36
- "unplugin-vue-router": "^0.9.1",
37
- "vite": "^5.3.1"
36
+ "unplugin-vue-router": "^0.10.0",
37
+ "vite": "^5.3.2"
38
38
  },
39
39
  "scripts": {
40
40
  "build": "rimraf dist && run-s build:*",
@@ -7,53 +7,53 @@ export {}
7
7
  /* prettier-ignore */
8
8
  declare module 'vue' {
9
9
  export interface GlobalComponents {
10
- AGUIAccordion: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.4.29_typescript@5.4.5_/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.29_typescript@5.4.5_/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.29_typescript@5.4.5_/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.29_typescript@5.4.5_/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.29_typescript@5.4.5_/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.29_typescript@5.4.5_/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.29_typescript@5.4.5_/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.29_typescript@5.4.5_/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.29_typescript@5.4.5_/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.29_typescript@5.4.5_/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.29_typescript@5.4.5_/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.29_typescript@5.4.5_/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.29_typescript@5.4.5_/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.29_typescript@5.4.5_/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.29_typescript@5.4.5_/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.29_typescript@5.4.5_/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.29_typescript@5.4.5_/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.29_typescript@5.4.5_/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.29_typescript@5.4.5_/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.29_typescript@5.4.5_/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.29_typescript@5.4.5_/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.29_typescript@5.4.5_/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.29_typescript@5.4.5_/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.29_typescript@5.4.5_/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.29_typescript@5.4.5_/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.29_typescript@5.4.5_/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.29_typescript@5.4.5_/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.29_typescript@5.4.5_/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.29_typescript@5.4.5_/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.29_typescript@5.4.5_/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.29_typescript@5.4.5_/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.29_typescript@5.4.5_/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.29_typescript@5.4.5_/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.29_typescript@5.4.5_/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.29_typescript@5.4.5_/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.29_typescript@5.4.5_/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.29_typescript@5.4.5_/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.29_typescript@5.4.5_/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.29_typescript@5.4.5_/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.29_typescript@5.4.5_/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.29_typescript@5.4.5_/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.29_typescript@5.4.5_/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.29_typescript@5.4.5_/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.29_typescript@5.4.5_/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.29_typescript@5.4.5_/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.29_typescript@5.4.5_/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.29_typescript@5.4.5_/node_modules/@advjs/gui/client/components/icons/BIconChevronRight.vue')['default']
10
+ AGUIAccordion: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.4.31_typescript@5.5.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.4.31_typescript@5.5.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.4.31_typescript@5.5.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.4.31_typescript@5.5.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.4.31_typescript@5.5.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.4.31_typescript@5.5.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.4.31_typescript@5.5.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.4.31_typescript@5.5.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.4.31_typescript@5.5.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.4.31_typescript@5.5.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.4.31_typescript@5.5.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.4.31_typescript@5.5.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.4.31_typescript@5.5.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.4.31_typescript@5.5.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.4.31_typescript@5.5.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.4.31_typescript@5.5.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.4.31_typescript@5.5.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.4.31_typescript@5.5.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.4.31_typescript@5.5.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.4.31_typescript@5.5.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.4.31_typescript@5.5.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.4.31_typescript@5.5.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.4.31_typescript@5.5.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.4.31_typescript@5.5.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.4.31_typescript@5.5.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.4.31_typescript@5.5.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.4.31_typescript@5.5.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.4.31_typescript@5.5.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.4.31_typescript@5.5.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.4.31_typescript@5.5.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.4.31_typescript@5.5.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.4.31_typescript@5.5.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.4.31_typescript@5.5.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.4.31_typescript@5.5.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.4.31_typescript@5.5.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.4.31_typescript@5.5.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.4.31_typescript@5.5.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.4.31_typescript@5.5.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.4.31_typescript@5.5.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.4.31_typescript@5.5.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.4.31_typescript@5.5.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.4.31_typescript@5.5.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.4.31_typescript@5.5.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.4.31_typescript@5.5.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.4.31_typescript@5.5.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.4.31_typescript@5.5.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.4.31_typescript@5.5.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']
@@ -12,7 +12,7 @@ declare module 'vue-router/auto-routes' {
12
12
  ParamValueOneOrMore,
13
13
  ParamValueZeroOrMore,
14
14
  ParamValueZeroOrOne,
15
- } from 'unplugin-vue-router/types'
15
+ } from 'vue-router'
16
16
 
17
17
  /**
18
18
  * Route name map generated by unplugin-vue-router