compelem 0.20.0-b1 → 0.20.0-b2

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/CompElem.d.ts CHANGED
@@ -22,6 +22,7 @@ export declare class CompElem<T = HTMLElement> extends HTMLElement implements IC
22
22
  _watchUpdateMap: Record<string, Set<Function>>;
23
23
  _watchDeepUpdateMap: Record<string, Set<Function>>;
24
24
  _watchKeys: string[];
25
+ _watchKeysOnceMap: Map<string, boolean>;
25
26
  _watchKeysDeep: string[];
26
27
  _watchUpdateSetInNextTick: Set<Function>;
27
28
  _watchUpdateArgsInNextTick: Map<Function, Record<string, any>>;
@@ -93,7 +94,7 @@ export declare class CompElem<T = HTMLElement> extends HTMLElement implements IC
93
94
  * @returns
94
95
  */
95
96
  _notify(ov: any, chain: string[], subNewValue?: any, subOldValue?: any): void;
96
- _requestWatchUpdate(newValue: any, oldValue: any, fullPath: string): void;
97
+ _requestWatchUpdate(newValue: any, oldValue: any, fullPath: string, rootObjNew?: any, rootObjOld?: any): void;
97
98
  _requestComputedUpdate(fullPath: string): void;
98
99
  _updateProps(props: Record<string, any>): void;
99
100
  _wrapperProp: Record<string, string>;