vite-plugin-vue-devtools 7.7.7 → 8.0.1

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 (59) hide show
  1. package/client/assets/{IconTitle.vue_vue_type_script_setup_true_lang-DcR_j93Q.js → IconTitle.vue_vue_type_script_setup_true_lang-BKb_WVnP.js} +1 -1
  2. package/client/assets/SectionBlock-BYDDTsu3.css +1 -0
  3. package/client/assets/SectionBlock-CLZFQW91.js +1 -0
  4. package/client/assets/assets-B7zubrMs.js +12 -0
  5. package/client/assets/components-BvbJYQUf.js +1 -0
  6. package/client/assets/css-DPfMkruS.js +1 -0
  7. package/client/assets/custom-inspector-tab-view--RVvY-O-.js +1 -0
  8. package/client/assets/{custom-tab-view-cIPTfYPj.js → custom-tab-view-CM9Q_lnb.js} +1 -1
  9. package/client/assets/diff-D97Zzqfu.js +1 -0
  10. package/client/assets/graph-Buqn8Jbv.js +1073 -0
  11. package/client/assets/html-B8pBdPMQ.js +1 -0
  12. package/client/assets/index-ENvNlo7R.css +1 -0
  13. package/client/assets/{index-BC6Rk__0.css → index-SYP6buex.css} +1 -1
  14. package/client/assets/index-iOTou63J.js +2382 -0
  15. package/client/assets/javascript-BMMyXqK5.js +1 -0
  16. package/client/assets/json-Cp-IABpG.js +1 -0
  17. package/client/assets/{overview-DiRdGfd1.js → overview-Cm_cmE96.js} +1 -1
  18. package/client/assets/pages-cKsoKw9g.js +1 -0
  19. package/client/assets/pinia-CydCddd0.js +1 -0
  20. package/client/assets/router-CjEa9MSq.js +1 -0
  21. package/client/assets/settings-Dfia6tsi.js +1 -0
  22. package/client/assets/shellscript-Yzrsuije.js +1 -0
  23. package/client/assets/timeline-CWTKEViw.js +1 -0
  24. package/client/assets/typescript-DlfHMoPT.js +1 -0
  25. package/client/assets/vue-CYH3TOzo.js +1 -0
  26. package/client/assets/vue-html-zSiQ3dJi.js +1 -0
  27. package/client/assets/yaml-Buea-lGh.js +1 -0
  28. package/client/index.html +3 -3
  29. package/dist/vite.cjs +6408 -8291
  30. package/dist/vite.d.cts +38 -37
  31. package/dist/vite.d.ts +38 -37
  32. package/dist/vite.js +6878 -0
  33. package/package.json +12 -14
  34. package/src/overlay/devtools-overlay.mjs +4 -4
  35. package/client/assets/SectionBlock-B1R4b7tt.js +0 -1
  36. package/client/assets/SectionBlock-DgJtAf6B.css +0 -1
  37. package/client/assets/assets-S8Q3GKEH.js +0 -12
  38. package/client/assets/components-Dm_TuQrk.js +0 -1
  39. package/client/assets/css-6ydISZ1j.js +0 -1
  40. package/client/assets/custom-inspector-tab-view-DPepFobO.js +0 -1
  41. package/client/assets/diff-7a-uGD01.js +0 -1
  42. package/client/assets/graph-BOqNxXrF.js +0 -1044
  43. package/client/assets/html-DQt1crSz.js +0 -1
  44. package/client/assets/index-Du4z9Epn.css +0 -1
  45. package/client/assets/index-Dwf2ZVS8.js +0 -2382
  46. package/client/assets/javascript-DFxyEsuO.js +0 -1
  47. package/client/assets/json-BLmTiKMJ.js +0 -1
  48. package/client/assets/pages-Cfw0cMHw.js +0 -1
  49. package/client/assets/pinia-DBkBZRDw.js +0 -1
  50. package/client/assets/router-BWwb-kdR.js +0 -1
  51. package/client/assets/settings-D9ZHJ1mK.js +0 -1
  52. package/client/assets/shellscript-Cs-zf8G1.js +0 -1
  53. package/client/assets/timeline-Bv_iMyQp.js +0 -1
  54. package/client/assets/typescript-6msxI5qU.js +0 -1
  55. package/client/assets/vue-XV-ldwVs.js +0 -1
  56. package/client/assets/vue-html-ecI6esm2.js +0 -1
  57. package/client/assets/yaml-DeMLtiT4.js +0 -1
  58. package/dist/vite.d.mts +0 -41
  59. package/dist/vite.mjs +0 -8741
