vite-plugin-vue-devtools 0.0.5 → 0.0.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.
Files changed (26) hide show
  1. package/dist/client/assets/{VCard-8dda4b89.js → VCard-415c7ae5.js} +1 -1
  2. package/dist/client/assets/{VIcon.vue_vue_type_script_setup_true_lang-b9e1052c.js → VIcon.vue_vue_type_script_setup_true_lang-60e8343f.js} +1 -1
  3. package/dist/client/assets/{VIconTitle.vue_vue_type_script_setup_true_lang-ec1b3b7a.js → VIconTitle.vue_vue_type_script_setup_true_lang-e52820ad.js} +1 -1
  4. package/dist/client/assets/{VPanelGrids-eb4fe74d.js → VPanelGrids-155c3f49.js} +1 -1
  5. package/dist/client/assets/{VTextInput.vue_vue_type_script_setup_true_lang-14bfbfbb.js → VTextInput.vue_vue_type_script_setup_true_lang-a7aeaac7.js} +3 -3
  6. package/dist/client/assets/{__inspecting-b8697c3c.js → __inspecting-952b7753.js} +2 -2
  7. package/dist/client/assets/{assets-9ac104fb.js → assets-606d73ab.js} +7 -7
  8. package/dist/client/assets/{components-b3ff2252.js → components-bd34817a.js} +96 -6
  9. package/dist/client/assets/{graph-74eabf92.js → graph-1c1d01ca.js} +2 -2
  10. package/dist/client/assets/{index-e9e51318.js → index-21cc52d6.js} +1 -1
  11. package/dist/client/assets/{index-fceca701.css → index-62a10721.css} +1 -1
  12. package/dist/client/assets/{index-03df0916.js → index-89bcc57b.js} +154 -312
  13. package/dist/client/assets/{inspect-efa81d08.js → inspect-f75be7cc.js} +2 -2
  14. package/dist/client/assets/{overview-642d4475.js → overview-a18b9320.js} +5 -5
  15. package/dist/client/assets/{pages-4f6946a5.js → pages-da50bc3a.js} +4 -4
  16. package/dist/client/assets/{pinia-7b31943d.js → pinia-a857fe5f.js} +4 -4
  17. package/dist/client/assets/{routes-39cb7889.js → routes-012c9d6a.js} +6 -6
  18. package/dist/client/assets/{rpc-c1c125a2.js → rpc-115351a6.js} +1 -1
  19. package/dist/client/assets/{settings-6c9c579a.js → settings-cf21bbcf.js} +32 -16
  20. package/dist/client/assets/{splitpanes.es-00d9608c.js → splitpanes.es-3cb512fa.js} +3 -3
  21. package/dist/client/assets/{timeline-a7dd8994.js → timeline-d187c4c5.js} +6 -6
  22. package/dist/client/index.html +2 -2
  23. package/dist/index.cjs +12 -10
  24. package/dist/index.mjs +9 -7
  25. package/package.json +1 -1
  26. package/src/node/Container.vue +2 -2
@@ -302,12 +302,12 @@ const cacheStringFunction = (fn) => {
302
302
  return hit || (cache[str] = fn(str));
303
303
  });
304
304
  };
305
- const camelizeRE$1 = /-(\w)/g;
305
+ const camelizeRE = /-(\w)/g;
306
306
  /**
307
307
  * @private
308
308
  */
309
- const camelize$1 = cacheStringFunction((str) => {
310
- return str.replace(camelizeRE$1, (_, c) => (c ? c.toUpperCase() : ''));
309
+ const camelize = cacheStringFunction((str) => {
310
+ return str.replace(camelizeRE, (_, c) => (c ? c.toUpperCase() : ''));
311
311
  });
312
312
  const hyphenateRE = /\B([A-Z])/g;
313
313
  /**
@@ -1678,7 +1678,7 @@ function emit(instance, event, ...rawArgs) {
1678
1678
  let handlerName;
1679
1679
  let handler = props[(handlerName = toHandlerKey(event))] ||
1680
1680
  // also try camelCase event handler (#2249)
1681
- props[(handlerName = toHandlerKey(camelize$1(event)))];
1681
+ props[(handlerName = toHandlerKey(camelize(event)))];
1682
1682
  // for v-model update:xxx events, also trigger kebab-case equivalent
1683
1683
  // for props passed via kebab-case
1684
1684
  if (!handler && isModelListener) {
@@ -2836,8 +2836,8 @@ function resolveAsset(type, name, warnMissing = true, maybeSelfReference = false
2836
2836
  const selfName = getComponentName(Component, false /* do not include inferred name to avoid breaking existing code */);
2837
2837
  if (selfName &&
2838
2838
  (selfName === name ||
2839
- selfName === camelize$1(name) ||
2840
- selfName === capitalize(camelize$1(name)))) {
2839
+ selfName === camelize(name) ||
2840
+ selfName === capitalize(camelize(name)))) {
2841
2841
  return Component;
2842
2842
  }
2843
2843
  }
@@ -2857,8 +2857,8 @@ function resolveAsset(type, name, warnMissing = true, maybeSelfReference = false
2857
2857
  function resolve(registry, name) {
2858
2858
  return (registry &&
2859
2859
  (registry[name] ||
2860
- registry[camelize$1(name)] ||
2861
- registry[capitalize(camelize$1(name))]));
2860
+ registry[camelize(name)] ||
2861
+ registry[capitalize(camelize(name))]));
2862
2862
  }
2863
2863
 
2864
2864
  /**
@@ -3522,7 +3522,7 @@ function updateProps(instance, rawProps, rawPrevProps, optimized) {
3522
3522
  }
3523
3523
  }
3524
3524
  else {
3525
- const camelizedKey = camelize$1(key);
3525
+ const camelizedKey = camelize(key);
3526
3526
  props[camelizedKey] = resolvePropValue(options, rawCurrentProps, camelizedKey, value, instance, false /* isAbsent */);
3527
3527
  }
3528
3528
  }
