@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.cjs.js CHANGED
@@ -129,7 +129,7 @@ function assertAllowedPropertyName(name) {
129
129
  throw new Error("Property name \"".concat(name, "\" is not allowed"));
130
130
  }
131
131
 
132
- var version = "1.1.28";
132
+ var version = "1.1.29-0";
133
133
 
134
134
  var Subscription = /** @class */ (function () {
135
135
  function Subscription(listeners, listener) {
@@ -673,7 +673,9 @@ var Animator = /** @class */ (function () {
673
673
  pendingAnimation = true;
674
674
  setTimeout(function () {
675
675
  assign(element.style, animation.steps[1].styles);
676
- document.removeEventListener('scroll', onScroll);
676
+ if (!animation.repeat) {
677
+ document.removeEventListener('scroll', onScroll);
678
+ }
677
679
  setTimeout(function () {
678
680
  pendingAnimation = false;
679
681
  element.style.transition = '';