@plasmicapp/react-web 0.2.299 → 0.2.301
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.cjs.js +5 -5
- package/dist/index.cjs.js.map +1 -1
- package/dist/react-web.esm.js +5 -5
- package/dist/react-web.esm.js.map +1 -1
- package/dist/states/helpers.d.ts +1 -1
- package/package.json +9 -9
- package/skinny/dist/index.js +5 -5
- package/skinny/dist/index.js.map +1 -1
- package/skinny/dist/states/helpers.d.ts +1 -1
package/dist/states/helpers.d.ts
CHANGED
|
@@ -42,7 +42,7 @@ export declare function assert<T>(cond: T, msg?: StringGen): asserts cond;
|
|
|
42
42
|
*/
|
|
43
43
|
export declare function set(obj: any, keys: any, val: any): void;
|
|
44
44
|
/**
|
|
45
|
-
* Forked from https://github.com/
|
|
45
|
+
* Forked from https://github.com/epoberezkin/fast-deep-equal/blob/master/src/index.jst
|
|
46
46
|
* Changes: removed the comparison between constructors and instanceof objects
|
|
47
47
|
* because they are dependent on the window object
|
|
48
48
|
*/
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@plasmicapp/react-web",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.301",
|
|
4
4
|
"description": "plasmic library for rendering in the presentational style",
|
|
5
5
|
"main": "dist/index.cjs.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -86,13 +86,13 @@
|
|
|
86
86
|
"test-storybook": "test-storybook"
|
|
87
87
|
},
|
|
88
88
|
"dependencies": {
|
|
89
|
-
"@plasmicapp/auth-react": "0.0.
|
|
90
|
-
"@plasmicapp/data-sources": "0.1.
|
|
91
|
-
"@plasmicapp/data-sources-context": "0.1.
|
|
92
|
-
"@plasmicapp/host": "1.0.
|
|
93
|
-
"@plasmicapp/loader-splits": "1.0.
|
|
94
|
-
"@plasmicapp/prepass": "1.0.
|
|
95
|
-
"@plasmicapp/query": "0.1.
|
|
89
|
+
"@plasmicapp/auth-react": "0.0.19",
|
|
90
|
+
"@plasmicapp/data-sources": "0.1.139",
|
|
91
|
+
"@plasmicapp/data-sources-context": "0.1.20",
|
|
92
|
+
"@plasmicapp/host": "1.0.181",
|
|
93
|
+
"@plasmicapp/loader-splits": "1.0.49",
|
|
94
|
+
"@plasmicapp/prepass": "1.0.13",
|
|
95
|
+
"@plasmicapp/query": "0.1.77",
|
|
96
96
|
"@react-aria/checkbox": "^3.11.2",
|
|
97
97
|
"@react-aria/focus": "^3.14.3",
|
|
98
98
|
"@react-aria/interactions": "^3.19.1",
|
|
@@ -157,5 +157,5 @@
|
|
|
157
157
|
"react": ">=16.8.0",
|
|
158
158
|
"react-dom": ">=16.8.0"
|
|
159
159
|
},
|
|
160
|
-
"gitHead": "
|
|
160
|
+
"gitHead": "9216f61b95565cb9ff8639fa7f2d2640a320e731"
|
|
161
161
|
}
|
package/skinny/dist/index.js
CHANGED
|
@@ -1633,7 +1633,7 @@ var isRegExp = function (a) {
|
|
|
1633
1633
|
return Object.prototype.toString.call(a) === "[object RegExp]";
|
|
1634
1634
|
};
|
|
1635
1635
|
/**
|
|
1636
|
-
* Forked from https://github.com/
|
|
1636
|
+
* Forked from https://github.com/epoberezkin/fast-deep-equal/blob/master/src/index.jst
|
|
1637
1637
|
* Changes: removed the comparison between constructors and instanceof objects
|
|
1638
1638
|
* because they are dependent on the window object
|
|
1639
1639
|
*/
|
|
@@ -1710,10 +1710,10 @@ function deepEqual(a, b) {
|
|
|
1710
1710
|
// if (a.constructor === RegExp) return a.source === b.source && a.flags === b.flags;
|
|
1711
1711
|
if (isRegExp(a) && isRegExp(b))
|
|
1712
1712
|
return a.source === b.source && a.flags === b.flags;
|
|
1713
|
-
if (a.valueOf !== Object.prototype.valueOf)
|
|
1714
|
-
|
|
1715
|
-
if (a.toString !== Object.prototype.toString)
|
|
1716
|
-
|
|
1713
|
+
// if (a.valueOf !== Object.prototype.valueOf)
|
|
1714
|
+
// return a.valueOf() === b.valueOf();
|
|
1715
|
+
// if (a.toString !== Object.prototype.toString)
|
|
1716
|
+
// return a.toString() === b.toString();
|
|
1717
1717
|
keys = Object.keys(a);
|
|
1718
1718
|
length = keys.length;
|
|
1719
1719
|
if (length !== Object.keys(b).length)
|