@@ -3596,7 +3596,7 @@ function setFullProps(instance, rawProps, props, attrs) {
3596
3596
  // prop option names are camelized during normalization, so to support
3597
3597
  // kebab -> camel conversion here we need to camelize the key.
3598
3598
  let camelKey;
3599
- if (options && hasOwn(options, (camelKey = camelize$1(key)))) {
3599
+ if (options && hasOwn(options, (camelKey = camelize(key)))) {
3600
3600
  if (!needCastKeys || !needCastKeys.includes(camelKey)) {
3601
3601
  props[camelKey] = value;
3602
3602
  }
@@ -3694,7 +3694,7 @@ function normalizePropsOptions(comp, appContext, asMixin = false) {
3694
3694
  }
3695
3695
  if (isArray$1(raw)) {
3696
3696
  for (let i = 0; i < raw.length; i++) {
3697
- const normalizedKey = camelize$1(raw[i]);
3697
+ const normalizedKey = camelize(raw[i]);
3698
3698
  if (validatePropName(normalizedKey)) {
3699
3699
  normalized[normalizedKey] = EMPTY_OBJ;
3700
3700
  }
@@ -3702,7 +3702,7 @@ function normalizePropsOptions(comp, appContext, asMixin = false) {
3702
3702
  }
3703
3703
  else if (raw) {
3704
3704
  for (const key in raw) {
3705
- const normalizedKey = camelize$1(key);
3705
+ const normalizedKey = camelize(key);
3706
3706
  if (validatePropName(normalizedKey)) {
3707
3707
  const opt = raw[key];
3708
3708
  const prop = (normalized[normalizedKey] =
@@ -6135,7 +6135,7 @@ function autoPrefix(style, rawName) {
6135
6135
  if (cached) {
6136
6136
  return cached;
6137
6137
  }
6138
- let name = camelize$1(rawName);
6138
+ let name = camelize(rawName);
6139
6139
  if (name !== 'filter' && name in style) {
6140
6140
  return (prefixCache[rawName] = name);
6141
6141
  }
@@ -9603,7 +9603,7 @@ const _hoisted_5$3 = [
9603
9603
  _hoisted_3$3,
9604
9604
  _hoisted_4$4
9605
9605
  ];
9606
- function _sfc_render$2(_ctx, _cache, $props, $setup, $data, $options) {
9606
+ function _sfc_render$2$1(_ctx, _cache, $props, $setup, $data, $options) {
9607
9607
  const _component_ResizeObserver = resolveComponent("ResizeObserver");
9608
9608
  return openBlock(), createElementBlock("div", {
9609
9609
  id: _ctx.popperId,
@@ -9664,7 +9664,7 @@ function _sfc_render$2(_ctx, _cache, $props, $setup, $data, $options) {
9664
9664
  ], 4)
9665
9665
  ], 46, _hoisted_1$1$1);
9666
9666
  }
9667
- var PrivatePopperContent = /* @__PURE__ */ _export_sfc$1(_sfc_main$5$1, [["render", _sfc_render$2]]);
9667
+ var PrivatePopperContent = /* @__PURE__ */ _export_sfc$1(_sfc_main$5$1, [["render", _sfc_render$2$1]]);
9668
9668
  var PrivatePopperMethods = {
9669
9669
  methods: {
9670
9670
  show(...args) {
@@ -9778,7 +9778,7 @@ const _sfc_main$1$1 = defineComponent(__spreadProps(__spreadValues({}, PrivatePo
9778
9778
  name: "VTooltip",
9779
9779
  vPopperTheme: "tooltip"
9780
9780
  }));
9781
- const _sfc_main$a = defineComponent({
9781
+ const _sfc_main$b = defineComponent({
9782
9782
  name: "VTooltipDirective",
9783
9783
  components: {
9784
9784
  Popper: PrivatePopper(),
@@ -9869,8 +9869,8 @@ const _sfc_main$a = defineComponent({
9869
9869
  }
9870
9870
  }
9871
9871
  });
9872
- const _hoisted_1$7 = ["innerHTML"];
9873
- const _hoisted_2$6 = ["textContent"];
9872
+ const _hoisted_1$8 = ["innerHTML"];
9873
+ const _hoisted_2$7 = ["textContent"];
9874
9874
  function _sfc_render$4(_ctx, _cache, $props, $setup, $data, $options) {
9875
9875
  const _component_PopperContent = resolveComponent("PopperContent");
9876
9876
  const _component_Popper = resolveComponent("Popper");
@@ -9913,10 +9913,10 @@ function _sfc_render$4(_ctx, _cache, $props, $setup, $data, $options) {
9913
9913
  _ctx.html ? (openBlock(), createElementBlock("div", {
9914
9914
  key: 0,
9915
9915
  innerHTML: _ctx.finalContent
9916
- }, null, 8, _hoisted_1$7)) : (openBlock(), createElementBlock("div", {
9916
+ }, null, 8, _hoisted_1$8)) : (openBlock(), createElementBlock("div", {
9917
9917
  key: 1,
9918
9918
  textContent: toDisplayString(_ctx.finalContent)
9919
- }, null, 8, _hoisted_2$6))
9919
+ }, null, 8, _hoisted_2$7))
9920
9920
  ]),
9921
9921
  _: 2
9922
9922
  }, 1032, ["class", "popper-id", "theme", "shown", "mounted", "skip-transition", "auto-hide", "handle-resize", "classes", "result", "onHide", "onResize"])
@@ -9924,7 +9924,7 @@ function _sfc_render$4(_ctx, _cache, $props, $setup, $data, $options) {
9924
9924
  _: 1
9925
9925
  }, 16, ["theme", "popper-node", "onApplyShow", "onApplyHide"]);
9926
9926
  }
9927
- var PrivateTooltipDirective = /* @__PURE__ */ _export_sfc$1(_sfc_main$a, [["render", _sfc_render$4]]);
9927
+ var PrivateTooltipDirective = /* @__PURE__ */ _export_sfc$1(_sfc_main$b, [["render", _sfc_render$4]]);
9928
9928
  const TARGET_CLASS = "v-popper--has-tooltip";
9929
9929
  function getPlacement(options2, modifiers) {
9930
9930
  let result = options2.placement;
@@ -12610,7 +12610,7 @@ const scriptRel = 'modulepreload';const assetsURL = function(dep, importerUrl) {
12610
12610
  };
12611
12611
  /* Injected with object hook! */
12612
12612
 
12613
- const _sfc_main$9 = /* @__PURE__ */ defineComponent({
12613
+ const _sfc_main$a = /* @__PURE__ */ defineComponent({
12614
12614
  __name: "VButton",
12615
12615
  props: {
12616
12616
  to: null,
@@ -12646,34 +12646,34 @@ const _export_sfc = (sfc, props) => {
12646
12646
 
12647
12647
  /* Injected with object hook! */
12648
12648
 
12649
- /* unplugin-vue-components disabled */const _sfc_main$8 = {};
12649
+ /* unplugin-vue-components disabled */const _sfc_main$9 = {};
12650
12650
 
12651
- const _hoisted_1$6 = { class: "mx-0.5 select-none whitespace-nowrap rounded px-1.5 py-0.5 text-xs" };
12651
+ const _hoisted_1$7 = { class: "mx-0.5 select-none whitespace-nowrap rounded px-1.5 py-0.5 text-xs" };
12652
12652
 
12653
- function _sfc_render$1(_ctx, _cache) {
12654
- return (openBlock(), createElementBlock("span", _hoisted_1$6, [
12653
+ function _sfc_render$2(_ctx, _cache) {
12654
+ return (openBlock(), createElementBlock("span", _hoisted_1$7, [
12655
12655
  renderSlot(_ctx.$slots, "default")
12656
12656
  ]))
12657
12657
  }
12658
- const __unplugin_components_1 = /*#__PURE__*/_export_sfc(_sfc_main$8, [['render',_sfc_render$1]]);
12658
+ const __unplugin_components_1 = /*#__PURE__*/_export_sfc(_sfc_main$9, [['render',_sfc_render$2]]);
12659
12659
  /* Injected with object hook! */
12660
12660
 
12661
- /* unplugin-vue-components disabled */const _sfc_main$7 = {};
12661
+ /* unplugin-vue-components disabled */const _sfc_main$8 = {};
12662
12662
 
12663
- const _hoisted_1$5 = {
12663
+ const _hoisted_1$6 = {
12664
12664
  viewBox: "0 0 566 154",
12665
12665
  fill: "none",
12666
12666
  xmlns: "http://www.w3.org/2000/svg"
12667
12667
  };
12668
- const _hoisted_2$5 = /*#__PURE__*/createStaticVNode("<svg fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 256 198\" width=\"128\" height=\"128\"><path fill=\"#41B883\" d=\"M204.8 0H256L128 220.8L0 0h97.92L128 51.2L157.44 0h47.36Z\"></path><path fill=\"#41B883\" d=\"m0 0l128 220.8L256 0h-51.2L128 132.48L50.56 0H0Z\"></path><path fill=\"#35495E\" d=\"M50.56 0L128 133.12L204.8 0h-47.36L128 51.2L97.92 0H50.56Z\"></path></svg><path d=\"M152.571 118V46.1333H176.8C183.576 46.1333 189.77 47.468 195.383 50.1373C200.995 52.8067 205.478 56.8449 208.832 62.252C212.186 67.5907 213.863 74.1956 213.863 82.0667C213.863 89.8693 212.186 96.4742 208.832 101.881C205.478 107.288 200.995 111.327 195.383 113.996C189.77 116.665 183.576 118 176.8 118H152.571ZM175.157 104.653C181.796 104.653 187.306 102.874 191.687 99.3147C196.067 95.6871 198.257 89.9378 198.257 82.0667C198.257 74.1956 196.067 68.4462 191.687 64.8187C187.306 61.1911 181.796 59.3773 175.157 59.3773H167.971V104.653H175.157ZM270.18 100.444C269.153 105.988 266.381 110.437 261.864 113.791C257.347 117.144 251.905 118.821 245.54 118.821C239.928 118.821 235.102 117.555 231.064 115.023C227.094 112.422 224.083 109.068 222.029 104.961C219.976 100.855 218.949 96.5427 218.949 92.0253C218.949 87.4396 219.873 83.1276 221.721 79.0893C223.638 75.0511 226.513 71.7658 230.345 69.2333C234.247 66.7009 238.969 65.4347 244.513 65.4347C250.263 65.4347 255.054 66.6667 258.887 69.1307C262.72 71.5947 265.526 74.7431 267.305 78.576C269.153 82.4089 270.077 86.4471 270.077 90.6907C270.077 92.2649 270.009 93.8049 269.872 95.3107H232.707C233.254 99.0067 234.623 101.916 236.813 104.037C239.072 106.091 241.981 107.117 245.54 107.117C248.415 107.117 250.776 106.57 252.624 105.475C254.472 104.311 255.67 102.634 256.217 100.444H270.18ZM244.513 75.9067C241.228 75.9067 238.627 76.7622 236.711 78.4733C234.794 80.116 233.528 82.7169 232.912 86.276H255.807C255.601 83.2644 254.506 80.8004 252.521 78.884C250.537 76.8991 247.867 75.9067 244.513 75.9067ZM302.77 118H289.629L270.738 66.256H285.317L296.2 99.7253L306.98 66.256H321.661L302.77 118ZM359.731 118H344.331V59.3773H323.079V46.1333H380.983V59.3773H359.731V118ZM402.364 118.821C397.163 118.821 392.474 117.692 388.299 115.433C384.124 113.106 380.873 109.924 378.546 105.885C376.219 101.779 375.055 97.1929 375.055 92.128C375.055 87.0631 376.219 82.5116 378.546 78.4733C380.873 74.3667 384.124 71.184 388.299 68.9253C392.474 66.5982 397.163 65.4347 402.364 65.4347C407.566 65.4347 412.255 66.5982 416.43 68.9253C420.605 71.184 423.856 74.3667 426.183 78.4733C428.51 82.5116 429.674 87.0631 429.674 92.128C429.674 97.1929 428.51 101.779 426.183 105.885C423.856 109.924 420.605 113.106 416.43 115.433C412.255 117.692 407.566 118.821 402.364 118.821ZM402.364 106.501C406.197 106.501 409.311 105.167 411.707 102.497C414.103 99.828 415.3 96.3716 415.3 92.128C415.3 87.816 414.103 84.3253 411.707 81.656C409.311 78.9867 406.197 77.652 402.364 77.652C398.531 77.652 395.417 78.9867 393.022 81.656C390.626 84.3253 389.428 87.816 389.428 92.128C389.428 96.3716 390.626 99.828 393.022 102.497C395.417 105.167 398.531 106.501 402.364 106.501ZM462.12 118.821C456.918 118.821 452.229 117.692 448.054 115.433C443.879 113.106 440.628 109.924 438.301 105.885C435.974 101.779 434.81 97.1929 434.81 92.128C434.81 87.0631 435.974 82.5116 438.301 78.4733C440.628 74.3667 443.879 71.184 448.054 68.9253C452.229 66.5982 456.918 65.4347 462.12 65.4347C467.321 65.4347 472.01 66.5982 476.185 68.9253C480.36 71.184 483.611 74.3667 485.938 78.4733C488.265 82.5116 489.429 87.0631 489.429 92.128C489.429 97.1929 488.265 101.779 485.938 105.885C483.611 109.924 480.36 113.106 476.185 115.433C472.01 117.692 467.321 118.821 462.12 118.821ZM462.12 106.501C465.952 106.501 469.067 105.167 471.462 102.497C473.858 99.828 475.056 96.3716 475.056 92.128C475.056 87.816 473.858 84.3253 471.462 81.656C469.067 78.9867 465.952 77.652 462.12 77.652C458.287 77.652 455.172 78.9867 452.777 81.656C450.381 84.3253 449.184 87.816 449.184 92.128C449.184 96.3716 450.381 99.828 452.777 102.497C455.172 105.167 458.287 106.501 462.12 106.501ZM512.327 118H498.056V43.772H512.327V118ZM542.494 118.821C536.129 118.821 530.961 117.179 526.991 113.893C523.09 110.54 521.002 106.091 520.729 100.547H533.049C533.322 102.874 534.281 104.722 535.923 106.091C537.634 107.391 539.825 108.041 542.494 108.041C544.684 108.041 546.464 107.562 547.833 106.604C549.27 105.646 549.989 104.448 549.989 103.011C549.989 101.094 549.167 99.7596 547.525 99.0067C545.882 98.2538 543.281 97.5693 539.722 96.9533C536.026 96.2689 533.014 95.516 530.687 94.6947C528.36 93.8733 526.341 92.4018 524.63 90.28C522.987 88.0898 522.166 85.0098 522.166 81.04C522.166 78.0284 522.953 75.3591 524.527 73.032C526.17 70.6364 528.394 68.7884 531.201 67.488C534.007 66.1191 537.155 65.4347 540.646 65.4347C546.874 65.4347 551.905 66.9747 555.738 70.0547C559.639 73.1347 561.727 77.2071 562.001 82.272H549.578C549.304 80.1502 548.312 78.5076 546.601 77.344C544.958 76.112 543.11 75.496 541.057 75.496C539.003 75.496 537.361 75.9409 536.129 76.8307C534.897 77.7204 534.281 78.9524 534.281 80.5267C534.281 82.4431 535.068 83.7436 536.642 84.428C538.285 85.044 540.851 85.5916 544.342 86.0707C548.106 86.6182 551.186 87.3027 553.582 88.124C556.046 88.8769 558.168 90.3827 559.947 92.6413C561.727 94.9 562.617 98.1853 562.617 102.497C562.617 107.425 560.769 111.395 557.073 114.407C553.445 117.35 548.585 118.821 542.494 118.821Z\" fill=\"currentColor\"></path>", 2);
12668
+ const _hoisted_2$6 = /*#__PURE__*/createStaticVNode("<svg fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 256 198\" width=\"128\" height=\"128\"><path fill=\"#41B883\" d=\"M204.8 0H256L128 220.8L0 0h97.92L128 51.2L157.44 0h47.36Z\"></path><path fill=\"#41B883\" d=\"m0 0l128 220.8L256 0h-51.2L128 132.48L50.56 0H0Z\"></path><path fill=\"#35495E\" d=\"M50.56 0L128 133.12L204.8 0h-47.36L128 51.2L97.92 0H50.56Z\"></path></svg><path d=\"M152.571 118V46.1333H176.8C183.576 46.1333 189.77 47.468 195.383 50.1373C200.995 52.8067 205.478 56.8449 208.832 62.252C212.186 67.5907 213.863 74.1956 213.863 82.0667C213.863 89.8693 212.186 96.4742 208.832 101.881C205.478 107.288 200.995 111.327 195.383 113.996C189.77 116.665 183.576 118 176.8 118H152.571ZM175.157 104.653C181.796 104.653 187.306 102.874 191.687 99.3147C196.067 95.6871 198.257 89.9378 198.257 82.0667C198.257 74.1956 196.067 68.4462 191.687 64.8187C187.306 61.1911 181.796 59.3773 175.157 59.3773H167.971V104.653H175.157ZM270.18 100.444C269.153 105.988 266.381 110.437 261.864 113.791C257.347 117.144 251.905 118.821 245.54 118.821C239.928 118.821 235.102 117.555 231.064 115.023C227.094 112.422 224.083 109.068 222.029 104.961C219.976 100.855 218.949 96.5427 218.949 92.0253C218.949 87.4396 219.873 83.1276 221.721 79.0893C223.638 75.0511 226.513 71.7658 230.345 69.2333C234.247 66.7009 238.969 65.4347 244.513 65.4347C250.263 65.4347 255.054 66.6667 258.887 69.1307C262.72 71.5947 265.526 74.7431 267.305 78.576C269.153 82.4089 270.077 86.4471 270.077 90.6907C270.077 92.2649 270.009 93.8049 269.872 95.3107H232.707C233.254 99.0067 234.623 101.916 236.813 104.037C239.072 106.091 241.981 107.117 245.54 107.117C248.415 107.117 250.776 106.57 252.624 105.475C254.472 104.311 255.67 102.634 256.217 100.444H270.18ZM244.513 75.9067C241.228 75.9067 238.627 76.7622 236.711 78.4733C234.794 80.116 233.528 82.7169 232.912 86.276H255.807C255.601 83.2644 254.506 80.8004 252.521 78.884C250.537 76.8991 247.867 75.9067 244.513 75.9067ZM302.77 118H289.629L270.738 66.256H285.317L296.2 99.7253L306.98 66.256H321.661L302.77 118ZM359.731 118H344.331V59.3773H323.079V46.1333H380.983V59.3773H359.731V118ZM402.364 118.821C397.163 118.821 392.474 117.692 388.299 115.433C384.124 113.106 380.873 109.924 378.546 105.885C376.219 101.779 375.055 97.1929 375.055 92.128C375.055 87.0631 376.219 82.5116 378.546 78.4733C380.873 74.3667 384.124 71.184 388.299 68.9253C392.474 66.5982 397.163 65.4347 402.364 65.4347C407.566 65.4347 412.255 66.5982 416.43 68.9253C420.605 71.184 423.856 74.3667 426.183 78.4733C428.51 82.5116 429.674 87.0631 429.674 92.128C429.674 97.1929 428.51 101.779 426.183 105.885C423.856 109.924 420.605 113.106 416.43 115.433C412.255 117.692 407.566 118.821 402.364 118.821ZM402.364 106.501C406.197 106.501 409.311 105.167 411.707 102.497C414.103 99.828 415.3 96.3716 415.3 92.128C415.3 87.816 414.103 84.3253 411.707 81.656C409.311 78.9867 406.197 77.652 402.364 77.652C398.531 77.652 395.417 78.9867 393.022 81.656C390.626 84.3253 389.428 87.816 389.428 92.128C389.428 96.3716 390.626 99.828 393.022 102.497C395.417 105.167 398.531 106.501 402.364 106.501ZM462.12 118.821C456.918 118.821 452.229 117.692 448.054 115.433C443.879 113.106 440.628 109.924 438.301 105.885C435.974 101.779 434.81 97.1929 434.81 92.128C434.81 87.0631 435.974 82.5116 438.301 78.4733C440.628 74.3667 443.879 71.184 448.054 68.9253C452.229 66.5982 456.918 65.4347 462.12 65.4347C467.321 65.4347 472.01 66.5982 476.185 68.9253C480.36 71.184 483.611 74.3667 485.938 78.4733C488.265 82.5116 489.429 87.0631 489.429 92.128C489.429 97.1929 488.265 101.779 485.938 105.885C483.611 109.924 480.36 113.106 476.185 115.433C472.01 117.692 467.321 118.821 462.12 118.821ZM462.12 106.501C465.952 106.501 469.067 105.167 471.462 102.497C473.858 99.828 475.056 96.3716 475.056 92.128C475.056 87.816 473.858 84.3253 471.462 81.656C469.067 78.9867 465.952 77.652 462.12 77.652C458.287 77.652 455.172 78.9867 452.777 81.656C450.381 84.3253 449.184 87.816 449.184 92.128C449.184 96.3716 450.381 99.828 452.777 102.497C455.172 105.167 458.287 106.501 462.12 106.501ZM512.327 118H498.056V43.772H512.327V118ZM542.494 118.821C536.129 118.821 530.961 117.179 526.991 113.893C523.09 110.54 521.002 106.091 520.729 100.547H533.049C533.322 102.874 534.281 104.722 535.923 106.091C537.634 107.391 539.825 108.041 542.494 108.041C544.684 108.041 546.464 107.562 547.833 106.604C549.27 105.646 549.989 104.448 549.989 103.011C549.989 101.094 549.167 99.7596 547.525 99.0067C545.882 98.2538 543.281 97.5693 539.722 96.9533C536.026 96.2689 533.014 95.516 530.687 94.6947C528.36 93.8733 526.341 92.4018 524.63 90.28C522.987 88.0898 522.166 85.0098 522.166 81.04C522.166 78.0284 522.953 75.3591 524.527 73.032C526.17 70.6364 528.394 68.7884 531.201 67.488C534.007 66.1191 537.155 65.4347 540.646 65.4347C546.874 65.4347 551.905 66.9747 555.738 70.0547C559.639 73.1347 561.727 77.2071 562.001 82.272H549.578C549.304 80.1502 548.312 78.5076 546.601 77.344C544.958 76.112 543.11 75.496 541.057 75.496C539.003 75.496 537.361 75.9409 536.129 76.8307C534.897 77.7204 534.281 78.9524 534.281 80.5267C534.281 82.4431 535.068 83.7436 536.642 84.428C538.285 85.044 540.851 85.5916 544.342 86.0707C548.106 86.6182 551.186 87.3027 553.582 88.124C556.046 88.8769 558.168 90.3827 559.947 92.6413C561.727 94.9 562.617 98.1853 562.617 102.497C562.617 107.425 560.769 111.395 557.073 114.407C553.445 117.35 548.585 118.821 542.494 118.821Z\" fill=\"currentColor\"></path>", 2);
12669
12669
  const _hoisted_4$3 = [
12670
- _hoisted_2$5
12670
+ _hoisted_2$6
12671
12671
  ];
12672
12672
 
12673
- function _sfc_render(_ctx, _cache) {
12674
- return (openBlock(), createElementBlock("svg", _hoisted_1$5, _hoisted_4$3))
12673
+ function _sfc_render$1(_ctx, _cache) {
12674
+ return (openBlock(), createElementBlock("svg", _hoisted_1$6, _hoisted_4$3))
12675
12675
  }
12676
- const __unplugin_components_0 = /*#__PURE__*/_export_sfc(_sfc_main$7, [['render',_sfc_render]]);
12676
+ const __unplugin_components_0$1 = /*#__PURE__*/_export_sfc(_sfc_main$8, [['render',_sfc_render$1]]);
12677
12677
  /* Injected with object hook! */
12678
12678
 
12679
12679
  function tryOnScopeDispose(fn) {
@@ -14069,7 +14069,7 @@ function useFrameState() {
14069
14069
 
14070
14070
  /* Injected with object hook! */
14071
14071
 
14072
- const _hoisted_1$4 = {
14072
+ const _hoisted_1$5 = {
14073
14073
  flex: "~ col gap4",
14074
14074
  mxa: "",
14075
14075
  "h-screen": "",
@@ -14078,7 +14078,7 @@ const _hoisted_1$4 = {
14078
14078
  "justify-center": "",
14079
14079
  "text-center": ""
14080
14080
  };
14081
- const _hoisted_2$4 = {
14081
+ const _hoisted_2$5 = {
14082
14082
  flex: "~",
14083
14083
  "items-center": "",
14084
14084
  "justify-center": ""
@@ -14111,8 +14111,8 @@ const _hoisted_5$2 = /* @__PURE__ */ createBaseVNode("p", { "text-lg": "" }, [
14111
14111
  }, "Create an issue or discussion"),
14112
14112
  /* @__PURE__ */ createTextVNode(" if you find any bugs or have any suggestions. Thank you and have fun! ")
14113
14113
  ], -1);
14114
- const _hoisted_6$2 = /* @__PURE__ */ createBaseVNode("span", null, "Get Started", -1);
14115
- const _sfc_main$6 = /* @__PURE__ */ defineComponent({
14114
+ const _hoisted_6$1 = /* @__PURE__ */ createBaseVNode("span", null, "Get Started", -1);
14115
+ const _sfc_main$7 = /* @__PURE__ */ defineComponent({
14116
14116
  __name: "index",
14117
14117
  setup(__props) {
14118
14118
  const { isFirstVisit } = useFrameState();
@@ -14122,11 +14122,11 @@ const _sfc_main$6 = /* @__PURE__ */ defineComponent({
14122
14122
  router.replace("/overview");
14123
14123
  }
14124
14124
  return (_ctx, _cache) => {
14125
- const _component_Logo = __unplugin_components_0;
14125
+ const _component_Logo = __unplugin_components_0$1;
14126
14126
  const _component_VBadge = __unplugin_components_1;
14127
- const _component_VButton = _sfc_main$9;
14128
- return openBlock(), createElementBlock("div", _hoisted_1$4, [
14129
- createBaseVNode("div", _hoisted_2$4, [
14127
+ const _component_VButton = _sfc_main$a;
14128
+ return openBlock(), createElementBlock("div", _hoisted_1$5, [
14129
+ createBaseVNode("div", _hoisted_2$5, [
14130
14130
  createVNode(_component_Logo, { "h-16": "" }),
14131
14131
  createVNode(_component_VBadge, {
14132
14132
  "mr--15": "",
@@ -14146,7 +14146,7 @@ const _sfc_main$6 = /* @__PURE__ */ defineComponent({
14146
14146
  onClick: visit
14147
14147
  }, {
14148
14148
  default: withCtx(() => [
14149
- _hoisted_6$2
14149
+ _hoisted_6$1
14150
14150
  ]),
14151
14151
  _: 1
14152
14152
  })
@@ -14157,24 +14157,24 @@ const _sfc_main$6 = /* @__PURE__ */ defineComponent({
14157
14157
 
14158
14158
  /* Injected with object hook! */
14159
14159
 
14160
- const __pages_import_0__ = () => __vitePreload(() => import('./timeline-a7dd8994.js'),true?["./timeline-a7dd8994.js","./splitpanes.es-00d9608c.js","./VIcon.vue_vue_type_script_setup_true_lang-b9e1052c.js","./index-e9e51318.js","./VPanelGrids-eb4fe74d.js","./VCard-8dda4b89.js","./timeline-b315b2e0.css"]:void 0,import.meta.url);
14161
- const __pages_import_1__ = () => __vitePreload(() => import('./settings-6c9c579a.js'),true?["./settings-6c9c579a.js","./VIcon.vue_vue_type_script_setup_true_lang-b9e1052c.js","./VIconTitle.vue_vue_type_script_setup_true_lang-ec1b3b7a.js"]:void 0,import.meta.url);
14162
- const __pages_import_2__ = () => __vitePreload(() => import('./routes-39cb7889.js'),true?["./routes-39cb7889.js","./VPanelGrids-eb4fe74d.js","./VCard-8dda4b89.js","./splitpanes.es-00d9608c.js","./VIcon.vue_vue_type_script_setup_true_lang-b9e1052c.js","./index-e9e51318.js"]:void 0,import.meta.url);
14163
- const __pages_import_3__ = () => __vitePreload(() => import('./pinia-7b31943d.js'),true?["./pinia-7b31943d.js","./splitpanes.es-00d9608c.js","./VIcon.vue_vue_type_script_setup_true_lang-b9e1052c.js","./index-e9e51318.js"]:void 0,import.meta.url);
14164
- const __pages_import_4__ = () => __vitePreload(() => import('./pages-4f6946a5.js'),true?["./pages-4f6946a5.js","./VTextInput.vue_vue_type_script_setup_true_lang-14bfbfbb.js","./VIconTitle.vue_vue_type_script_setup_true_lang-ec1b3b7a.js","./VIcon.vue_vue_type_script_setup_true_lang-b9e1052c.js","./VTextInput-52804693.css"]:void 0,import.meta.url);
14165
- const __pages_import_5__ = () => __vitePreload(() => import('./overview-642d4475.js'),true?["./overview-642d4475.js","./VPanelGrids-eb4fe74d.js","./rpc-c1c125a2.js","./index-e9e51318.js"]:void 0,import.meta.url);
14166
- const __pages_import_6__ = () => __vitePreload(() => import('./inspect-efa81d08.js'),true?["./inspect-efa81d08.js","./rpc-c1c125a2.js"]:void 0,import.meta.url);
14167
- const __pages_import_8__ = () => __vitePreload(() => import('./graph-74eabf92.js'),true?["./graph-74eabf92.js","./fuse.esm-c317b696.js","./rpc-c1c125a2.js"]:void 0,import.meta.url);
14168
- const __pages_import_9__ = () => __vitePreload(() => import('./components-b3ff2252.js'),true?["./components-b3ff2252.js","./VPanelGrids-eb4fe74d.js","./VCard-8dda4b89.js","./splitpanes.es-00d9608c.js","./VIcon.vue_vue_type_script_setup_true_lang-b9e1052c.js","./index-e9e51318.js"]:void 0,import.meta.url);
14169
- const __pages_import_10__ = () => __vitePreload(() => import('./assets-9ac104fb.js'),true?["./assets-9ac104fb.js","./VPanelGrids-eb4fe74d.js","./VCard-8dda4b89.js","./VIcon.vue_vue_type_script_setup_true_lang-b9e1052c.js","./rpc-c1c125a2.js","./VTextInput.vue_vue_type_script_setup_true_lang-14bfbfbb.js","./VIconTitle.vue_vue_type_script_setup_true_lang-ec1b3b7a.js","./VTextInput-52804693.css","./fuse.esm-c317b696.js"]:void 0,import.meta.url);
14170
- const __pages_import_11__ = () => __vitePreload(() => import('./__inspecting-b8697c3c.js'),true?["./__inspecting-b8697c3c.js","./VPanelGrids-eb4fe74d.js"]:void 0,import.meta.url);
14171
-
14172
- const routes$1 = [{"name":"timeline","path":"/timeline","component":__pages_import_0__,"props":true},{"name":"settings","path":"/settings","component":__pages_import_1__,"props":true},{"name":"routes","path":"/routes","component":__pages_import_2__,"props":true},{"name":"pinia","path":"/pinia","component":__pages_import_3__,"props":true},{"name":"pages","path":"/pages","component":__pages_import_4__,"props":true},{"name":"overview","path":"/overview","component":__pages_import_5__,"props":true},{"name":"inspect","path":"/inspect","component":__pages_import_6__,"props":true},{"name":"index","path":"/","component":_sfc_main$6,"props":true},{"name":"graph","path":"/graph","component":__pages_import_8__,"props":true},{"name":"components","path":"/components","component":__pages_import_9__,"props":true},{"name":"assets","path":"/assets","component":__pages_import_10__,"props":true},{"name":"__inspecting","path":"/__inspecting","component":__pages_import_11__,"props":true}];
14160
+ const __pages_import_0__ = () => __vitePreload(() => import('./timeline-d187c4c5.js'),true?["./timeline-d187c4c5.js","./splitpanes.es-3cb512fa.js","./VIcon.vue_vue_type_script_setup_true_lang-60e8343f.js","./index-21cc52d6.js","./VPanelGrids-155c3f49.js","./VCard-415c7ae5.js","./timeline-b315b2e0.css"]:void 0,import.meta.url);
14161
+ const __pages_import_1__ = () => __vitePreload(() => import('./settings-cf21bbcf.js'),true?["./settings-cf21bbcf.js","./VIcon.vue_vue_type_script_setup_true_lang-60e8343f.js","./VIconTitle.vue_vue_type_script_setup_true_lang-e52820ad.js"]:void 0,import.meta.url);
14162
+ const __pages_import_2__ = () => __vitePreload(() => import('./routes-012c9d6a.js'),true?["./routes-012c9d6a.js","./VPanelGrids-155c3f49.js","./VCard-415c7ae5.js","./splitpanes.es-3cb512fa.js","./VIcon.vue_vue_type_script_setup_true_lang-60e8343f.js","./index-21cc52d6.js"]:void 0,import.meta.url);
14163
+ const __pages_import_3__ = () => __vitePreload(() => import('./pinia-a857fe5f.js'),true?["./pinia-a857fe5f.js","./splitpanes.es-3cb512fa.js","./VIcon.vue_vue_type_script_setup_true_lang-60e8343f.js","./index-21cc52d6.js"]:void 0,import.meta.url);
14164
+ const __pages_import_4__ = () => __vitePreload(() => import('./pages-da50bc3a.js'),true?["./pages-da50bc3a.js","./VTextInput.vue_vue_type_script_setup_true_lang-a7aeaac7.js","./VIconTitle.vue_vue_type_script_setup_true_lang-e52820ad.js","./VIcon.vue_vue_type_script_setup_true_lang-60e8343f.js","./VTextInput-52804693.css"]:void 0,import.meta.url);
14165
+ const __pages_import_5__ = () => __vitePreload(() => import('./overview-a18b9320.js'),true?["./overview-a18b9320.js","./VPanelGrids-155c3f49.js","./rpc-115351a6.js","./index-21cc52d6.js"]:void 0,import.meta.url);
14166
+ const __pages_import_6__ = () => __vitePreload(() => import('./inspect-f75be7cc.js'),true?["./inspect-f75be7cc.js","./rpc-115351a6.js"]:void 0,import.meta.url);
14167
+ const __pages_import_8__ = () => __vitePreload(() => import('./graph-1c1d01ca.js'),true?["./graph-1c1d01ca.js","./fuse.esm-c317b696.js","./rpc-115351a6.js"]:void 0,import.meta.url);
14168
+ const __pages_import_9__ = () => __vitePreload(() => import('./components-bd34817a.js'),true?["./components-bd34817a.js","./VPanelGrids-155c3f49.js","./VCard-415c7ae5.js","./splitpanes.es-3cb512fa.js","./VIcon.vue_vue_type_script_setup_true_lang-60e8343f.js","./index-21cc52d6.js"]:void 0,import.meta.url);
14169
+ const __pages_import_10__ = () => __vitePreload(() => import('./assets-606d73ab.js'),true?["./assets-606d73ab.js","./VPanelGrids-155c3f49.js","./VCard-415c7ae5.js","./VIcon.vue_vue_type_script_setup_true_lang-60e8343f.js","./rpc-115351a6.js","./VTextInput.vue_vue_type_script_setup_true_lang-a7aeaac7.js","./VIconTitle.vue_vue_type_script_setup_true_lang-e52820ad.js","./VTextInput-52804693.css","./fuse.esm-c317b696.js"]:void 0,import.meta.url);
14170
+ const __pages_import_11__ = () => __vitePreload(() => import('./__inspecting-952b7753.js'),true?["./__inspecting-952b7753.js","./VPanelGrids-155c3f49.js"]:void 0,import.meta.url);
14171
+
14172
+ const routes$1 = [{"name":"timeline","path":"/timeline","component":__pages_import_0__,"props":true},{"name":"settings","path":"/settings","component":__pages_import_1__,"props":true},{"name":"routes","path":"/routes","component":__pages_import_2__,"props":true},{"name":"pinia","path":"/pinia","component":__pages_import_3__,"props":true},{"name":"pages","path":"/pages","component":__pages_import_4__,"props":true},{"name":"overview","path":"/overview","component":__pages_import_5__,"props":true},{"name":"inspect","path":"/inspect","component":__pages_import_6__,"props":true},{"name":"index","path":"/","component":_sfc_main$7,"props":true},{"name":"graph","path":"/graph","component":__pages_import_8__,"props":true},{"name":"components","path":"/components","component":__pages_import_9__,"props":true},{"name":"assets","path":"/assets","component":__pages_import_10__,"props":true},{"name":"__inspecting","path":"/__inspecting","component":__pages_import_11__,"props":true}];
14173
14173
  /* Injected with object hook! */
14174
14174
 
14175
- const _hoisted_1$3 = ["src", "alt"];
14176
- const _hoisted_2$3 = ["title"];
14177
- const _sfc_main$5 = /* @__PURE__ */ defineComponent({
14175
+ const _hoisted_1$4 = ["src", "alt"];
14176
+ const _hoisted_2$4 = ["title"];
14177
+ const _sfc_main$6 = /* @__PURE__ */ defineComponent({
14178
14178
  __name: "TabIcon",
14179
14179
  props: {
14180
14180
  icon: null,
@@ -14191,7 +14191,7 @@ const _sfc_main$5 = /* @__PURE__ */ defineComponent({
14191
14191
  }, _ctx.$attrs, {
14192
14192
  src: __props.icon,
14193
14193
  alt: __props.title
14194
- }), null, 16, _hoisted_1$3)) : (openBlock(), createElementBlock("div", mergeProps({
14194
+ }), null, 16, _hoisted_1$4)) : (openBlock(), createElementBlock("div", mergeProps({
14195
14195
  key: 1,
14196
14196
  style: {
14197
14197
  width: "1em",
@@ -14200,7 +14200,7 @@ const _sfc_main$5 = /* @__PURE__ */ defineComponent({
14200
14200
  }, _ctx.$attrs, {
14201
14201
  class: __props.icon || "carbon-bring-forward",
14202
14202
  title: __props.title
14203
- }), null, 16, _hoisted_2$3));
14203
+ }), null, 16, _hoisted_2$4));
14204
14204
  };
14205
14205
  }
14206
14206
  });
@@ -14219,7 +14219,7 @@ function useDevtoolsClient() {
14219
14219
 
14220
14220
  /* Injected with object hook! */
14221
14221
 
14222
- const _sfc_main$4 = /* @__PURE__ */ defineComponent({
14222
+ const _sfc_main$5 = /* @__PURE__ */ defineComponent({
14223
14223
  __name: "SideNavItem",
14224
14224
  props: {
14225
14225
  tab: null
@@ -14228,7 +14228,7 @@ const _sfc_main$4 = /* @__PURE__ */ defineComponent({
14228
14228
  const client = useDevtoolsClient();
14229
14229
  const router = useRouter();
14230
14230
  return (_ctx, _cache) => {
14231
- const _component_TabIcon = _sfc_main$5;
14231
+ const _component_TabIcon = _sfc_main$6;
14232
14232
  const _component_VTooltip = resolveComponent("VTooltip");
14233
14233
  return openBlock(), createBlock(_component_VTooltip, { placement: "right" }, {
14234
14234
  popper: withCtx(() => [
@@ -14269,7 +14269,7 @@ const _sfc_main$4 = /* @__PURE__ */ defineComponent({
14269
14269
 
14270
14270
  /* Injected with object hook! */
14271
14271
 
14272
- const _sfc_main$3 = /* @__PURE__ */ defineComponent({
14272
+ const _sfc_main$4 = /* @__PURE__ */ defineComponent({
14273
14273
  __name: "VDarkToggle",
14274
14274
  setup(__props) {
14275
14275
  const mode = useColorMode();
@@ -14301,43 +14301,16 @@ const _sfc_main$3 = /* @__PURE__ */ defineComponent({
14301
14301
 
14302
14302
  /* Injected with object hook! */
14303
14303
 
14304
- const _hoisted_1$2 = {
14305
- px3: "",
14306
- py2: "",
14307
- border: "b base",
14308
- flex: "~ col gap-1"
14309
- };
14310
- const _hoisted_2$2 = /* @__PURE__ */ createBaseVNode("div", {
14311
- "text-sm": "",
14312
- op50: ""
14313
- }, " Dock devtools to ", -1);
14314
- const _hoisted_3$1 = {
14304
+ const _hoisted_1$3 = {
14315
14305
  flex: "~ gap-1",
14316
14306
  "text-lg": ""
14317
14307
  };
14318
- const _hoisted_4$1 = ["onClick"];
14319
- const _hoisted_5$1 = {
14320
- px3: "",
14321
- py2: "",
14322
- border: "b base",
14323
- flex: "~ gap-2"
14324
- };
14325
- const _hoisted_6$1 = /* @__PURE__ */ createBaseVNode("div", {
14326
- "carbon-sun": "",
14327
- "translate-y--1px": "",
14328
- "dark:carbon-moon": ""
14329
- }, null, -1);
14330
- const _hoisted_7$1 = /* @__PURE__ */ createBaseVNode("div", {
14331
- "carbon-settings": "",
14332
- "translate-y--1px": ""
14333
- }, null, -1);
14334
- const _sfc_main$2 = /* @__PURE__ */ defineComponent({
14335
- __name: "DockingPanel",
14308
+ const _hoisted_2$3 = ["onClick"];
14309
+ const _sfc_main$3 = /* @__PURE__ */ defineComponent({
14310
+ __name: "VPanelPosition",
14336
14311
  setup(__props) {
14337
14312
  const { position: _position } = useFrameState();
14338
- const frameState = ref({
14339
- position: _position.value
14340
- });
14313
+ const frameState = computed(() => ({ position: _position.value }));
14341
14314
  const client = useDevtoolsClient();
14342
14315
  const dockButton = [
14343
14316
  {
@@ -14358,55 +14331,18 @@ const _sfc_main$2 = /* @__PURE__ */ defineComponent({
14358
14331
  }
14359
14332
  ];
14360
14333
  function toggle(position) {
14361
- frameState.value.position = position;
14362
14334
  client.value?.panel?.togglePosition(position);
14363
14335
  _position.value = position;
14364
14336
  }
14365
14337
  return (_ctx, _cache) => {
14366
- const _component_VButton = _sfc_main$9;
14367
- const _component_VDarkToggle = _sfc_main$3;
14368
- const _component_RouterLink = resolveComponent("RouterLink");
14369
- return openBlock(), createElementBlock("div", null, [
14370
- createBaseVNode("div", _hoisted_1$2, [
14371
- _hoisted_2$2,
14372
- createBaseVNode("div", _hoisted_3$1, [
14373
- (openBlock(), createElementBlock(Fragment, null, renderList(dockButton, (item) => {
14374
- return createBaseVNode("button", {
14375
- key: item.position,
14376
- class: normalizeClass([unref(frameState).position === item.position ? "text-primary" : "op50", item.icon]),
14377
- onClick: ($event) => toggle(item.position)
14378
- }, null, 10, _hoisted_4$1);
14379
- }), 64))
14380
- ])
14381
- ]),
14382
- createBaseVNode("div", _hoisted_5$1, [
14383
- createVNode(_component_VDarkToggle, null, {
14384
- default: withCtx(({ toggle: toggle2, isDark }) => [
14385
- createVNode(_component_VButton, {
14386
- n: "sm primary",
14387
- onClick: ($event) => toggle2()
14388
- }, {
14389
- default: withCtx(() => [
14390
- _hoisted_6$1,
14391
- createTextVNode(" " + toDisplayString(isDark.value ? "Dark" : "Light"), 1)
14392
- ]),
14393
- _: 2
14394
- }, 1032, ["onClick"])
14395
- ]),
14396
- _: 1
14397
- }),
14398
- createVNode(_component_RouterLink, {
14399
- replace: "",
14400
- class: "n-button-base active:n-button-active focus-visible:n-focus-base n-transition n-primary n-sm hover:n-button-hover n-disabled:n-disabled",
14401
- to: "/settings"
14402
- }, {
14403
- default: withCtx(() => [
14404
- _hoisted_7$1,
14405
- createTextVNode(" Settings ")
14406
- ]),
14407
- _: 1
14408
- })
14409
- ])
14338
+ return openBlock(), createElementBlock("div", _hoisted_1$3, [
14339
+ (openBlock(), createElementBlock(Fragment, null, renderList(dockButton, (item) => {
14340
+ return createBaseVNode("button", {
14341
+ key: item.position,
14342
+ class: normalizeClass([unref(frameState).position === item.position ? "text-primary" : "op50", item.icon]),
14343
+ onClick: ($event) => toggle(item.position)
14344
+ }, null, 10, _hoisted_2$3);
14345
+ }), 64))
14410
14346
  ]);
14411
14347
  };
14412
14348
  }
@@ -14414,6 +14350,78 @@ const _sfc_main$2 = /* @__PURE__ */ defineComponent({
14414
14350
 
14415
14351
  /* Injected with object hook! */
14416
14352
 
14353
+ const _sfc_main$2 = {};
14354
+
14355
+ const _hoisted_1$2 = {
14356
+ px3: "",
14357
+ py2: "",
14358
+ border: "b base",
14359
+ flex: "~ col gap-1"
14360
+ };
14361
+ const _hoisted_2$2 = /*#__PURE__*/createBaseVNode("div", {
14362
+ "text-sm": "",
14363
+ op50: ""
14364
+ }, "Dock devtools to", -1);
14365
+ const _hoisted_3$1 = {
14366
+ px3: "",
14367
+ py2: "",
14368
+ border: "b base",
14369
+ flex: "~ gap-2"
14370
+ };
14371
+ const _hoisted_4$1 = /*#__PURE__*/createBaseVNode("div", {
14372
+ "carbon-sun": "",
14373
+ "dark:carbon-moon": "",
14374
+ "translate-y--1px": ""
14375
+ }, null, -1);
14376
+ const _hoisted_5$1 = /*#__PURE__*/createBaseVNode("div", {
14377
+ "carbon-settings": "",
14378
+ "translate-y--1px": ""
14379
+ }, null, -1);
14380
+
14381
+ function _sfc_render(_ctx, _cache) {
14382
+ const _component_VPanelPosition = _sfc_main$3;
14383
+ const _component_VButton = _sfc_main$a;
14384
+ const _component_VDarkToggle = _sfc_main$4;
14385
+ const _component_RouterLink = resolveComponent("RouterLink");
14386
+
14387
+ return (openBlock(), createElementBlock("div", null, [
14388
+ createBaseVNode("div", _hoisted_1$2, [
14389
+ _hoisted_2$2,
14390
+ createVNode(_component_VPanelPosition)
14391
+ ]),
14392
+ createBaseVNode("div", _hoisted_3$1, [
14393
+ createVNode(_component_VDarkToggle, null, {
14394
+ default: withCtx(({ toggle, isDark }) => [
14395
+ createVNode(_component_VButton, {
14396
+ n: "sm primary",
14397
+ onClick: $event => (toggle())
14398
+ }, {
14399
+ default: withCtx(() => [
14400
+ _hoisted_4$1,
14401
+ createTextVNode(" " + toDisplayString(isDark.value ? "Dark" : "Light"), 1)
14402
+ ]),
14403
+ _: 2
14404
+ }, 1032, ["onClick"])
14405
+ ]),
14406
+ _: 1
14407
+ }),
14408
+ createVNode(_component_RouterLink, {
14409
+ replace: "",
14410
+ class: "n-button-base active:n-button-active focus-visible:n-focus-base n-transition n-primary n-sm hover:n-button-hover n-disabled:n-disabled",
14411
+ to: "/settings"
14412
+ }, {
14413
+ default: withCtx(() => [
14414
+ _hoisted_5$1,
14415
+ createTextVNode(" Settings ")
14416
+ ]),
14417
+ _: 1
14418
+ })
14419
+ ])
14420
+ ]))
14421
+ }
14422
+ const __unplugin_components_0 = /*#__PURE__*/_export_sfc(_sfc_main$2, [['render',_sfc_render]]);
14423
+ /* Injected with object hook! */
14424
+
14417
14425
  const devToolsSettings = useLocalStorage("__vue-devtools-settings__", {
14418
14426
  scale: 1,
14419
14427
  hiddenTabs: [],
@@ -14577,10 +14585,10 @@ const _sfc_main$1 = /* @__PURE__ */ defineComponent({
14577
14585
  setup(__props) {
14578
14586
  const categories = useCategorizedTabs();
14579
14587
  return (_ctx, _cache) => {
14580
- const _component_DockingPanel = _sfc_main$2;
14588
+ const _component_DockingPanel = __unplugin_components_0;
14581
14589
  const _component_VDropdown = resolveComponent("VDropdown");
14582
- const _component_SideNavItem = _sfc_main$4;
14583
- const _component_TabIcon = _sfc_main$5;
14590
+ const _component_SideNavItem = _sfc_main$5;
14591
+ const _component_TabIcon = _sfc_main$6;
14584
14592
  const _component_RouterLink = resolveComponent("RouterLink");
14585
14593
  return openBlock(), createElementBlock("div", _hoisted_1$1, [
14586
14594
  createBaseVNode("div", _hoisted_2$1, [
@@ -14704,99 +14712,9 @@ let nanoid = (size = 21) =>
14704
14712
 
14705
14713
  /* Injected with object hook! */
14706
14714
 
14707
- function isBeingDestroyed(instance) {
14708
- return instance._isBeingDestroyed || instance.isUnmounted;
14709
- }
14710
- function isFragment(instance) {
14711
- return Fragment === instance.subTree?.type;
14712
- }
14713
- function getInstanceName(instance) {
14714
- const name = getComponentTypeName(instance.type || {});
14715
- if (name)
14716
- return name;
14717
- if (instance.root === instance)
14718
- return "Root";
14719
- for (const key in instance.parent?.type?.components) {
14720
- if (instance.parent.type.components[key] === instance.type)
14721
- return saveComponentName(instance, key);
14722
- }
14723
- for (const key in instance.appContext?.components) {
14724
- if (instance.appContext.components[key] === instance.type)
14725
- return saveComponentName(instance, key);
14726
- }
14727
- const fileName = getComponentFileName(instance.type || {});
14728
- if (fileName)
14729
- return fileName;
14730
- return "Anonymous Component";
14731
- }
14732
- function saveComponentName(instance, key) {
14733
- return key;
14734
- }
14735
- function getComponentTypeName(options) {
14736
- return options.name || options._componentTag || options.__vdevtools_guessedName || options.__name;
14737
- }
14738
- function getComponentFileName(options) {
14739
- const file = options.__file;
14740
- if (file) {
14741
- const filename = options.__file?.match(/\/?([^/]+?)(\.[^/.]+)?$/)?.[1];
14742
- return filename ?? file;
14743
- }
14744
- }
14745
- function getUniqueComponentId(instance) {
14746
- const appId = "vue-devtools";
14747
- const instanceId = instance === instance.root ? "root" : instance.uid;
14748
- return `${appId}:${instanceId}`;
14749
- }
14750
- function getRenderKey(value) {
14751
- if (value == null)
14752
- return null;
14753
- const type = typeof value;
14754
- if (type === "number")
14755
- return value;
14756
- else if (type === "string")
14757
- return `'${value}'`;
14758
- else if (Array.isArray(value))
14759
- return "Array";
14760
- else
14761
- return "Object";
14762
- }
14763
- function cached(fn) {
14764
- const cache = /* @__PURE__ */ Object.create(null);
14765
- return function cachedFn(str) {
14766
- const hit = cache[str];
14767
- return hit || (cache[str] = fn(str));
14768
- };
14769
- }
14770
- function toUpper(_, c) {
14771
- return c ? c.toUpperCase() : "";
14772
- }
14773
- const camelizeRE = /-(\w)/g;
14774
- const camelize = cached((str) => {
14775
- return str && str.replace(camelizeRE, toUpper);
14776
- });
14777
- const kebabizeRE = /([a-z0-9])([A-Z])/g;
14778
- const kebabize = cached((str) => {
14779
- return str && str.replace(kebabizeRE, (_, lowerCaseCharacter, upperCaseLetter) => {
14780
- return `${lowerCaseCharacter}-${upperCaseLetter}`;
14781
- }).toLowerCase();
14782
- });
14783
- function returnError(cb) {
14784
- try {
14785
- return cb();
14786
- } catch (e) {
14787
- return e;
14788
- }
14789
- }
14790
- const classifyRE = /(?:^|[-_/])(\w)/g;
14791
- const classify = cached((str) => {
14792
- return str && `${str}`.replace(classifyRE, toUpper);
14793
- });
14794
-
14795
- /* Injected with object hook! */
14796
-
14797
14715
  const timelineLayer = ref([]);
14798
14716
  const timelineEvent = ref([]);
14799
- const activeLayerId = ref("performance");
14717
+ const activeLayerId = ref("router");
14800
14718
  const activeTimelineEvents = computed(() => {
14801
14719
  return timelineEvent.value.map((item) => ({ ...item, id: nanoid() })).filter((item) => item.layerId === activeLayerId.value);
14802
14720
  });
@@ -14825,81 +14743,6 @@ const timelineEventDetails = computed(() => {
14825
14743
  value: activeTimelineEvents.value[activeTimelineEventIndex.value]?.event.data
14826
14744
  };
14827
14745
  });
14828
- function addTimelineEvent(event) {
14829
- const [eventType, {
14830
- now,
14831
- _,
14832
- uid,
14833
- component,
14834
- type,
14835
- time,
14836
- sortId
14837
- }] = event;
14838
- const filename = component.type.__name ?? component.type.name ?? getComponentFileName(component.type);
14839
- if (!filename)
14840
- return;
14841
- const item = timelineEvent.value.slice(0).reverse().find((item2) => item2.groupKey === `${uid}-${type}`);
14842
- timelineApi.addTimelineEvent({
14843
- layerId: "performance",
14844
- groupKey: `${uid}-${type}`,
14845
- sortId,
14846
- event: {
14847
- title: filename,
14848
- subtitle: type,
14849
- time,
14850
- now,
14851
- data: {
14852
- component: filename,
14853
- // name,
14854
- type,
14855
- measure: eventType === "perf:start" ? "start" : "end",
14856
- ...eventType === "perf:end" ? { duration: `${time - (item?.event?.time ?? 0)}ms` } : {}
14857
- }
14858
- }
14859
- });
14860
- }
14861
- function initPerfTimeline(events) {
14862
- const performTimelineSortKey = {
14863
- start: -1,
14864
- end: 1
14865
- };
14866
- timelineApi.addTimelineLayer({
14867
- id: "performance",
14868
- label: "Performance"
14869
- });
14870
- events.forEach((event) => {
14871
- addTimelineEvent(event);
14872
- });
14873
- timelineEvent.value = timelineEvent.value.sort((a, b) => a.sortId - b.sortId).sort((a, b) => performTimelineSortKey[a.event.data.measure] - performTimelineSortKey[b.event.data.measure]);
14874
- const client = useDevtoolsClient();
14875
- let sortId = timelineEvent.value.length;
14876
- client.value?.hook?.on("perf:start", (app, uid, component, type, time) => {
14877
- if (component?.root.type?.devtools?.hide)
14878
- return;
14879
- addTimelineEvent(["perf:start", {
14880
- now: Date.now(),
14881
- app,
14882
- uid,
14883
- component,
14884
- type,
14885
- time,
14886
- sortId: sortId++
14887
- }]);
14888
- });
14889
- client.value?.hook?.on("perf:end", (app, uid, component, type, time) => {
14890
- if (component?.root.type?.devtools?.hide)
14891
- return;
14892
- addTimelineEvent(["perf:end", {
14893
- now: Date.now(),
14894
- app,
14895
- uid,
14896
- component,
14897
- type,
14898
- time,
14899
- sortId: sortId++
14900
- }]);
14901
- });
14902
- }
14903
14746
 
14904
14747
  /* Injected with object hook! */
14905
14748
 
@@ -15397,7 +15240,6 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
15397
15240
  const hookBuffer = client.value.hookBuffer;
15398
15241
  client.value.markClientLoaded();
15399
15242
  hookApi.produce();
15400
- initPerfTimeline(hookBuffer.filter(([type]) => type.startsWith("perf:")));
15401
15243
  hookApi.consume(hookBuffer.filter(([type]) => type.startsWith("component:")));
15402
15244
  initRoutes();
15403
15245
  initPinia();
@@ -15488,4 +15330,4 @@ app.mount("#app");
15488
15330
 
15489
15331
  /* Injected with object hook! */
15490
15332
 
15491
- export { ref as $, onMounted as A, onUnmounted as B, timelineLayer as C, activeTimelineEvents as D, activeTimelineEventIndex as E, Fragment as F, toggleTimelineEventIndex as G, timelineEventDetails as H, activeLayerId as I, toggleTimelineLayer as J, useVModel as K, vModelSelect as L, isRef as M, vModelCheckbox as N, withKeys as O, useCategorizedTabs as P, createTextVNode as Q, useDevToolsSettings as R, _sfc_main$3 as S, _sfc_main$5 as T, router$1 as U, routeRecordMatcherState as V, activeRouteRecordMatcherState as W, activeRouteRecordIndex as X, toggleRouteRecordMatcher as Y, __unplugin_components_1 as Z, _sfc_main$9 as _, popScopeId as a, computed as a0, piniaStoresCategory as a1, toRaw as a2, piniaState as a3, piniaGetters as a4, withModifiers as a5, currentRoute as a6, routes as a7, vueVersion as a8, __unplugin_components_0 as a9, useStyleTag as aA, computedAsync as aB, useTimeAgo as aC, onKeyDown as aD, _export_sfc as aE, vModelDynamic as aF, __vitePreload as aG, useEventListener as aH, useDevtoolsClient as aI, useColorMode as aa, reactive as ab, useElementBounding as ac, watchEffect as ad, useStorage as ae, vModelText as af, useDark as ag, watch as ah, getInstanceName as ai, classify as aj, kebabize as ak, isFragment as al, camelize as am, returnError as an, isBeingDestroyed as ao, getUniqueComponentId as ap, getRenderKey as aq, shallowRef as ar, onVueInstanceUpdate as as, instance as at, nanoid as au, vShow as av, h as aw, useElementSize as ax, onClickOutside as ay, Transition as az, resolveDirective as b, createBlock as c, withDirectives as d, createElementBlock as e, renderSlot as f, createCommentVNode as g, withCtx as h, renderList as i, resolveDynamicComponent as j, mergeProps as k, normalizeStyle as l, markRaw as m, nextTick as n, openBlock as o, pushScopeId as p, normalizeClass as q, resolveComponent as r, shallowReactive as s, toHandlers as t, createVNode as u, defineComponent as v, withScopeId as w, createBaseVNode as x, toDisplayString as y, unref as z };
15333
+ export { __unplugin_components_1 as $, onMounted as A, onUnmounted as B, timelineLayer as C, activeTimelineEvents as D, activeTimelineEventIndex as E, Fragment as F, toggleTimelineEventIndex as G, timelineEventDetails as H, activeLayerId as I, toggleTimelineLayer as J, useVModel as K, vModelSelect as L, isRef as M, vModelCheckbox as N, withKeys as O, useCategorizedTabs as P, createTextVNode as Q, useDevToolsSettings as R, _sfc_main$a as S, _sfc_main$4 as T, _sfc_main$6 as U, router$1 as V, routeRecordMatcherState as W, activeRouteRecordMatcherState as X, activeRouteRecordIndex as Y, toggleRouteRecordMatcher as Z, _sfc_main$3 as _, popScopeId as a, ref as a0, computed as a1, piniaStoresCategory as a2, toRaw as a3, piniaState as a4, piniaGetters as a5, withModifiers as a6, currentRoute as a7, routes as a8, vueVersion as a9, useDevtoolsClient as aA, __unplugin_components_0$1 as aa, useColorMode as ab, reactive as ac, useElementBounding as ad, watchEffect as ae, useStorage as af, vModelText as ag, useDark as ah, watch as ai, shallowRef as aj, onVueInstanceUpdate as ak, instance as al, nanoid as am, vShow as an, h as ao, useElementSize as ap, onClickOutside as aq, Transition as ar, useStyleTag as as, computedAsync as at, useTimeAgo as au, onKeyDown as av, _export_sfc as aw, vModelDynamic as ax, __vitePreload as ay, useEventListener as az, resolveDirective as b, createBlock as c, withDirectives as d, createElementBlock as e, renderSlot as f, createCommentVNode as g, withCtx as h, renderList as i, resolveDynamicComponent as j, mergeProps as k, normalizeStyle as l, markRaw as m, nextTick as n, openBlock as o, pushScopeId as p, normalizeClass as q, resolveComponent as r, shallowReactive as s, toHandlers as t, createVNode as u, defineComponent as v, withScopeId as w, createBaseVNode as x, toDisplayString as y, unref as z };