@valaxyjs/devtools 0.18.6 → 0.18.7

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
1
  import { _ as _export_sfc } from './_plugin-vue_export-helper-DgDhiqFL.js';
2
- import { a as createElementBlock, o as openBlock } from './index-C-zhEyv8.js';
2
+ import { a as createElementBlock, o as openBlock } from './index-BrXoePMX.js';
3
3
 
4
4
  /* unplugin-vue-components disabled */const _sfc_main = {};
5
5
 
@@ -1,5 +1,5 @@
1
1
  import { _ as _export_sfc } from './_plugin-vue_export-helper-DgDhiqFL.js';
2
- import { a as createElementBlock, o as openBlock } from './index-C-zhEyv8.js';
2
+ import { a as createElementBlock, o as openBlock } from './index-BrXoePMX.js';
3
3
 
4
4
  /* unplugin-vue-components disabled */const _sfc_main = {};
5
5
 
@@ -1,4 +1,4 @@
1
- import { g as getAppWindow, d as defineComponent, c as computed, o as openBlock, a as createElementBlock, n as normalizeClass, b as createCommentVNode, r as renderSlot, e as ref, f as onMounted, h as createBaseVNode, i as resolveComponent, j as createBlock, w as withCtx, t as toDisplayString, F as Fragment, k as renderList, l as createTextVNode, m as createVNode, p as pageData, q as toRaw, u as unref, s as frontmatter, v as getWindowProperty, x as getGlobalValaxyProperty, y as activePath, z as devtoolsRouter, A as h, B as normalizeStyle, C as isStaticMode } from './index-C-zhEyv8.js';
1
+ import { g as getAppWindow, d as defineComponent, c as computed, o as openBlock, a as createElementBlock, n as normalizeClass, b as createCommentVNode, r as renderSlot, e as ref, f as onMounted, h as createBaseVNode, i as resolveComponent, j as createBlock, w as withCtx, t as toDisplayString, F as Fragment, k as renderList, l as createTextVNode, m as createVNode, p as pageData, q as toRaw, u as unref, s as frontmatter, v as getWindowProperty, x as getGlobalValaxyProperty, y as activePath, z as devtoolsRouter, A as h, B as normalizeStyle, C as isStaticMode } from './index-BrXoePMX.js';
2
2
  import { _ as _export_sfc } from './_plugin-vue_export-helper-DgDhiqFL.js';
3
3
 
4
4
  const target = getAppWindow();
@@ -1744,8 +1744,6 @@ utils$1.forEach(['delete', 'get', 'head', 'post', 'put', 'patch'], (method) => {
1744
1744
  defaults.headers[method] = {};
1745
1745
  });
1746
1746
 
1747
- const defaults$1 = defaults;
1748
-
1749
1747
  /* Injected with object hook! */
1750
1748
 
1751
1749
  // RawAxiosHeaders whose duplicates are ignored by node
