mobx-view-model-devtools 0.0.18 → 0.0.19

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/index.d.ts CHANGED
@@ -85,7 +85,7 @@ declare class ViewModelDevtools {
85
85
  scrollContentRef: Ref<HTMLDivElement>;
86
86
  keyboardHandler: KeyboardHandler;
87
87
  searchEngine: SearchEngine;
88
- isHierarchyMode: boolean;
88
+ presentationMode: 'tree' | 'list';
89
89
  private expandedVmsSet;
90
90
  scrollListRef: Ref<VListHandle>;
91
91
  private autoscrollTimeout;
@@ -100,10 +100,11 @@ 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
- toggleHierarchyMode: () => void;
107
+ handleChangePresentationMode: (mode: string) => void;
107
108
  private init;
108
109
  render(): void;
109
110
  private static _instance;