@builder.io/sdk 2.0.7 → 2.0.8
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/CHANGELOG.md +4 -0
- package/dist/index.browser.js +3 -8
- package/dist/index.browser.js.map +1 -1
- package/dist/index.cjs.js +3 -8
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.esm.js +3 -8
- package/dist/index.esm.js.map +1 -1
- package/dist/index.umd.js +3 -8
- package/dist/index.umd.js.map +1 -1
- package/dist/package.json +1 -1
- package/dist/src/builder.class.d.ts +0 -1
- package/dist/src/builder.class.js.map +1 -1
- package/dist/src/functions/next-tick.function.d.ts +1 -2
- package/dist/src/functions/next-tick.function.js +1 -7
- package/dist/src/functions/next-tick.function.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +1 -1
package/dist/index.esm.js
CHANGED
|
@@ -16,21 +16,16 @@ import hash from 'hash-sum';
|
|
|
16
16
|
|
|
17
17
|
var isSafari = typeof window !== 'undefined' &&
|
|
18
18
|
/^((?!chrome|android).)*safari/i.test(window.navigator.userAgent);
|
|
19
|
+
var isClient = typeof window !== 'undefined';
|
|
19
20
|
// TODO: queue all of these in a debounceNextTick
|
|
20
21
|
function nextTick(fn) {
|
|
21
|
-
// React native
|
|
22
|
-
if (typeof setImmediate === 'function' && typeof window === 'undefined') {
|
|
23
|
-
return setImmediate(fn);
|
|
24
|
-
}
|
|
25
|
-
// TODO: should this be setImmediate instead? Forgot if that is micro or macro task
|
|
26
|
-
// TODO: detect specifically if is server
|
|
27
22
|
// if (typeof process !== 'undefined' && process.nextTick) {
|
|
28
23
|
// console.log('process.nextTick?');
|
|
29
24
|
// process.nextTick(fn);
|
|
30
25
|
// return;
|
|
31
26
|
// }
|
|
32
27
|
// FIXME: fix the real safari issue of this randomly not working
|
|
33
|
-
if (isSafari || typeof MutationObserver === 'undefined') {
|
|
28
|
+
if (!isClient || isSafari || typeof MutationObserver === 'undefined') {
|
|
34
29
|
setTimeout(fn);
|
|
35
30
|
return;
|
|
36
31
|
}
|
|
@@ -123,7 +118,7 @@ function assertAllowedPropertyName(name) {
|
|
|
123
118
|
throw new Error("Property name \"".concat(name, "\" is not allowed"));
|
|
124
119
|
}
|
|
125
120
|
|
|
126
|
-
var version = "2.0.
|
|
121
|
+
var version = "2.0.7";
|
|
127
122
|
|
|
128
123
|
var Subscription = /** @class */ (function () {
|
|
129
124
|
function Subscription(listeners, listener) {
|