@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.
- package/bundles/sumaris-net.ngx-components.umd.js +7 -5
- package/bundles/sumaris-net.ngx-components.umd.js.map +1 -1
- package/bundles/sumaris-net.ngx-components.umd.min.js +1 -1
- package/bundles/sumaris-net.ngx-components.umd.min.js.map +1 -1
- package/esm2015/src/app/shared/material/datetime/material.date.js +3 -2
- package/esm2015/src/app/shared/material/datetime/material.datetime.js +6 -4
- package/fesm2015/sumaris-net.ngx-components.js +7 -4
- package/fesm2015/sumaris-net.ngx-components.js.map +1 -1
- package/package.json +3 -2
- package/sumaris-net.ngx-components.metadata.json +1 -1
|
@@ -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
|
-
|
|
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
|
|
6175
|
-
|
|
6176
|
-
this.
|
|
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
|