@syncfusion/ej2-react-pivotview 20.4.43 → 20.4.48

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 CHANGED
@@ -6,6 +6,22 @@
6
6
 
7
7
  #### Bug Fixes
8
8
 
9
+ - `#I431116` - The "clipMode" property now works properly in pivot table row headers.
10
+
11
+ ## 20.4.44 (2023-01-18)
12
+
13
+ ### Pivot Table
14
+
15
+ #### Bug Fixes
16
+
17
+ - When switching from table to chart using the toolbar, the fieldlist popup now renders properly.
18
+
19
+ ## 20.4.43 (2023-01-10)
20
+
21
+ ### Pivot Table
22
+
23
+ #### Bug Fixes
24
+
9
25
  - While performing inline editing, the pivot table cell will now properly update for empty values.
10
26
 
11
27
  ## 20.4.42 (2023-01-04)
@@ -1,6 +1,6 @@
1
1
  /*!
2
2
  * filename: ej2-react-pivotview.min.js
3
- * version : 20.4.43
3
+ * version : 20.4.48
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
@@ -1,6 +1,6 @@
1
1
  /*!
2
2
  * filename: ej2-react-pivotview.umd.min.js
3
- * version : 20.4.43
3
+ * version : 20.4.48
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-react-pivotview@*",
3
- "_id": "@syncfusion/ej2-react-pivotview@20.4.42",
3
+ "_id": "@syncfusion/ej2-react-pivotview@20.4.44",
4
4
  "_inBundle": false,
5
- "_integrity": "sha512-q4wE01ekXNUquZmRNkTBuDalYgSywATX2tPM/fB/RermIyles2RWPv7M8t6JPm6r6uaw2OQ+tFOTv/HVnjf0ug==",
5
+ "_integrity": "sha512-akiRtMPLEnTBATFY+B2nDM1FZxCcG96fti2GI+o+pQyUz/uXIzzMK5+AdTtqZih6G9PuD2g5Ie97HfFYHGlz8g==",
6
6
  "_location": "/@syncfusion/ej2-react-pivotview",
7
7
  "_phantomChildren": {},
8
8
  "_requested": {
@@ -19,8 +19,8 @@
19
19
  "_requiredBy": [
20
20
  "/"
21
21
  ],
22
- "_resolved": "https://nexus.syncfusion.com/repository/ej2-hotfix-new/@syncfusion/ej2-react-pivotview/-/ej2-react-pivotview-20.4.42.tgz",
23
- "_shasum": "af834bed039a7655037ff6e9681cb5c985726112",
22
+ "_resolved": "https://nexus.syncfusion.com/repository/ej2-hotfix-new/@syncfusion/ej2-react-pivotview/-/ej2-react-pivotview-20.4.44.tgz",
23
+ "_shasum": "41d26e100336c717c864694031bad14d0009bbba",
24
24
  "_spec": "@syncfusion/ej2-react-pivotview@*",
25
25
  "_where": "/jenkins/workspace/ease-automation_release_19.1.0.1/packages/included",
26
26
  "author": {
@@ -31,9 +31,9 @@
31
31
  },
32
32
  "bundleDependencies": false,
33
33
  "dependencies": {
34
- "@syncfusion/ej2-base": "~20.4.42",
35
- "@syncfusion/ej2-pivotview": "20.4.43",
36
- "@syncfusion/ej2-react-base": "~20.4.42"
34
+ "@syncfusion/ej2-base": "~20.4.48",
35
+ "@syncfusion/ej2-pivotview": "20.4.48",
36
+ "@syncfusion/ej2-react-base": "~20.4.48"
37
37
  },
38
38
  "deprecated": false,
39
39
  "description": "The pivot grid, or pivot table, is used to visualize large sets of relational data in a cross-tabular format, similar to an Excel pivot table. for React",
@@ -53,6 +53,6 @@
53
53
  "type": "git",
54
54
  "url": "git+https://github.com/syncfusion/ej2-react-ui-components.git"
55
55
  },
56
- "version": "20.4.43",
56
+ "version": "20.4.48",
57
57
  "sideEffects": false
58
58
  }
@@ -950,6 +950,9 @@
950
950
  .e-pivotview .e-pivot-format-dialog .e-pivot-format-table {
951
951
  width: 100%;
952
952
  }
953
+ .e-pivotview .e-toolbar .e-tbar-btn {
954
+ background-color: transparent;
955
+ }
953
956
  .e-pivotview .e-grid .e-rowsheader.e-active,
954
957
  .e-pivotview .e-grid .e-rowsheader.e-cellselectionbackground,
955
958
  .e-pivotview .e-grid .e-columnsheader.e-active,
@@ -949,6 +949,9 @@
949
949
  .e-pivotview .e-pivot-format-dialog .e-pivot-format-table {
950
950
  width: 100%;
951
951
  }
952
+ .e-pivotview .e-toolbar .e-tbar-btn {
953
+ background-color: transparent;
954
+ }
952
955
  .e-pivotview .e-grid .e-rowsheader.e-active,
953
956
  .e-pivotview .e-grid .e-rowsheader.e-cellselectionbackground,
954
957
  .e-pivotview .e-grid .e-columnsheader.e-active,
@@ -590,12 +590,6 @@
590
590
  .e-pivotview .e-pivot-toolbar .e-toolbar-items {
591
591
  background: #f2f4f6;
592
592
  }
593
- .e-pivotview .e-pivot-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn.e-control {
594
- background: #f2f4f6;
595
- }
596
- .e-pivotview .e-pivot-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn.e-control:hover {
597
- background: #6c757d;
598
- }
599
593
  .e-pivotview .e-pivot-toolbar .e-toolbar-item .e-tbar-btn.e-btn .e-icons.e-btn-icon {
600
594
  font-size: 16px;
601
595
  }
@@ -1010,6 +1004,9 @@
1010
1004
  .e-pivotview .e-pivot-format-dialog .e-pivot-format-table {
1011
1005
  width: 100%;
1012
1006
  }
1007
+ .e-pivotview .e-toolbar .e-tbar-btn {
1008
+ background-color: transparent;
1009
+ }
1013
1010
  .e-pivotview .e-grid .e-rowsheader.e-active,
1014
1011
  .e-pivotview .e-grid .e-rowsheader.e-cellselectionbackground,
1015
1012
  .e-pivotview .e-grid .e-columnsheader.e-active,
@@ -952,6 +952,9 @@
952
952
  .e-pivotview .e-pivot-format-dialog .e-pivot-format-table {
953
953
  width: 100%;
954
954
  }
955
+ .e-pivotview .e-toolbar .e-tbar-btn {
956
+ background-color: transparent;
957
+ }
955
958
  .e-pivotview .e-grid .e-rowsheader.e-active,
956
959
  .e-pivotview .e-grid .e-rowsheader.e-cellselectionbackground,
957
960
  .e-pivotview .e-grid .e-columnsheader.e-active,
@@ -954,6 +954,9 @@
954
954
  .e-pivotview .e-pivot-format-dialog .e-pivot-format-table {
955
955
  width: 100%;
956
956
  }
957
+ .e-pivotview .e-toolbar .e-tbar-btn {
958
+ background-color: transparent;
959
+ }
957
960
  .e-pivotview .e-grid .e-rowsheader.e-active,
958
961
  .e-pivotview .e-grid .e-rowsheader.e-cellselectionbackground,
959
962
  .e-pivotview .e-grid .e-columnsheader.e-active,
@@ -559,12 +559,6 @@
559
559
  .e-pivotview .e-pivot-toolbar .e-toolbar-items {
560
560
  background: #282727;
561
561
  }
562
- .e-pivotview .e-pivot-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn.e-control {
563
- background: #282727;
564
- }
565
- .e-pivotview .e-pivot-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn.e-control:hover {
566
- background: #414040;
567
- }
568
562
  .e-pivotview .e-pivot-toolbar .e-toolbar-item .e-tbar-btn.e-btn .e-icons.e-btn-icon {
569
563
  font-size: 16px;
570
564
  }
@@ -582,6 +576,10 @@
582
576
  margin-right: 0;
583
577
  font-size: 16px;
584
578
  }
579
+ .e-pivotview .e-pivot-toolbar .e-pivot-toolbar-menu ul.e-menu {
580
+ padding-right: 0 !important;
581
+ padding-left: 0 !important;
582
+ }
585
583
  .e-pivotview .e-pivot-toolbar .e-tab .e-tab-header .e-toolbar-item.e-active {
586
584
  margin-left: 18px !important;
587
585
  /* stylelint-enable */
