vite-plugin-vue-devtools 0.0.3 → 0.0.4
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.
- package/README.md +16 -8
- package/dist/client/assets/{VCard-13907a46.js → VCard-d5dce5dc.js} +1 -1
- package/dist/client/assets/{VIcon.vue_vue_type_script_setup_true_lang-4c0f4564.js → VIcon.vue_vue_type_script_setup_true_lang-86e98dd0.js} +1 -1
- package/dist/client/assets/{VIconTitle.vue_vue_type_script_setup_true_lang-52a154e6.js → VIconTitle.vue_vue_type_script_setup_true_lang-6bf4d2c5.js} +1 -1
- package/dist/client/assets/{VPanelGrids-a4608de3.js → VPanelGrids-01802272.js} +1 -1
- package/dist/client/assets/{VTextInput.vue_vue_type_script_setup_true_lang-cb2bd7f3.js → VTextInput.vue_vue_type_script_setup_true_lang-2730be3e.js} +3 -3
- package/dist/client/assets/{__inspecting-b4c46d4c.js → __inspecting-1d8af17f.js} +2 -2
- package/dist/client/assets/{assets-91d26c5a.js → assets-bdd87b4e.js} +7 -7
- package/dist/client/assets/{components-82bf5bc7.js → components-f3ebd9fc.js} +5 -5
- package/dist/client/assets/{graph-f1653469.js → graph-298bd1af.js} +2 -2
- package/dist/client/assets/{index-b6d93299.js → index-0fe3b68e.js} +11 -11
- package/dist/client/assets/{inspect-6024fe00.js → inspect-fc04f168.js} +2 -2
- package/dist/client/assets/{overview-287c2c9c.js → overview-4c38bb9d.js} +4 -4
- package/dist/client/assets/{pages-414480b4.js → pages-332f4308.js} +4 -4
- package/dist/client/assets/{pinia-3952f28a.js → pinia-c92015f4.js} +3 -3
- package/dist/client/assets/{routes-736ebb1f.js → routes-42ec2b9a.js} +5 -5
- package/dist/client/assets/{rpc-dc061b6e.js → rpc-a3180d73.js} +1 -1
- package/dist/client/assets/{settings-c0ffed60.js → settings-b9471d84.js} +3 -3
- package/dist/client/assets/{splitpanes.es-fe752aba.js → splitpanes.es-dcbb9776.js} +2 -2
- package/dist/client/assets/{timeline-cda2b315.js → timeline-9e30477c.js} +5 -5
- package/dist/client/index.html +1 -1
- package/dist/index.cjs +3 -1
- package/dist/index.mjs +3 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -9,7 +9,12 @@ Vue DevTools <sup>Preview</sup>
|
|
|
9
9
|
<p align="center">
|
|
10
10
|
<a href="https://www.npmjs.com/package/vite-plugin-vue-devtools" target="_blank" rel="noopener noreferrer"><img src="https://badgen.net/npm/v/vite-plugin-vue-devtools" alt="NPM Version" /></a>
|
|
11
11
|
<!-- <a href="https://www.npmjs.com/package/vite-plugin-vue-devtools" target="_blank" rel="noopener noreferrer"><img src="https://badgen.net/npm/dt/vite-plugin-vue-devtools" alt="NPM Downloads" /></a> -->
|
|
12
|
-
<a href="https://github.com/webfansplz/vite-plugin-vue-devtools/blob/main/LICENSE" target="_blank" rel="noopener noreferrer"><img src="https://badgen.net/github/license/webfansplz/vite-plugin-vue-devtools" alt="License" /></a>
|
|
12
|
+
<!-- <a href="https://github.com/webfansplz/vite-plugin-vue-devtools/blob/main/LICENSE" target="_blank" rel="noopener noreferrer"><img src="https://badgen.net/github/license/webfansplz/vite-plugin-vue-devtools" alt="License" /></a> -->
|
|
13
|
+
</p>
|
|
14
|
+
|
|
15
|
+
<p align="center">
|
|
16
|
+
<a href="https://github.com/webfansplz/vite-plugin-vue-devtools/discussions/1">💡 Ideas & Suggestions</a> |
|
|
17
|
+
<a href="https://github.com/webfansplz/vite-plugin-vue-devtools/discussions/2">🗺️ Project Roadmap</a>
|
|
13
18
|
</p>
|
|
14
19
|
|
|
15
20
|
<p align="center">
|
|
@@ -21,10 +26,7 @@ Vue DevTools <sup>Preview</sup>
|
|
|
21
26
|
|
|
22
27
|
`vite-plugin-vue-devtools` is a Vite plugin designed to enhance the Vue developer experience.
|
|
23
28
|
|
|
24
|
-
|
|
25
|
-
<a href="https://github.com/webfansplz/vite-plugin-vue-devtools/discussions/1">💡 Ideas & Suggestions</a> |
|
|
26
|
-
<a href="https://github.com/webfansplz/vite-plugin-vue-devtools/discussions/2">🗺️ Project Roadmap</a> |
|
|
27
|
-
</p> -->
|
|
29
|
+
|
|
28
30
|
|
|
29
31
|
## 🎉 Features
|
|
30
32
|
|
|
@@ -99,11 +101,11 @@ pnpm install vite-plugin-vue-devtools -D
|
|
|
99
101
|
|
|
100
102
|
```ts
|
|
101
103
|
import { defineConfig } from 'vite'
|
|
102
|
-
import
|
|
104
|
+
import VueDevTools from 'vite-plugin-vue-devtools'
|
|
103
105
|
|
|
104
106
|
export default defineConfig({
|
|
105
107
|
plugins: [
|
|
106
|
-
|
|
108
|
+
VueDevTools(),
|
|
107
109
|
vue(),
|
|
108
110
|
],
|
|
109
111
|
})
|
|
@@ -127,9 +129,15 @@ export default defineConfig({
|
|
|
127
129
|
})
|
|
128
130
|
```
|
|
129
131
|
|
|
132
|
+
## 📖 Blog Post
|
|
133
|
+
|
|
134
|
+
- [Introducing Vue DevTools (Vite Plugin)](https://gist.github.com/webfansplz/bc90a773a0dd474a34e043ab2d2a37a4)
|
|
135
|
+
|
|
130
136
|
## 🌸 Credits
|
|
131
137
|
|
|
132
|
-
- This project is highly inspired by [nuxt/devtools](https://github.com/nuxt/devtools). Kudos to Anthony Fu for the awesome work!
|
|
138
|
+
- This project is highly inspired by [nuxt/devtools](https://github.com/nuxt/devtools). Kudos to Anthony Fu and Nuxt team for the awesome work!
|
|
139
|
+
|
|
140
|
+
- [vuejs/devtools](https://github.com/vuejs/devtools)
|
|
133
141
|
|
|
134
142
|
## 📄 License
|
|
135
143
|
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { aF as _export_sfc, o as openBlock, e as createElementBlock, f as renderSlot } from './index-
|
|
1
|
+
import { aF as _export_sfc, o as openBlock, e as createElementBlock, f as renderSlot } from './index-0fe3b68e.js';
|
|
2
2
|
|
|
3
3
|
/* unplugin-vue-components disabled */const _sfc_main = {};
|
|
4
4
|
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { v as defineComponent, o as openBlock, e as createElementBlock, q as normalizeClass } from './index-
|
|
1
|
+
import { v as defineComponent, o as openBlock, e as createElementBlock, q as normalizeClass } from './index-0fe3b68e.js';
|
|
2
2
|
|
|
3
3
|
const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
4
4
|
__name: "VIcon",
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { v as defineComponent, o as openBlock, e as createElementBlock, q as normalizeClass, g as createCommentVNode, f as renderSlot, x as createBaseVNode, y as toDisplayString } from './index-
|
|
1
|
+
import { v as defineComponent, o as openBlock, e as createElementBlock, q as normalizeClass, g as createCommentVNode, f as renderSlot, x as createBaseVNode, y as toDisplayString } from './index-0fe3b68e.js';
|
|
2
2
|
|
|
3
3
|
const _hoisted_1 = {
|
|
4
4
|
flex: "~ gap-3",
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { aF as _export_sfc, o as openBlock, e as createElementBlock, f as renderSlot } from './index-
|
|
1
|
+
import { aF as _export_sfc, o as openBlock, e as createElementBlock, f as renderSlot } from './index-0fe3b68e.js';
|
|
2
2
|
|
|
3
3
|
/* unplugin-vue-components disabled */const _sfc_main = {};
|
|
4
4
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { _ as _sfc_main$2 } from './VIconTitle.vue_vue_type_script_setup_true_lang-
|
|
2
|
-
import { _ as _sfc_main$3 } from './VIcon.vue_vue_type_script_setup_true_lang-
|
|
3
|
-
import { v as defineComponent, K as useVModel, o as openBlock, e as createElementBlock, x as createBaseVNode, q as normalizeClass, u as createVNode, h as withCtx, f as renderSlot, g as createCommentVNode, c as createBlock, z as unref, d as withDirectives, F as Fragment, b as resolveDirective, R as createTextVNode, y as toDisplayString, p as pushScopeId, a as popScopeId, aF as _export_sfc, aG as vModelDynamic, k as mergeProps, M as isRef } from './index-
|
|
1
|
+
import { _ as _sfc_main$2 } from './VIconTitle.vue_vue_type_script_setup_true_lang-6bf4d2c5.js';
|
|
2
|
+
import { _ as _sfc_main$3 } from './VIcon.vue_vue_type_script_setup_true_lang-86e98dd0.js';
|
|
3
|
+
import { v as defineComponent, K as useVModel, o as openBlock, e as createElementBlock, x as createBaseVNode, q as normalizeClass, u as createVNode, h as withCtx, f as renderSlot, g as createCommentVNode, c as createBlock, z as unref, d as withDirectives, F as Fragment, b as resolveDirective, R as createTextVNode, y as toDisplayString, p as pushScopeId, a as popScopeId, aF as _export_sfc, aG as vModelDynamic, k as mergeProps, M as isRef } from './index-0fe3b68e.js';
|
|
4
4
|
|
|
5
5
|
const _withScopeId = (n) => (pushScopeId("data-v-cf2e46eb"), n = n(), popScopeId(), n);
|
|
6
6
|
const _hoisted_1$1 = ["open"];
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { _ as __unplugin_components_0 } from './VPanelGrids-
|
|
2
|
-
import { v as defineComponent, aI as useEventListener, o as openBlock, c as createBlock, h as withCtx, x as createBaseVNode, aJ as useDevtoolsClient } from './index-
|
|
1
|
+
import { _ as __unplugin_components_0 } from './VPanelGrids-01802272.js';
|
|
2
|
+
import { v as defineComponent, aI as useEventListener, o as openBlock, c as createBlock, h as withCtx, x as createBaseVNode, aJ as useDevtoolsClient } from './index-0fe3b68e.js';
|
|
3
3
|
|
|
4
4
|
const _hoisted_1 = /* @__PURE__ */ createBaseVNode("div", null, " Inspecting Vue components ", -1);
|
|
5
5
|
const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
import { _ as __unplugin_components_0 } from './VPanelGrids-
|
|
2
|
-
import { _ as __unplugin_components_7 } from './VCard-
|
|
3
|
-
import { _ as _sfc_main$a } from './VIcon.vue_vue_type_script_setup_true_lang-
|
|
4
|
-
import { v as defineComponent, o as openBlock, c as createBlock, h as withCtx, u as createVNode, k as mergeProps, j as resolveDynamicComponent, a0 as ref, ay as useElementSize, az as onClickOutside, e as createElementBlock, x as createBaseVNode, f as renderSlot, z as unref, g as createCommentVNode, aA as Transition, a1 as computed, y as toDisplayString, q as normalizeClass, aB as useStyleTag, l as normalizeStyle, aC as computedAsync, aD as useTimeAgo, F as Fragment, R as createTextVNode, _ as _sfc_main$b, aE as onKeyDown, M as isRef, i as renderList } from './index-
|
|
5
|
-
import { r as rpc } from './rpc-
|
|
6
|
-
import { _ as _sfc_main$c, a as __unplugin_components_3 } from './VTextInput.vue_vue_type_script_setup_true_lang-
|
|
1
|
+
import { _ as __unplugin_components_0 } from './VPanelGrids-01802272.js';
|
|
2
|
+
import { _ as __unplugin_components_7 } from './VCard-d5dce5dc.js';
|
|
3
|
+
import { _ as _sfc_main$a } from './VIcon.vue_vue_type_script_setup_true_lang-86e98dd0.js';
|
|
4
|
+
import { v as defineComponent, o as openBlock, c as createBlock, h as withCtx, u as createVNode, k as mergeProps, j as resolveDynamicComponent, a0 as ref, ay as useElementSize, az as onClickOutside, e as createElementBlock, x as createBaseVNode, f as renderSlot, z as unref, g as createCommentVNode, aA as Transition, a1 as computed, y as toDisplayString, q as normalizeClass, aB as useStyleTag, l as normalizeStyle, aC as computedAsync, aD as useTimeAgo, F as Fragment, R as createTextVNode, _ as _sfc_main$b, aE as onKeyDown, M as isRef, i as renderList } from './index-0fe3b68e.js';
|
|
5
|
+
import { r as rpc } from './rpc-a3180d73.js';
|
|
6
|
+
import { _ as _sfc_main$c, a as __unplugin_components_3 } from './VTextInput.vue_vue_type_script_setup_true_lang-2730be3e.js';
|
|
7
7
|
import { F as Fuse } from './fuse.esm-c317b696.js';
|
|
8
|
-
import './VIconTitle.vue_vue_type_script_setup_true_lang-
|
|
8
|
+
import './VIconTitle.vue_vue_type_script_setup_true_lang-6bf4d2c5.js';
|
|
9
9
|
|
|
10
10
|
const _sfc_main$9 = /* @__PURE__ */ defineComponent({
|
|
11
11
|
__name: "VIconButton",
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { _ as __unplugin_components_0 } from './VPanelGrids-
|
|
2
|
-
import { _ as __unplugin_components_7 } from './VCard-
|
|
3
|
-
import { a as _sfc_main$2, g, M, _ as _sfc_main$3 } from './splitpanes.es-
|
|
4
|
-
import { aj as getInstanceName, ak as classify, al as kebabize, am as isFragment, an as camelize, ao as returnError, ap as isBeingDestroyed, aq as getUniqueComponentId, ar as getRenderKey, a0 as ref, as as shallowRef, a1 as computed, v as defineComponent, r as resolveComponent, o as openBlock, e as createElementBlock, x as createBaseVNode, z as unref, c as createBlock, q as normalizeClass, y as toDisplayString, l as normalizeStyle, F as Fragment, i as renderList, g as createCommentVNode, A as onMounted, at as onVueInstanceUpdate, u as createVNode, h as withCtx, ac as reactive, au as instance } from './index-
|
|
5
|
-
import './VIcon.vue_vue_type_script_setup_true_lang-
|
|
1
|
+
import { _ as __unplugin_components_0 } from './VPanelGrids-01802272.js';
|
|
2
|
+
import { _ as __unplugin_components_7 } from './VCard-d5dce5dc.js';
|
|
3
|
+
import { a as _sfc_main$2, g, M, _ as _sfc_main$3 } from './splitpanes.es-dcbb9776.js';
|
|
4
|
+
import { aj as getInstanceName, ak as classify, al as kebabize, am as isFragment, an as camelize, ao as returnError, ap as isBeingDestroyed, aq as getUniqueComponentId, ar as getRenderKey, a0 as ref, as as shallowRef, a1 as computed, v as defineComponent, r as resolveComponent, o as openBlock, e as createElementBlock, x as createBaseVNode, z as unref, c as createBlock, q as normalizeClass, y as toDisplayString, l as normalizeStyle, F as Fragment, i as renderList, g as createCommentVNode, A as onMounted, at as onVueInstanceUpdate, u as createVNode, h as withCtx, ac as reactive, au as instance } from './index-0fe3b68e.js';
|
|
5
|
+
import './VIcon.vue_vue_type_script_setup_true_lang-86e98dd0.js';
|
|
6
6
|
|
|
7
7
|
class ComponentFilter {
|
|
8
8
|
filter;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { a0 as ref, af as useStorage, a1 as computed, v as defineComponent, o as openBlock, e as createElementBlock, d as withDirectives, ag as vModelText, z as unref, x as createBaseVNode, M as isRef, N as vModelCheckbox, ah as useDark, A as onMounted, ai as watch, u as createVNode } from './index-
|
|
1
|
+
import { a0 as ref, af as useStorage, a1 as computed, v as defineComponent, o as openBlock, e as createElementBlock, d as withDirectives, ag as vModelText, z as unref, x as createBaseVNode, M as isRef, N as vModelCheckbox, ah as useDark, A as onMounted, ai as watch, u as createVNode } from './index-0fe3b68e.js';
|
|
2
2
|
import { F as Fuse } from './fuse.esm-c317b696.js';
|
|
3
|
-
import { r as rpc } from './rpc-
|
|
3
|
+
import { r as rpc } from './rpc-a3180d73.js';
|
|
4
4
|
|
|
5
5
|
const list = ref(await rpc.componentGraph());
|
|
6
6
|
const searchText = useStorage("vite-inspect-search-text", "");
|
|
@@ -14157,17 +14157,17 @@ const _sfc_main$6 = /* @__PURE__ */ defineComponent({
|
|
|
14157
14157
|
|
|
14158
14158
|
/* Injected with object hook! */
|
|
14159
14159
|
|
|
14160
|
-
const __pages_import_0__ = () => __vitePreload(() => import('./timeline-
|
|
14161
|
-
const __pages_import_1__ = () => __vitePreload(() => import('./settings-
|
|
14162
|
-
const __pages_import_2__ = () => __vitePreload(() => import('./routes-
|
|
14163
|
-
const __pages_import_3__ = () => __vitePreload(() => import('./pinia-
|
|
14164
|
-
const __pages_import_4__ = () => __vitePreload(() => import('./pages-
|
|
14165
|
-
const __pages_import_5__ = () => __vitePreload(() => import('./overview-
|
|
14166
|
-
const __pages_import_6__ = () => __vitePreload(() => import('./inspect-
|
|
14167
|
-
const __pages_import_8__ = () => __vitePreload(() => import('./graph-
|
|
14168
|
-
const __pages_import_9__ = () => __vitePreload(() => import('./components-
|
|
14169
|
-
const __pages_import_10__ = () => __vitePreload(() => import('./assets-
|
|
14170
|
-
const __pages_import_11__ = () => __vitePreload(() => import('./__inspecting-
|
|
14160
|
+
const __pages_import_0__ = () => __vitePreload(() => import('./timeline-9e30477c.js'),true?["./timeline-9e30477c.js","./splitpanes.es-dcbb9776.js","./VIcon.vue_vue_type_script_setup_true_lang-86e98dd0.js","./VPanelGrids-01802272.js","./VCard-d5dce5dc.js","./timeline-b315b2e0.css"]:void 0,import.meta.url);
|
|
14161
|
+
const __pages_import_1__ = () => __vitePreload(() => import('./settings-b9471d84.js'),true?["./settings-b9471d84.js","./VIcon.vue_vue_type_script_setup_true_lang-86e98dd0.js","./VIconTitle.vue_vue_type_script_setup_true_lang-6bf4d2c5.js"]:void 0,import.meta.url);
|
|
14162
|
+
const __pages_import_2__ = () => __vitePreload(() => import('./routes-42ec2b9a.js'),true?["./routes-42ec2b9a.js","./VPanelGrids-01802272.js","./VCard-d5dce5dc.js","./splitpanes.es-dcbb9776.js","./VIcon.vue_vue_type_script_setup_true_lang-86e98dd0.js"]:void 0,import.meta.url);
|
|
14163
|
+
const __pages_import_3__ = () => __vitePreload(() => import('./pinia-c92015f4.js'),true?["./pinia-c92015f4.js","./splitpanes.es-dcbb9776.js","./VIcon.vue_vue_type_script_setup_true_lang-86e98dd0.js"]:void 0,import.meta.url);
|
|
14164
|
+
const __pages_import_4__ = () => __vitePreload(() => import('./pages-332f4308.js'),true?["./pages-332f4308.js","./VTextInput.vue_vue_type_script_setup_true_lang-2730be3e.js","./VIconTitle.vue_vue_type_script_setup_true_lang-6bf4d2c5.js","./VIcon.vue_vue_type_script_setup_true_lang-86e98dd0.js","./VTextInput-52804693.css"]:void 0,import.meta.url);
|
|
14165
|
+
const __pages_import_5__ = () => __vitePreload(() => import('./overview-4c38bb9d.js'),true?["./overview-4c38bb9d.js","./VPanelGrids-01802272.js","./rpc-a3180d73.js"]:void 0,import.meta.url);
|
|
14166
|
+
const __pages_import_6__ = () => __vitePreload(() => import('./inspect-fc04f168.js'),true?["./inspect-fc04f168.js","./rpc-a3180d73.js"]:void 0,import.meta.url);
|
|
14167
|
+
const __pages_import_8__ = () => __vitePreload(() => import('./graph-298bd1af.js'),true?["./graph-298bd1af.js","./fuse.esm-c317b696.js","./rpc-a3180d73.js"]:void 0,import.meta.url);
|
|
14168
|
+
const __pages_import_9__ = () => __vitePreload(() => import('./components-f3ebd9fc.js'),true?["./components-f3ebd9fc.js","./VPanelGrids-01802272.js","./VCard-d5dce5dc.js","./splitpanes.es-dcbb9776.js","./VIcon.vue_vue_type_script_setup_true_lang-86e98dd0.js"]:void 0,import.meta.url);
|
|
14169
|
+
const __pages_import_10__ = () => __vitePreload(() => import('./assets-bdd87b4e.js'),true?["./assets-bdd87b4e.js","./VPanelGrids-01802272.js","./VCard-d5dce5dc.js","./VIcon.vue_vue_type_script_setup_true_lang-86e98dd0.js","./rpc-a3180d73.js","./VTextInput.vue_vue_type_script_setup_true_lang-2730be3e.js","./VIconTitle.vue_vue_type_script_setup_true_lang-6bf4d2c5.js","./VTextInput-52804693.css","./fuse.esm-c317b696.js"]:void 0,import.meta.url);
|
|
14170
|
+
const __pages_import_11__ = () => __vitePreload(() => import('./__inspecting-1d8af17f.js'),true?["./__inspecting-1d8af17f.js","./VPanelGrids-01802272.js"]:void 0,import.meta.url);
|
|
14171
14171
|
|
|
14172
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}];
|
|
14173
14173
|
/* Injected with object hook! */
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { v as defineComponent, ab as useColorMode, a0 as ref, a1 as computed, ac as reactive, ad as useElementBounding, A as onMounted, n as nextTick, ae as watchEffect, B as onUnmounted, o as openBlock, e as createElementBlock, u as createVNode, z as unref } from './index-
|
|
2
|
-
import { i as inspectClientUrl } from './rpc-
|
|
1
|
+
import { v as defineComponent, ab as useColorMode, a0 as ref, a1 as computed, ac as reactive, ad as useElementBounding, A as onMounted, n as nextTick, ae as watchEffect, B as onUnmounted, o as openBlock, e as createElementBlock, u as createVNode, z as unref } from './index-0fe3b68e.js';
|
|
2
|
+
import { i as inspectClientUrl } from './rpc-a3180d73.js';
|
|
3
3
|
|
|
4
4
|
const iframeCacheMap = /* @__PURE__ */ new Map();
|
|
5
5
|
const _sfc_main$1 = /* @__PURE__ */ defineComponent({
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { _ as __unplugin_components_0$1 } from './VPanelGrids-
|
|
2
|
-
import { a0 as ref, a1 as computed, a8 as routes, v as defineComponent, o as openBlock, c as createBlock, h as withCtx, x as createBaseVNode, u as createVNode, y as toDisplayString, z as unref, a9 as vueVersion, R as createTextVNode, e as createElementBlock, F as Fragment, aa as __unplugin_components_0, $ as __unplugin_components_1, r as resolveComponent, _ as _sfc_main$1 } from './index-
|
|
3
|
-
import { r as rpc } from './rpc-
|
|
1
|
+
import { _ as __unplugin_components_0$1 } from './VPanelGrids-01802272.js';
|
|
2
|
+
import { a0 as ref, a1 as computed, a8 as routes, v as defineComponent, o as openBlock, c as createBlock, h as withCtx, x as createBaseVNode, u as createVNode, y as toDisplayString, z as unref, a9 as vueVersion, R as createTextVNode, e as createElementBlock, F as Fragment, aa as __unplugin_components_0, $ as __unplugin_components_1, r as resolveComponent, _ as _sfc_main$1 } from './index-0fe3b68e.js';
|
|
3
|
+
import { r as rpc } from './rpc-a3180d73.js';
|
|
4
4
|
|
|
5
|
-
const version = "0.0.
|
|
5
|
+
const version = "0.0.4";
|
|
6
6
|
|
|
7
7
|
/* Injected with object hook! */
|
|
8
8
|
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { _ as _sfc_main$3, a as __unplugin_components_3 } from './VTextInput.vue_vue_type_script_setup_true_lang-
|
|
2
|
-
import { v as defineComponent, a0 as ref, a1 as computed, r as resolveComponent, z as unref, o as openBlock, e as createElementBlock, x as createBaseVNode, y as toDisplayString, c as createBlock, h as withCtx, a6 as withModifiers, F as Fragment, i as renderList, g as createCommentVNode, u as createVNode, R as createTextVNode, q as normalizeClass, _ as _sfc_main$4, $ as __unplugin_components_1, A as onMounted, a7 as currentRoute, V as router, M as isRef, O as withKeys, a8 as routes } from './index-
|
|
3
|
-
import './VIconTitle.vue_vue_type_script_setup_true_lang-
|
|
4
|
-
import './VIcon.vue_vue_type_script_setup_true_lang-
|
|
1
|
+
import { _ as _sfc_main$3, a as __unplugin_components_3 } from './VTextInput.vue_vue_type_script_setup_true_lang-2730be3e.js';
|
|
2
|
+
import { v as defineComponent, a0 as ref, a1 as computed, r as resolveComponent, z as unref, o as openBlock, e as createElementBlock, x as createBaseVNode, y as toDisplayString, c as createBlock, h as withCtx, a6 as withModifiers, F as Fragment, i as renderList, g as createCommentVNode, u as createVNode, R as createTextVNode, q as normalizeClass, _ as _sfc_main$4, $ as __unplugin_components_1, A as onMounted, a7 as currentRoute, V as router, M as isRef, O as withKeys, a8 as routes } from './index-0fe3b68e.js';
|
|
3
|
+
import './VIconTitle.vue_vue_type_script_setup_true_lang-6bf4d2c5.js';
|
|
4
|
+
import './VIcon.vue_vue_type_script_setup_true_lang-86e98dd0.js';
|
|
5
5
|
|
|
6
6
|
const _hoisted_1$2 = {
|
|
7
7
|
block: "",
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { g, M, _ as _sfc_main$1 } from './splitpanes.es-
|
|
2
|
-
import { v as defineComponent, a0 as ref, a1 as computed, a2 as piniaStoresCategory, a3 as toRaw, a4 as piniaState, a5 as piniaGetters, z as unref, o as openBlock, e as createElementBlock, u as createVNode, h as withCtx, x as createBaseVNode, F as Fragment, i as renderList, q as normalizeClass, y as toDisplayString, c as createBlock } from './index-
|
|
3
|
-
import './VIcon.vue_vue_type_script_setup_true_lang-
|
|
1
|
+
import { g, M, _ as _sfc_main$1 } from './splitpanes.es-dcbb9776.js';
|
|
2
|
+
import { v as defineComponent, a0 as ref, a1 as computed, a2 as piniaStoresCategory, a3 as toRaw, a4 as piniaState, a5 as piniaGetters, z as unref, o as openBlock, e as createElementBlock, u as createVNode, h as withCtx, x as createBaseVNode, F as Fragment, i as renderList, q as normalizeClass, y as toDisplayString, c as createBlock } from './index-0fe3b68e.js';
|
|
3
|
+
import './VIcon.vue_vue_type_script_setup_true_lang-86e98dd0.js';
|
|
4
4
|
|
|
5
5
|
const _hoisted_1 = {
|
|
6
6
|
"h-screen": "",
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { _ as __unplugin_components_0 } from './VPanelGrids-
|
|
2
|
-
import { _ as __unplugin_components_7 } from './VCard-
|
|
3
|
-
import { v as defineComponent, z as unref, V as router, o as openBlock, e as createElementBlock, u as createVNode, h as withCtx, x as createBaseVNode, F as Fragment, i as renderList, W as routeRecordMatcherState, X as activeRouteRecordMatcherState, c as createBlock, U as _sfc_main$2, q as normalizeClass, Y as activeRouteRecordIndex, Z as toggleRouteRecordMatcher, R as createTextVNode, y as toDisplayString, l as normalizeStyle, g as createCommentVNode, $ as __unplugin_components_1 } from './index-
|
|
4
|
-
import { g, M, _ as _sfc_main$1 } from './splitpanes.es-
|
|
5
|
-
import './VIcon.vue_vue_type_script_setup_true_lang-
|
|
1
|
+
import { _ as __unplugin_components_0 } from './VPanelGrids-01802272.js';
|
|
2
|
+
import { _ as __unplugin_components_7 } from './VCard-d5dce5dc.js';
|
|
3
|
+
import { v as defineComponent, z as unref, V as router, o as openBlock, e as createElementBlock, u as createVNode, h as withCtx, x as createBaseVNode, F as Fragment, i as renderList, W as routeRecordMatcherState, X as activeRouteRecordMatcherState, c as createBlock, U as _sfc_main$2, q as normalizeClass, Y as activeRouteRecordIndex, Z as toggleRouteRecordMatcher, R as createTextVNode, y as toDisplayString, l as normalizeStyle, g as createCommentVNode, $ as __unplugin_components_1 } from './index-0fe3b68e.js';
|
|
4
|
+
import { g, M, _ as _sfc_main$1 } from './splitpanes.es-dcbb9776.js';
|
|
5
|
+
import './VIcon.vue_vue_type_script_setup_true_lang-86e98dd0.js';
|
|
6
6
|
|
|
7
7
|
const _hoisted_1 = {
|
|
8
8
|
key: 0,
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { _ as _sfc_main$3 } from './VIcon.vue_vue_type_script_setup_true_lang-
|
|
2
|
-
import { v as defineComponent, K as useVModel, o as openBlock, e as createElementBlock, f as renderSlot, d as withDirectives, L as vModelSelect, z as unref, x as createBaseVNode, y as toDisplayString, g as createCommentVNode, M as isRef, c as createBlock, N as vModelCheckbox, O as withKeys, P as useTabs, Q as useCategorizedTabs, u as createVNode, F as Fragment, i as renderList, h as withCtx, R as createTextVNode, S as useDevToolsSettings, _ as _sfc_main$5, T as _sfc_main$6, q as normalizeClass, U as _sfc_main$7 } from './index-
|
|
3
|
-
import { _ as _sfc_main$4 } from './VIconTitle.vue_vue_type_script_setup_true_lang-
|
|
1
|
+
import { _ as _sfc_main$3 } from './VIcon.vue_vue_type_script_setup_true_lang-86e98dd0.js';
|
|
2
|
+
import { v as defineComponent, K as useVModel, o as openBlock, e as createElementBlock, f as renderSlot, d as withDirectives, L as vModelSelect, z as unref, x as createBaseVNode, y as toDisplayString, g as createCommentVNode, M as isRef, c as createBlock, N as vModelCheckbox, O as withKeys, P as useTabs, Q as useCategorizedTabs, u as createVNode, F as Fragment, i as renderList, h as withCtx, R as createTextVNode, S as useDevToolsSettings, _ as _sfc_main$5, T as _sfc_main$6, q as normalizeClass, U as _sfc_main$7 } from './index-0fe3b68e.js';
|
|
3
|
+
import { _ as _sfc_main$4 } from './VIconTitle.vue_vue_type_script_setup_true_lang-6bf4d2c5.js';
|
|
4
4
|
|
|
5
5
|
const _hoisted_1$2 = { class: "n-text-input flex flex items-center border n-border-base rounded px-2 py-1 focus-within:n-focus-base focus-within:border-context n-bg-base" };
|
|
6
6
|
const _hoisted_2$2 = ["disabled"];
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { _ as _sfc_main$3 } from './VIcon.vue_vue_type_script_setup_true_lang-
|
|
2
|
-
import { v as defineComponent, o as openBlock, c as createBlock, q as normalizeClass, M as isRef, a3 as toRaw, a1 as computed, r as resolveComponent, e as createElementBlock, i as renderList, z as unref, av as nanoid, x as createBaseVNode, y as toDisplayString, g as createCommentVNode, F as Fragment, a0 as ref, u as createVNode, d as withDirectives, aw as vShow, ax as h, f as renderSlot, l as normalizeStyle } from './index-
|
|
1
|
+
import { _ as _sfc_main$3 } from './VIcon.vue_vue_type_script_setup_true_lang-86e98dd0.js';
|
|
2
|
+
import { v as defineComponent, o as openBlock, c as createBlock, q as normalizeClass, M as isRef, a3 as toRaw, a1 as computed, r as resolveComponent, e as createElementBlock, i as renderList, z as unref, av as nanoid, x as createBaseVNode, y as toDisplayString, g as createCommentVNode, F as Fragment, a0 as ref, u as createVNode, d as withDirectives, aw as vShow, ax as h, f as renderSlot, l as normalizeStyle } from './index-0fe3b68e.js';
|
|
3
3
|
|
|
4
4
|
const _sfc_main$2 = /* @__PURE__ */ defineComponent({
|
|
5
5
|
__name: "VExpandIcon",
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { g, M, _ as _sfc_main$2 } from './splitpanes.es-
|
|
2
|
-
import { _ as __unplugin_components_0 } from './VPanelGrids-
|
|
3
|
-
import { _ as __unplugin_components_7 } from './VCard-
|
|
4
|
-
import { p as pushScopeId, a as popScopeId, n as nextTick, o as openBlock, c as createBlock, w as withScopeId, m as markRaw, s as shallowReactive, r as resolveComponent, b as resolveDirective, d as withDirectives, e as createElementBlock, f as renderSlot, g as createCommentVNode, h as withCtx, F as Fragment, i as renderList, j as resolveDynamicComponent, k as mergeProps, t as toHandlers, l as normalizeStyle, q as normalizeClass, u as createVNode, v as defineComponent, x as createBaseVNode, y as toDisplayString, z as unref, A as onMounted, B as onUnmounted, C as timelineLayer, D as activeTimelineEvents, E as activeTimelineEventIndex, G as toggleTimelineEventIndex, H as timelineEventDetails, I as activeLayerId, J as toggleTimelineLayer } from './index-
|
|
5
|
-
import './VIcon.vue_vue_type_script_setup_true_lang-
|
|
1
|
+
import { g, M, _ as _sfc_main$2 } from './splitpanes.es-dcbb9776.js';
|
|
2
|
+
import { _ as __unplugin_components_0 } from './VPanelGrids-01802272.js';
|
|
3
|
+
import { _ as __unplugin_components_7 } from './VCard-d5dce5dc.js';
|
|
4
|
+
import { p as pushScopeId, a as popScopeId, n as nextTick, o as openBlock, c as createBlock, w as withScopeId, m as markRaw, s as shallowReactive, r as resolveComponent, b as resolveDirective, d as withDirectives, e as createElementBlock, f as renderSlot, g as createCommentVNode, h as withCtx, F as Fragment, i as renderList, j as resolveDynamicComponent, k as mergeProps, t as toHandlers, l as normalizeStyle, q as normalizeClass, u as createVNode, v as defineComponent, x as createBaseVNode, y as toDisplayString, z as unref, A as onMounted, B as onUnmounted, C as timelineLayer, D as activeTimelineEvents, E as activeTimelineEventIndex, G as toggleTimelineEventIndex, H as timelineEventDetails, I as activeLayerId, J as toggleTimelineLayer } from './index-0fe3b68e.js';
|
|
5
|
+
import './VIcon.vue_vue_type_script_setup_true_lang-86e98dd0.js';
|
|
6
6
|
|
|
7
7
|
var commonjsGlobal = typeof globalThis !== 'undefined' ? globalThis : typeof window !== 'undefined' ? window : typeof global !== 'undefined' ? global : typeof self !== 'undefined' ? self : {};
|
|
8
8
|
|
package/dist/client/index.html
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
6
6
|
<link rel="icon" href="/favicon.svg" type="image/svg+xml">
|
|
7
7
|
<title>Vue Devtools</title>
|
|
8
|
-
<script type="module" crossorigin src="./assets/index-
|
|
8
|
+
<script type="module" crossorigin src="./assets/index-0fe3b68e.js"></script>
|
|
9
9
|
<link rel="stylesheet" href="./assets/index-f0fa9f81.css">
|
|
10
10
|
</head>
|
|
11
11
|
<body>
|
package/dist/index.cjs
CHANGED
|
@@ -7695,7 +7695,9 @@ function getVueDevtoolsPath() {
|
|
|
7695
7695
|
}
|
|
7696
7696
|
function PluginVueDevtools() {
|
|
7697
7697
|
const vueDevtoolsPath = getVueDevtoolsPath();
|
|
7698
|
-
const inspect = Inspect__default(
|
|
7698
|
+
const inspect = Inspect__default({
|
|
7699
|
+
silent: true
|
|
7700
|
+
});
|
|
7699
7701
|
let config;
|
|
7700
7702
|
function configureServer(server) {
|
|
7701
7703
|
const base = server.config.base || "/";
|
package/dist/index.mjs
CHANGED
|
@@ -7679,7 +7679,9 @@ function getVueDevtoolsPath() {
|
|
|
7679
7679
|
}
|
|
7680
7680
|
function PluginVueDevtools() {
|
|
7681
7681
|
const vueDevtoolsPath = getVueDevtoolsPath();
|
|
7682
|
-
const inspect = Inspect(
|
|
7682
|
+
const inspect = Inspect({
|
|
7683
|
+
silent: true
|
|
7684
|
+
});
|
|
7683
7685
|
let config;
|
|
7684
7686
|
function configureServer(server) {
|
|
7685
7687
|
const base = server.config.base || "/";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "vite-plugin-vue-devtools",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.4",
|
|
4
4
|
"packageManager": "pnpm@8.4.0",
|
|
5
5
|
"description": "A vite plugin for Vue Devtools",
|
|
6
6
|
"author": "webfansplz",
|
|
@@ -60,7 +60,7 @@
|
|
|
60
60
|
"sirv": "^2.0.3",
|
|
61
61
|
"splitpanes": "^3.1.5",
|
|
62
62
|
"vite-hot-client": "^0.2.1",
|
|
63
|
-
"vite-plugin-inspect": "^0.7.
|
|
63
|
+
"vite-plugin-inspect": "^0.7.26",
|
|
64
64
|
"vite-plugin-vue-inspector": "^3.4.1",
|
|
65
65
|
"vue-router": "^4.1.6"
|
|
66
66
|
},
|