package/dist/vite.d.cts CHANGED
@@ -1,41 +1,42 @@
1
- import { PluginOption } from 'vite';
2
- import { VitePluginInspectorOptions } from 'vite-plugin-vue-inspector';
1
+ import { PluginOption } from "vite";
2
+ import { VitePluginInspectorOptions } from "vite-plugin-vue-inspector";
3
3
 
4
+ //#region src/vite.d.ts
4
5
  interface VitePluginVueDevToolsOptions {
5
- /**
6
- * append an import to the module id ending with `appendTo` instead of adding a script into body
7
- * useful for projects that do not use html file as an entry
8
- *
9
- * WARNING: only set this if you know exactly what it does.
10
- * @default ''
11
- */
12
- appendTo?: string | RegExp;
13
- /**
14
- * Enable vue component inspector
15
- *
16
- * @default true
17
- */
18
- componentInspector?: boolean | VitePluginInspectorOptions;
19
- /**
20
- * Target editor when open in editor (v7.2.0+)
21
- *
22
- * @default code (Visual Studio Code)
23
- */
24
- launchEditor?: 'appcode' | 'atom' | 'atom-beta' | 'brackets' | 'clion' | 'code' | 'code-insiders' | 'codium' | 'emacs' | 'idea' | 'notepad++' | 'pycharm' | 'phpstorm' | 'rubymine' | 'sublime' | 'vim' | 'visualstudio' | 'webstorm' | 'rider' | string;
25
- /**
26
- * Customize openInEditor host
27
- * @default false
28
- * @deprecated This option is deprecated and removed in 7.1.0. The plugin now automatically detects the correct host.
29
- */
30
- openInEditorHost?: string | false;
31
- /**
32
- * DevTools client host
33
- * useful for projects that use a reverse proxy
34
- * @default false
35
- * @deprecated This option is deprecated and removed in 7.1.0. The plugin now automatically detects the correct host.
36
- */
37
- clientHost?: string | false;
6
+ /**
7
+ * append an import to the module id ending with `appendTo` instead of adding a script into body
8
+ * useful for projects that do not use html file as an entry
9
+ *
10
+ * WARNING: only set this if you know exactly what it does.
11
+ * @default ''
12
+ */
13
+ appendTo?: string | RegExp;
14
+ /**
15
+ * Enable vue component inspector
16
+ *
17
+ * @default true
18
+ */
19
+ componentInspector?: boolean | VitePluginInspectorOptions;
20
+ /**
21
+ * Target editor when open in editor (v7.2.0+)
22
+ *
23
+ * @default code (Visual Studio Code)
24
+ */
25
+ launchEditor?: 'appcode' | 'atom' | 'atom-beta' | 'brackets' | 'clion' | 'code' | 'code-insiders' | 'codium' | 'emacs' | 'idea' | 'notepad++' | 'pycharm' | 'phpstorm' | 'rubymine' | 'sublime' | 'vim' | 'visualstudio' | 'webstorm' | 'rider' | string;
26
+ /**
27
+ * Customize openInEditor host
28
+ * @default false
29
+ * @deprecated This option is deprecated and removed in 7.1.0. The plugin now automatically detects the correct host.
30
+ */
31
+ openInEditorHost?: string | false;
32
+ /**
33
+ * DevTools client host
34
+ * useful for projects that use a reverse proxy
35
+ * @default false
36
+ * @deprecated This option is deprecated and removed in 7.1.0. The plugin now automatically detects the correct host.
37
+ */
38
+ clientHost?: string | false;
38
39
  }
39
40
  declare function VitePluginVueDevTools(options?: VitePluginVueDevToolsOptions): PluginOption;