@@ -960,6 +958,9 @@
960
958
  .e-pivotview .e-pivot-format-dialog .e-pivot-format-table {
961
959
  width: 100%;
962
960
  }
961
+ .e-pivotview .e-toolbar .e-tbar-btn {
962
+ background-color: transparent;
963
+ }
963
964
  .e-pivotview .e-grid .e-rowsheader.e-active,
964
965
  .e-pivotview .e-grid .e-rowsheader.e-cellselectionbackground,
965
966
  .e-pivotview .e-grid .e-columnsheader.e-active,
package/styles/fabric.css CHANGED
@@ -559,9 +559,6 @@
559
559
  .e-pivotview .e-pivot-toolbar .e-toolbar-items {
560
560
  background: #f4f4f4;
561
561
  }
562
- .e-pivotview .e-pivot-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn.e-control {
563
- background: #f4f4f4;
564
- }
565
562
  .e-pivotview .e-pivot-toolbar .e-toolbar-item .e-tbar-btn.e-btn .e-icons.e-btn-icon {
566
563
  font-size: 16px;
567
564
  }
@@ -579,6 +576,10 @@
579
576
  margin-right: 0;
580
577
  font-size: 16px;
581
578
  }
579
+ .e-pivotview .e-pivot-toolbar .e-pivot-toolbar-menu ul.e-menu {
580
+ padding-right: 0 !important;
581
+ padding-left: 0 !important;
582
+ }
582
583
  .e-pivotview .e-pivot-toolbar .e-tab .e-tab-header .e-toolbar-item.e-active {
583
584
  margin-left: 18px !important;
584
585
  /* stylelint-enable */
@@ -962,6 +963,9 @@
962
963
  .e-pivotview .e-pivot-format-dialog .e-pivot-format-table {
963
964
  width: 100%;
964
965
  }
966
+ .e-pivotview .e-toolbar .e-tbar-btn {
967
+ background-color: transparent;
968
+ }
965
969
  .e-pivotview .e-grid .e-rowsheader.e-active,
966
970
  .e-pivotview .e-grid .e-rowsheader.e-cellselectionbackground,
967
971
  .e-pivotview .e-grid .e-columnsheader.e-active,
@@ -977,6 +977,9 @@
977
977
  .e-pivotview .e-pivot-format-dialog .e-pivot-format-table {
978
978
  width: 100%;
979
979
  }
980
+ .e-pivotview .e-toolbar .e-tbar-btn {
981
+ background-color: transparent;
982
+ }
980
983
  .e-pivotview .e-grid .e-rowsheader.e-active,
981
984
  .e-pivotview .e-grid .e-rowsheader.e-cellselectionbackground,
982
985
  .e-pivotview .e-grid .e-columnsheader.e-active,
package/styles/fluent.css CHANGED
@@ -979,6 +979,9 @@
979
979
  .e-pivotview .e-pivot-format-dialog .e-pivot-format-table {
980
980
  width: 100%;
981
981
  }
982
+ .e-pivotview .e-toolbar .e-tbar-btn {
983
+ background-color: transparent;
984
+ }
982
985
  .e-pivotview .e-grid .e-rowsheader.e-active,
983
986
  .e-pivotview .e-grid .e-rowsheader.e-cellselectionbackground,
984
987
  .e-pivotview .e-grid .e-columnsheader.e-active,
@@ -558,9 +558,6 @@
558
558
  .e-pivotview .e-pivot-toolbar .e-toolbar-items {
559
559
  background: #d8d8d8;
560
560
  }
561
- .e-pivotview .e-pivot-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn.e-control {
562
- background: #d8d8d8;
563
- }
564
561
  .e-pivotview .e-pivot-toolbar .e-toolbar-item .e-tbar-btn.e-btn .e-icons.e-btn-icon {
565
562
  font-size: 16px;
566
563
  }
@@ -578,6 +575,10 @@
578
575
  margin-right: 0;
579
576
  font-size: 16px;
580
577
  }
