@vue/devtools-applet 7.6.1 → 7.6.3

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.
@@ -16,7 +16,10 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
16
16
  required: true;
17
17
  default: boolean;
18
18
  };
19
- }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
19
+ }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
20
+ leave: (...args: any[]) => void;
21
+ hover: (...args: any[]) => void;
22
+ }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
20
23
  modelValue: import('vue').PropType<any>;
21
24
  data: {
22
25
  type: import('vue').PropType<ComponentTreeNode[] | InspectorTree[]>;
@@ -32,7 +35,10 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
32
35
  required: true;
33
36
  default: boolean;
34
37
  };
35
- }>> & Readonly<{}>, {
38
+ }>> & Readonly<{
39
+ onLeave?: ((...args: any[]) => any) | undefined;
40
+ onHover?: ((...args: any[]) => any) | undefined;
41
+ }>, {
36
42
  depth: number;
37
43
  withTag: boolean;
38
44
  }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
@@ -0,0 +1,4 @@
1
+ export declare function useComponentHighlight(): {
2
+ highlight: import('@vueuse/core').PromisifyFn<(id: string) => Promise<any>>;
3
+ unhighlight: import('@vueuse/core').PromisifyFn<() => Promise<any>>;
4
+ };
@@ -7,6 +7,8 @@ export declare function useCustomInspectorState(): Ref<Partial<{
7
7
  label: string;
8
8
  logo: string;
9
9
  timelineLayerIds: string[];
10
+ treeFilterPlaceholder: string;
11
+ stateFilterPlaceholder: string;
10
12
  }>, Partial<{
11
13
  homepage: string;
12
14
  id: string;
@@ -14,6 +16,8 @@ export declare function useCustomInspectorState(): Ref<Partial<{
14
16
  label: string;
15
17
  logo: string;
16
18
  timelineLayerIds: string[];
19
+ treeFilterPlaceholder: string;
20
+ stateFilterPlaceholder: string;
17
21
  }>>;
18
22
  export declare function createCustomInspectorStateContext(): Ref<Partial<{
19
23
  homepage: string;
@@ -22,6 +26,8 @@ export declare function createCustomInspectorStateContext(): Ref<Partial<{
22
26
  label: string;
23
27
  logo: string;
24
28
  timelineLayerIds: string[];
29
+ treeFilterPlaceholder: string;
30
+ stateFilterPlaceholder: string;
25
31
  }>, Partial<{
26
32
  homepage: string;
27
33
  id: string;
@@ -29,4 +35,6 @@ export declare function createCustomInspectorStateContext(): Ref<Partial<{
29
35
  label: string;
30
36
  logo: string;
31
37
  timelineLayerIds: string[];
38
+ treeFilterPlaceholder: string;
39
+ stateFilterPlaceholder: string;
32
40
  }>>;