mobx-view-model-devtools 0.0.18 → 0.0.20
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/auto.global.js +1044 -1018
- package/index.cjs +2 -2
- package/index.d.ts +9 -4
- package/index.js +1044 -1018
- package/package.json +2 -1
package/index.d.ts
CHANGED
|
@@ -78,19 +78,19 @@ declare class ViewModelDevtools {
|
|
|
78
78
|
vmStore: ViewModelStoreBase;
|
|
79
79
|
projectVmStore?: Maybe<ViewModelStoreBase<AnyViewModel>>;
|
|
80
80
|
extras: Maybe<AnyObject>;
|
|
81
|
-
isAllVmsExpandedByDefault: boolean;
|
|
82
81
|
expandedVmItemsPaths: ObservableSet<string>;
|
|
83
82
|
logoUrl: string;
|
|
84
83
|
inputRef: FocusableRef<HTMLInputElement>;
|
|
85
84
|
scrollContentRef: Ref<HTMLDivElement>;
|
|
86
85
|
keyboardHandler: KeyboardHandler;
|
|
87
86
|
searchEngine: SearchEngine;
|
|
88
|
-
|
|
89
|
-
private
|
|
87
|
+
presentationMode: 'tree' | 'list';
|
|
88
|
+
private expandedVmsMap;
|
|
90
89
|
scrollListRef: Ref<VListHandle>;
|
|
91
90
|
private autoscrollTimeout;
|
|
92
91
|
get allVms(): AnyVM[];
|
|
93
92
|
get rootVms(): AnyVM[];
|
|
93
|
+
private get vmsData();
|
|
94
94
|
get vmTree(): VmTreeItem[];
|
|
95
95
|
get isActive(): boolean;
|
|
96
96
|
private get containerId();
|
|
@@ -100,10 +100,15 @@ declare class ViewModelDevtools {
|
|
|
100
100
|
handleExpandVmPropertyClick(vmItem: VmTreeItem, path: string): void;
|
|
101
101
|
handleExpandExtraPropertyClick(path: string): void;
|
|
102
102
|
handleVmItemHeaderClick(vmItem: VmTreeItem): void;
|
|
103
|
+
isExpandable(vmItem: VmTreeItem): boolean | undefined;
|
|
103
104
|
private getVmParams;
|
|
104
105
|
setStore(viewModels: ViewModelStoreBase<AnyViewModel> | undefined): void;
|
|
105
106
|
setExtras(extras: Maybe<AnyObject>): void;
|
|
106
|
-
|
|
107
|
+
handleChangePresentationMode: (mode: string) => void;
|
|
108
|
+
expandAllVMs(): void;
|
|
109
|
+
collapseAllVms(): void;
|
|
110
|
+
showPopup(): void;
|
|
111
|
+
hidePopup(): void;
|
|
107
112
|
private init;
|
|
108
113
|
render(): void;
|
|
109
114
|
private static _instance;
|