novo-elements 6.0.0-next.11 → 6.0.0-next.12
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/novo-elements.umd.js +1 -1
- package/bundles/novo-elements.umd.js.map +1 -1
- package/bundles/novo-elements.umd.min.js +1 -1
- package/bundles/novo-elements.umd.min.js.map +1 -1
- package/esm2015/src/elements/tabs/Tabs.js +2 -2
- package/fesm2015/novo-elements.js +1 -1
- package/fesm2015/novo-elements.js.map +1 -1
- package/package.json +1 -1
- package/schematics/package.json +1 -1
- package/src/elements/tabs/Tabs.d.ts +2 -2
|
@@ -29766,7 +29766,7 @@
|
|
|
29766
29766
|
// Don't clamp the `indexToSelect` immediately in the setter because it can happen that
|
|
29767
29767
|
// the amount of tabs changes before the actual change detection runs.
|
|
29768
29768
|
var indexToSelect = (this._indexToSelect = this._clampTabIndex(this._indexToSelect));
|
|
29769
|
-
if (this._selectedIndex
|
|
29769
|
+
if (this._selectedIndex !== indexToSelect) {
|
|
29770
29770
|
var isFirstRun_1 = this._selectedIndex == null;
|
|
29771
29771
|
// Changing these values after change detection has run
|
|
29772
29772
|
// since the checked content may contain references to them.
|