@syncfusion/ej2-navigations 19.3.53 → 19.3.54
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/CHANGELOG.md +6 -0
- package/dist/ej2-navigations.umd.min.js +2 -2
- package/dist/ej2-navigations.umd.min.js.map +1 -1
- package/dist/es6/ej2-navigations.es2015.js +3 -3
- package/dist/es6/ej2-navigations.es2015.js.map +1 -1
- package/dist/es6/ej2-navigations.es5.js +3 -3
- package/dist/es6/ej2-navigations.es5.js.map +1 -1
- package/dist/global/ej2-navigations.min.js +2 -2
- package/dist/global/ej2-navigations.min.js.map +1 -1
- package/dist/global/index.d.ts +1 -1
- package/package.json +6 -6
- package/src/tab/tab.js +3 -3
- package/styles/bootstrap5-dark.css +1 -1
- package/styles/bootstrap5.css +1 -1
- package/styles/tab/_bootstrap5-definition.scss +1 -1
- package/styles/tab/bootstrap5-dark.css +1 -1
- package/styles/tab/bootstrap5.css +1 -1
package/dist/global/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/*!
|
|
2
2
|
* filename: index.d.ts
|
|
3
|
-
* version : 19.3.
|
|
3
|
+
* version : 19.3.54
|
|
4
4
|
* Copyright Syncfusion Inc. 2001 - 2020. All rights reserved.
|
|
5
5
|
* Use of this code is subject to the terms of our license.
|
|
6
6
|
* A copy of the current license can be obtained at any time by e-mailing
|
package/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"_from": "@syncfusion/ej2-navigations@*",
|
|
3
|
-
"_id": "@syncfusion/ej2-navigations@19.3.
|
|
3
|
+
"_id": "@syncfusion/ej2-navigations@19.3.53",
|
|
4
4
|
"_inBundle": false,
|
|
5
|
-
"_integrity": "sha512-
|
|
5
|
+
"_integrity": "sha512-W+iY46QKyyO2BsX/Bbso1/57mqqNxh2AQOifeI9Xpy08QlAy9b3VzRwCXyUfnxjXxCch+OOaVFW67+Dz6cteYw==",
|
|
6
6
|
"_location": "/@syncfusion/ej2-navigations",
|
|
7
7
|
"_phantomChildren": {},
|
|
8
8
|
"_requested": {
|
|
@@ -37,8 +37,8 @@
|
|
|
37
37
|
"/@syncfusion/ej2-spreadsheet",
|
|
38
38
|
"/@syncfusion/ej2-vue-navigations"
|
|
39
39
|
],
|
|
40
|
-
"_resolved": "http://nexus.syncfusion.com/repository/ej2-hotfix/@syncfusion/ej2-navigations/-/ej2-navigations-19.3.
|
|
41
|
-
"_shasum": "
|
|
40
|
+
"_resolved": "http://nexus.syncfusion.com/repository/ej2-hotfix/@syncfusion/ej2-navigations/-/ej2-navigations-19.3.53.tgz",
|
|
41
|
+
"_shasum": "384c384d332aaeba0e4cc90439c4a65ac5f62c5c",
|
|
42
42
|
"_spec": "@syncfusion/ej2-navigations@*",
|
|
43
43
|
"_where": "/jenkins/workspace/automation_release_19.1.0.1-ZPMUBNQ6AUYH6YGEFBPVYMEQLRRW2SLD4XCZ6GATNZJFYJ3RIAOA/packages/included",
|
|
44
44
|
"author": {
|
|
@@ -49,7 +49,7 @@
|
|
|
49
49
|
},
|
|
50
50
|
"bundleDependencies": false,
|
|
51
51
|
"dependencies": {
|
|
52
|
-
"@syncfusion/ej2-base": "~19.3.
|
|
52
|
+
"@syncfusion/ej2-base": "~19.3.54",
|
|
53
53
|
"@syncfusion/ej2-buttons": "~19.3.53",
|
|
54
54
|
"@syncfusion/ej2-data": "~19.3.53",
|
|
55
55
|
"@syncfusion/ej2-inputs": "~19.3.53",
|
|
@@ -159,6 +159,6 @@
|
|
|
159
159
|
"url": "git+https://github.com/syncfusion/ej2-javascript-ui-controls.git"
|
|
160
160
|
},
|
|
161
161
|
"typings": "index.d.ts",
|
|
162
|
-
"version": "19.3.
|
|
162
|
+
"version": "19.3.54",
|
|
163
163
|
"sideEffects": false
|
|
164
164
|
}
|
package/src/tab/tab.js
CHANGED
|
@@ -481,7 +481,7 @@ var Tab = /** @class */ (function (_super) {
|
|
|
481
481
|
};
|
|
482
482
|
Tab.prototype.parseObject = function (items, index) {
|
|
483
483
|
var _this = this;
|
|
484
|
-
var tbCount = selectAll('.' + CLS_TB_ITEM, this.element).length;
|
|
484
|
+
var tbCount = selectAll('.e-tab-header .' + CLS_TB_ITEM, this.element).length;
|
|
485
485
|
var tItems = [];
|
|
486
486
|
var txtWrapEle;
|
|
487
487
|
var spliceArray = [];
|
|
@@ -1390,7 +1390,7 @@ var Tab = /** @class */ (function (_super) {
|
|
|
1390
1390
|
var hdr = this.element.querySelectorAll('.' + CLS_TB_ITEM)[index];
|
|
1391
1391
|
var itemIndex = void 0;
|
|
1392
1392
|
if (hdr && !isNOU(hdr.id) && hdr.id !== '') {
|
|
1393
|
-
var num = (hdr.id.
|
|
1393
|
+
var num = (hdr.id.lastIndexOf('_'));
|
|
1394
1394
|
itemIndex = parseInt(hdr.id.substring(num + 1), 10);
|
|
1395
1395
|
}
|
|
1396
1396
|
else {
|
|
@@ -1754,7 +1754,7 @@ var Tab = /** @class */ (function (_super) {
|
|
|
1754
1754
|
this.reRenderItems();
|
|
1755
1755
|
}
|
|
1756
1756
|
else {
|
|
1757
|
-
var itemsCount = selectAll('.' + CLS_TB_ITEM, this.element).length;
|
|
1757
|
+
var itemsCount = selectAll('.e-tab-header .' + CLS_TB_ITEM, this.element).length;
|
|
1758
1758
|
if (itemsCount !== 0) {
|
|
1759
1759
|
lastEleIndex = this.lastIndex + 1;
|
|
1760
1760
|
}
|
package/styles/bootstrap5.css
CHANGED
|
@@ -41,7 +41,7 @@ $tab-hover-border-color: $border-light !default;
|
|
|
41
41
|
$tab-disable-border-color: rgba($border-light, .38) !default;
|
|
42
42
|
$tab-alt-border-color: $primary-text-color !default;
|
|
43
43
|
$tab-alt-disable-border-color: $border-light !default;
|
|
44
|
-
$tab-bg-color: $
|
|
44
|
+
$tab-bg-color: $transparent !default;
|
|
45
45
|
$tab-border: none !default;
|
|
46
46
|
$tab-focused-wrap-focus-border-color: $icon-color !default;
|
|
47
47
|
$tab-alt-hdr-bg-color: $primary !default;
|