@syncfusion/ej2-vue-pivotview 19.2.51 → 19.3.43
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 +34 -0
- package/dist/ej2-vue-pivotview.umd.min.js +11 -2
- package/dist/ej2-vue-pivotview.umd.min.js.map +1 -1
- package/dist/es6/ej2-vue-pivotview.es2015.js +49 -1
- package/dist/es6/ej2-vue-pivotview.es2015.js.map +1 -1
- package/dist/es6/ej2-vue-pivotview.es5.js +53 -1
- package/dist/es6/ej2-vue-pivotview.es5.js.map +1 -1
- package/package.json +8 -8
- package/src/pivotfieldlist/pivotfieldlist.component.d.ts +2 -0
- package/src/pivotfieldlist/pivotfieldlist.component.js +27 -1
- package/src/pivotview/pivotview.component.d.ts +2 -0
- package/src/pivotview/pivotview.component.js +27 -1
- package/styles/bootstrap-dark.css +34 -49
- package/styles/bootstrap.css +35 -50
- package/styles/bootstrap4.css +76 -92
- package/styles/bootstrap5-dark.css +8780 -0
- package/styles/bootstrap5-dark.scss +2 -0
- package/styles/bootstrap5.css +8780 -0
- package/styles/bootstrap5.scss +2 -0
- package/styles/fabric-dark.css +38 -52
- package/styles/fabric.css +38 -52
- package/styles/highcontrast-light.css +47 -58
- package/styles/highcontrast.css +40 -51
- package/styles/material-dark.css +49 -64
- package/styles/material.css +37 -52
- package/styles/pivotfieldlist/bootstrap-dark.css +12 -14
- package/styles/pivotfieldlist/bootstrap.css +14 -16
- package/styles/pivotfieldlist/bootstrap4.css +42 -40
- package/styles/pivotfieldlist/bootstrap5-dark.css +6404 -0
- package/styles/pivotfieldlist/bootstrap5-dark.scss +1 -0
- package/styles/pivotfieldlist/bootstrap5.css +6404 -0
- package/styles/pivotfieldlist/bootstrap5.scss +1 -0
- package/styles/pivotfieldlist/fabric-dark.css +18 -20
- package/styles/pivotfieldlist/fabric.css +18 -20
- package/styles/pivotfieldlist/highcontrast-light.css +18 -20
- package/styles/pivotfieldlist/highcontrast.css +18 -20
- package/styles/pivotfieldlist/material-dark.css +29 -31
- package/styles/pivotfieldlist/material.css +18 -20
- package/styles/pivotfieldlist/tailwind-dark.css +58 -25
- package/styles/pivotfieldlist/tailwind.css +60 -27
- package/styles/pivotview/bootstrap-dark.css +22 -35
- package/styles/pivotview/bootstrap.css +21 -34
- package/styles/pivotview/bootstrap4.css +34 -52
- package/styles/pivotview/bootstrap5-dark.css +2375 -0
- package/styles/pivotview/bootstrap5-dark.scss +1 -0
- package/styles/pivotview/bootstrap5.css +2375 -0
- package/styles/pivotview/bootstrap5.scss +1 -0
- package/styles/pivotview/fabric-dark.css +20 -32
- package/styles/pivotview/fabric.css +20 -32
- package/styles/pivotview/highcontrast-light.css +29 -38
- package/styles/pivotview/highcontrast.css +22 -31
- package/styles/pivotview/material-dark.css +20 -33
- package/styles/pivotview/material.css +19 -32
- package/styles/pivotview/tailwind-dark.css +40 -40
- package/styles/pivotview/tailwind.css +37 -37
- package/styles/tailwind-dark.css +98 -65
- package/styles/tailwind.css +97 -64
|
@@ -267,13 +267,6 @@
|
|
|
267
267
|
padding-top: 20px;
|
|
268
268
|
}
|
|
269
269
|
|
|
270
|
-
.e-pivotview .e-group-field-settings .e-checkbox-wrapper .e-frame {
|
|
271
|
-
height: 18px;
|
|
272
|
-
width: 18px;
|
|
273
|
-
height: 14px;
|
|
274
|
-
width: 14px;
|
|
275
|
-
}
|
|
276
|
-
|
|
277
270
|
.e-pivotview .e-group-field-settings .e-group-field-div-content {
|
|
278
271
|
margin-bottom: 10px;
|
|
279
272
|
}
|
|
@@ -289,6 +282,17 @@
|
|
|
289
282
|
padding: 0 20px 10px;
|
|
290
283
|
}
|
|
291
284
|
|
|
285
|
+
.e-pivotview .e-member-editor-dialog .e-editor-search-wrapper .e-clear-icon-hide,
|
|
286
|
+
.e-pivotview .e-member-editor-dialog .e-editor-search-container .e-clear-icon-hide {
|
|
287
|
+
display: inline-block;
|
|
288
|
+
visibility: hidden;
|
|
289
|
+
}
|
|
290
|
+
|
|
291
|
+
.e-pivotview .e-member-editor-dialog:not(.e-excel-filter) .e-editor-search-wrapper,
|
|
292
|
+
.e-pivotview .e-member-editor-dialog:not(.e-excel-filter) .e-editor-search-container {
|
|
293
|
+
padding: 5px 20px 10px;
|
|
294
|
+
}
|
|
295
|
+
|
|
292
296
|
.e-pivotview .e-member-editor-dialog .e-filter-sort {
|
|
293
297
|
box-shadow: none;
|
|
294
298
|
margin-left: 10px;
|
|
@@ -301,9 +305,9 @@
|
|
|
301
305
|
}
|
|
302
306
|
|
|
303
307
|
.e-pivotview .e-member-editor-dialog .e-filter-sort .e-member-sort:hover {
|
|
304
|
-
background-color: #6c757d;
|
|
305
|
-
border-color: #6c757d;
|
|
306
|
-
color: #fff;
|
|
308
|
+
background-color: #6c757d !important;
|
|
309
|
+
border-color: #6c757d !important;
|
|
310
|
+
color: #fff !important;
|
|
307
311
|
}
|
|
308
312
|
|
|
309
313
|
.e-pivotview .e-member-editor-dialog .e-filter-sort .e-member-sort.e-active {
|
|
@@ -319,9 +323,9 @@
|
|
|
319
323
|
}
|
|
320
324
|
|
|
321
325
|
.e-pivotview .e-member-editor-dialog .e-filter-sort .e-member-sort:focus {
|
|
322
|
-
background-color: #6c757d;
|
|
323
|
-
border-color: #6c757d;
|
|
324
|
-
color: #fff;
|
|
326
|
+
background-color: #6c757d !important;
|
|
327
|
+
border-color: #6c757d !important;
|
|
328
|
+
color: #fff !important;
|
|
325
329
|
}
|
|
326
330
|
|
|
327
331
|
.e-pivotview .e-member-editor-dialog .e-filter-sort .e-member-sort:focus.e-active {
|
|
@@ -339,7 +343,7 @@
|
|
|
339
343
|
|
|
340
344
|
.e-pivotview .e-member-editor-dialog .e-member-editor-container-outer-div {
|
|
341
345
|
display: inline-block;
|
|
342
|
-
height:
|
|
346
|
+
height: 168px;
|
|
343
347
|
max-width: 400px;
|
|
344
348
|
overflow: auto;
|
|
345
349
|
width: 100%;
|
|
@@ -347,7 +351,6 @@
|
|
|
347
351
|
|
|
348
352
|
.e-pivotview .e-member-editor-dialog .e-member-editor-container {
|
|
349
353
|
display: inline-table;
|
|
350
|
-
height: 100%;
|
|
351
354
|
width: 100%;
|
|
352
355
|
}
|
|
353
356
|
|
|
@@ -392,7 +395,7 @@
|
|
|
392
395
|
}
|
|
393
396
|
|
|
394
397
|
.e-pivotview .e-member-editor-dialog .e-excelfilter .e-member-editor-container-outer-div {
|
|
395
|
-
height:
|
|
398
|
+
height: 170px;
|
|
396
399
|
}
|
|
397
400
|
|
|
398
401
|
.e-pivotview .e-member-editor-dialog .e-excelfilter .e-editor-label-wrapper,
|
|
@@ -686,11 +689,6 @@
|
|
|
686
689
|
width: 49%;
|
|
687
690
|
}
|
|
688
691
|
|
|
689
|
-
.e-pivotview .e-pivotchart-type-dialog .e-icons.e-frame {
|
|
690
|
-
height: 14px;
|
|
691
|
-
width: 14px;
|
|
692
|
-
}
|
|
693
|
-
|
|
694
692
|
.e-pivotview .e-pivot-format-dialog {
|
|
695
693
|
max-height: 500px !important;
|
|
696
694
|
max-width: 350px;
|
|
@@ -719,6 +717,9 @@
|
|
|
719
717
|
.e-pivotview .e-pivot-toolbar {
|
|
720
718
|
border-bottom: 0;
|
|
721
719
|
border-style: solid;
|
|
720
|
+
border-top: 1px solid #dee2e6;
|
|
721
|
+
border-left: 1px solid #dee2e6;
|
|
722
|
+
border-right: 1px solid #dee2e6;
|
|
722
723
|
}
|
|
723
724
|
|
|
724
725
|
.e-pivotview .e-pivot-toolbar .e-toolbar-item .e-tbar-btn.e-btn .e-icons.e-btn-icon {
|
|
@@ -736,6 +737,7 @@
|
|
|
736
737
|
.e-pivotview .e-pivot-toolbar .e-menu-wrapper ul .e-menu-item,
|
|
737
738
|
.e-pivotview .e-pivot-toolbar .e-menu-container ul .e-menu-item {
|
|
738
739
|
height: 30px;
|
|
740
|
+
overflow: hidden;
|
|
739
741
|
padding-left: 10px;
|
|
740
742
|
background-color: #f8f9fa;
|
|
741
743
|
color: #495057;
|
|
@@ -900,7 +902,7 @@
|
|
|
900
902
|
.e-bigger .e-pivotview .e-member-editor-dialog .e-dlg-content .e-member-editor-outer-container .e-member-editor-container-outer-div,
|
|
901
903
|
.e-bigger.e-pivotview .e-member-editor-dialog .e-dlg-content .e-member-editor-wrapper .e-member-editor-container-outer-div,
|
|
902
904
|
.e-bigger.e-pivotview .e-member-editor-dialog .e-dlg-content .e-member-editor-outer-container .e-member-editor-container-outer-div {
|
|
903
|
-
height:
|
|
905
|
+
height: 140px;
|
|
904
906
|
}
|
|
905
907
|
|
|
906
908
|
.e-bigger .e-pivotview .e-member-editor-dialog .e-editor-search-wrapper .e-filter-sort .e-member-sort .e-sort-ascend-icon,
|
|
@@ -951,7 +953,7 @@
|
|
|
951
953
|
|
|
952
954
|
.e-bigger .e-pivotview .e-member-editor-dialog .e-excelfilter .e-member-editor-container-outer-div,
|
|
953
955
|
.e-bigger.e-pivotview .e-member-editor-dialog .e-excelfilter .e-member-editor-container-outer-div {
|
|
954
|
-
height:
|
|
956
|
+
height: 130px !important;
|
|
955
957
|
}
|
|
956
958
|
|
|
957
959
|
.e-bigger .e-pivotview .e-member-editor-dialog .e-label-filter,
|
|
@@ -1013,19 +1015,16 @@
|
|
|
1013
1015
|
top: 0;
|
|
1014
1016
|
}
|
|
1015
1017
|
|
|
1018
|
+
.e-bigger .e-pivotview .e-value-field-settings,
|
|
1019
|
+
.e-bigger.e-pivotview .e-value-field-settings {
|
|
1020
|
+
max-height: 510px !important;
|
|
1021
|
+
}
|
|
1022
|
+
|
|
1016
1023
|
.e-bigger .e-pivotview .e-pivot-format-dialog .e-pivot-format-dialog-outer,
|
|
1017
1024
|
.e-bigger.e-pivotview .e-pivot-format-dialog .e-pivot-format-dialog-outer {
|
|
1018
1025
|
padding: 0 20px 10px;
|
|
1019
1026
|
}
|
|
1020
1027
|
|
|
1021
|
-
.e-bigger .e-pivotview .e-group-field-settings .e-checkbox-wrapper .e-frame,
|
|
1022
|
-
.e-bigger.e-pivotview .e-group-field-settings .e-checkbox-wrapper .e-frame {
|
|
1023
|
-
height: 22px;
|
|
1024
|
-
width: 22px;
|
|
1025
|
-
height: 18px;
|
|
1026
|
-
width: 18px;
|
|
1027
|
-
}
|
|
1028
|
-
|
|
1029
1028
|
.e-bigger .e-pivotview .e-group-field-settings .e-caption-option-text,
|
|
1030
1029
|
.e-bigger .e-pivotview .e-group-field-settings .e-checkbox-wrapper .e-label,
|
|
1031
1030
|
.e-bigger.e-pivotview .e-group-field-settings .e-caption-option-text,
|
|
@@ -1124,12 +1123,6 @@
|
|
|
1124
1123
|
margin-top: 2px;
|
|
1125
1124
|
}
|
|
1126
1125
|
|
|
1127
|
-
.e-bigger .e-pivotchart-type-dialog .e-icons.e-frame,
|
|
1128
|
-
.e-bigger.e-pivotchart-type-dialog .e-icons.e-frame {
|
|
1129
|
-
height: 16px;
|
|
1130
|
-
width: 16px;
|
|
1131
|
-
}
|
|
1132
|
-
|
|
1133
1126
|
/*! PivotView theme */
|
|
1134
1127
|
.e-pivotview .e-nextspan {
|
|
1135
1128
|
display: inline-block;
|
|
@@ -1346,7 +1339,6 @@
|
|
|
1346
1339
|
}
|
|
1347
1340
|
|
|
1348
1341
|
.e-pivotview .e-headercelldiv.e-cellvalue {
|
|
1349
|
-
float: left;
|
|
1350
1342
|
margin-left: 0px;
|
|
1351
1343
|
}
|
|
1352
1344
|
|
|
@@ -1545,7 +1537,6 @@
|
|
|
1545
1537
|
vertical-align: bottom;
|
|
1546
1538
|
z-index: 1;
|
|
1547
1539
|
font-weight: 400;
|
|
1548
|
-
padding: 5px 8px;
|
|
1549
1540
|
}
|
|
1550
1541
|
|
|
1551
1542
|
.e-pivotview .e-grouping-bar .e-pivot-button.e-list-selected,
|
|
@@ -1768,7 +1759,6 @@
|
|
|
1768
1759
|
padding: 5px 8px;
|
|
1769
1760
|
width: 180px;
|
|
1770
1761
|
font-weight: 400;
|
|
1771
|
-
padding: 5px 8px;
|
|
1772
1762
|
}
|
|
1773
1763
|
|
|
1774
1764
|
.e-pivotview .e-group-row .e-group-rows .e-pvt-btn-div .e-pivot-button:hover {
|
|
@@ -1904,10 +1894,6 @@
|
|
|
1904
1894
|
padding-bottom: 7px;
|
|
1905
1895
|
}
|
|
1906
1896
|
|
|
1907
|
-
.e-pivotview .e-chart-grouping-bar .e-axis-row {
|
|
1908
|
-
height: 50% !important;
|
|
1909
|
-
}
|
|
1910
|
-
|
|
1911
1897
|
.e-pivotview .e-chart-grouping-bar .e-axis-value {
|
|
1912
1898
|
height: auto !important;
|
|
1913
1899
|
padding-left: 6px;
|
|
@@ -1930,7 +1916,7 @@
|
|
|
1930
1916
|
padding-bottom: 7px;
|
|
1931
1917
|
}
|
|
1932
1918
|
|
|
1933
|
-
.e-pivotview .e-icons {
|
|
1919
|
+
.e-pivotview .e-icons:not(.e-frame) {
|
|
1934
1920
|
height: auto;
|
|
1935
1921
|
width: auto;
|
|
1936
1922
|
}
|
|
@@ -2336,7 +2322,7 @@
|
|
|
2336
2322
|
.e-bigger.e-pivotview .e-grouping-bar .e-group-columns .e-pvt-btn-div .e-pivot-button.e-btn,
|
|
2337
2323
|
.e-bigger.e-pivotview .e-grouping-bar .e-group-rows .e-pvt-btn-div .e-pivot-button.e-btn,
|
|
2338
2324
|
.e-bigger.e-pivotview .e-grouping-bar .e-group-all-fields .e-pvt-btn-div .e-pivot-button.e-btn {
|
|
2339
|
-
padding:
|
|
2325
|
+
padding: 7px 10px;
|
|
2340
2326
|
}
|
|
2341
2327
|
|
|
2342
2328
|
.e-bigger .e-pivotview .e-grouping-bar .e-group-filters .e-draggable-prompt,
|
|
@@ -2386,16 +2372,12 @@
|
|
|
2386
2372
|
height: 30px;
|
|
2387
2373
|
}
|
|
2388
2374
|
|
|
2389
|
-
.e-bigger .e-pivotview .e-group-rows .e-pvt-btn-div .e-pivot-button.e-btn,
|
|
2390
|
-
.e-bigger.e-pivotview .e-group-rows .e-pvt-btn-div .e-pivot-button.e-btn {
|
|
2391
|
-
padding: 7px 10px;
|
|
2392
|
-
}
|
|
2393
|
-
|
|
2394
2375
|
.e-bigger .e-pivotview .e-group-rows .e-pvt-btn-div .e-pivot-button,
|
|
2395
2376
|
.e-bigger.e-pivotview .e-group-rows .e-pvt-btn-div .e-pivot-button {
|
|
2396
2377
|
height: 30px;
|
|
2397
2378
|
line-height: 0.9em;
|
|
2398
2379
|
padding: 7px 12px;
|
|
2380
|
+
padding: 7px 10px;
|
|
2399
2381
|
}
|
|
2400
2382
|
|
|
2401
2383
|
.e-bigger .e-pivotview .e-group-rows .e-pvt-btn-div .e-pivot-button .e-content,
|
|
@@ -2455,7 +2437,7 @@
|
|
|
2455
2437
|
.e-bigger .e-pivotview .e-member-editor-dialog .e-dlg-content .e-member-editor-outer-container .e-member-editor-container,
|
|
2456
2438
|
.e-bigger.e-pivotview .e-member-editor-dialog .e-dlg-content .e-member-editor-wrapper .e-member-editor-container,
|
|
2457
2439
|
.e-bigger.e-pivotview .e-member-editor-dialog .e-dlg-content .e-member-editor-outer-container .e-member-editor-container {
|
|
2458
|
-
height:
|
|
2440
|
+
height: 140px;
|
|
2459
2441
|
}
|
|
2460
2442
|
|
|
2461
2443
|
.e-bigger .e-pivotview .e-stackedheadercelldiv,
|