@syncfusion/ej2-navigations 20.2.36 → 20.2.38

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.
@@ -1,6 +1,6 @@
1
1
  /*!
2
2
  * filename: index.d.ts
3
- * version : 20.2.36
3
+ * version : 20.2.38
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.45.0",
3
+ "_id": "@syncfusion/ej2-navigations@20.2.36",
4
4
  "_inBundle": false,
5
- "_integrity": "sha512-XnIhDfeIIUUx5SiPisCYOa1ktvH7pjIboJ7SrYfxUud5Macoq4odTlv/QS+foBE7QOPNiiCB2bnvRP4FA1YfNA==",
5
+ "_integrity": "sha512-0n+gogPH5bHuev2mUQGro6hPj7UcCRITvLic1ggrXzyk7XQoMx6z6oJNcfofG3tS3uw1DMuDFFWSOhTQdKJH4w==",
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-release/@syncfusion/ej2-navigations/-/ej2-navigations-19.45.0.tgz",
41
- "_shasum": "ef79fb3ae2f8377b41562129e6e7c4b86a04b933",
40
+ "_resolved": "http://nexus.syncfusion.com/repository/ej2-hotfix-new/@syncfusion/ej2-navigations/-/ej2-navigations-20.2.36.tgz",
41
+ "_shasum": "d41652358e5e3f46eed046a827743a106c15a3cb",
42
42
  "_spec": "@syncfusion/ej2-navigations@*",
43
43
  "_where": "/jenkins/workspace/automation_release_19.1.0.1-ZPMUBNQ6AUYH6YGEFBPVYMEQLRRW2SLD4XCZ6GATNZJFYJ3RIAOA/packages/included",
44
44
  "author": {
@@ -49,12 +49,12 @@
49
49
  },
50
50
  "bundleDependencies": false,
51
51
  "dependencies": {
52
- "@syncfusion/ej2-base": "~20.2.36",
53
- "@syncfusion/ej2-buttons": "~20.2.36",
54
- "@syncfusion/ej2-data": "~20.2.36",
55
- "@syncfusion/ej2-inputs": "~20.2.36",
56
- "@syncfusion/ej2-lists": "~20.2.36",
57
- "@syncfusion/ej2-popups": "~20.2.36"
52
+ "@syncfusion/ej2-base": "~20.2.38",
53
+ "@syncfusion/ej2-buttons": "~20.2.38",
54
+ "@syncfusion/ej2-data": "~20.2.38",
55
+ "@syncfusion/ej2-inputs": "~20.2.38",
56
+ "@syncfusion/ej2-lists": "~20.2.38",
57
+ "@syncfusion/ej2-popups": "~20.2.38"
58
58
  },
59
59
  "deprecated": false,
60
60
  "description": "A package of Essential JS 2 navigation components such as Tree-view, Tab, Toolbar, Context-menu, and Accordion which is used to navigate from one page to another",
@@ -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": "20.2.36",
162
+ "version": "20.2.38",
163
163
  "sideEffects": false
164
164
  }
@@ -57,7 +57,7 @@ export interface CarouselModel extends ComponentModel{
57
57
  * * Custom
58
58
  *
59
59
  * @default 'Slide'
60
- * */
60
+ */
61
61
  animationEffect?: CarouselAnimationEffect;
62
62
 
63
63
  /**
@@ -23,6 +23,7 @@ export declare type CarouselButtonVisibility = 'Hidden' | 'Visible' | 'VisibleOn
23
23
  * * `None` - The carousel item transition happens without animation.
24
24
  * * `Slide` - The carousel item transition happens with slide animation.
25
25
  * * `Fade` - The Carousel item transition happens with fade animation.
26
+ * * `Custom` - The Carousel item transition happens with custom animation.
26
27
  */
27
28
  export declare type CarouselAnimationEffect = 'None' | 'Fade' | 'Slide' | 'Custom';
28
29
  /** An interface that holds details when changing the slide. */
@@ -106,7 +107,7 @@ export declare class Carousel extends Component<HTMLElement> implements INotifyP
106
107
  * * Custom
107
108
  *
108
109
  * @default 'Slide'
109
- * */
110
+ */
110
111
  animationEffect: CarouselAnimationEffect;