578
+ .e-pivotview .e-pivot-toolbar .e-pivot-toolbar-menu ul.e-menu {
579
+ padding-right: 0 !important;
580
+ padding-left: 0 !important;
581
+ }
581
582
  .e-pivotview .e-pivot-toolbar .e-tab .e-tab-header .e-toolbar-item.e-active {
582
583
  margin-left: 18px !important;
583
584
  /* stylelint-enable */
@@ -952,6 +953,10 @@
952
953
  .e-pivotview .e-pivot-format-dialog .e-pivot-format-table {
953
954
  width: 100%;
954
955
  }
956
+ .e-pivotview .e-toolbar .e-tbar-btn {
957
+ background-color: transparent;
958
+ border: none !important;
959
+ }
955
960
  .e-pivotview .e-grid .e-rowsheader.e-active,
956
961
  .e-pivotview .e-grid .e-rowsheader.e-cellselectionbackground,
957
962
  .e-pivotview .e-grid .e-columnsheader.e-active,
@@ -558,9 +558,6 @@
558
558
  .e-pivotview .e-pivot-toolbar .e-toolbar-items {
559
559
  background: #262626;
560
560
  }
561
- .e-pivotview .e-pivot-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn.e-control {
562
- background: #262626;
563
- }
564
561
  .e-pivotview .e-pivot-toolbar .e-toolbar-item .e-tbar-btn.e-btn .e-icons.e-btn-icon {
565
562
  font-size: 16px;
566
563
  }
@@ -578,6 +575,10 @@
578
575
  margin-right: 0;
579
576
  font-size: 16px;
580
577
  }
