@syncfusion/ej2-react-pivotview 19.4.41 → 19.4.42

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,15 @@
6
6
 
7
7
  #### Bug Fixes
8
8
 
9
+ - `#SF-359726` - When exporting the Pivot Table to PDF format, styles can now be properly applied to the header and footer.
10
+ - `#SF-359726` - When exporting the Pivot Table to Excel format, the headers are now properly shown.
11
+
12
+ ## 19.4.41 (2022-01-04)
13
+
14
+ ### Pivot Table
15
+
16
+ #### Bug Fixes
17
+
9
18
  - `#I340908` - In Firefox browser, the Pivot Table is now refreshed properly with virtual scrolling.
10
19
 
11
20
  ## 19.4.40 (2021-12-28)
@@ -1,6 +1,6 @@
1
1
  /*!
2
2
  * filename: ej2-react-pivotview.umd.min.js
3
- * version : 19.4.41
3
+ * version : 19.4.42
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@19.4.40",
3
+ "_id": "@syncfusion/ej2-react-pivotview@19.4.41",
4
4
  "_inBundle": false,
5
- "_integrity": "sha512-w5SB+MwSHaFLB0S2/axpRLTKTpagQbke43vYL78n2nR80qAFjl83W8Vgc9EkdPvIq3+ZwWj9ld8A4iPB+1BuVA==",
5
+ "_integrity": "sha512-29ec4ngKUI/PgWY8uQBg8gcoo92F/y+KX7lBR+H7Cq2/aui7qsAsvmd8OyldMQyNAJOOof4jHdENY5S0AX7xcQ==",
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": "http://nexus.syncfusion.com/repository/ej2-hotfix-new/@syncfusion/ej2-react-pivotview/-/ej2-react-pivotview-19.4.40.tgz",
23
- "_shasum": "3d9f53d31dca303f3467e15514a3603cd27d3e58",
22
+ "_resolved": "http://nexus.syncfusion.com/repository/ej2-hotfix-new/@syncfusion/ej2-react-pivotview/-/ej2-react-pivotview-19.4.41.tgz",
23
+ "_shasum": "72f8612334bcd56dfebc0c03765a664d9369a417",
24
24
  "_spec": "@syncfusion/ej2-react-pivotview@*",
25
25
  "_where": "/jenkins/workspace/automation_release_19.1.0.1-ZPMUBNQ6AUYH6YGEFBPVYMEQLRRW2SLD4XCZ6GATNZJFYJ3RIAOA/packages/included",
26
26
  "author": {
@@ -31,9 +31,9 @@
31
31
  },
32
32
  "bundleDependencies": false,
33
33
  "dependencies": {
34
- "@syncfusion/ej2-base": "~19.4.38",
35
- "@syncfusion/ej2-pivotview": "19.4.41",
36
- "@syncfusion/ej2-react-base": "~19.4.38"
34
+ "@syncfusion/ej2-base": "~19.4.42",
35
+ "@syncfusion/ej2-pivotview": "19.4.42",
36
+ "@syncfusion/ej2-react-base": "~19.4.42"
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",
@@ -61,6 +61,6 @@
61
61
  "type": "git",
62
62
  "url": "git+https://github.com/syncfusion/ej2-react-ui-components.git"
63
63
  },
64
- "version": "19.4.41",
64
+ "version": "19.4.42",
65
65
  "sideEffects": false
66
66
  }
@@ -4902,14 +4902,26 @@
4902
4902
  }
4903
4903
 
4904
4904
  .e-pivotfieldlist-wrapper .e-layout-footer {
4905
+ display: -ms-flexbox;
4906
+ display: flex;
4905
4907
  padding: 10px 2px 2px;
4906
- text-align: right;
4907
4908
  }
4908
4909
 
4909
- .e-pivotfieldlist-wrapper .e-layout-footer .e-defer-apply-button {
4910
+ .e-pivotfieldlist-wrapper .e-layout-footer .e-button-layout {
4911
+ -ms-flex: auto;
4912
+ flex: auto;
4913
+ text-align: end;
4914
+ }
4915
+
4916
+ .e-pivotfieldlist-wrapper .e-layout-footer .e-button-layout .e-defer-apply-button {
4910
4917
  margin-right: 10px;
4911
4918
  }
4912
4919
 
4920
+ .e-pivotfieldlist-wrapper .e-layout-footer .e-button-layout .e-cancel-btn,
4921
+ .e-pivotfieldlist-wrapper .e-layout-footer .e-button-layout .e-defer-apply-button {
4922
+ min-width: fit-content;
4923
+ }
4924
+
4913
4925
  .e-pivotfieldlist-wrapper .e-layout-footer .e-cancel-btn,
4914
4926
  .e-pivotfieldlist-wrapper .e-layout-footer .e-defer-apply-button,
4915
4927
  .e-pivotfieldlist-wrapper .e-layout-footer .e-checkbox-layout {
@@ -4920,7 +4932,7 @@
4920
4932
  }
4921
4933
 
4922
4934
  .e-pivotfieldlist-wrapper .e-layout-footer .e-checkbox-layout .e-label {
4923
- white-space: nowrap;
4935
+ padding-right: 10px;
4924
4936
  }
4925
4937
 
4926
4938
  .e-pivotfieldlist-wrapper .e-layout-footer .e-checkbox-layout {
@@ -4932,10 +4944,6 @@
4932
4944
  margin-top: 6px;
4933
4945
  }
4934
4946
 
4935
- .e-pivotfieldlist-wrapper.e-rtl .e-layout-footer {
4936
- text-align: left;
4937
- }
4938
-
4939
4947
  .e-pivotfieldlist-wrapper.e-rtl .e-layout-footer .e-defer-apply-button {
4940
4948
  margin-left: 10px;
4941
4949
  }
@@ -6370,14 +6378,26 @@
6370
6378
  }
6371
6379
 
6372
6380
  .e-pivotfieldlist-container .e-layout-footer {
6381
+ display: -ms-flexbox;
6382
+ display: flex;
6373
6383
  padding: 10px 2px 2px;
6374
- text-align: right;
6375
6384
  }
6376
6385
 
6377
- .e-pivotfieldlist-container .e-layout-footer .e-defer-apply-button {
6386
+ .e-pivotfieldlist-container .e-layout-footer .e-button-layout {
6387
+ -ms-flex: auto;
6388
+ flex: auto;
6389
+ text-align: end;
6390
+ }
6391
+
6392
+ .e-pivotfieldlist-container .e-layout-footer .e-button-layout .e-defer-apply-button {
6378
6393
  margin-right: 10px;
6379
6394
  }
6380
6395
 
6396
+ .e-pivotfieldlist-container .e-layout-footer .e-button-layout .e-cancel-btn,
6397
+ .e-pivotfieldlist-container .e-layout-footer .e-button-layout .e-defer-apply-button {
6398
+ min-width: fit-content;
6399
+ }
6400
+
6381
6401
  .e-pivotfieldlist-container .e-layout-footer .e-cancel-btn,
6382
6402
  .e-pivotfieldlist-container .e-layout-footer .e-defer-apply-button,
6383
6403
  .e-pivotfieldlist-container .e-layout-footer .e-checkbox-layout {
@@ -6388,7 +6408,7 @@
6388
6408
  }
6389
6409
 
6390
6410
  .e-pivotfieldlist-container .e-layout-footer .e-checkbox-layout .e-label {
6391
- white-space: nowrap;
6411
+ padding-right: 10px;
6392
6412
  }
6393
6413
 
6394
6414
  .e-pivotfieldlist-container .e-layout-footer .e-checkbox-layout {
@@ -6400,10 +6420,6 @@
6400
6420
  margin-top: 6px;
6401
6421
  }
6402
6422
 
6403
- .e-pivotfieldlist-container.e-rtl .e-layout-footer {
6404
- text-align: left;
6405
- }
6406
-
6407
6423
  .e-pivotfieldlist-container.e-rtl .e-layout-footer .e-defer-apply-button {
6408
6424
  margin-left: 10px;
6409
6425
  }
@@ -4899,14 +4899,26 @@
4899
4899
  }
4900
4900
 
4901
4901
  .e-pivotfieldlist-wrapper .e-layout-footer {
4902
+ display: -ms-flexbox;
4903
+ display: flex;
4902
4904
  padding: 10px 2px 2px;
4903
- text-align: right;
4904
4905
  }
4905
4906
 
4906
- .e-pivotfieldlist-wrapper .e-layout-footer .e-defer-apply-button {
4907
+ .e-pivotfieldlist-wrapper .e-layout-footer .e-button-layout {
4908
+ -ms-flex: auto;
4909
+ flex: auto;
4910
+ text-align: end;
4911
+ }
4912
+
4913
+ .e-pivotfieldlist-wrapper .e-layout-footer .e-button-layout .e-defer-apply-button {
4907
4914
  margin-right: 10px;
4908
4915
  }
4909
4916
 
4917
+ .e-pivotfieldlist-wrapper .e-layout-footer .e-button-layout .e-cancel-btn,
4918
+ .e-pivotfieldlist-wrapper .e-layout-footer .e-button-layout .e-defer-apply-button {
4919
+ min-width: fit-content;
4920
+ }
4921
+
4910
4922
  .e-pivotfieldlist-wrapper .e-layout-footer .e-cancel-btn,
4911
4923
  .e-pivotfieldlist-wrapper .e-layout-footer .e-defer-apply-button,
4912
4924
  .e-pivotfieldlist-wrapper .e-layout-footer .e-checkbox-layout {
@@ -4917,7 +4929,7 @@
4917
4929
  }
4918
4930
 
4919
4931
  .e-pivotfieldlist-wrapper .e-layout-footer .e-checkbox-layout .e-label {
4920
- white-space: nowrap;
4932
+ padding-right: 10px;
4921
4933
  }
4922
4934
 
4923
4935
  .e-pivotfieldlist-wrapper .e-layout-footer .e-checkbox-layout {
@@ -4929,10 +4941,6 @@
4929
4941
  margin-top: 6px;
4930
4942
  }
4931
4943
 
4932
- .e-pivotfieldlist-wrapper.e-rtl .e-layout-footer {
4933
- text-align: left;
4934
- }
4935
-
4936
4944
  .e-pivotfieldlist-wrapper.e-rtl .e-layout-footer .e-defer-apply-button {
4937
4945
  margin-left: 10px;
4938
4946
  }
@@ -6367,14 +6375,26 @@
6367
6375
  }
6368
6376
 
6369
6377
  .e-pivotfieldlist-container .e-layout-footer {
6378
+ display: -ms-flexbox;
6379
+ display: flex;
6370
6380
  padding: 10px 2px 2px;
6371
- text-align: right;
6372
6381
  }
6373
6382
 
6374
- .e-pivotfieldlist-container .e-layout-footer .e-defer-apply-button {
6383
+ .e-pivotfieldlist-container .e-layout-footer .e-button-layout {
6384
+ -ms-flex: auto;
6385
+ flex: auto;
6386
+ text-align: end;
6387
+ }
6388
+
6389
+ .e-pivotfieldlist-container .e-layout-footer .e-button-layout .e-defer-apply-button {
6375
6390
  margin-right: 10px;
6376
6391
  }
6377
6392
 
6393
+ .e-pivotfieldlist-container .e-layout-footer .e-button-layout .e-cancel-btn,
6394
+ .e-pivotfieldlist-container .e-layout-footer .e-button-layout .e-defer-apply-button {
6395
+ min-width: fit-content;
6396
+ }
6397
+
6378
6398
  .e-pivotfieldlist-container .e-layout-footer .e-cancel-btn,
6379
6399
  .e-pivotfieldlist-container .e-layout-footer .e-defer-apply-button,
6380
6400
  .e-pivotfieldlist-container .e-layout-footer .e-checkbox-layout {
@@ -6385,7 +6405,7 @@
6385
6405
  }
6386
6406
 
6387
6407
  .e-pivotfieldlist-container .e-layout-footer .e-checkbox-layout .e-label {
6388
- white-space: nowrap;
6408
+ padding-right: 10px;
6389
6409
  }
6390
6410
 
6391
6411
  .e-pivotfieldlist-container .e-layout-footer .e-checkbox-layout {
@@ -6397,10 +6417,6 @@
6397
6417
  margin-top: 6px;
6398
6418
  }
6399
6419
 
6400
- .e-pivotfieldlist-container.e-rtl .e-layout-footer {
6401
- text-align: left;
6402
- }
6403
-
6404
6420
  .e-pivotfieldlist-container.e-rtl .e-layout-footer .e-defer-apply-button {
6405
6421
  margin-left: 10px;
6406
6422
  }
@@ -5202,14 +5202,26 @@
5202
5202
  }
5203
5203
 
5204
5204
  .e-pivotfieldlist-wrapper .e-layout-footer {
5205
+ display: -ms-flexbox;
5206
+ display: flex;
5205
5207
  padding: 10px 2px 2px;
5206
- text-align: right;
5207
5208
  }
5208
5209
 
5209
- .e-pivotfieldlist-wrapper .e-layout-footer .e-defer-apply-button {
5210
+ .e-pivotfieldlist-wrapper .e-layout-footer .e-button-layout {
5211
+ -ms-flex: auto;
5212
+ flex: auto;
5213
+ text-align: end;
5214
+ }
5215
+
5216
+ .e-pivotfieldlist-wrapper .e-layout-footer .e-button-layout .e-defer-apply-button {
5210
5217
  margin-right: 10px;
5211
5218
  }
5212
5219
 
5220
+ .e-pivotfieldlist-wrapper .e-layout-footer .e-button-layout .e-cancel-btn,
5221
+ .e-pivotfieldlist-wrapper .e-layout-footer .e-button-layout .e-defer-apply-button {
5222
+ min-width: fit-content;
5223
+ }
5224
+
5213
5225
  .e-pivotfieldlist-wrapper .e-layout-footer .e-cancel-btn,
5214
5226
  .e-pivotfieldlist-wrapper .e-layout-footer .e-defer-apply-button,
5215
5227
  .e-pivotfieldlist-wrapper .e-layout-footer .e-checkbox-layout {
@@ -5220,7 +5232,7 @@
5220
5232
  }
5221
5233
 
5222
5234
  .e-pivotfieldlist-wrapper .e-layout-footer .e-checkbox-layout .e-label {
5223
- white-space: nowrap;
5235
+ padding-right: 10px;
5224
5236
  }
5225
5237
 
5226
5238
  .e-pivotfieldlist-wrapper .e-layout-footer .e-checkbox-layout {
@@ -5232,10 +5244,6 @@
5232
5244
  margin-top: 6px;
5233
5245
  }
5234
5246
 
5235
- .e-pivotfieldlist-wrapper.e-rtl .e-layout-footer {
5236
- text-align: left;
5237
- }
5238
-
5239
5247
  .e-pivotfieldlist-wrapper.e-rtl .e-layout-footer .e-defer-apply-button {
5240
5248
  margin-left: 10px;
5241
5249
  }
@@ -6675,14 +6683,26 @@
6675
6683
  }
6676
6684
 
6677
6685
  .e-pivotfieldlist-container .e-layout-footer {
6686
+ display: -ms-flexbox;
6687
+ display: flex;
6678
6688
  padding: 10px 2px 2px;
6679
- text-align: right;
6680
6689
  }
6681
6690
 
6682
- .e-pivotfieldlist-container .e-layout-footer .e-defer-apply-button {
6691
+ .e-pivotfieldlist-container .e-layout-footer .e-button-layout {
6692
+ -ms-flex: auto;
6693
+ flex: auto;
6694
+ text-align: end;
6695
+ }
6696
+
6697
+ .e-pivotfieldlist-container .e-layout-footer .e-button-layout .e-defer-apply-button {
6683
6698
  margin-right: 10px;
6684
6699
  }
6685
6700
 
6701
+ .e-pivotfieldlist-container .e-layout-footer .e-button-layout .e-cancel-btn,
6702
+ .e-pivotfieldlist-container .e-layout-footer .e-button-layout .e-defer-apply-button {
6703
+ min-width: fit-content;
6704
+ }
6705
+
6686
6706
  .e-pivotfieldlist-container .e-layout-footer .e-cancel-btn,
6687
6707
  .e-pivotfieldlist-container .e-layout-footer .e-defer-apply-button,
6688
6708
  .e-pivotfieldlist-container .e-layout-footer .e-checkbox-layout {
@@ -6693,7 +6713,7 @@
6693
6713
  }
6694
6714
 
6695
6715
  .e-pivotfieldlist-container .e-layout-footer .e-checkbox-layout .e-label {
6696
- white-space: nowrap;
6716
+ padding-right: 10px;
6697
6717
  }
6698
6718
 
6699
6719
  .e-pivotfieldlist-container .e-layout-footer .e-checkbox-layout {
@@ -6705,10 +6725,6 @@
6705
6725
  margin-top: 6px;
6706
6726
  }
6707
6727
 
6708
- .e-pivotfieldlist-container.e-rtl .e-layout-footer {
6709
- text-align: left;
6710
- }
6711
-
6712
6728
  .e-pivotfieldlist-container.e-rtl .e-layout-footer .e-defer-apply-button {
6713
6729
  margin-left: 10px;
6714
6730
  }
@@ -4961,14 +4961,26 @@
4961
4961
  }
4962
4962
 
4963
4963
  .e-pivotfieldlist-wrapper .e-layout-footer {
4964
+ display: -ms-flexbox;
4965
+ display: flex;
4964
4966
  padding: 10px 2px 2px;
4965
- text-align: right;
4966
4967
  }
4967
4968
 
4968
- .e-pivotfieldlist-wrapper .e-layout-footer .e-defer-apply-button {
4969
+ .e-pivotfieldlist-wrapper .e-layout-footer .e-button-layout {
4970
+ -ms-flex: auto;
4971
+ flex: auto;
4972
+ text-align: end;
4973
+ }
4974
+
4975
+ .e-pivotfieldlist-wrapper .e-layout-footer .e-button-layout .e-defer-apply-button {
4969
4976
  margin-right: 10px;
4970
4977
  }
4971
4978
 
4979
+ .e-pivotfieldlist-wrapper .e-layout-footer .e-button-layout .e-cancel-btn,
4980
+ .e-pivotfieldlist-wrapper .e-layout-footer .e-button-layout .e-defer-apply-button {
4981
+ min-width: fit-content;
4982
+ }
4983
+
4972
4984
  .e-pivotfieldlist-wrapper .e-layout-footer .e-cancel-btn,
4973
4985
  .e-pivotfieldlist-wrapper .e-layout-footer .e-defer-apply-button,
4974
4986
  .e-pivotfieldlist-wrapper .e-layout-footer .e-checkbox-layout {
@@ -4979,7 +4991,7 @@
4979
4991
  }
4980
4992
 
4981
4993
  .e-pivotfieldlist-wrapper .e-layout-footer .e-checkbox-layout .e-label {
4982
- white-space: nowrap;
4994
+ padding-right: 10px;
4983
4995
  }
4984
4996
 
4985
4997
  .e-pivotfieldlist-wrapper .e-layout-footer .e-checkbox-layout {
@@ -4991,10 +5003,6 @@
4991
5003
  margin-top: 6px;
4992
5004
  }
4993
5005
 
4994
- .e-pivotfieldlist-wrapper.e-rtl .e-layout-footer {
4995
- text-align: left;
4996
- }
4997
-
4998
5006
  .e-pivotfieldlist-wrapper.e-rtl .e-layout-footer .e-defer-apply-button {
4999
5007
  margin-left: 10px;
5000
5008
  }
@@ -6461,14 +6469,26 @@
6461
6469
  }
6462
6470
 
6463
6471
  .e-pivotfieldlist-container .e-layout-footer {
6472
+ display: -ms-flexbox;
6473
+ display: flex;
6464
6474
  padding: 10px 2px 2px;
6465
- text-align: right;
6466
6475
  }
6467
6476
 
6468
- .e-pivotfieldlist-container .e-layout-footer .e-defer-apply-button {
6477
+ .e-pivotfieldlist-container .e-layout-footer .e-button-layout {
6478
+ -ms-flex: auto;
6479
+ flex: auto;
6480
+ text-align: end;
6481
+ }
6482
+
6483
+ .e-pivotfieldlist-container .e-layout-footer .e-button-layout .e-defer-apply-button {
6469
6484
  margin-right: 10px;
6470
6485
  }
6471
6486
 
6487
+ .e-pivotfieldlist-container .e-layout-footer .e-button-layout .e-cancel-btn,
6488
+ .e-pivotfieldlist-container .e-layout-footer .e-button-layout .e-defer-apply-button {
6489
+ min-width: fit-content;
6490
+ }
6491
+
6472
6492
  .e-pivotfieldlist-container .e-layout-footer .e-cancel-btn,
6473
6493
  .e-pivotfieldlist-container .e-layout-footer .e-defer-apply-button,
6474
6494
  .e-pivotfieldlist-container .e-layout-footer .e-checkbox-layout {
@@ -6479,7 +6499,7 @@
6479
6499
  }
6480
6500
 
6481
6501
  .e-pivotfieldlist-container .e-layout-footer .e-checkbox-layout .e-label {
6482
- white-space: nowrap;
6502
+ padding-right: 10px;
6483
6503
  }
6484
6504
 
6485
6505
  .e-pivotfieldlist-container .e-layout-footer .e-checkbox-layout {
@@ -6491,10 +6511,6 @@
6491
6511
  margin-top: 6px;
6492
6512
  }
6493
6513
 
6494
- .e-pivotfieldlist-container.e-rtl .e-layout-footer {
6495
- text-align: left;
6496
- }
6497
-
6498
6514
  .e-pivotfieldlist-container.e-rtl .e-layout-footer .e-defer-apply-button {
6499
6515
  margin-left: 10px;
6500
6516
  }
@@ -4963,14 +4963,26 @@
4963
4963
  }
4964
4964
 
4965
4965
  .e-pivotfieldlist-wrapper .e-layout-footer {
4966
+ display: -ms-flexbox;
4967
+ display: flex;
4966
4968
  padding: 10px 2px 2px;
4967
- text-align: right;
4968
4969
  }
4969
4970
 
4970
- .e-pivotfieldlist-wrapper .e-layout-footer .e-defer-apply-button {
4971
+ .e-pivotfieldlist-wrapper .e-layout-footer .e-button-layout {
4972
+ -ms-flex: auto;
4973
+ flex: auto;
4974
+ text-align: end;
4975
+ }
4976
+
4977
+ .e-pivotfieldlist-wrapper .e-layout-footer .e-button-layout .e-defer-apply-button {
4971
4978
  margin-right: 10px;
4972
4979
  }
4973
4980
 
4981
+ .e-pivotfieldlist-wrapper .e-layout-footer .e-button-layout .e-cancel-btn,
4982
+ .e-pivotfieldlist-wrapper .e-layout-footer .e-button-layout .e-defer-apply-button {
4983
+ min-width: fit-content;
4984
+ }
4985
+
4974
4986
  .e-pivotfieldlist-wrapper .e-layout-footer .e-cancel-btn,
4975
4987
  .e-pivotfieldlist-wrapper .e-layout-footer .e-defer-apply-button,
4976
4988
  .e-pivotfieldlist-wrapper .e-layout-footer .e-checkbox-layout {
@@ -4981,7 +4993,7 @@
4981
4993
  }
4982
4994
 
4983
4995
  .e-pivotfieldlist-wrapper .e-layout-footer .e-checkbox-layout .e-label {
4984
- white-space: nowrap;
4996
+ padding-right: 10px;
4985
4997
  }
4986
4998
 
4987
4999
  .e-pivotfieldlist-wrapper .e-layout-footer .e-checkbox-layout {
@@ -4993,10 +5005,6 @@
4993
5005
  margin-top: 6px;
4994
5006
  }
4995
5007
 
4996
- .e-pivotfieldlist-wrapper.e-rtl .e-layout-footer {
4997
- text-align: left;
4998
- }
4999
-
5000
5008
  .e-pivotfieldlist-wrapper.e-rtl .e-layout-footer .e-defer-apply-button {
5001
5009
  margin-left: 10px;
5002
5010
  }
@@ -6463,14 +6471,26 @@
6463
6471
  }
6464
6472
 
6465
6473
  .e-pivotfieldlist-container .e-layout-footer {
6474
+ display: -ms-flexbox;
6475
+ display: flex;
6466
6476
  padding: 10px 2px 2px;
6467
- text-align: right;
6468
6477
  }
6469
6478
 
6470
- .e-pivotfieldlist-container .e-layout-footer .e-defer-apply-button {
6479
+ .e-pivotfieldlist-container .e-layout-footer .e-button-layout {
6480
+ -ms-flex: auto;
6481
+ flex: auto;
6482
+ text-align: end;
6483
+ }
6484
+
6485
+ .e-pivotfieldlist-container .e-layout-footer .e-button-layout .e-defer-apply-button {
6471
6486
  margin-right: 10px;
6472
6487
  }
6473
6488
 
6489
+ .e-pivotfieldlist-container .e-layout-footer .e-button-layout .e-cancel-btn,
6490
+ .e-pivotfieldlist-container .e-layout-footer .e-button-layout .e-defer-apply-button {
6491
+ min-width: fit-content;
6492
+ }
6493
+
6474
6494
  .e-pivotfieldlist-container .e-layout-footer .e-cancel-btn,
6475
6495
  .e-pivotfieldlist-container .e-layout-footer .e-defer-apply-button,
6476
6496
  .e-pivotfieldlist-container .e-layout-footer .e-checkbox-layout {
@@ -6481,7 +6501,7 @@
6481
6501
  }
6482
6502
 
6483
6503
  .e-pivotfieldlist-container .e-layout-footer .e-checkbox-layout .e-label {
6484
- white-space: nowrap;
6504
+ padding-right: 10px;
6485
6505
  }
6486
6506
 
6487
6507
  .e-pivotfieldlist-container .e-layout-footer .e-checkbox-layout {
@@ -6493,10 +6513,6 @@
6493
6513
  margin-top: 6px;
6494
6514
  }
6495
6515
 
6496
- .e-pivotfieldlist-container.e-rtl .e-layout-footer {
6497
- text-align: left;
6498
- }
6499
-
6500
6516
  .e-pivotfieldlist-container.e-rtl .e-layout-footer .e-defer-apply-button {
6501
6517
  margin-left: 10px;
6502
6518
  }
@@ -4897,14 +4897,26 @@
4897
4897
  }
4898
4898
 
4899
4899
  .e-pivotfieldlist-wrapper .e-layout-footer {
4900
+ display: -ms-flexbox;
4901
+ display: flex;
4900
4902
  padding: 10px 2px 2px;
4901
- text-align: right;
4902
4903
  }
4903
4904
 
4904
- .e-pivotfieldlist-wrapper .e-layout-footer .e-defer-apply-button {
4905
+ .e-pivotfieldlist-wrapper .e-layout-footer .e-button-layout {
4906
+ -ms-flex: auto;
4907
+ flex: auto;
4908
+ text-align: end;
4909
+ }
4910
+
4911
+ .e-pivotfieldlist-wrapper .e-layout-footer .e-button-layout .e-defer-apply-button {
4905
4912
  margin-right: 10px;
4906
4913
  }
4907
4914
 
4915
+ .e-pivotfieldlist-wrapper .e-layout-footer .e-button-layout .e-cancel-btn,
4916
+ .e-pivotfieldlist-wrapper .e-layout-footer .e-button-layout .e-defer-apply-button {
4917
+ min-width: fit-content;
4918
+ }
4919
+
4908
4920
  .e-pivotfieldlist-wrapper .e-layout-footer .e-cancel-btn,
4909
4921
  .e-pivotfieldlist-wrapper .e-layout-footer .e-defer-apply-button,
4910
4922
  .e-pivotfieldlist-wrapper .e-layout-footer .e-checkbox-layout {
@@ -4915,7 +4927,7 @@
4915
4927
  }
4916
4928
 
4917
4929
  .e-pivotfieldlist-wrapper .e-layout-footer .e-checkbox-layout .e-label {
4918
- white-space: nowrap;
4930
+ padding-right: 10px;
4919
4931
  }
4920
4932
 
4921
4933
  .e-pivotfieldlist-wrapper .e-layout-footer .e-checkbox-layout {
@@ -4927,10 +4939,6 @@
4927
4939
  margin-top: 6px;
4928
4940
  }
4929
4941
 
4930
- .e-pivotfieldlist-wrapper.e-rtl .e-layout-footer {
4931
- text-align: left;
4932
- }
4933
-
4934
4942
  .e-pivotfieldlist-wrapper.e-rtl .e-layout-footer .e-defer-apply-button {
4935
4943
  margin-left: 10px;
4936
4944
  }
@@ -6365,14 +6373,26 @@
6365
6373
  }
6366
6374
 
6367
6375
  .e-pivotfieldlist-container .e-layout-footer {
6376
+ display: -ms-flexbox;
6377
+ display: flex;
6368
6378
  padding: 10px 2px 2px;
6369
- text-align: right;
6370
6379
  }
6371
6380
 
6372
- .e-pivotfieldlist-container .e-layout-footer .e-defer-apply-button {
6381
+ .e-pivotfieldlist-container .e-layout-footer .e-button-layout {
6382
+ -ms-flex: auto;
6383
+ flex: auto;
6384
+ text-align: end;
6385
+ }
6386
+
6387
+ .e-pivotfieldlist-container .e-layout-footer .e-button-layout .e-defer-apply-button {
6373
6388
  margin-right: 10px;
6374
6389
  }
6375
6390
 
6391
+ .e-pivotfieldlist-container .e-layout-footer .e-button-layout .e-cancel-btn,
6392
+ .e-pivotfieldlist-container .e-layout-footer .e-button-layout .e-defer-apply-button {
6393
+ min-width: fit-content;
6394
+ }
6395
+
6376
6396
  .e-pivotfieldlist-container .e-layout-footer .e-cancel-btn,
6377
6397
  .e-pivotfieldlist-container .e-layout-footer .e-defer-apply-button,
6378
6398
  .e-pivotfieldlist-container .e-layout-footer .e-checkbox-layout {
@@ -6383,7 +6403,7 @@
6383
6403
  }
6384
6404
 
6385
6405
  .e-pivotfieldlist-container .e-layout-footer .e-checkbox-layout .e-label {
6386
- white-space: nowrap;
6406
+ padding-right: 10px;
6387
6407
  }
6388
6408
 
6389
6409
  .e-pivotfieldlist-container .e-layout-footer .e-checkbox-layout {
@@ -6395,10 +6415,6 @@
6395
6415
  margin-top: 6px;
6396
6416
  }
6397
6417
 
6398
- .e-pivotfieldlist-container.e-rtl .e-layout-footer {
6399
- text-align: left;
6400
- }
6401
-
6402
6418
  .e-pivotfieldlist-container.e-rtl .e-layout-footer .e-defer-apply-button {
6403
6419
  margin-left: 10px;
6404
6420
  }