@valaxyjs/devtools 0.18.8 → 0.18.9

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.30
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.30
193
193
  * (c) 2018-present Yuxi (Evan) You and Vue contributors
194
194
  * @license MIT
195
195
  **/
@@ -293,8 +293,10 @@ class ReactiveEffect {
293
293
  for (let i = 0; i < this._depsLength; i++) {
294
294
  const dep = this.deps[i];
295
295
  if (dep.computed) {
296
- if (dep.computed.effect._dirtyLevel === 2)
296
+ if (dep.computed.effect._dirtyLevel === 2) {
297
+ resetTracking();
297
298
  return true;
299
+ }
298
300
  triggerComputed(dep.computed);
299
301
  if (this._dirtyLevel >= 5) {
300
302
  break;
@@ -402,13 +404,13 @@ const queueEffectSchedulers = [];
402
404
  function triggerEffects(dep, dirtyLevel, debuggerEventExtraInfo) {
403
405
  pauseScheduling();
404
406
  for (const effect2 of dep.keys()) {
407
+ let tracking;
405
408
  if (!dep.computed && effect2.computed) {
406
- if (dep.get(effect2) === effect2._trackId && effect2._runnings > 0) {
409
+ if (effect2._runnings > 0 && (tracking != null ? tracking : tracking = dep.get(effect2) === effect2._trackId)) {
407
410
  effect2._dirtyLevel = 2;
408
411
  continue;
409
412
  }
410
413
  }
411
- let tracking;
412
414
  if (effect2._dirtyLevel < dirtyLevel && (tracking != null ? tracking : tracking = dep.get(effect2) === effect2._trackId)) {
413
415
  effect2._shouldSchedule || (effect2._shouldSchedule = effect2._dirtyLevel === 0);
414
416
  if (effect2.computed && effect2._dirtyLevel === 2) {
@@ -1056,8 +1058,11 @@ class ComputedRefImpl {
1056
1058
  }
1057
1059
  get value() {
1058
1060
  const self = toRaw(this);
1061
+ const lastDirtyLevel = self.effect._dirtyLevel;
1059
1062
  if ((!self._cacheable || self.effect.dirty) && hasChanged(self._value, self._value = self.effect.run())) {
1060
- triggerRefValue(self, 5);
1063
+ if (lastDirtyLevel !== 3) {
1064
+ triggerRefValue(self, 5);
1065
+ }
1061
1066
  }
1062
1067
  trackRefValue(self);
1063
1068
  if (self.effect._dirtyLevel >= 2) {
@@ -1172,7 +1177,7 @@ function proxyRefs(objectWithRefs) {
1172
1177
  /* Injected with object hook! */
1173
1178
 
1174
1179
  /**
1175
- * @vue/runtime-core v3.4.29
1180
+ * @vue/runtime-core v3.4.30
1176
1181
  * (c) 2018-present Yuxi (Evan) You and Vue contributors
1177
1182
  * @license MIT
1178
1183
  **/
@@ -4072,6 +4077,9 @@ function baseCreateRenderer(options, createHydrationFns) {
4072
4077
  dirs,
4073
4078
  memoIndex
4074
4079
  } = vnode;
4080
+ if (patchFlag === -2) {
4081
+ optimized = false;
4082
+ }
4075
4083
  if (ref3 != null) {
4076
4084
  setRef(ref3, null, parentSuspense, vnode, true);
4077
4085
  }
@@ -4103,7 +4111,6 @@ function baseCreateRenderer(options, createHydrationFns) {
4103
4111
  vnode,
4104
4112
  parentComponent,
4105
4113
  parentSuspense,
4106
- optimized,
4107
4114
  internals,
4108
4115
  doRemove
4109
4116
  );
@@ -5235,12 +5242,12 @@ function h(type, propsOrChildren, children) {
5235
5242
  return createVNode(type, propsOrChildren, children);
5236
5243
  }
5237
5244
  }
5238
- const version = "3.4.29";
5245
+ const version = "3.4.30";
5239
5246
 
5240
5247
  /* Injected with object hook! */
5241
5248
 
5242
5249
  /**
5243
- * @vue/runtime-dom v3.4.29
5250
+ * @vue/runtime-dom v3.4.30
5244
5251
  * (c) 2018-present Yuxi (Evan) You and Vue contributors
5245
5252
  * @license MIT
5246
5253
  **/
@@ -5430,7 +5437,10 @@ function patchAttr(el, key, value, isSVG, instance, isBoolean = isSpecialBoolean
5430
5437
  if (value == null || isBoolean && !includeBooleanAttr(value)) {
5431
5438
  el.removeAttribute(key);
5432
5439
  } else {
5433
- el.setAttribute(key, isBoolean ? "" : String(value));
5440
+ el.setAttribute(
5441
+ key,
5442
+ isBoolean ? "" : isSymbol(value) ? String(value) : value
5443
+ );
5434
5444
  }
5435
5445
  }
5436
5446
  }
@@ -5572,7 +5582,7 @@ const patchProp = (el, key, prevValue, nextValue, namespace, prevChildren, paren
5572
5582
  parentSuspense,
5573
5583
  unmountChildren
5574
5584
  );
5575
- if (key === "value" || key === "checked" || key === "selected") {
5585
+ if (!el.tagName.includes("-") && (key === "value" || key === "checked" || key === "selected")) {
5576
5586
  patchAttr(el, key, nextValue, isSVG, parentComponent, key !== "value");
5577
5587
  }
5578
5588
  } else {
@@ -5661,7 +5671,7 @@ function normalizeContainer(container) {
5661
5671
  /* Injected with object hook! */
5662
5672
 
5663
5673
  /*!
5664
- * vue-router v4.3.3
5674
+ * vue-router v4.4.0
5665
5675
  * (c) 2024 Eduardo San Martin Morote
5666
5676
  * @license MIT
5667
5677
  */
@@ -5804,6 +5814,18 @@ function resolveRelativePath(to, from) {
5804
5814
  }
5805
5815
  return fromSegments.slice(0, position).join("/") + "/" + toSegments.slice(toPosition).join("/");
5806
5816
  }
5817
+ const START_LOCATION_NORMALIZED = {
5818
+ path: "/",
5819
+ // TODO: could we use a symbol in the future?
5820
+ name: void 0,
5821
+ params: {},
5822
+ query: {},
5823
+ hash: "",
5824
+ fullPath: "/",
5825
+ matched: [],
5826
+ meta: {},
5827
+ redirectedFrom: void 0
5828
+ };
5807
5829
  var NavigationType;
5808
5830
  (function(NavigationType2) {
5809
5831
  NavigationType2["pop"] = "pop";
@@ -6072,17 +6094,6 @@ function isRouteLocation(route) {
6072
6094
  function isRouteName(name) {
6073
6095
  return typeof name === "string" || typeof name === "symbol";
6074
6096
  }
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
6097
  const NavigationFailureSymbol = Symbol("");
6087
6098
  var NavigationFailureType;
6088
6099
  (function(NavigationFailureType2) {
@@ -6553,7 +6564,18 @@ function createRouterMatcher(routes, globalOptions) {
6553
6564
  };
6554
6565
  }
6555
6566
  routes.forEach((route) => addRoute(route));
6556
- return { addRoute, resolve, removeRoute, getRoutes, getRecordMatcher };
6567
+ function clearRoutes() {
6568
+ matchers.length = 0;
6569
+ matcherMap.clear();
6570
+ }
6571
+ return {
6572
+ addRoute,
6573
+ resolve,
6574
+ removeRoute,
6575
+ clearRoutes,
6576
+ getRoutes,
6577
+ getRecordMatcher
6578
+ };
6557
6579
  }
6558
6580
  function paramsFromLocation(params, keys) {
6559
6581
  const newParams = {};
@@ -7404,6 +7426,7 @@ function createRouter$1(options) {
7404
7426
  listening: true,
7405
7427
  addRoute,
7406
7428
  removeRoute,
7429
+ clearRoutes: matcher.clearRoutes,
7407
7430
  hasRoute,
7408
7431
  getRoutes,
7409
7432
  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-BH8rSQQ2.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.9",
5
5
  "repository": {
6
6
  "url": "https://github.com/YunYouJun/valaxy"
7
7
  },
@@ -31,7 +31,7 @@
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
36
  "unplugin-vue-router": "^0.9.1",
37
37
  "vite": "^5.3.1"
@@ -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.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']
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']