@gridsheet/preact-core 3.0.0-rc.6 → 3.0.0-rc.7
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/dist/index.js +29 -6
- package/dist/index.js.map +1 -1
- package/dist/lib/book.d.ts +6 -0
- package/package.json +1 -1
package/dist/lib/book.d.ts
CHANGED
|
@@ -72,6 +72,12 @@ export declare class Registry {
|
|
|
72
72
|
historyLimit: number;
|
|
73
73
|
lastHistory?: HistoryType;
|
|
74
74
|
currentHistory?: HistoryType;
|
|
75
|
+
/** StrictMode guard: Map from action object (identity) to cached reducer result.
|
|
76
|
+
* Using a Map instead of a single slot allows multiple batched dispatches to coexist. */
|
|
77
|
+
_strictModeCache?: Map<unknown, unknown>;
|
|
78
|
+
/** StrictMode guard: Map from useId component key to assigned sheetId.
|
|
79
|
+
* Prevents double-increment of sheetHead when useState initializer runs twice in Strict Mode. */
|
|
80
|
+
_componentSheetIds: Map<string, number>;
|
|
75
81
|
ready: boolean;
|
|
76
82
|
functions: FunctionMapping;
|
|
77
83
|
policies: {
|