@builder.io/sdk 1.1.29-0 → 1.1.29-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.browser.js +1 -1
- package/dist/index.browser.js.map +1 -1
- package/dist/index.cjs.js +4 -2
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.esm.js +4 -2
- package/dist/index.esm.js.map +1 -1
- package/dist/index.umd.js +4 -2
- package/dist/index.umd.js.map +1 -1
- package/dist/package.json +1 -1
- package/dist/src/classes/animator.class.js +3 -1
- package/dist/src/classes/animator.class.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +1 -1
package/dist/index.umd.js
CHANGED
|
@@ -152,7 +152,7 @@
|
|
|
152
152
|
throw new Error("Property name \"".concat(name, "\" is not allowed"));
|
|
153
153
|
}
|
|
154
154
|
|
|
155
|
-
var version = "1.1.
|
|
155
|
+
var version = "1.1.29-0";
|
|
156
156
|
|
|
157
157
|
var Subscription = /** @class */ (function () {
|
|
158
158
|
function Subscription(listeners, listener) {
|
|
@@ -696,7 +696,9 @@
|
|
|
696
696
|
pendingAnimation = true;
|
|
697
697
|
setTimeout(function () {
|
|
698
698
|
assign(element.style, animation.steps[1].styles);
|
|
699
|
-
|
|
699
|
+
if (!animation.repeat) {
|
|
700
|
+
document.removeEventListener('scroll', onScroll);
|
|
701
|
+
}
|
|
700
702
|
setTimeout(function () {
|
|
701
703
|
pendingAnimation = false;
|
|
702
704
|
element.style.transition = '';
|