mobx-view-model-devtools 0.0.36 → 0.0.37

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
@@ -4,7 +4,7 @@ import * as mobx from 'mobx';
4
4
  import { ObservableSet } from 'mobx';
5
5
  import { VirtualizerHandle } from 'virtua';
6
6
  import { Ref } from 'yummies/mobx';
7
- import { Maybe, AnyObject, Defined } from 'yummies/types';
7
+ import { AnyObject, Maybe, Defined } from 'yummies/types';
8
8
  import { KeyboardHandler as KeyboardHandler$1, KeyboardHandlerAction } from 'mobx-swiss-knife';
9
9
  import { ComponentType, ChangeEventHandler } from 'react';
10
10
 
@@ -25,6 +25,8 @@ declare abstract class ListItem<T> {
25
25
  key: string;
26
26
  private _data;
27
27
  private getChildren?;
28
+ position: number;
29
+ metaData: AnyObject;
28
30
  cache: Map<string, any>;
29
31
  protected tempVarName: string;
30
32
  protected dataWatchAtom: mobx.IAtom;
@@ -134,7 +136,6 @@ declare class ViewModelDevtools {
134
136
  checkIsExtraPathExpanded(path: string): boolean;
135
137
  handleExpandVmPropertyClick(vmItem: VMListItem, path: string): void;
136
138
  handlePropertyClick(item: PropertyListItem, e: React.MouseEvent<HTMLElement>): void;
137
- handleExpandExtraPropertyClick(path: string): void;
138
139
  handleVmItemHeaderClick(vmItem: VMListItem): void;
139
140
  isExpandable(vmItem: VMListItem): boolean | undefined;
140
141
  private getVmParams;