@ikonai/sdk-ui 0.0.29 → 0.0.32
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/assets/{ui-worker-CYp5-hXb.js → ui-worker-DDoIUH1E.js} +689 -646
- package/index.js +635 -592
- package/package.json +1 -1
- package/ui-store.d.ts +6 -0
package/package.json
CHANGED
package/ui-store.d.ts
CHANGED
|
@@ -19,7 +19,13 @@ export declare class UiStreamStore {
|
|
|
19
19
|
private readonly changedNodeIds;
|
|
20
20
|
private readonly nodeVersions;
|
|
21
21
|
private structureChanged;
|
|
22
|
+
private viewsDirty;
|
|
23
|
+
private patchesDirty;
|
|
24
|
+
private payloadsDirty;
|
|
22
25
|
readonly handlerCache: HandlerCache;
|
|
26
|
+
private getSortedPatches;
|
|
27
|
+
private buildPatchCacheKey;
|
|
28
|
+
private invalidatePatchCache;
|
|
23
29
|
apply(update: ParsedUiUpdate): boolean;
|
|
24
30
|
replaceFromWire(wire: UiStreamSnapshotWire): boolean;
|
|
25
31
|
patchFromOp(op: Extract<UiStoreOp, {
|