@sumaris-net/ngx-components 1.20.31 → 1.20.32

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.
@@ -5776,10 +5776,10 @@
5776
5776
  return this._tabindex;
5777
5777
  },
5778
5778
  set: function (value) {
5779
- var _this = this;
5780
5779
  if (this._tabindex !== value) {
5781
5780
  this._tabindex = value;
5782
- setTimeout(function () { return _this.updateTabIndex(); });
5781
+ if (!this._writing)
5782
+ this.updateTabIndex();
5783
5783
  }
5784
5784
  },
5785
5785
  enumerable: false,
@@ -6171,9 +6171,11 @@
6171
6171
  return this._tabindex;
6172
6172
  },
6173
6173
  set: function (value) {
6174
- this._tabindex = value;
6175
- if (!this._writing)
6176
- this.updateTabIndex();
6174
+ if (this._tabindex !== value) {
6175
+ this._tabindex = value;
6176
+ if (!this._writing)
6177
+ this.updateTabIndex();
6178
+ }
6177
6179
  },
6178
6180
  enumerable: false,
6179
6181
  configurable: true