@syncfusion/ej2-pivotview 19.3.48 → 19.4.38
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/.github/PULL_REQUEST_TEMPLATE/Bug.md +76 -0
- package/.github/PULL_REQUEST_TEMPLATE/Feature.md +56 -0
- package/CHANGELOG.md +29 -19
- package/dist/ej2-pivotview.umd.min.js +2 -2
- package/dist/ej2-pivotview.umd.min.js.map +1 -1
- package/dist/es6/ej2-pivotview.es2015.js +2080 -1110
- package/dist/es6/ej2-pivotview.es2015.js.map +1 -1
- package/dist/es6/ej2-pivotview.es5.js +2096 -1120
- package/dist/es6/ej2-pivotview.es5.js.map +1 -1
- package/dist/global/ej2-pivotview.min.js +2 -2
- package/dist/global/ej2-pivotview.min.js.map +1 -1
- package/dist/global/index.d.ts +1 -1
- package/package.json +22 -22
- package/src/base/engine.d.ts +17 -1
- package/src/base/engine.js +74 -29
- package/src/base/export-util.d.ts +17 -0
- package/src/base/export-util.js +245 -0
- package/src/base/olap/engine.d.ts +7 -0
- package/src/base/olap/engine.js +138 -35
- package/src/base/util.d.ts +0 -9
- package/src/base/util.js +2 -215
- package/src/common/actions/field-list.js +1 -1
- package/src/common/actions/pivot-button.d.ts +5 -8
- package/src/common/actions/pivot-button.js +187 -171
- package/src/common/base/constant.d.ts +186 -0
- package/src/common/base/constant.js +186 -0
- package/src/common/base/css-constant.d.ts +2 -0
- package/src/common/base/css-constant.js +2 -0
- package/src/common/base/enum.d.ts +11 -0
- package/src/common/base/interface.d.ts +272 -2
- package/src/common/calculatedfield/calculated-field.js +108 -93
- package/src/common/conditionalformatting/conditional-formatting.js +8 -2
- package/src/common/grouping-bar/grouping-bar.js +1 -1
- package/src/common/popups/aggregate-menu.js +57 -35
- package/src/common/popups/drillthrough-dialog.js +187 -139
- package/src/common/popups/filter-dialog.d.ts +1 -0
- package/src/common/popups/filter-dialog.js +22 -1
- package/src/common/popups/formatting-dialog.js +4 -0
- package/src/common/popups/grouping.js +2 -1
- package/src/common/popups/toolbar.js +305 -203
- package/src/pivotchart/base/pivotchart.js +36 -15
- package/src/pivotfieldlist/base/field-list-model.d.ts +49 -1
- package/src/pivotfieldlist/base/field-list.d.ts +55 -1
- package/src/pivotfieldlist/base/field-list.js +68 -1
- package/src/pivotfieldlist/renderer/dialog-renderer.js +38 -15
- package/src/pivotfieldlist/renderer/tree-renderer.js +35 -22
- package/src/pivotview/actions/drill-through.js +1 -1
- package/src/pivotview/actions/excel-export.js +9 -7
- package/src/pivotview/actions/pdf-export.js +3 -3
- package/src/pivotview/base/pivotview-model.d.ts +46 -1
- package/src/pivotview/base/pivotview.d.ts +56 -2
- package/src/pivotview/base/pivotview.js +313 -109
- package/src/pivotview/model/chartsettings-model.d.ts +1 -1
- package/src/pivotview/model/chartsettings.d.ts +1 -1
- package/src/pivotview/model/chartsettings.js +1 -1
- package/src/pivotview/model/datasourcesettings-model.d.ts +8 -1
- package/src/pivotview/model/datasourcesettings.d.ts +7 -0
- package/src/pivotview/model/datasourcesettings.js +3 -0
- package/src/pivotview/renderer/render.d.ts +2 -1
- package/src/pivotview/renderer/render.js +64 -20
- package/styles/bootstrap-dark.css +115 -104
- package/styles/bootstrap.css +115 -104
- package/styles/bootstrap4.css +114 -81
- package/styles/bootstrap5-dark.css +220 -168
- package/styles/bootstrap5.css +215 -161
- package/styles/fabric-dark.css +117 -103
- package/styles/fabric.css +115 -102
- package/styles/highcontrast-light.css +116 -102
- package/styles/highcontrast.css +118 -104
- package/styles/material-dark.css +108 -97
- package/styles/material.css +108 -97
- package/styles/pivotfieldlist/_bootstrap-dark-definition.scss +1 -4
- package/styles/pivotfieldlist/_bootstrap-definition.scss +1 -4
- package/styles/pivotfieldlist/_bootstrap4-definition.scss +1 -4
- package/styles/pivotfieldlist/_bootstrap5-definition.scss +8 -11
- package/styles/pivotfieldlist/_fabric-dark-definition.scss +1 -4
- package/styles/pivotfieldlist/_fabric-definition.scss +1 -4
- package/styles/pivotfieldlist/_fluent-definition.scss +177 -0
- package/styles/pivotfieldlist/_highcontrast-definition.scss +1 -4
- package/styles/pivotfieldlist/_highcontrast-light-definition.scss +1 -4
- package/styles/pivotfieldlist/_layout.scss +199 -109
- package/styles/pivotfieldlist/_material-dark-definition.scss +1 -4
- package/styles/pivotfieldlist/_material-definition.scss +1 -4
- package/styles/pivotfieldlist/_tailwind-definition.scss +6 -9
- package/styles/pivotfieldlist/_theme.scss +185 -35
- package/styles/pivotfieldlist/bootstrap-dark.css +49 -58
- package/styles/pivotfieldlist/bootstrap.css +49 -58
- package/styles/pivotfieldlist/bootstrap4.css +44 -39
- package/styles/pivotfieldlist/bootstrap5-dark.css +115 -89
- package/styles/pivotfieldlist/bootstrap5.css +115 -89
- package/styles/pivotfieldlist/fabric-dark.css +49 -58
- package/styles/pivotfieldlist/fabric.css +49 -58
- package/styles/pivotfieldlist/highcontrast-light.css +49 -58
- package/styles/pivotfieldlist/highcontrast.css +49 -58
- package/styles/pivotfieldlist/icons/_bootstrap5.scss +2 -2
- package/styles/pivotfieldlist/icons/_fluent.scss +352 -0
- package/styles/pivotfieldlist/icons/_tailwind.scss +2 -2
- package/styles/pivotfieldlist/material-dark.css +44 -53
- package/styles/pivotfieldlist/material.css +44 -53
- package/styles/pivotfieldlist/tailwind-dark.css +138 -81
- package/styles/pivotfieldlist/tailwind.css +140 -83
- package/styles/pivotview/_bootstrap-dark-definition.scss +9 -6
- package/styles/pivotview/_bootstrap-definition.scss +9 -6
- package/styles/pivotview/_bootstrap4-definition.scss +10 -7
- package/styles/pivotview/_bootstrap5-definition.scss +12 -9
- package/styles/pivotview/_fabric-dark-definition.scss +8 -5
- package/styles/pivotview/_fabric-definition.scss +7 -4
- package/styles/pivotview/_fluent-definition.scss +126 -0
- package/styles/pivotview/_highcontrast-definition.scss +8 -5
- package/styles/pivotview/_highcontrast-light-definition.scss +7 -4
- package/styles/pivotview/_layout.scss +119 -64
- package/styles/pivotview/_material-dark-definition.scss +7 -4
- package/styles/pivotview/_material-definition.scss +8 -4
- package/styles/pivotview/_tailwind-definition.scss +8 -5
- package/styles/pivotview/_theme.scss +124 -70
- package/styles/pivotview/bootstrap-dark.css +66 -46
- package/styles/pivotview/bootstrap.css +66 -46
- package/styles/pivotview/bootstrap4.css +70 -42
- package/styles/pivotview/bootstrap5-dark.css +99 -73
- package/styles/pivotview/bootstrap5-dark.scss +0 -1
- package/styles/pivotview/bootstrap5.css +100 -72
- package/styles/pivotview/fabric-dark.css +68 -45
- package/styles/pivotview/fabric.css +66 -44
- package/styles/pivotview/highcontrast-light.css +67 -44
- package/styles/pivotview/highcontrast.css +69 -46
- package/styles/pivotview/icons/_bootstrap4.scss +1 -1
- package/styles/pivotview/icons/_bootstrap5.scss +1 -1
- package/styles/pivotview/icons/_fluent.scss +183 -0
- package/styles/pivotview/icons/_tailwind.scss +1 -1
- package/styles/pivotview/material-dark.css +64 -44
- package/styles/pivotview/material.css +64 -44
- package/styles/pivotview/tailwind-dark.css +106 -58
- package/styles/pivotview/tailwind-dark.scss +0 -1
- package/styles/pivotview/tailwind.css +107 -57
- package/styles/tailwind-dark.css +250 -145
- package/styles/tailwind.css +247 -140
|
@@ -47,19 +47,17 @@ $field-list-header-content-line-height: 1.125em !default;
|
|
|
47
47
|
$field-list-bigger-header-content-line-height: 1.6em !default;
|
|
48
48
|
$field-list-header-icon-wrapper-padding: 0 !default;
|
|
49
49
|
$field-list-bigger-header-icon-wrapper-padding: 7px !default;
|
|
50
|
-
$field-list-static-header-icon-wrapper-padding:
|
|
51
|
-
$field-list-static-bigger-header-icon-wrapper-padding:
|
|
50
|
+
$field-list-static-header-icon-wrapper-padding: $field-list-header-icon-wrapper-padding !default;
|
|
51
|
+
$field-list-static-bigger-header-icon-wrapper-padding: $field-list-bigger-header-icon-wrapper-padding !default;
|
|
52
52
|
$pivot-calculated-icon-opacity: .87 !default;
|
|
53
53
|
$field-list-bigger-button-line-height: 1.1em !default;
|
|
54
54
|
$field-list-excel-member-filter-height: 151px !default;
|
|
55
55
|
$field-list-excel-filter-height: 248px !default;
|
|
56
56
|
$field-list-excel-member-filter-bigger-height: 91px !default;
|
|
57
57
|
$field-list-excel-filter-bigger-height: 220px !default;
|
|
58
|
-
$field-list-clear-filter-icon: '\ea82' !default;
|
|
59
58
|
$format-label-font-opacity: .87 !default;
|
|
60
59
|
$format-label-font-weight: 500 !default;
|
|
61
60
|
$format-preview-bigger-height: 30px !default;
|
|
62
|
-
$format-delete-icon: '\e5a5' !default;
|
|
63
61
|
$format-outer-border-radius: 4px !default;
|
|
64
62
|
$format-dialog-width: 628px !default;
|
|
65
63
|
$format-dialog-bigger-width: 680px !default;
|
|
@@ -144,7 +142,7 @@ $field-list-button-height: 32px !default;
|
|
|
144
142
|
$field-list-bigger-button-height: 36px !default;
|
|
145
143
|
$field-list-axis-content-height: 133px !default;
|
|
146
144
|
$field-list-header-padding: 12px !default;
|
|
147
|
-
$field-list-bigger-header-padding:
|
|
145
|
+
$field-list-bigger-header-padding: 16px !default;
|
|
148
146
|
$field-list-bigger-header-font-size: 14px !default;
|
|
149
147
|
$field-list-button-padding: 9px 12px !default;
|
|
150
148
|
$field-list-bigger-button-padding: 9px 16px !default;
|
|
@@ -161,11 +159,10 @@ $field-list-adaptive-icon-height: 50px !default;
|
|
|
161
159
|
$field-list-adaptive-drag-prompt-height: 200px !default;
|
|
162
160
|
$field-list-adaptive-pivot-button-height: 36px !default;
|
|
163
161
|
$field-list-adaptive-pivot-button-padding: 9px 16px !default;
|
|
164
|
-
$field-list-toggle-icon: '\e434' !default;
|
|
165
162
|
$pivot-dialog-font-weight: normal !default;
|
|
166
|
-
$field-list-toggle-shadow-color:
|
|
167
|
-
$field-list-toggle-left-shadow-color:
|
|
168
|
-
$field-list-drag-clone-shadow-color:
|
|
163
|
+
$field-list-toggle-shadow-color: 0 1px 2px rgba(0, 0, 0, .06), 0 1px 3px rgba(0, 0, 0, .1) !default;
|
|
164
|
+
$field-list-toggle-left-shadow-color: 0 1px 2px rgba(0, 0, 0, .06), 0 1px 3px rgba(0, 0, 0, .1) !default;
|
|
165
|
+
$field-list-drag-clone-shadow-color: 0 1px 2px rgba(0, 0, 0, .06), 0 1px 3px rgba(0, 0, 0, .1) !default;
|
|
169
166
|
$field-list-treeview-font-weight: 500 !default;
|
|
170
167
|
$field-list-calc-formula-font-size: 13px !default;
|
|
171
168
|
$field-list-calc-bigger-formula-font-size: 13px !default;
|
|
@@ -47,7 +47,6 @@
|
|
|
47
47
|
padding: 8px 5px;
|
|
48
48
|
}
|
|
49
49
|
}
|
|
50
|
-
// sass-lint:enable-all
|
|
51
50
|
|
|
52
51
|
.e-bigger .e-pivotfieldlist,
|
|
53
52
|
.e-bigger.e-pivotfieldlist {
|
|
@@ -64,9 +63,9 @@
|
|
|
64
63
|
.e-pivotfieldlist-wrapper {
|
|
65
64
|
font-family: $field-list-font-family;
|
|
66
65
|
font-size: $field-list-content-font-size;
|
|
67
|
-
max-width: 700px;
|
|
68
|
-
min-width: 300px;
|
|
69
|
-
|
|
66
|
+
max-width: 700px !important;
|
|
67
|
+
min-width: 300px !important;
|
|
68
|
+
// sass-lint:enable-all
|
|
70
69
|
.e-layout-footer {
|
|
71
70
|
padding: 10px 2px 2px;
|
|
72
71
|
text-align: right;
|
|
@@ -94,15 +93,15 @@
|
|
|
94
93
|
|
|
95
94
|
}
|
|
96
95
|
|
|
96
|
+
// sass-lint:disable-all
|
|
97
97
|
.e-checkbox-layout {
|
|
98
98
|
float: left;
|
|
99
99
|
margin-top: 6px;
|
|
100
100
|
|
|
101
|
-
@if ($skin-name == 'tailwind') {
|
|
102
|
-
margin: 0;
|
|
103
|
-
|
|
101
|
+
@if ($skin-name == 'tailwind') or ($skin-name == 'FluentUI') {
|
|
102
|
+
margin-left: 0 !important;
|
|
103
|
+
margin-right: 0 !important;
|
|
104
104
|
}
|
|
105
|
-
|
|
106
105
|
}
|
|
107
106
|
|
|
108
107
|
&.e-rtl {
|
|
@@ -119,7 +118,6 @@
|
|
|
119
118
|
}
|
|
120
119
|
}
|
|
121
120
|
|
|
122
|
-
// sass-lint:disable-all
|
|
123
121
|
&.e-dialog {
|
|
124
122
|
max-height: 550px !important;
|
|
125
123
|
|
|
@@ -174,11 +172,11 @@
|
|
|
174
172
|
width: 100%;
|
|
175
173
|
|
|
176
174
|
.e-title-content {
|
|
175
|
+
flex: auto;
|
|
177
176
|
font-size: $field-list-title-font-size;
|
|
178
177
|
@if ($skin-name == 'tailwind') {
|
|
179
178
|
line-height: $field-list-title-line-height;
|
|
180
179
|
}
|
|
181
|
-
flex: auto;
|
|
182
180
|
}
|
|
183
181
|
}
|
|
184
182
|
|
|
@@ -212,17 +210,21 @@
|
|
|
212
210
|
font-size: $field-list-header-font-size;
|
|
213
211
|
font-weight: normal;
|
|
214
212
|
height: $field-list-header-height;
|
|
213
|
+
line-height: $field-list-header-content-line-height;
|
|
215
214
|
overflow: hidden;
|
|
216
215
|
padding: $field-list-tree-header-padding 0 0 $field-list-header-padding;
|
|
217
216
|
text-align: left;
|
|
218
217
|
text-overflow: ellipsis;
|
|
219
|
-
word-break: break-all;
|
|
220
|
-
line-height: $field-list-header-content-line-height;
|
|
221
218
|
text-transform: $field-list-header-text-transform;
|
|
219
|
+
word-break: break-all;
|
|
222
220
|
|
|
223
221
|
@if ($field-list-skin == 'bootstrap4') {
|
|
224
222
|
padding-left: 12px;
|
|
225
223
|
}
|
|
224
|
+
|
|
225
|
+
@if ($skin-name == 'FluentUI') {
|
|
226
|
+
font-weight: 600;
|
|
227
|
+
}
|
|
226
228
|
}
|
|
227
229
|
|
|
228
230
|
.e-field-header-wrapper {
|
|
@@ -257,6 +259,15 @@
|
|
|
257
259
|
font-weight: bold;
|
|
258
260
|
}
|
|
259
261
|
}
|
|
262
|
+
|
|
263
|
+
// sass-lint:disable-all
|
|
264
|
+
@if ($skin-name == 'FluentUI') {
|
|
265
|
+
.e-sort-none {
|
|
266
|
+
padding: 0 0 $field-list-icon-to-icon-padding $field-list-tree-header-padding !important;
|
|
267
|
+
transform: rotate(90deg);
|
|
268
|
+
}
|
|
269
|
+
}
|
|
270
|
+
// sass-lint:enable-all
|
|
260
271
|
}
|
|
261
272
|
|
|
262
273
|
.e-field-list-tree-outer-div {
|
|
@@ -414,7 +425,11 @@
|
|
|
414
425
|
padding: 2px $field-list-header-padding 5px;
|
|
415
426
|
|
|
416
427
|
@if ($skin-name == 'tailwind') {
|
|
417
|
-
padding: 5px $field-list-header-padding
|
|
428
|
+
padding: 5px $field-list-header-padding;
|
|
429
|
+
}
|
|
430
|
+
|
|
431
|
+
@if ($skin-name == 'bootstrap5') or ($skin-name == 'tailwind') {
|
|
432
|
+
border-radius: 3px 3px 0 0;
|
|
418
433
|
}
|
|
419
434
|
|
|
420
435
|
|
|
@@ -423,6 +438,10 @@
|
|
|
423
438
|
padding-top: $field-list-header-icon-wrapper-padding;
|
|
424
439
|
width: 20px;
|
|
425
440
|
|
|
441
|
+
@if ($skin-name == 'tailwind') or ($skin-name == 'bootstrap5') {
|
|
442
|
+
padding-left: 3px;
|
|
443
|
+
}
|
|
444
|
+
|
|
426
445
|
.e-axis-rows,
|
|
427
446
|
.e-axis-columns,
|
|
428
447
|
.e-axis-values,
|
|
@@ -441,8 +460,8 @@
|
|
|
441
460
|
overflow: hidden;
|
|
442
461
|
padding: 0 8px;
|
|
443
462
|
text-overflow: ellipsis;
|
|
444
|
-
width: 100%;
|
|
445
463
|
text-transform: $field-list-text-transform;
|
|
464
|
+
width: 100%;
|
|
446
465
|
|
|
447
466
|
@if ($field-list-skin == 'bootstrap4') {
|
|
448
467
|
margin-top: 3px;
|
|
@@ -451,6 +470,10 @@
|
|
|
451
470
|
@if ($skin-name == 'bootstrap5') {
|
|
452
471
|
margin-top: 3px;
|
|
453
472
|
}
|
|
473
|
+
|
|
474
|
+
@if ($skin-name == 'FluentUI') {
|
|
475
|
+
font-weight: 600;
|
|
476
|
+
}
|
|
454
477
|
}
|
|
455
478
|
|
|
456
479
|
.e-axis-content {
|
|
@@ -751,6 +774,15 @@
|
|
|
751
774
|
.e-sort-descend {
|
|
752
775
|
padding: $field-list-tree-header-padding $field-list-icon-to-icon-padding 0 0;
|
|
753
776
|
}
|
|
777
|
+
|
|
778
|
+
// sass-lint:disable-all
|
|
779
|
+
@if ($skin-name == 'FluentUI') {
|
|
780
|
+
.e-sort-none {
|
|
781
|
+
padding: $field-list-icon-to-icon-padding 0 0 $field-list-tree-header-padding !important;
|
|
782
|
+
transform: rotate(90deg);
|
|
783
|
+
}
|
|
784
|
+
}
|
|
785
|
+
// sass-lint:enable-all
|
|
754
786
|
}
|
|
755
787
|
}
|
|
756
788
|
|
|
@@ -789,6 +821,10 @@
|
|
|
789
821
|
height: 100%;
|
|
790
822
|
width: 100%;
|
|
791
823
|
|
|
824
|
+
@if ($skin-name == 'tailwind') or ($skin-name == 'bootstrap5') {
|
|
825
|
+
line-height: 1.5;
|
|
826
|
+
}
|
|
827
|
+
|
|
792
828
|
.e-field-table {
|
|
793
829
|
height: 210px;
|
|
794
830
|
width: 100%;
|
|
@@ -835,6 +871,10 @@
|
|
|
835
871
|
.e-axis-wrapper {
|
|
836
872
|
.e-axis-icon-wrapper {
|
|
837
873
|
padding-top: $field-list-static-header-icon-wrapper-padding;
|
|
874
|
+
|
|
875
|
+
@if ($skin-name == 'tailwind') or ($skin-name == 'bootstrap5') {
|
|
876
|
+
padding-left: 3px;
|
|
877
|
+
}
|
|
838
878
|
}
|
|
839
879
|
}
|
|
840
880
|
}
|
|
@@ -849,10 +889,34 @@
|
|
|
849
889
|
.e-axis-table {
|
|
850
890
|
.e-left-axis-fields {
|
|
851
891
|
padding-left: $field-list-static-padding-size;
|
|
892
|
+
|
|
893
|
+
.e-field-list-filters,
|
|
894
|
+
.e-field-list-rows {
|
|
895
|
+
.e-axis-wrapper {
|
|
896
|
+
.e-axis-icon-wrapper {
|
|
897
|
+
@if ($skin-name == 'tailwind') or ($skin-name == 'bootstrap5') {
|
|
898
|
+
padding-left: 0;
|
|
899
|
+
padding-right: 3px;
|
|
900
|
+
}
|
|
901
|
+
}
|
|
902
|
+
}
|
|
903
|
+
}
|
|
852
904
|
}
|
|
853
905
|
|
|
854
906
|
.e-right-axis-fields {
|
|
855
907
|
padding: 0;
|
|
908
|
+
|
|
909
|
+
.e-field-list-columns,
|
|
910
|
+
.e-field-list-values {
|
|
911
|
+
.e-axis-wrapper {
|
|
912
|
+
.e-axis-icon-wrapper {
|
|
913
|
+
@if ($skin-name == 'tailwind') or ($skin-name == 'bootstrap5') {
|
|
914
|
+
padding-left: 0;
|
|
915
|
+
padding-right: 3px;
|
|
916
|
+
}
|
|
917
|
+
}
|
|
918
|
+
}
|
|
919
|
+
}
|
|
856
920
|
}
|
|
857
921
|
}
|
|
858
922
|
}
|
|
@@ -967,7 +1031,7 @@
|
|
|
967
1031
|
background-color: $field-list-button-color;
|
|
968
1032
|
color: $field-list-default-font-color;
|
|
969
1033
|
}
|
|
970
|
-
|
|
1034
|
+
|
|
971
1035
|
&.e-list-selected {
|
|
972
1036
|
opacity: .5;
|
|
973
1037
|
}
|
|
@@ -1055,8 +1119,8 @@
|
|
|
1055
1119
|
padding-right: 10px;
|
|
1056
1120
|
|
|
1057
1121
|
@if ($skin-name == 'tailwind') {
|
|
1058
|
-
padding-right: 0;
|
|
1059
1122
|
margin-right: 8px;
|
|
1123
|
+
padding-right: 0;
|
|
1060
1124
|
}
|
|
1061
1125
|
}
|
|
1062
1126
|
}
|
|
@@ -1093,7 +1157,7 @@
|
|
|
1093
1157
|
.e-pivot-formula {
|
|
1094
1158
|
background-color: $pivot-formula-background;
|
|
1095
1159
|
border: 1px solid $pivot-formula-border;
|
|
1096
|
-
border-radius:
|
|
1160
|
+
border-radius: $field-list-default-border-radius;
|
|
1097
1161
|
color: $field-list-default-font-color;
|
|
1098
1162
|
height: 200px;
|
|
1099
1163
|
margin-left: 20px;
|
|
@@ -1403,13 +1467,14 @@
|
|
|
1403
1467
|
|
|
1404
1468
|
}
|
|
1405
1469
|
|
|
1470
|
+
// sass-lint:disable-all
|
|
1406
1471
|
.e-checkbox-layout {
|
|
1407
1472
|
float: left;
|
|
1408
1473
|
margin-top: 6px;
|
|
1409
1474
|
|
|
1410
|
-
@if ($skin-name == 'tailwind') {
|
|
1411
|
-
margin: 0;
|
|
1412
|
-
|
|
1475
|
+
@if ($skin-name == 'tailwind') or ($skin-name == 'FluentUI') {
|
|
1476
|
+
margin-left: 0 !important;
|
|
1477
|
+
margin-right: 0 !important;
|
|
1413
1478
|
}
|
|
1414
1479
|
}
|
|
1415
1480
|
|
|
@@ -1427,7 +1492,6 @@
|
|
|
1427
1492
|
}
|
|
1428
1493
|
}
|
|
1429
1494
|
|
|
1430
|
-
// sass-lint:disable-all
|
|
1431
1495
|
&.e-dialog {
|
|
1432
1496
|
max-height: 550px !important;
|
|
1433
1497
|
|
|
@@ -1463,7 +1527,7 @@
|
|
|
1463
1527
|
}
|
|
1464
1528
|
|
|
1465
1529
|
}
|
|
1466
|
-
|
|
1530
|
+
|
|
1467
1531
|
.e-field-list-title {
|
|
1468
1532
|
display: flex;
|
|
1469
1533
|
font-size: $field-list-title-font-size;
|
|
@@ -1525,6 +1589,10 @@
|
|
|
1525
1589
|
@if ($field-list-skin == 'bootstrap4') {
|
|
1526
1590
|
padding-left: 12px;
|
|
1527
1591
|
}
|
|
1592
|
+
|
|
1593
|
+
@if ($skin-name == 'FluentUI') {
|
|
1594
|
+
font-weight: 600;
|
|
1595
|
+
}
|
|
1528
1596
|
}
|
|
1529
1597
|
|
|
1530
1598
|
.e-field-header-container {
|
|
@@ -1559,6 +1627,15 @@
|
|
|
1559
1627
|
font-weight: bold;
|
|
1560
1628
|
}
|
|
1561
1629
|
}
|
|
1630
|
+
|
|
1631
|
+
// sass-lint:disable-all
|
|
1632
|
+
@if ($skin-name == 'FluentUI') {
|
|
1633
|
+
.e-sort-none {
|
|
1634
|
+
padding: 0 0 $field-list-icon-to-icon-padding $field-list-tree-header-padding !important;
|
|
1635
|
+
transform: rotate(90deg);
|
|
1636
|
+
}
|
|
1637
|
+
}
|
|
1638
|
+
// sass-lint:enable-all
|
|
1562
1639
|
}
|
|
1563
1640
|
|
|
1564
1641
|
.e-field-list-tree-outer-div {
|
|
@@ -1716,7 +1793,7 @@
|
|
|
1716
1793
|
padding: 2px $field-list-header-padding 5px;
|
|
1717
1794
|
|
|
1718
1795
|
@if ($skin-name == 'tailwind') {
|
|
1719
|
-
padding: 5px $field-list-header-padding
|
|
1796
|
+
padding: 5px $field-list-header-padding;
|
|
1720
1797
|
}
|
|
1721
1798
|
|
|
1722
1799
|
|
|
@@ -1743,8 +1820,8 @@
|
|
|
1743
1820
|
overflow: hidden;
|
|
1744
1821
|
padding: 0 8px;
|
|
1745
1822
|
text-overflow: ellipsis;
|
|
1746
|
-
width: 100%;
|
|
1747
1823
|
text-transform: $field-list-text-transform;
|
|
1824
|
+
width: 100%;
|
|
1748
1825
|
|
|
1749
1826
|
@if ($field-list-skin == 'bootstrap4') {
|
|
1750
1827
|
margin-top: 3px;
|
|
@@ -2052,6 +2129,15 @@
|
|
|
2052
2129
|
.e-sort-descend {
|
|
2053
2130
|
padding: $field-list-tree-header-padding $field-list-icon-to-icon-padding 0 0;
|
|
2054
2131
|
}
|
|
2132
|
+
|
|
2133
|
+
// sass-lint:disable-all
|
|
2134
|
+
@if ($skin-name == 'FluentUI') {
|
|
2135
|
+
.e-sort-none {
|
|
2136
|
+
padding: $field-list-icon-to-icon-padding 0 0 $field-list-tree-header-padding !important;
|
|
2137
|
+
transform: rotate(90deg);
|
|
2138
|
+
}
|
|
2139
|
+
}
|
|
2140
|
+
// sass-lint:enable-all
|
|
2055
2141
|
}
|
|
2056
2142
|
}
|
|
2057
2143
|
|
|
@@ -2265,8 +2351,8 @@
|
|
|
2265
2351
|
width: 100%;
|
|
2266
2352
|
|
|
2267
2353
|
@if ($skin-name == 'bootstrap5') {
|
|
2268
|
-
color: $field-list-default-
|
|
2269
|
-
|
|
2354
|
+
background-color: $field-list-default-bg-color;
|
|
2355
|
+
color: $field-list-default-font-color;
|
|
2270
2356
|
}
|
|
2271
2357
|
|
|
2272
2358
|
&.e-list-selected {
|
|
@@ -2351,10 +2437,10 @@
|
|
|
2351
2437
|
padding-right: 10px;
|
|
2352
2438
|
|
|
2353
2439
|
@if ($skin-name == 'tailwind') {
|
|
2354
|
-
padding-right: 0;
|
|
2355
2440
|
margin-right: 8px;
|
|
2441
|
+
padding-right: 0;
|
|
2356
2442
|
}
|
|
2357
|
-
|
|
2443
|
+
|
|
2358
2444
|
}
|
|
2359
2445
|
}
|
|
2360
2446
|
}
|
|
@@ -2390,7 +2476,7 @@
|
|
|
2390
2476
|
.e-pivot-formula {
|
|
2391
2477
|
background-color: $pivot-formula-background;
|
|
2392
2478
|
border: 1px solid $pivot-formula-border;
|
|
2393
|
-
border-radius:
|
|
2479
|
+
border-radius: $field-list-default-border-radius;
|
|
2394
2480
|
color: $field-list-default-font-color;
|
|
2395
2481
|
height: 200px;
|
|
2396
2482
|
margin-left: 20px;
|
|
@@ -2492,7 +2578,7 @@
|
|
|
2492
2578
|
.e-list-icon {
|
|
2493
2579
|
color: $field-list-tree-icon-color;
|
|
2494
2580
|
|
|
2495
|
-
@if($skin-name == 'bootstrap5') {
|
|
2581
|
+
@if($skin-name == 'bootstrap5') {
|
|
2496
2582
|
color: $field-list-default-fill-color;
|
|
2497
2583
|
}
|
|
2498
2584
|
|
|
@@ -2709,6 +2795,13 @@
|
|
|
2709
2795
|
padding: $field-list-tree-header-padding 0 0 $field-list-bigger-icon-to-icon-padding;
|
|
2710
2796
|
width: 24px;
|
|
2711
2797
|
}
|
|
2798
|
+
|
|
2799
|
+
// sass-lint:disable-all
|
|
2800
|
+
@if ($skin-name == 'FluentUI') {
|
|
2801
|
+
.e-sort-none {
|
|
2802
|
+
padding: 0 0 $field-list-bigger-icon-to-icon-padding $field-list-tree-header-padding !important;
|
|
2803
|
+
}
|
|
2804
|
+
}
|
|
2712
2805
|
}
|
|
2713
2806
|
|
|
2714
2807
|
.e-field-list {
|
|
@@ -2732,7 +2825,6 @@
|
|
|
2732
2825
|
}
|
|
2733
2826
|
}
|
|
2734
2827
|
|
|
2735
|
-
// sass-lint:disable-all
|
|
2736
2828
|
.e-calc-measure-icon,
|
|
2737
2829
|
.e-calc-dimension-icon,
|
|
2738
2830
|
.e-attributeCDB-icon,
|
|
@@ -2777,6 +2869,10 @@
|
|
|
2777
2869
|
padding-top: $field-list-bigger-header-icon-wrapper-padding;
|
|
2778
2870
|
width: 24px;
|
|
2779
2871
|
|
|
2872
|
+
@if ($skin-name == 'tailwind') or ($skin-name == 'bootstrap5') {
|
|
2873
|
+
padding-left: 4px;
|
|
2874
|
+
}
|
|
2875
|
+
|
|
2780
2876
|
.e-axis-rows,
|
|
2781
2877
|
.e-axis-columns,
|
|
2782
2878
|
.e-axis-values,
|
|
@@ -2808,10 +2904,11 @@
|
|
|
2808
2904
|
height: $field-list-bigger-button-height !important;
|
|
2809
2905
|
padding: $field-list-bigger-button-padding !important;
|
|
2810
2906
|
|
|
2907
|
+
// sass-lint:enable-all
|
|
2811
2908
|
.e-content {
|
|
2812
2909
|
font-size: $field-list-bigger-button-font-size;
|
|
2813
2910
|
line-height: $field-list-bigger-button-line-height;
|
|
2814
|
-
padding: 0 10px
|
|
2911
|
+
padding: 0 10px;
|
|
2815
2912
|
}
|
|
2816
2913
|
|
|
2817
2914
|
.e-draggable {
|
|
@@ -2874,6 +2971,7 @@
|
|
|
2874
2971
|
margin-top: $field-list-default-bigger-padding-size;
|
|
2875
2972
|
}
|
|
2876
2973
|
|
|
2974
|
+
// sass-lint:disable-all
|
|
2877
2975
|
.e-left-axis-fields .e-field-list-filters,
|
|
2878
2976
|
.e-left-axis-fields .e-field-list-rows,
|
|
2879
2977
|
.e-right-axis-fields .e-field-list-columns,
|
|
@@ -2881,6 +2979,10 @@
|
|
|
2881
2979
|
.e-axis-wrapper {
|
|
2882
2980
|
.e-axis-icon-wrapper {
|
|
2883
2981
|
padding-top: $field-list-static-bigger-header-icon-wrapper-padding;
|
|
2982
|
+
|
|
2983
|
+
@if ($skin-name == 'tailwind') or ($skin-name == 'bootstrap5') {
|
|
2984
|
+
padding-left: 4px;
|
|
2985
|
+
}
|
|
2884
2986
|
}
|
|
2885
2987
|
}
|
|
2886
2988
|
}
|
|
@@ -2891,11 +2993,34 @@
|
|
|
2891
2993
|
.e-axis-table {
|
|
2892
2994
|
.e-left-axis-fields {
|
|
2893
2995
|
padding-left: $field-list-default-bigger-padding-size;
|
|
2996
|
+
|
|
2997
|
+
.e-field-list-filters,
|
|
2998
|
+
.e-field-list-rows {
|
|
2999
|
+
.e-axis-wrapper {
|
|
3000
|
+
.e-axis-icon-wrapper {
|
|
3001
|
+
@if ($skin-name == 'tailwind') or ($skin-name == 'bootstrap5') {
|
|
3002
|
+
padding-left: 0;
|
|
3003
|
+
padding-right: 4px;
|
|
3004
|
+
}
|
|
3005
|
+
}
|
|
3006
|
+
}
|
|
3007
|
+
}
|
|
2894
3008
|
}
|
|
2895
3009
|
|
|
2896
|
-
// sass-lint:disable-all
|
|
2897
3010
|
.e-right-axis-fields {
|
|
2898
3011
|
padding: 0 !important;
|
|
3012
|
+
|
|
3013
|
+
.e-field-list-columns,
|
|
3014
|
+
.e-field-list-values {
|
|
3015
|
+
.e-axis-wrapper {
|
|
3016
|
+
.e-axis-icon-wrapper {
|
|
3017
|
+
@if ($skin-name == 'tailwind') or ($skin-name == 'bootstrap5') {
|
|
3018
|
+
padding-left: 0 !important;
|
|
3019
|
+
padding-right: 4px !important;
|
|
3020
|
+
}
|
|
3021
|
+
}
|
|
3022
|
+
}
|
|
3023
|
+
}
|
|
2899
3024
|
}
|
|
2900
3025
|
}
|
|
2901
3026
|
}
|
|
@@ -2942,6 +3067,14 @@
|
|
|
2942
3067
|
.e-sort-descend {
|
|
2943
3068
|
padding: $field-list-tree-header-padding $field-list-bigger-icon-to-icon-padding 0 0;
|
|
2944
3069
|
}
|
|
3070
|
+
|
|
3071
|
+
// sass-lint:disable-all
|
|
3072
|
+
@if ($skin-name == 'FluentUI') {
|
|
3073
|
+
.e-sort-none {
|
|
3074
|
+
padding: $field-list-bigger-icon-to-icon-padding 0 0 $field-list-tree-header-padding !important;
|
|
3075
|
+
}
|
|
3076
|
+
}
|
|
3077
|
+
// sass-lint:enable-all
|
|
2945
3078
|
}
|
|
2946
3079
|
}
|
|
2947
3080
|
|
|
@@ -3011,6 +3144,13 @@
|
|
|
3011
3144
|
padding: $field-list-tree-header-padding 0 0 $field-list-bigger-icon-to-icon-padding;
|
|
3012
3145
|
width: 24px;
|
|
3013
3146
|
}
|
|
3147
|
+
|
|
3148
|
+
// sass-lint:disable-all
|
|
3149
|
+
@if ($skin-name == 'FluentUI') {
|
|
3150
|
+
.e-sort-none {
|
|
3151
|
+
padding: 0 0 $field-list-bigger-icon-to-icon-padding $field-list-tree-header-padding !important;
|
|
3152
|
+
}
|
|
3153
|
+
}
|
|
3014
3154
|
}
|
|
3015
3155
|
|
|
3016
3156
|
.e-field-list {
|
|
@@ -3030,7 +3170,6 @@
|
|
|
3030
3170
|
width: 24px !important;
|
|
3031
3171
|
}
|
|
3032
3172
|
|
|
3033
|
-
// sass-lint:disable-all
|
|
3034
3173
|
.e-calc-measure-icon,
|
|
3035
3174
|
.e-calc-dimension-icon,
|
|
3036
3175
|
.e-attributeCDB-icon,
|
|
@@ -3053,6 +3192,7 @@
|
|
|
3053
3192
|
}
|
|
3054
3193
|
}
|
|
3055
3194
|
}
|
|
3195
|
+
// sass-lint:enable-all
|
|
3056
3196
|
|
|
3057
3197
|
.e-left-axis-fields .e-field-list-rows,
|
|
3058
3198
|
.e-right-axis-fields .e-field-list-values {
|
|
@@ -3100,16 +3240,18 @@
|
|
|
3100
3240
|
height: 126px;
|
|
3101
3241
|
}
|
|
3102
3242
|
|
|
3243
|
+
// sass-lint:disable-all
|
|
3103
3244
|
.e-pvt-btn-div {
|
|
3104
3245
|
.e-pivot-button {
|
|
3105
3246
|
font-size: $field-list-bigger-button-font-size;
|
|
3106
3247
|
height: $field-list-bigger-button-height !important;
|
|
3107
3248
|
padding: $field-list-bigger-button-padding !important;
|
|
3108
3249
|
|
|
3250
|
+
// sass-lint:enable-all
|
|
3109
3251
|
.e-content {
|
|
3110
3252
|
font-size: $field-list-bigger-button-font-size;
|
|
3111
3253
|
line-height: $field-list-bigger-button-line-height;
|
|
3112
|
-
padding: 0 10px
|
|
3254
|
+
padding: 0 10px;
|
|
3113
3255
|
}
|
|
3114
3256
|
|
|
3115
3257
|
.e-draggable {
|
|
@@ -3240,6 +3382,14 @@
|
|
|
3240
3382
|
.e-sort-descend {
|
|
3241
3383
|
padding: $field-list-tree-header-padding $field-list-bigger-icon-to-icon-padding 0 0;
|
|
3242
3384
|
}
|
|
3385
|
+
|
|
3386
|
+
// sass-lint:disable-all
|
|
3387
|
+
@if ($skin-name == 'FluentUI') {
|
|
3388
|
+
.e-sort-none {
|
|
3389
|
+
padding: $field-list-bigger-icon-to-icon-padding 0 0 $field-list-tree-header-padding !important;
|
|
3390
|
+
}
|
|
3391
|
+
}
|
|
3392
|
+
// sass-lint:enable-all
|
|
3243
3393
|
}
|
|
3244
3394
|
}
|
|
3245
3395
|
|