@@ -2094,8 +2092,6 @@ utils$1.reduceDescriptors(AxiosHeaders.prototype, ({value}, key) => {
2094
2092
 
2095
2093
  utils$1.freezeMethods(AxiosHeaders);
2096
2094
 
2097
- const AxiosHeaders$1 = AxiosHeaders;
2098
-
2099
2095
  /* Injected with object hook! */
2100
2096
 
2101
2097
  /**
@@ -2107,9 +2103,9 @@ const AxiosHeaders$1 = AxiosHeaders;
2107
2103
  * @returns {*} The resulting transformed data
2108
2104
  */
2109
2105
  function transformData(fns, response) {
2110
- const config = this || defaults$1;
2106
+ const config = this || defaults;
2111
2107
  const context = response || config;
2112
- const headers = AxiosHeaders$1.from(context.headers);
2108
+ const headers = AxiosHeaders.from(context.headers);
2113
2109
  let data = context.data;
2114
2110
 
2115
2111
  utils$1.forEach(fns, function transform(fn) {
@@ -2429,7 +2425,7 @@ const isXHRAdapterSupported = typeof XMLHttpRequest !== 'undefined';
2429
2425
  const xhrAdapter = isXHRAdapterSupported && function (config) {
2430
2426
  return new Promise(function dispatchXhrRequest(resolve, reject) {
2431
2427
  let requestData = config.data;
2432
- const requestHeaders = AxiosHeaders$1.from(config.headers).normalize();
2428
+ const requestHeaders = AxiosHeaders.from(config.headers).normalize();
2433
2429
  let {responseType, withXSRFToken} = config;
2434
2430
  let onCanceled;
2435
2431
  function done() {
@@ -2475,7 +2471,7 @@ const xhrAdapter = isXHRAdapterSupported && function (config) {
2475
2471
  return;
2476
2472
  }
2477
2473
  // Prepare the response
2478
- const responseHeaders = AxiosHeaders$1.from(
2474
+ const responseHeaders = AxiosHeaders.from(
2479
2475
  'getAllResponseHeaders' in request && request.getAllResponseHeaders()
2480
2476
  );
2481
2477
  const responseData = !responseType || responseType === 'text' || responseType === 'json' ?
@@ -2744,7 +2740,7 @@ function throwIfCancellationRequested(config) {
2744
2740
  function dispatchRequest(config) {
2745
2741
  throwIfCancellationRequested(config);
2746
2742
 
2747
- config.headers = AxiosHeaders$1.from(config.headers);
2743
+ config.headers = AxiosHeaders.from(config.headers);
2748
2744
 
2749
2745
  // Transform request data
2750
2746
  config.data = transformData.call(
@@ -2756,7 +2752,7 @@ function dispatchRequest(config) {
2756
2752
  config.headers.setContentType('application/x-www-form-urlencoded', false);
2757
2753
  }
2758
2754
 
2759
- const adapter = adapters.getAdapter(config.adapter || defaults$1.adapter);
2755
+ const adapter = adapters.getAdapter(config.adapter || defaults.adapter);
2760
2756
 
2761
2757
  return adapter(config).then(function onAdapterResolution(response) {
2762
2758
  throwIfCancellationRequested(config);
@@ -2768,7 +2764,7 @@ function dispatchRequest(config) {
2768
2764
  response
2769
2765
  );
2770
2766
 
2771
- response.headers = AxiosHeaders$1.from(response.headers);
2767
+ response.headers = AxiosHeaders.from(response.headers);
2772
2768
 
2773
2769
  return response;
2774
2770
  }, function onAdapterRejection(reason) {
@@ -2782,7 +2778,7 @@ function dispatchRequest(config) {
2782
2778
  config.transformResponse,
2783
2779
  reason.response
2784
2780
  );
2785
- reason.response.headers = AxiosHeaders$1.from(reason.response.headers);
2781
+ reason.response.headers = AxiosHeaders.from(reason.response.headers);
2786
2782
  }
2787
2783
  }
2788
2784
 
@@ -2792,7 +2788,7 @@ function dispatchRequest(config) {
2792
2788
 
2793
2789
  /* Injected with object hook! */
2794
2790
 
2795
- const headersToObject = (thing) => thing instanceof AxiosHeaders$1 ? { ...thing } : thing;
2791
+ const headersToObject = (thing) => thing instanceof AxiosHeaders ? { ...thing } : thing;
2796
2792
 
2797
2793
  /**
2798
2794
  * Config-specific merge-function which creates a new config-object
@@ -3089,7 +3085,7 @@ class Axios {
3089
3085
  }
3090
3086
  );
3091
3087
 
3092
- config.headers = AxiosHeaders$1.concat(contextHeaders, headers);
3088
+ config.headers = AxiosHeaders.concat(contextHeaders, headers);
3093
3089
 
3094
3090
  // filter out skipped interceptors
3095
3091
  const requestInterceptorChain = [];
@@ -3201,8 +3197,6 @@ utils$1.forEach(['post', 'put', 'patch'], function forEachMethodWithData(method)
3201
3197
  Axios.prototype[method + 'Form'] = generateHTTPMethod(true);
3202
3198
  });
3203
3199
 
3204
- const Axios$1 = Axios;
3205
-
3206
3200
  /* Injected with object hook! */
3207
3201
 
3208
3202
  /**
@@ -3321,8 +3315,6 @@ class CancelToken {
3321
3315
  }
3322
3316
  }
3323
3317
 
3324
- const CancelToken$1 = CancelToken;
3325
-
3326
3318
  /* Injected with object hook! */
3327
3319
 
3328
3320
  /**
@@ -3437,8 +3429,6 @@ Object.entries(HttpStatusCode).forEach(([key, value]) => {
3437
3429
  HttpStatusCode[value] = key;
3438
3430
  });
3439
3431
 
3440
- const HttpStatusCode$1 = HttpStatusCode;
3441
-
3442
3432
  /* Injected with object hook! */
3443
3433
 
3444
3434
  /**
@@ -3449,11 +3439,11 @@ const HttpStatusCode$1 = HttpStatusCode;
3449
3439
  * @returns {Axios} A new instance of Axios
3450
3440
  */
3451
3441
  function createInstance(defaultConfig) {
3452
- const context = new Axios$1(defaultConfig);
3453
- const instance = bind(Axios$1.prototype.request, context);
3442
+ const context = new Axios(defaultConfig);
3443
+ const instance = bind(Axios.prototype.request, context);
3454
3444
 
3455
3445
  // Copy axios.prototype to instance
3456
- utils$1.extend(instance, Axios$1.prototype, context, {allOwnKeys: true});
3446
+ utils$1.extend(instance, Axios.prototype, context, {allOwnKeys: true});
3457
3447
 
3458
3448
  // Copy context to instance
3459
3449
  utils$1.extend(instance, context, null, {allOwnKeys: true});
@@ -3467,14 +3457,14 @@ function createInstance(defaultConfig) {
3467
3457
  }
3468
3458
 
3469
3459
  // Create the default instance to be exported
3470
- const axios = createInstance(defaults$1);
3460
+ const axios = createInstance(defaults);
3471
3461
 
3472
3462
  // Expose Axios class to allow class inheritance
3473
- axios.Axios = Axios$1;
3463
+ axios.Axios = Axios;
3474
3464
 
3475
3465
  // Expose Cancel & CancelToken
3476
3466
  axios.CanceledError = CanceledError;
3477
- axios.CancelToken = CancelToken$1;
3467
+ axios.CancelToken = CancelToken;
3478
3468
  axios.isCancel = isCancel;
3479
3469
  axios.VERSION = VERSION;
3480
3470
  axios.toFormData = toFormData;
@@ -3498,13 +3488,13 @@ axios.isAxiosError = isAxiosError;
3498
3488
  // Expose mergeConfig
3499
3489
  axios.mergeConfig = mergeConfig;
3500
3490
 
3501
- axios.AxiosHeaders = AxiosHeaders$1;
3491
+ axios.AxiosHeaders = AxiosHeaders;
3502
3492
 
3503
3493
  axios.formToJSON = thing => formDataToJSON(utils$1.isHTMLForm(thing) ? new FormData(thing) : thing);
3504
3494
 
3505
3495
  axios.getAdapter = adapters.getAdapter;
3506
3496
 
3507
- axios.HttpStatusCode = HttpStatusCode$1;
3497
+ axios.HttpStatusCode = HttpStatusCode;
3508
3498
 
3509
3499
  axios.default = axios;
3510
3500
 
@@ -3584,7 +3574,7 @@ function isObject(value) {
3584
3574
  }
3585
3575
  function _defu(baseObject, defaults, namespace = ".", merger) {
3586
3576
  if (!isObject(defaults)) {
3587
- return _defu(baseObject, {}, namespace, merger);
3577
+ return _defu(baseObject, {}, namespace);
3588
3578
  }
3589
3579
  const object = Object.assign({}, defaults);
3590
3580
  for (const key in baseObject) {
@@ -3595,18 +3585,13 @@ function _defu(baseObject, defaults, namespace = ".", merger) {
3595
3585
  if (value === null || value === void 0) {
3596
3586
  continue;
3597
3587
  }
3598
- if (merger && merger(object, key, value, namespace)) {
3599
- continue;
3600
- }
3601
3588
  if (Array.isArray(value) && Array.isArray(object[key])) {
3602
3589
  object[key] = [...value, ...object[key]];
3603
3590
  } else if (isObject(value) && isObject(object[key])) {
3604
3591
  object[key] = _defu(
3605
3592
  value,
3606
3593
  object[key],
3607
- (namespace ? `${namespace}.` : "") + key.toString(),
3608
- merger
3609
- );
3594
+ (namespace ? `${namespace}.` : "") + key.toString());
3610
3595
  } else {
3611
3596
  object[key] = value;
3612
3597
  }
@@ -3616,7 +3601,7 @@ function _defu(baseObject, defaults, namespace = ".", merger) {
3616
3601
  function createDefu(merger) {
3617
3602
  return (...arguments_) => (
3618
3603
  // eslint-disable-next-line unicorn/no-array-reduce
3619
- arguments_.reduce((p, c) => _defu(p, c, "", merger), {})
3604
+ arguments_.reduce((p, c) => _defu(p, c, ""), {})
3620
3605
  );
3621
3606
  }
3622
3607
  const defu = createDefu();
@@ -384,7 +384,7 @@ Make elements with the HTML hidden attribute stay hidden by default.
384
384
 
385
385
  [hidden] {
386
386
  display: none;
387
- } *,::before,::after{--un-rotate:0;--un-rotate-x:0;--un-rotate-y:0;--un-rotate-z:0;--un-scale-x:1;--un-scale-y:1;--un-scale-z:1;--un-skew-x:0;--un-skew-y:0;--un-translate-x:0;--un-translate-y:0;--un-translate-z:0;--un-pan-x: ;--un-pan-y: ;--un-pinch-zoom: ;--un-scroll-snap-strictness:proximity;--un-ordinal: ;--un-slashed-zero: ;--un-numeric-figure: ;--un-numeric-spacing: ;--un-numeric-fraction: ;--un-border-spacing-x:0;--un-border-spacing-y:0;--un-ring-offset-shadow:0 0 rgb(0 0 0 / 0);--un-ring-shadow:0 0 rgb(0 0 0 / 0);--un-shadow-inset: ;--un-shadow:0 0 rgb(0 0 0 / 0);--un-ring-inset: ;--un-ring-offset-width:0px;--un-ring-offset-color:#fff;--un-ring-width:0px;--un-ring-color:rgb(147 197 253 / 0.5);--un-blur: ;--un-brightness: ;--un-contrast: ;--un-drop-shadow: ;--un-grayscale: ;--un-hue-rotate: ;--un-invert: ;--un-saturate: ;--un-sepia: ;--un-backdrop-blur: ;--un-backdrop-brightness: ;--un-backdrop-contrast: ;--un-backdrop-grayscale: ;--un-backdrop-hue-rotate: ;--un-backdrop-invert: ;--un-backdrop-opacity: ;--un-backdrop-saturate: ;--un-backdrop-sepia: ;}::backdrop{--un-rotate:0;--un-rotate-x:0;--un-rotate-y:0;--un-rotate-z:0;--un-scale-x:1;--un-scale-y:1;--un-scale-z:1;--un-skew-x:0;--un-skew-y:0;--un-translate-x:0;--un-translate-y:0;--un-translate-z:0;--un-pan-x: ;--un-pan-y: ;--un-pinch-zoom: ;--un-scroll-snap-strictness:proximity;--un-ordinal: ;--un-slashed-zero: ;--un-numeric-figure: ;--un-numeric-spacing: ;--un-numeric-fraction: ;--un-border-spacing-x:0;--un-border-spacing-y:0;--un-ring-offset-shadow:0 0 rgb(0 0 0 / 0);--un-ring-shadow:0 0 rgb(0 0 0 / 0);--un-shadow-inset: ;--un-shadow:0 0 rgb(0 0 0 / 0);--un-ring-inset: ;--un-ring-offset-width:0px;--un-ring-offset-color:#fff;--un-ring-width:0px;--un-ring-color:rgb(147 197 253 / 0.5);--un-blur: ;--un-brightness: ;--un-contrast: ;--un-drop-shadow: ;--un-grayscale: ;--un-hue-rotate: ;--un-invert: ;--un-saturate: ;--un-sepia: ;--un-backdrop-blur: ;--un-backdrop-brightness: ;--un-backdrop-contrast: ;--un-backdrop-grayscale: ;--un-backdrop-hue-rotate: ;--un-backdrop-invert: ;--un-backdrop-opacity: ;--un-backdrop-saturate: ;--un-backdrop-sepia: ;}.i-ri-book-line,[i-ri-book-line=""]{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1.2em' height='1.2em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M3 18.5V5a3 3 0 0 1 3-3h14a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5A3.5 3.5 0 0 1 3 18.5M19 20v-3H6.5a1.5 1.5 0 0 0 0 3zM5 15.337A3.486 3.486 0 0 1 6.5 15H19V4H6a1 1 0 0 0-1 1z'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;width:1.2em;height:1.2em;}.i-ri-folder-2-line,[i-ri-folder-2-line=""]{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1.2em' height='1.2em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M12.414 5H21a1 1 0 0 1 1 1v14a1 1 0 0 1-1 1H3a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1h7.414zM20 11H4v8h16zm0-2V7h-8.414l-2-2H4v4z'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;width:1.2em;height:1.2em;}.i-vscode-icons\:file-type-vscode,[i-vscode-icons\:file-type-vscode=""]{background:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 32 32' width='1.2em' height='1.2em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='%230065a9' d='m29.01 5.03l-5.766-2.776a1.742 1.742 0 0 0-1.989.338L2.38 19.8a1.166 1.166 0 0 0-.08 1.647c.025.027.05.053.077.077l1.541 1.4a1.165 1.165 0 0 0 1.489.066L28.142 5.75A1.158 1.158 0 0 1 30 6.672v-.067a1.748 1.748 0 0 0-.99-1.575'/%3E%3Cpath fill='%23007acc' d='m29.01 26.97l-5.766 2.777a1.745 1.745 0 0 1-1.989-.338L2.38 12.2a1.166 1.166 0 0 1-.08-1.647c.025-.027.05-.053.077-.077l1.541-1.4A1.165 1.165 0 0 1 5.41 9.01l22.732 17.24A1.158 1.158 0 0 0 30 25.328v.072a1.749 1.749 0 0 1-.99 1.57'/%3E%3Cpath fill='%231f9cf0' d='M23.244 29.747a1.745 1.745 0 0 1-1.989-.338A1.025 1.025 0 0 0 23 28.684V3.316a1.024 1.024 0 0 0-1.749-.724a1.744 1.744 0 0 1 1.989-.339l5.765 2.772A1.748 1.748 0 0 1 30 6.6v18.8a1.748 1.748 0 0 1-.991 1.576Z'/%3E%3C/svg%3E") no-repeat;background-size:100% 100%;background-color:transparent;width:1.2em;height:1.2em;}.absolute{position:absolute;}.relative{position:relative;}.left-1{left:0.25rem;}[m~="x-1"]{margin-left:0.25rem;margin-right:0.25rem;}.mr-1,[mr-1=""]{margin-right:0.25rem;}.h-8{height:2rem;}.h-full{height:100%;}.w-8{width:2rem;}.w-full{width:100%;}.flex,[flex=""],[flex~="\~"]{display:flex;}.inline-flex,[inline-flex=""]{display:inline-flex;}.flex-grow{flex-grow:1;}[flex~="col"]{flex-direction:column;}.cursor-pointer{cursor:pointer;}.list-decimal{list-style-type:decimal;}.items-center,[items-center=""]{align-items:center;}.justify-end{justify-content:flex-end;}.justify-center,[justify-center=""]{justify-content:center;}[gap~="\32 "]{gap:0.5rem;}[overflow~="auto"]{overflow:auto;}.border,[border=""]{border-width:1px;}.border-b{border-bottom-width:1px;}.border-b-black,.dark [dark~="border-b-black"]{--un-border-opacity:1;--un-border-bottom-opacity:var(--un-border-opacity);border-bottom-color:rgb(0 0 0 / var(--un-border-bottom-opacity));}.rounded{border-radius:0.25rem;}.rounded-full,[rounded-full=""]{border-radius:9999px;}.bg-gray-100{--un-bg-opacity:1;background-color:rgb(243 244 246 / var(--un-bg-opacity));}.dark .dark\:bg-gray-900{--un-bg-opacity:1;background-color:rgb(17 24 39 / var(--un-bg-opacity));}.p-2,[p~="\32 "]{padding:0.5rem;}.px-1{padding-left:0.25rem;padding-right:0.25rem;}.px-2,[p~="x-2"],[px-2=""]{padding-left:0.5rem;padding-right:0.5rem;}.py,[py~="\34 "]{padding-top:1rem;padding-bottom:1rem;}.py-1,[p~="y-1"],[py-1=""]{padding-top:0.25rem;padding-bottom:0.25rem;}.py-2,[py-2=""]{padding-top:0.5rem;padding-bottom:0.5rem;}.pl{padding-left:1rem;}.pl-5{padding-left:1.25rem;}.pr,[pr~="\34 "]{padding-right:1rem;}[pl~="\31 2"]{padding-left:3rem;}.text-xs{font-size:0.75rem;line-height:1rem;}.dark [text~="dark\:gray-200"]{--un-text-opacity:1;color:rgb(229 231 235 / var(--un-text-opacity));}.text-blue-500{--un-text-opacity:1;color:rgb(59 130 246 / var(--un-text-opacity));}[text~="gray-700"]{--un-text-opacity:1;color:rgb(55 65 81 / var(--un-text-opacity));}.hover\:text-blue-500:hover{--un-text-opacity:1;color:rgb(59 130 246 / var(--un-text-opacity));}.font-bold{font-weight:700;}.op-60{opacity:0.6;}.shadow{--un-shadow:var(--un-shadow-inset) 0 1px 3px 0 var(--un-shadow-color, rgb(0 0 0 / 0.1)),var(--un-shadow-inset) 0 1px 2px -1px var(--un-shadow-color, rgb(0 0 0 / 0.1));box-shadow:var(--un-ring-offset-shadow), var(--un-ring-shadow), var(--un-shadow);}.hover\:shadow-lg:hover{--un-shadow:var(--un-shadow-inset) 0 10px 15px -3px var(--un-shadow-color, rgb(0 0 0 / 0.1)),var(--un-shadow-inset) 0 4px 6px -4px var(--un-shadow-color, rgb(0 0 0 / 0.1));box-shadow:var(--un-ring-offset-shadow), var(--un-ring-shadow), var(--un-shadow);}.shadow-inset{--un-shadow-inset:inset;}.outline{outline-style:solid;}.transition{transition-property:color,background-color,border-color,outline-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter;transition-timing-function:cubic-bezier(0.4, 0, 0.2, 1);transition-duration:150ms;}.ease-in-out{transition-timing-function:cubic-bezier(0.4, 0, 0.2, 1);} html,
387
+ } *,::before,::after{--un-rotate:0;--un-rotate-x:0;--un-rotate-y:0;--un-rotate-z:0;--un-scale-x:1;--un-scale-y:1;--un-scale-z:1;--un-skew-x:0;--un-skew-y:0;--un-translate-x:0;--un-translate-y:0;--un-translate-z:0;--un-pan-x: ;--un-pan-y: ;--un-pinch-zoom: ;--un-scroll-snap-strictness:proximity;--un-ordinal: ;--un-slashed-zero: ;--un-numeric-figure: ;--un-numeric-spacing: ;--un-numeric-fraction: ;--un-border-spacing-x:0;--un-border-spacing-y:0;--un-ring-offset-shadow:0 0 rgb(0 0 0 / 0);--un-ring-shadow:0 0 rgb(0 0 0 / 0);--un-shadow-inset: ;--un-shadow:0 0 rgb(0 0 0 / 0);--un-ring-inset: ;--un-ring-offset-width:0px;--un-ring-offset-color:#fff;--un-ring-width:0px;--un-ring-color:rgb(147 197 253 / 0.5);--un-blur: ;--un-brightness: ;--un-contrast: ;--un-drop-shadow: ;--un-grayscale: ;--un-hue-rotate: ;--un-invert: ;--un-saturate: ;--un-sepia: ;--un-backdrop-blur: ;--un-backdrop-brightness: ;--un-backdrop-contrast: ;--un-backdrop-grayscale: ;--un-backdrop-hue-rotate: ;--un-backdrop-invert: ;--un-backdrop-opacity: ;--un-backdrop-saturate: ;--un-backdrop-sepia: ;}::backdrop{--un-rotate:0;--un-rotate-x:0;--un-rotate-y:0;--un-rotate-z:0;--un-scale-x:1;--un-scale-y:1;--un-scale-z:1;--un-skew-x:0;--un-skew-y:0;--un-translate-x:0;--un-translate-y:0;--un-translate-z:0;--un-pan-x: ;--un-pan-y: ;--un-pinch-zoom: ;--un-scroll-snap-strictness:proximity;--un-ordinal: ;--un-slashed-zero: ;--un-numeric-figure: ;--un-numeric-spacing: ;--un-numeric-fraction: ;--un-border-spacing-x:0;--un-border-spacing-y:0;--un-ring-offset-shadow:0 0 rgb(0 0 0 / 0);--un-ring-shadow:0 0 rgb(0 0 0 / 0);--un-shadow-inset: ;--un-shadow:0 0 rgb(0 0 0 / 0);--un-ring-inset: ;--un-ring-offset-width:0px;--un-ring-offset-color:#fff;--un-ring-width:0px;--un-ring-color:rgb(147 197 253 / 0.5);--un-blur: ;--un-brightness: ;--un-contrast: ;--un-drop-shadow: ;--un-grayscale: ;--un-hue-rotate: ;--un-invert: ;--un-saturate: ;--un-sepia: ;--un-backdrop-blur: ;--un-backdrop-brightness: ;--un-backdrop-contrast: ;--un-backdrop-grayscale: ;--un-backdrop-hue-rotate: ;--un-backdrop-invert: ;--un-backdrop-opacity: ;--un-backdrop-saturate: ;--un-backdrop-sepia: ;}.i-ri-book-line,[i-ri-book-line=""]{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1.2em' height='1.2em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M3 18.5V5a3 3 0 0 1 3-3h14a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5A3.5 3.5 0 0 1 3 18.5M19 20v-3H6.5a1.5 1.5 0 0 0 0 3zM5 15.337A3.486 3.486 0 0 1 6.5 15H19V4H6a1 1 0 0 0-1 1z'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;width:1.2em;height:1.2em;}.i-ri-folder-2-line,[i-ri-folder-2-line=""]{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1.2em' height='1.2em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M12.414 5H21a1 1 0 0 1 1 1v14a1 1 0 0 1-1 1H3a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1h7.414zM20 11H4v8h16zm0-2V7h-8.414l-2-2H4v4z'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;width:1.2em;height:1.2em;}.i-vscode-icons\:file-type-vscode,[i-vscode-icons\:file-type-vscode=""]{background:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 32 32' width='1.2em' height='1.2em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='%230065a9' d='m29.01 5.03l-5.766-2.776a1.74 1.74 0 0 0-1.989.338L2.38 19.8a1.166 1.166 0 0 0-.08 1.647q.037.04.077.077l1.541 1.4a1.165 1.165 0 0 0 1.489.066L28.142 5.75A1.158 1.158 0 0 1 30 6.672v-.067a1.75 1.75 0 0 0-.99-1.575'/%3E%3Cpath fill='%23007acc' d='m29.01 26.97l-5.766 2.777a1.745 1.745 0 0 1-1.989-.338L2.38 12.2a1.166 1.166 0 0 1-.08-1.647q.037-.04.077-.077l1.541-1.4A1.165 1.165 0 0 1 5.41 9.01l22.732 17.24A1.158 1.158 0 0 0 30 25.328v.072a1.75 1.75 0 0 1-.99 1.57'/%3E%3Cpath fill='%231f9cf0' d='M23.244 29.747a1.745 1.745 0 0 1-1.989-.338A1.025 1.025 0 0 0 23 28.684V3.316a1.024 1.024 0 0 0-1.749-.724a1.74 1.74 0 0 1 1.989-.339l5.765 2.772A1.75 1.75 0 0 1 30 6.6v18.8a1.75 1.75 0 0 1-.991 1.576Z'/%3E%3C/svg%3E") no-repeat;background-size:100% 100%;background-color:transparent;width:1.2em;height:1.2em;}.absolute{position:absolute;}.relative{position:relative;}.left-1{left:0.25rem;}[m~="x-1"]{margin-left:0.25rem;margin-right:0.25rem;}.mr-1,[mr-1=""]{margin-right:0.25rem;}.h-8{height:2rem;}.h-full{height:100%;}.w-8{width:2rem;}.w-full{width:100%;}.flex,[flex=""],[flex~="\~"]{display:flex;}.inline-flex,[inline-flex=""]{display:inline-flex;}.flex-grow{flex-grow:1;}[flex~="col"]{flex-direction:column;}.cursor-pointer{cursor:pointer;}.list-decimal{list-style-type:decimal;}.items-center,[items-center=""]{align-items:center;}.justify-end{justify-content:flex-end;}.justify-center,[justify-center=""]{justify-content:center;}[gap~="\32 "]{gap:0.5rem;}[overflow~="auto"]{overflow:auto;}.border,[border=""]{border-width:1px;}.border-b{border-bottom-width:1px;}.border-b-black,.dark [dark~="border-b-black"]{--un-border-opacity:1;--un-border-bottom-opacity:var(--un-border-opacity);border-bottom-color:rgb(0 0 0 / var(--un-border-bottom-opacity));}.rounded{border-radius:0.25rem;}.rounded-full,[rounded-full=""]{border-radius:9999px;}.bg-gray-100{--un-bg-opacity:1;background-color:rgb(243 244 246 / var(--un-bg-opacity));}.dark .dark\:bg-gray-900{--un-bg-opacity:1;background-color:rgb(17 24 39 / var(--un-bg-opacity));}.p-2,[p~="\32 "]{padding:0.5rem;}.px-1{padding-left:0.25rem;padding-right:0.25rem;}.px-2,[p~="x-2"],[px-2=""]{padding-left:0.5rem;padding-right:0.5rem;}.py,[py~="\34 "]{padding-top:1rem;padding-bottom:1rem;}.py-1,[p~="y-1"],[py-1=""]{padding-top:0.25rem;padding-bottom:0.25rem;}.py-2,[py-2=""]{padding-top:0.5rem;padding-bottom:0.5rem;}.pl{padding-left:1rem;}.pl-5{padding-left:1.25rem;}.pr,[pr~="\34 "]{padding-right:1rem;}[pl~="\31 2"]{padding-left:3rem;}.text-xs{font-size:0.75rem;line-height:1rem;}.dark [text~="dark\:gray-200"]{--un-text-opacity:1;color:rgb(229 231 235 / var(--un-text-opacity));}.text-blue-500{--un-text-opacity:1;color:rgb(59 130 246 / var(--un-text-opacity));}[text~="gray-700"]{--un-text-opacity:1;color:rgb(55 65 81 / var(--un-text-opacity));}.hover\:text-blue-500:hover{--un-text-opacity:1;color:rgb(59 130 246 / var(--un-text-opacity));}.font-bold{font-weight:700;}.op-60{opacity:0.6;}.shadow{--un-shadow:var(--un-shadow-inset) 0 1px 3px 0 var(--un-shadow-color, rgb(0 0 0 / 0.1)),var(--un-shadow-inset) 0 1px 2px -1px var(--un-shadow-color, rgb(0 0 0 / 0.1));box-shadow:var(--un-ring-offset-shadow), var(--un-ring-shadow), var(--un-shadow);}.hover\:shadow-lg:hover{--un-shadow:var(--un-shadow-inset) 0 10px 15px -3px var(--un-shadow-color, rgb(0 0 0 / 0.1)),var(--un-shadow-inset) 0 4px 6px -4px var(--un-shadow-color, rgb(0 0 0 / 0.1));box-shadow:var(--un-ring-offset-shadow), var(--un-ring-shadow), var(--un-shadow);}.shadow-inset{--un-shadow-inset:inset;}.outline{outline-style:solid;}.transition{transition-property:color,background-color,border-color,outline-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter;transition-timing-function:cubic-bezier(0.4, 0, 0.2, 1);transition-duration:150ms;}.ease-in-out{transition-timing-function:cubic-bezier(0.4, 0, 0.2, 1);} html,
388
388
  body {
389
389
  height: 100%;
390
390
  }
@@ -1,4 +1,4 @@
1
- const __vite__fileDeps=["./index-Cd46Agkz.js","./_plugin-vue_export-helper-DgDhiqFL.js","./index-DF84L4of.css","./about-BFD_MvF9.js","./categories-D_edQMeI.js","./tags-IGhVL7Gg.js"],__vite__mapDeps=i=>i.map(i=>__vite__fileDeps[i]);
1
+ const __vite__fileDeps=["./index-BRTQkmk7.js","./_plugin-vue_export-helper-DgDhiqFL.js","./index-DF84L4of.css","./about-DwWwcIBI.js","./categories-CuWZw3k9.js","./tags-BDSDogY-.js"],__vite__mapDeps=i=>i.map(i=>__vite__fileDeps[i]);
2
2
  true&&(function polyfill() {
3
3
  const relList = document.createElement('link').relList;
4
4
  if (relList && relList.supports && relList.supports('modulepreload')) {
@@ -45,7 +45,7 @@ true&&(function polyfill() {
45
45
  /* Injected with object hook! */
46
46
 
47
47
  /**
48
- * @vue/shared v3.4.23
48
+ * @vue/shared v3.4.27
49
49
  * (c) 2018-present Yuxi (Evan) You and Vue contributors
50
50
  * @license MIT
51
51
  **/
@@ -53,7 +53,7 @@ true&&(function polyfill() {
53
53
  // @__NO_SIDE_EFFECTS__
54
54
  function makeMap(str, expectsLowerCase) {
55
55
  const set = new Set(str.split(","));
56
- return expectsLowerCase ? (val) => set.has(val.toLowerCase()) : (val) => set.has(val);
56
+ return (val) => set.has(val);
57
57
  }
58
58
  const EMPTY_OBJ = {};
59
59
  const EMPTY_ARR = [];
@@ -121,10 +121,11 @@ const invokeArrayFns = (fns, arg) => {
121
121
  fns[i](arg);
122
122
  }
123
123
  };
124
- const def = (obj, key, value) => {
124
+ const def = (obj, key, value, writable = false) => {
125
125
  Object.defineProperty(obj, key, {
126
126
  configurable: true,
127
127
  enumerable: false,
128
+ writable,
128
129
  value
129
130
  });
130
131
  };
@@ -230,7 +231,7 @@ const stringifySymbol = (v, i = "") => {
230
231
  /* Injected with object hook! */
231
232
 
232
233
  /**
233
- * @vue/reactivity v3.4.23
234
+ * @vue/reactivity v3.4.27
234
235
  * (c) 2018-present Yuxi (Evan) You and Vue contributors
235
236
  * @license MIT
236
237
  **/
@@ -369,11 +370,10 @@ class ReactiveEffect {
369
370
  }
370
371
  }
371
372
  stop() {
372
- var _a;
373
373
  if (this.active) {
374
374
  preCleanupEffect(this);
375
375
  postCleanupEffect(this);
376
- (_a = this.onStop) == null ? void 0 : _a.call(this);
376
+ this.onStop && this.onStop();
377
377
  this.active = false;
378
378
  }
379
379
  }
@@ -698,6 +698,7 @@ const readonlyHandlers = /* @__PURE__ */ new ReadonlyReactiveHandler();
698
698
  const shallowReactiveHandlers = /* @__PURE__ */ new MutableReactiveHandler(
699
699
  true
700
700
  );
701
+ const shallowReadonlyHandlers = /* @__PURE__ */ new ReadonlyReactiveHandler(true);
701
702
  const toShallow = (value) => value;
702
703
  const getProto = (v) => Reflect.getPrototypeOf(v);
703
704
  function get(target, key, isReadonly2 = false, isShallow2 = false) {
@@ -953,6 +954,9 @@ const shallowCollectionHandlers = {
953
954
  const readonlyCollectionHandlers = {
954
955
  get: /* @__PURE__ */ createInstrumentationGetter(true, false)
955
956
  };
957
+ const shallowReadonlyCollectionHandlers = {
958
+ get: /* @__PURE__ */ createInstrumentationGetter(true, true)
959
+ };
956
960
  const reactiveMap = /* @__PURE__ */ new WeakMap();
957
961
  const shallowReactiveMap = /* @__PURE__ */ new WeakMap();
958
962
  const readonlyMap = /* @__PURE__ */ new WeakMap();
@@ -1004,6 +1008,15 @@ function readonly(target) {
1004
1008
  readonlyMap
1005
1009
  );
1006
1010
  }
1011
+ function shallowReadonly(target) {
1012
+ return createReactiveObject(
1013
+ target,
1014
+ true,
1015
+ shallowReadonlyHandlers,
1016
+ shallowReadonlyCollectionHandlers,
1017
+ shallowReadonlyMap
1018
+ );
1019
+ }
1007
1020
  function createReactiveObject(target, isReadonly2, baseHandlers, collectionHandlers, proxyMap) {
1008
1021
  if (!isObject(target)) {
1009
1022
  return target;
@@ -1188,7 +1201,7 @@ function proxyRefs(objectWithRefs) {
1188
1201
  /* Injected with object hook! */
1189
1202
 
1190
1203
  /**
1191
- * @vue/runtime-core v3.4.23
1204
+ * @vue/runtime-core v3.4.27
1192
1205
  * (c) 2018-present Yuxi (Evan) You and Vue contributors
1193
1206
  * @license MIT
1194
1207
  **/
@@ -1626,21 +1639,21 @@ function renderComponentRoot(instance) {
1626
1639
  vnode,
1627
1640
  proxy,
1628
1641
  withProxy,
1629
- props,
1630
1642
  propsOptions: [propsOptions],
1631
1643
  slots,
1632
1644
  attrs,
1633
1645
  emit: emit2,
1634
1646
  render,
1635
1647
  renderCache,
1648
+ props,
1636
1649
  data,
1637
1650
  setupState,
1638
1651
  ctx,
1639
1652
  inheritAttrs
1640
1653
  } = instance;
1654
+ const prev = setCurrentRenderingInstance(instance);
1641
1655
  let result;
1642
1656
  let fallthroughAttrs;
1643
- const prev = setCurrentRenderingInstance(instance);
1644
1657
  try {
1645
1658
  if (vnode.shapeFlag & 4) {
1646
1659
  const proxyToUse = withProxy || proxy;
@@ -1659,7 +1672,7 @@ function renderComponentRoot(instance) {
1659
1672
  thisProxy,
1660
1673
  proxyToUse,
1661
1674
  renderCache,
1662
- props,
1675
+ false ? shallowReadonly(props) : props,
1663
1676
  setupState,
1664
1677
  data,
1665
1678
  ctx
@@ -1671,19 +1684,18 @@ function renderComponentRoot(instance) {
1671
1684
  if (false) ;
1672
1685
  result = normalizeVNode(
1673
1686
  render2.length > 1 ? render2(
1674
- props,
1687
+ false ? shallowReadonly(props) : props,
1675
1688
  false ? {
1676
1689
  get attrs() {
1677
1690
  markAttrsAccessed();
1678
- return attrs;
1691
+ return shallowReadonly(attrs);
1679
1692
  },
1680
1693
  slots,
1681
1694
  emit: emit2
1682
1695
  } : { attrs, slots, emit: emit2 }
1683
1696
  ) : render2(
1684
- props,
1697
+ false ? shallowReadonly(props) : props,
1685
1698
  null
1686
- /* we know it doesn't need it */
1687
1699
  )
1688
1700
  );
1689
1701
  fallthroughAttrs = Component.props ? attrs : getFunctionalFallthrough(attrs);
@@ -1705,12 +1717,12 @@ function renderComponentRoot(instance) {
1705
1717
  propsOptions
1706
1718
  );
1707
1719
  }
1708
- root = cloneVNode(root, fallthroughAttrs);
1720
+ root = cloneVNode(root, fallthroughAttrs, false, true);
1709
1721
  }
1710
1722
  }
1711
1723
  }
1712
1724
  if (vnode.dirs) {
1713
- root = cloneVNode(root);
1725
+ root = cloneVNode(root, null, false, true);
1714
1726
  root.dirs = root.dirs ? root.dirs.concat(vnode.dirs) : vnode.dirs;
1715
1727
  }
1716
1728
  if (vnode.transition) {
@@ -1820,7 +1832,7 @@ function resolveAsset(type, name, warnMissing = true, maybeSelfReference = false
1820
1832
  const instance = currentRenderingInstance || currentInstance;
1821
1833
  if (instance) {
1822
1834
  const Component = instance.type;
1823
- if (type === COMPONENTS) {
1835
+ {
1824
1836
  const selfName = getComponentName(
1825
1837
  Component,
1826
1838
  false
@@ -2043,34 +2055,29 @@ function createPathGetter(ctx, path) {
2043
2055
  return cur;
2044
2056
  };
2045
2057
  }
2046
- function traverse(value, depth, currentDepth = 0, seen) {
2047
- if (!isObject(value) || value["__v_skip"]) {
2058
+ function traverse(value, depth = Infinity, seen) {
2059
+ if (depth <= 0 || !isObject(value) || value["__v_skip"]) {
2048
2060
  return value;
2049
2061
  }
2050
- if (depth && depth > 0) {
2051
- if (currentDepth >= depth) {
2052
- return value;
2053
- }
2054
- currentDepth++;
2055
- }
2056
2062
  seen = seen || /* @__PURE__ */ new Set();
2057
2063
  if (seen.has(value)) {
2058
2064
  return value;
2059
2065
  }
2060
2066
  seen.add(value);
2067
+ depth--;
2061
2068
  if (isRef(value)) {
2062
- traverse(value.value, depth, currentDepth, seen);
2069
+ traverse(value.value, depth, seen);
2063
2070
  } else if (isArray$1(value)) {
2064
2071
  for (let i = 0; i < value.length; i++) {
2065
- traverse(value[i], depth, currentDepth, seen);
2072
+ traverse(value[i], depth, seen);
2066
2073
  }
2067
2074
  } else if (isSet(value) || isMap(value)) {
2068
2075
  value.forEach((v) => {
2069
- traverse(v, depth, currentDepth, seen);
2076
+ traverse(v, depth, seen);
2070
2077
  });
2071
2078
  } else if (isPlainObject(value)) {
2072
2079
  for (const key in value) {
2073
- traverse(value[key], depth, currentDepth, seen);
2080
+ traverse(value[key], depth, seen);
2074
2081
  }
2075
2082
  }
2076
2083
  return value;
@@ -2191,44 +2198,41 @@ function onErrorCaptured(hook, target = currentInstance) {
2191
2198
  }
2192
2199
  function renderList(source, renderItem, cache, index) {
2193
2200
  let ret;
2194
- const cached = cache && cache[index];
2201
+ const cached = cache ;
2195
2202
  if (isArray$1(source) || isString(source)) {
2196
2203
  ret = new Array(source.length);
2197
2204
  for (let i = 0, l = source.length; i < l; i++) {
2198
- ret[i] = renderItem(source[i], i, void 0, cached && cached[i]);
2205
+ ret[i] = renderItem(source[i], i, void 0, cached );
2199
2206
  }
2200
2207
  } else if (typeof source === "number") {
2201
2208
  ret = new Array(source);
2202
2209
  for (let i = 0; i < source; i++) {
2203
- ret[i] = renderItem(i + 1, i, void 0, cached && cached[i]);
2210
+ ret[i] = renderItem(i + 1, i, void 0, cached );
2204
2211
  }
2205
2212
  } else if (isObject(source)) {
2206
2213
  if (source[Symbol.iterator]) {
2207
2214
  ret = Array.from(
2208
2215
  source,
2209
- (item, i) => renderItem(item, i, void 0, cached && cached[i])
2216
+ (item, i) => renderItem(item, i, void 0, cached )
2210
2217
  );
2211
2218
  } else {
2212
2219
  const keys = Object.keys(source);
2213
2220
  ret = new Array(keys.length);
2214
2221
  for (let i = 0, l = keys.length; i < l; i++) {
2215
2222
  const key = keys[i];
2216
- ret[i] = renderItem(source[key], key, i, cached && cached[i]);
2223
+ ret[i] = renderItem(source[key], key, i, cached );
2217
2224
  }
2218
2225
  }
2219
2226
  } else {
2220
2227
  ret = [];
2221
2228
  }
2222
- if (cache) {
2223
- cache[index] = ret;
2224
- }
2225
2229
  return ret;
2226
2230
  }
2227
2231
  function renderSlot(slots, name, props = {}, fallback, noSlotted) {
2228
2232
  if (currentRenderingInstance.isCE || currentRenderingInstance.parent && isAsyncWrapper(currentRenderingInstance.parent) && currentRenderingInstance.parent.isCE) {
2229
2233
  if (name !== "default")
2230
2234
  props.name = name;
2231
- return createVNode("slot", props, fallback && fallback());
2235
+ return createVNode("slot", props, fallback );
2232
2236
  }
2233
2237
  let slot = slots[name];
2234
2238
  if (slot && slot._c) {
@@ -2243,10 +2247,10 @@ function renderSlot(slots, name, props = {}, fallback, noSlotted) {
2243
2247
  // key attached in the `createSlots` helper, respect that
2244
2248
  validSlotContent && validSlotContent.key || `_${name}`
2245
2249
  },
2246
- validSlotContent || (fallback ? fallback() : []),
2250
+ validSlotContent || ([]),
2247
2251
  validSlotContent && slots._ === 1 ? 64 : -2
2248
2252
  );
2249
- if (!noSlotted && rendered.scopeId) {
2253
+ if (rendered.scopeId) {
2250
2254
  rendered.slotScopeIds = [rendered.scopeId + "-s"];
2251
2255
  }
2252
2256
  if (slot && slot._c) {
@@ -2877,7 +2881,7 @@ function inject(key, defaultValue, treatDefaultAsFactory = false) {
2877
2881
  } else ;
2878
2882
  }
2879
2883
  }
2880
- const internalObjectProto = /* @__PURE__ */ Object.create(null);
2884
+ const internalObjectProto = {};
2881
2885
  const createInternalObject = () => Object.create(internalObjectProto);
2882
2886
  const isInternalObject = (obj) => Object.getPrototypeOf(obj) === internalObjectProto;
2883
2887
  function initProps(instance, rawProps, isStateful, isSSR = false) {
@@ -3202,22 +3206,17 @@ const normalizeVNodeSlots = (instance, children) => {
3202
3206
  instance.slots.default = () => normalized;
3203
3207
  };
3204
3208
  const initSlots = (instance, children) => {
3209
+ const slots = instance.slots = createInternalObject();
3205
3210
  if (instance.vnode.shapeFlag & 32) {
3206
3211
  const type = children._;
3207
3212
  if (type) {
3208
- instance.slots = toRaw(children);
3209
- def(instance.slots, "_", type);
3213
+ extend(slots, children);
3214
+ def(slots, "_", type, true);
3210
3215
  } else {
3211
- normalizeObjectSlots(
3212
- children,
3213
- instance.slots = createInternalObject()
3214
- );
3215
- }
3216
- } else {
3217
- instance.slots = createInternalObject();
3218
- if (children) {
3219
- normalizeVNodeSlots(instance, children);
3216
+ normalizeObjectSlots(children, slots);
3220
3217
  }
3218
+ } else if (children) {
3219
+ normalizeVNodeSlots(instance, children);
3221
3220
  }
3222
3221
  };
3223
3222
  const updateSlots = (instance, children, optimized) => {
@@ -4615,11 +4614,6 @@ function baseCreateRenderer(options, createHydrationFns) {
4615
4614
  };
4616
4615
  let hydrate;
4617
4616
  let hydrateNode;
4618
- if (createHydrationFns) {
4619
- [hydrate, hydrateNode] = createHydrationFns(
4620
- internals
4621
- );
4622
- }
4623
4617
  return {
4624
4618
  render,
4625
4619
  hydrate,
@@ -4882,8 +4876,8 @@ function guardReactiveProps(props) {
4882
4876
  return null;
4883
4877
  return isProxy(props) || isInternalObject(props) ? extend({}, props) : props;
4884
4878
  }
4885
- function cloneVNode(vnode, extraProps, mergeRef = false) {
4886
- const { props, ref: ref3, patchFlag, children } = vnode;
4879
+ function cloneVNode(vnode, extraProps, mergeRef = false, cloneTransition = false) {
4880
+ const { props, ref: ref3, patchFlag, children, transition } = vnode;
4887
4881
  const mergedProps = extraProps ? mergeProps(props || {}, extraProps) : props;
4888
4882
  const cloned = {
4889
4883
  __v_isVNode: true,
@@ -4913,7 +4907,7 @@ function cloneVNode(vnode, extraProps, mergeRef = false) {
4913
4907
  dynamicChildren: vnode.dynamicChildren,
4914
4908
  appContext: vnode.appContext,
4915
4909
  dirs: vnode.dirs,
4916
- transition: vnode.transition,
4910
+ transition,
4917
4911
  // These should technically only be non-null on mounted VNodes. However,
4918
4912
  // they *should* be copied for kept-alive vnodes. So we just always copy
4919
4913
  // them since them being non-null during a mount doesn't affect the logic as
@@ -4927,6 +4921,9 @@ function cloneVNode(vnode, extraProps, mergeRef = false) {
4927
4921
  ctx: vnode.ctx,
4928
4922
  ce: vnode.ce
4929
4923
  };
4924
+ if (transition && cloneTransition) {
4925
+ cloned.transition = transition.clone(cloned);
4926
+ }
4930
4927
  return cloned;
4931
4928
  }
4932
4929
  function createTextVNode(text = " ", flag = 0) {
@@ -5347,12 +5344,12 @@ function h(type, propsOrChildren, children) {
5347
5344
  return createVNode(type, propsOrChildren, children);
5348
5345
  }
5349
5346
  }
5350
- const version = "3.4.23";
5347
+ const version = "3.4.27";
5351
5348
 
5352
5349
  /* Injected with object hook! */
5353
5350
 
5354
5351
  /**
5355
- * @vue/runtime-dom v3.4.23
5352
+ * @vue/runtime-dom v3.4.27
5356
5353
  * (c) 2018-present Yuxi (Evan) You and Vue contributors
5357
5354
  * @license MIT
5358
5355
  **/
@@ -5845,25 +5842,25 @@ const routes = [
5845
5842
  {
5846
5843
  path: '/',
5847
5844
  name: '/',
5848
- component: () => __vitePreload(() => import('./index-Cd46Agkz.js'),true?__vite__mapDeps([0,1,2]):void 0,import.meta.url),
5845
+ component: () => __vitePreload(() => import('./index-BRTQkmk7.js'),true?__vite__mapDeps([0,1,2]):void 0,import.meta.url),
5849
5846
  /* no children */
5850
5847
  },
5851
5848
  {
5852
5849
  path: '/about',
5853
5850
  name: '/about',
5854
- component: () => __vitePreload(() => import('./about-BFD_MvF9.js'),true?__vite__mapDeps([3,1]):void 0,import.meta.url),
5851
+ component: () => __vitePreload(() => import('./about-DwWwcIBI.js'),true?__vite__mapDeps([3,1]):void 0,import.meta.url),
5855
5852
  /* no children */
5856
5853
  },
5857
5854
  {
5858
5855
  path: '/categories',
5859
5856
  name: '/categories',
5860
- component: () => __vitePreload(() => import('./categories-D_edQMeI.js'),true?__vite__mapDeps([4,1]):void 0,import.meta.url),
5857
+ component: () => __vitePreload(() => import('./categories-CuWZw3k9.js'),true?__vite__mapDeps([4,1]):void 0,import.meta.url),
5861
5858
  /* no children */
5862
5859
  },
5863
5860
  {
5864
5861
  path: '/tags',
5865
5862
  name: '/tags',
5866
- component: () => __vitePreload(() => import('./tags-IGhVL7Gg.js'),true?__vite__mapDeps([5,1]):void 0,import.meta.url),
5863
+ component: () => __vitePreload(() => import('./tags-BDSDogY-.js'),true?__vite__mapDeps([5,1]):void 0,import.meta.url),
5867
5864
  /* no children */
5868
5865
  }
5869
5866
  ];
@@ -5871,7 +5868,7 @@ const routes = [
5871
5868
  /* Injected with object hook! */
5872
5869
 
5873
5870
  /*!
5874
- * vue-router v4.3.0
5871
+ * vue-router v4.3.2
5875
5872
  * (c) 2024 Eduardo San Martin Morote
5876
5873
  * @license MIT
5877
5874
  */
@@ -6970,7 +6967,10 @@ function isRouteComponent(component) {
6970
6967
  function useLink(props) {
6971
6968
  const router = inject(routerKey);
6972
6969
  const currentRoute = inject(routeLocationKey);
6973
- const route = computed(() => router.resolve(unref(props.to)));
6970
+ const route = computed(() => {
6971
+ const to = unref(props.to);
6972
+ return router.resolve(to);
6973
+ });
6974
6974
  const activeRecordIndex = computed(() => {
6975
6975
  const { matched } = route.value;
6976
6976
  const { length } = matched;
@@ -1,5 +1,5 @@
1
1
  import { _ as _export_sfc } from './_plugin-vue_export-helper-DgDhiqFL.js';
2
- import { a as createElementBlock, o as openBlock } from './index-C-zhEyv8.js';
2
+ import { a as createElementBlock, o as openBlock } from './index-BrXoePMX.js';
3
3
 
4
4
  /* unplugin-vue-components disabled */const _sfc_main = {};
5
5
 
@@ -6,8 +6,8 @@
6
6
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
7
7
  <link rel="icon" href="/favicon.svg" type="image/svg+xml">
8
8
  <title>Valaxy Devtools</title>
9
- <script type="module" crossorigin src="./assets/index-C-zhEyv8.js"></script>
10
- <link rel="stylesheet" crossorigin href="./assets/index-DWqsJbxC.css">
9
+ <script type="module" crossorigin src="./assets/index-BrXoePMX.js"></script>
10
+ <link rel="stylesheet" crossorigin href="./assets/index-BihflHSk.css">
11
11
  </head>
12
12
 
13
13
  <body data-vite-inspect-mode="DEV">
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@valaxyjs/devtools",
3
3
  "type": "module",
4
- "version": "0.18.6",
4
+ "version": "0.18.7",
5
5
  "repository": {
6
6
  "url": "https://github.com/YunYouJun/valaxy"
7
7
  },
@@ -34,7 +34,7 @@
34
34
  "typescript": "^5.4.5",
35
35
  "unbuild": "^2.0.0",
36
36
  "unplugin-vue-router": "^0.8.6",
37
- "vite": "^5.2.9"
37
+ "vite": "^5.2.11"
38
38
  },
39
39
  "scripts": {
40
40
  "build": "rimraf dist && run-s build:*",
@@ -1,59 +1,59 @@
1
1
  /* eslint-disable */
2
- /* prettier-ignore */
3
2
  // @ts-nocheck
4
3
  // Generated by unplugin-vue-components
5
4
  // Read more: https://github.com/vuejs/core/pull/3399
6
5
  export {}
7
6
 
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.23/node_modules/@advjs/gui/client/components/accordion/AGUIAccordion.vue')['default']
11
- AGUIAccordionItem: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.4.23/node_modules/@advjs/gui/client/components/accordion/AGUIAccordionItem.vue')['default']
12
- AGUIApp: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.4.23/node_modules/@advjs/gui/client/components/AGUIApp.vue')['default']
13
- AGUIAssetsExplorer: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.4.23/node_modules/@advjs/gui/client/components/explorer/AGUIAssetsExplorer.vue')['default']
14
- AGUIBreadcrumb: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.4.23/node_modules/@advjs/gui/client/components/breadcrumb/AGUIBreadcrumb.vue')['default']
15
- AGUIButton: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.4.23/node_modules/@advjs/gui/client/components/button/AGUIButton.vue')['default']
16
- AGUICheckbox: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.4.23/node_modules/@advjs/gui/client/components/AGUICheckbox.vue')['default']
17
- AGUIColorPicker: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.4.23/node_modules/@advjs/gui/client/components/AGUIColorPicker.vue')['default']
18
- AGUIContextMenu: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.4.23/node_modules/@advjs/gui/client/components/context-menu/AGUIContextMenu.vue')['default']
19
- AGUIContextMenuItem: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.4.23/node_modules/@advjs/gui/client/components/context-menu/AGUIContextMenuItem.vue')['default']
20
- AGUIDetails: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.4.23/node_modules/@advjs/gui/client/components/AGUIDetails.vue')['default']
21
- AGUIExplorerControls: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.4.23/node_modules/@advjs/gui/client/components/explorer/AGUIExplorerControls.vue')['default']
22
- AGUIFileHandler: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.4.23/node_modules/@advjs/gui/client/components/file/AGUIFileHandler.vue')['default']
23
- AGUIFileItem: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.4.23/node_modules/@advjs/gui/client/components/explorer/AGUIFileItem.vue')['default']
24
- AGUIFileList: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.4.23/node_modules/@advjs/gui/client/components/explorer/AGUIFileList.vue')['default']
25
- AGUIForm: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.4.23/node_modules/@advjs/gui/client/components/form/AGUIForm.vue')['default']
26
- AGUIFormItem: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.4.23/node_modules/@advjs/gui/client/components/form/AGUIFormItem.vue')['default']
27
- AGUIHr: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.4.23/node_modules/@advjs/gui/client/components/common/AGUIHr.vue')['default']
28
- AGUIIcon: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.4.23/node_modules/@advjs/gui/client/components/icon/AGUIIcon.vue')['default']
29
- AGUIIconButton: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.4.23/node_modules/@advjs/gui/client/components/button/AGUIIconButton.vue')['default']
30
- AGUIInnerInput: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.4.23/node_modules/@advjs/gui/client/components/input/AGUIInnerInput.vue')['default']
31
- AGUIInput: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.4.23/node_modules/@advjs/gui/client/components/input/AGUIInput.vue')['default']
32
- AGUIInputNumber: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.4.23/node_modules/@advjs/gui/client/components/input/AGUIInputNumber.vue')['default']
33
- AGUIInputVector: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.4.23/node_modules/@advjs/gui/client/components/input/AGUIInputVector.vue')['default']
34
- AGUILayout: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.4.23/node_modules/@advjs/gui/client/components/layout/AGUILayout.vue')['default']
35
- AGUIMenubar: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.4.23/node_modules/@advjs/gui/client/components/menu/AGUIMenubar.vue')['default']
36
- AGUIMenubarMenu: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.4.23/node_modules/@advjs/gui/client/components/menu/AGUIMenubarMenu.vue')['default']
37
- AGUINumberField: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.4.23/node_modules/@advjs/gui/client/components/AGUINumberField.vue')['default']
38
- AGUINumberSlider: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.4.23/node_modules/@advjs/gui/client/components/AGUINumberSlider.vue')['default']
39
- AGUIOpenDirectory: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.4.23/node_modules/@advjs/gui/client/components/explorer/AGUIOpenDirectory.vue')['default']
40
- AGUIOverlay: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.4.23/node_modules/@advjs/gui/client/components/AGUIOverlay.vue')['default']
41
- AGUIPanel: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.4.23/node_modules/@advjs/gui/client/components/AGUIPanel.vue')['default']
42
- AGUIPropertiesForm: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.4.23/node_modules/@advjs/gui/client/components/panel/AGUIPropertiesForm.vue')['default']
43
- AGUIPropertiesPanel: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.4.23/node_modules/@advjs/gui/client/components/panel/AGUIPropertiesPanel.vue')['default']
44
- AGUIProperty: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.4.23/node_modules/@advjs/gui/client/components/AGUIProperty.vue')['default']
45
- AGUISelect: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.4.23/node_modules/@advjs/gui/client/components/select/AGUISelect.vue')['default']
46
- AGUISlider: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.4.23/node_modules/@advjs/gui/client/components/AGUISlider.vue')['default']
47
- AGUITabPanel: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.4.23/node_modules/@advjs/gui/client/components/tabs/AGUITabPanel.vue')['default']
48
- AGUITabs: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.4.23/node_modules/@advjs/gui/client/components/tabs/AGUITabs.vue')['default']
49
- AGUITextarea: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.4.23/node_modules/@advjs/gui/client/components/textarea/AGUITextarea.vue')['default']
50
- AGUIToast: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.4.23/node_modules/@advjs/gui/client/components/toast/AGUIToast.vue')['default']
51
- AGUIToggleIcon: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.4.23/node_modules/@advjs/gui/client/components/button/AGUIToggleIcon.vue')['default']
52
- AGUIToolbar: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.4.23/node_modules/@advjs/gui/client/components/toolbar/AGUIToolbar.vue')['default']
53
- AGUITree: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.4.23/node_modules/@advjs/gui/client/components/tree/AGUITree.vue')['default']
54
- AGUITreeNode: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.4.23/node_modules/@advjs/gui/client/components/tree/AGUITreeNode.vue')['default']
55
- BIconChevronLeft: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.4.23/node_modules/@advjs/gui/client/components/icons/BIconChevronLeft.vue')['default']
56
- BIconChevronRight: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.4.23/node_modules/@advjs/gui/client/components/icons/BIconChevronRight.vue')['default']
10
+ AGUIAccordion: typeof import('./../../../../node_modules/.pnpm/@advjs+gui@0.0.7-beta.1_vue@3.4.27_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.27_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.27_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.27_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.27_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.27_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.27_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.27_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.27_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.27_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.27_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.27_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.27_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.27_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.27_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.27_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.27_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.27_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.27_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.27_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.27_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.27_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.27_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.27_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.27_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.27_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.27_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.27_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.27_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.27_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.27_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.27_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.27_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.27_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.27_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.27_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.27_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.27_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.27_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.27_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.27_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.27_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.27_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.27_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.27_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.27_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.27_typescript@5.4.5_/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']