@vue/devtools-applet 7.6.0 → 7.6.2
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/composables/custom-inspector-state.d.ts +8 -0
- package/dist/index.cjs +1 -1
- package/dist/index.css +1 -1
- package/dist/index.js +1571 -1509
- package/dist/modules/pinia/constants.d.ts +2 -0
- package/dist/utils/search.d.ts +7 -0
- package/package.json +5 -5
package/dist/utils/search.d.ts
CHANGED
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
import { CustomInspectorState } from '@vue/devtools-kit';
|
|
2
|
+
|
|
1
3
|
/**
|
|
2
4
|
* Searches a key or value in the object, with a maximum deepness
|
|
3
5
|
* @param {*} obj Search target
|
|
@@ -6,3 +8,8 @@
|
|
|
6
8
|
*/
|
|
7
9
|
export declare function searchDeepInObject(obj: any, searchTerm: any): any;
|
|
8
10
|
export declare function specialTokenToString(value: any): false | "null" | "undefined" | "NaN" | "Infinity" | "-Infinity";
|
|
11
|
+
export declare function filterInspectorState<T extends CustomInspectorState>(params: {
|
|
12
|
+
state: Record<string, T[]>;
|
|
13
|
+
filterKey?: string | null | undefined;
|
|
14
|
+
processGroup?: (item: T[]) => T[];
|
|
15
|
+
}): {};
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vue/devtools-applet",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "7.6.
|
|
4
|
+
"version": "7.6.2",
|
|
5
5
|
"author": "webfansplz",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"repository": {
|
|
@@ -30,10 +30,10 @@
|
|
|
30
30
|
"shiki": "^1.22.0",
|
|
31
31
|
"splitpanes": "^3.1.5",
|
|
32
32
|
"vue-virtual-scroller": "2.0.0-beta.8",
|
|
33
|
-
"@vue/devtools-core": "^7.6.
|
|
34
|
-
"@vue/devtools-kit": "^7.6.
|
|
35
|
-
"@vue/devtools-
|
|
36
|
-
"@vue/devtools-
|
|
33
|
+
"@vue/devtools-core": "^7.6.2",
|
|
34
|
+
"@vue/devtools-kit": "^7.6.2",
|
|
35
|
+
"@vue/devtools-ui": "^7.6.2",
|
|
36
|
+
"@vue/devtools-shared": "^7.6.2"
|
|
37
37
|
},
|
|
38
38
|
"devDependencies": {
|
|
39
39
|
"@types/lodash-es": "^4.17.12",
|