@plasmicapp/react-web 0.2.294 → 0.2.296
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/all.d.ts +4 -2
- package/dist/index.cjs.js +126 -1
- package/dist/index.cjs.js.map +1 -1
- package/dist/react-web.esm.js +126 -1
- package/dist/react-web.esm.js.map +1 -1
- package/dist/states/helpers.d.ts +6 -0
- package/package.json +9 -9
- package/skinny/dist/index.js +126 -1
- package/skinny/dist/index.js.map +1 -1
- package/skinny/dist/states/helpers.d.ts +6 -0
|
@@ -41,4 +41,10 @@ export declare function assert<T>(cond: T, msg?: StringGen): asserts cond;
|
|
|
41
41
|
* Changes: fixed setting a deep value to a proxy object
|
|
42
42
|
*/
|
|
43
43
|
export declare function set(obj: any, keys: any, val: any): void;
|
|
44
|
+
/**
|
|
45
|
+
* Forked from https://github.com/jamesfoster/DeepEqual
|
|
46
|
+
* Changes: removed the comparison between constructors and instanceof objects
|
|
47
|
+
* because they are dependent on the window object
|
|
48
|
+
*/
|
|
49
|
+
export declare function deepEqual(a: any, b: any): boolean;
|
|
44
50
|
export {};
|