578
+ .e-pivotview .e-pivot-toolbar .e-pivot-toolbar-menu ul.e-menu {
579
+ padding-right: 0 !important;
580
+ padding-left: 0 !important;
581
+ }
581
582
  .e-pivotview .e-pivot-toolbar .e-tab .e-tab-header .e-toolbar-item.e-active {
582
583
  margin-left: 18px !important;
583
584
  /* stylelint-enable */
@@ -952,6 +953,10 @@
952
953
  .e-pivotview .e-pivot-format-dialog .e-pivot-format-table {
953
954
  width: 100%;
954
955
  }
956
+ .e-pivotview .e-toolbar .e-tbar-btn {
957
+ background-color: transparent;
958
+ border: none !important;
959
+ }
955
960
  .e-pivotview .e-grid .e-rowsheader.e-active,
956
961
  .e-pivotview .e-grid .e-rowsheader.e-cellselectionbackground,
957
962
  .e-pivotview .e-grid .e-columnsheader.e-active,
@@ -949,6 +949,9 @@
949
949
  .e-pivotview .e-pivot-format-dialog .e-pivot-format-table {
950
950
  width: 100%;
951
951
  }
952
+ .e-pivotview .e-toolbar .e-tbar-btn {
953
+ background-color: transparent;
954
+ }
952
955
  .e-pivotview .e-grid .e-rowsheader.e-active,
953
956
  .e-pivotview .e-grid .e-rowsheader.e-cellselectionbackground,
954
957
  .e-pivotview .e-grid .e-columnsheader.e-active,
@@ -560,12 +560,6 @@
560
560
  .e-pivotview .e-pivot-toolbar .e-toolbar-items {
561
561
  background: #f5f5f5;
562
562
  }
563
- .e-pivotview .e-pivot-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn.e-control {
564
- background: #f5f5f5;
565
- }
566
- .e-pivotview .e-pivot-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn.e-control:hover {
567
- background: rgba(0, 0, 0, 0.12);
568
- }
569
563
  .e-pivotview .e-pivot-toolbar .e-toolbar-item .e-tbar-btn.e-btn .e-icons.e-btn-icon {
570
564
  font-size: 16px;
571
565
  }
@@ -956,6 +950,9 @@
956
950
  .e-pivotview .e-pivot-format-dialog .e-pivot-format-table {
957
951
  width: 100%;
958
952
  }
953
+ .e-pivotview .e-toolbar .e-tbar-btn {
954
+ background-color: transparent;
955
+ }
959
956
  .e-pivotview .e-grid .e-rowsheader.e-active,
960
957
  .e-pivotview .e-grid .e-rowsheader.e-cellselectionbackground,
961
958
  .e-pivotview .e-grid .e-columnsheader.e-active,
@@ -950,6 +950,9 @@
950
950
  .e-pivotview .e-pivot-format-dialog .e-pivot-format-table {
951
951
  width: 100%;
952
952
  }
953
+ .e-pivotview .e-toolbar .e-tbar-btn {
954
+ background-color: transparent;
955
+ }
953
956
  .e-pivotview .e-grid .e-rowsheader.e-active,
954
957
  .e-pivotview .e-grid .e-rowsheader.e-cellselectionbackground,
955
958
  .e-pivotview .e-grid .e-columnsheader.e-active,
@@ -949,6 +949,9 @@
949
949
  .e-pivotview .e-pivot-format-dialog .e-pivot-format-table {
950
950
  width: 100%;
951
951
  }
952
+ .e-pivotview .e-toolbar .e-tbar-btn {
953
+ background-color: transparent;
954
+ }
952
955
  .e-pivotview .e-grid .e-rowsheader.e-active,
953
956
  .e-pivotview .e-grid .e-rowsheader.e-cellselectionbackground,
954
957
  .e-pivotview .e-grid .e-columnsheader.e-active,
@@ -590,12 +590,6 @@
590
590
  .e-pivotview .e-pivot-toolbar .e-toolbar-items {
591
591
  background: #f2f4f6;
592
592
  }
593
- .e-pivotview .e-pivot-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn.e-control {
594
- background: #f2f4f6;
595
- }
596
- .e-pivotview .e-pivot-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn.e-control:hover {
597
- background: #6c757d;
598
- }
599
593
  .e-pivotview .e-pivot-toolbar .e-toolbar-item .e-tbar-btn.e-btn .e-icons.e-btn-icon {
600
594
  font-size: 16px;
601
595
  }
@@ -1010,6 +1004,9 @@
1010
1004
  .e-pivotview .e-pivot-format-dialog .e-pivot-format-table {
1011
1005
  width: 100%;
1012
1006
  }
1007
+ .e-pivotview .e-toolbar .e-tbar-btn {
1008
+ background-color: transparent;
1009
+ }
1013
1010
  .e-pivotview .e-grid .e-rowsheader.e-active,
1014
1011
  .e-pivotview .e-grid .e-rowsheader.e-cellselectionbackground,
1015
1012
  .e-pivotview .e-grid .e-columnsheader.e-active,
@@ -952,6 +952,9 @@
952
952
  .e-pivotview .e-pivot-format-dialog .e-pivot-format-table {
953
953
  width: 100%;
954
954
  }
955
+ .e-pivotview .e-toolbar .e-tbar-btn {
956
+ background-color: transparent;
957
+ }
955
958
  .e-pivotview .e-grid .e-rowsheader.e-active,
956
959
  .e-pivotview .e-grid .e-rowsheader.e-cellselectionbackground,
957
960
  .e-pivotview .e-grid .e-columnsheader.e-active,
@@ -954,6 +954,9 @@
954
954
  .e-pivotview .e-pivot-format-dialog .e-pivot-format-table {
955
955
  width: 100%;
956
956
  }
957
+ .e-pivotview .e-toolbar .e-tbar-btn {
958
+ background-color: transparent;
959
+ }
957
960
  .e-pivotview .e-grid .e-rowsheader.e-active,
958
961
  .e-pivotview .e-grid .e-rowsheader.e-cellselectionbackground,
959
962
  .e-pivotview .e-grid .e-columnsheader.e-active,
@@ -559,12 +559,6 @@
559
559
  .e-pivotview .e-pivot-toolbar .e-toolbar-items {
560
560
  background: #282727;
561
561
  }
562
- .e-pivotview .e-pivot-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn.e-control {
563
- background: #282727;
564
- }
565
- .e-pivotview .e-pivot-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn.e-control:hover {
566
- background: #414040;
567
- }
568
562
  .e-pivotview .e-pivot-toolbar .e-toolbar-item .e-tbar-btn.e-btn .e-icons.e-btn-icon {
569
563
  font-size: 16px;
570
564
  }
@@ -582,6 +576,10 @@
582
576
  margin-right: 0;
583
577
  font-size: 16px;
584
578
  }