111
112
  /**
112
113
  * Accepts the template for previous navigation button.
@@ -52,7 +52,7 @@ var CLS_TEMPLATE = 'e-template';
52
52
  var CLS_SLIDE_ANIMATION = 'e-carousel-slide-animation';
53
53
  var CLS_FADE_ANIMATION = 'e-carousel-fade-animation';
54
54
  var CLS_CUSTOM_ANIMATION = 'e-carousel-custom-animation';
55
- var CLS_ANIMATION_NONE = "e-carousel-animation-none";
55
+ var CLS_ANIMATION_NONE = 'e-carousel-animation-none';
56
56
  var CLS_PREV_SLIDE = 'e-prev';
57
57
  var CLS_NEXT_SLIDE = 'e-next';
58
58
  var CLS_TRANSITION_START = 'e-transition-start';
package/src/tab/tab.js CHANGED
@@ -1850,7 +1850,8 @@ var Tab = /** @class */ (function (_super) {
1850
1850
  index = Array.prototype.indexOf.call(_this.itemIndexArray, trg.id);
1851
1851
  }
1852
1852
  _this.items.splice(index, 1);
1853
- _this.itemIndexArray.splice(index, 1);
1853
+ var targetEleIndex = _this.itemIndexArray.indexOf(trg.id);
1854
+ _this.itemIndexArray.splice(targetEleIndex, 1);
1854
1855
  _this.refreshActiveBorder();
1855
1856
  var cntTrg = select('#' + CLS_CONTENT + _this.tabId + '_' + _this.extIndex(trg.id), select('.' + CLS_CONTENT, _this.element));
1856
1857
  if (!isNOU(cntTrg)) {
@@ -168,7 +168,7 @@
168
168
  padding: 6px;
169
169
  }
170
170
  .e-carousel .e-carousel-indicators .e-indicator-bars .e-indicator-bar .e-indicator div {
171
- border: 1px solid rgba(255, 255, 255, 0.4);
171
+ border: 1px solid rgba(27, 26, 25, 0.4);
172
172
  border-radius: 50%;
173
173
  height: 12px;
174
174
  transition-duration: 0.6s;
@@ -189,7 +189,7 @@
189
189
  .e-carousel .e-carousel-navigators .e-previous .e-btn:not(:disabled) .e-btn-icon,
190
190
  .e-carousel .e-carousel-navigators .e-next .e-btn:not(:disabled) .e-btn-icon,
191
191
  .e-carousel .e-carousel-navigators .e-play-pause .e-btn:not(:disabled) .e-btn-icon {
192
- color: #fff;
192
+ color: #1b1a19;
193
193
  }
194
194
  .e-carousel .e-carousel-navigators .e-previous .e-btn:not(:disabled):active, .e-carousel .e-carousel-navigators .e-previous .e-btn:not(:disabled):focus, .e-carousel .e-carousel-navigators .e-previous .e-btn:not(:disabled):hover,
195
195
  .e-carousel .e-carousel-navigators .e-next .e-btn:not(:disabled):active,
@@ -198,7 +198,7 @@
198
198
  .e-carousel .e-carousel-navigators .e-play-pause .e-btn:not(:disabled):active,
199
199
  .e-carousel .e-carousel-navigators .e-play-pause .e-btn:not(:disabled):focus,
200
200
  .e-carousel .e-carousel-navigators .e-play-pause .e-btn:not(:disabled):hover {
201
- background-color: rgba(255, 255, 255, 0.4);
201
+ background-color: rgba(27, 26, 25, 0.4);
202
202
  outline: none;
203
203
  }
204
204
  .e-carousel .e-carousel-indicators .e-indicator-bar .e-indicator {
@@ -207,8 +207,8 @@
207
207
  box-shadow: none;
208
208
  }
209
209
  .e-carousel .e-carousel-indicators .e-indicator-bar .e-indicator div {
210
- background-color: #fff;
211
- border-color: #fff;
210
+ background-color: #1b1a19;
211
+ border-color: #1b1a19;
212
212
  }
213
213
  .e-carousel .e-carousel-indicators .e-indicator-bar .e-indicator:active, .e-carousel .e-carousel-indicators .e-indicator-bar .e-indicator:focus, .e-carousel .e-carousel-indicators .e-indicator-bar .e-indicator:hover {
214
214
  background-color: transparent;
@@ -2776,7 +2776,7 @@
2776
2776
  padding: 6px;
2777
2777
  }
2778
2778
  .e-carousel .e-carousel-indicators .e-indicator-bars .e-indicator-bar .e-indicator div {
2779
- border: 1px solid rgba(255, 255, 255, 0.4);
2779
+ border: 1px solid rgba(27, 26, 25, 0.4);
2780
2780
  border-radius: 50%;
2781
2781
  height: 12px;
2782
2782
  transition-duration: 0.6s;
@@ -2797,7 +2797,7 @@
2797
2797
  .e-carousel .e-carousel-navigators .e-previous .e-btn:not(:disabled) .e-btn-icon,
2798
2798
  .e-carousel .e-carousel-navigators .e-next .e-btn:not(:disabled) .e-btn-icon,
2799
2799
  .e-carousel .e-carousel-navigators .e-play-pause .e-btn:not(:disabled) .e-btn-icon {
2800
- color: #fff;
2800
+ color: #1b1a19;
2801
2801
  }
2802
2802
  .e-carousel .e-carousel-navigators .e-previous .e-btn:not(:disabled):active, .e-carousel .e-carousel-navigators .e-previous .e-btn:not(:disabled):focus, .e-carousel .e-carousel-navigators .e-previous .e-btn:not(:disabled):hover,
2803
2803
  .e-carousel .e-carousel-navigators .e-next .e-btn:not(:disabled):active,
@@ -2806,7 +2806,7 @@
2806
2806
  .e-carousel .e-carousel-navigators .e-play-pause .e-btn:not(:disabled):active,
2807
2807
  .e-carousel .e-carousel-navigators .e-play-pause .e-btn:not(:disabled):focus,
2808
2808
  .e-carousel .e-carousel-navigators .e-play-pause .e-btn:not(:disabled):hover {
2809
- background-color: rgba(255, 255, 255, 0.4);
2809
+ background-color: rgba(27, 26, 25, 0.4);
2810
2810
  outline: none;
2811
2811
  }
2812
2812
  .e-carousel .e-carousel-indicators .e-indicator-bar .e-indicator {
@@ -2815,8 +2815,8 @@
2815
2815
  box-shadow: none;
2816
2816
  }
2817
2817
  .e-carousel .e-carousel-indicators .e-indicator-bar .e-indicator div {
2818
- background-color: #fff;
2819
- border-color: #fff;
2818
+ background-color: #1b1a19;
2819
+ border-color: #1b1a19;
2820
2820
  }
2821
2821
  .e-carousel .e-carousel-indicators .e-indicator-bar .e-indicator:active, .e-carousel .e-carousel-indicators .e-indicator-bar .e-indicator:focus, .e-carousel .e-carousel-indicators .e-indicator-bar .e-indicator:hover {
2822
2822
  background-color: transparent;
@@ -6421,20 +6421,20 @@
6421
6421
  border-radius: 0;
6422
6422
  }
6423
6423
  .e-tab.e-fill .e-tab-header .e-toolbar-item.e-active .e-tab-wrap:hover .e-tab-text, .e-tab.e-fill .e-tab-header .e-toolbar-item.e-active .e-tab-wrap:hover .e-tab-icon {
6424
- color: #fff;
6424
+ color: #1b1a19;
6425
6425
  }
6426
6426
  .e-tab.e-fill .e-tab-header .e-toolbar-item.e-active .e-text-wrap {
6427
6427
  margin-top: 0;
6428
6428
  }
6429
6429
  .e-tab.e-fill .e-tab-header .e-toolbar-item.e-active .e-tab-text,
6430
6430
  .e-tab.e-fill .e-tab-header .e-toolbar-item.e-active .e-tab-icon {
6431
- color: #fff;
6431
+ color: #1b1a19;
6432
6432
  }
6433
6433
  .e-tab.e-fill .e-tab-header .e-toolbar-item.e-active .e-close-icon {
6434
- color: #fff;
6434
+ color: #1b1a19;
6435
6435
  }
6436
6436
  .e-tab.e-fill .e-tab-header .e-toolbar-item.e-active .e-close-icon:hover {
6437
- color: #fff;
6437
+ color: #1b1a19;
6438
6438
  }
6439
6439
  .e-tab.e-fill .e-tab-header.e-horizontal-bottom {
6440
6440
  border-bottom: 0;
@@ -6501,7 +6501,7 @@
6501
6501
  background: inherit;
6502
6502
  }
6503
6503
  .e-tab.e-background .e-tab-header .e-indicator {
6504
- background: #fff;
6504
+ background: #1b1a19;
6505
6505
  }
6506
6506
  .e-tab.e-background .e-tab-header .e-toolbar-item {
6507
6507
  border: 0;
@@ -6518,24 +6518,24 @@
6518
6518
  color: #004578;
6519
6519
  }
6520
6520
  .e-tab.e-background .e-tab-header .e-toolbar-item .e-tab-wrap .e-close-icon:hover {
6521
- color: #fff;
6521
+ color: #1b1a19;
6522
6522
  }
6523
6523
  .e-tab.e-background .e-tab-header .e-toolbar-item .e-tab-wrap:hover {
6524
6524
  background: #005ba1;
6525
6525
  }
6526
6526
  .e-tab.e-background .e-tab-header .e-toolbar-item .e-tab-wrap:hover .e-tab-text,
6527
6527
  .e-tab.e-background .e-tab-header .e-toolbar-item .e-tab-wrap:hover .e-tab-icon {
6528
- color: #fff;
6528
+ color: #1b1a19;
6529
6529
  }
6530
6530
  .e-tab.e-background .e-tab-header .e-toolbar-item .e-tab-wrap:hover .e-tab-text,
6531
6531
  .e-tab.e-background .e-tab-header .e-toolbar-item .e-tab-wrap:hover .e-tab-icon,
6532
6532
  .e-tab.e-background .e-tab-header .e-toolbar-item .e-tab-wrap:hover .e-close-icon {
6533
- color: #fff;
6533
+ color: #1b1a19;
6534
6534
  }
6535
6535
  .e-tab.e-background .e-tab-header .e-toolbar-item.e-active {
6536
6536
  border: 0;
6537
6537
  margin: 0;
6538
- background: #fff;
6538
+ background: #1b1a19;
6539
6539
  }
6540
6540
  .e-tab.e-background .e-tab-header .e-toolbar-item.e-active .e-tab-wrap {
6541
6541
  background: none;
@@ -6548,7 +6548,7 @@
6548
6548
  }
6549
6549
  .e-tab.e-background .e-tab-header .e-toolbar-item.e-active .e-tab-wrap:hover .e-tab-text,
6550
6550
  .e-tab.e-background .e-tab-header .e-toolbar-item.e-active .e-tab-wrap:hover .e-tab-icon {
6551
- color: #fff;
6551
+ color: #1b1a19;
6552
6552
  color: #0078d4;
6553
6553
  }
6554
6554
  .e-tab.e-background .e-tab-header .e-toolbar-item.e-active .e-tab-wrap:focus {
@@ -6556,20 +6556,20 @@
6556
6556
  }
6557
6557
  .e-tab.e-background .e-tab-header .e-toolbar-item.e-active .e-tab-wrap:focus .e-tab-text,
6558
6558
  .e-tab.e-background .e-tab-header .e-toolbar-item.e-active .e-tab-wrap:focus .e-tab-icon {
6559
- color: #fff;
6559
+ color: #1b1a19;
6560
6560
  color: #0078d4;
6561
6561
  }
6562
6562
  .e-tab.e-background .e-tab-header .e-toolbar-item.e-active .e-tab-text,
6563
6563
  .e-tab.e-background .e-tab-header .e-toolbar-item.e-active .e-tab-icon {
6564
- color: #fff;
6564
+ color: #1b1a19;
6565
6565
  color: #0078d4;
6566
6566
  }
6567
6567
  .e-tab.e-background .e-tab-header .e-toolbar-item.e-active .e-close-icon {
6568
- color: #fff;
6568
+ color: #1b1a19;
6569
6569
  color: #0078d4;
6570
6570
  }
6571
6571
  .e-tab.e-background .e-tab-header .e-toolbar-item.e-active .e-close-icon:hover {
6572
- color: #fff;
6572
+ color: #1b1a19;
6573
6573
  color: #0078d4;
6574
6574
  }
6575
6575
  .e-tab.e-background .e-tab-header .e-toolbar-item.e-active.e-itop .e-tab-wrap, .e-tab.e-background .e-tab-header .e-toolbar-item.e-active.e-ibottom .e-tab-wrap {
@@ -6598,7 +6598,7 @@
6598
6598
  .e-tab.e-background .e-tab-header .e-toolbar-pop .e-toolbar-item .e-tab-wrap:hover .e-tab-text,
6599
6599
  .e-tab.e-background .e-tab-header .e-toolbar-pop .e-toolbar-item .e-tab-wrap:hover .e-tab-icon,
6600
6600
  .e-tab.e-background .e-tab-header .e-toolbar-pop .e-toolbar-item .e-tab-wrap:hover .e-close-icon {
6601
- color: #fff;
6601
+ color: #1b1a19;
6602
6602
  color: #f3f2f1;
6603
6603
  }
6604
6604
  .e-tab.e-background .e-tab-header .e-hscroll:not(.e-scroll-device) .e-scroll-nav,
@@ -6607,22 +6607,22 @@
6607
6607
  }
6608
6608
  .e-tab.e-background .e-tab-header .e-hscroll:not(.e-scroll-device) .e-scroll-nav .e-nav-arrow,
6609
6609
  .e-tab.e-background .e-tab-header .e-scroll-nav .e-nav-arrow {
6610
- color: #fff;
6610
+ color: #1b1a19;
6611
6611
  }
6612
6612
  .e-tab.e-background .e-tab-header .e-hscroll:not(.e-scroll-device) .e-scroll-nav .e-nav-arrow:hover,
6613
6613
  .e-tab.e-background .e-tab-header .e-scroll-nav .e-nav-arrow:hover {
6614
6614
  background: inherit;
6615
6615
  background: #005ba1;
6616
- color: #fff;
6616
+ color: #1b1a19;
6617
6617
  }
6618
6618
  .e-tab.e-background .e-tab-header .e-hscroll:not(.e-scroll-device) .e-scroll-nav:focus .e-nav-arrow,
6619
6619
  .e-tab.e-background .e-tab-header .e-scroll-nav:focus .e-nav-arrow {
6620
- color: #fff;
6620
+ color: #1b1a19;
6621
6621
  }
6622
6622
  .e-tab.e-background .e-tab-header .e-hscroll:not(.e-scroll-device) .e-scroll-nav:focus .e-nav-arrow:hover,
6623
6623
  .e-tab.e-background .e-tab-header .e-scroll-nav:focus .e-nav-arrow:hover {
6624
6624
  background: inherit;
6625
- color: #fff;
6625
+ color: #1b1a19;
6626
6626
  }
6627
6627
  .e-tab.e-background .e-tab-header .e-hscroll:not(.e-scroll-device) .e-scroll-nav:active::after,
6628
6628
  .e-tab.e-background .e-tab-header .e-scroll-nav:active::after {
@@ -6630,7 +6630,7 @@
6630
6630
  }
6631
6631
  .e-tab.e-background .e-tab-header .e-hscroll:not(.e-scroll-device) .e-scroll-nav.e-overlay .e-nav-arrow,
6632
6632
  .e-tab.e-background .e-tab-header .e-scroll-nav.e-overlay .e-nav-arrow {
6633
- color: #fff;
6633
+ color: #1b1a19;
6634
6634
  }
6635
6635
  .e-tab.e-background .e-tab-header .e-hor-nav:not(.e-expended-nav),
6636
6636
  .e-tab.e-background .e-tab-header .e-hor-nav {
@@ -6640,21 +6640,21 @@
6640
6640
  .e-tab.e-background .e-tab-header .e-hor-nav:not(.e-expended-nav) .e-popup-down-icon,
6641
6641
  .e-tab.e-background .e-tab-header .e-hor-nav .e-popup-up-icon,
6642
6642
  .e-tab.e-background .e-tab-header .e-hor-nav .e-popup-down-icon {
6643
- color: #fff;
6644
- color: #fff;
6643
+ color: #1b1a19;
6644
+ color: #1b1a19;
6645
6645
  }
6646
6646
  .e-tab.e-background .e-tab-header .e-hor-nav:not(.e-expended-nav) .e-popup-up-icon:hover,
6647
6647
  .e-tab.e-background .e-tab-header .e-hor-nav:not(.e-expended-nav) .e-popup-down-icon:hover,
6648
6648
  .e-tab.e-background .e-tab-header .e-hor-nav .e-popup-up-icon:hover,
6649
6649
  .e-tab.e-background .e-tab-header .e-hor-nav .e-popup-down-icon:hover {
6650
6650
  background: inherit;
6651
- color: #fff;
6651
+ color: #1b1a19;
6652
6652
  }
6653
6653
  .e-tab.e-background .e-tab-header .e-hor-nav:not(.e-expended-nav):focus .e-popup-up-icon,
6654
6654
  .e-tab.e-background .e-tab-header .e-hor-nav:not(.e-expended-nav):focus .e-popup-down-icon,
6655
6655
  .e-tab.e-background .e-tab-header .e-hor-nav:focus .e-popup-up-icon,
6656
6656
  .e-tab.e-background .e-tab-header .e-hor-nav:focus .e-popup-down-icon {
6657
- color: #fff;
6657
+ color: #1b1a19;
6658
6658
  background: #005ba1;
6659
6659
  }
6660
6660
  .e-tab.e-background .e-tab-header .e-hor-nav:not(.e-expended-nav):active::after,
@@ -6667,13 +6667,13 @@
6667
6667
  }
6668
6668
  .e-tab.e-background .e-tab-header .e-hor-nav:not(.e-expended-nav).e-nav-active .e-popup-up-icon,
6669
6669
  .e-tab.e-background .e-tab-header .e-hor-nav.e-nav-active .e-popup-up-icon {
6670
- color: #fff;
6670
+ color: #1b1a19;
6671
6671
  }
6672
6672
  .e-tab.e-background .e-tab-header .e-hor-nav:not(.e-expended-nav).e-nav-active .e-popup-up-icon,
6673
6673
  .e-tab.e-background .e-tab-header .e-hor-nav:not(.e-expended-nav).e-nav-active .e-popup-down-icon,
6674
6674
  .e-tab.e-background .e-tab-header .e-hor-nav.e-nav-active .e-popup-up-icon,
6675
6675
  .e-tab.e-background .e-tab-header .e-hor-nav.e-nav-active .e-popup-down-icon {
6676
- color: #fff;
6676
+ color: #1b1a19;
6677
6677
  }
6678
6678
  .e-tab.e-background .e-tab-header.e-vertical .e-scroll-nav .e-nav-arrow {
6679
6679
  border: 0;
@@ -6685,7 +6685,7 @@
6685
6685
  background: none;
6686
6686
  }
6687
6687
  .e-tab.e-background .e-tab-header.e-vertical .e-scroll-nav:hover .e-nav-arrow {
6688
- color: #fff;
6688
+ color: #1b1a19;
6689
6689
  }
6690
6690
  .e-tab.e-background .e-tab-header.e-vertical .e-hor-nav:focus .e-popup-up-icon,
6691
6691
  .e-tab.e-background .e-tab-header.e-vertical .e-hor-nav:focus .e-popup-down-icon {
@@ -6743,10 +6743,10 @@
6743
6743
  .e-tab.e-background.e-focused .e-tab-header .e-toolbar-item .e-tab-wrap:focus .e-tab-text,
6744
6744
  .e-tab.e-background.e-focused .e-tab-header .e-toolbar-item .e-tab-wrap:focus .e-close-icon {
6745
6745
  color: #004578;
6746
- color: #fff;
6746
+ color: #1b1a19;
6747
6747
  }
6748
6748
  .e-tab.e-background.e-focused .e-tab-header .e-toolbar-item.e-active .e-tab-wrap:focus {
6749
- background: #fff;
6749
+ background: #1b1a19;
6750
6750
  }
6751
6751
  .e-tab.e-background.e-focused .e-tab-header .e-toolbar-item.e-active .e-tab-wrap:focus .e-tab-text,
6752
6752
  .e-tab.e-background.e-focused .e-tab-header .e-toolbar-item.e-active .e-tab-wrap:focus .e-tab-icon {
@@ -6754,7 +6754,7 @@
6754
6754
  color: #0078d4;
6755
6755
  }
6756
6756
  .e-tab.e-background.e-focused .e-tab-header .e-toolbar-item.e-active .e-tab-wrap:hover {
6757
- background: #fff;
6757
+ background: #1b1a19;
6758
6758
  }
6759
6759
  .e-tab.e-background.e-focused .e-tab-header .e-toolbar-item.e-active .e-tab-wrap:focus .e-tab-text,
6760
6760
  .e-tab.e-background.e-focused .e-tab-header .e-toolbar-item.e-active .e-tab-wrap:focus .e-tab-icon,
@@ -7640,8 +7640,8 @@
7640
7640
  }
7641
7641
  .e-treeview.e-drag-item .e-drop-count {
7642
7642
  background-color: #0078d4;
7643
- border-color: #fff;
7644
- color: #fff;
7643
+ border-color: #1b1a19;
7644
+ color: #1b1a19;
7645
7645
  }
7646
7646
  .e-treeview.e-drag-item.e-rtl .e-sibling {
7647
7647
  border: 1px solid #0078d4;
@@ -3208,20 +3208,20 @@
3208
3208
  border-radius: 0;
3209
3209
  }
3210
3210
  .e-tab.e-fill .e-tab-header .e-toolbar-item.e-active .e-tab-wrap:hover .e-tab-text, .e-tab.e-fill .e-tab-header .e-toolbar-item.e-active .e-tab-wrap:hover .e-tab-icon {
3211
- color: #fff;
3211
+ color: #1b1a19;
3212
3212
  }
3213
3213
  .e-tab.e-fill .e-tab-header .e-toolbar-item.e-active .e-text-wrap {
3214
3214
  margin-top: 0;
3215
3215
  }
3216
3216
  .e-tab.e-fill .e-tab-header .e-toolbar-item.e-active .e-tab-text,
3217
3217
  .e-tab.e-fill .e-tab-header .e-toolbar-item.e-active .e-tab-icon {
3218
- color: #fff;
3218
+ color: #1b1a19;
3219
3219
  }
3220
3220
  .e-tab.e-fill .e-tab-header .e-toolbar-item.e-active .e-close-icon {
3221
- color: #fff;
3221
+ color: #1b1a19;
3222
3222
  }
3223
3223
  .e-tab.e-fill .e-tab-header .e-toolbar-item.e-active .e-close-icon:hover {
3224
- color: #fff;
3224
+ color: #1b1a19;
3225
3225
  }
3226
3226
  .e-tab.e-fill .e-tab-header.e-horizontal-bottom {
3227
3227
  border-bottom: 0;
@@ -3288,7 +3288,7 @@
3288
3288
  background: inherit;
3289
3289
  }
3290
3290
  .e-tab.e-background .e-tab-header .e-indicator {
3291
- background: #fff;
3291
+ background: #1b1a19;
3292
3292
  }
3293
3293
  .e-tab.e-background .e-tab-header .e-toolbar-item {
3294
3294
  border: 0;
@@ -3305,24 +3305,24 @@
3305
3305
  color: #004578;
3306
3306
  }
3307
3307
  .e-tab.e-background .e-tab-header .e-toolbar-item .e-tab-wrap .e-close-icon:hover {
3308
- color: #fff;
3308
+ color: #1b1a19;
3309
3309
  }
3310
3310
  .e-tab.e-background .e-tab-header .e-toolbar-item .e-tab-wrap:hover {
3311
3311
  background: #005ba1;
3312
3312
  }
3313
3313
  .e-tab.e-background .e-tab-header .e-toolbar-item .e-tab-wrap:hover .e-tab-text,
3314
3314
  .e-tab.e-background .e-tab-header .e-toolbar-item .e-tab-wrap:hover .e-tab-icon {
3315
- color: #fff;
3315
+ color: #1b1a19;
3316
3316
  }
3317
3317
  .e-tab.e-background .e-tab-header .e-toolbar-item .e-tab-wrap:hover .e-tab-text,
3318
3318
  .e-tab.e-background .e-tab-header .e-toolbar-item .e-tab-wrap:hover .e-tab-icon,
3319
3319
  .e-tab.e-background .e-tab-header .e-toolbar-item .e-tab-wrap:hover .e-close-icon {
3320
- color: #fff;
3320
+ color: #1b1a19;
3321
3321
  }
3322
3322
  .e-tab.e-background .e-tab-header .e-toolbar-item.e-active {
3323
3323
  border: 0;
3324
3324
  margin: 0;
3325
- background: #fff;
3325
+ background: #1b1a19;
3326
3326
  }
3327
3327
  .e-tab.e-background .e-tab-header .e-toolbar-item.e-active .e-tab-wrap {
3328
3328
  background: none;
@@ -3335,7 +3335,7 @@
3335
3335
  }
3336
3336
  .e-tab.e-background .e-tab-header .e-toolbar-item.e-active .e-tab-wrap:hover .e-tab-text,
3337
3337
  .e-tab.e-background .e-tab-header .e-toolbar-item.e-active .e-tab-wrap:hover .e-tab-icon {
3338
- color: #fff;
3338
+ color: #1b1a19;
3339
3339
  color: #0078d4;
3340
3340
  }
3341
3341
  .e-tab.e-background .e-tab-header .e-toolbar-item.e-active .e-tab-wrap:focus {
@@ -3343,20 +3343,20 @@
3343
3343
  }
3344
3344
  .e-tab.e-background .e-tab-header .e-toolbar-item.e-active .e-tab-wrap:focus .e-tab-text,
3345
3345
  .e-tab.e-background .e-tab-header .e-toolbar-item.e-active .e-tab-wrap:focus .e-tab-icon {
3346
- color: #fff;
3346
+ color: #1b1a19;
3347
3347
  color: #0078d4;
3348
3348
  }
3349
3349
  .e-tab.e-background .e-tab-header .e-toolbar-item.e-active .e-tab-text,
3350
3350
  .e-tab.e-background .e-tab-header .e-toolbar-item.e-active .e-tab-icon {
3351
- color: #fff;
3351
+ color: #1b1a19;
3352
3352
  color: #0078d4;
3353
3353
  }
3354
3354
  .e-tab.e-background .e-tab-header .e-toolbar-item.e-active .e-close-icon {
3355
- color: #fff;
3355
+ color: #1b1a19;
3356
3356
  color: #0078d4;
3357
3357
  }
3358
3358
  .e-tab.e-background .e-tab-header .e-toolbar-item.e-active .e-close-icon:hover {
3359
- color: #fff;
3359
+ color: #1b1a19;
3360
3360
  color: #0078d4;
3361
3361
  }
3362
3362
  .e-tab.e-background .e-tab-header .e-toolbar-item.e-active.e-itop .e-tab-wrap, .e-tab.e-background .e-tab-header .e-toolbar-item.e-active.e-ibottom .e-tab-wrap {
@@ -3385,7 +3385,7 @@
3385
3385
  .e-tab.e-background .e-tab-header .e-toolbar-pop .e-toolbar-item .e-tab-wrap:hover .e-tab-text,
3386
3386
  .e-tab.e-background .e-tab-header .e-toolbar-pop .e-toolbar-item .e-tab-wrap:hover .e-tab-icon,
3387
3387
  .e-tab.e-background .e-tab-header .e-toolbar-pop .e-toolbar-item .e-tab-wrap:hover .e-close-icon {
3388
- color: #fff;
3388
+ color: #1b1a19;
3389
3389
  color: #f3f2f1;
3390
3390
  }
3391
3391
  .e-tab.e-background .e-tab-header .e-hscroll:not(.e-scroll-device) .e-scroll-nav,
@@ -3394,22 +3394,22 @@
3394
3394
  }
3395
3395
  .e-tab.e-background .e-tab-header .e-hscroll:not(.e-scroll-device) .e-scroll-nav .e-nav-arrow,
3396
3396
  .e-tab.e-background .e-tab-header .e-scroll-nav .e-nav-arrow {
3397
- color: #fff;
3397
+ color: #1b1a19;
3398
3398
  }
3399
3399
  .e-tab.e-background .e-tab-header .e-hscroll:not(.e-scroll-device) .e-scroll-nav .e-nav-arrow:hover,
3400
3400
  .e-tab.e-background .e-tab-header .e-scroll-nav .e-nav-arrow:hover {
3401
3401
  background: inherit;
3402
3402
  background: #005ba1;
3403
- color: #fff;
3403
+ color: #1b1a19;
3404
3404
  }
3405
3405
  .e-tab.e-background .e-tab-header .e-hscroll:not(.e-scroll-device) .e-scroll-nav:focus .e-nav-arrow,
3406
3406
  .e-tab.e-background .e-tab-header .e-scroll-nav:focus .e-nav-arrow {
3407
- color: #fff;
3407
+ color: #1b1a19;
3408
3408
  }
3409
3409
  .e-tab.e-background .e-tab-header .e-hscroll:not(.e-scroll-device) .e-scroll-nav:focus .e-nav-arrow:hover,
3410
3410
  .e-tab.e-background .e-tab-header .e-scroll-nav:focus .e-nav-arrow:hover {
3411
3411
  background: inherit;
3412
- color: #fff;
3412
+ color: #1b1a19;
3413
3413
  }
3414
3414
  .e-tab.e-background .e-tab-header .e-hscroll:not(.e-scroll-device) .e-scroll-nav:active::after,
3415
3415
  .e-tab.e-background .e-tab-header .e-scroll-nav:active::after {
@@ -3417,7 +3417,7 @@
3417
3417
  }
3418
3418
  .e-tab.e-background .e-tab-header .e-hscroll:not(.e-scroll-device) .e-scroll-nav.e-overlay .e-nav-arrow,
3419
3419
  .e-tab.e-background .e-tab-header .e-scroll-nav.e-overlay .e-nav-arrow {
3420
- color: #fff;
3420
+ color: #1b1a19;
3421
3421
  }
3422
3422
  .e-tab.e-background .e-tab-header .e-hor-nav:not(.e-expended-nav),
3423
3423
  .e-tab.e-background .e-tab-header .e-hor-nav {
@@ -3427,21 +3427,21 @@
3427
3427
  .e-tab.e-background .e-tab-header .e-hor-nav:not(.e-expended-nav) .e-popup-down-icon,
3428
3428
  .e-tab.e-background .e-tab-header .e-hor-nav .e-popup-up-icon,
3429
3429
  .e-tab.e-background .e-tab-header .e-hor-nav .e-popup-down-icon {
3430
- color: #fff;
3431
- color: #fff;
3430
+ color: #1b1a19;
3431
+ color: #1b1a19;
3432
3432
  }
3433
3433
  .e-tab.e-background .e-tab-header .e-hor-nav:not(.e-expended-nav) .e-popup-up-icon:hover,
3434
3434
  .e-tab.e-background .e-tab-header .e-hor-nav:not(.e-expended-nav) .e-popup-down-icon:hover,
3435
3435
  .e-tab.e-background .e-tab-header .e-hor-nav .e-popup-up-icon:hover,
3436
3436
  .e-tab.e-background .e-tab-header .e-hor-nav .e-popup-down-icon:hover {
3437
3437
  background: inherit;
3438
- color: #fff;
3438
+ color: #1b1a19;
3439
3439
  }
3440
3440
  .e-tab.e-background .e-tab-header .e-hor-nav:not(.e-expended-nav):focus .e-popup-up-icon,
3441
3441
  .e-tab.e-background .e-tab-header .e-hor-nav:not(.e-expended-nav):focus .e-popup-down-icon,
3442
3442
  .e-tab.e-background .e-tab-header .e-hor-nav:focus .e-popup-up-icon,
3443
3443
  .e-tab.e-background .e-tab-header .e-hor-nav:focus .e-popup-down-icon {
3444
- color: #fff;
3444
+ color: #1b1a19;
3445
3445
  background: #005ba1;
3446
3446
  }
3447
3447
  .e-tab.e-background .e-tab-header .e-hor-nav:not(.e-expended-nav):active::after,
@@ -3454,13 +3454,13 @@
3454
3454
  }
3455
3455
  .e-tab.e-background .e-tab-header .e-hor-nav:not(.e-expended-nav).e-nav-active .e-popup-up-icon,
3456
3456
  .e-tab.e-background .e-tab-header .e-hor-nav.e-nav-active .e-popup-up-icon {
3457
- color: #fff;
3457
+ color: #1b1a19;
3458
3458
  }
3459
3459
  .e-tab.e-background .e-tab-header .e-hor-nav:not(.e-expended-nav).e-nav-active .e-popup-up-icon,
3460
3460
  .e-tab.e-background .e-tab-header .e-hor-nav:not(.e-expended-nav).e-nav-active .e-popup-down-icon,
3461
3461
  .e-tab.e-background .e-tab-header .e-hor-nav.e-nav-active .e-popup-up-icon,
3462
3462
  .e-tab.e-background .e-tab-header .e-hor-nav.e-nav-active .e-popup-down-icon {
3463
- color: #fff;
3463
+ color: #1b1a19;
3464
3464
  }
3465
3465
  .e-tab.e-background .e-tab-header.e-vertical .e-scroll-nav .e-nav-arrow {
3466
3466
  border: 0;
@@ -3472,7 +3472,7 @@
3472
3472
  background: none;
3473
3473
  }
3474
3474
  .e-tab.e-background .e-tab-header.e-vertical .e-scroll-nav:hover .e-nav-arrow {
3475
- color: #fff;
3475
+ color: #1b1a19;
3476
3476
  }
3477
3477
  .e-tab.e-background .e-tab-header.e-vertical .e-hor-nav:focus .e-popup-up-icon,
3478
3478
  .e-tab.e-background .e-tab-header.e-vertical .e-hor-nav:focus .e-popup-down-icon {
@@ -3530,10 +3530,10 @@
3530
3530
  .e-tab.e-background.e-focused .e-tab-header .e-toolbar-item .e-tab-wrap:focus .e-tab-text,
3531
3531
  .e-tab.e-background.e-focused .e-tab-header .e-toolbar-item .e-tab-wrap:focus .e-close-icon {
3532
3532
  color: #004578;
3533
- color: #fff;
3533
+ color: #1b1a19;
3534
3534
  }
3535
3535
  .e-tab.e-background.e-focused .e-tab-header .e-toolbar-item.e-active .e-tab-wrap:focus {
3536
- background: #fff;
3536
+ background: #1b1a19;
3537
3537
  }
3538
3538
  .e-tab.e-background.e-focused .e-tab-header .e-toolbar-item.e-active .e-tab-wrap:focus .e-tab-text,
3539
3539
  .e-tab.e-background.e-focused .e-tab-header .e-toolbar-item.e-active .e-tab-wrap:focus .e-tab-icon {
@@ -3541,7 +3541,7 @@
3541
3541
  color: #0078d4;
3542
3542
  }
3543
3543
  .e-tab.e-background.e-focused .e-tab-header .e-toolbar-item.e-active .e-tab-wrap:hover {
3544
- background: #fff;
3544
+ background: #1b1a19;
3545
3545
  }
3546
3546
  .e-tab.e-background.e-focused .e-tab-header .e-toolbar-item.e-active .e-tab-wrap:focus .e-tab-text,
3547
3547
  .e-tab.e-background.e-focused .e-tab-header .e-toolbar-item.e-active .e-tab-wrap:focus .e-tab-icon,
@@ -838,8 +838,8 @@
838
838
  }
839
839
  .e-treeview.e-drag-item .e-drop-count {
840
840
  background-color: #0078d4;
841
- border-color: #fff;
842
- color: #fff;
841
+ border-color: #1b1a19;
842
+ color: #1b1a19;
843
843
  }
844
844
  .e-treeview.e-drag-item.e-rtl .e-sibling {
845
845
  border: 1px solid #0078d4;