vue-hook-optimizer 0.0.65 → 0.0.66
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.mts +20 -12
- package/dist/index.d.ts +20 -12
- package/dist/index.js +246 -212
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +242 -211
- package/dist/index.mjs.map +1 -1
- package/package.json +5 -8
package/dist/index.d.mts
CHANGED
@@ -1,8 +1,6 @@
|
|
1
1
|
import { SFCStyleBlock } from '@vue/compiler-sfc';
|
2
2
|
export { parse } from '@vue/compiler-sfc';
|
3
|
-
import {
|
4
|
-
|
5
|
-
declare function analyze$4(content: string): Set<string>;
|
3
|
+
import { Node, Edge } from 'vis-network';
|
6
4
|
|
7
5
|
interface TypedNode {
|
8
6
|
label: string;
|
@@ -19,12 +17,7 @@ declare enum NodeType {
|
|
19
17
|
fun = "fun"
|
20
18
|
}
|
21
19
|
|
22
|
-
declare function analyze$
|
23
|
-
nodes: Set<TypedNode>;
|
24
|
-
edges: Map<TypedNode, Set<TypedNode>>;
|
25
|
-
};
|
26
|
-
|
27
|
-
declare function analyze$2(content: string, lineOffset?: number, jsx?: boolean): {
|
20
|
+
declare function analyze$4(content: string, lineOffset?: number, jsx?: boolean): {
|
28
21
|
graph: {
|
29
22
|
nodes: Set<TypedNode>;
|
30
23
|
edges: Map<TypedNode, Set<TypedNode>>;
|
@@ -32,7 +25,16 @@ declare function analyze$2(content: string, lineOffset?: number, jsx?: boolean):
|
|
32
25
|
nodesUsedInTemplate: Set<string>;
|
33
26
|
};
|
34
27
|
|
35
|
-
declare function analyze$
|
28
|
+
declare function analyze$3(content: string, lineOffset?: number, jsx?: boolean): {
|
29
|
+
nodes: Set<TypedNode>;
|
30
|
+
edges: Map<TypedNode, Set<TypedNode>>;
|
31
|
+
};
|
32
|
+
|
33
|
+
declare function analyze$2(styles: SFCStyleBlock[]): Set<string>;
|
34
|
+
|
35
|
+
declare function analyze$1(content: string): Set<string>;
|
36
|
+
|
37
|
+
declare function analyze(content: string, type?: "vue" | "react", lineOffset?: number, addInfo?: boolean): {
|
36
38
|
graph: {
|
37
39
|
nodes: Set<TypedNode>;
|
38
40
|
edges: Map<TypedNode, Set<TypedNode>>;
|
@@ -40,7 +42,13 @@ declare function analyze$1(content: string, type?: "vue" | "react", lineOffset?:
|
|
40
42
|
nodesUsedInTemplate: Set<string>;
|
41
43
|
};
|
42
44
|
|
43
|
-
|
45
|
+
interface MermaidOptions {
|
46
|
+
direction?: 'TB' | 'BT' | 'LR' | 'RL';
|
47
|
+
}
|
48
|
+
declare function getMermaidText(graph: {
|
49
|
+
nodes: Set<TypedNode>;
|
50
|
+
edges: Map<TypedNode, Set<TypedNode>>;
|
51
|
+
}, nodesUsedInTemplate: Set<string>, nodesUsedInStyle?: Set<string>, options?: MermaidOptions): string;
|
44
52
|
|
45
53
|
declare enum SuggestionType {
|
46
54
|
info = "info",
|
@@ -68,4 +76,4 @@ declare function getVisData(graph: {
|
|
68
76
|
edges: Edge[];
|
69
77
|
};
|
70
78
|
|
71
|
-
export { NodeType, type Suggestion, SuggestionType, type TypedNode, analyze$
|
79
|
+
export { NodeType, type Suggestion, SuggestionType, type TypedNode, analyze$4 as analyzeOptions, analyze$3 as analyzeSetupScript, analyze$2 as analyzeStyle, analyze$1 as analyzeTemplate, analyze as analyzeTsx, gen, getMermaidText, getVisData };
|
package/dist/index.d.ts
CHANGED
@@ -1,8 +1,6 @@
|
|
1
1
|
import { SFCStyleBlock } from '@vue/compiler-sfc';
|
2
2
|
export { parse } from '@vue/compiler-sfc';
|
3
|
-
import {
|
4
|
-
|
5
|
-
declare function analyze$4(content: string): Set<string>;
|
3
|
+
import { Node, Edge } from 'vis-network';
|
6
4
|
|
7
5
|
interface TypedNode {
|
8
6
|
label: string;
|
@@ -19,12 +17,7 @@ declare enum NodeType {
|
|
19
17
|
fun = "fun"
|
20
18
|
}
|
21
19
|
|
22
|
-
declare function analyze$
|
23
|
-
nodes: Set<TypedNode>;
|
24
|
-
edges: Map<TypedNode, Set<TypedNode>>;
|
25
|
-
};
|
26
|
-
|
27
|
-
declare function analyze$2(content: string, lineOffset?: number, jsx?: boolean): {
|
20
|
+
declare function analyze$4(content: string, lineOffset?: number, jsx?: boolean): {
|
28
21
|
graph: {
|
29
22
|
nodes: Set<TypedNode>;
|
30
23
|
edges: Map<TypedNode, Set<TypedNode>>;
|
@@ -32,7 +25,16 @@ declare function analyze$2(content: string, lineOffset?: number, jsx?: boolean):
|
|
32
25
|
nodesUsedInTemplate: Set<string>;
|
33
26
|
};
|
34
27
|
|
35
|
-
declare function analyze$
|
28
|
+
declare function analyze$3(content: string, lineOffset?: number, jsx?: boolean): {
|
29
|
+
nodes: Set<TypedNode>;
|
30
|
+
edges: Map<TypedNode, Set<TypedNode>>;
|
31
|
+
};
|
32
|
+
|
33
|
+
declare function analyze$2(styles: SFCStyleBlock[]): Set<string>;
|
34
|
+
|
35
|
+
declare function analyze$1(content: string): Set<string>;
|
36
|
+
|
37
|
+
declare function analyze(content: string, type?: "vue" | "react", lineOffset?: number, addInfo?: boolean): {
|
36
38
|
graph: {
|
37
39
|
nodes: Set<TypedNode>;
|
38
40
|
edges: Map<TypedNode, Set<TypedNode>>;
|
@@ -40,7 +42,13 @@ declare function analyze$1(content: string, type?: "vue" | "react", lineOffset?:
|
|
40
42
|
nodesUsedInTemplate: Set<string>;
|
41
43
|
};
|
42
44
|
|
43
|
-
|
45
|
+
interface MermaidOptions {
|
46
|
+
direction?: 'TB' | 'BT' | 'LR' | 'RL';
|
47
|
+
}
|
48
|
+
declare function getMermaidText(graph: {
|
49
|
+
nodes: Set<TypedNode>;
|
50
|
+
edges: Map<TypedNode, Set<TypedNode>>;
|
51
|
+
}, nodesUsedInTemplate: Set<string>, nodesUsedInStyle?: Set<string>, options?: MermaidOptions): string;
|
44
52
|
|
45
53
|
declare enum SuggestionType {
|
46
54
|
info = "info",
|
@@ -68,4 +76,4 @@ declare function getVisData(graph: {
|
|
68
76
|
edges: Edge[];
|
69
77
|
};
|
70
78
|
|
71
|
-
export { NodeType, type Suggestion, SuggestionType, type TypedNode, analyze$
|
79
|
+
export { NodeType, type Suggestion, SuggestionType, type TypedNode, analyze$4 as analyzeOptions, analyze$3 as analyzeSetupScript, analyze$2 as analyzeStyle, analyze$1 as analyzeTemplate, analyze as analyzeTsx, gen, getMermaidText, getVisData };
|