579
+ .e-pivotview .e-pivot-toolbar .e-pivot-toolbar-menu ul.e-menu {
580
+ padding-right: 0 !important;
581
+ padding-left: 0 !important;
582
+ }
585
583
  .e-pivotview .e-pivot-toolbar .e-tab .e-tab-header .e-toolbar-item.e-active {
586
584
  margin-left: 18px !important;
587
585
  /* stylelint-enable */
@@ -960,6 +958,9 @@
960
958
  .e-pivotview .e-pivot-format-dialog .e-pivot-format-table {
961
959
  width: 100%;
962
960
  }
961
+ .e-pivotview .e-toolbar .e-tbar-btn {
962
+ background-color: transparent;
963
+ }
963
964
  .e-pivotview .e-grid .e-rowsheader.e-active,
964
965
  .e-pivotview .e-grid .e-rowsheader.e-cellselectionbackground,
965
966
  .e-pivotview .e-grid .e-columnsheader.e-active,
@@ -559,9 +559,6 @@
559
559
  .e-pivotview .e-pivot-toolbar .e-toolbar-items {
560
560
  background: #f4f4f4;
561
561
  }
562
- .e-pivotview .e-pivot-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn.e-control {
563
- background: #f4f4f4;
564
- }
565
562
  .e-pivotview .e-pivot-toolbar .e-toolbar-item .e-tbar-btn.e-btn .e-icons.e-btn-icon {
566
563
  font-size: 16px;
567
564
  }
@@ -579,6 +576,10 @@
579
576
  margin-right: 0;
580
577
  font-size: 16px;
581
578
  }
