@vue/devtools-kit 7.0.24 → 7.0.25
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.cjs +24 -24
- package/dist/index.d.cts +4 -4
- package/dist/index.d.ts +4 -4
- package/dist/index.js +24 -24
- package/global.d.ts +1 -1
- package/package.json +2 -2
package/dist/index.cjs
CHANGED
|
@@ -1916,16 +1916,16 @@ function saveComponentGussedName(instance, name) {
|
|
|
1916
1916
|
return name;
|
|
1917
1917
|
}
|
|
1918
1918
|
function getAppRecord(instance) {
|
|
1919
|
-
if (instance.
|
|
1920
|
-
return instance.
|
|
1919
|
+
if (instance.__VUE_DEVTOOLS_NEXT_APP_RECORD__)
|
|
1920
|
+
return instance.__VUE_DEVTOOLS_NEXT_APP_RECORD__;
|
|
1921
1921
|
else if (instance.root)
|
|
1922
|
-
return instance.appContext.app.
|
|
1922
|
+
return instance.appContext.app.__VUE_DEVTOOLS_NEXT_APP_RECORD__;
|
|
1923
1923
|
}
|
|
1924
1924
|
async function getComponentId(options) {
|
|
1925
1925
|
const { app, uid, instance } = options;
|
|
1926
1926
|
try {
|
|
1927
|
-
if (instance.
|
|
1928
|
-
return instance.
|
|
1927
|
+
if (instance.__VUE_DEVTOOLS_NEXT_UID__)
|
|
1928
|
+
return instance.__VUE_DEVTOOLS_NEXT_UID__;
|
|
1929
1929
|
const appRecord = await getAppRecord(app);
|
|
1930
1930
|
if (!appRecord)
|
|
1931
1931
|
return null;
|
|
@@ -1964,7 +1964,7 @@ function getInstanceName(instance) {
|
|
|
1964
1964
|
}
|
|
1965
1965
|
function getUniqueComponentId(instance) {
|
|
1966
1966
|
var _a10, _b10, _c;
|
|
1967
|
-
const appId = (_c = (_b10 = (_a10 = instance == null ? void 0 : instance.appContext) == null ? void 0 : _a10.app) == null ? void 0 : _b10.
|
|
1967
|
+
const appId = (_c = (_b10 = (_a10 = instance == null ? void 0 : instance.appContext) == null ? void 0 : _a10.app) == null ? void 0 : _b10.__VUE_DEVTOOLS_NEXT_APP_RECORD_ID__) != null ? _c : 0;
|
|
1968
1968
|
const instanceId = instance === instance.root ? "root" : instance.uid;
|
|
1969
1969
|
return `${appId}:${instanceId}`;
|
|
1970
1970
|
}
|
|
@@ -2147,8 +2147,8 @@ var ComponentWalker = class {
|
|
|
2147
2147
|
captureId(instance) {
|
|
2148
2148
|
if (!instance)
|
|
2149
2149
|
return null;
|
|
2150
|
-
const id = instance.
|
|
2151
|
-
instance.
|
|
2150
|
+
const id = instance.__VUE_DEVTOOLS_NEXT_UID__ != null ? instance.__VUE_DEVTOOLS_NEXT_UID__ : getUniqueComponentId(instance);
|
|
2151
|
+
instance.__VUE_DEVTOOLS_NEXT_UID__ = id;
|
|
2152
2152
|
if (this.captureIds.has(id))
|
|
2153
2153
|
return null;
|
|
2154
2154
|
else
|
|
@@ -2194,9 +2194,9 @@ var ComponentWalker = class {
|
|
|
2194
2194
|
}
|
|
2195
2195
|
if (this.isKeepAlive(instance)) {
|
|
2196
2196
|
const cachedComponents = this.getKeepAliveCachedInstances(instance);
|
|
2197
|
-
const childrenIds = children.map((child) => child.
|
|
2197
|
+
const childrenIds = children.map((child) => child.__VUE_DEVTOOLS_NEXT_UID__);
|
|
2198
2198
|
for (const cachedChild of cachedComponents) {
|
|
2199
|
-
if (!childrenIds.includes(cachedChild.
|
|
2199
|
+
if (!childrenIds.includes(cachedChild.__VUE_DEVTOOLS_NEXT_UID__)) {
|
|
2200
2200
|
const node = await this.capture({ ...cachedChild, isDeactivated: true }, depth + 1);
|
|
2201
2201
|
if (node)
|
|
2202
2202
|
treeNode.children.push(node);
|
|
@@ -2304,8 +2304,8 @@ var ComponentWalker = class {
|
|
|
2304
2304
|
*/
|
|
2305
2305
|
mark(instance, force = false) {
|
|
2306
2306
|
const instanceMap = getAppRecord(instance).instanceMap;
|
|
2307
|
-
if (force || !instanceMap.has(instance.
|
|
2308
|
-
instanceMap.set(instance.
|
|
2307
|
+
if (force || !instanceMap.has(instance.__VUE_DEVTOOLS_NEXT_UID__)) {
|
|
2308
|
+
instanceMap.set(instance.__VUE_DEVTOOLS_NEXT_UID__, instance);
|
|
2309
2309
|
devtoolsAppRecords.active.instanceMap = instanceMap;
|
|
2310
2310
|
}
|
|
2311
2311
|
}
|
|
@@ -2962,8 +2962,8 @@ function registerComponentDevToolsPlugin(app) {
|
|
|
2962
2962
|
});
|
|
2963
2963
|
const appRecord = await getAppRecord(app2);
|
|
2964
2964
|
if (component) {
|
|
2965
|
-
if (component.
|
|
2966
|
-
component.
|
|
2965
|
+
if (component.__VUE_DEVTOOLS_NEXT_UID__ == null)
|
|
2966
|
+
component.__VUE_DEVTOOLS_NEXT_UID__ = id;
|
|
2967
2967
|
if (!(appRecord == null ? void 0 : appRecord.instanceMap.has(id))) {
|
|
2968
2968
|
appRecord == null ? void 0 : appRecord.instanceMap.set(id, component);
|
|
2969
2969
|
devtoolsAppRecords.active.instanceMap = appRecord.instanceMap;
|
|
@@ -2988,8 +2988,8 @@ function registerComponentDevToolsPlugin(app) {
|
|
|
2988
2988
|
});
|
|
2989
2989
|
const appRecord = await getAppRecord(app2);
|
|
2990
2990
|
if (component) {
|
|
2991
|
-
if (component.
|
|
2992
|
-
component.
|
|
2991
|
+
if (component.__VUE_DEVTOOLS_NEXT_UID__ == null)
|
|
2992
|
+
component.__VUE_DEVTOOLS_NEXT_UID__ = id;
|
|
2993
2993
|
if (!(appRecord == null ? void 0 : appRecord.instanceMap.has(id))) {
|
|
2994
2994
|
appRecord == null ? void 0 : appRecord.instanceMap.set(id, component);
|
|
2995
2995
|
devtoolsAppRecords.active.instanceMap = appRecord.instanceMap;
|
|
@@ -3041,8 +3041,8 @@ function getAppRootInstance(app) {
|
|
|
3041
3041
|
return (_d = (_c = app._container) == null ? void 0 : _c._vnode) == null ? void 0 : _d.component;
|
|
3042
3042
|
}
|
|
3043
3043
|
function getAppRecordId(app, defaultId) {
|
|
3044
|
-
if (app.
|
|
3045
|
-
return app.
|
|
3044
|
+
if (app.__VUE_DEVTOOLS_NEXT_APP_RECORD_ID__ != null)
|
|
3045
|
+
return app.__VUE_DEVTOOLS_NEXT_APP_RECORD_ID__;
|
|
3046
3046
|
let id = defaultId != null ? defaultId : (appRecordInfo.id++).toString();
|
|
3047
3047
|
if (defaultId && appRecordInfo.appIds.has(id)) {
|
|
3048
3048
|
let count = 1;
|
|
@@ -3051,7 +3051,7 @@ function getAppRecordId(app, defaultId) {
|
|
|
3051
3051
|
id = `${defaultId}_${count}`;
|
|
3052
3052
|
}
|
|
3053
3053
|
appRecordInfo.appIds.add(id);
|
|
3054
|
-
app.
|
|
3054
|
+
app.__VUE_DEVTOOLS_NEXT_APP_RECORD_ID__ = id;
|
|
3055
3055
|
return id;
|
|
3056
3056
|
}
|
|
3057
3057
|
function createAppRecord(app) {
|
|
@@ -3066,10 +3066,10 @@ function createAppRecord(app) {
|
|
|
3066
3066
|
instanceMap: /* @__PURE__ */ new Map(),
|
|
3067
3067
|
rootInstance
|
|
3068
3068
|
};
|
|
3069
|
-
app.
|
|
3069
|
+
app.__VUE_DEVTOOLS_NEXT_APP_RECORD__ = record;
|
|
3070
3070
|
const rootId = `${record.id}:root`;
|
|
3071
3071
|
record.instanceMap.set(rootId, record.rootInstance);
|
|
3072
|
-
record.rootInstance.
|
|
3072
|
+
record.rootInstance.__VUE_DEVTOOLS_NEXT_UID__ = rootId;
|
|
3073
3073
|
return record;
|
|
3074
3074
|
} else {
|
|
3075
3075
|
return {};
|
|
@@ -3461,7 +3461,7 @@ function getInstanceDetails(instance) {
|
|
|
3461
3461
|
return {
|
|
3462
3462
|
_custom: {
|
|
3463
3463
|
type: "component",
|
|
3464
|
-
id: instance.
|
|
3464
|
+
id: instance.__VUE_DEVTOOLS_NEXT_UID__,
|
|
3465
3465
|
displayText: getInstanceName(instance),
|
|
3466
3466
|
tooltipText: "Component instance",
|
|
3467
3467
|
value: reduceStateList(state),
|
|
@@ -4128,7 +4128,7 @@ var DevToolsPluginApi = class {
|
|
|
4128
4128
|
}
|
|
4129
4129
|
}
|
|
4130
4130
|
async getComponentInstances(app) {
|
|
4131
|
-
const appRecord = app.
|
|
4131
|
+
const appRecord = app.__VUE_DEVTOOLS_NEXT_APP_RECORD__;
|
|
4132
4132
|
const appId = appRecord.id.toString();
|
|
4133
4133
|
const instances = [...appRecord.instanceMap].filter(([key]) => key.split(":")[0] === appId).map(([, instance]) => instance);
|
|
4134
4134
|
return instances;
|
|
@@ -4352,7 +4352,7 @@ var devtoolsAppRecords = new Proxy(devtoolsState.appRecords, {
|
|
|
4352
4352
|
}
|
|
4353
4353
|
});
|
|
4354
4354
|
var _a8, _b8;
|
|
4355
|
-
var appRecordInfo = (_b8 = (_a8 = import_devtools_shared13.target).
|
|
4355
|
+
var appRecordInfo = (_b8 = (_a8 = import_devtools_shared13.target).__VUE_DEVTOOLS_NEXT_APP_RECROD_INFO__) != null ? _b8 : _a8.__VUE_DEVTOOLS_NEXT_APP_RECROD_INFO__ = {
|
|
4356
4356
|
id: 0,
|
|
4357
4357
|
appIds: /* @__PURE__ */ new Set()
|
|
4358
4358
|
};
|
package/dist/index.d.cts
CHANGED
|
@@ -386,7 +386,7 @@ type VueAppInstance = ComponentInternalInstance & {
|
|
|
386
386
|
computed: Record<string, unknown>;
|
|
387
387
|
};
|
|
388
388
|
__v_cache: Cache;
|
|
389
|
-
|
|
389
|
+
__VUE_DEVTOOLS_NEXT_UID__: string;
|
|
390
390
|
_isBeingDestroyed: boolean;
|
|
391
391
|
_instance: VueAppInstance;
|
|
392
392
|
_container: {
|
|
@@ -398,11 +398,11 @@ type VueAppInstance = ComponentInternalInstance & {
|
|
|
398
398
|
parent: VueAppInstance;
|
|
399
399
|
appContext: {
|
|
400
400
|
app: VueAppInstance & App & {
|
|
401
|
-
|
|
402
|
-
|
|
401
|
+
__VUE_DEVTOOLS_NEXT_APP_RECORD_ID__: string;
|
|
402
|
+
__VUE_DEVTOOLS_NEXT_APP_RECORD__: AppRecord;
|
|
403
403
|
};
|
|
404
404
|
};
|
|
405
|
-
|
|
405
|
+
__VUE_DEVTOOLS_NEXT_APP_RECORD__: AppRecord;
|
|
406
406
|
suspense: SuspenseBoundary & {
|
|
407
407
|
suspenseKey: string;
|
|
408
408
|
};
|
package/dist/index.d.ts
CHANGED
|
@@ -386,7 +386,7 @@ type VueAppInstance = ComponentInternalInstance & {
|
|
|
386
386
|
computed: Record<string, unknown>;
|
|
387
387
|
};
|
|
388
388
|
__v_cache: Cache;
|
|
389
|
-
|
|
389
|
+
__VUE_DEVTOOLS_NEXT_UID__: string;
|
|
390
390
|
_isBeingDestroyed: boolean;
|
|
391
391
|
_instance: VueAppInstance;
|
|
392
392
|
_container: {
|
|
@@ -398,11 +398,11 @@ type VueAppInstance = ComponentInternalInstance & {
|
|
|
398
398
|
parent: VueAppInstance;
|
|
399
399
|
appContext: {
|
|
400
400
|
app: VueAppInstance & App & {
|
|
401
|
-
|
|
402
|
-
|
|
401
|
+
__VUE_DEVTOOLS_NEXT_APP_RECORD_ID__: string;
|
|
402
|
+
__VUE_DEVTOOLS_NEXT_APP_RECORD__: AppRecord;
|
|
403
403
|
};
|
|
404
404
|
};
|
|
405
|
-
|
|
405
|
+
__VUE_DEVTOOLS_NEXT_APP_RECORD__: AppRecord;
|
|
406
406
|
suspense: SuspenseBoundary & {
|
|
407
407
|
suspenseKey: string;
|
|
408
408
|
};
|
package/dist/index.js
CHANGED
|
@@ -1888,16 +1888,16 @@ function saveComponentGussedName(instance, name) {
|
|
|
1888
1888
|
return name;
|
|
1889
1889
|
}
|
|
1890
1890
|
function getAppRecord(instance) {
|
|
1891
|
-
if (instance.
|
|
1892
|
-
return instance.
|
|
1891
|
+
if (instance.__VUE_DEVTOOLS_NEXT_APP_RECORD__)
|
|
1892
|
+
return instance.__VUE_DEVTOOLS_NEXT_APP_RECORD__;
|
|
1893
1893
|
else if (instance.root)
|
|
1894
|
-
return instance.appContext.app.
|
|
1894
|
+
return instance.appContext.app.__VUE_DEVTOOLS_NEXT_APP_RECORD__;
|
|
1895
1895
|
}
|
|
1896
1896
|
async function getComponentId(options) {
|
|
1897
1897
|
const { app, uid, instance } = options;
|
|
1898
1898
|
try {
|
|
1899
|
-
if (instance.
|
|
1900
|
-
return instance.
|
|
1899
|
+
if (instance.__VUE_DEVTOOLS_NEXT_UID__)
|
|
1900
|
+
return instance.__VUE_DEVTOOLS_NEXT_UID__;
|
|
1901
1901
|
const appRecord = await getAppRecord(app);
|
|
1902
1902
|
if (!appRecord)
|
|
1903
1903
|
return null;
|
|
@@ -1936,7 +1936,7 @@ function getInstanceName(instance) {
|
|
|
1936
1936
|
}
|
|
1937
1937
|
function getUniqueComponentId(instance) {
|
|
1938
1938
|
var _a10, _b10, _c;
|
|
1939
|
-
const appId = (_c = (_b10 = (_a10 = instance == null ? void 0 : instance.appContext) == null ? void 0 : _a10.app) == null ? void 0 : _b10.
|
|
1939
|
+
const appId = (_c = (_b10 = (_a10 = instance == null ? void 0 : instance.appContext) == null ? void 0 : _a10.app) == null ? void 0 : _b10.__VUE_DEVTOOLS_NEXT_APP_RECORD_ID__) != null ? _c : 0;
|
|
1940
1940
|
const instanceId = instance === instance.root ? "root" : instance.uid;
|
|
1941
1941
|
return `${appId}:${instanceId}`;
|
|
1942
1942
|
}
|
|
@@ -2119,8 +2119,8 @@ var ComponentWalker = class {
|
|
|
2119
2119
|
captureId(instance) {
|
|
2120
2120
|
if (!instance)
|
|
2121
2121
|
return null;
|
|
2122
|
-
const id = instance.
|
|
2123
|
-
instance.
|
|
2122
|
+
const id = instance.__VUE_DEVTOOLS_NEXT_UID__ != null ? instance.__VUE_DEVTOOLS_NEXT_UID__ : getUniqueComponentId(instance);
|
|
2123
|
+
instance.__VUE_DEVTOOLS_NEXT_UID__ = id;
|
|
2124
2124
|
if (this.captureIds.has(id))
|
|
2125
2125
|
return null;
|
|
2126
2126
|
else
|
|
@@ -2166,9 +2166,9 @@ var ComponentWalker = class {
|
|
|
2166
2166
|
}
|
|
2167
2167
|
if (this.isKeepAlive(instance)) {
|
|
2168
2168
|
const cachedComponents = this.getKeepAliveCachedInstances(instance);
|
|
2169
|
-
const childrenIds = children.map((child) => child.
|
|
2169
|
+
const childrenIds = children.map((child) => child.__VUE_DEVTOOLS_NEXT_UID__);
|
|
2170
2170
|
for (const cachedChild of cachedComponents) {
|
|
2171
|
-
if (!childrenIds.includes(cachedChild.
|
|
2171
|
+
if (!childrenIds.includes(cachedChild.__VUE_DEVTOOLS_NEXT_UID__)) {
|
|
2172
2172
|
const node = await this.capture({ ...cachedChild, isDeactivated: true }, depth + 1);
|
|
2173
2173
|
if (node)
|
|
2174
2174
|
treeNode.children.push(node);
|
|
@@ -2276,8 +2276,8 @@ var ComponentWalker = class {
|
|
|
2276
2276
|
*/
|
|
2277
2277
|
mark(instance, force = false) {
|
|
2278
2278
|
const instanceMap = getAppRecord(instance).instanceMap;
|
|
2279
|
-
if (force || !instanceMap.has(instance.
|
|
2280
|
-
instanceMap.set(instance.
|
|
2279
|
+
if (force || !instanceMap.has(instance.__VUE_DEVTOOLS_NEXT_UID__)) {
|
|
2280
|
+
instanceMap.set(instance.__VUE_DEVTOOLS_NEXT_UID__, instance);
|
|
2281
2281
|
devtoolsAppRecords.active.instanceMap = instanceMap;
|
|
2282
2282
|
}
|
|
2283
2283
|
}
|
|
@@ -2934,8 +2934,8 @@ function registerComponentDevToolsPlugin(app) {
|
|
|
2934
2934
|
});
|
|
2935
2935
|
const appRecord = await getAppRecord(app2);
|
|
2936
2936
|
if (component) {
|
|
2937
|
-
if (component.
|
|
2938
|
-
component.
|
|
2937
|
+
if (component.__VUE_DEVTOOLS_NEXT_UID__ == null)
|
|
2938
|
+
component.__VUE_DEVTOOLS_NEXT_UID__ = id;
|
|
2939
2939
|
if (!(appRecord == null ? void 0 : appRecord.instanceMap.has(id))) {
|
|
2940
2940
|
appRecord == null ? void 0 : appRecord.instanceMap.set(id, component);
|
|
2941
2941
|
devtoolsAppRecords.active.instanceMap = appRecord.instanceMap;
|
|
@@ -2960,8 +2960,8 @@ function registerComponentDevToolsPlugin(app) {
|
|
|
2960
2960
|
});
|
|
2961
2961
|
const appRecord = await getAppRecord(app2);
|
|
2962
2962
|
if (component) {
|
|
2963
|
-
if (component.
|
|
2964
|
-
component.
|
|
2963
|
+
if (component.__VUE_DEVTOOLS_NEXT_UID__ == null)
|
|
2964
|
+
component.__VUE_DEVTOOLS_NEXT_UID__ = id;
|
|
2965
2965
|
if (!(appRecord == null ? void 0 : appRecord.instanceMap.has(id))) {
|
|
2966
2966
|
appRecord == null ? void 0 : appRecord.instanceMap.set(id, component);
|
|
2967
2967
|
devtoolsAppRecords.active.instanceMap = appRecord.instanceMap;
|
|
@@ -3013,8 +3013,8 @@ function getAppRootInstance(app) {
|
|
|
3013
3013
|
return (_d = (_c = app._container) == null ? void 0 : _c._vnode) == null ? void 0 : _d.component;
|
|
3014
3014
|
}
|
|
3015
3015
|
function getAppRecordId(app, defaultId) {
|
|
3016
|
-
if (app.
|
|
3017
|
-
return app.
|
|
3016
|
+
if (app.__VUE_DEVTOOLS_NEXT_APP_RECORD_ID__ != null)
|
|
3017
|
+
return app.__VUE_DEVTOOLS_NEXT_APP_RECORD_ID__;
|
|
3018
3018
|
let id = defaultId != null ? defaultId : (appRecordInfo.id++).toString();
|
|
3019
3019
|
if (defaultId && appRecordInfo.appIds.has(id)) {
|
|
3020
3020
|
let count = 1;
|
|
@@ -3023,7 +3023,7 @@ function getAppRecordId(app, defaultId) {
|
|
|
3023
3023
|
id = `${defaultId}_${count}`;
|
|
3024
3024
|
}
|
|
3025
3025
|
appRecordInfo.appIds.add(id);
|
|
3026
|
-
app.
|
|
3026
|
+
app.__VUE_DEVTOOLS_NEXT_APP_RECORD_ID__ = id;
|
|
3027
3027
|
return id;
|
|
3028
3028
|
}
|
|
3029
3029
|
function createAppRecord(app) {
|
|
@@ -3038,10 +3038,10 @@ function createAppRecord(app) {
|
|
|
3038
3038
|
instanceMap: /* @__PURE__ */ new Map(),
|
|
3039
3039
|
rootInstance
|
|
3040
3040
|
};
|
|
3041
|
-
app.
|
|
3041
|
+
app.__VUE_DEVTOOLS_NEXT_APP_RECORD__ = record;
|
|
3042
3042
|
const rootId = `${record.id}:root`;
|
|
3043
3043
|
record.instanceMap.set(rootId, record.rootInstance);
|
|
3044
|
-
record.rootInstance.
|
|
3044
|
+
record.rootInstance.__VUE_DEVTOOLS_NEXT_UID__ = rootId;
|
|
3045
3045
|
return record;
|
|
3046
3046
|
} else {
|
|
3047
3047
|
return {};
|
|
@@ -3433,7 +3433,7 @@ function getInstanceDetails(instance) {
|
|
|
3433
3433
|
return {
|
|
3434
3434
|
_custom: {
|
|
3435
3435
|
type: "component",
|
|
3436
|
-
id: instance.
|
|
3436
|
+
id: instance.__VUE_DEVTOOLS_NEXT_UID__,
|
|
3437
3437
|
displayText: getInstanceName(instance),
|
|
3438
3438
|
tooltipText: "Component instance",
|
|
3439
3439
|
value: reduceStateList(state),
|
|
@@ -4100,7 +4100,7 @@ var DevToolsPluginApi = class {
|
|
|
4100
4100
|
}
|
|
4101
4101
|
}
|
|
4102
4102
|
async getComponentInstances(app) {
|
|
4103
|
-
const appRecord = app.
|
|
4103
|
+
const appRecord = app.__VUE_DEVTOOLS_NEXT_APP_RECORD__;
|
|
4104
4104
|
const appId = appRecord.id.toString();
|
|
4105
4105
|
const instances = [...appRecord.instanceMap].filter(([key]) => key.split(":")[0] === appId).map(([, instance]) => instance);
|
|
4106
4106
|
return instances;
|
|
@@ -4324,7 +4324,7 @@ var devtoolsAppRecords = new Proxy(devtoolsState.appRecords, {
|
|
|
4324
4324
|
}
|
|
4325
4325
|
});
|
|
4326
4326
|
var _a8, _b8;
|
|
4327
|
-
var appRecordInfo = (_b8 = (_a8 = target6).
|
|
4327
|
+
var appRecordInfo = (_b8 = (_a8 = target6).__VUE_DEVTOOLS_NEXT_APP_RECROD_INFO__) != null ? _b8 : _a8.__VUE_DEVTOOLS_NEXT_APP_RECROD_INFO__ = {
|
|
4328
4328
|
id: 0,
|
|
4329
4329
|
appIds: /* @__PURE__ */ new Set()
|
|
4330
4330
|
};
|
package/global.d.ts
CHANGED
|
@@ -5,7 +5,7 @@ declare global {
|
|
|
5
5
|
var __VUE_DEVTOOLS_GLOBAL_HOOK__: DevToolsHook
|
|
6
6
|
var __VUE_DEVTOOLS_GLOBAL_STATE__: DevToolsState
|
|
7
7
|
var __VUE_DEVTOOLS_CONTEXT__: DevToolsContext
|
|
8
|
-
var
|
|
8
|
+
var __VUE_DEVTOOLS_NEXT_APP_RECROD_INFO__: {
|
|
9
9
|
id: number
|
|
10
10
|
appIds: Set<string>
|
|
11
11
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vue/devtools-kit",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "7.0.
|
|
4
|
+
"version": "7.0.25",
|
|
5
5
|
"author": "webfansplz",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"exports": {
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
"mitt": "^3.0.1",
|
|
26
26
|
"perfect-debounce": "^1.0.0",
|
|
27
27
|
"speakingurl": "^14.0.1",
|
|
28
|
-
"@vue/devtools-shared": "^7.0.
|
|
28
|
+
"@vue/devtools-shared": "^7.0.25"
|
|
29
29
|
},
|
|
30
30
|
"devDependencies": {
|
|
31
31
|
"@types/speakingurl": "^13.0.6",
|