@nuxt/devtools-kit-nightly 2.1.3-29016979.b3c9439 → 2.1.3-29019252.faa08d3
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/dist/index.d.cts +1 -2
- package/dist/index.d.mts +1 -2
- package/dist/index.d.ts +1 -2
- package/dist/shared/{devtools-kit-nightly.DeAMnpko.d.cts → devtools-kit-nightly.DWlBH6JX.d.cts} +3 -4
- package/dist/shared/{devtools-kit-nightly.DeAMnpko.d.mts → devtools-kit-nightly.DWlBH6JX.d.mts} +3 -4
- package/dist/shared/{devtools-kit-nightly.DeAMnpko.d.ts → devtools-kit-nightly.DWlBH6JX.d.ts} +3 -4
- package/dist/types.d.cts +5 -10
- package/dist/types.d.mts +5 -10
- package/dist/types.d.ts +5 -10
- package/package.json +1 -2
package/dist/index.d.cts
CHANGED
|
@@ -1,11 +1,10 @@
|
|
|
1
1
|
import * as _nuxt_schema from '@nuxt/schema';
|
|
2
2
|
import { BirpcGroup } from 'birpc';
|
|
3
|
-
import { M as ModuleCustomTab, S as SubprocessOptions, T as TerminalState, N as NuxtDevtoolsInfo } from './shared/devtools-kit-nightly.
|
|
3
|
+
import { M as ModuleCustomTab, S as SubprocessOptions, T as TerminalState, N as NuxtDevtoolsInfo } from './shared/devtools-kit-nightly.DWlBH6JX.cjs';
|
|
4
4
|
import { execa } from 'execa';
|
|
5
5
|
import 'vue';
|
|
6
6
|
import 'nuxt/schema';
|
|
7
7
|
import 'unimport';
|
|
8
|
-
import 'vite-plugin-vue-inspector';
|
|
9
8
|
import 'vue-router';
|
|
10
9
|
import 'nitropack';
|
|
11
10
|
import 'unstorage';
|
package/dist/index.d.mts
CHANGED
|
@@ -1,11 +1,10 @@
|
|
|
1
1
|
import * as _nuxt_schema from '@nuxt/schema';
|
|
2
2
|
import { BirpcGroup } from 'birpc';
|
|
3
|
-
import { M as ModuleCustomTab, S as SubprocessOptions, T as TerminalState, N as NuxtDevtoolsInfo } from './shared/devtools-kit-nightly.
|
|
3
|
+
import { M as ModuleCustomTab, S as SubprocessOptions, T as TerminalState, N as NuxtDevtoolsInfo } from './shared/devtools-kit-nightly.DWlBH6JX.mjs';
|
|
4
4
|
import { execa } from 'execa';
|
|
5
5
|
import 'vue';
|
|
6
6
|
import 'nuxt/schema';
|
|
7
7
|
import 'unimport';
|
|
8
|
-
import 'vite-plugin-vue-inspector';
|
|
9
8
|
import 'vue-router';
|
|
10
9
|
import 'nitropack';
|
|
11
10
|
import 'unstorage';
|
package/dist/index.d.ts
CHANGED
|
@@ -1,11 +1,10 @@
|
|
|
1
1
|
import * as _nuxt_schema from '@nuxt/schema';
|
|
2
2
|
import { BirpcGroup } from 'birpc';
|
|
3
|
-
import { M as ModuleCustomTab, S as SubprocessOptions, T as TerminalState, N as NuxtDevtoolsInfo } from './shared/devtools-kit-nightly.
|
|
3
|
+
import { M as ModuleCustomTab, S as SubprocessOptions, T as TerminalState, N as NuxtDevtoolsInfo } from './shared/devtools-kit-nightly.DWlBH6JX.js';
|
|
4
4
|
import { execa } from 'execa';
|
|
5
5
|
import 'vue';
|
|
6
6
|
import 'nuxt/schema';
|
|
7
7
|
import 'unimport';
|
|
8
|
-
import 'vite-plugin-vue-inspector';
|
|
9
8
|
import 'vue-router';
|
|
10
9
|
import 'nitropack';
|
|
11
10
|
import 'unstorage';
|
package/dist/shared/{devtools-kit-nightly.DeAMnpko.d.cts → devtools-kit-nightly.DWlBH6JX.d.cts}
RENAMED
|
@@ -2,7 +2,6 @@ import { VNode, MaybeRefOrGetter } from 'vue';
|
|
|
2
2
|
import { BirpcGroup } from 'birpc';
|
|
3
3
|
import { Component, NuxtOptions, NuxtPage, NuxtLayout, NuxtApp, Nuxt } from 'nuxt/schema';
|
|
4
4
|
import { Import, UnimportMeta } from 'unimport';
|
|
5
|
-
import { VitePluginInspectorOptions } from 'vite-plugin-vue-inspector';
|
|
6
5
|
import { RouteRecordNormalized } from 'vue-router';
|
|
7
6
|
import { Nitro, StorageMounts } from 'nitropack';
|
|
8
7
|
import { StorageValue } from 'unstorage';
|
|
@@ -300,7 +299,7 @@ interface VueInspectorClient {
|
|
|
300
299
|
openInEditor: (url: URL) => void;
|
|
301
300
|
onUpdated: () => void;
|
|
302
301
|
}
|
|
303
|
-
type VueInspectorData = VueInspectorClient['linkParams'] & VueInspectorClient['position']
|
|
302
|
+
type VueInspectorData = VueInspectorClient['linkParams'] & Partial<VueInspectorClient['position']>;
|
|
304
303
|
type AssetType = 'image' | 'font' | 'video' | 'audio' | 'text' | 'json' | 'other';
|
|
305
304
|
interface AssetInfo {
|
|
306
305
|
path: string;
|
|
@@ -362,7 +361,7 @@ interface ModuleOptions {
|
|
|
362
361
|
*
|
|
363
362
|
* @default true
|
|
364
363
|
*/
|
|
365
|
-
componentInspector?: boolean
|
|
364
|
+
componentInspector?: boolean;
|
|
366
365
|
/**
|
|
367
366
|
* Enable Vue DevTools integration
|
|
368
367
|
*/
|
|
@@ -774,4 +773,4 @@ declare module '@nuxt/schema' {
|
|
|
774
773
|
}
|
|
775
774
|
}
|
|
776
775
|
|
|
777
|
-
export type { CodeServerType as $, AnalyzeBuildMeta as A, BasicModuleInfo as B, ClientFunctions as C,
|
|
776
|
+
export type { CodeServerType as $, AnalyzeBuildMeta as A, BasicModuleInfo as B, ClientFunctions as C, ModuleCompatibility as D, ModuleStats as E, CompatibilityStatus as F, ModuleType as G, HookInfo as H, ImageMeta as I, MaintainerInfo as J, GitHubContributor as K, LoadingTimeMetric as L, ModuleCustomTab as M, NuxtDevtoolsInfo as N, VueInspectorData as O, PluginMetric as P, AssetType as Q, RouteInfo as R, SubprocessOptions as S, TerminalState as T, AssetInfo as U, VueInspectorClient as V, AssetEntry as W, CodeSnippet as X, ComponentRelationship as Y, ComponentWithRelationships as Z, CodeServerOptions as _, ServerFunctions as a, ModuleOptions as a0, ModuleGlobalOptions as a1, VSCodeIntegrationOptions as a2, VSCodeTunnelOptions as a3, NuxtDevToolsOptions as a4, NuxtServerData as a5, ClientUpdateEvent as a6, NuxtDevtoolsServerContext as a7, InstallModuleReturn as a8, TerminalBase as a9, TerminalAction as aa, TerminalInfo as ab, WizardFunctions as ac, WizardActions as ad, GetWizardArgs as ae, AnalyzeBuildsInfo as b, TabCategory as c, ModuleLaunchView as d, ModuleIframeView as e, ModuleVNodeView as f, ModuleLaunchAction as g, ModuleView as h, ModuleIframeTabLazyOptions as i, ModuleBuiltinTab as j, ModuleTabInfo as k, CategorizedTabs as l, PackageUpdateInfo as m, PackageManagerName as n, NpmCommandType as o, NpmCommandOptions as p, AutoImportsWithMetadata as q, ServerRouteInfo as r, ServerRouteInputType as s, ServerRouteInput as t, Payload as u, ServerTaskInfo as v, ScannedNitroTasks as w, PluginInfoWithMetic as x, InstalledModuleInfo as y, ModuleStaticInfo as z };
|
package/dist/shared/{devtools-kit-nightly.DeAMnpko.d.mts → devtools-kit-nightly.DWlBH6JX.d.mts}
RENAMED
|
@@ -2,7 +2,6 @@ import { VNode, MaybeRefOrGetter } from 'vue';
|
|
|
2
2
|
import { BirpcGroup } from 'birpc';
|
|
3
3
|
import { Component, NuxtOptions, NuxtPage, NuxtLayout, NuxtApp, Nuxt } from 'nuxt/schema';
|
|
4
4
|
import { Import, UnimportMeta } from 'unimport';
|
|
5
|
-
import { VitePluginInspectorOptions } from 'vite-plugin-vue-inspector';
|
|
6
5
|
import { RouteRecordNormalized } from 'vue-router';
|
|
7
6
|
import { Nitro, StorageMounts } from 'nitropack';
|
|
8
7
|
import { StorageValue } from 'unstorage';
|
|
@@ -300,7 +299,7 @@ interface VueInspectorClient {
|
|
|
300
299
|
openInEditor: (url: URL) => void;
|
|
301
300
|
onUpdated: () => void;
|
|
302
301
|
}
|
|
303
|
-
type VueInspectorData = VueInspectorClient['linkParams'] & VueInspectorClient['position']
|
|
302
|
+
type VueInspectorData = VueInspectorClient['linkParams'] & Partial<VueInspectorClient['position']>;
|
|
304
303
|
type AssetType = 'image' | 'font' | 'video' | 'audio' | 'text' | 'json' | 'other';
|
|
305
304
|
interface AssetInfo {
|
|
306
305
|
path: string;
|
|
@@ -362,7 +361,7 @@ interface ModuleOptions {
|
|
|
362
361
|
*
|
|
363
362
|
* @default true
|
|
364
363
|
*/
|
|
365
|
-
componentInspector?: boolean
|
|
364
|
+
componentInspector?: boolean;
|
|
366
365
|
/**
|
|
367
366
|
* Enable Vue DevTools integration
|
|
368
367
|
*/
|
|
@@ -774,4 +773,4 @@ declare module '@nuxt/schema' {
|
|
|
774
773
|
}
|
|
775
774
|
}
|
|
776
775
|
|
|
777
|
-
export type { CodeServerType as $, AnalyzeBuildMeta as A, BasicModuleInfo as B, ClientFunctions as C,
|
|
776
|
+
export type { CodeServerType as $, AnalyzeBuildMeta as A, BasicModuleInfo as B, ClientFunctions as C, ModuleCompatibility as D, ModuleStats as E, CompatibilityStatus as F, ModuleType as G, HookInfo as H, ImageMeta as I, MaintainerInfo as J, GitHubContributor as K, LoadingTimeMetric as L, ModuleCustomTab as M, NuxtDevtoolsInfo as N, VueInspectorData as O, PluginMetric as P, AssetType as Q, RouteInfo as R, SubprocessOptions as S, TerminalState as T, AssetInfo as U, VueInspectorClient as V, AssetEntry as W, CodeSnippet as X, ComponentRelationship as Y, ComponentWithRelationships as Z, CodeServerOptions as _, ServerFunctions as a, ModuleOptions as a0, ModuleGlobalOptions as a1, VSCodeIntegrationOptions as a2, VSCodeTunnelOptions as a3, NuxtDevToolsOptions as a4, NuxtServerData as a5, ClientUpdateEvent as a6, NuxtDevtoolsServerContext as a7, InstallModuleReturn as a8, TerminalBase as a9, TerminalAction as aa, TerminalInfo as ab, WizardFunctions as ac, WizardActions as ad, GetWizardArgs as ae, AnalyzeBuildsInfo as b, TabCategory as c, ModuleLaunchView as d, ModuleIframeView as e, ModuleVNodeView as f, ModuleLaunchAction as g, ModuleView as h, ModuleIframeTabLazyOptions as i, ModuleBuiltinTab as j, ModuleTabInfo as k, CategorizedTabs as l, PackageUpdateInfo as m, PackageManagerName as n, NpmCommandType as o, NpmCommandOptions as p, AutoImportsWithMetadata as q, ServerRouteInfo as r, ServerRouteInputType as s, ServerRouteInput as t, Payload as u, ServerTaskInfo as v, ScannedNitroTasks as w, PluginInfoWithMetic as x, InstalledModuleInfo as y, ModuleStaticInfo as z };
|
package/dist/shared/{devtools-kit-nightly.DeAMnpko.d.ts → devtools-kit-nightly.DWlBH6JX.d.ts}
RENAMED
|
@@ -2,7 +2,6 @@ import { VNode, MaybeRefOrGetter } from 'vue';
|
|
|
2
2
|
import { BirpcGroup } from 'birpc';
|
|
3
3
|
import { Component, NuxtOptions, NuxtPage, NuxtLayout, NuxtApp, Nuxt } from 'nuxt/schema';
|
|
4
4
|
import { Import, UnimportMeta } from 'unimport';
|
|
5
|
-
import { VitePluginInspectorOptions } from 'vite-plugin-vue-inspector';
|
|
6
5
|
import { RouteRecordNormalized } from 'vue-router';
|
|
7
6
|
import { Nitro, StorageMounts } from 'nitropack';
|
|
8
7
|
import { StorageValue } from 'unstorage';
|
|
@@ -300,7 +299,7 @@ interface VueInspectorClient {
|
|
|
300
299
|
openInEditor: (url: URL) => void;
|
|
301
300
|
onUpdated: () => void;
|
|
302
301
|
}
|
|
303
|
-
type VueInspectorData = VueInspectorClient['linkParams'] & VueInspectorClient['position']
|
|
302
|
+
type VueInspectorData = VueInspectorClient['linkParams'] & Partial<VueInspectorClient['position']>;
|
|
304
303
|
type AssetType = 'image' | 'font' | 'video' | 'audio' | 'text' | 'json' | 'other';
|
|
305
304
|
interface AssetInfo {
|
|
306
305
|
path: string;
|
|
@@ -362,7 +361,7 @@ interface ModuleOptions {
|
|
|
362
361
|
*
|
|
363
362
|
* @default true
|
|
364
363
|
*/
|
|
365
|
-
componentInspector?: boolean
|
|
364
|
+
componentInspector?: boolean;
|
|
366
365
|
/**
|
|
367
366
|
* Enable Vue DevTools integration
|
|
368
367
|
*/
|
|
@@ -774,4 +773,4 @@ declare module '@nuxt/schema' {
|
|
|
774
773
|
}
|
|
775
774
|
}
|
|
776
775
|
|
|
777
|
-
export type { CodeServerType as $, AnalyzeBuildMeta as A, BasicModuleInfo as B, ClientFunctions as C,
|
|
776
|
+
export type { CodeServerType as $, AnalyzeBuildMeta as A, BasicModuleInfo as B, ClientFunctions as C, ModuleCompatibility as D, ModuleStats as E, CompatibilityStatus as F, ModuleType as G, HookInfo as H, ImageMeta as I, MaintainerInfo as J, GitHubContributor as K, LoadingTimeMetric as L, ModuleCustomTab as M, NuxtDevtoolsInfo as N, VueInspectorData as O, PluginMetric as P, AssetType as Q, RouteInfo as R, SubprocessOptions as S, TerminalState as T, AssetInfo as U, VueInspectorClient as V, AssetEntry as W, CodeSnippet as X, ComponentRelationship as Y, ComponentWithRelationships as Z, CodeServerOptions as _, ServerFunctions as a, ModuleOptions as a0, ModuleGlobalOptions as a1, VSCodeIntegrationOptions as a2, VSCodeTunnelOptions as a3, NuxtDevToolsOptions as a4, NuxtServerData as a5, ClientUpdateEvent as a6, NuxtDevtoolsServerContext as a7, InstallModuleReturn as a8, TerminalBase as a9, TerminalAction as aa, TerminalInfo as ab, WizardFunctions as ac, WizardActions as ad, GetWizardArgs as ae, AnalyzeBuildsInfo as b, TabCategory as c, ModuleLaunchView as d, ModuleIframeView as e, ModuleVNodeView as f, ModuleLaunchAction as g, ModuleView as h, ModuleIframeTabLazyOptions as i, ModuleBuiltinTab as j, ModuleTabInfo as k, CategorizedTabs as l, PackageUpdateInfo as m, PackageManagerName as n, NpmCommandType as o, NpmCommandOptions as p, AutoImportsWithMetadata as q, ServerRouteInfo as r, ServerRouteInputType as s, ServerRouteInput as t, Payload as u, ServerTaskInfo as v, ScannedNitroTasks as w, PluginInfoWithMetic as x, InstalledModuleInfo as y, ModuleStaticInfo as z };
|
package/dist/types.d.cts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import {
|
|
2
|
-
export { A as AnalyzeBuildMeta,
|
|
1
|
+
import { H as HookInfo, P as PluginMetric, L as LoadingTimeMetric, a as ServerFunctions, C as ClientFunctions } from './shared/devtools-kit-nightly.DWlBH6JX.cjs';
|
|
2
|
+
export { A as AnalyzeBuildMeta, b as AnalyzeBuildsInfo, W as AssetEntry, U as AssetInfo, Q as AssetType, q as AutoImportsWithMetadata, B as BasicModuleInfo, l as CategorizedTabs, a6 as ClientUpdateEvent, _ as CodeServerOptions, $ as CodeServerType, X as CodeSnippet, F as CompatibilityStatus, Y as ComponentRelationship, Z as ComponentWithRelationships, ae as GetWizardArgs, K as GitHubContributor, I as ImageMeta, a8 as InstallModuleReturn, y as InstalledModuleInfo, J as MaintainerInfo, j as ModuleBuiltinTab, D as ModuleCompatibility, M as ModuleCustomTab, a1 as ModuleGlobalOptions, i as ModuleIframeTabLazyOptions, e as ModuleIframeView, g as ModuleLaunchAction, d as ModuleLaunchView, a0 as ModuleOptions, z as ModuleStaticInfo, E as ModuleStats, k as ModuleTabInfo, G as ModuleType, f as ModuleVNodeView, h as ModuleView, p as NpmCommandOptions, o as NpmCommandType, a4 as NuxtDevToolsOptions, N as NuxtDevtoolsInfo, a7 as NuxtDevtoolsServerContext, a5 as NuxtServerData, n as PackageManagerName, m as PackageUpdateInfo, u as Payload, x as PluginInfoWithMetic, R as RouteInfo, w as ScannedNitroTasks, r as ServerRouteInfo, t as ServerRouteInput, s as ServerRouteInputType, v as ServerTaskInfo, S as SubprocessOptions, c as TabCategory, aa as TerminalAction, a9 as TerminalBase, ab as TerminalInfo, T as TerminalState, a2 as VSCodeIntegrationOptions, a3 as VSCodeTunnelOptions, V as VueInspectorClient, O as VueInspectorData, ad as WizardActions, ac as WizardFunctions } from './shared/devtools-kit-nightly.DWlBH6JX.cjs';
|
|
3
3
|
import { BirpcReturn } from 'birpc';
|
|
4
4
|
import { Hookable } from 'hookable';
|
|
5
5
|
import { NuxtApp } from 'nuxt/app';
|
|
@@ -9,7 +9,6 @@ import { BuiltinLanguage } from 'shiki';
|
|
|
9
9
|
import { Ref } from 'vue';
|
|
10
10
|
import { StackFrame } from 'error-stack-parser-es';
|
|
11
11
|
import 'unimport';
|
|
12
|
-
import 'vite-plugin-vue-inspector';
|
|
13
12
|
import 'vue-router';
|
|
14
13
|
import 'nitropack';
|
|
15
14
|
import 'unstorage';
|
|
@@ -81,14 +80,10 @@ interface NuxtDevtoolsClientHooks {
|
|
|
81
80
|
* When the DevTools navigates, used for persisting the current tab
|
|
82
81
|
*/
|
|
83
82
|
'devtools:navigate': (path: string) => void;
|
|
84
|
-
/**
|
|
85
|
-
* Event emitted when the component inspector is updated
|
|
86
|
-
*/
|
|
87
|
-
'host:inspector:update': (data: VueInspectorData) => void;
|
|
88
83
|
/**
|
|
89
84
|
* Event emitted when the component inspector is clicked
|
|
90
85
|
*/
|
|
91
|
-
'host:inspector:click': (
|
|
86
|
+
'host:inspector:click': (path: string) => void;
|
|
92
87
|
/**
|
|
93
88
|
* Event to close the component inspector
|
|
94
89
|
*/
|
|
@@ -114,11 +109,11 @@ interface NuxtDevtoolsHostClient {
|
|
|
114
109
|
hooks: Hookable<NuxtDevtoolsClientHooks>;
|
|
115
110
|
getIframe: () => HTMLIFrameElement | undefined;
|
|
116
111
|
inspector?: {
|
|
117
|
-
instance?: VueInspectorClient;
|
|
118
112
|
enable: () => void;
|
|
119
113
|
disable: () => void;
|
|
120
114
|
toggle: () => void;
|
|
121
115
|
isEnabled: Ref<boolean>;
|
|
116
|
+
isAvailable: Ref<boolean>;
|
|
122
117
|
};
|
|
123
118
|
devtools: {
|
|
124
119
|
close: () => void;
|
|
@@ -179,4 +174,4 @@ interface NuxtDevtoolsGlobal {
|
|
|
179
174
|
setClient: (client: NuxtDevtoolsHostClient) => void;
|
|
180
175
|
}
|
|
181
176
|
|
|
182
|
-
export { ClientFunctions, type DevToolsFrameState, HookInfo, LoadingTimeMetric, type NuxtDevtoolsClient, type NuxtDevtoolsClientHooks, type NuxtDevtoolsGlobal, type NuxtDevtoolsHostClient, type NuxtDevtoolsIframeClient, PluginMetric, ServerFunctions, type TimelineEvent, type TimelineEventFunction, type TimelineEventNormalized, type TimelineEventRoute, type TimelineEventsSegment, type TimelineMetrics, type TimelineOptions, type TimelineServerState
|
|
177
|
+
export { ClientFunctions, type DevToolsFrameState, HookInfo, LoadingTimeMetric, type NuxtDevtoolsClient, type NuxtDevtoolsClientHooks, type NuxtDevtoolsGlobal, type NuxtDevtoolsHostClient, type NuxtDevtoolsIframeClient, PluginMetric, ServerFunctions, type TimelineEvent, type TimelineEventFunction, type TimelineEventNormalized, type TimelineEventRoute, type TimelineEventsSegment, type TimelineMetrics, type TimelineOptions, type TimelineServerState };
|
package/dist/types.d.mts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import {
|
|
2
|
-
export { A as AnalyzeBuildMeta,
|
|
1
|
+
import { H as HookInfo, P as PluginMetric, L as LoadingTimeMetric, a as ServerFunctions, C as ClientFunctions } from './shared/devtools-kit-nightly.DWlBH6JX.mjs';
|
|
2
|
+
export { A as AnalyzeBuildMeta, b as AnalyzeBuildsInfo, W as AssetEntry, U as AssetInfo, Q as AssetType, q as AutoImportsWithMetadata, B as BasicModuleInfo, l as CategorizedTabs, a6 as ClientUpdateEvent, _ as CodeServerOptions, $ as CodeServerType, X as CodeSnippet, F as CompatibilityStatus, Y as ComponentRelationship, Z as ComponentWithRelationships, ae as GetWizardArgs, K as GitHubContributor, I as ImageMeta, a8 as InstallModuleReturn, y as InstalledModuleInfo, J as MaintainerInfo, j as ModuleBuiltinTab, D as ModuleCompatibility, M as ModuleCustomTab, a1 as ModuleGlobalOptions, i as ModuleIframeTabLazyOptions, e as ModuleIframeView, g as ModuleLaunchAction, d as ModuleLaunchView, a0 as ModuleOptions, z as ModuleStaticInfo, E as ModuleStats, k as ModuleTabInfo, G as ModuleType, f as ModuleVNodeView, h as ModuleView, p as NpmCommandOptions, o as NpmCommandType, a4 as NuxtDevToolsOptions, N as NuxtDevtoolsInfo, a7 as NuxtDevtoolsServerContext, a5 as NuxtServerData, n as PackageManagerName, m as PackageUpdateInfo, u as Payload, x as PluginInfoWithMetic, R as RouteInfo, w as ScannedNitroTasks, r as ServerRouteInfo, t as ServerRouteInput, s as ServerRouteInputType, v as ServerTaskInfo, S as SubprocessOptions, c as TabCategory, aa as TerminalAction, a9 as TerminalBase, ab as TerminalInfo, T as TerminalState, a2 as VSCodeIntegrationOptions, a3 as VSCodeTunnelOptions, V as VueInspectorClient, O as VueInspectorData, ad as WizardActions, ac as WizardFunctions } from './shared/devtools-kit-nightly.DWlBH6JX.mjs';
|
|
3
3
|
import { BirpcReturn } from 'birpc';
|
|
4
4
|
import { Hookable } from 'hookable';
|
|
5
5
|
import { NuxtApp } from 'nuxt/app';
|
|
@@ -9,7 +9,6 @@ import { BuiltinLanguage } from 'shiki';
|
|
|
9
9
|
import { Ref } from 'vue';
|
|
10
10
|
import { StackFrame } from 'error-stack-parser-es';
|
|
11
11
|
import 'unimport';
|
|
12
|
-
import 'vite-plugin-vue-inspector';
|
|
13
12
|
import 'vue-router';
|
|
14
13
|
import 'nitropack';
|
|
15
14
|
import 'unstorage';
|
|
@@ -81,14 +80,10 @@ interface NuxtDevtoolsClientHooks {
|
|
|
81
80
|
* When the DevTools navigates, used for persisting the current tab
|
|
82
81
|
*/
|
|
83
82
|
'devtools:navigate': (path: string) => void;
|
|
84
|
-
/**
|
|
85
|
-
* Event emitted when the component inspector is updated
|
|
86
|
-
*/
|
|
87
|
-
'host:inspector:update': (data: VueInspectorData) => void;
|
|
88
83
|
/**
|
|
89
84
|
* Event emitted when the component inspector is clicked
|
|
90
85
|
*/
|
|
91
|
-
'host:inspector:click': (
|
|
86
|
+
'host:inspector:click': (path: string) => void;
|
|
92
87
|
/**
|
|
93
88
|
* Event to close the component inspector
|
|
94
89
|
*/
|
|
@@ -114,11 +109,11 @@ interface NuxtDevtoolsHostClient {
|
|
|
114
109
|
hooks: Hookable<NuxtDevtoolsClientHooks>;
|
|
115
110
|
getIframe: () => HTMLIFrameElement | undefined;
|
|
116
111
|
inspector?: {
|
|
117
|
-
instance?: VueInspectorClient;
|
|
118
112
|
enable: () => void;
|
|
119
113
|
disable: () => void;
|
|
120
114
|
toggle: () => void;
|
|
121
115
|
isEnabled: Ref<boolean>;
|
|
116
|
+
isAvailable: Ref<boolean>;
|
|
122
117
|
};
|
|
123
118
|
devtools: {
|
|
124
119
|
close: () => void;
|
|
@@ -179,4 +174,4 @@ interface NuxtDevtoolsGlobal {
|
|
|
179
174
|
setClient: (client: NuxtDevtoolsHostClient) => void;
|
|
180
175
|
}
|
|
181
176
|
|
|
182
|
-
export { ClientFunctions, type DevToolsFrameState, HookInfo, LoadingTimeMetric, type NuxtDevtoolsClient, type NuxtDevtoolsClientHooks, type NuxtDevtoolsGlobal, type NuxtDevtoolsHostClient, type NuxtDevtoolsIframeClient, PluginMetric, ServerFunctions, type TimelineEvent, type TimelineEventFunction, type TimelineEventNormalized, type TimelineEventRoute, type TimelineEventsSegment, type TimelineMetrics, type TimelineOptions, type TimelineServerState
|
|
177
|
+
export { ClientFunctions, type DevToolsFrameState, HookInfo, LoadingTimeMetric, type NuxtDevtoolsClient, type NuxtDevtoolsClientHooks, type NuxtDevtoolsGlobal, type NuxtDevtoolsHostClient, type NuxtDevtoolsIframeClient, PluginMetric, ServerFunctions, type TimelineEvent, type TimelineEventFunction, type TimelineEventNormalized, type TimelineEventRoute, type TimelineEventsSegment, type TimelineMetrics, type TimelineOptions, type TimelineServerState };
|
package/dist/types.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import {
|
|
2
|
-
export { A as AnalyzeBuildMeta,
|
|
1
|
+
import { H as HookInfo, P as PluginMetric, L as LoadingTimeMetric, a as ServerFunctions, C as ClientFunctions } from './shared/devtools-kit-nightly.DWlBH6JX.js';
|
|
2
|
+
export { A as AnalyzeBuildMeta, b as AnalyzeBuildsInfo, W as AssetEntry, U as AssetInfo, Q as AssetType, q as AutoImportsWithMetadata, B as BasicModuleInfo, l as CategorizedTabs, a6 as ClientUpdateEvent, _ as CodeServerOptions, $ as CodeServerType, X as CodeSnippet, F as CompatibilityStatus, Y as ComponentRelationship, Z as ComponentWithRelationships, ae as GetWizardArgs, K as GitHubContributor, I as ImageMeta, a8 as InstallModuleReturn, y as InstalledModuleInfo, J as MaintainerInfo, j as ModuleBuiltinTab, D as ModuleCompatibility, M as ModuleCustomTab, a1 as ModuleGlobalOptions, i as ModuleIframeTabLazyOptions, e as ModuleIframeView, g as ModuleLaunchAction, d as ModuleLaunchView, a0 as ModuleOptions, z as ModuleStaticInfo, E as ModuleStats, k as ModuleTabInfo, G as ModuleType, f as ModuleVNodeView, h as ModuleView, p as NpmCommandOptions, o as NpmCommandType, a4 as NuxtDevToolsOptions, N as NuxtDevtoolsInfo, a7 as NuxtDevtoolsServerContext, a5 as NuxtServerData, n as PackageManagerName, m as PackageUpdateInfo, u as Payload, x as PluginInfoWithMetic, R as RouteInfo, w as ScannedNitroTasks, r as ServerRouteInfo, t as ServerRouteInput, s as ServerRouteInputType, v as ServerTaskInfo, S as SubprocessOptions, c as TabCategory, aa as TerminalAction, a9 as TerminalBase, ab as TerminalInfo, T as TerminalState, a2 as VSCodeIntegrationOptions, a3 as VSCodeTunnelOptions, V as VueInspectorClient, O as VueInspectorData, ad as WizardActions, ac as WizardFunctions } from './shared/devtools-kit-nightly.DWlBH6JX.js';
|
|
3
3
|
import { BirpcReturn } from 'birpc';
|
|
4
4
|
import { Hookable } from 'hookable';
|
|
5
5
|
import { NuxtApp } from 'nuxt/app';
|
|
@@ -9,7 +9,6 @@ import { BuiltinLanguage } from 'shiki';
|
|
|
9
9
|
import { Ref } from 'vue';
|
|
10
10
|
import { StackFrame } from 'error-stack-parser-es';
|
|
11
11
|
import 'unimport';
|
|
12
|
-
import 'vite-plugin-vue-inspector';
|
|
13
12
|
import 'vue-router';
|
|
14
13
|
import 'nitropack';
|
|
15
14
|
import 'unstorage';
|
|
@@ -81,14 +80,10 @@ interface NuxtDevtoolsClientHooks {
|
|
|
81
80
|
* When the DevTools navigates, used for persisting the current tab
|
|
82
81
|
*/
|
|
83
82
|
'devtools:navigate': (path: string) => void;
|
|
84
|
-
/**
|
|
85
|
-
* Event emitted when the component inspector is updated
|
|
86
|
-
*/
|
|
87
|
-
'host:inspector:update': (data: VueInspectorData) => void;
|
|
88
83
|
/**
|
|
89
84
|
* Event emitted when the component inspector is clicked
|
|
90
85
|
*/
|
|
91
|
-
'host:inspector:click': (
|
|
86
|
+
'host:inspector:click': (path: string) => void;
|
|
92
87
|
/**
|
|
93
88
|
* Event to close the component inspector
|
|
94
89
|
*/
|
|
@@ -114,11 +109,11 @@ interface NuxtDevtoolsHostClient {
|
|
|
114
109
|
hooks: Hookable<NuxtDevtoolsClientHooks>;
|
|
115
110
|
getIframe: () => HTMLIFrameElement | undefined;
|
|
116
111
|
inspector?: {
|
|
117
|
-
instance?: VueInspectorClient;
|
|
118
112
|
enable: () => void;
|
|
119
113
|
disable: () => void;
|
|
120
114
|
toggle: () => void;
|
|
121
115
|
isEnabled: Ref<boolean>;
|
|
116
|
+
isAvailable: Ref<boolean>;
|
|
122
117
|
};
|
|
123
118
|
devtools: {
|
|
124
119
|
close: () => void;
|
|
@@ -179,4 +174,4 @@ interface NuxtDevtoolsGlobal {
|
|
|
179
174
|
setClient: (client: NuxtDevtoolsHostClient) => void;
|
|
180
175
|
}
|
|
181
176
|
|
|
182
|
-
export { ClientFunctions, type DevToolsFrameState, HookInfo, LoadingTimeMetric, type NuxtDevtoolsClient, type NuxtDevtoolsClientHooks, type NuxtDevtoolsGlobal, type NuxtDevtoolsHostClient, type NuxtDevtoolsIframeClient, PluginMetric, ServerFunctions, type TimelineEvent, type TimelineEventFunction, type TimelineEventNormalized, type TimelineEventRoute, type TimelineEventsSegment, type TimelineMetrics, type TimelineOptions, type TimelineServerState
|
|
177
|
+
export { ClientFunctions, type DevToolsFrameState, HookInfo, LoadingTimeMetric, type NuxtDevtoolsClient, type NuxtDevtoolsClientHooks, type NuxtDevtoolsGlobal, type NuxtDevtoolsHostClient, type NuxtDevtoolsIframeClient, PluginMetric, ServerFunctions, type TimelineEvent, type TimelineEventFunction, type TimelineEventNormalized, type TimelineEventRoute, type TimelineEventsSegment, type TimelineMetrics, type TimelineOptions, type TimelineServerState };
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nuxt/devtools-kit-nightly",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "2.1.3-
|
|
4
|
+
"version": "2.1.3-29019252.faa08d3",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"homepage": "https://devtools.nuxt.com/module/utils-kit",
|
|
7
7
|
"repository": {
|
|
@@ -51,7 +51,6 @@
|
|
|
51
51
|
"hookable": "^5.5.3",
|
|
52
52
|
"unbuild": "^3.5.0",
|
|
53
53
|
"unimport": "^4.1.2",
|
|
54
|
-
"vite-plugin-vue-inspector": "^5.3.1",
|
|
55
54
|
"vue-router": "^4.5.0"
|
|
56
55
|
},
|
|
57
56
|
"scripts": {
|