579
+ .e-pivotview .e-pivot-toolbar .e-pivot-toolbar-menu ul.e-menu {
580
+ padding-right: 0 !important;
581
+ padding-left: 0 !important;
582
+ }
582
583
  .e-pivotview .e-pivot-toolbar .e-tab .e-tab-header .e-toolbar-item.e-active {
583
584
  margin-left: 18px !important;
584
585
  /* stylelint-enable */
@@ -962,6 +963,9 @@
962
963
  .e-pivotview .e-pivot-format-dialog .e-pivot-format-table {
963
964
  width: 100%;
964
965
  }
966
+ .e-pivotview .e-toolbar .e-tbar-btn {
967
+ background-color: transparent;
968
+ }
965
969
  .e-pivotview .e-grid .e-rowsheader.e-active,
966
970
  .e-pivotview .e-grid .e-rowsheader.e-cellselectionbackground,
967
971
  .e-pivotview .e-grid .e-columnsheader.e-active,
@@ -977,6 +977,9 @@
977
977
  .e-pivotview .e-pivot-format-dialog .e-pivot-format-table {
978
978
  width: 100%;
979
979
  }
980
+ .e-pivotview .e-toolbar .e-tbar-btn {
981
+ background-color: transparent;
982
+ }
980
983
  .e-pivotview .e-grid .e-rowsheader.e-active,
981
984
  .e-pivotview .e-grid .e-rowsheader.e-cellselectionbackground,
982
985
  .e-pivotview .e-grid .e-columnsheader.e-active,
@@ -979,6 +979,9 @@
979
979
  .e-pivotview .e-pivot-format-dialog .e-pivot-format-table {
980
980
  width: 100%;
981
981
  }
982
+ .e-pivotview .e-toolbar .e-tbar-btn {
983
+ background-color: transparent;
984
+ }
982
985
  .e-pivotview .e-grid .e-rowsheader.e-active,
983
986
  .e-pivotview .e-grid .e-rowsheader.e-cellselectionbackground,
984
987
  .e-pivotview .e-grid .e-columnsheader.e-active,
@@ -558,9 +558,6 @@
558
558
  .e-pivotview .e-pivot-toolbar .e-toolbar-items {
559
559
  background: #d8d8d8;
560
560
  }
561
- .e-pivotview .e-pivot-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn.e-control {
562
- background: #d8d8d8;
563
- }
564
561
  .e-pivotview .e-pivot-toolbar .e-toolbar-item .e-tbar-btn.e-btn .e-icons.e-btn-icon {
565
562
  font-size: 16px;
566
563
  }
@@ -578,6 +575,10 @@
578
575
  margin-right: 0;
579
576
  font-size: 16px;
580
577
  }
