@syncfusion/ej2-angular-pivotview 20.2.36-ngcc → 20.2.36
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/esm2020/public_api.mjs +3 -0
- package/esm2020/src/index.mjs +8 -0
- package/esm2020/src/pivotfieldlist/pivotfieldlist-all.module.mjs +23 -0
- package/esm2020/src/pivotfieldlist/pivotfieldlist.component.mjs +66 -0
- package/esm2020/src/pivotfieldlist/pivotfieldlist.module.mjs +25 -0
- package/esm2020/src/pivotview/pivotview-all.module.mjs +62 -0
- package/esm2020/src/pivotview/pivotview.component.mjs +150 -0
- package/esm2020/src/pivotview/pivotview.module.mjs +25 -0
- package/esm2020/syncfusion-ej2-angular-pivotview.mjs +5 -0
- package/fesm2015/syncfusion-ej2-angular-pivotview.mjs +337 -0
- package/fesm2015/syncfusion-ej2-angular-pivotview.mjs.map +1 -0
- package/fesm2020/syncfusion-ej2-angular-pivotview.mjs +337 -0
- package/fesm2020/syncfusion-ej2-angular-pivotview.mjs.map +1 -0
- package/package.json +27 -13
- package/schematics/utils/lib-details.ts +2 -2
- package/src/pivotfieldlist/pivotfieldlist-all.module.d.ts +6 -0
- package/src/pivotfieldlist/pivotfieldlist.component.d.ts +3 -0
- package/src/pivotfieldlist/pivotfieldlist.module.d.ts +6 -0
- package/src/pivotview/pivotview-all.module.d.ts +6 -0
- package/src/pivotview/pivotview.component.d.ts +3 -0
- package/src/pivotview/pivotview.module.d.ts +6 -0
- package/styles/bootstrap-dark.css +13 -29
- package/styles/bootstrap.css +13 -29
- package/styles/bootstrap4.css +13 -29
- package/styles/bootstrap5-dark.css +17 -67
- package/styles/bootstrap5.css +17 -67
- package/styles/fabric-dark.css +13 -29
- package/styles/fabric.css +13 -29
- package/styles/fluent-dark.css +15 -33
- package/styles/fluent.css +15 -33
- package/styles/highcontrast-light.css +13 -29
- package/styles/highcontrast.css +13 -29
- package/styles/material-dark.css +13 -29
- package/styles/material.css +13 -29
- package/styles/pivotfieldlist/_all.scss +2 -0
- package/styles/pivotfieldlist/_bootstrap-dark-definition.scss +232 -0
- package/styles/pivotfieldlist/_bootstrap-definition.scss +185 -0
- package/styles/pivotfieldlist/_bootstrap4-definition.scss +185 -0
- package/styles/pivotfieldlist/_bootstrap5-dark-definition.scss +1 -0
- package/styles/pivotfieldlist/_bootstrap5-definition.scss +189 -0
- package/styles/pivotfieldlist/_fabric-dark-definition.scss +192 -0
- package/styles/pivotfieldlist/_fabric-definition.scss +185 -0
- package/styles/pivotfieldlist/_fluent-dark-definition.scss +1 -0
- package/styles/pivotfieldlist/_fluent-definition.scss +190 -0
- package/styles/pivotfieldlist/_fusionnew-definition.scss +189 -0
- package/styles/pivotfieldlist/_highcontrast-definition.scss +186 -0
- package/styles/pivotfieldlist/_highcontrast-light-definition.scss +186 -0
- package/styles/pivotfieldlist/_layout.scss +1855 -0
- package/styles/pivotfieldlist/_material-dark-definition.scss +186 -0
- package/styles/pivotfieldlist/_material-definition.scss +186 -0
- package/styles/pivotfieldlist/_material3-definition.scss +188 -0
- package/styles/pivotfieldlist/_tailwind-dark-definition.scss +1 -0
- package/styles/pivotfieldlist/_tailwind-definition.scss +189 -0
- package/styles/pivotfieldlist/_theme.scss +1855 -0
- package/styles/pivotfieldlist/bootstrap-dark.css +6 -17
- package/styles/pivotfieldlist/bootstrap-dark.scss +4 -1
- package/styles/pivotfieldlist/bootstrap.css +6 -17
- package/styles/pivotfieldlist/bootstrap.scss +4 -1
- package/styles/pivotfieldlist/bootstrap4.css +6 -17
- package/styles/pivotfieldlist/bootstrap4.scss +4 -1
- package/styles/pivotfieldlist/bootstrap5-dark.css +6 -17
- package/styles/pivotfieldlist/bootstrap5-dark.scss +4 -1
- package/styles/pivotfieldlist/bootstrap5.css +6 -17
- package/styles/pivotfieldlist/bootstrap5.scss +4 -1
- package/styles/pivotfieldlist/fabric-dark.css +6 -17
- package/styles/pivotfieldlist/fabric-dark.scss +4 -1
- package/styles/pivotfieldlist/fabric.css +6 -17
- package/styles/pivotfieldlist/fabric.scss +4 -1
- package/styles/pivotfieldlist/fluent-dark.css +6 -17
- package/styles/pivotfieldlist/fluent-dark.scss +4 -1
- package/styles/pivotfieldlist/fluent.css +6 -17
- package/styles/pivotfieldlist/fluent.scss +4 -1
- package/styles/pivotfieldlist/highcontrast-light.css +6 -17
- package/styles/pivotfieldlist/highcontrast-light.scss +4 -1
- package/styles/pivotfieldlist/highcontrast.css +6 -17
- package/styles/pivotfieldlist/highcontrast.scss +4 -1
- package/styles/pivotfieldlist/icons/_bootstrap-dark.scss +358 -0
- package/styles/pivotfieldlist/icons/_bootstrap.scss +359 -0
- package/styles/pivotfieldlist/icons/_bootstrap4.scss +359 -0
- package/styles/pivotfieldlist/icons/_bootstrap5-dark.scss +1 -0
- package/styles/pivotfieldlist/icons/_bootstrap5.scss +357 -0
- package/styles/pivotfieldlist/icons/_fabric-dark.scss +358 -0
- package/styles/pivotfieldlist/icons/_fabric.scss +358 -0
- package/styles/pivotfieldlist/icons/_fluent-dark.scss +1 -0
- package/styles/pivotfieldlist/icons/_fluent.scss +357 -0
- package/styles/pivotfieldlist/icons/_fusionnew.scss +352 -0
- package/styles/pivotfieldlist/icons/_highcontrast-light.scss +357 -0
- package/styles/pivotfieldlist/icons/_highcontrast.scss +357 -0
- package/styles/pivotfieldlist/icons/_material-dark.scss +358 -0
- package/styles/pivotfieldlist/icons/_material.scss +357 -0
- package/styles/pivotfieldlist/icons/_material3.scss +352 -0
- package/styles/pivotfieldlist/icons/_tailwind-dark.scss +356 -0
- package/styles/pivotfieldlist/icons/_tailwind.scss +356 -0
- package/styles/pivotfieldlist/material-dark.css +6 -17
- package/styles/pivotfieldlist/material-dark.scss +4 -1
- package/styles/pivotfieldlist/material.css +6 -17
- package/styles/pivotfieldlist/material.scss +4 -1
- package/styles/pivotfieldlist/tailwind-dark.css +8 -19
- package/styles/pivotfieldlist/tailwind-dark.scss +4 -1
- package/styles/pivotfieldlist/tailwind.css +8 -19
- package/styles/pivotfieldlist/tailwind.scss +4 -1
- package/styles/pivotview/_all.scss +2 -0
- package/styles/pivotview/_bootstrap-dark-definition.scss +130 -0
- package/styles/pivotview/_bootstrap-definition.scss +127 -0
- package/styles/pivotview/_bootstrap4-definition.scss +127 -0
- package/styles/pivotview/_bootstrap5-dark-definition.scss +1 -0
- package/styles/pivotview/_bootstrap5-definition.scss +130 -0
- package/styles/pivotview/_fabric-dark-definition.scss +129 -0
- package/styles/pivotview/_fabric-definition.scss +126 -0
- package/styles/pivotview/_fluent-dark-definition.scss +1 -0
- package/styles/pivotview/_fluent-definition.scss +130 -0
- package/styles/pivotview/_fusionnew-definition.scss +130 -0
- package/styles/pivotview/_highcontrast-definition.scss +125 -0
- package/styles/pivotview/_highcontrast-light-definition.scss +126 -0
- package/styles/pivotview/_layout.scss +1073 -0
- package/styles/pivotview/_material-dark-definition.scss +131 -0
- package/styles/pivotview/_material-definition.scss +128 -0
- package/styles/pivotview/_material3-definition.scss +130 -0
- package/styles/pivotview/_tailwind-dark-definition.scss +1 -0
- package/styles/pivotview/_tailwind-definition.scss +129 -0
- package/styles/pivotview/_theme.scss +1556 -0
- package/styles/pivotview/bootstrap-dark.css +7 -12
- package/styles/pivotview/bootstrap-dark.scss +5 -1
- package/styles/pivotview/bootstrap.css +7 -12
- package/styles/pivotview/bootstrap.scss +5 -1
- package/styles/pivotview/bootstrap4.css +7 -12
- package/styles/pivotview/bootstrap4.scss +5 -1
- package/styles/pivotview/bootstrap5-dark.css +11 -50
- package/styles/pivotview/bootstrap5-dark.scss +4 -1
- package/styles/pivotview/bootstrap5.css +11 -50
- package/styles/pivotview/bootstrap5.scss +5 -1
- package/styles/pivotview/fabric-dark.css +7 -12
- package/styles/pivotview/fabric-dark.scss +5 -1
- package/styles/pivotview/fabric.css +7 -12
- package/styles/pivotview/fabric.scss +5 -1
- package/styles/pivotview/fluent-dark.css +9 -16
- package/styles/pivotview/fluent-dark.scss +4 -1
- package/styles/pivotview/fluent.css +9 -16
- package/styles/pivotview/fluent.scss +5 -1
- package/styles/pivotview/highcontrast-light.css +7 -12
- package/styles/pivotview/highcontrast-light.scss +5 -1
- package/styles/pivotview/highcontrast.css +7 -12
- package/styles/pivotview/highcontrast.scss +5 -1
- package/styles/pivotview/icons/_bootstrap-dark.scss +184 -0
- package/styles/pivotview/icons/_bootstrap.scss +184 -0
- package/styles/pivotview/icons/_bootstrap4.scss +184 -0
- package/styles/pivotview/icons/_bootstrap5-dark.scss +1 -0
- package/styles/pivotview/icons/_bootstrap5.scss +183 -0
- package/styles/pivotview/icons/_fabric-dark.scss +184 -0
- package/styles/pivotview/icons/_fabric.scss +184 -0
- package/styles/pivotview/icons/_fluent-dark.scss +1 -0
- package/styles/pivotview/icons/_fluent.scss +183 -0
- package/styles/pivotview/icons/_fusionnew.scss +183 -0
- package/styles/pivotview/icons/_highcontrast-light.scss +183 -0
- package/styles/pivotview/icons/_highcontrast.scss +183 -0
- package/styles/pivotview/icons/_material-dark.scss +184 -0
- package/styles/pivotview/icons/_material.scss +184 -0
- package/styles/pivotview/icons/_material3.scss +183 -0
- package/styles/pivotview/icons/_tailwind-dark.scss +183 -0
- package/styles/pivotview/icons/_tailwind.scss +183 -0
- package/styles/pivotview/material-dark.css +7 -12
- package/styles/pivotview/material-dark.scss +5 -1
- package/styles/pivotview/material.css +7 -12
- package/styles/pivotview/material.scss +5 -1
- package/styles/pivotview/tailwind-dark.css +11 -18
- package/styles/pivotview/tailwind-dark.scss +4 -1
- package/styles/pivotview/tailwind.css +11 -18
- package/styles/pivotview/tailwind.scss +5 -1
- package/styles/tailwind-dark.css +19 -37
- package/styles/tailwind.css +19 -37
- package/syncfusion-ej2-angular-pivotview.d.ts +5 -0
- package/@syncfusion/ej2-angular-pivotview.es5.js +0 -425
- package/@syncfusion/ej2-angular-pivotview.es5.js.map +0 -1
- package/@syncfusion/ej2-angular-pivotview.js +0 -395
- package/@syncfusion/ej2-angular-pivotview.js.map +0 -1
- package/CHANGELOG.md +0 -665
- package/dist/ej2-angular-pivotview.umd.js +0 -662
- package/dist/ej2-angular-pivotview.umd.js.map +0 -1
- package/dist/ej2-angular-pivotview.umd.min.js +0 -11
- package/dist/ej2-angular-pivotview.umd.min.js.map +0 -1
- package/ej2-angular-pivotview.d.ts +0 -6
- package/ej2-angular-pivotview.metadata.json +0 -1
- package/postinstall/tagchange.js +0 -18
- package/schematics/collection.json +0 -20
- package/schematics/generators/pivotview-default/index.d.ts +0 -3
- package/schematics/generators/pivotview-default/index.js +0 -8
- package/schematics/generators/pivotview-default/sample-details.d.ts +0 -5
- package/schematics/generators/pivotview-default/sample-details.js +0 -7
- package/schematics/generators/pivotview-default/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -4
- package/schematics/generators/pivotview-default/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -4
- package/schematics/generators/pivotview-default/schema.d.ts +0 -3
- package/schematics/generators/pivotview-default/schema.js +0 -2
- package/schematics/generators/pivotview-default/schema.json +0 -125
- package/schematics/generators/pivotview-fieldlist/index.d.ts +0 -3
- package/schematics/generators/pivotview-fieldlist/index.js +0 -8
- package/schematics/generators/pivotview-fieldlist/sample-details.d.ts +0 -5
- package/schematics/generators/pivotview-fieldlist/sample-details.js +0 -7
- package/schematics/generators/pivotview-fieldlist/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -4
- package/schematics/generators/pivotview-fieldlist/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -4
- package/schematics/generators/pivotview-fieldlist/schema.d.ts +0 -3
- package/schematics/generators/pivotview-fieldlist/schema.js +0 -2
- package/schematics/generators/pivotview-fieldlist/schema.json +0 -125
- package/schematics/ng-add/index.d.ts +0 -3
- package/schematics/ng-add/index.js +0 -9
- package/schematics/ng-add/schema.d.ts +0 -13
- package/schematics/ng-add/schema.js +0 -2
- package/schematics/ng-add/schema.json +0 -34
- package/schematics/tsconfig.json +0 -25
- package/schematics/utils/lib-details.d.ts +0 -4
- package/schematics/utils/lib-details.js +0 -6
package/styles/tailwind-dark.css
CHANGED
|
@@ -260,7 +260,7 @@
|
|
|
260
260
|
}
|
|
261
261
|
.e-pivotview .e-member-editor-dialog .e-member-editor-container-outer-div {
|
|
262
262
|
display: inline-block;
|
|
263
|
-
height:
|
|
263
|
+
height: 174px;
|
|
264
264
|
max-width: 400px;
|
|
265
265
|
overflow: auto;
|
|
266
266
|
width: 100%;
|
|
@@ -303,7 +303,7 @@
|
|
|
303
303
|
padding-top: 12px;
|
|
304
304
|
}
|
|
305
305
|
.e-pivotview .e-member-editor-dialog .e-excelfilter .e-member-editor-container-outer-div {
|
|
306
|
-
height:
|
|
306
|
+
height: 165px;
|
|
307
307
|
}
|
|
308
308
|
.e-pivotview .e-member-editor-dialog .e-excelfilter .e-editor-label-container {
|
|
309
309
|
opacity: 56%;
|
|
@@ -707,7 +707,7 @@
|
|
|
707
707
|
}
|
|
708
708
|
.e-bigger .e-pivotview .e-member-editor-dialog .e-dlg-content .e-member-editor-outer-container .e-member-editor-container-outer-div,
|
|
709
709
|
.e-bigger.e-pivotview .e-member-editor-dialog .e-dlg-content .e-member-editor-outer-container .e-member-editor-container-outer-div {
|
|
710
|
-
height:
|
|
710
|
+
height: 140px;
|
|
711
711
|
}
|
|
712
712
|
.e-bigger .e-pivotview .e-member-editor-dialog .e-editor-search-container .e-filter-sort .e-member-sort .e-sort-ascend-icon,
|
|
713
713
|
.e-bigger .e-pivotview .e-member-editor-dialog .e-editor-search-container .e-filter-sort .e-member-sort .e-sort-descend-icon,
|
|
@@ -733,7 +733,7 @@
|
|
|
733
733
|
}
|
|
734
734
|
.e-bigger .e-pivotview .e-member-editor-dialog .e-excelfilter .e-member-editor-container-outer-div,
|
|
735
735
|
.e-bigger.e-pivotview .e-member-editor-dialog .e-excelfilter .e-member-editor-container-outer-div {
|
|
736
|
-
height:
|
|
736
|
+
height: 109px !important;
|
|
737
737
|
}
|
|
738
738
|
.e-bigger .e-pivotview .e-member-editor-dialog .e-label-filter,
|
|
739
739
|
.e-bigger .e-pivotview .e-member-editor-dialog .e-value-filter,
|
|
@@ -1000,7 +1000,7 @@
|
|
|
1000
1000
|
}
|
|
1001
1001
|
.e-pivotview .e-sortfilterdiv.e-value-sort-icon {
|
|
1002
1002
|
font-size: 12px !important;
|
|
1003
|
-
padding
|
|
1003
|
+
padding: 4px 0 0 0 !important;
|
|
1004
1004
|
}
|
|
1005
1005
|
.e-pivotview .e-rowsheader .e-sortfilterdiv {
|
|
1006
1006
|
margin: -10px 0 !important;
|
|
@@ -1041,6 +1041,11 @@
|
|
|
1041
1041
|
.e-pivotview.sf-pivotview .e-spinner-pane.e-pivot-outer-spinner .e-spinner-inner {
|
|
1042
1042
|
visibility: hidden !important;
|
|
1043
1043
|
}
|
|
1044
|
+
.e-pivotview .e-grid.e-responsive .e-stackedheadercelldiv .e-stackedheadertext,
|
|
1045
|
+
.e-pivotview .e-grid.e-responsive .e-headercelldiv .e-headertext {
|
|
1046
|
+
text-overflow: ellipsis;
|
|
1047
|
+
white-space: nowrap;
|
|
1048
|
+
}
|
|
1044
1049
|
.e-pivotview .e-grid .e-headercelldiv,
|
|
1045
1050
|
.e-pivotview .e-grid .e-columnsheader {
|
|
1046
1051
|
padding-left: 8px !important;
|
|
@@ -1509,7 +1514,6 @@
|
|
|
1509
1514
|
width: 18px;
|
|
1510
1515
|
}
|
|
1511
1516
|
.e-pivotview .e-group-row .e-group-rows .e-pvt-btn-div .e-pivot-button .e-sort.e-descend {
|
|
1512
|
-
margin-top: 3px;
|
|
1513
1517
|
transform: rotateX(180deg);
|
|
1514
1518
|
}
|
|
1515
1519
|
.e-pivotview .e-group-row .e-group-rows .e-pvt-btn-div .e-pivot-button .e-dropdown-icon {
|
|
@@ -1684,12 +1688,6 @@
|
|
|
1684
1688
|
.e-pivotview.e-device .e-grouping-bar .e-pivot-button {
|
|
1685
1689
|
line-height: 1em !important;
|
|
1686
1690
|
}
|
|
1687
|
-
.e-pivotview.e-device .e-grouping-bar .e-pivot-button .e-dropdown-icon,
|
|
1688
|
-
.e-pivotview.e-device .e-grouping-bar .e-pivot-button .e-pv-filtered,
|
|
1689
|
-
.e-pivotview.e-device .e-grouping-bar .e-pivot-button .e-remove,
|
|
1690
|
-
.e-pivotview.e-device .e-grouping-bar .e-pivot-button .e-sort {
|
|
1691
|
-
margin-top: 2px !important;
|
|
1692
|
-
}
|
|
1693
1691
|
.e-pivotview.e-device .e-grouping-bar .e-group-all-fields .e-pvt-btn-div .e-pivot-button {
|
|
1694
1692
|
max-width: 155px;
|
|
1695
1693
|
}
|
|
@@ -1700,9 +1698,6 @@
|
|
|
1700
1698
|
.e-pivotview.e-device .e-grouping-bar .e-group-columns .e-pvt-btn-div .e-pivot-button {
|
|
1701
1699
|
max-width: 200px;
|
|
1702
1700
|
}
|
|
1703
|
-
.e-pivotview.e-device .e-drillthrough-dialog {
|
|
1704
|
-
width: 100% !important;
|
|
1705
|
-
}
|
|
1706
1701
|
.e-pivotview.e-device .e-group-row .e-group-rows .e-pvt-btn-div .e-indent-div {
|
|
1707
1702
|
width: 0 !important;
|
|
1708
1703
|
}
|
|
@@ -1864,7 +1859,6 @@
|
|
|
1864
1859
|
.e-bigger.e-pivotview .e-grouping-bar .e-pvt-btn-div .e-pivot-button .e-edit {
|
|
1865
1860
|
font-size: 14px !important;
|
|
1866
1861
|
height: 20px;
|
|
1867
|
-
margin-top: 1px;
|
|
1868
1862
|
width: 20px;
|
|
1869
1863
|
}
|
|
1870
1864
|
.e-bigger .e-pivotview .e-grouping-bar .e-pvt-btn-div .e-pivot-button .e-sort,
|
|
@@ -1961,7 +1955,6 @@
|
|
|
1961
1955
|
.e-bigger .e-pivotview .e-sortfilterdiv,
|
|
1962
1956
|
.e-bigger.e-pivotview .e-sortfilterdiv {
|
|
1963
1957
|
margin: -13px -10px !important;
|
|
1964
|
-
font-size: 16px !important;
|
|
1965
1958
|
}
|
|
1966
1959
|
.e-bigger .e-pivotview .e-grid .e-columnheader.e-wrap .e-sortfilterdiv,
|
|
1967
1960
|
.e-bigger .e-pivotview .e-grid.e-wrap .e-columnheader .e-sortfilterdiv,
|
|
@@ -1971,7 +1964,7 @@
|
|
|
1971
1964
|
}
|
|
1972
1965
|
.e-bigger .e-pivotview .e-member-editor-dialog .e-dlg-content .e-member-editor-outer-container .e-member-editor-container,
|
|
1973
1966
|
.e-bigger.e-pivotview .e-member-editor-dialog .e-dlg-content .e-member-editor-outer-container .e-member-editor-container {
|
|
1974
|
-
height:
|
|
1967
|
+
height: 140px;
|
|
1975
1968
|
}
|
|
1976
1969
|
.e-bigger .e-pivotview .e-stackedheadercelldiv,
|
|
1977
1970
|
.e-bigger .e-pivotview .e-stackedheadertext,
|
|
@@ -2364,7 +2357,8 @@
|
|
|
2364
2357
|
|
|
2365
2358
|
.e-pivot-formatting-dialog {
|
|
2366
2359
|
max-height: 480px !important;
|
|
2367
|
-
width:
|
|
2360
|
+
min-width: 628px !important;
|
|
2361
|
+
width: 628px !important;
|
|
2368
2362
|
}
|
|
2369
2363
|
.e-pivot-formatting-dialog .e-format-table tr:nth-child(odd) td {
|
|
2370
2364
|
padding-bottom: 4px;
|
|
@@ -2378,7 +2372,6 @@
|
|
|
2378
2372
|
.e-pivot-formatting-dialog .e-format-table tr:nth-child(even) td {
|
|
2379
2373
|
padding-bottom: 14px;
|
|
2380
2374
|
padding-right: 18px;
|
|
2381
|
-
white-space: nowrap;
|
|
2382
2375
|
}
|
|
2383
2376
|
.e-pivot-formatting-dialog .e-format-value-span {
|
|
2384
2377
|
vertical-align: bottom;
|
|
@@ -2471,9 +2464,6 @@
|
|
|
2471
2464
|
min-width: 320px !important;
|
|
2472
2465
|
width: 100% !important;
|
|
2473
2466
|
}
|
|
2474
|
-
.e-pivot-formatting-dialog.e-device .e-format-inner-div {
|
|
2475
|
-
width: 100% !important;
|
|
2476
|
-
}
|
|
2477
2467
|
.e-pivot-formatting-dialog.e-device .e-format-value1,
|
|
2478
2468
|
.e-pivot-formatting-dialog.e-device .e-format-value2,
|
|
2479
2469
|
.e-pivot-formatting-dialog.e-device .e-format-value-span {
|
|
@@ -2521,7 +2511,8 @@
|
|
|
2521
2511
|
|
|
2522
2512
|
.e-bigger.e-pivot-formatting-dialog,
|
|
2523
2513
|
.e-bigger .e-pivot-formatting-dialog {
|
|
2524
|
-
width:
|
|
2514
|
+
min-width: 680px !important;
|
|
2515
|
+
width: 680px !important;
|
|
2525
2516
|
}
|
|
2526
2517
|
.e-bigger.e-pivot-formatting-dialog .e-format-label,
|
|
2527
2518
|
.e-bigger.e-pivot-formatting-dialog .e-format-value-label,
|
|
@@ -2932,7 +2923,7 @@
|
|
|
2932
2923
|
|
|
2933
2924
|
.e-bigger.e-pivot-calc-dialog-div,
|
|
2934
2925
|
.e-bigger .e-pivot-calc-dialog-div {
|
|
2935
|
-
max-height:
|
|
2926
|
+
max-height: 590px !important;
|
|
2936
2927
|
min-width: 401px !important;
|
|
2937
2928
|
}
|
|
2938
2929
|
.e-bigger.e-pivot-calc-dialog-div .e-pivot-all-field-title,
|
|
@@ -2980,7 +2971,7 @@
|
|
|
2980
2971
|
.e-bigger.e-pivot-calc-dialog-div.e-olap-calc-dialog-div,
|
|
2981
2972
|
.e-bigger .e-pivot-calc-dialog-div.e-olap-calc-dialog-div {
|
|
2982
2973
|
max-height: 750px !important;
|
|
2983
|
-
min-width: 580px
|
|
2974
|
+
min-width: 580px;
|
|
2984
2975
|
}
|
|
2985
2976
|
.e-bigger.e-pivot-calc-dialog-div.e-olap-calc-dialog-div .e-pivot-calc-outer-div .e-olap-field-tree-div,
|
|
2986
2977
|
.e-bigger .e-pivot-calc-dialog-div.e-olap-calc-dialog-div .e-pivot-calc-outer-div .e-olap-field-tree-div {
|
|
@@ -4444,7 +4435,7 @@
|
|
|
4444
4435
|
height: 261px;
|
|
4445
4436
|
}
|
|
4446
4437
|
.e-pivotfieldlist-container.e-search-mode.e-popup {
|
|
4447
|
-
|
|
4438
|
+
height: 540px;
|
|
4448
4439
|
}
|
|
4449
4440
|
.e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container {
|
|
4450
4441
|
height: 369px;
|
|
@@ -4638,11 +4629,6 @@
|
|
|
4638
4629
|
background-color: transparent;
|
|
4639
4630
|
color: rgba(255, 255, 255, 0.87);
|
|
4640
4631
|
}
|
|
4641
|
-
.e-pivotfieldlist-container.e-device .e-adaptive-field-list-dialog .e-dlg-content .e-field-list-tree-outer-div,
|
|
4642
|
-
.e-pivotfieldlist-container.e-device .e-member-editor-dialog .e-dlg-content .e-field-list-tree-outer-div {
|
|
4643
|
-
height: 210px;
|
|
4644
|
-
overflow: auto;
|
|
4645
|
-
}
|
|
4646
4632
|
.e-pivotfieldlist-container.e-device .e-title-mobile-header {
|
|
4647
4633
|
display: -ms-flexbox;
|
|
4648
4634
|
display: flex;
|
|
@@ -5550,8 +5536,8 @@
|
|
|
5550
5536
|
}
|
|
5551
5537
|
.e-bigger .e-pivotfieldlist-container.e-search-mode.e-popup,
|
|
5552
5538
|
.e-bigger.e-pivotfieldlist-container.e-search-mode.e-popup {
|
|
5539
|
+
height: 550px !important;
|
|
5553
5540
|
max-height: 600px !important;
|
|
5554
|
-
min-height: 566px !important;
|
|
5555
5541
|
}
|
|
5556
5542
|
.e-bigger .e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container,
|
|
5557
5543
|
.e-bigger.e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container {
|
|
@@ -5568,8 +5554,4 @@
|
|
|
5568
5554
|
.e-bigger .e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container .e-axis-table .e-axis-content,
|
|
5569
5555
|
.e-bigger.e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container .e-axis-table .e-axis-content {
|
|
5570
5556
|
height: 165px !important;
|
|
5571
|
-
}
|
|
5572
|
-
.e-bigger .e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-dlg-content .e-field-list-tree-outer-div,
|
|
5573
|
-
.e-bigger.e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-dlg-content .e-field-list-tree-outer-div {
|
|
5574
|
-
max-height: 179px;
|
|
5575
5557
|
}
|
package/styles/tailwind.css
CHANGED
|
@@ -262,7 +262,7 @@
|
|
|
262
262
|
}
|
|
263
263
|
.e-pivotview .e-member-editor-dialog .e-member-editor-container-outer-div {
|
|
264
264
|
display: inline-block;
|
|
265
|
-
height:
|
|
265
|
+
height: 174px;
|
|
266
266
|
max-width: 400px;
|
|
267
267
|
overflow: auto;
|
|
268
268
|
width: 100%;
|
|
@@ -305,7 +305,7 @@
|
|
|
305
305
|
padding-top: 12px;
|
|
306
306
|
}
|
|
307
307
|
.e-pivotview .e-member-editor-dialog .e-excelfilter .e-member-editor-container-outer-div {
|
|
308
|
-
height:
|
|
308
|
+
height: 165px;
|
|
309
309
|
}
|
|
310
310
|
.e-pivotview .e-member-editor-dialog .e-excelfilter .e-editor-label-container {
|
|
311
311
|
opacity: 56%;
|
|
@@ -709,7 +709,7 @@
|
|
|
709
709
|
}
|
|
710
710
|
.e-bigger .e-pivotview .e-member-editor-dialog .e-dlg-content .e-member-editor-outer-container .e-member-editor-container-outer-div,
|
|
711
711
|
.e-bigger.e-pivotview .e-member-editor-dialog .e-dlg-content .e-member-editor-outer-container .e-member-editor-container-outer-div {
|
|
712
|
-
height:
|
|
712
|
+
height: 140px;
|
|
713
713
|
}
|
|
714
714
|
.e-bigger .e-pivotview .e-member-editor-dialog .e-editor-search-container .e-filter-sort .e-member-sort .e-sort-ascend-icon,
|
|
715
715
|
.e-bigger .e-pivotview .e-member-editor-dialog .e-editor-search-container .e-filter-sort .e-member-sort .e-sort-descend-icon,
|
|
@@ -735,7 +735,7 @@
|
|
|
735
735
|
}
|
|
736
736
|
.e-bigger .e-pivotview .e-member-editor-dialog .e-excelfilter .e-member-editor-container-outer-div,
|
|
737
737
|
.e-bigger.e-pivotview .e-member-editor-dialog .e-excelfilter .e-member-editor-container-outer-div {
|
|
738
|
-
height:
|
|
738
|
+
height: 109px !important;
|
|
739
739
|
}
|
|
740
740
|
.e-bigger .e-pivotview .e-member-editor-dialog .e-label-filter,
|
|
741
741
|
.e-bigger .e-pivotview .e-member-editor-dialog .e-value-filter,
|
|
@@ -1002,7 +1002,7 @@
|
|
|
1002
1002
|
}
|
|
1003
1003
|
.e-pivotview .e-sortfilterdiv.e-value-sort-icon {
|
|
1004
1004
|
font-size: 12px !important;
|
|
1005
|
-
padding
|
|
1005
|
+
padding: 4px 0 0 0 !important;
|
|
1006
1006
|
}
|
|
1007
1007
|
.e-pivotview .e-rowsheader .e-sortfilterdiv {
|
|
1008
1008
|
margin: -10px 0 !important;
|
|
@@ -1043,6 +1043,11 @@
|
|
|
1043
1043
|
.e-pivotview.sf-pivotview .e-spinner-pane.e-pivot-outer-spinner .e-spinner-inner {
|
|
1044
1044
|
visibility: hidden !important;
|
|
1045
1045
|
}
|
|
1046
|
+
.e-pivotview .e-grid.e-responsive .e-stackedheadercelldiv .e-stackedheadertext,
|
|
1047
|
+
.e-pivotview .e-grid.e-responsive .e-headercelldiv .e-headertext {
|
|
1048
|
+
text-overflow: ellipsis;
|
|
1049
|
+
white-space: nowrap;
|
|
1050
|
+
}
|
|
1046
1051
|
.e-pivotview .e-grid .e-headercelldiv,
|
|
1047
1052
|
.e-pivotview .e-grid .e-columnsheader {
|
|
1048
1053
|
padding-left: 8px !important;
|
|
@@ -1511,7 +1516,6 @@
|
|
|
1511
1516
|
width: 18px;
|
|
1512
1517
|
}
|
|
1513
1518
|
.e-pivotview .e-group-row .e-group-rows .e-pvt-btn-div .e-pivot-button .e-sort.e-descend {
|
|
1514
|
-
margin-top: 3px;
|
|
1515
1519
|
transform: rotateX(180deg);
|
|
1516
1520
|
}
|
|
1517
1521
|
.e-pivotview .e-group-row .e-group-rows .e-pvt-btn-div .e-pivot-button .e-dropdown-icon {
|
|
@@ -1686,12 +1690,6 @@
|
|
|
1686
1690
|
.e-pivotview.e-device .e-grouping-bar .e-pivot-button {
|
|
1687
1691
|
line-height: 1em !important;
|
|
1688
1692
|
}
|
|
1689
|
-
.e-pivotview.e-device .e-grouping-bar .e-pivot-button .e-dropdown-icon,
|
|
1690
|
-
.e-pivotview.e-device .e-grouping-bar .e-pivot-button .e-pv-filtered,
|
|
1691
|
-
.e-pivotview.e-device .e-grouping-bar .e-pivot-button .e-remove,
|
|
1692
|
-
.e-pivotview.e-device .e-grouping-bar .e-pivot-button .e-sort {
|
|
1693
|
-
margin-top: 2px !important;
|
|
1694
|
-
}
|
|
1695
1693
|
.e-pivotview.e-device .e-grouping-bar .e-group-all-fields .e-pvt-btn-div .e-pivot-button {
|
|
1696
1694
|
max-width: 155px;
|
|
1697
1695
|
}
|
|
@@ -1702,9 +1700,6 @@
|
|
|
1702
1700
|
.e-pivotview.e-device .e-grouping-bar .e-group-columns .e-pvt-btn-div .e-pivot-button {
|
|
1703
1701
|
max-width: 200px;
|
|
1704
1702
|
}
|
|
1705
|
-
.e-pivotview.e-device .e-drillthrough-dialog {
|
|
1706
|
-
width: 100% !important;
|
|
1707
|
-
}
|
|
1708
1703
|
.e-pivotview.e-device .e-group-row .e-group-rows .e-pvt-btn-div .e-indent-div {
|
|
1709
1704
|
width: 0 !important;
|
|
1710
1705
|
}
|
|
@@ -1866,7 +1861,6 @@
|
|
|
1866
1861
|
.e-bigger.e-pivotview .e-grouping-bar .e-pvt-btn-div .e-pivot-button .e-edit {
|
|
1867
1862
|
font-size: 14px !important;
|
|
1868
1863
|
height: 20px;
|
|
1869
|
-
margin-top: 1px;
|
|
1870
1864
|
width: 20px;
|
|
1871
1865
|
}
|
|
1872
1866
|
.e-bigger .e-pivotview .e-grouping-bar .e-pvt-btn-div .e-pivot-button .e-sort,
|
|
@@ -1963,7 +1957,6 @@
|
|
|
1963
1957
|
.e-bigger .e-pivotview .e-sortfilterdiv,
|
|
1964
1958
|
.e-bigger.e-pivotview .e-sortfilterdiv {
|
|
1965
1959
|
margin: -13px -10px !important;
|
|
1966
|
-
font-size: 16px !important;
|
|
1967
1960
|
}
|
|
1968
1961
|
.e-bigger .e-pivotview .e-grid .e-columnheader.e-wrap .e-sortfilterdiv,
|
|
1969
1962
|
.e-bigger .e-pivotview .e-grid.e-wrap .e-columnheader .e-sortfilterdiv,
|
|
@@ -1973,7 +1966,7 @@
|
|
|
1973
1966
|
}
|
|
1974
1967
|
.e-bigger .e-pivotview .e-member-editor-dialog .e-dlg-content .e-member-editor-outer-container .e-member-editor-container,
|
|
1975
1968
|
.e-bigger.e-pivotview .e-member-editor-dialog .e-dlg-content .e-member-editor-outer-container .e-member-editor-container {
|
|
1976
|
-
height:
|
|
1969
|
+
height: 140px;
|
|
1977
1970
|
}
|
|
1978
1971
|
.e-bigger .e-pivotview .e-stackedheadercelldiv,
|
|
1979
1972
|
.e-bigger .e-pivotview .e-stackedheadertext,
|
|
@@ -2367,7 +2360,8 @@
|
|
|
2367
2360
|
|
|
2368
2361
|
.e-pivot-formatting-dialog {
|
|
2369
2362
|
max-height: 480px !important;
|
|
2370
|
-
width:
|
|
2363
|
+
min-width: 628px !important;
|
|
2364
|
+
width: 628px !important;
|
|
2371
2365
|
}
|
|
2372
2366
|
.e-pivot-formatting-dialog .e-format-table tr:nth-child(odd) td {
|
|
2373
2367
|
padding-bottom: 4px;
|
|
@@ -2381,7 +2375,6 @@
|
|
|
2381
2375
|
.e-pivot-formatting-dialog .e-format-table tr:nth-child(even) td {
|
|
2382
2376
|
padding-bottom: 14px;
|
|
2383
2377
|
padding-right: 18px;
|
|
2384
|
-
white-space: nowrap;
|
|
2385
2378
|
}
|
|
2386
2379
|
.e-pivot-formatting-dialog .e-format-value-span {
|
|
2387
2380
|
vertical-align: bottom;
|
|
@@ -2474,9 +2467,6 @@
|
|
|
2474
2467
|
min-width: 320px !important;
|
|
2475
2468
|
width: 100% !important;
|
|
2476
2469
|
}
|
|
2477
|
-
.e-pivot-formatting-dialog.e-device .e-format-inner-div {
|
|
2478
|
-
width: 100% !important;
|
|
2479
|
-
}
|
|
2480
2470
|
.e-pivot-formatting-dialog.e-device .e-format-value1,
|
|
2481
2471
|
.e-pivot-formatting-dialog.e-device .e-format-value2,
|
|
2482
2472
|
.e-pivot-formatting-dialog.e-device .e-format-value-span {
|
|
@@ -2524,7 +2514,8 @@
|
|
|
2524
2514
|
|
|
2525
2515
|
.e-bigger.e-pivot-formatting-dialog,
|
|
2526
2516
|
.e-bigger .e-pivot-formatting-dialog {
|
|
2527
|
-
width:
|
|
2517
|
+
min-width: 680px !important;
|
|
2518
|
+
width: 680px !important;
|
|
2528
2519
|
}
|
|
2529
2520
|
.e-bigger.e-pivot-formatting-dialog .e-format-label,
|
|
2530
2521
|
.e-bigger.e-pivot-formatting-dialog .e-format-value-label,
|
|
@@ -2935,7 +2926,7 @@
|
|
|
2935
2926
|
|
|
2936
2927
|
.e-bigger.e-pivot-calc-dialog-div,
|
|
2937
2928
|
.e-bigger .e-pivot-calc-dialog-div {
|
|
2938
|
-
max-height:
|
|
2929
|
+
max-height: 590px !important;
|
|
2939
2930
|
min-width: 401px !important;
|
|
2940
2931
|
}
|
|
2941
2932
|
.e-bigger.e-pivot-calc-dialog-div .e-pivot-all-field-title,
|
|
@@ -2983,7 +2974,7 @@
|
|
|
2983
2974
|
.e-bigger.e-pivot-calc-dialog-div.e-olap-calc-dialog-div,
|
|
2984
2975
|
.e-bigger .e-pivot-calc-dialog-div.e-olap-calc-dialog-div {
|
|
2985
2976
|
max-height: 750px !important;
|
|
2986
|
-
min-width: 580px
|
|
2977
|
+
min-width: 580px;
|
|
2987
2978
|
}
|
|
2988
2979
|
.e-bigger.e-pivot-calc-dialog-div.e-olap-calc-dialog-div .e-pivot-calc-outer-div .e-olap-field-tree-div,
|
|
2989
2980
|
.e-bigger .e-pivot-calc-dialog-div.e-olap-calc-dialog-div .e-pivot-calc-outer-div .e-olap-field-tree-div {
|
|
@@ -4447,7 +4438,7 @@
|
|
|
4447
4438
|
height: 261px;
|
|
4448
4439
|
}
|
|
4449
4440
|
.e-pivotfieldlist-container.e-search-mode.e-popup {
|
|
4450
|
-
|
|
4441
|
+
height: 540px;
|
|
4451
4442
|
}
|
|
4452
4443
|
.e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container {
|
|
4453
4444
|
height: 369px;
|
|
@@ -4641,11 +4632,6 @@
|
|
|
4641
4632
|
background-color: transparent;
|
|
4642
4633
|
color: rgba(17, 24, 39, 0.87);
|
|
4643
4634
|
}
|
|
4644
|
-
.e-pivotfieldlist-container.e-device .e-adaptive-field-list-dialog .e-dlg-content .e-field-list-tree-outer-div,
|
|
4645
|
-
.e-pivotfieldlist-container.e-device .e-member-editor-dialog .e-dlg-content .e-field-list-tree-outer-div {
|
|
4646
|
-
height: 210px;
|
|
4647
|
-
overflow: auto;
|
|
4648
|
-
}
|
|
4649
4635
|
.e-pivotfieldlist-container.e-device .e-title-mobile-header {
|
|
4650
4636
|
display: -ms-flexbox;
|
|
4651
4637
|
display: flex;
|
|
@@ -5553,8 +5539,8 @@
|
|
|
5553
5539
|
}
|
|
5554
5540
|
.e-bigger .e-pivotfieldlist-container.e-search-mode.e-popup,
|
|
5555
5541
|
.e-bigger.e-pivotfieldlist-container.e-search-mode.e-popup {
|
|
5542
|
+
height: 550px !important;
|
|
5556
5543
|
max-height: 600px !important;
|
|
5557
|
-
min-height: 566px !important;
|
|
5558
5544
|
}
|
|
5559
5545
|
.e-bigger .e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container,
|
|
5560
5546
|
.e-bigger.e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container {
|
|
@@ -5571,8 +5557,4 @@
|
|
|
5571
5557
|
.e-bigger .e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container .e-axis-table .e-axis-content,
|
|
5572
5558
|
.e-bigger.e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container .e-axis-table .e-axis-content {
|
|
5573
5559
|
height: 165px !important;
|
|
5574
|
-
}
|
|
5575
|
-
.e-bigger .e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-dlg-content .e-field-list-tree-outer-div,
|
|
5576
|
-
.e-bigger.e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-dlg-content .e-field-list-tree-outer-div {
|
|
5577
|
-
max-height: 179px;
|
|
5578
5560
|
}
|