@valaxyjs/devtools 0.19.9 → 0.19.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.
@@ -1,5 +1,5 @@
1
- import { d as defineComponent, e as ref, f as onMounted, x as getGlobalValaxyProperty, o as openBlock, j as createBlock, w as withCtx, u as unref, m as createVNode, h as createBaseVNode, a as createElementBlock, k as renderList, F as Fragment, B as withDirectives, C as vModelCheckbox, t as toDisplayString, D as vModelText } from './index-B1KXxAEg.js';
2
- import { g, M, a as axios } from './splitpanes.es-CS1Tksze.js';
1
+ import { d as defineComponent, e as ref, f as onMounted, x as getGlobalValaxyProperty, o as openBlock, j as createBlock, w as withCtx, u as unref, m as createVNode, h as createBaseVNode, a as createElementBlock, k as renderList, F as Fragment, B as withDirectives, C as vModelCheckbox, t as toDisplayString, D as vModelText } from './index-EIUO5ARy.js';
2
+ import { g, M, a as axios } from './splitpanes.es-CFspD77U.js';
3
3
 
4
4
  const _hoisted_1 = {
5
5
  class: "h-full",
@@ -10,16 +10,15 @@ const _hoisted_1 = {
10
10
  };
11
11
  const _hoisted_2 = ["name", "value"];
12
12
  const _hoisted_3 = ["for"];
13
- const _hoisted_4 = /* @__PURE__ */ createBaseVNode("h2", null, "原frontmatter字段->新字段", -1);
14
- const _hoisted_5 = {
13
+ const _hoisted_4 = {
15
14
  class: "h-full",
16
15
  overflow: "auto",
17
16
  pl: "12",
18
17
  pr: "4",
19
18
  py: "4"
20
19
  };
21
- const _hoisted_6 = ["for"];
22
- const _hoisted_7 = ["onUpdate:modelValue", "name"];
20
+ const _hoisted_5 = ["for"];
21
+ const _hoisted_6 = ["onUpdate:modelValue", "name"];
23
22
  const _sfc_main = /* @__PURE__ */ defineComponent({
24
23
  __name: "migration",
25
24
  setup(__props) {
@@ -87,19 +86,19 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
87
86
  }),
88
87
  createVNode(unref(g), null, {
89
88
  default: withCtx(() => [
90
- _hoisted_4,
89
+ _cache[3] || (_cache[3] = createBaseVNode("h2", null, "原frontmatter字段->新字段", -1)),
91
90
  createBaseVNode("button", { onClick: migration }, " 提交 "),
92
- createBaseVNode("ul", _hoisted_5, [
91
+ createBaseVNode("ul", _hoisted_4, [
93
92
  (openBlock(true), createElementBlock(Fragment, null, renderList(mapper.value, (_, key) => {
94
93
  return openBlock(), createElementBlock("li", { key }, [
95
94
  createBaseVNode("label", {
96
95
  for: key,
97
96
  style: { "margin-right": "20px" }
98
- }, toDisplayString(key) + " ->", 9, _hoisted_6),
97
+ }, toDisplayString(key) + " ->", 9, _hoisted_5),
99
98
  withDirectives(createBaseVNode("input", {
100
99
  "onUpdate:modelValue": ($event) => mapper.value[key] = $event,
101
100
  name: key
102
- }, null, 8, _hoisted_7), [
101
+ }, null, 8, _hoisted_6), [
103
102
  [vModelText, mapper.value[key]]
104
103
  ])
105
104
  ]);
@@ -1,4 +1,4 @@
1
- import { E as h, o as openBlock, a as createElementBlock, r as renderSlot, G as normalizeStyle } from './index-B1KXxAEg.js';
1
+ import { E as h, o as openBlock, a as createElementBlock, r as renderSlot, G as normalizeStyle } from './index-EIUO5ARy.js';
2
2
 
3
3
  function bind(fn, thisArg) {
4
4
  return function wrap() {
@@ -792,7 +792,10 @@ function AxiosError(message, code, config, request, response) {
792
792
  code && (this.code = code);
793
793
  config && (this.config = config);
794
794
  request && (this.request = request);
795
- response && (this.response = response);
795
+ if (response) {
796
+ this.response = response;
797
+ this.status = response.status ? response.status : null;
798
+ }
796
799
  }
797
800
 
798
801
  utils$1.inherits(AxiosError, Error, {
@@ -812,7 +815,7 @@ utils$1.inherits(AxiosError, Error, {
812
815
  // Axios
813
816
  config: utils$1.toJSONObject(this.config),
814
817
  code: this.code,
815
- status: this.response && this.response.status ? this.response.status : null
818
+ status: this.status
816
819
  };
817
820
  }
818
821
  });
@@ -1300,6 +1303,8 @@ const platform$1 = {
1300
1303
 
1301
1304
  const hasBrowserEnv = typeof window !== 'undefined' && typeof document !== 'undefined';
1302
1305
 
1306
+ const _navigator = typeof navigator === 'object' && navigator || undefined;
1307
+
1303
1308
  /**
1304
1309
  * Determine if we're running in a standard browser environment
1305
1310
  *
@@ -1317,10 +1322,8 @@ const hasBrowserEnv = typeof window !== 'undefined' && typeof document !== 'unde
1317
1322
  *
1318
1323
  * @returns {boolean}
1319
1324
  */
1320
- const hasStandardBrowserEnv = (
1321
- (product) => {
1322
- return hasBrowserEnv && ['ReactNative', 'NativeScript', 'NS'].indexOf(product) < 0
1323
- })(typeof navigator !== 'undefined' && navigator.product);
1325
+ const hasStandardBrowserEnv = hasBrowserEnv &&
1326
+ (!_navigator || ['ReactNative', 'NativeScript', 'NS'].indexOf(_navigator.product) < 0);
1324
1327
 
1325
1328
  /**
1326
1329
  * Determine if we're running in a standard browser webWorker environment
@@ -1349,6 +1352,7 @@ const utils = /*#__PURE__*/Object.freeze(/*#__PURE__*/Object.defineProperty({
1349
1352
  hasBrowserEnv,
1350
1353
  hasStandardBrowserEnv,
1351
1354
  hasStandardBrowserWebWorkerEnv,
1355
+ navigator: _navigator,
1352
1356
  origin
1353
1357
  }, Symbol.toStringTag, { value: 'Module' }));
1354
1358
 
@@ -2202,7 +2206,7 @@ const isURLSameOrigin = platform.hasStandardBrowserEnv ?
2202
2206
  // Standard browser envs have full support of the APIs needed to test
2203
2207
  // whether the request URL is of the same origin as current location.
2204
2208
  (function standardBrowserEnv() {
2205
- const msie = /(msie|trident)/i.test(navigator.userAgent);
2209
+ const msie = platform.navigator && /(msie|trident)/i.test(platform.navigator.userAgent);
2206
2210
  const urlParsingNode = document.createElement('a');
2207
2211
  let originURL;
2208
2212
 
@@ -2700,45 +2704,46 @@ const xhrAdapter = isXHRAdapterSupported && function (config) {
2700
2704
  /* Injected with object hook! */
2701
2705
 
2702
2706
  const composeSignals = (signals, timeout) => {
2703
- let controller = new AbortController();
2707
+ const {length} = (signals = signals ? signals.filter(Boolean) : []);
2704
2708
 
2705
- let aborted;
2709
+ if (timeout || length) {
2710
+ let controller = new AbortController();
2706
2711
 
2707
- const onabort = function (cancel) {
2708
- if (!aborted) {
2709
- aborted = true;
2710
- unsubscribe();
2711
- const err = cancel instanceof Error ? cancel : this.reason;
2712
- controller.abort(err instanceof AxiosError ? err : new CanceledError(err instanceof Error ? err.message : err));
2713
- }
2714
- };
2712
+ let aborted;
2715
2713
 
2716
- let timer = timeout && setTimeout(() => {
2717
- onabort(new AxiosError(`timeout ${timeout} of ms exceeded`, AxiosError.ETIMEDOUT));
2718
- }, timeout);
2714
+ const onabort = function (reason) {
2715
+ if (!aborted) {
2716
+ aborted = true;
2717
+ unsubscribe();
2718
+ const err = reason instanceof Error ? reason : this.reason;
2719
+ controller.abort(err instanceof AxiosError ? err : new CanceledError(err instanceof Error ? err.message : err));
2720
+ }
2721
+ };
2719
2722
 
2720
- const unsubscribe = () => {
2721
- if (signals) {
2722
- timer && clearTimeout(timer);
2723
+ let timer = timeout && setTimeout(() => {
2723
2724
  timer = null;
2724
- signals.forEach(signal => {
2725
- signal &&
2726
- (signal.removeEventListener ? signal.removeEventListener('abort', onabort) : signal.unsubscribe(onabort));
2727
- });
2728
- signals = null;
2729
- }
2730
- };
2725
+ onabort(new AxiosError(`timeout ${timeout} of ms exceeded`, AxiosError.ETIMEDOUT));
2726
+ }, timeout);
2727
+
2728
+ const unsubscribe = () => {
2729
+ if (signals) {
2730
+ timer && clearTimeout(timer);
2731
+ timer = null;
2732
+ signals.forEach(signal => {
2733
+ signal.unsubscribe ? signal.unsubscribe(onabort) : signal.removeEventListener('abort', onabort);
2734
+ });
2735
+ signals = null;
2736
+ }
2737
+ };
2731
2738
 
2732
- signals.forEach((signal) => signal && signal.addEventListener && signal.addEventListener('abort', onabort));
2739
+ signals.forEach((signal) => signal.addEventListener('abort', onabort));
2733
2740
 
2734
- const {signal} = controller;
2741
+ const {signal} = controller;
2735
2742
 
2736
- signal.unsubscribe = unsubscribe;
2743
+ signal.unsubscribe = () => utils$1.asap(unsubscribe);
2737
2744
 
2738
- return [signal, () => {
2739
- timer && clearTimeout(timer);
2740
- timer = null;
2741
- }];
2745
+ return signal;
2746
+ }
2742
2747
  };
2743
2748
 
2744
2749
  /* Injected with object hook! */
@@ -2761,14 +2766,34 @@ const streamChunk = function* (chunk, chunkSize) {
2761
2766
  }
2762
2767
  };
2763
2768
 
2764
- const readBytes = async function* (iterable, chunkSize, encode) {
2765
- for await (const chunk of iterable) {
2766
- yield* streamChunk(ArrayBuffer.isView(chunk) ? chunk : (await encode(String(chunk))), chunkSize);
2769
+ const readBytes = async function* (iterable, chunkSize) {
2770
+ for await (const chunk of readStream(iterable)) {
2771
+ yield* streamChunk(chunk, chunkSize);
2772
+ }
2773
+ };
2774
+
2775
+ const readStream = async function* (stream) {
2776
+ if (stream[Symbol.asyncIterator]) {
2777
+ yield* stream;
2778
+ return;
2779
+ }
2780
+
2781
+ const reader = stream.getReader();
2782
+ try {
2783
+ for (;;) {
2784
+ const {done, value} = await reader.read();
2785
+ if (done) {
2786
+ break;
2787
+ }
2788
+ yield value;
2789
+ }
2790
+ } finally {
2791
+ await reader.cancel();
2767
2792
  }
2768
2793
  };
2769
2794
 
2770
- const trackStream = (stream, chunkSize, onProgress, onFinish, encode) => {
2771
- const iterator = readBytes(stream, chunkSize, encode);
2795
+ const trackStream = (stream, chunkSize, onProgress, onFinish) => {
2796
+ const iterator = readBytes(stream, chunkSize);
2772
2797
 
2773
2798
  let bytes = 0;
2774
2799
  let done;
@@ -2873,7 +2898,11 @@ const getBodyLength = async (body) => {
2873
2898
  }
2874
2899
 
2875
2900
  if(utils$1.isSpecCompliantForm(body)) {
2876
- return (await new Request(body).arrayBuffer()).byteLength;
2901
+ const _request = new Request(platform.origin, {
2902
+ method: 'POST',
2903
+ body,
2904
+ });
2905
+ return (await _request.arrayBuffer()).byteLength;
2877
2906
  }
2878
2907
 
2879
2908
  if(utils$1.isArrayBufferView(body) || utils$1.isArrayBuffer(body)) {
@@ -2913,18 +2942,13 @@ const fetchAdapter = isFetchSupported && (async (config) => {
2913
2942
 
2914
2943
  responseType = responseType ? (responseType + '').toLowerCase() : 'text';
2915
2944
 
2916
- let [composedSignal, stopTimeout] = (signal || cancelToken || timeout) ?
2917
- composeSignals([signal, cancelToken], timeout) : [];
2918
-
2919
- let finished, request;
2945
+ let composedSignal = composeSignals([signal, cancelToken && cancelToken.toAbortSignal()], timeout);
2920
2946
 
2921
- const onFinish = () => {
2922
- !finished && setTimeout(() => {
2923
- composedSignal && composedSignal.unsubscribe();
2924
- });
2947
+ let request;
2925
2948
 
2926
- finished = true;
2927
- };
2949
+ const unsubscribe = composedSignal && composedSignal.unsubscribe && (() => {
2950
+ composedSignal.unsubscribe();
2951
+ });
2928
2952
 
2929
2953
  let requestContentLength;
2930
2954
 
@@ -2951,7 +2975,7 @@ const fetchAdapter = isFetchSupported && (async (config) => {
2951
2975
  progressEventReducer(asyncDecorator(onUploadProgress))
2952
2976
  );
2953
2977
 
2954
- data = trackStream(_request.body, DEFAULT_CHUNK_SIZE, onProgress, flush, encodeText);
2978
+ data = trackStream(_request.body, DEFAULT_CHUNK_SIZE, onProgress, flush);
2955
2979
  }
2956
2980
  }
2957
2981
 
@@ -2959,6 +2983,9 @@ const fetchAdapter = isFetchSupported && (async (config) => {
2959
2983
  withCredentials = withCredentials ? 'include' : 'omit';
2960
2984
  }
2961
2985
 
2986
+ // Cloudflare Workers throws when credentials are defined
2987
+ // see https://github.com/cloudflare/workerd/issues/902
2988
+ const isCredentialsSupported = "credentials" in Request.prototype;
2962
2989
  request = new Request(url, {
2963
2990
  ...fetchOptions,
2964
2991
  signal: composedSignal,
@@ -2966,14 +2993,14 @@ const fetchAdapter = isFetchSupported && (async (config) => {
2966
2993
  headers: headers.normalize().toJSON(),
2967
2994
  body: data,
2968
2995
  duplex: "half",
2969
- credentials: withCredentials
2996
+ credentials: isCredentialsSupported ? withCredentials : undefined
2970
2997
  });
2971
2998
 
2972
2999
  let response = await fetch(request);
2973
3000
 
2974
3001
  const isStreamResponse = supportsResponseStream && (responseType === 'stream' || responseType === 'response');
2975
3002
 
2976
- if (supportsResponseStream && (onDownloadProgress || isStreamResponse)) {
3003
+ if (supportsResponseStream && (onDownloadProgress || (isStreamResponse && unsubscribe))) {
2977
3004
  const options = {};
2978
3005
 
2979
3006
  ['status', 'statusText', 'headers'].forEach(prop => {
@@ -2990,8 +3017,8 @@ const fetchAdapter = isFetchSupported && (async (config) => {
2990
3017
  response = new Response(
2991
3018
  trackStream(response.body, DEFAULT_CHUNK_SIZE, onProgress, () => {
2992
3019
  flush && flush();
2993
- isStreamResponse && onFinish();
2994
- }, encodeText),
3020
+ unsubscribe && unsubscribe();
3021
+ }),
2995
3022
  options
2996
3023
  );
2997
3024
  }
@@ -3000,9 +3027,7 @@ const fetchAdapter = isFetchSupported && (async (config) => {
3000
3027
 
3001
3028
  let responseData = await resolvers[utils$1.findKey(resolvers, responseType) || 'text'](response, config);
3002
3029
 
3003
- !isStreamResponse && onFinish();
3004
-
3005
- stopTimeout && stopTimeout();
3030
+ !isStreamResponse && unsubscribe && unsubscribe();
3006
3031
 
3007
3032
  return await new Promise((resolve, reject) => {
3008
3033
  settle(resolve, reject, {
@@ -3015,7 +3040,7 @@ const fetchAdapter = isFetchSupported && (async (config) => {
3015
3040
  });
3016
3041
  })
3017
3042
  } catch (err) {
3018
- onFinish();
3043
+ unsubscribe && unsubscribe();
3019
3044
 
3020
3045
  if (err && err.name === 'TypeError' && /fetch/i.test(err.message)) {
3021
3046
  throw Object.assign(
@@ -3185,7 +3210,7 @@ function dispatchRequest(config) {
3185
3210
 
3186
3211
  /* Injected with object hook! */
3187
3212
 
3188
- const VERSION = "1.7.4";
3213
+ const VERSION = "1.7.7";
3189
3214
  /* Injected with object hook! */
3190
3215
 
3191
3216
  const validators$1 = {};
@@ -3595,6 +3620,20 @@ class CancelToken {
3595
3620
  }
3596
3621
  }
3597
3622
 
3623
+ toAbortSignal() {
3624
+ const controller = new AbortController();
3625
+
3626
+ const abort = (err) => {
3627
+ controller.abort(err);
3628
+ };
3629
+
3630
+ this.subscribe(abort);
3631
+
3632
+ controller.signal.unsubscribe = () => this.unsubscribe(abort);
3633
+
3634
+ return controller.signal;
3635
+ }
3636
+
3598
3637
  /**
3599
3638
  * Returns an object that contains a new `CancelToken` and a function that, when called,
3600
3639
  * cancels the `CancelToken`.
@@ -1,5 +1,5 @@
1
1
  import { _ as _export_sfc } from './_plugin-vue_export-helper-DgDhiqFL.js';
2
- import { o as openBlock, a as createElementBlock } from './index-B1KXxAEg.js';
2
+ import { o as openBlock, a as createElementBlock } from './index-EIUO5ARy.js';
3
3
 
4
4
  /* unplugin-vue-components disabled */const _sfc_main = {};
5
5
 
@@ -16,8 +16,8 @@
16
16
  document.documentElement.classList.toggle('dark', true)
17
17
  })()
18
18
  </script>
19
- <script type="module" crossorigin src="./assets/index-B1KXxAEg.js"></script>
20
- <link rel="stylesheet" crossorigin href="./assets/index-DzN-2s1X.css">
19
+ <script type="module" crossorigin src="./assets/index-EIUO5ARy.js"></script>
20
+ <link rel="stylesheet" crossorigin href="./assets/index-DphOJtuC.css">
21
21
  </head>
22
22
 
23
23
  <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.19.9",
4
+ "version": "0.19.10",
5
5
  "repository": {
6
6
  "url": "https://github.com/YunYouJun/valaxy"
7
7
  },
@@ -18,32 +18,31 @@
18
18
  "types": "dist/index.d.ts",
19
19
  "dependencies": {
20
20
  "@rollup/pluginutils": "^5.1.0",
21
- "axios": "^1.7.4",
22
- "body-parser": "^1.20.2",
23
- "http-proxy-middleware": "^3.0.0",
21
+ "axios": "^1.7.7",
22
+ "body-parser": "^1.20.3",
23
+ "http-proxy-middleware": "^3.0.2",
24
24
  "js-yaml": "^4.1.0",
25
- "picocolors": "^1.0.1",
25
+ "picocolors": "^1.1.0",
26
26
  "sirv": "^2.0.4"
27
27
  },
28
28
  "devDependencies": {
29
29
  "@advjs/gui": "0.0.7-beta.1",
30
- "@iconify-json/ri": "^1.1.22",
30
+ "@iconify-json/ri": "^1.2.0",
31
31
  "@types/body-parser": "^1.19.5",
32
32
  "@types/splitpanes": "^2.2.6",
33
33
  "gray-matter": "^4.0.3",
34
34
  "splitpanes": "^3.1.5",
35
35
  "typescript": "^5.5.4",
36
36
  "unbuild": "^2.0.0",
37
- "unplugin-vue-router": "^0.10.7",
38
- "vite": "^5.4.1"
37
+ "unplugin-vue-router": "^0.10.8",
38
+ "vite": "^5.4.5"
39
39
  },
40
40
  "scripts": {
41
41
  "build": "rimraf dist && run-s build:*",
42
42
  "build:client": "vite build src/client",
43
43
  "build:node": "unbuild",
44
44
  "dev": "npm run stub && npm run dev:client",
45
- "dev:client": "vite dev src/client",
46
- "dev:src": "vite dev src/client --port 5001",
45
+ "dev:client": "vite dev src/client --port 5001",
47
46
  "watch:client": "vite build src/client --watch",
48
47
  "stub": "unbuild --stub",
49
48
  "release": "bumpp && npm publish"
@@ -19,8 +19,8 @@ function onClickPost(post: any) {
19
19
  <li v-for="post in postList" :key="post.path" class="list-decimal">
20
20
  <div flex>
21
21
  <span
22
- class="inline-flex flex-grow cursor-pointer hover:text-blue-500"
23
- :class="{ 'text-blue-500 font-bold': activePath === post.path }"
22
+ class="inline-flex flex-grow cursor-pointer hover:text-blue-500 text-xs"
23
+ :class="{ 'text-blue-500': activePath === post.path }"
24
24
  @click="onClickPost(post)"
25
25
  >
26
26
  {{ post.title }}
@@ -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.38_typescript@5.5.4_/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.38_typescript@5.5.4_/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.38_typescript@5.5.4_/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.38_typescript@5.5.4_/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.38_typescript@5.5.4_/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.38_typescript@5.5.4_/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.38_typescript@5.5.4_/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.38_typescript@5.5.4_/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.38_typescript@5.5.4_/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.38_typescript@5.5.4_/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.38_typescript@5.5.4_/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.38_typescript@5.5.4_/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.38_typescript@5.5.4_/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.38_typescript@5.5.4_/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.38_typescript@5.5.4_/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.38_typescript@5.5.4_/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.38_typescript@5.5.4_/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.38_typescript@5.5.4_/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.38_typescript@5.5.4_/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.38_typescript@5.5.4_/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.38_typescript@5.5.4_/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.38_typescript@5.5.4_/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.38_typescript@5.5.4_/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.38_typescript@5.5.4_/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.38_typescript@5.5.4_/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.38_typescript@5.5.4_/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.38_typescript@5.5.4_/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.38_typescript@5.5.4_/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.38_typescript@5.5.4_/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.38_typescript@5.5.4_/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.38_typescript@5.5.4_/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.38_typescript@5.5.4_/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.38_typescript@5.5.4_/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.38_typescript@5.5.4_/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.38_typescript@5.5.4_/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.38_typescript@5.5.4_/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.38_typescript@5.5.4_/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.38_typescript@5.5.4_/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.38_typescript@5.5.4_/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.38_typescript@5.5.4_/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.38_typescript@5.5.4_/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.38_typescript@5.5.4_/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.38_typescript@5.5.4_/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.38_typescript@5.5.4_/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.38_typescript@5.5.4_/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.38_typescript@5.5.4_/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.38_typescript@5.5.4_/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.5.5_typescript@5.6.2_/node_modules/@advjs/gui/client/components/accordion/AGUIAccordion.vue')['default']
11
+ AGUIAccordionItem: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.5_typescript@5.6.2_/node_modules/@advjs/gui/client/components/accordion/AGUIAccordionItem.vue')['default']
12
+ AGUIApp: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.5_typescript@5.6.2_/node_modules/@advjs/gui/client/components/AGUIApp.vue')['default']
13
+ AGUIAssetsExplorer: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.5_typescript@5.6.2_/node_modules/@advjs/gui/client/components/explorer/AGUIAssetsExplorer.vue')['default']
14
+ AGUIBreadcrumb: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.5_typescript@5.6.2_/node_modules/@advjs/gui/client/components/breadcrumb/AGUIBreadcrumb.vue')['default']
15
+ AGUIButton: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.5_typescript@5.6.2_/node_modules/@advjs/gui/client/components/button/AGUIButton.vue')['default']
16
+ AGUICheckbox: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.5_typescript@5.6.2_/node_modules/@advjs/gui/client/components/AGUICheckbox.vue')['default']
17
+ AGUIColorPicker: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.5_typescript@5.6.2_/node_modules/@advjs/gui/client/components/AGUIColorPicker.vue')['default']
18
+ AGUIContextMenu: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.5_typescript@5.6.2_/node_modules/@advjs/gui/client/components/context-menu/AGUIContextMenu.vue')['default']
19
+ AGUIContextMenuItem: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.5_typescript@5.6.2_/node_modules/@advjs/gui/client/components/context-menu/AGUIContextMenuItem.vue')['default']
20
+ AGUIDetails: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.5_typescript@5.6.2_/node_modules/@advjs/gui/client/components/AGUIDetails.vue')['default']
21
+ AGUIExplorerControls: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.5_typescript@5.6.2_/node_modules/@advjs/gui/client/components/explorer/AGUIExplorerControls.vue')['default']
22
+ AGUIFileHandler: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.5_typescript@5.6.2_/node_modules/@advjs/gui/client/components/file/AGUIFileHandler.vue')['default']
23
+ AGUIFileItem: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.5_typescript@5.6.2_/node_modules/@advjs/gui/client/components/explorer/AGUIFileItem.vue')['default']
24
+ AGUIFileList: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.5_typescript@5.6.2_/node_modules/@advjs/gui/client/components/explorer/AGUIFileList.vue')['default']
25
+ AGUIForm: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.5_typescript@5.6.2_/node_modules/@advjs/gui/client/components/form/AGUIForm.vue')['default']
26
+ AGUIFormItem: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.5_typescript@5.6.2_/node_modules/@advjs/gui/client/components/form/AGUIFormItem.vue')['default']
27
+ AGUIHr: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.5_typescript@5.6.2_/node_modules/@advjs/gui/client/components/common/AGUIHr.vue')['default']
28
+ AGUIIcon: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.5_typescript@5.6.2_/node_modules/@advjs/gui/client/components/icon/AGUIIcon.vue')['default']
29
+ AGUIIconButton: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.5_typescript@5.6.2_/node_modules/@advjs/gui/client/components/button/AGUIIconButton.vue')['default']
30
+ AGUIInnerInput: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.5_typescript@5.6.2_/node_modules/@advjs/gui/client/components/input/AGUIInnerInput.vue')['default']
31
+ AGUIInput: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.5_typescript@5.6.2_/node_modules/@advjs/gui/client/components/input/AGUIInput.vue')['default']
32
+ AGUIInputNumber: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.5_typescript@5.6.2_/node_modules/@advjs/gui/client/components/input/AGUIInputNumber.vue')['default']
33
+ AGUIInputVector: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.5_typescript@5.6.2_/node_modules/@advjs/gui/client/components/input/AGUIInputVector.vue')['default']
34
+ AGUILayout: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.5_typescript@5.6.2_/node_modules/@advjs/gui/client/components/layout/AGUILayout.vue')['default']
35
+ AGUIMenubar: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.5_typescript@5.6.2_/node_modules/@advjs/gui/client/components/menu/AGUIMenubar.vue')['default']
36
+ AGUIMenubarMenu: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.5_typescript@5.6.2_/node_modules/@advjs/gui/client/components/menu/AGUIMenubarMenu.vue')['default']
37
+ AGUINumberField: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.5_typescript@5.6.2_/node_modules/@advjs/gui/client/components/AGUINumberField.vue')['default']
38
+ AGUINumberSlider: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.5_typescript@5.6.2_/node_modules/@advjs/gui/client/components/AGUINumberSlider.vue')['default']
39
+ AGUIOpenDirectory: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.5_typescript@5.6.2_/node_modules/@advjs/gui/client/components/explorer/AGUIOpenDirectory.vue')['default']
40
+ AGUIOverlay: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.5_typescript@5.6.2_/node_modules/@advjs/gui/client/components/AGUIOverlay.vue')['default']
41
+ AGUIPanel: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.5_typescript@5.6.2_/node_modules/@advjs/gui/client/components/AGUIPanel.vue')['default']
42
+ AGUIPropertiesForm: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.5_typescript@5.6.2_/node_modules/@advjs/gui/client/components/panel/AGUIPropertiesForm.vue')['default']
43
+ AGUIPropertiesPanel: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.5_typescript@5.6.2_/node_modules/@advjs/gui/client/components/panel/AGUIPropertiesPanel.vue')['default']
44
+ AGUIProperty: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.5_typescript@5.6.2_/node_modules/@advjs/gui/client/components/AGUIProperty.vue')['default']
45
+ AGUISelect: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.5_typescript@5.6.2_/node_modules/@advjs/gui/client/components/select/AGUISelect.vue')['default']
46
+ AGUISlider: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.5_typescript@5.6.2_/node_modules/@advjs/gui/client/components/AGUISlider.vue')['default']
47
+ AGUITabPanel: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.5_typescript@5.6.2_/node_modules/@advjs/gui/client/components/tabs/AGUITabPanel.vue')['default']
48
+ AGUITabs: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.5_typescript@5.6.2_/node_modules/@advjs/gui/client/components/tabs/AGUITabs.vue')['default']
49
+ AGUITextarea: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.5_typescript@5.6.2_/node_modules/@advjs/gui/client/components/textarea/AGUITextarea.vue')['default']
50
+ AGUIToast: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.5_typescript@5.6.2_/node_modules/@advjs/gui/client/components/toast/AGUIToast.vue')['default']
51
+ AGUIToggleIcon: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.5_typescript@5.6.2_/node_modules/@advjs/gui/client/components/button/AGUIToggleIcon.vue')['default']
52
+ AGUIToolbar: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.5_typescript@5.6.2_/node_modules/@advjs/gui/client/components/toolbar/AGUIToolbar.vue')['default']
53
+ AGUITree: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.5_typescript@5.6.2_/node_modules/@advjs/gui/client/components/tree/AGUITree.vue')['default']
54
+ AGUITreeNode: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.5_typescript@5.6.2_/node_modules/@advjs/gui/client/components/tree/AGUITreeNode.vue')['default']
55
+ BIconChevronLeft: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.5_typescript@5.6.2_/node_modules/@advjs/gui/client/components/icons/BIconChevronLeft.vue')['default']
56
+ BIconChevronRight: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.5.5_typescript@5.6.2_/node_modules/@advjs/gui/client/components/icons/BIconChevronRight.vue')['default']
57
57
  PageFrontmatter: typeof import('./components/PageFrontmatter.vue')['default']
58
58
  PostPanel: typeof import('./components/PostPanel.vue')['default']
59
59
  RouterLink: typeof import('vue-router')['RouterLink']