578
+ .e-pivotview .e-pivot-toolbar .e-pivot-toolbar-menu ul.e-menu {
579
+ padding-right: 0 !important;
580
+ padding-left: 0 !important;
581
+ }
581
582
  .e-pivotview .e-pivot-toolbar .e-tab .e-tab-header .e-toolbar-item.e-active {
582
583
  margin-left: 18px !important;
583
584
  /* stylelint-enable */
@@ -952,6 +953,10 @@
952
953
  .e-pivotview .e-pivot-format-dialog .e-pivot-format-table {
953
954
  width: 100%;
954
955
  }
956
+ .e-pivotview .e-toolbar .e-tbar-btn {
957
+ background-color: transparent;
958
+ border: none !important;
959
+ }
955
960
  .e-pivotview .e-grid .e-rowsheader.e-active,
956
961
  .e-pivotview .e-grid .e-rowsheader.e-cellselectionbackground,
957
962
  .e-pivotview .e-grid .e-columnsheader.e-active,
@@ -558,9 +558,6 @@
558
558
  .e-pivotview .e-pivot-toolbar .e-toolbar-items {
559
559
  background: #262626;
560
560
  }
561
- .e-pivotview .e-pivot-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn.e-control {
562
- background: #262626;
563
- }
564
561
  .e-pivotview .e-pivot-toolbar .e-toolbar-item .e-tbar-btn.e-btn .e-icons.e-btn-icon {
565
562
  font-size: 16px;
566
563
  }
@@ -578,6 +575,10 @@
578
575
  margin-right: 0;
579
576
  font-size: 16px;
580
577
  }
578
+ .e-pivotview .e-pivot-toolbar .e-pivot-toolbar-menu ul.e-menu {
579
+ padding-right: 0 !important;
580
+ padding-left: 0 !important;
581
+ }
581
582
  .e-pivotview .e-pivot-toolbar .e-tab .e-tab-header .e-toolbar-item.e-active {
582
583
  margin-left: 18px !important;
583
584
  /* stylelint-enable */
@@ -952,6 +953,10 @@
952
953
  .e-pivotview .e-pivot-format-dialog .e-pivot-format-table {
953
954
  width: 100%;
954
955
  }
956
+ .e-pivotview .e-toolbar .e-tbar-btn {
957
+ background-color: transparent;
958
+ border: none !important;
959
+ }
955
960
  .e-pivotview .e-grid .e-rowsheader.e-active,
956
961
  .e-pivotview .e-grid .e-rowsheader.e-cellselectionbackground,
957
962
  .e-pivotview .e-grid .e-columnsheader.e-active,
@@ -949,6 +949,9 @@
949
949
  .e-pivotview .e-pivot-format-dialog .e-pivot-format-table {
950
950
  width: 100%;
951
951
  }
952
+ .e-pivotview .e-toolbar .e-tbar-btn {
953
+ background-color: transparent;
954
+ }
952
955
  .e-pivotview .e-grid .e-rowsheader.e-active,
953
956
  .e-pivotview .e-grid .e-rowsheader.e-cellselectionbackground,
954
957
  .e-pivotview .e-grid .e-columnsheader.e-active,
@@ -560,12 +560,6 @@
560
560
  .e-pivotview .e-pivot-toolbar .e-toolbar-items {
561
561
  background: #f5f5f5;
562
562
  }
563
- .e-pivotview .e-pivot-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn.e-control {
564
- background: #f5f5f5;
565
- }
566
- .e-pivotview .e-pivot-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn.e-control:hover {
567
- background: rgba(0, 0, 0, 0.12);
568
- }
569
563
  .e-pivotview .e-pivot-toolbar .e-toolbar-item .e-tbar-btn.e-btn .e-icons.e-btn-icon {
570
564
  font-size: 16px;
571
565
  }
@@ -956,6 +950,9 @@
956
950
  .e-pivotview .e-pivot-format-dialog .e-pivot-format-table {
957
951
  width: 100%;
958
952
  }
953
+ .e-pivotview .e-toolbar .e-tbar-btn {
954
+ background-color: transparent;
955
+ }
959
956
  .e-pivotview .e-grid .e-rowsheader.e-active,
960
957
  .e-pivotview .e-grid .e-rowsheader.e-cellselectionbackground,
961
958
  .e-pivotview .e-grid .e-columnsheader.e-active,