@usebridge/sdk-react 0.7.0-beta.2 → 0.7.1-beta.1
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 +20 -5
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +9 -2
- package/dist/index.d.ts +9 -2
- package/dist/index.js +20 -5
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
package/dist/index.cjs
CHANGED
|
@@ -45,8 +45,8 @@ var require_lodash = __commonJS({
|
|
|
45
45
|
var freeGlobal2 = typeof global == "object" && global && global.Object === Object && global;
|
|
46
46
|
var freeSelf2 = typeof self == "object" && self && self.Object === Object && self;
|
|
47
47
|
var root2 = freeGlobal2 || freeSelf2 || Function("return this")();
|
|
48
|
-
var
|
|
49
|
-
var objectToString2 =
|
|
48
|
+
var objectProto16 = Object.prototype;
|
|
49
|
+
var objectToString2 = objectProto16.toString;
|
|
50
50
|
var nativeMax2 = Math.max;
|
|
51
51
|
var nativeMin = Math.min;
|
|
52
52
|
var now = function() {
|
|
@@ -2071,10 +2071,25 @@ function parent(object, path) {
|
|
|
2071
2071
|
var parent_default = parent;
|
|
2072
2072
|
|
|
2073
2073
|
// ../../node_modules/lodash-es/_baseUnset.js
|
|
2074
|
+
var objectProto15 = Object.prototype;
|
|
2075
|
+
var hasOwnProperty12 = objectProto15.hasOwnProperty;
|
|
2074
2076
|
function baseUnset(object, path) {
|
|
2075
2077
|
path = castPath_default(path, object);
|
|
2076
|
-
|
|
2077
|
-
|
|
2078
|
+
var index = -1, length = path.length;
|
|
2079
|
+
if (!length) {
|
|
2080
|
+
return true;
|
|
2081
|
+
}
|
|
2082
|
+
while (++index < length) {
|
|
2083
|
+
var key = toKey_default(path[index]);
|
|
2084
|
+
if (key === "__proto__" && !hasOwnProperty12.call(object, "__proto__")) {
|
|
2085
|
+
return false;
|
|
2086
|
+
}
|
|
2087
|
+
if ((key === "constructor" || key === "prototype") && index < length - 1) {
|
|
2088
|
+
return false;
|
|
2089
|
+
}
|
|
2090
|
+
}
|
|
2091
|
+
var obj = parent_default(object, path);
|
|
2092
|
+
return obj == null || delete obj[toKey_default(last_default(path))];
|
|
2078
2093
|
}
|
|
2079
2094
|
var baseUnset_default = baseUnset;
|
|
2080
2095
|
|
|
@@ -2564,7 +2579,7 @@ lodash-es/lodash.js:
|
|
|
2564
2579
|
(**
|
|
2565
2580
|
* @license
|
|
2566
2581
|
* Lodash (Custom Build) <https://lodash.com/>
|
|
2567
|
-
* Build: `lodash modularize exports="es" -o ./`
|
|
2582
|
+
* Build: `lodash modularize exports="es" --repo lodash/lodash#4.18.1 -o ./`
|
|
2568
2583
|
* Copyright OpenJS Foundation and other contributors <https://openjsf.org/>
|
|
2569
2584
|
* Released under MIT license <https://lodash.com/license>
|
|
2570
2585
|
* Based on Underscore.js 1.8.3 <http://underscorejs.org/LICENSE>
|