@valaxyjs/devtools 0.18.9 → 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.30
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.30
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,20 +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
- resetTracking();
298
- return true;
299
- }
300
294
  triggerComputed(dep.computed);
301
- if (this._dirtyLevel >= 5) {
295
+ if (this._dirtyLevel >= 4) {
302
296
  break;
303
297
  }
304
298
  }
@@ -308,10 +302,10 @@ class ReactiveEffect {
308
302
  }
309
303
  resetTracking();
310
304
  }
311
- return this._dirtyLevel >= 5;
305
+ return this._dirtyLevel >= 4;
312
306
  }
313
307
  set dirty(v) {
314
- this._dirtyLevel = v ? 5 : 0;
308
+ this._dirtyLevel = v ? 4 : 0;
315
309
  }
316
310
  run() {
317
311
  this._dirtyLevel = 0;
@@ -405,22 +399,13 @@ function triggerEffects(dep, dirtyLevel, debuggerEventExtraInfo) {
405
399
  pauseScheduling();
406
400
  for (const effect2 of dep.keys()) {
407
401
  let tracking;
408
- if (!dep.computed && effect2.computed) {
409
- if (effect2._runnings > 0 && (tracking != null ? tracking : tracking = dep.get(effect2) === effect2._trackId)) {
410
- effect2._dirtyLevel = 2;
411
- continue;
412
- }
413
- }
414
402
  if (effect2._dirtyLevel < dirtyLevel && (tracking != null ? tracking : tracking = dep.get(effect2) === effect2._trackId)) {
415
403
  effect2._shouldSchedule || (effect2._shouldSchedule = effect2._dirtyLevel === 0);
416
- if (effect2.computed && effect2._dirtyLevel === 2) {
417
- effect2._shouldSchedule = true;
418
- }
419
404
  effect2._dirtyLevel = dirtyLevel;
420
405
  }
421
406
  if (effect2._shouldSchedule && (tracking != null ? tracking : tracking = dep.get(effect2) === effect2._trackId)) {
422
407
  effect2.trigger();
423
- if ((!effect2._runnings || effect2.allowRecurse) && effect2._dirtyLevel !== 3) {
408
+ if ((!effect2._runnings || effect2.allowRecurse) && effect2._dirtyLevel !== 2) {
424
409
  effect2._shouldSchedule = false;
425
410
  if (effect2.scheduler) {
426
411
  queueEffectSchedulers.push(effect2.scheduler);
@@ -504,7 +489,7 @@ function trigger(target, type, key, newValue, oldValue, oldTarget) {
504
489
  if (dep) {
505
490
  triggerEffects(
506
491
  dep,
507
- 5);
492
+ 4);
508
493
  }
509
494
  }
510
495
  resetScheduling();
@@ -1049,7 +1034,7 @@ class ComputedRefImpl {
1049
1034
  () => getter(this._value),
1050
1035
  () => triggerRefValue(
1051
1036
  this,
1052
- this.effect._dirtyLevel === 3 ? 3 : 4
1037
+ this.effect._dirtyLevel === 2 ? 2 : 3
1053
1038
  )
1054
1039
  );
1055
1040
  this.effect.computed = this;
@@ -1058,15 +1043,12 @@ class ComputedRefImpl {
1058
1043
  }
1059
1044
  get value() {
1060
1045
  const self = toRaw(this);
1061
- const lastDirtyLevel = self.effect._dirtyLevel;
1062
1046
  if ((!self._cacheable || self.effect.dirty) && hasChanged(self._value, self._value = self.effect.run())) {
1063
- if (lastDirtyLevel !== 3) {
1064
- triggerRefValue(self, 5);
1065
- }
1047
+ triggerRefValue(self, 4);
1066
1048
  }
1067
1049
  trackRefValue(self);
1068
1050
  if (self.effect._dirtyLevel >= 2) {
1069
- triggerRefValue(self, 3);
1051
+ triggerRefValue(self, 2);
1070
1052
  }
1071
1053
  return self._value;
1072
1054
  }
@@ -1108,7 +1090,7 @@ function trackRefValue(ref2) {
1108
1090
  ));
1109
1091
  }
1110
1092
  }
1111
- function triggerRefValue(ref2, dirtyLevel = 5, newVal, oldVal) {
1093
+ function triggerRefValue(ref2, dirtyLevel = 4, newVal, oldVal) {
1112
1094
  ref2 = toRaw(ref2);
1113
1095
  const dep = ref2.dep;
1114
1096
  if (dep) {
@@ -1151,7 +1133,7 @@ class RefImpl {
1151
1133
  this._rawValue;
1152
1134
  this._rawValue = newVal;
1153
1135
  this._value = useDirectValue ? newVal : toReactive(newVal);
1154
- triggerRefValue(this, 5);
1136
+ triggerRefValue(this, 4);
1155
1137
  }
1156
1138
  }
1157
1139
  }
@@ -1177,7 +1159,7 @@ function proxyRefs(objectWithRefs) {
1177
1159
  /* Injected with object hook! */
1178
1160
 
1179
1161
  /**
1180
- * @vue/runtime-core v3.4.30
1162
+ * @vue/runtime-core v3.4.31
1181
1163
  * (c) 2018-present Yuxi (Evan) You and Vue contributors
1182
1164
  * @license MIT
1183
1165
  **/
@@ -5242,12 +5224,12 @@ function h(type, propsOrChildren, children) {
5242
5224
  return createVNode(type, propsOrChildren, children);
5243
5225
  }
5244
5226
  }
5245
- const version = "3.4.30";
5227
+ const version = "3.4.31";
5246
5228
 
5247
5229
  /* Injected with object hook! */
5248
5230
 
5249
5231
  /**
5250
- * @vue/runtime-dom v3.4.30
5232
+ * @vue/runtime-dom v3.4.31
5251
5233
  * (c) 2018-present Yuxi (Evan) You and Vue contributors
5252
5234
  * @license MIT
5253
5235
  **/
@@ -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-BH8rSQQ2.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.9",
4
+ "version": "0.18.10",
5
5
  "repository": {
6
6
  "url": "https://github.com/YunYouJun/valaxy"
7
7
  },
@@ -33,8 +33,8 @@
33
33
  "splitpanes": "^3.1.5",
34
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.30_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.30_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.30_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.30_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.30_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.30_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.30_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.30_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.30_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.30_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.30_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.30_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.30_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.30_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.30_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.30_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.30_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.30_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.30_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.30_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.30_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.30_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.30_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.30_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.30_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.30_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.30_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.30_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.30_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.30_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.30_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.30_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.30_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.30_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.30_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.30_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.30_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.30_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.30_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.30_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.30_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.30_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.30_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.30_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.30_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.30_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.30_typescript@5.5.2_/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