40
-
41
- export { type VitePluginVueDevToolsOptions, VitePluginVueDevTools as default };
41
+ //#endregion
42
+ export { VitePluginVueDevToolsOptions, VitePluginVueDevTools as default };
package/dist/vite.d.ts CHANGED
@@ -1,41 +1,42 @@
1
- import { PluginOption } from 'vite';
2
- import { VitePluginInspectorOptions } from 'vite-plugin-vue-inspector';
1
+ import { PluginOption } from "vite";
2
+ import { VitePluginInspectorOptions } from "vite-plugin-vue-inspector";
3
3
 
4
+ //#region src/vite.d.ts
4
5
  interface VitePluginVueDevToolsOptions {
5
- /**
6
- * append an import to the module id ending with `appendTo` instead of adding a script into body
7
- * useful for projects that do not use html file as an entry
8
- *
9
- * WARNING: only set this if you know exactly what it does.
10
- * @default ''
11
- */
12
- appendTo?: string | RegExp;
13
- /**
14
- * Enable vue component inspector
15
- *
16
- * @default true
17
- */
18
- componentInspector?: boolean | VitePluginInspectorOptions;
19
- /**
20
- * Target editor when open in editor (v7.2.0+)
21
- *
22
- * @default code (Visual Studio Code)
23
- */
24
- launchEditor?: 'appcode' | 'atom' | 'atom-beta' | 'brackets' | 'clion' | 'code' | 'code-insiders' | 'codium' | 'emacs' | 'idea' | 'notepad++' | 'pycharm' | 'phpstorm' | 'rubymine' | 'sublime' | 'vim' | 'visualstudio' | 'webstorm' | 'rider' | string;
25
- /**
26
- * Customize openInEditor host
27
- * @default false
28
- * @deprecated This option is deprecated and removed in 7.1.0. The plugin now automatically detects the correct host.
29
- */
30
- openInEditorHost?: string | false;
31
- /**
32
- * DevTools client host
33
- * useful for projects that use a reverse proxy
34
- * @default false
35
- * @deprecated This option is deprecated and removed in 7.1.0. The plugin now automatically detects the correct host.
36
- */
37
- clientHost?: string | false;
6
+ /**
7
+ * append an import to the module id ending with `appendTo` instead of adding a script into body
8
+ * useful for projects that do not use html file as an entry
9
+ *
10
+ * WARNING: only set this if you know exactly what it does.
11
+ * @default ''
12
+ */
13
+ appendTo?: string | RegExp;
14
+ /**
15
+ * Enable vue component inspector
16
+ *
17
+ * @default true
18
+ */
19
+ componentInspector?: boolean | VitePluginInspectorOptions;
20
+ /**
21
+ * Target editor when open in editor (v7.2.0+)
22
+ *
23
+ * @default code (Visual Studio Code)
24
+ */
25
+ launchEditor?: 'appcode' | 'atom' | 'atom-beta' | 'brackets' | 'clion' | 'code' | 'code-insiders' | 'codium' | 'emacs' | 'idea' | 'notepad++' | 'pycharm' | 'phpstorm' | 'rubymine' | 'sublime' | 'vim' | 'visualstudio' | 'webstorm' | 'rider' | string;
26
+ /**
27
+ * Customize openInEditor host
28
+ * @default false
29
+ * @deprecated This option is deprecated and removed in 7.1.0. The plugin now automatically detects the correct host.
30
+ */
31
+ openInEditorHost?: string | false;
32
+ /**
33
+ * DevTools client host
34
+ * useful for projects that use a reverse proxy
35
+ * @default false
36
+ * @deprecated This option is deprecated and removed in 7.1.0. The plugin now automatically detects the correct host.
37
+ */
38
+ clientHost?: string | false;
38
39
  }
39
40
  declare function VitePluginVueDevTools(options?: VitePluginVueDevToolsOptions): PluginOption;
40
-
41
- export { type VitePluginVueDevToolsOptions, VitePluginVueDevTools as default };
41
+ //#endregion
42
+ export { VitePluginVueDevToolsOptions, VitePluginVueDevTools as default };