@vue/devtools-kit 7.5.5 → 7.5.6
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 +2 -1
- package/dist/index.js +2 -1
- package/package.json +2 -2
package/dist/index.cjs
CHANGED
|
@@ -2583,7 +2583,8 @@ function createDevToolsCtxHooks() {
|
|
|
2583
2583
|
});
|
|
2584
2584
|
hooks2.hook("timelineEventAdded" /* TIMELINE_EVENT_ADDED */, ({ options, plugin }) => {
|
|
2585
2585
|
var _a25;
|
|
2586
|
-
|
|
2586
|
+
const internalLayerIds = ["performance", "component-event", "keyboard", "mouse"];
|
|
2587
|
+
if (devtoolsState.highPerfModeEnabled || !((_a25 = devtoolsState.timelineLayersState) == null ? void 0 : _a25[plugin.descriptor.id]) && !internalLayerIds.includes(options.layerId))
|
|
2587
2588
|
return;
|
|
2588
2589
|
hooks2.callHookWith(async (callbacks) => {
|
|
2589
2590
|
await Promise.all(callbacks.map((cb) => cb(options)));
|
package/dist/index.js
CHANGED
|
@@ -2492,7 +2492,8 @@ function createDevToolsCtxHooks() {
|
|
|
2492
2492
|
});
|
|
2493
2493
|
hooks2.hook("timelineEventAdded" /* TIMELINE_EVENT_ADDED */, ({ options, plugin }) => {
|
|
2494
2494
|
var _a25;
|
|
2495
|
-
|
|
2495
|
+
const internalLayerIds = ["performance", "component-event", "keyboard", "mouse"];
|
|
2496
|
+
if (devtoolsState.highPerfModeEnabled || !((_a25 = devtoolsState.timelineLayersState) == null ? void 0 : _a25[plugin.descriptor.id]) && !internalLayerIds.includes(options.layerId))
|
|
2496
2497
|
return;
|
|
2497
2498
|
hooks2.callHookWith(async (callbacks) => {
|
|
2498
2499
|
await Promise.all(callbacks.map((cb) => cb(options)));
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vue/devtools-kit",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "7.5.
|
|
4
|
+
"version": "7.5.6",
|
|
5
5
|
"author": "webfansplz",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"repository": {
|
|
@@ -29,7 +29,7 @@
|
|
|
29
29
|
"perfect-debounce": "^1.0.0",
|
|
30
30
|
"speakingurl": "^14.0.1",
|
|
31
31
|
"superjson": "^2.2.1",
|
|
32
|
-
"@vue/devtools-shared": "^7.5.
|
|
32
|
+
"@vue/devtools-shared": "^7.5.6"
|
|
33
33
|
},
|
|
34
34
|
"devDependencies": {
|
|
35
35
|
"@types/speakingurl": "^13.0.6",
|