@syncfusion/ej2-pivotview 19.3.57 → 19.4.42
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.github/PULL_REQUEST_TEMPLATE/Bug.md +76 -0
- package/.github/PULL_REQUEST_TEMPLATE/Feature.md +56 -0
- package/CHANGELOG.md +40 -27
- package/README.md +1 -1
- 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 +2052 -1101
- package/dist/es6/ej2-pivotview.es2015.js.map +1 -1
- package/dist/es6/ej2-pivotview.es5.js +2068 -1111
- 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 +78 -27
- 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 +188 -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 +10 -11
- package/src/pivotview/actions/pdf-export.js +13 -6
- package/src/pivotview/actions/virtualscroll.d.ts +1 -0
- package/src/pivotview/actions/virtualscroll.js +6 -2
- 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 +288 -107
- package/src/pivotview/model/chartsettings-model.d.ts +2 -2
- package/src/pivotview/model/chartsettings.d.ts +2 -2
- package/src/pivotview/model/chartsettings.js +2 -2
- 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 +39 -6
- package/styles/bootstrap-dark.css +145 -118
- package/styles/bootstrap.css +145 -118
- package/styles/bootstrap4.css +144 -95
- package/styles/bootstrap5-dark.css +250 -182
- package/styles/bootstrap5.css +245 -175
- package/styles/fabric-dark.css +147 -117
- package/styles/fabric.css +145 -116
- package/styles/highcontrast-light.css +146 -116
- package/styles/highcontrast.css +148 -118
- package/styles/material-dark.css +138 -111
- package/styles/material.css +138 -111
- 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 +213 -47
- package/styles/pivotfieldlist/bootstrap-dark.css +79 -72
- package/styles/pivotfieldlist/bootstrap.css +79 -72
- package/styles/pivotfieldlist/bootstrap4.css +74 -53
- package/styles/pivotfieldlist/bootstrap5-dark.css +145 -103
- package/styles/pivotfieldlist/bootstrap5.css +145 -103
- package/styles/pivotfieldlist/fabric-dark.css +79 -72
- package/styles/pivotfieldlist/fabric.css +79 -72
- package/styles/pivotfieldlist/highcontrast-light.css +79 -72
- package/styles/pivotfieldlist/highcontrast.css +79 -72
- 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 +74 -67
- package/styles/pivotfieldlist/material.css +74 -67
- package/styles/pivotfieldlist/tailwind-dark.css +168 -95
- package/styles/pivotfieldlist/tailwind.css +170 -97
- 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 +280 -159
- package/styles/tailwind.css +277 -154
|
@@ -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,15 +63,25 @@
|
|
|
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 {
|
|
70
|
+
display: flex;
|
|
71
71
|
padding: 10px 2px 2px;
|
|
72
|
-
text-align: right;
|
|
73
72
|
|
|
74
|
-
.e-
|
|
75
|
-
|
|
73
|
+
.e-button-layout {
|
|
74
|
+
flex: auto;
|
|
75
|
+
text-align: end;
|
|
76
|
+
|
|
77
|
+
.e-defer-apply-button {
|
|
78
|
+
margin-right: 10px;
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
.e-cancel-btn,
|
|
82
|
+
.e-defer-apply-button {
|
|
83
|
+
min-width: fit-content;
|
|
84
|
+
}
|
|
76
85
|
}
|
|
77
86
|
|
|
78
87
|
.e-cancel-btn,
|
|
@@ -85,7 +94,7 @@
|
|
|
85
94
|
}
|
|
86
95
|
|
|
87
96
|
.e-checkbox-layout .e-label {
|
|
88
|
-
|
|
97
|
+
padding-right: 10px;
|
|
89
98
|
}
|
|
90
99
|
|
|
91
100
|
.e-checkbox-layout {
|
|
@@ -94,21 +103,19 @@
|
|
|
94
103
|
|
|
95
104
|
}
|
|
96
105
|
|
|
106
|
+
// sass-lint:disable-all
|
|
97
107
|
.e-checkbox-layout {
|
|
98
108
|
float: left;
|
|
99
109
|
margin-top: 6px;
|
|
100
110
|
|
|
101
|
-
@if ($skin-name == 'tailwind') {
|
|
102
|
-
margin: 0;
|
|
103
|
-
|
|
111
|
+
@if ($skin-name == 'tailwind') or ($skin-name == 'FluentUI') {
|
|
112
|
+
margin-left: 0 !important;
|
|
113
|
+
margin-right: 0 !important;
|
|
104
114
|
}
|
|
105
|
-
|
|
106
115
|
}
|
|
107
116
|
|
|
108
117
|
&.e-rtl {
|
|
109
118
|
.e-layout-footer {
|
|
110
|
-
text-align: left;
|
|
111
|
-
|
|
112
119
|
.e-defer-apply-button {
|
|
113
120
|
margin-left: 10px;
|
|
114
121
|
}
|
|
@@ -119,7 +126,6 @@
|
|
|
119
126
|
}
|
|
120
127
|
}
|
|
121
128
|
|
|
122
|
-
// sass-lint:disable-all
|
|
123
129
|
&.e-dialog {
|
|
124
130
|
max-height: 550px !important;
|
|
125
131
|
|
|
@@ -174,11 +180,11 @@
|
|
|
174
180
|
width: 100%;
|
|
175
181
|
|
|
176
182
|
.e-title-content {
|
|
183
|
+
flex: auto;
|
|
177
184
|
font-size: $field-list-title-font-size;
|
|
178
185
|
@if ($skin-name == 'tailwind') {
|
|
179
186
|
line-height: $field-list-title-line-height;
|
|
180
187
|
}
|
|
181
|
-
flex: auto;
|
|
182
188
|
}
|
|
183
189
|
}
|
|
184
190
|
|
|
@@ -212,17 +218,21 @@
|
|
|
212
218
|
font-size: $field-list-header-font-size;
|
|
213
219
|
font-weight: normal;
|
|
214
220
|
height: $field-list-header-height;
|
|
221
|
+
line-height: $field-list-header-content-line-height;
|
|
215
222
|
overflow: hidden;
|
|
216
223
|
padding: $field-list-tree-header-padding 0 0 $field-list-header-padding;
|
|
217
224
|
text-align: left;
|
|
218
225
|
text-overflow: ellipsis;
|
|
219
|
-
word-break: break-all;
|
|
220
|
-
line-height: $field-list-header-content-line-height;
|
|
221
226
|
text-transform: $field-list-header-text-transform;
|
|
227
|
+
word-break: break-all;
|
|
222
228
|
|
|
223
229
|
@if ($field-list-skin == 'bootstrap4') {
|
|
224
230
|
padding-left: 12px;
|
|
225
231
|
}
|
|
232
|
+
|
|
233
|
+
@if ($skin-name == 'FluentUI') {
|
|
234
|
+
font-weight: 600;
|
|
235
|
+
}
|
|
226
236
|
}
|
|
227
237
|
|
|
228
238
|
.e-field-header-wrapper {
|
|
@@ -257,6 +267,15 @@
|
|
|
257
267
|
font-weight: bold;
|
|
258
268
|
}
|
|
259
269
|
}
|
|
270
|
+
|
|
271
|
+
// sass-lint:disable-all
|
|
272
|
+
@if ($skin-name == 'FluentUI') {
|
|
273
|
+
.e-sort-none {
|
|
274
|
+
padding: 0 0 $field-list-icon-to-icon-padding $field-list-tree-header-padding !important;
|
|
275
|
+
transform: rotate(90deg);
|
|
276
|
+
}
|
|
277
|
+
}
|
|
278
|
+
// sass-lint:enable-all
|
|
260
279
|
}
|
|
261
280
|
|
|
262
281
|
.e-field-list-tree-outer-div {
|
|
@@ -414,7 +433,11 @@
|
|
|
414
433
|
padding: 2px $field-list-header-padding 5px;
|
|
415
434
|
|
|
416
435
|
@if ($skin-name == 'tailwind') {
|
|
417
|
-
padding: 5px $field-list-header-padding
|
|
436
|
+
padding: 5px $field-list-header-padding;
|
|
437
|
+
}
|
|
438
|
+
|
|
439
|
+
@if ($skin-name == 'bootstrap5') or ($skin-name == 'tailwind') {
|
|
440
|
+
border-radius: 3px 3px 0 0;
|
|
418
441
|
}
|
|
419
442
|
|
|
420
443
|
|
|
@@ -423,6 +446,10 @@
|
|
|
423
446
|
padding-top: $field-list-header-icon-wrapper-padding;
|
|
424
447
|
width: 20px;
|
|
425
448
|
|
|
449
|
+
@if ($skin-name == 'tailwind') or ($skin-name == 'bootstrap5') {
|
|
450
|
+
padding-left: 3px;
|
|
451
|
+
}
|
|
452
|
+
|
|
426
453
|
.e-axis-rows,
|
|
427
454
|
.e-axis-columns,
|
|
428
455
|
.e-axis-values,
|
|
@@ -441,8 +468,8 @@
|
|
|
441
468
|
overflow: hidden;
|
|
442
469
|
padding: 0 8px;
|
|
443
470
|
text-overflow: ellipsis;
|
|
444
|
-
width: 100%;
|
|
445
471
|
text-transform: $field-list-text-transform;
|
|
472
|
+
width: 100%;
|
|
446
473
|
|
|
447
474
|
@if ($field-list-skin == 'bootstrap4') {
|
|
448
475
|
margin-top: 3px;
|
|
@@ -451,6 +478,10 @@
|
|
|
451
478
|
@if ($skin-name == 'bootstrap5') {
|
|
452
479
|
margin-top: 3px;
|
|
453
480
|
}
|
|
481
|
+
|
|
482
|
+
@if ($skin-name == 'FluentUI') {
|
|
483
|
+
font-weight: 600;
|
|
484
|
+
}
|
|
454
485
|
}
|
|
455
486
|
|
|
456
487
|
.e-axis-content {
|
|
@@ -751,6 +782,15 @@
|
|
|
751
782
|
.e-sort-descend {
|
|
752
783
|
padding: $field-list-tree-header-padding $field-list-icon-to-icon-padding 0 0;
|
|
753
784
|
}
|
|
785
|
+
|
|
786
|
+
// sass-lint:disable-all
|
|
787
|
+
@if ($skin-name == 'FluentUI') {
|
|
788
|
+
.e-sort-none {
|
|
789
|
+
padding: $field-list-icon-to-icon-padding 0 0 $field-list-tree-header-padding !important;
|
|
790
|
+
transform: rotate(90deg);
|
|
791
|
+
}
|
|
792
|
+
}
|
|
793
|
+
// sass-lint:enable-all
|
|
754
794
|
}
|
|
755
795
|
}
|
|
756
796
|
|
|
@@ -789,6 +829,10 @@
|
|
|
789
829
|
height: 100%;
|
|
790
830
|
width: 100%;
|
|
791
831
|
|
|
832
|
+
@if ($skin-name == 'tailwind') or ($skin-name == 'bootstrap5') {
|
|
833
|
+
line-height: 1.5;
|
|
834
|
+
}
|
|
835
|
+
|
|
792
836
|
.e-field-table {
|
|
793
837
|
height: 210px;
|
|
794
838
|
width: 100%;
|
|
@@ -835,6 +879,10 @@
|
|
|
835
879
|
.e-axis-wrapper {
|
|
836
880
|
.e-axis-icon-wrapper {
|
|
837
881
|
padding-top: $field-list-static-header-icon-wrapper-padding;
|
|
882
|
+
|
|
883
|
+
@if ($skin-name == 'tailwind') or ($skin-name == 'bootstrap5') {
|
|
884
|
+
padding-left: 3px;
|
|
885
|
+
}
|
|
838
886
|
}
|
|
839
887
|
}
|
|
840
888
|
}
|
|
@@ -849,10 +897,34 @@
|
|
|
849
897
|
.e-axis-table {
|
|
850
898
|
.e-left-axis-fields {
|
|
851
899
|
padding-left: $field-list-static-padding-size;
|
|
900
|
+
|
|
901
|
+
.e-field-list-filters,
|
|
902
|
+
.e-field-list-rows {
|
|
903
|
+
.e-axis-wrapper {
|
|
904
|
+
.e-axis-icon-wrapper {
|
|
905
|
+
@if ($skin-name == 'tailwind') or ($skin-name == 'bootstrap5') {
|
|
906
|
+
padding-left: 0;
|
|
907
|
+
padding-right: 3px;
|
|
908
|
+
}
|
|
909
|
+
}
|
|
910
|
+
}
|
|
911
|
+
}
|
|
852
912
|
}
|
|
853
913
|
|
|
854
914
|
.e-right-axis-fields {
|
|
855
915
|
padding: 0;
|
|
916
|
+
|
|
917
|
+
.e-field-list-columns,
|
|
918
|
+
.e-field-list-values {
|
|
919
|
+
.e-axis-wrapper {
|
|
920
|
+
.e-axis-icon-wrapper {
|
|
921
|
+
@if ($skin-name == 'tailwind') or ($skin-name == 'bootstrap5') {
|
|
922
|
+
padding-left: 0;
|
|
923
|
+
padding-right: 3px;
|
|
924
|
+
}
|
|
925
|
+
}
|
|
926
|
+
}
|
|
927
|
+
}
|
|
856
928
|
}
|
|
857
929
|
}
|
|
858
930
|
}
|
|
@@ -967,7 +1039,7 @@
|
|
|
967
1039
|
background-color: $field-list-button-color;
|
|
968
1040
|
color: $field-list-default-font-color;
|
|
969
1041
|
}
|
|
970
|
-
|
|
1042
|
+
|
|
971
1043
|
&.e-list-selected {
|
|
972
1044
|
opacity: .5;
|
|
973
1045
|
}
|
|
@@ -1055,8 +1127,8 @@
|
|
|
1055
1127
|
padding-right: 10px;
|
|
1056
1128
|
|
|
1057
1129
|
@if ($skin-name == 'tailwind') {
|
|
1058
|
-
padding-right: 0;
|
|
1059
1130
|
margin-right: 8px;
|
|
1131
|
+
padding-right: 0;
|
|
1060
1132
|
}
|
|
1061
1133
|
}
|
|
1062
1134
|
}
|
|
@@ -1093,7 +1165,7 @@
|
|
|
1093
1165
|
.e-pivot-formula {
|
|
1094
1166
|
background-color: $pivot-formula-background;
|
|
1095
1167
|
border: 1px solid $pivot-formula-border;
|
|
1096
|
-
border-radius:
|
|
1168
|
+
border-radius: $field-list-default-border-radius;
|
|
1097
1169
|
color: $field-list-default-font-color;
|
|
1098
1170
|
height: 200px;
|
|
1099
1171
|
margin-left: 20px;
|
|
@@ -1377,11 +1449,21 @@
|
|
|
1377
1449
|
min-width: 300px;
|
|
1378
1450
|
|
|
1379
1451
|
.e-layout-footer {
|
|
1452
|
+
display: flex;
|
|
1380
1453
|
padding: 10px 2px 2px;
|
|
1381
|
-
text-align: right;
|
|
1382
1454
|
|
|
1383
|
-
.e-
|
|
1384
|
-
|
|
1455
|
+
.e-button-layout {
|
|
1456
|
+
flex: auto;
|
|
1457
|
+
text-align: end;
|
|
1458
|
+
|
|
1459
|
+
.e-defer-apply-button {
|
|
1460
|
+
margin-right: 10px;
|
|
1461
|
+
}
|
|
1462
|
+
|
|
1463
|
+
.e-cancel-btn,
|
|
1464
|
+
.e-defer-apply-button {
|
|
1465
|
+
min-width: fit-content;
|
|
1466
|
+
}
|
|
1385
1467
|
}
|
|
1386
1468
|
|
|
1387
1469
|
.e-cancel-btn,
|
|
@@ -1394,7 +1476,7 @@
|
|
|
1394
1476
|
}
|
|
1395
1477
|
|
|
1396
1478
|
.e-checkbox-layout .e-label {
|
|
1397
|
-
|
|
1479
|
+
padding-right: 10px;
|
|
1398
1480
|
}
|
|
1399
1481
|
|
|
1400
1482
|
.e-checkbox-layout {
|
|
@@ -1403,20 +1485,19 @@
|
|
|
1403
1485
|
|
|
1404
1486
|
}
|
|
1405
1487
|
|
|
1488
|
+
// sass-lint:disable-all
|
|
1406
1489
|
.e-checkbox-layout {
|
|
1407
1490
|
float: left;
|
|
1408
1491
|
margin-top: 6px;
|
|
1409
1492
|
|
|
1410
|
-
@if ($skin-name == 'tailwind') {
|
|
1411
|
-
margin: 0;
|
|
1412
|
-
|
|
1493
|
+
@if ($skin-name == 'tailwind') or ($skin-name == 'FluentUI') {
|
|
1494
|
+
margin-left: 0 !important;
|
|
1495
|
+
margin-right: 0 !important;
|
|
1413
1496
|
}
|
|
1414
1497
|
}
|
|
1415
1498
|
|
|
1416
1499
|
&.e-rtl {
|
|
1417
1500
|
.e-layout-footer {
|
|
1418
|
-
text-align: left;
|
|
1419
|
-
|
|
1420
1501
|
.e-defer-apply-button {
|
|
1421
1502
|
margin-left: 10px;
|
|
1422
1503
|
}
|
|
@@ -1427,7 +1508,6 @@
|
|
|
1427
1508
|
}
|
|
1428
1509
|
}
|
|
1429
1510
|
|
|
1430
|
-
// sass-lint:disable-all
|
|
1431
1511
|
&.e-dialog {
|
|
1432
1512
|
max-height: 550px !important;
|
|
1433
1513
|
|
|
@@ -1463,7 +1543,7 @@
|
|
|
1463
1543
|
}
|
|
1464
1544
|
|
|
1465
1545
|
}
|
|
1466
|
-
|
|
1546
|
+
|
|
1467
1547
|
.e-field-list-title {
|
|
1468
1548
|
display: flex;
|
|
1469
1549
|
font-size: $field-list-title-font-size;
|
|
@@ -1525,6 +1605,10 @@
|
|
|
1525
1605
|
@if ($field-list-skin == 'bootstrap4') {
|
|
1526
1606
|
padding-left: 12px;
|
|
1527
1607
|
}
|
|
1608
|
+
|
|
1609
|
+
@if ($skin-name == 'FluentUI') {
|
|
1610
|
+
font-weight: 600;
|
|
1611
|
+
}
|
|
1528
1612
|
}
|
|
1529
1613
|
|
|
1530
1614
|
.e-field-header-container {
|
|
@@ -1559,6 +1643,15 @@
|
|
|
1559
1643
|
font-weight: bold;
|
|
1560
1644
|
}
|
|
1561
1645
|
}
|
|
1646
|
+
|
|
1647
|
+
// sass-lint:disable-all
|
|
1648
|
+
@if ($skin-name == 'FluentUI') {
|
|
1649
|
+
.e-sort-none {
|
|
1650
|
+
padding: 0 0 $field-list-icon-to-icon-padding $field-list-tree-header-padding !important;
|
|
1651
|
+
transform: rotate(90deg);
|
|
1652
|
+
}
|
|
1653
|
+
}
|
|
1654
|
+
// sass-lint:enable-all
|
|
1562
1655
|
}
|
|
1563
1656
|
|
|
1564
1657
|
.e-field-list-tree-outer-div {
|
|
@@ -1716,7 +1809,7 @@
|
|
|
1716
1809
|
padding: 2px $field-list-header-padding 5px;
|
|
1717
1810
|
|
|
1718
1811
|
@if ($skin-name == 'tailwind') {
|
|
1719
|
-
padding: 5px $field-list-header-padding
|
|
1812
|
+
padding: 5px $field-list-header-padding;
|
|
1720
1813
|
}
|
|
1721
1814
|
|
|
1722
1815
|
|
|
@@ -1743,8 +1836,8 @@
|
|
|
1743
1836
|
overflow: hidden;
|
|
1744
1837
|
padding: 0 8px;
|
|
1745
1838
|
text-overflow: ellipsis;
|
|
1746
|
-
width: 100%;
|
|
1747
1839
|
text-transform: $field-list-text-transform;
|
|
1840
|
+
width: 100%;
|
|
1748
1841
|
|
|
1749
1842
|
@if ($field-list-skin == 'bootstrap4') {
|
|
1750
1843
|
margin-top: 3px;
|
|
@@ -2052,6 +2145,15 @@
|
|
|
2052
2145
|
.e-sort-descend {
|
|
2053
2146
|
padding: $field-list-tree-header-padding $field-list-icon-to-icon-padding 0 0;
|
|
2054
2147
|
}
|
|
2148
|
+
|
|
2149
|
+
// sass-lint:disable-all
|
|
2150
|
+
@if ($skin-name == 'FluentUI') {
|
|
2151
|
+
.e-sort-none {
|
|
2152
|
+
padding: $field-list-icon-to-icon-padding 0 0 $field-list-tree-header-padding !important;
|
|
2153
|
+
transform: rotate(90deg);
|
|
2154
|
+
}
|
|
2155
|
+
}
|
|
2156
|
+
// sass-lint:enable-all
|
|
2055
2157
|
}
|
|
2056
2158
|
}
|
|
2057
2159
|
|
|
@@ -2265,8 +2367,8 @@
|
|
|
2265
2367
|
width: 100%;
|
|
2266
2368
|
|
|
2267
2369
|
@if ($skin-name == 'bootstrap5') {
|
|
2268
|
-
color: $field-list-default-
|
|
2269
|
-
|
|
2370
|
+
background-color: $field-list-default-bg-color;
|
|
2371
|
+
color: $field-list-default-font-color;
|
|
2270
2372
|
}
|
|
2271
2373
|
|
|
2272
2374
|
&.e-list-selected {
|
|
@@ -2351,10 +2453,10 @@
|
|
|
2351
2453
|
padding-right: 10px;
|
|
2352
2454
|
|
|
2353
2455
|
@if ($skin-name == 'tailwind') {
|
|
2354
|
-
padding-right: 0;
|
|
2355
2456
|
margin-right: 8px;
|
|
2457
|
+
padding-right: 0;
|
|
2356
2458
|
}
|
|
2357
|
-
|
|
2459
|
+
|
|
2358
2460
|
}
|
|
2359
2461
|
}
|
|
2360
2462
|
}
|
|
@@ -2390,7 +2492,7 @@
|
|
|
2390
2492
|
.e-pivot-formula {
|
|
2391
2493
|
background-color: $pivot-formula-background;
|
|
2392
2494
|
border: 1px solid $pivot-formula-border;
|
|
2393
|
-
border-radius:
|
|
2495
|
+
border-radius: $field-list-default-border-radius;
|
|
2394
2496
|
color: $field-list-default-font-color;
|
|
2395
2497
|
height: 200px;
|
|
2396
2498
|
margin-left: 20px;
|
|
@@ -2492,7 +2594,7 @@
|
|
|
2492
2594
|
.e-list-icon {
|
|
2493
2595
|
color: $field-list-tree-icon-color;
|
|
2494
2596
|
|
|
2495
|
-
@if($skin-name == 'bootstrap5') {
|
|
2597
|
+
@if($skin-name == 'bootstrap5') {
|
|
2496
2598
|
color: $field-list-default-fill-color;
|
|
2497
2599
|
}
|
|
2498
2600
|
|
|
@@ -2709,6 +2811,13 @@
|
|
|
2709
2811
|
padding: $field-list-tree-header-padding 0 0 $field-list-bigger-icon-to-icon-padding;
|
|
2710
2812
|
width: 24px;
|
|
2711
2813
|
}
|
|
2814
|
+
|
|
2815
|
+
// sass-lint:disable-all
|
|
2816
|
+
@if ($skin-name == 'FluentUI') {
|
|
2817
|
+
.e-sort-none {
|
|
2818
|
+
padding: 0 0 $field-list-bigger-icon-to-icon-padding $field-list-tree-header-padding !important;
|
|
2819
|
+
}
|
|
2820
|
+
}
|
|
2712
2821
|
}
|
|
2713
2822
|
|
|
2714
2823
|
.e-field-list {
|
|
@@ -2732,7 +2841,6 @@
|
|
|
2732
2841
|
}
|
|
2733
2842
|
}
|
|
2734
2843
|
|
|
2735
|
-
// sass-lint:disable-all
|
|
2736
2844
|
.e-calc-measure-icon,
|
|
2737
2845
|
.e-calc-dimension-icon,
|
|
2738
2846
|
.e-attributeCDB-icon,
|
|
@@ -2777,6 +2885,10 @@
|
|
|
2777
2885
|
padding-top: $field-list-bigger-header-icon-wrapper-padding;
|
|
2778
2886
|
width: 24px;
|
|
2779
2887
|
|
|
2888
|
+
@if ($skin-name == 'tailwind') or ($skin-name == 'bootstrap5') {
|
|
2889
|
+
padding-left: 4px;
|
|
2890
|
+
}
|
|
2891
|
+
|
|
2780
2892
|
.e-axis-rows,
|
|
2781
2893
|
.e-axis-columns,
|
|
2782
2894
|
.e-axis-values,
|
|
@@ -2808,10 +2920,11 @@
|
|
|
2808
2920
|
height: $field-list-bigger-button-height !important;
|
|
2809
2921
|
padding: $field-list-bigger-button-padding !important;
|
|
2810
2922
|
|
|
2923
|
+
// sass-lint:enable-all
|
|
2811
2924
|
.e-content {
|
|
2812
2925
|
font-size: $field-list-bigger-button-font-size;
|
|
2813
2926
|
line-height: $field-list-bigger-button-line-height;
|
|
2814
|
-
padding: 0 10px
|
|
2927
|
+
padding: 0 10px;
|
|
2815
2928
|
}
|
|
2816
2929
|
|
|
2817
2930
|
.e-draggable {
|
|
@@ -2874,6 +2987,7 @@
|
|
|
2874
2987
|
margin-top: $field-list-default-bigger-padding-size;
|
|
2875
2988
|
}
|
|
2876
2989
|
|
|
2990
|
+
// sass-lint:disable-all
|
|
2877
2991
|
.e-left-axis-fields .e-field-list-filters,
|
|
2878
2992
|
.e-left-axis-fields .e-field-list-rows,
|
|
2879
2993
|
.e-right-axis-fields .e-field-list-columns,
|
|
@@ -2881,6 +2995,10 @@
|
|
|
2881
2995
|
.e-axis-wrapper {
|
|
2882
2996
|
.e-axis-icon-wrapper {
|
|
2883
2997
|
padding-top: $field-list-static-bigger-header-icon-wrapper-padding;
|
|
2998
|
+
|
|
2999
|
+
@if ($skin-name == 'tailwind') or ($skin-name == 'bootstrap5') {
|
|
3000
|
+
padding-left: 4px;
|
|
3001
|
+
}
|
|
2884
3002
|
}
|
|
2885
3003
|
}
|
|
2886
3004
|
}
|
|
@@ -2891,11 +3009,34 @@
|
|
|
2891
3009
|
.e-axis-table {
|
|
2892
3010
|
.e-left-axis-fields {
|
|
2893
3011
|
padding-left: $field-list-default-bigger-padding-size;
|
|
3012
|
+
|
|
3013
|
+
.e-field-list-filters,
|
|
3014
|
+
.e-field-list-rows {
|
|
3015
|
+
.e-axis-wrapper {
|
|
3016
|
+
.e-axis-icon-wrapper {
|
|
3017
|
+
@if ($skin-name == 'tailwind') or ($skin-name == 'bootstrap5') {
|
|
3018
|
+
padding-left: 0;
|
|
3019
|
+
padding-right: 4px;
|
|
3020
|
+
}
|
|
3021
|
+
}
|
|
3022
|
+
}
|
|
3023
|
+
}
|
|
2894
3024
|
}
|
|
2895
3025
|
|
|
2896
|
-
// sass-lint:disable-all
|
|
2897
3026
|
.e-right-axis-fields {
|
|
2898
3027
|
padding: 0 !important;
|
|
3028
|
+
|
|
3029
|
+
.e-field-list-columns,
|
|
3030
|
+
.e-field-list-values {
|
|
3031
|
+
.e-axis-wrapper {
|
|
3032
|
+
.e-axis-icon-wrapper {
|
|
3033
|
+
@if ($skin-name == 'tailwind') or ($skin-name == 'bootstrap5') {
|
|
3034
|
+
padding-left: 0 !important;
|
|
3035
|
+
padding-right: 4px !important;
|
|
3036
|
+
}
|
|
3037
|
+
}
|
|
3038
|
+
}
|
|
3039
|
+
}
|
|
2899
3040
|
}
|
|
2900
3041
|
}
|
|
2901
3042
|
}
|
|
@@ -2942,6 +3083,14 @@
|
|
|
2942
3083
|
.e-sort-descend {
|
|
2943
3084
|
padding: $field-list-tree-header-padding $field-list-bigger-icon-to-icon-padding 0 0;
|
|
2944
3085
|
}
|
|
3086
|
+
|
|
3087
|
+
// sass-lint:disable-all
|
|
3088
|
+
@if ($skin-name == 'FluentUI') {
|
|
3089
|
+
.e-sort-none {
|
|
3090
|
+
padding: $field-list-bigger-icon-to-icon-padding 0 0 $field-list-tree-header-padding !important;
|
|
3091
|
+
}
|
|
3092
|
+
}
|
|
3093
|
+
// sass-lint:enable-all
|
|
2945
3094
|
}
|
|
2946
3095
|
}
|
|
2947
3096
|
|
|
@@ -3011,6 +3160,13 @@
|
|
|
3011
3160
|
padding: $field-list-tree-header-padding 0 0 $field-list-bigger-icon-to-icon-padding;
|
|
3012
3161
|
width: 24px;
|
|
3013
3162
|
}
|
|
3163
|
+
|
|
3164
|
+
// sass-lint:disable-all
|
|
3165
|
+
@if ($skin-name == 'FluentUI') {
|
|
3166
|
+
.e-sort-none {
|
|
3167
|
+
padding: 0 0 $field-list-bigger-icon-to-icon-padding $field-list-tree-header-padding !important;
|
|
3168
|
+
}
|
|
3169
|
+
}
|
|
3014
3170
|
}
|
|
3015
3171
|
|
|
3016
3172
|
.e-field-list {
|
|
@@ -3030,7 +3186,6 @@
|
|
|
3030
3186
|
width: 24px !important;
|
|
3031
3187
|
}
|
|
3032
3188
|
|
|
3033
|
-
// sass-lint:disable-all
|
|
3034
3189
|
.e-calc-measure-icon,
|
|
3035
3190
|
.e-calc-dimension-icon,
|
|
3036
3191
|
.e-attributeCDB-icon,
|
|
@@ -3053,6 +3208,7 @@
|
|
|
3053
3208
|
}
|
|
3054
3209
|
}
|
|
3055
3210
|
}
|
|
3211
|
+
// sass-lint:enable-all
|
|
3056
3212
|
|
|
3057
3213
|
.e-left-axis-fields .e-field-list-rows,
|
|
3058
3214
|
.e-right-axis-fields .e-field-list-values {
|
|
@@ -3100,16 +3256,18 @@
|
|
|
3100
3256
|
height: 126px;
|
|
3101
3257
|
}
|
|
3102
3258
|
|
|
3259
|
+
// sass-lint:disable-all
|
|
3103
3260
|
.e-pvt-btn-div {
|
|
3104
3261
|
.e-pivot-button {
|
|
3105
3262
|
font-size: $field-list-bigger-button-font-size;
|
|
3106
3263
|
height: $field-list-bigger-button-height !important;
|
|
3107
3264
|
padding: $field-list-bigger-button-padding !important;
|
|
3108
3265
|
|
|
3266
|
+
// sass-lint:enable-all
|
|
3109
3267
|
.e-content {
|
|
3110
3268
|
font-size: $field-list-bigger-button-font-size;
|
|
3111
3269
|
line-height: $field-list-bigger-button-line-height;
|
|
3112
|
-
padding: 0 10px
|
|
3270
|
+
padding: 0 10px;
|
|
3113
3271
|
}
|
|
3114
3272
|
|
|
3115
3273
|
.e-draggable {
|
|
@@ -3240,6 +3398,14 @@
|
|
|
3240
3398
|
.e-sort-descend {
|
|
3241
3399
|
padding: $field-list-tree-header-padding $field-list-bigger-icon-to-icon-padding 0 0;
|
|
3242
3400
|
}
|
|
3401
|
+
|
|
3402
|
+
// sass-lint:disable-all
|
|
3403
|
+
@if ($skin-name == 'FluentUI') {
|
|
3404
|
+
.e-sort-none {
|
|
3405
|
+
padding: $field-list-bigger-icon-to-icon-padding 0 0 $field-list-tree-header-padding !important;
|
|
3406
|
+
}
|
|
3407
|
+
}
|
|
3408
|
+
// sass-lint:enable-all
|
|
3243
3409
|
}
|
|
3244
3410
|
}
|
|
3245
3411
|
|