@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
|
@@ -317,6 +317,7 @@
|
|
|
317
317
|
|
|
318
318
|
.e-pivot-formatting-dialog {
|
|
319
319
|
max-height: 480px !important;
|
|
320
|
+
min-width: 629px !important;
|
|
320
321
|
width: 629px !important;
|
|
321
322
|
}
|
|
322
323
|
.e-pivot-formatting-dialog .e-format-table tr:nth-child(odd) td {
|
|
@@ -331,7 +332,6 @@
|
|
|
331
332
|
.e-pivot-formatting-dialog .e-format-table tr:nth-child(even) td {
|
|
332
333
|
padding-bottom: 14px;
|
|
333
334
|
padding-right: 18px;
|
|
334
|
-
white-space: nowrap;
|
|
335
335
|
}
|
|
336
336
|
.e-pivot-formatting-dialog .e-format-value-span {
|
|
337
337
|
vertical-align: bottom;
|
|
@@ -424,9 +424,6 @@
|
|
|
424
424
|
min-width: 320px !important;
|
|
425
425
|
width: 100% !important;
|
|
426
426
|
}
|
|
427
|
-
.e-pivot-formatting-dialog.e-device .e-format-inner-div {
|
|
428
|
-
width: 100% !important;
|
|
429
|
-
}
|
|
430
427
|
.e-pivot-formatting-dialog.e-device .e-format-value1,
|
|
431
428
|
.e-pivot-formatting-dialog.e-device .e-format-value2,
|
|
432
429
|
.e-pivot-formatting-dialog.e-device .e-format-value-span {
|
|
@@ -471,6 +468,7 @@
|
|
|
471
468
|
|
|
472
469
|
.e-bigger.e-pivot-formatting-dialog,
|
|
473
470
|
.e-bigger .e-pivot-formatting-dialog {
|
|
471
|
+
min-width: 714px !important;
|
|
474
472
|
width: 714px !important;
|
|
475
473
|
}
|
|
476
474
|
.e-bigger.e-pivot-formatting-dialog .e-format-label,
|
|
@@ -872,7 +870,7 @@
|
|
|
872
870
|
|
|
873
871
|
.e-bigger.e-pivot-calc-dialog-div,
|
|
874
872
|
.e-bigger .e-pivot-calc-dialog-div {
|
|
875
|
-
max-height:
|
|
873
|
+
max-height: 590px !important;
|
|
876
874
|
min-width: 401px !important;
|
|
877
875
|
}
|
|
878
876
|
.e-bigger.e-pivot-calc-dialog-div .e-pivot-all-field-title,
|
|
@@ -920,7 +918,7 @@
|
|
|
920
918
|
.e-bigger.e-pivot-calc-dialog-div.e-olap-calc-dialog-div,
|
|
921
919
|
.e-bigger .e-pivot-calc-dialog-div.e-olap-calc-dialog-div {
|
|
922
920
|
max-height: 750px !important;
|
|
923
|
-
min-width: 580px
|
|
921
|
+
min-width: 580px;
|
|
924
922
|
}
|
|
925
923
|
.e-bigger.e-pivot-calc-dialog-div.e-olap-calc-dialog-div .e-pivot-calc-outer-div .e-olap-field-tree-div,
|
|
926
924
|
.e-bigger .e-pivot-calc-dialog-div.e-olap-calc-dialog-div .e-pivot-calc-outer-div .e-olap-field-tree-div {
|
|
@@ -2363,7 +2361,7 @@
|
|
|
2363
2361
|
height: 261px;
|
|
2364
2362
|
}
|
|
2365
2363
|
.e-pivotfieldlist-container.e-search-mode.e-popup {
|
|
2366
|
-
|
|
2364
|
+
height: 540px;
|
|
2367
2365
|
}
|
|
2368
2366
|
.e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container {
|
|
2369
2367
|
height: 369px;
|
|
@@ -2559,11 +2557,6 @@
|
|
|
2559
2557
|
background-color: transparent;
|
|
2560
2558
|
color: #c8c6c4;
|
|
2561
2559
|
}
|
|
2562
|
-
.e-pivotfieldlist-container.e-device .e-adaptive-field-list-dialog .e-dlg-content .e-field-list-tree-outer-div,
|
|
2563
|
-
.e-pivotfieldlist-container.e-device .e-member-editor-dialog .e-dlg-content .e-field-list-tree-outer-div {
|
|
2564
|
-
height: 210px;
|
|
2565
|
-
overflow: auto;
|
|
2566
|
-
}
|
|
2567
2560
|
.e-pivotfieldlist-container.e-device .e-title-mobile-header {
|
|
2568
2561
|
display: -ms-flexbox;
|
|
2569
2562
|
display: flex;
|
|
@@ -3477,8 +3470,8 @@
|
|
|
3477
3470
|
}
|
|
3478
3471
|
.e-bigger .e-pivotfieldlist-container.e-search-mode.e-popup,
|
|
3479
3472
|
.e-bigger.e-pivotfieldlist-container.e-search-mode.e-popup {
|
|
3473
|
+
height: 565px !important;
|
|
3480
3474
|
max-height: 600px !important;
|
|
3481
|
-
min-height: 588px !important;
|
|
3482
3475
|
}
|
|
3483
3476
|
.e-bigger .e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container,
|
|
3484
3477
|
.e-bigger.e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container {
|
|
@@ -3495,8 +3488,4 @@
|
|
|
3495
3488
|
.e-bigger .e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container .e-axis-table .e-axis-content,
|
|
3496
3489
|
.e-bigger.e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container .e-axis-table .e-axis-content {
|
|
3497
3490
|
height: 165px !important;
|
|
3498
|
-
}
|
|
3499
|
-
.e-bigger .e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-dlg-content .e-field-list-tree-outer-div,
|
|
3500
|
-
.e-bigger.e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-dlg-content .e-field-list-tree-outer-div {
|
|
3501
|
-
max-height: 184px;
|
|
3502
3491
|
}
|
|
@@ -317,6 +317,7 @@
|
|
|
317
317
|
|
|
318
318
|
.e-pivot-formatting-dialog {
|
|
319
319
|
max-height: 480px !important;
|
|
320
|
+
min-width: 629px !important;
|
|
320
321
|
width: 629px !important;
|
|
321
322
|
}
|
|
322
323
|
.e-pivot-formatting-dialog .e-format-table tr:nth-child(odd) td {
|
|
@@ -331,7 +332,6 @@
|
|
|
331
332
|
.e-pivot-formatting-dialog .e-format-table tr:nth-child(even) td {
|
|
332
333
|
padding-bottom: 14px;
|
|
333
334
|
padding-right: 18px;
|
|
334
|
-
white-space: nowrap;
|
|
335
335
|
}
|
|
336
336
|
.e-pivot-formatting-dialog .e-format-value-span {
|
|
337
337
|
vertical-align: bottom;
|
|
@@ -424,9 +424,6 @@
|
|
|
424
424
|
min-width: 320px !important;
|
|
425
425
|
width: 100% !important;
|
|
426
426
|
}
|
|
427
|
-
.e-pivot-formatting-dialog.e-device .e-format-inner-div {
|
|
428
|
-
width: 100% !important;
|
|
429
|
-
}
|
|
430
427
|
.e-pivot-formatting-dialog.e-device .e-format-value1,
|
|
431
428
|
.e-pivot-formatting-dialog.e-device .e-format-value2,
|
|
432
429
|
.e-pivot-formatting-dialog.e-device .e-format-value-span {
|
|
@@ -471,6 +468,7 @@
|
|
|
471
468
|
|
|
472
469
|
.e-bigger.e-pivot-formatting-dialog,
|
|
473
470
|
.e-bigger .e-pivot-formatting-dialog {
|
|
471
|
+
min-width: 714px !important;
|
|
474
472
|
width: 714px !important;
|
|
475
473
|
}
|
|
476
474
|
.e-bigger.e-pivot-formatting-dialog .e-format-label,
|
|
@@ -872,7 +870,7 @@
|
|
|
872
870
|
|
|
873
871
|
.e-bigger.e-pivot-calc-dialog-div,
|
|
874
872
|
.e-bigger .e-pivot-calc-dialog-div {
|
|
875
|
-
max-height:
|
|
873
|
+
max-height: 590px !important;
|
|
876
874
|
min-width: 401px !important;
|
|
877
875
|
}
|
|
878
876
|
.e-bigger.e-pivot-calc-dialog-div .e-pivot-all-field-title,
|
|
@@ -920,7 +918,7 @@
|
|
|
920
918
|
.e-bigger.e-pivot-calc-dialog-div.e-olap-calc-dialog-div,
|
|
921
919
|
.e-bigger .e-pivot-calc-dialog-div.e-olap-calc-dialog-div {
|
|
922
920
|
max-height: 750px !important;
|
|
923
|
-
min-width: 580px
|
|
921
|
+
min-width: 580px;
|
|
924
922
|
}
|
|
925
923
|
.e-bigger.e-pivot-calc-dialog-div.e-olap-calc-dialog-div .e-pivot-calc-outer-div .e-olap-field-tree-div,
|
|
926
924
|
.e-bigger .e-pivot-calc-dialog-div.e-olap-calc-dialog-div .e-pivot-calc-outer-div .e-olap-field-tree-div {
|
|
@@ -2363,7 +2361,7 @@
|
|
|
2363
2361
|
height: 261px;
|
|
2364
2362
|
}
|
|
2365
2363
|
.e-pivotfieldlist-container.e-search-mode.e-popup {
|
|
2366
|
-
|
|
2364
|
+
height: 540px;
|
|
2367
2365
|
}
|
|
2368
2366
|
.e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container {
|
|
2369
2367
|
height: 369px;
|
|
@@ -2559,11 +2557,6 @@
|
|
|
2559
2557
|
background-color: transparent;
|
|
2560
2558
|
color: #3b3a39;
|
|
2561
2559
|
}
|
|
2562
|
-
.e-pivotfieldlist-container.e-device .e-adaptive-field-list-dialog .e-dlg-content .e-field-list-tree-outer-div,
|
|
2563
|
-
.e-pivotfieldlist-container.e-device .e-member-editor-dialog .e-dlg-content .e-field-list-tree-outer-div {
|
|
2564
|
-
height: 210px;
|
|
2565
|
-
overflow: auto;
|
|
2566
|
-
}
|
|
2567
2560
|
.e-pivotfieldlist-container.e-device .e-title-mobile-header {
|
|
2568
2561
|
display: -ms-flexbox;
|
|
2569
2562
|
display: flex;
|
|
@@ -3477,8 +3470,8 @@
|
|
|
3477
3470
|
}
|
|
3478
3471
|
.e-bigger .e-pivotfieldlist-container.e-search-mode.e-popup,
|
|
3479
3472
|
.e-bigger.e-pivotfieldlist-container.e-search-mode.e-popup {
|
|
3473
|
+
height: 565px !important;
|
|
3480
3474
|
max-height: 600px !important;
|
|
3481
|
-
min-height: 588px !important;
|
|
3482
3475
|
}
|
|
3483
3476
|
.e-bigger .e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container,
|
|
3484
3477
|
.e-bigger.e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container {
|
|
@@ -3495,8 +3488,4 @@
|
|
|
3495
3488
|
.e-bigger .e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container .e-axis-table .e-axis-content,
|
|
3496
3489
|
.e-bigger.e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container .e-axis-table .e-axis-content {
|
|
3497
3490
|
height: 165px !important;
|
|
3498
|
-
}
|
|
3499
|
-
.e-bigger .e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-dlg-content .e-field-list-tree-outer-div,
|
|
3500
|
-
.e-bigger.e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-dlg-content .e-field-list-tree-outer-div {
|
|
3501
|
-
max-height: 184px;
|
|
3502
3491
|
}
|
|
@@ -317,6 +317,7 @@
|
|
|
317
317
|
|
|
318
318
|
.e-pivot-formatting-dialog {
|
|
319
319
|
max-height: 480px !important;
|
|
320
|
+
min-width: 640px !important;
|
|
320
321
|
width: 640px !important;
|
|
321
322
|
}
|
|
322
323
|
.e-pivot-formatting-dialog .e-format-table tr:nth-child(odd) td {
|
|
@@ -331,7 +332,6 @@
|
|
|
331
332
|
.e-pivot-formatting-dialog .e-format-table tr:nth-child(even) td {
|
|
332
333
|
padding-bottom: 14px;
|
|
333
334
|
padding-right: 18px;
|
|
334
|
-
white-space: nowrap;
|
|
335
335
|
}
|
|
336
336
|
.e-pivot-formatting-dialog .e-format-value-span {
|
|
337
337
|
vertical-align: bottom;
|
|
@@ -424,9 +424,6 @@
|
|
|
424
424
|
min-width: 320px !important;
|
|
425
425
|
width: 100% !important;
|
|
426
426
|
}
|
|
427
|
-
.e-pivot-formatting-dialog.e-device .e-format-inner-div {
|
|
428
|
-
width: 100% !important;
|
|
429
|
-
}
|
|
430
427
|
.e-pivot-formatting-dialog.e-device .e-format-value1,
|
|
431
428
|
.e-pivot-formatting-dialog.e-device .e-format-value2,
|
|
432
429
|
.e-pivot-formatting-dialog.e-device .e-format-value-span {
|
|
@@ -471,6 +468,7 @@
|
|
|
471
468
|
|
|
472
469
|
.e-bigger.e-pivot-formatting-dialog,
|
|
473
470
|
.e-bigger .e-pivot-formatting-dialog {
|
|
471
|
+
min-width: 707px !important;
|
|
474
472
|
width: 707px !important;
|
|
475
473
|
}
|
|
476
474
|
.e-bigger.e-pivot-formatting-dialog .e-format-label,
|
|
@@ -862,7 +860,7 @@
|
|
|
862
860
|
|
|
863
861
|
.e-bigger.e-pivot-calc-dialog-div,
|
|
864
862
|
.e-bigger .e-pivot-calc-dialog-div {
|
|
865
|
-
max-height:
|
|
863
|
+
max-height: 590px !important;
|
|
866
864
|
min-width: 401px !important;
|
|
867
865
|
}
|
|
868
866
|
.e-bigger.e-pivot-calc-dialog-div .e-pivot-all-field-title,
|
|
@@ -905,7 +903,7 @@
|
|
|
905
903
|
.e-bigger.e-pivot-calc-dialog-div.e-olap-calc-dialog-div,
|
|
906
904
|
.e-bigger .e-pivot-calc-dialog-div.e-olap-calc-dialog-div {
|
|
907
905
|
max-height: 750px !important;
|
|
908
|
-
min-width: 580px
|
|
906
|
+
min-width: 580px;
|
|
909
907
|
}
|
|
910
908
|
.e-bigger.e-pivot-calc-dialog-div.e-olap-calc-dialog-div .e-pivot-calc-outer-div .e-olap-field-tree-div,
|
|
911
909
|
.e-bigger .e-pivot-calc-dialog-div.e-olap-calc-dialog-div .e-pivot-calc-outer-div .e-olap-field-tree-div {
|
|
@@ -2330,7 +2328,7 @@
|
|
|
2330
2328
|
height: 261px;
|
|
2331
2329
|
}
|
|
2332
2330
|
.e-pivotfieldlist-container.e-search-mode.e-popup {
|
|
2333
|
-
|
|
2331
|
+
height: 540px;
|
|
2334
2332
|
}
|
|
2335
2333
|
.e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container {
|
|
2336
2334
|
height: 369px;
|
|
@@ -2522,11 +2520,6 @@
|
|
|
2522
2520
|
background-color: transparent;
|
|
2523
2521
|
color: #000;
|
|
2524
2522
|
}
|
|
2525
|
-
.e-pivotfieldlist-container.e-device .e-adaptive-field-list-dialog .e-dlg-content .e-field-list-tree-outer-div,
|
|
2526
|
-
.e-pivotfieldlist-container.e-device .e-member-editor-dialog .e-dlg-content .e-field-list-tree-outer-div {
|
|
2527
|
-
height: 210px;
|
|
2528
|
-
overflow: auto;
|
|
2529
|
-
}
|
|
2530
2523
|
.e-pivotfieldlist-container.e-device .e-title-mobile-header {
|
|
2531
2524
|
display: -ms-flexbox;
|
|
2532
2525
|
display: flex;
|
|
@@ -3432,8 +3425,8 @@
|
|
|
3432
3425
|
}
|
|
3433
3426
|
.e-bigger .e-pivotfieldlist-container.e-search-mode.e-popup,
|
|
3434
3427
|
.e-bigger.e-pivotfieldlist-container.e-search-mode.e-popup {
|
|
3428
|
+
height: 565px !important;
|
|
3435
3429
|
max-height: 600px !important;
|
|
3436
|
-
min-height: 572px !important;
|
|
3437
3430
|
}
|
|
3438
3431
|
.e-bigger .e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container,
|
|
3439
3432
|
.e-bigger.e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container {
|
|
@@ -3450,8 +3443,4 @@
|
|
|
3450
3443
|
.e-bigger .e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container .e-axis-table .e-axis-content,
|
|
3451
3444
|
.e-bigger.e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container .e-axis-table .e-axis-content {
|
|
3452
3445
|
height: 165px !important;
|
|
3453
|
-
}
|
|
3454
|
-
.e-bigger .e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-dlg-content .e-field-list-tree-outer-div,
|
|
3455
|
-
.e-bigger.e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-dlg-content .e-field-list-tree-outer-div {
|
|
3456
|
-
max-height: 164px;
|
|
3457
3446
|
}
|
|
@@ -317,6 +317,7 @@
|
|
|
317
317
|
|
|
318
318
|
.e-pivot-formatting-dialog {
|
|
319
319
|
max-height: 480px !important;
|
|
320
|
+
min-width: 640px !important;
|
|
320
321
|
width: 640px !important;
|
|
321
322
|
}
|
|
322
323
|
.e-pivot-formatting-dialog .e-format-table tr:nth-child(odd) td {
|
|
@@ -331,7 +332,6 @@
|
|
|
331
332
|
.e-pivot-formatting-dialog .e-format-table tr:nth-child(even) td {
|
|
332
333
|
padding-bottom: 14px;
|
|
333
334
|
padding-right: 18px;
|
|
334
|
-
white-space: nowrap;
|
|
335
335
|
}
|
|
336
336
|
.e-pivot-formatting-dialog .e-format-value-span {
|
|
337
337
|
vertical-align: bottom;
|
|
@@ -424,9 +424,6 @@
|
|
|
424
424
|
min-width: 320px !important;
|
|
425
425
|
width: 100% !important;
|
|
426
426
|
}
|
|
427
|
-
.e-pivot-formatting-dialog.e-device .e-format-inner-div {
|
|
428
|
-
width: 100% !important;
|
|
429
|
-
}
|
|
430
427
|
.e-pivot-formatting-dialog.e-device .e-format-value1,
|
|
431
428
|
.e-pivot-formatting-dialog.e-device .e-format-value2,
|
|
432
429
|
.e-pivot-formatting-dialog.e-device .e-format-value-span {
|
|
@@ -471,6 +468,7 @@
|
|
|
471
468
|
|
|
472
469
|
.e-bigger.e-pivot-formatting-dialog,
|
|
473
470
|
.e-bigger .e-pivot-formatting-dialog {
|
|
471
|
+
min-width: 707px !important;
|
|
474
472
|
width: 707px !important;
|
|
475
473
|
}
|
|
476
474
|
.e-bigger.e-pivot-formatting-dialog .e-format-label,
|
|
@@ -862,7 +860,7 @@
|
|
|
862
860
|
|
|
863
861
|
.e-bigger.e-pivot-calc-dialog-div,
|
|
864
862
|
.e-bigger .e-pivot-calc-dialog-div {
|
|
865
|
-
max-height:
|
|
863
|
+
max-height: 590px !important;
|
|
866
864
|
min-width: 401px !important;
|
|
867
865
|
}
|
|
868
866
|
.e-bigger.e-pivot-calc-dialog-div .e-pivot-all-field-title,
|
|
@@ -905,7 +903,7 @@
|
|
|
905
903
|
.e-bigger.e-pivot-calc-dialog-div.e-olap-calc-dialog-div,
|
|
906
904
|
.e-bigger .e-pivot-calc-dialog-div.e-olap-calc-dialog-div {
|
|
907
905
|
max-height: 750px !important;
|
|
908
|
-
min-width: 580px
|
|
906
|
+
min-width: 580px;
|
|
909
907
|
}
|
|
910
908
|
.e-bigger.e-pivot-calc-dialog-div.e-olap-calc-dialog-div .e-pivot-calc-outer-div .e-olap-field-tree-div,
|
|
911
909
|
.e-bigger .e-pivot-calc-dialog-div.e-olap-calc-dialog-div .e-pivot-calc-outer-div .e-olap-field-tree-div {
|
|
@@ -2330,7 +2328,7 @@
|
|
|
2330
2328
|
height: 261px;
|
|
2331
2329
|
}
|
|
2332
2330
|
.e-pivotfieldlist-container.e-search-mode.e-popup {
|
|
2333
|
-
|
|
2331
|
+
height: 540px;
|
|
2334
2332
|
}
|
|
2335
2333
|
.e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container {
|
|
2336
2334
|
height: 369px;
|
|
@@ -2522,11 +2520,6 @@
|
|
|
2522
2520
|
background-color: transparent;
|
|
2523
2521
|
color: #fff;
|
|
2524
2522
|
}
|
|
2525
|
-
.e-pivotfieldlist-container.e-device .e-adaptive-field-list-dialog .e-dlg-content .e-field-list-tree-outer-div,
|
|
2526
|
-
.e-pivotfieldlist-container.e-device .e-member-editor-dialog .e-dlg-content .e-field-list-tree-outer-div {
|
|
2527
|
-
height: 210px;
|
|
2528
|
-
overflow: auto;
|
|
2529
|
-
}
|
|
2530
2523
|
.e-pivotfieldlist-container.e-device .e-title-mobile-header {
|
|
2531
2524
|
display: -ms-flexbox;
|
|
2532
2525
|
display: flex;
|
|
@@ -3432,8 +3425,8 @@
|
|
|
3432
3425
|
}
|
|
3433
3426
|
.e-bigger .e-pivotfieldlist-container.e-search-mode.e-popup,
|
|
3434
3427
|
.e-bigger.e-pivotfieldlist-container.e-search-mode.e-popup {
|
|
3428
|
+
height: 565px !important;
|
|
3435
3429
|
max-height: 600px !important;
|
|
3436
|
-
min-height: 575px !important;
|
|
3437
3430
|
}
|
|
3438
3431
|
.e-bigger .e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container,
|
|
3439
3432
|
.e-bigger.e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container {
|
|
@@ -3450,8 +3443,4 @@
|
|
|
3450
3443
|
.e-bigger .e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container .e-axis-table .e-axis-content,
|
|
3451
3444
|
.e-bigger.e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container .e-axis-table .e-axis-content {
|
|
3452
3445
|
height: 165px !important;
|
|
3453
|
-
}
|
|
3454
|
-
.e-bigger .e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-dlg-content .e-field-list-tree-outer-div,
|
|
3455
|
-
.e-bigger.e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-dlg-content .e-field-list-tree-outer-div {
|
|
3456
|
-
max-height: 164px;
|
|
3457
3446
|
}
|