@syncfusion/ej2-angular-pivotview 20.2.38-ngcc → 20.2.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.
Files changed (210) hide show
  1. package/esm2020/public_api.mjs +3 -0
  2. package/esm2020/src/index.mjs +8 -0
  3. package/esm2020/src/pivotfieldlist/pivotfieldlist-all.module.mjs +23 -0
  4. package/esm2020/src/pivotfieldlist/pivotfieldlist.component.mjs +66 -0
  5. package/esm2020/src/pivotfieldlist/pivotfieldlist.module.mjs +25 -0
  6. package/esm2020/src/pivotview/pivotview-all.module.mjs +62 -0
  7. package/esm2020/src/pivotview/pivotview.component.mjs +150 -0
  8. package/esm2020/src/pivotview/pivotview.module.mjs +25 -0
  9. package/esm2020/syncfusion-ej2-angular-pivotview.mjs +5 -0
  10. package/fesm2015/syncfusion-ej2-angular-pivotview.mjs +337 -0
  11. package/fesm2015/syncfusion-ej2-angular-pivotview.mjs.map +1 -0
  12. package/fesm2020/syncfusion-ej2-angular-pivotview.mjs +337 -0
  13. package/fesm2020/syncfusion-ej2-angular-pivotview.mjs.map +1 -0
  14. package/package.json +27 -13
  15. package/schematics/utils/lib-details.ts +2 -2
  16. package/src/pivotfieldlist/pivotfieldlist-all.module.d.ts +6 -0
  17. package/src/pivotfieldlist/pivotfieldlist.component.d.ts +3 -0
  18. package/src/pivotfieldlist/pivotfieldlist.module.d.ts +6 -0
  19. package/src/pivotview/pivotview-all.module.d.ts +6 -0
  20. package/src/pivotview/pivotview.component.d.ts +3 -0
  21. package/src/pivotview/pivotview.module.d.ts +6 -0
  22. package/styles/bootstrap-dark.css +212 -1
  23. package/styles/bootstrap.css +212 -1
  24. package/styles/bootstrap4.css +208 -2
  25. package/styles/bootstrap5-dark.css +214 -1
  26. package/styles/bootstrap5.css +214 -1
  27. package/styles/fabric-dark.css +212 -1
  28. package/styles/fabric.css +212 -1
  29. package/styles/fluent-dark.css +214 -1
  30. package/styles/fluent.css +214 -1
  31. package/styles/highcontrast-light.css +212 -1
  32. package/styles/highcontrast.css +212 -1
  33. package/styles/material-dark.css +212 -1
  34. package/styles/material.css +212 -1
  35. package/styles/pivotfieldlist/_all.scss +2 -0
  36. package/styles/pivotfieldlist/_bootstrap-dark-definition.scss +233 -0
  37. package/styles/pivotfieldlist/_bootstrap-definition.scss +186 -0
  38. package/styles/pivotfieldlist/_bootstrap4-definition.scss +186 -0
  39. package/styles/pivotfieldlist/_bootstrap5-dark-definition.scss +1 -0
  40. package/styles/pivotfieldlist/_bootstrap5-definition.scss +190 -0
  41. package/styles/pivotfieldlist/_fabric-dark-definition.scss +192 -0
  42. package/styles/pivotfieldlist/_fabric-definition.scss +186 -0
  43. package/styles/pivotfieldlist/_fluent-dark-definition.scss +1 -0
  44. package/styles/pivotfieldlist/_fluent-definition.scss +191 -0
  45. package/styles/pivotfieldlist/_fusionnew-definition.scss +189 -0
  46. package/styles/pivotfieldlist/_highcontrast-definition.scss +187 -0
  47. package/styles/pivotfieldlist/_highcontrast-light-definition.scss +187 -0
  48. package/styles/pivotfieldlist/_layout.scss +1852 -0
  49. package/styles/pivotfieldlist/_material-dark-definition.scss +187 -0
  50. package/styles/pivotfieldlist/_material-definition.scss +187 -0
  51. package/styles/pivotfieldlist/_material3-definition.scss +190 -0
  52. package/styles/pivotfieldlist/_tailwind-dark-definition.scss +1 -0
  53. package/styles/pivotfieldlist/_tailwind-definition.scss +190 -0
  54. package/styles/pivotfieldlist/_theme.scss +1862 -0
  55. package/styles/pivotfieldlist/bootstrap-dark.css +130 -1
  56. package/styles/pivotfieldlist/bootstrap-dark.scss +4 -1
  57. package/styles/pivotfieldlist/bootstrap.css +130 -1
  58. package/styles/pivotfieldlist/bootstrap.scss +4 -1
  59. package/styles/pivotfieldlist/bootstrap4.css +125 -1
  60. package/styles/pivotfieldlist/bootstrap4.scss +4 -1
  61. package/styles/pivotfieldlist/bootstrap5-dark.css +134 -1
  62. package/styles/pivotfieldlist/bootstrap5-dark.scss +4 -1
  63. package/styles/pivotfieldlist/bootstrap5.css +134 -1
  64. package/styles/pivotfieldlist/bootstrap5.scss +4 -1
  65. package/styles/pivotfieldlist/fabric-dark.css +130 -1
  66. package/styles/pivotfieldlist/fabric-dark.scss +4 -1
  67. package/styles/pivotfieldlist/fabric.css +130 -1
  68. package/styles/pivotfieldlist/fabric.scss +4 -1
  69. package/styles/pivotfieldlist/fluent-dark.css +132 -1
  70. package/styles/pivotfieldlist/fluent-dark.scss +4 -1
  71. package/styles/pivotfieldlist/fluent.css +132 -1
  72. package/styles/pivotfieldlist/fluent.scss +4 -1
  73. package/styles/pivotfieldlist/highcontrast-light.css +130 -1
  74. package/styles/pivotfieldlist/highcontrast-light.scss +4 -1
  75. package/styles/pivotfieldlist/highcontrast.css +130 -1
  76. package/styles/pivotfieldlist/highcontrast.scss +4 -1
  77. package/styles/pivotfieldlist/icons/_bootstrap-dark.scss +358 -0
  78. package/styles/pivotfieldlist/icons/_bootstrap.scss +359 -0
  79. package/styles/pivotfieldlist/icons/_bootstrap4.scss +359 -0
  80. package/styles/pivotfieldlist/icons/_bootstrap5-dark.scss +1 -0
  81. package/styles/pivotfieldlist/icons/_bootstrap5.scss +357 -0
  82. package/styles/pivotfieldlist/icons/_fabric-dark.scss +358 -0
  83. package/styles/pivotfieldlist/icons/_fabric.scss +358 -0
  84. package/styles/pivotfieldlist/icons/_fluent-dark.scss +1 -0
  85. package/styles/pivotfieldlist/icons/_fluent.scss +357 -0
  86. package/styles/pivotfieldlist/icons/_fusionnew.scss +352 -0
  87. package/styles/pivotfieldlist/icons/_highcontrast-light.scss +357 -0
  88. package/styles/pivotfieldlist/icons/_highcontrast.scss +357 -0
  89. package/styles/pivotfieldlist/icons/_material-dark.scss +358 -0
  90. package/styles/pivotfieldlist/icons/_material.scss +357 -0
  91. package/styles/pivotfieldlist/icons/_material3.scss +352 -0
  92. package/styles/pivotfieldlist/icons/_tailwind-dark.scss +356 -0
  93. package/styles/pivotfieldlist/icons/_tailwind.scss +356 -0
  94. package/styles/pivotfieldlist/material-dark.css +130 -1
  95. package/styles/pivotfieldlist/material-dark.scss +4 -1
  96. package/styles/pivotfieldlist/material.css +130 -1
  97. package/styles/pivotfieldlist/material.scss +4 -1
  98. package/styles/pivotfieldlist/tailwind-dark.css +132 -1
  99. package/styles/pivotfieldlist/tailwind-dark.scss +4 -1
  100. package/styles/pivotfieldlist/tailwind.css +132 -1
  101. package/styles/pivotfieldlist/tailwind.scss +4 -1
  102. package/styles/pivotview/_all.scss +2 -0
  103. package/styles/pivotview/_bootstrap-dark-definition.scss +131 -0
  104. package/styles/pivotview/_bootstrap-definition.scss +128 -0
  105. package/styles/pivotview/_bootstrap4-definition.scss +128 -0
  106. package/styles/pivotview/_bootstrap5-dark-definition.scss +1 -0
  107. package/styles/pivotview/_bootstrap5-definition.scss +131 -0
  108. package/styles/pivotview/_fabric-dark-definition.scss +130 -0
  109. package/styles/pivotview/_fabric-definition.scss +127 -0
  110. package/styles/pivotview/_fluent-dark-definition.scss +1 -0
  111. package/styles/pivotview/_fluent-definition.scss +131 -0
  112. package/styles/pivotview/_fusionnew-definition.scss +131 -0
  113. package/styles/pivotview/_highcontrast-definition.scss +126 -0
  114. package/styles/pivotview/_highcontrast-light-definition.scss +127 -0
  115. package/styles/pivotview/_layout.scss +1073 -0
  116. package/styles/pivotview/_material-dark-definition.scss +132 -0
  117. package/styles/pivotview/_material-definition.scss +128 -0
  118. package/styles/pivotview/_material3-definition.scss +131 -0
  119. package/styles/pivotview/_tailwind-dark-definition.scss +1 -0
  120. package/styles/pivotview/_tailwind-definition.scss +130 -0
  121. package/styles/pivotview/_theme.scss +1583 -0
  122. package/styles/pivotview/bootstrap-dark.css +82 -0
  123. package/styles/pivotview/bootstrap-dark.scss +5 -1
  124. package/styles/pivotview/bootstrap.css +82 -0
  125. package/styles/pivotview/bootstrap.scss +5 -1
  126. package/styles/pivotview/bootstrap4.css +83 -1
  127. package/styles/pivotview/bootstrap4.scss +5 -1
  128. package/styles/pivotview/bootstrap5-dark.css +80 -0
  129. package/styles/pivotview/bootstrap5-dark.scss +4 -1
  130. package/styles/pivotview/bootstrap5.css +80 -0
  131. package/styles/pivotview/bootstrap5.scss +5 -1
  132. package/styles/pivotview/fabric-dark.css +82 -0
  133. package/styles/pivotview/fabric-dark.scss +5 -1
  134. package/styles/pivotview/fabric.css +82 -0
  135. package/styles/pivotview/fabric.scss +5 -1
  136. package/styles/pivotview/fluent-dark.css +82 -0
  137. package/styles/pivotview/fluent-dark.scss +4 -1
  138. package/styles/pivotview/fluent.css +82 -0
  139. package/styles/pivotview/fluent.scss +5 -1
  140. package/styles/pivotview/highcontrast-light.css +82 -0
  141. package/styles/pivotview/highcontrast-light.scss +5 -1
  142. package/styles/pivotview/highcontrast.css +82 -0
  143. package/styles/pivotview/highcontrast.scss +5 -1
  144. package/styles/pivotview/icons/_bootstrap-dark.scss +184 -0
  145. package/styles/pivotview/icons/_bootstrap.scss +184 -0
  146. package/styles/pivotview/icons/_bootstrap4.scss +184 -0
  147. package/styles/pivotview/icons/_bootstrap5-dark.scss +1 -0
  148. package/styles/pivotview/icons/_bootstrap5.scss +183 -0
  149. package/styles/pivotview/icons/_fabric-dark.scss +184 -0
  150. package/styles/pivotview/icons/_fabric.scss +184 -0
  151. package/styles/pivotview/icons/_fluent-dark.scss +1 -0
  152. package/styles/pivotview/icons/_fluent.scss +183 -0
  153. package/styles/pivotview/icons/_fusionnew.scss +183 -0
  154. package/styles/pivotview/icons/_highcontrast-light.scss +183 -0
  155. package/styles/pivotview/icons/_highcontrast.scss +183 -0
  156. package/styles/pivotview/icons/_material-dark.scss +184 -0
  157. package/styles/pivotview/icons/_material.scss +184 -0
  158. package/styles/pivotview/icons/_material3.scss +183 -0
  159. package/styles/pivotview/icons/_tailwind-dark.scss +183 -0
  160. package/styles/pivotview/icons/_tailwind.scss +183 -0
  161. package/styles/pivotview/material-dark.css +82 -0
  162. package/styles/pivotview/material-dark.scss +5 -1
  163. package/styles/pivotview/material.css +82 -0
  164. package/styles/pivotview/material.scss +5 -1
  165. package/styles/pivotview/tailwind-dark.css +80 -0
  166. package/styles/pivotview/tailwind-dark.scss +4 -1
  167. package/styles/pivotview/tailwind.css +80 -0
  168. package/styles/pivotview/tailwind.scss +5 -1
  169. package/styles/tailwind-dark.css +212 -1
  170. package/styles/tailwind.css +212 -1
  171. package/syncfusion-ej2-angular-pivotview.d.ts +5 -0
  172. package/@syncfusion/ej2-angular-pivotview.es5.js +0 -425
  173. package/@syncfusion/ej2-angular-pivotview.es5.js.map +0 -1
  174. package/@syncfusion/ej2-angular-pivotview.js +0 -395
  175. package/@syncfusion/ej2-angular-pivotview.js.map +0 -1
  176. package/CHANGELOG.md +0 -674
  177. package/dist/ej2-angular-pivotview.umd.js +0 -666
  178. package/dist/ej2-angular-pivotview.umd.js.map +0 -1
  179. package/dist/ej2-angular-pivotview.umd.min.js +0 -11
  180. package/dist/ej2-angular-pivotview.umd.min.js.map +0 -1
  181. package/ej2-angular-pivotview.d.ts +0 -6
  182. package/ej2-angular-pivotview.metadata.json +0 -1
  183. package/postinstall/tagchange.js +0 -18
  184. package/schematics/collection.json +0 -20
  185. package/schematics/generators/pivotview-default/index.d.ts +0 -3
  186. package/schematics/generators/pivotview-default/index.js +0 -8
  187. package/schematics/generators/pivotview-default/sample-details.d.ts +0 -5
  188. package/schematics/generators/pivotview-default/sample-details.js +0 -7
  189. package/schematics/generators/pivotview-default/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -4
  190. package/schematics/generators/pivotview-default/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -4
  191. package/schematics/generators/pivotview-default/schema.d.ts +0 -3
  192. package/schematics/generators/pivotview-default/schema.js +0 -2
  193. package/schematics/generators/pivotview-default/schema.json +0 -125
  194. package/schematics/generators/pivotview-fieldlist/index.d.ts +0 -3
  195. package/schematics/generators/pivotview-fieldlist/index.js +0 -8
  196. package/schematics/generators/pivotview-fieldlist/sample-details.d.ts +0 -5
  197. package/schematics/generators/pivotview-fieldlist/sample-details.js +0 -7
  198. package/schematics/generators/pivotview-fieldlist/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -4
  199. package/schematics/generators/pivotview-fieldlist/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -4
  200. package/schematics/generators/pivotview-fieldlist/schema.d.ts +0 -3
  201. package/schematics/generators/pivotview-fieldlist/schema.js +0 -2
  202. package/schematics/generators/pivotview-fieldlist/schema.json +0 -125
  203. package/schematics/ng-add/index.d.ts +0 -3
  204. package/schematics/ng-add/index.js +0 -9
  205. package/schematics/ng-add/schema.d.ts +0 -13
  206. package/schematics/ng-add/schema.js +0 -2
  207. package/schematics/ng-add/schema.json +0 -34
  208. package/schematics/tsconfig.json +0 -25
  209. package/schematics/utils/lib-details.d.ts +0 -4
  210. package/schematics/utils/lib-details.js +0 -6
@@ -0,0 +1,1862 @@
1
+ @include export-module('field-list-theme') {
2
+
3
+ /*! field-list theme */
4
+
5
+ .e-pivotfieldlist {
6
+
7
+ .e-member-editor-dialog,
8
+ .e-olap-editor-dialog {
9
+ visibility: hidden;
10
+ }
11
+
12
+ .e-select-table {
13
+ background-color: $field-list-toggle-bg-color;
14
+ border: .5px $field-list-border-type $field-list-toggle-border-color;
15
+ box-shadow: $field-list-toggle-shadow-color;
16
+ color: $field-list-toggle-font-color;
17
+ font-size: $field-list-toggle-icon-size;
18
+ height: $field-list-toggle-size;
19
+ max-height: $field-list-toggle-size;
20
+ max-width: $field-list-toggle-size;
21
+ min-height: $field-list-toggle-size;
22
+ min-width: $field-list-toggle-size;
23
+ padding: $field-list-toggle-padding-size;
24
+ position: relative;
25
+ width: $field-list-toggle-size;
26
+ z-index: 1000;
27
+
28
+ &.e-fieldlist-left {
29
+ box-shadow: $field-list-toggle-left-shadow-color;
30
+ }
31
+
32
+ &:focus,
33
+ &:active {
34
+ background-color: $field-list-toggle-hover-color;
35
+ }
36
+
37
+ &:hover {
38
+ background-color: $field-list-toggle-hover-color;
39
+ }
40
+ }
41
+ }
42
+
43
+ /* stylelint-disable */
44
+ #{if(&, "&", "*")}.e-rtl {
45
+
46
+ .e-select-table {
47
+ padding: 8px 5px;
48
+ }
49
+ }
50
+
51
+ .e-bigger .e-pivotfieldlist,
52
+ .e-bigger.e-pivotfieldlist {
53
+ .e-select-table {
54
+ font-size: $field-list-toggle-icon-bigger-size;
55
+ height: $field-list-toggle-bigger-size;
56
+ max-height: $field-list-toggle-bigger-size;
57
+ max-width: $field-list-toggle-bigger-size;
58
+ min-height: $field-list-toggle-bigger-size;
59
+ min-width: $field-list-toggle-bigger-size;
60
+ }
61
+
62
+ .e-member-editor-dialog,
63
+ .e-olap-editor-dialog {
64
+ max-height: 400px !important;
65
+ min-width: 370px !important;
66
+
67
+ .e-member-editor-container-outer-div {
68
+ min-height: 113px !important;
69
+
70
+ .e-list-parent .e-ul {
71
+ height: auto;
72
+ }
73
+ }
74
+ }
75
+ }
76
+
77
+ .e-pivotfieldlist-container {
78
+ font-family: $field-list-font-family;
79
+ font-size: $field-list-content-font-size;
80
+ max-width: 700px;
81
+ min-width: 300px;
82
+
83
+ .e-layout-footer {
84
+ display: flex;
85
+ padding: 10px 2px 2px;
86
+
87
+ .e-button-layout {
88
+ flex: auto;
89
+ text-align: end;
90
+
91
+ .e-defer-apply-button {
92
+ margin-right: 10px;
93
+ }
94
+
95
+ .e-cancel-btn,
96
+ .e-defer-apply-button {
97
+ min-width: fit-content;
98
+ }
99
+ }
100
+
101
+ .e-cancel-btn,
102
+ .e-defer-apply-button,
103
+ .e-checkbox-layout {
104
+ max-width: 25%;
105
+ overflow: hidden;
106
+ text-overflow: ellipsis;
107
+ white-space: nowrap;
108
+ }
109
+
110
+ .e-checkbox-layout .e-label {
111
+ padding-right: 10px;
112
+ }
113
+
114
+ .e-checkbox-layout {
115
+ max-width: 45%;
116
+ }
117
+
118
+ }
119
+
120
+ .e-checkbox-layout {
121
+ float: left;
122
+ margin-top: 6px;
123
+
124
+ @if ($skin-name == 'tailwind') or ($skin-name == 'FluentUI') {
125
+ margin-left: 0 !important;
126
+ margin-right: 0 !important;
127
+ }
128
+ }
129
+
130
+ &.e-rtl {
131
+ .e-layout-footer {
132
+ .e-defer-apply-button {
133
+ margin-left: 10px;
134
+ }
135
+ }
136
+
137
+ .e-checkbox-layout {
138
+ float: right;
139
+ }
140
+ }
141
+
142
+ &.e-dialog {
143
+ max-height: 550px !important;
144
+
145
+ .e-layout-footer {
146
+ padding: 0;
147
+ }
148
+
149
+ .e-checkbox-layout {
150
+ margin-left: 10px;
151
+ }
152
+
153
+ .e-button-layout {
154
+ margin-right: 10px;
155
+ }
156
+ }
157
+
158
+ /* stylelint-enable */
159
+
160
+ .e-dlg-header-content,
161
+ .e-footer-content {
162
+ border: 0;
163
+ }
164
+
165
+ .e-dlg-header-content {
166
+ @if ($skin-name == 'bootstrap5') {
167
+ border-bottom: 1px solid $field-list-border;
168
+ }
169
+ }
170
+
171
+ .e-footer-content {
172
+ @if ($skin-name == 'bootstrap5') {
173
+ border-top: 1px solid $field-list-border;
174
+ }
175
+
176
+ }
177
+
178
+ .e-field-list-title {
179
+ display: flex;
180
+ font-size: $field-list-title-font-size;
181
+ min-height: 25px;
182
+ padding: 0 2px $field-list-title-padding-size;
183
+ width: 100%;
184
+
185
+ .e-title-content {
186
+ flex: auto;
187
+ }
188
+ }
189
+
190
+ .e-title-header {
191
+ display: flex;
192
+ padding: 2px;
193
+ width: 100%;
194
+
195
+ .e-title-content {
196
+ flex: auto;
197
+ }
198
+ }
199
+
200
+ .e-field-list-container {
201
+ display: flex;
202
+ height: 342px;
203
+ padding: 1px;
204
+ position: relative;
205
+
206
+ .e-field-table {
207
+ border: $field-list-border-size $field-list-border-type $field-list-default-border-color;
208
+ border-radius: $field-list-default-border-radius;
209
+ display: inline-block;
210
+ overflow: hidden;
211
+ width: 30%;
212
+
213
+ .e-field-list-tree {
214
+ .e-sibling {
215
+ display: none;
216
+ }
217
+ }
218
+
219
+ .e-field-header,
220
+ .e-field-list {
221
+ width: 100%;
222
+ }
223
+
224
+ .e-field-header {
225
+ background-color: $field-list-header-background-color;
226
+ color: $field-list-default-header-font-color;
227
+ font-size: $field-list-header-font-size;
228
+ font-weight: normal;
229
+ height: $field-list-header-height;
230
+ overflow: hidden;
231
+ padding: $field-list-tree-header-padding 0 0 $field-list-header-padding;
232
+ text-align: left;
233
+ text-overflow: ellipsis;
234
+ word-break: break-all;
235
+ @if ($field-list-skin == 'tailwind') {
236
+ text-transform: uppercase;
237
+ }
238
+
239
+ @if ($field-list-skin == 'bootstrap4') {
240
+ padding-left: 12px;
241
+ }
242
+
243
+ @if ($skin-name == 'FluentUI') {
244
+ font-weight: 600;
245
+ }
246
+ }
247
+
248
+ .e-field-header-container {
249
+ background-color: $field-list-header-background-color;
250
+ color: $field-list-default-header-font-color;
251
+ display: flex;
252
+ padding-right: $field-list-header-padding;
253
+
254
+ .e-field-header {
255
+ flex: auto;
256
+ }
257
+
258
+ .e-sort-none,
259
+ .e-sort-ascend,
260
+ .e-sort-descend {
261
+ color: $field-list-default-header-icon-font-color;
262
+ cursor: pointer;
263
+ font-size: $field-list-header-icon-size;
264
+ /* stylelint-disable */
265
+ height: 20px !important;
266
+ /* stylelint-enable */
267
+ padding: $field-list-tree-header-padding 0 0 $field-list-icon-to-icon-padding;
268
+ width: 20px;
269
+
270
+ &.e-selected::before {
271
+ color: $field-list-active-color;
272
+ }
273
+
274
+ &:hover {
275
+ font-weight: bold;
276
+ }
277
+
278
+ &:focus {
279
+ font-weight: bold;
280
+ }
281
+ }
282
+
283
+ /* stylelint-disable */
284
+ @if ($skin-name == 'FluentUI') {
285
+ .e-sort-none {
286
+ padding: 0 0 $field-list-icon-to-icon-padding $field-list-tree-header-padding !important;
287
+ transform: rotate(180deg);
288
+ }
289
+ }
290
+ /* stylelint-enable */
291
+ }
292
+
293
+ .e-field-list-tree-outer-div {
294
+ display: inline-block;
295
+ height: 310px;
296
+ overflow: auto;
297
+ width: 100%;
298
+ }
299
+
300
+ .e-field-list {
301
+ display: inline-table;
302
+ height: 100%;
303
+ padding-left: 2px;
304
+ width: 100%;
305
+
306
+ ul {
307
+ overflow: hidden;
308
+
309
+ li {
310
+ margin-left: $field-list-treeview-padding-size;
311
+
312
+ .e-fullrow {
313
+ cursor: default;
314
+ }
315
+
316
+ .e-drag {
317
+ color: $field-list-drag-icon-color;
318
+ cursor: move;
319
+ display: inline-block;
320
+ font-size: $field-list-icon-size;
321
+ height: 20px;
322
+ margin-bottom: $field-list-treeview-drag-margin;
323
+ margin-right: 6px;
324
+ pointer-events: all;
325
+ text-align: center;
326
+ vertical-align: bottom;
327
+ width: 20px;
328
+
329
+ @if ($skin-name == 'bootstrap5') or ($skin-name == 'FluentUI') {
330
+ margin-right: 4px;
331
+ padding-left: 12px;
332
+ }
333
+
334
+ @if ($skin-name == 'tailwind') {
335
+ margin-bottom: 0;
336
+ vertical-align: middle;
337
+ }
338
+
339
+ &.e-disable-drag {
340
+ cursor: not-allowed;
341
+ opacity: .4;
342
+ visibility: hidden;
343
+ }
344
+ }
345
+
346
+ .e-list-icon {
347
+ color: $field-list-tree-icon-color;
348
+ margin: 0;
349
+ }
350
+
351
+ /* stylelint-disable */
352
+ .e-calc-measure-icon,
353
+ .e-calc-dimension-icon,
354
+ .e-attributeCDB-icon,
355
+ .e-hierarchyCDB-icon,
356
+ .e-level-members,
357
+ .e-namedSetCDB-icon,
358
+ .e-measure-icon,
359
+ .e-kpiGoal-icon,
360
+ .e-kpiStatus-icon,
361
+ .e-kpiTrend-icon,
362
+ .e-kpiValue-icon {
363
+ margin-left: 10px;
364
+ }
365
+
366
+ /* stylelint-enable */
367
+
368
+ .e-list-selected {
369
+ opacity: .5;
370
+ }
371
+
372
+ .e-selected-node {
373
+ font-weight: $field-list-treeview-font-weight;
374
+ }
375
+
376
+ .e-list-text {
377
+ font-family: $field-list-font-family;
378
+ }
379
+ }
380
+
381
+ /* stylelint-disable */
382
+ li.e-disable {
383
+ display: none !important;
384
+ }
385
+ /* stylelint-enable */
386
+ }
387
+
388
+ &.e-olap-field-list-tree {
389
+ ul {
390
+ li {
391
+ margin-left: 0;
392
+ margin-right: 0;
393
+ }
394
+
395
+ .e-list-icon {
396
+ font-size: $field-list-icon-size;
397
+ height: auto;
398
+ width: auto;
399
+ }
400
+ }
401
+
402
+ &.e-treeview ul:first-child {
403
+ padding-left: 10px;
404
+ padding-right: 10px;
405
+ }
406
+
407
+ &.e-rtl {
408
+ ul {
409
+ .e-list-icon {
410
+ transform: rotateX(0deg) rotateY(180deg);
411
+ }
412
+ }
413
+ }
414
+ }
415
+ }
416
+
417
+ &.e-olap-field-table {
418
+ width: 40%;
419
+ }
420
+ }
421
+
422
+ .e-axis-table {
423
+ display: flex;
424
+ overflow: hidden;
425
+ width: 70%;
426
+
427
+ .e-left-axis-fields,
428
+ .e-right-axis-fields {
429
+ padding-left: $field-list-default-padding-size;
430
+ width: 50%;
431
+ }
432
+
433
+ .e-left-axis-fields .e-field-list-filters,
434
+ .e-left-axis-fields .e-field-list-rows,
435
+ .e-right-axis-fields .e-field-list-columns,
436
+ .e-right-axis-fields .e-field-list-values {
437
+ background-color: $field-list-table-background-color;
438
+ border: $field-list-border-size $field-list-border-type $field-list-default-border-color;
439
+ border-radius: $field-list-default-border-radius;
440
+ fill: $field-list-default-fill-color;
441
+ font-weight: normal;
442
+ min-height: 165px;
443
+ position: relative;
444
+ width: 100%;
445
+
446
+ .e-axis-container {
447
+ background-color: $field-list-header-background-color;
448
+ border-bottom: $field-list-border-size $field-list-border-type $field-list-default-border-color;
449
+ color: $field-list-default-header-font-color;
450
+ display: flex;
451
+ height: $field-list-header-height;
452
+ padding: 2px $field-list-header-padding 5px;
453
+
454
+ @if ($skin-name == 'tailwind') {
455
+ padding: 5px $field-list-header-padding;
456
+ }
457
+
458
+ .e-axis-icon-container {
459
+ height: 20px;
460
+ padding-top: $field-list-header-icon-wrapper-padding;
461
+ width: 20px;
462
+
463
+ .e-axis-rows,
464
+ .e-axis-columns,
465
+ .e-axis-values,
466
+ .e-axis-filters {
467
+ color: $field-list-default-header-icon-font-color;
468
+ font-size: $field-list-header-icon-size;
469
+ }
470
+ }
471
+ }
472
+
473
+ .e-axis-header {
474
+ flex: auto;
475
+ font-size: $field-list-header-font-size;
476
+ line-height: $field-list-header-content-line-height;
477
+ margin-top: 2px;
478
+ overflow: hidden;
479
+ padding: 0 8px;
480
+ text-overflow: ellipsis;
481
+ text-transform: $field-list-text-transform;
482
+ width: 100%;
483
+
484
+ @if ($field-list-skin == 'bootstrap4') {
485
+ margin-top: 3px;
486
+ }
487
+
488
+ @if ($skin-name == 'bootstrap5') {
489
+ margin-top: 4px;
490
+ }
491
+ }
492
+
493
+ .e-axis-content {
494
+ cursor: default;
495
+ width: 100%;
496
+
497
+ &.e-drag-restrict {
498
+ cursor: no-drop;
499
+ }
500
+
501
+ .e-pvt-btn-div {
502
+
503
+ .e-drop-indicator-last,
504
+ .e-drop-indicator {
505
+ display: block;
506
+ pointer-events: none;
507
+ width: 100%;
508
+
509
+ &.e-drop-hover {
510
+ border-top: 2px dashed $field-list-drop-hover-color;
511
+ margin-top: -2px;
512
+ @if ($skin-name == 'tailwind') {
513
+ border-top: 2px solid $field-list-drop-hover-color;
514
+ }
515
+
516
+ @if ($skin-name == 'bootstrap5') {
517
+ border-top: 2px solid $field-list-drop-hover-color;
518
+ }
519
+ }
520
+ }
521
+
522
+ &.e-first-btn {
523
+ .e-drop-indicator {
524
+ &.e-drop-hover {
525
+ position: absolute;
526
+ }
527
+ }
528
+ }
529
+
530
+ .e-pivot-button {
531
+ background-color: $field-list-button-color;
532
+ border-bottom: $field-list-border-size $field-list-border-type $field-list-button-border-color;
533
+ border-left: 0;
534
+ border-radius: 0;
535
+ border-right: 0;
536
+ border-top: 0;
537
+ box-shadow: none;
538
+ cursor: default;
539
+ display: flex;
540
+ font-weight: normal;
541
+ height: $field-list-button-height;
542
+ line-height: 1em;
543
+ padding: $field-list-button-padding;
544
+ text-transform: none;
545
+ width: 100%;
546
+
547
+ @if ($field-list-skin == 'bootstrap4') {
548
+ color: $field-list-button-font-color;
549
+ }
550
+
551
+ @if ($skin-name == 'bootstrap5') {
552
+ color: $field-list-button-font-color;
553
+ }
554
+
555
+ &.e-list-selected {
556
+ color: $field-list-button-font-color;
557
+ opacity: .5;
558
+ }
559
+
560
+ &:hover {
561
+ background-color: $field-list-button-hover-color;
562
+
563
+ .e-content {
564
+ background-color: transparent;
565
+ }
566
+ }
567
+
568
+ &:focus,
569
+ &:active {
570
+ background-color: $field-list-button-focus-color;
571
+ color: $field-list-button-active-color;
572
+
573
+ .e-content {
574
+ background-color: transparent;
575
+ }
576
+
577
+ .e-sort,
578
+ .e-pv-filter,
579
+ .e-pv-filtered,
580
+ .e-dropdown-icon,
581
+ .e-edit {
582
+ color: $field-list-button-active-color;
583
+ }
584
+
585
+ .e-drag {
586
+ @if ($skin-name == 'tailwind') {
587
+ color: $field-list-button-active-color;
588
+ }
589
+ }
590
+ }
591
+
592
+
593
+ .e-content {
594
+ background-color: transparent;
595
+ flex: auto;
596
+ font-size: $field-list-button-font-size;
597
+ height: 16px;
598
+ line-height: 1em;
599
+ overflow: hidden;
600
+ padding: 0 8px;
601
+ text-align: left;
602
+ text-overflow: ellipsis;
603
+ width: 70%;
604
+ @if($skin-name == 'tailwind') {
605
+ line-height: 1.2em;
606
+ }
607
+ }
608
+
609
+ .e-draggable {
610
+ height: 20px;
611
+ width: 20px;
612
+ }
613
+
614
+ .e-drag {
615
+ color: $field-list-drag-icon-color;
616
+ cursor: move;
617
+ font-size: $field-list-icon-size;
618
+ height: 20px;
619
+ width: 20px;
620
+
621
+ &.e-disable-drag {
622
+ cursor: not-allowed;
623
+ opacity: .4;
624
+ visibility: hidden;
625
+ }
626
+ }
627
+
628
+ .e-sort,
629
+ .e-pv-filter,
630
+ .e-pv-filtered,
631
+ .e-dropdown-icon,
632
+ .e-edit {
633
+ color: $field-list-button-icon-color;
634
+ cursor: pointer;
635
+ display: inline-block;
636
+ font-size: $field-list-icon-size;
637
+ height: 20px;
638
+ padding-left: $field-list-icon-to-icon-padding;
639
+ width: 20px;
640
+
641
+ &:hover {
642
+ color: $field-list-icon-hover-color;
643
+ }
644
+
645
+ &.e-disable {
646
+ display: none;
647
+ }
648
+ }
649
+
650
+ .e-sort {
651
+ height: $field-list-icon-size;
652
+ }
653
+
654
+ .e-remove {
655
+ display: none;
656
+ }
657
+
658
+ &.e-rtl {
659
+ .e-content {
660
+ text-align: right;
661
+ }
662
+
663
+ .e-sort,
664
+ .e-pv-filter,
665
+ .e-pv-filtered,
666
+ .e-remove,
667
+ .e-dropdown-icon,
668
+ .e-edit {
669
+ padding-left: 0;
670
+ padding-right: $field-list-icon-to-icon-padding;
671
+ }
672
+ }
673
+ }
674
+ }
675
+ }
676
+
677
+ .e-sort {
678
+ height: fit-content;
679
+ transform: rotateX(0deg);
680
+ transition: transform 200ms ease-in-out;
681
+
682
+ &.e-descend {
683
+ transform: rotateX(180deg);
684
+ }
685
+ }
686
+
687
+ .e-axis-content {
688
+ height: $field-list-axis-content-height;
689
+ overflow: auto;
690
+ scroll-behavior: smooth;
691
+ }
692
+
693
+ .e-draggable-prompt {
694
+ bottom: 32%;
695
+ color: $field-list-default-prompt-color;
696
+ font-size: $field-list-content-font-size;
697
+ height: 25px;
698
+ pointer-events: none;
699
+ position: absolute;
700
+ text-align: center;
701
+ width: 100%;
702
+
703
+ &.e-disable {
704
+ display: none;
705
+ }
706
+ }
707
+ }
708
+
709
+ .e-left-axis-fields .e-field-list-rows,
710
+ .e-right-axis-fields .e-field-list-values {
711
+ margin-top: $field-list-default-padding-size;
712
+ }
713
+
714
+ &.e-olap-axis-table {
715
+ width: 60%;
716
+ }
717
+ }
718
+ }
719
+
720
+ &.e-search-mode {
721
+ &.e-static {
722
+ max-height: 750px;
723
+
724
+ .e-field-list-container .e-field-table {
725
+ height: 261px;
726
+ }
727
+ }
728
+
729
+ &.e-popup {
730
+ min-height: 540px;
731
+
732
+ .e-field-list-container {
733
+ height: 369px;
734
+
735
+ /* stylelint-disable */
736
+ .e-field-table {
737
+ height: $field-list-search-popup-table-height !important;
738
+ }
739
+
740
+ .e-axis-table {
741
+ height: 392px;
742
+
743
+ .e-axis-content {
744
+ height: $field-list-search-popup-axis-content-height !important;
745
+ }
746
+ }
747
+ /* stylelint-enable */
748
+ }
749
+ }
750
+
751
+ .e-member-prompt {
752
+ color: $field-list-drag-icon-color;
753
+ padding: $field-list-member-prompt-padding-size;
754
+ text-align: center;
755
+ width: 100%;
756
+
757
+ &.e-disable {
758
+ display: none;
759
+ }
760
+ }
761
+
762
+ .e-field-table {
763
+ .e-field-list-search {
764
+ display: flex;
765
+ padding: $field-list-search-padding-size;
766
+
767
+ .e-field-list-search-input .e-field-list-search-icon {
768
+ float: right;
769
+ font-size: $field-list-header-icon-size;
770
+ }
771
+
772
+ /* stylelint-disable */
773
+ .e-input-group .e-input-group-icon,
774
+ .e-input-group.e-control-wrapper .e-input-group-icon {
775
+ border-width: 0 !important;
776
+ cursor: text !important;
777
+ }
778
+
779
+ .e-input-group-icon:hover {
780
+ background-color: transparent !important;
781
+ border: transparent !important;
782
+ color: currentColor !important;
783
+ }
784
+ }
785
+
786
+ .e-field-list-tree-outer-div .e-disable,
787
+ .e-disable {
788
+ display: none !important;
789
+ }
790
+ }
791
+ }
792
+
793
+ .e-calculated-field {
794
+ color: $field-list-cal-button-text-color;
795
+ font-size: $field-list-button-font-size;
796
+ font-weight: $field-list-button-font-weight;
797
+ max-width: 160px;
798
+ min-width: 145px;
799
+
800
+ &.e-disable {
801
+ display: none;
802
+ }
803
+ }
804
+
805
+ /* stylelint-enable */
806
+
807
+ &.e-rtl {
808
+ .e-field-table {
809
+ .e-field-list {
810
+ padding-left: 0;
811
+ padding-right: 2px;
812
+
813
+ ul li {
814
+ margin-left: 0;
815
+ margin-right: $field-list-treeview-padding-size;
816
+
817
+ /* stylelint-disable */
818
+ .e-list-text {
819
+ font-family: $field-list-font-family;
820
+ }
821
+
822
+ .e-drag {
823
+ margin-left: 6px !important;
824
+ margin-right: 0 !important;
825
+ }
826
+
827
+ .e-calc-measure-icon,
828
+ .e-calc-dimension-icon,
829
+ .e-attributeCDB-icon,
830
+ .e-hierarchyCDB-icon,
831
+ .e-level-members,
832
+ .e-namedSetCDB-icon,
833
+ .e-measure-icon,
834
+ .e-kpiGoal-icon,
835
+ .e-kpiStatus-icon,
836
+ .e-kpiTrend-icon,
837
+ .e-kpiValue-icon {
838
+ margin-left: 0;
839
+ margin-right: 10px;
840
+ }
841
+
842
+ /* stylelint-enable */
843
+ }
844
+ }
845
+
846
+ .e-field-header {
847
+ padding-left: 0;
848
+ padding-right: $field-list-header-padding;
849
+ text-align: right;
850
+
851
+ @if ($field-list-skin == 'bootstrap4') {
852
+ padding-right: 12px;
853
+ }
854
+ }
855
+
856
+ .e-field-header-container {
857
+ padding-left: $field-list-header-padding;
858
+ padding-right: 0;
859
+
860
+ .e-sort-none,
861
+ .e-sort-ascend,
862
+ .e-sort-descend {
863
+ padding: $field-list-tree-header-padding $field-list-icon-to-icon-padding 0 0;
864
+ }
865
+
866
+ /* stylelint-disable */
867
+ @if ($skin-name == 'FluentUI') {
868
+ .e-sort-none {
869
+ padding: $field-list-icon-to-icon-padding 0 0 $field-list-tree-header-padding !important;
870
+ transform: rotate(180deg);
871
+ }
872
+ }
873
+ /* stylelint-enable */
874
+ }
875
+ }
876
+
877
+ .e-axis-table {
878
+
879
+ .e-left-axis-fields,
880
+ .e-right-axis-fields {
881
+ padding-left: 0;
882
+ padding-right: $field-list-default-padding-size;
883
+ }
884
+
885
+ .e-left-axis-fields .e-field-list-filters,
886
+ .e-left-axis-fields .e-field-list-rows,
887
+ .e-right-axis-fields .e-field-list-columns,
888
+ .e-right-axis-fields .e-field-list-values {
889
+ .e-axis-header {
890
+ float: right;
891
+ }
892
+ }
893
+ }
894
+ }
895
+
896
+ &.e-static {
897
+ background-color: $field-list-default-bg-color;
898
+ border: $field-list-border-size $field-list-border-type $field-list-default-border-color;
899
+ max-height: 700px;
900
+ padding: $field-list-static-padding-size;
901
+ position: relative;
902
+
903
+ .e-title-content {
904
+ color: $field-list-default-font-color;
905
+ }
906
+
907
+ .e-field-list-container {
908
+ display: inline-block;
909
+ height: 100%;
910
+ width: 100%;
911
+
912
+ .e-field-table {
913
+ height: 210px;
914
+ width: 100%;
915
+
916
+ .e-field-list-tree-outer-div {
917
+ height: 180px;
918
+ }
919
+ }
920
+
921
+ .e-center-div {
922
+ display: none;
923
+ }
924
+
925
+ .e-center-title {
926
+ color: $field-list-default-header-font-color;
927
+ font-size: $field-list-header-font-size;
928
+ height: 25px;
929
+ margin-top: 5px;
930
+ overflow: hidden;
931
+ text-align: left;
932
+ text-overflow: ellipsis;
933
+ }
934
+
935
+ .e-axis-table {
936
+ width: 100%;
937
+
938
+ .e-left-axis-fields {
939
+ padding: 0;
940
+ }
941
+
942
+ .e-right-axis-fields {
943
+ padding-left: $field-list-default-padding-size;
944
+ }
945
+
946
+ .e-left-axis-fields .e-field-list-rows,
947
+ .e-right-axis-fields .e-field-list-values {
948
+ margin-top: $field-list-default-padding-size;
949
+ }
950
+
951
+ .e-left-axis-fields .e-field-list-filters,
952
+ .e-left-axis-fields .e-field-list-rows,
953
+ .e-right-axis-fields .e-field-list-columns,
954
+ .e-right-axis-fields .e-field-list-values {
955
+ .e-axis-container {
956
+ .e-axis-icon-container {
957
+ padding-top: $field-list-static-header-icon-wrapper-padding;
958
+ }
959
+ }
960
+ }
961
+ }
962
+ }
963
+
964
+ &.e-rtl {
965
+ .e-center-title {
966
+ text-align: right;
967
+ }
968
+
969
+ .e-axis-table {
970
+ .e-left-axis-fields {
971
+ padding-left: $field-list-static-padding-size;
972
+ }
973
+
974
+ .e-right-axis-fields {
975
+ padding: 0;
976
+ }
977
+ }
978
+ }
979
+ }
980
+
981
+ &.e-device {
982
+ height: 100%;
983
+ /* stylelint-disable */
984
+ max-height: 100% !important;
985
+ max-width: 100% !important;
986
+ /* stylelint-enable */
987
+ min-height: 500px;
988
+ width: 100%;
989
+
990
+ .e-dlg-header-content {
991
+ background-color: $field-list-mobile-header-color;
992
+ color: $field-list-mobile-header-font-color;
993
+ font-size: 14px;
994
+ height: 48px;
995
+ padding-bottom: 9px;
996
+ padding-top: 9px;
997
+ @if ($skin-name == 'tailwind') {
998
+ padding-left: 16px;
999
+ padding-right: 16px;
1000
+ }
1001
+ }
1002
+
1003
+ .e-adaptive-field-list-dialog,
1004
+ .e-member-editor-dialog {
1005
+ .e-dlg-header-content {
1006
+ background-color: transparent;
1007
+ color: $field-list-mobile-header-font-color;
1008
+ }
1009
+
1010
+ .e-dlg-content .e-field-list-tree-outer-div {
1011
+ height: 210px;
1012
+ overflow: auto;
1013
+ }
1014
+ }
1015
+
1016
+ .e-title-mobile-header {
1017
+ display: flex;
1018
+ }
1019
+
1020
+ .e-title-mobile-content {
1021
+ margin-top: $field-list-back-margin;
1022
+ }
1023
+
1024
+ .e-field-list-back-icon {
1025
+ color: $field-list-back-font-color;
1026
+ font-size: 16px;
1027
+ height: 24px;
1028
+ margin-left: 0;
1029
+ margin-right: 12px;
1030
+ padding-top: 7px;
1031
+ text-align: center;
1032
+ width: 24px;
1033
+ }
1034
+
1035
+ .e-disable {
1036
+ display: none;
1037
+ }
1038
+
1039
+ .e-adaptive-container {
1040
+ height: 100%;
1041
+ position: relative;
1042
+
1043
+ .e-tab-header {
1044
+ background-color: $field-list-header-background-color;
1045
+
1046
+ .e-toolbar-item {
1047
+ .e-tab-wrap {
1048
+ border: 0;
1049
+ }
1050
+ }
1051
+ }
1052
+
1053
+ .e-content {
1054
+ display: initial;
1055
+
1056
+ .e-field-list-filters,
1057
+ .e-field-list-rows,
1058
+ .e-field-list-columns,
1059
+ .e-field-list-values {
1060
+ display: inline-block;
1061
+ height: 100%;
1062
+ min-height: 250px;
1063
+ padding-top: $field-list-adaptive-content-padding-size;
1064
+ position: relative;
1065
+ width: 100%;
1066
+
1067
+ .e-axis-content {
1068
+ overflow: auto;
1069
+ }
1070
+
1071
+ .e-pvt-btn-div {
1072
+ display: grid;
1073
+
1074
+ .e-drop-indicator {
1075
+ display: none;
1076
+ }
1077
+
1078
+ .e-pivot-button {
1079
+ border: $field-list-border-size $field-list-border-type $field-list-button-border-color;
1080
+ border-left: 0;
1081
+ border-radius: 0;
1082
+ border-right: 0;
1083
+ border-top: 0;
1084
+ border-width: 1px 0;
1085
+ box-shadow: none;
1086
+ display: flex;
1087
+ font-size: $field-list-bigger-button-font-size;
1088
+ font-weight: normal;
1089
+ height: $field-list-adaptive-pivot-button-height;
1090
+ line-height: normal;
1091
+ padding: $field-list-adaptive-pivot-button-padding;
1092
+ text-transform: none;
1093
+ width: 100%;
1094
+
1095
+ @if ($skin-name == 'bootstrap5') {
1096
+ background-color: $field-list-default-bg-color;
1097
+ color: $field-list-default-font-color;
1098
+ }
1099
+
1100
+ &.e-list-selected {
1101
+ opacity: .5;
1102
+ }
1103
+
1104
+ .e-content {
1105
+ flex: auto;
1106
+ font-size: $field-list-bigger-button-font-size;
1107
+ height: 100%;
1108
+ margin-top: -2px;
1109
+ overflow: hidden;
1110
+ text-align: left;
1111
+ text-overflow: ellipsis;
1112
+ width: 70%;
1113
+ }
1114
+
1115
+ .e-drag {
1116
+ display: none;
1117
+ }
1118
+
1119
+ /* stylelint-disable */
1120
+ .e-sort,
1121
+ .e-pv-filter,
1122
+ .e-pv-filtered,
1123
+ .e-remove,
1124
+ .e-dropdown-icon,
1125
+ .e-edit {
1126
+ color: $field-list-button-icon-color;
1127
+ cursor: pointer;
1128
+ display: inline-block;
1129
+ font-size: $field-list-bigger-icon-size;
1130
+ height: 24px;
1131
+ padding-left: 10px;
1132
+ width: 24px;
1133
+ font-size: 14px !important;
1134
+
1135
+ @if ($field-list-skin == 'bootstrap4') {
1136
+ color: $white;
1137
+ }
1138
+
1139
+ @if ($skin-name == 'bootstrap5') {
1140
+ color: $field-list-button-icon-color;
1141
+ padding-left: 8px;
1142
+ }
1143
+
1144
+ &:hover {
1145
+ color: $field-list-icon-hover-color;
1146
+ }
1147
+
1148
+ &.e-disable {
1149
+ display: none;
1150
+ }
1151
+ }
1152
+
1153
+ /* stylelint-enable */
1154
+
1155
+ .e-sort {
1156
+ height: fit-content;
1157
+ transform: rotateX(0deg);
1158
+ transition: transform 200ms ease-in-out;
1159
+
1160
+ &.e-descend {
1161
+ transform: rotateX(180deg);
1162
+ }
1163
+ }
1164
+
1165
+ .e-remove {
1166
+ display: inline-block;
1167
+ }
1168
+
1169
+ &.e-rtl {
1170
+ .e-content {
1171
+ text-align: right;
1172
+ }
1173
+
1174
+ .e-sort,
1175
+ .e-pv-filter,
1176
+ .e-pv-filtered,
1177
+ .e-remove,
1178
+ .e-dropdown-icon,
1179
+ .e-edit {
1180
+ padding-left: 0;
1181
+ padding-right: 10px;
1182
+
1183
+ @if ($skin-name == 'tailwind') {
1184
+ margin-right: 8px;
1185
+ padding-right: 0;
1186
+ }
1187
+ @if ($skin-name == 'bootstrap5') {
1188
+ padding-right: 8px;
1189
+ }
1190
+ }
1191
+ }
1192
+ }
1193
+ }
1194
+
1195
+ .e-axis-content {
1196
+ height: 100%;
1197
+ width: 100%;
1198
+ }
1199
+
1200
+ .e-draggable-prompt {
1201
+ border: 1px dashed $field-list-header-background-color;
1202
+ color: $field-list-header-background-color;
1203
+ font-size: $field-list-drag-clone-font-size;
1204
+ height: $field-list-adaptive-drag-prompt-height;
1205
+ left: 15%;
1206
+ line-height: $field-list-adaptive-drag-prompt-height;
1207
+ pointer-events: none;
1208
+ position: absolute;
1209
+ text-align: center;
1210
+ top: 25%;
1211
+ vertical-align: middle;
1212
+ width: 70%;
1213
+
1214
+ @if ($skin-name == 'bootstrap5') {
1215
+ color: $field-list-default-font-color;
1216
+ }
1217
+
1218
+ }
1219
+ }
1220
+
1221
+ .e-pivot-calc-outer-div {
1222
+ .e-pivot-formula {
1223
+ background-color: $pivot-formula-background;
1224
+ border: 1px solid $pivot-formula-border;
1225
+ border-radius: $field-list-default-border-radius;
1226
+ color: $field-list-default-font-color;
1227
+ height: 200px;
1228
+ margin-left: 20px;
1229
+ margin-right: 20px;
1230
+ margin-top: 25px;
1231
+ padding: 2px 3px;
1232
+ resize: none;
1233
+ width: 90%;
1234
+ }
1235
+
1236
+ /* stylelint-disable */
1237
+ .e-pivot-calc-input-div,
1238
+ .e-member-options,
1239
+ .e-pivot-calc-custom-format-div,
1240
+ .e-olap-calc-custom-format-div {
1241
+ margin-left: 20px;
1242
+ margin-right: 20px;
1243
+ margin-top: 20px;
1244
+ width: 90% !important;
1245
+ }
1246
+
1247
+ /* stylelint-enable */
1248
+
1249
+ .e-accordion {
1250
+ margin-top: 20px;
1251
+ overflow: auto;
1252
+
1253
+ .e-acrdn-header-icon {
1254
+ display: table;
1255
+ font-size: 12px;
1256
+ height: 36px;
1257
+ min-height: 36px;
1258
+ min-width: 28px;
1259
+ padding: 0;
1260
+ position: absolute;
1261
+ right: 16px;
1262
+ top: 0;
1263
+
1264
+ .e-list-icon {
1265
+ cursor: pointer;
1266
+ display: table-cell;
1267
+ padding-right: 6px;
1268
+ text-align: center;
1269
+ vertical-align: middle;
1270
+ }
1271
+ }
1272
+
1273
+ .e-icons.e-frame {
1274
+ margin-right: 12px;
1275
+ }
1276
+
1277
+ &.e-rtl {
1278
+ .e-acrdn-header-icon {
1279
+ left: 16px;
1280
+ right: auto;
1281
+ }
1282
+
1283
+ /* stylelint-disable */
1284
+ .e-icons.e-frame {
1285
+ margin-left: 12px !important;
1286
+ margin-right: 0 !important;
1287
+ }
1288
+
1289
+ /* stylelint-enable */
1290
+ }
1291
+ }
1292
+
1293
+ .e-radio-wrapper {
1294
+ margin-bottom: 24px;
1295
+ margin-right: 20px;
1296
+
1297
+ .e-label {
1298
+ color: $pivot-text-area-background;
1299
+ font-family: $field-list-font-family;
1300
+ font-size: 14px;
1301
+ opacity: .87;
1302
+ }
1303
+ }
1304
+
1305
+ .e-pivot-ok-button,
1306
+ .e-pivot-add-button,
1307
+ .e-pivot-cancel-button {
1308
+ float: right;
1309
+ margin-right: 20px;
1310
+ margin-top: 32px;
1311
+ }
1312
+
1313
+ .e-pivot-ok-button {
1314
+ bottom: 0;
1315
+ position: sticky;
1316
+ }
1317
+
1318
+ .e-pivot-accord {
1319
+ max-height: 290px;
1320
+ overflow: auto;
1321
+
1322
+ ul {
1323
+
1324
+ .e-list-icon {
1325
+ color: $field-list-tree-icon-color;
1326
+
1327
+ @if($skin-name == 'bootstrap5') {
1328
+ color: $field-list-default-fill-color;
1329
+ }
1330
+
1331
+ }
1332
+
1333
+ .e-calcfieldmember .e-list-text {
1334
+ overflow: hidden;
1335
+ text-overflow: ellipsis;
1336
+ width: 53%;
1337
+ }
1338
+
1339
+ .e-list-header-icon {
1340
+ display: table;
1341
+ height: 30px;
1342
+ min-height: 30px;
1343
+ min-width: 24px;
1344
+ padding: 0;
1345
+ position: absolute;
1346
+ right: 16px;
1347
+ top: 0;
1348
+
1349
+ .e-list-edit-icon,
1350
+ .e-remove-report.e-icons {
1351
+ color: $field-list-tree-icon-color;
1352
+ display: table-cell;
1353
+ padding: 5px;
1354
+ pointer-events: all;
1355
+ text-align: center;
1356
+ vertical-align: middle;
1357
+ }
1358
+ }
1359
+ }
1360
+
1361
+ &.e-rtl {
1362
+ ul {
1363
+ .e-list-header-icon {
1364
+ left: 16px;
1365
+ right: auto;
1366
+ }
1367
+
1368
+ .e-list-icon {
1369
+ transform: rotateX(0deg) rotateY(180deg);
1370
+ }
1371
+ }
1372
+ }
1373
+ }
1374
+
1375
+ &.e-olap-calc-outer-div {
1376
+ max-height: 350px;
1377
+ overflow: hidden;
1378
+ overflow-y: auto;
1379
+ }
1380
+ }
1381
+ }
1382
+
1383
+ .e-field-list-footer {
1384
+ bottom: 20px;
1385
+ display: inline-block;
1386
+ position: absolute;
1387
+ vertical-align: bottom;
1388
+ width: 100%;
1389
+
1390
+ .e-field-list-footer-content {
1391
+ display: inline-block;
1392
+ padding: $field-list-adaptive-footer-padding-size;
1393
+ width: 100%;
1394
+
1395
+ .e-field-list-btn,
1396
+ .e-calculated-field-btn {
1397
+ float: right;
1398
+ height: $field-list-adaptive-btn-size;
1399
+ pointer-events: all;
1400
+ width: $field-list-adaptive-btn-size;
1401
+ z-index: 1000;
1402
+
1403
+ .e-add-icon {
1404
+ font-size: $field-list-adaptive-btn-icon-size;
1405
+ line-height: $field-list-adaptive-icon-height;
1406
+ }
1407
+ }
1408
+ }
1409
+ }
1410
+ }
1411
+
1412
+ .e-footer-content.e-field-list-footer {
1413
+ background-color: transparent;
1414
+ bottom: 0;
1415
+ display: inline-block;
1416
+ padding: $field-list-adaptive-footer-padding-size;
1417
+ pointer-events: none;
1418
+ position: absolute;
1419
+ vertical-align: bottom;
1420
+ width: 100%;
1421
+
1422
+ .e-field-list-btn,
1423
+ .e-calculated-field-btn,
1424
+ .e-cancel-btn,
1425
+ .e-defer-apply-button {
1426
+ float: right;
1427
+ height: $field-list-adaptive-btn-size;
1428
+ pointer-events: all;
1429
+ width: $field-list-adaptive-btn-size;
1430
+ z-index: 1000;
1431
+
1432
+ .e-add-icon {
1433
+ font-size: $field-list-adaptive-btn-icon-size;
1434
+ line-height: $field-list-adaptive-icon-height;
1435
+ }
1436
+ }
1437
+
1438
+ .e-cancel-btn,
1439
+ .e-defer-apply-button {
1440
+ float: left;
1441
+ }
1442
+
1443
+ .e-cancel-btn,
1444
+ .e-defer-apply-button,
1445
+ .e-checkbox-layout {
1446
+ max-width: 20%;
1447
+ overflow: hidden;
1448
+ text-overflow: ellipsis;
1449
+ white-space: nowrap;
1450
+ }
1451
+
1452
+ .e-checkbox-layout {
1453
+ max-width: 45%;
1454
+ }
1455
+ }
1456
+
1457
+ &.e-static {
1458
+ border: 0;
1459
+ padding: 0;
1460
+
1461
+ .e-field-list-filters,
1462
+ .e-field-list-rows,
1463
+ .e-field-list-columns,
1464
+ .e-field-list-values {
1465
+ .e-axis-content {
1466
+ max-height: 600px;
1467
+ }
1468
+ }
1469
+ }
1470
+
1471
+ &.e-rtl {
1472
+ .e-field-list-back-icon {
1473
+ margin-left: 12px;
1474
+ margin-right: 0;
1475
+ transform: rotateY(180deg);
1476
+ }
1477
+
1478
+ .e-field-list-footer {
1479
+
1480
+ .e-field-list-btn,
1481
+ .e-calculated-field-btn {
1482
+ float: left;
1483
+ }
1484
+
1485
+ .e-cancel-btn,
1486
+ .e-defer-apply-button {
1487
+ float: right;
1488
+ }
1489
+ }
1490
+
1491
+ /* stylelint-disable */
1492
+ .e-pivot-calc-outer-div {
1493
+
1494
+ .e-pivot-ok-button,
1495
+ .e-pivot-add-button,
1496
+ .e-pivot-cancel-button {
1497
+ float: left !important;
1498
+ margin-left: 20px;
1499
+ }
1500
+ }
1501
+
1502
+ /* stylelint-enable */
1503
+ }
1504
+ }
1505
+ }
1506
+
1507
+ /* stylelint-disable */
1508
+ .e-bigger .e-pivotfieldlist-container,
1509
+ .e-bigger.e-pivotfieldlist-container {
1510
+ .e-field-table {
1511
+
1512
+ .e-left-axis-fields,
1513
+ .e-right-axis-fields {
1514
+ padding-left: $field-list-default-bigger-padding-size;
1515
+ }
1516
+
1517
+ .e-field-header {
1518
+ background-color: $field-list-header-background-color;
1519
+ color: $field-list-default-header-font-color;
1520
+ font-size: $field-list-bigger-header-font-size;
1521
+ font-weight: normal;
1522
+ height: $field-list-bigger-header-height;
1523
+ overflow: hidden;
1524
+ padding: $field-list-tree-header-padding 0 0 $field-list-bigger-header-padding;
1525
+
1526
+ @if ($field-list-skin == 'bootstrap4') {
1527
+ height: 40px;
1528
+ padding-left: 16px;
1529
+ padding-top: $field-list-bigger-tree-header-padding;
1530
+ }
1531
+ }
1532
+
1533
+ .e-field-header-container {
1534
+ padding-right: $field-list-bigger-header-padding;
1535
+
1536
+ .e-sort-none,
1537
+ .e-sort-ascend,
1538
+ .e-sort-descend {
1539
+ font-size: $field-list-bigger-header-icon-size;
1540
+ height: 24px !important;
1541
+ padding: $field-list-tree-header-padding 0 0 $field-list-bigger-icon-to-icon-padding;
1542
+ width: 24px;
1543
+ }
1544
+
1545
+ @if ($skin-name == 'FluentUI') {
1546
+ .e-sort-none {
1547
+ padding: 0 0 $field-list-bigger-icon-to-icon-padding $field-list-tree-header-padding !important;
1548
+ }
1549
+ }
1550
+ }
1551
+
1552
+ .e-field-list {
1553
+ padding-left: 5px;
1554
+
1555
+ ul {
1556
+ li {
1557
+ padding: 0;
1558
+ }
1559
+ }
1560
+
1561
+ .e-drag {
1562
+ font-size: $field-list-bigger-icon-size !important;
1563
+ height: 24px !important;
1564
+ margin-bottom: $field-list-treeview-drag-bigger-padding !important;
1565
+ margin-right: 4px !important;
1566
+ width: 24px !important;
1567
+ }
1568
+
1569
+ .e-calc-measure-icon,
1570
+ .e-calc-dimension-icon,
1571
+ .e-attributeCDB-icon,
1572
+ .e-hierarchyCDB-icon,
1573
+ .e-level-members,
1574
+ .e-namedSetCDB-icon,
1575
+ .e-measure-icon,
1576
+ .e-kpiGoal-icon,
1577
+ .e-kpiStatus-icon,
1578
+ .e-kpiTrend-icon,
1579
+ .e-kpiValue-icon {
1580
+ margin-left: 10px;
1581
+ }
1582
+
1583
+ &.e-olap-field-list-tree {
1584
+ ul {
1585
+ .e-list-icon {
1586
+ font-size: $field-list-bigger-icon-size;
1587
+ }
1588
+ }
1589
+ }
1590
+ }
1591
+ /* stylelint-enable */
1592
+
1593
+ .e-left-axis-fields .e-field-list-rows,
1594
+ .e-right-axis-fields .e-field-list-values {
1595
+ margin-top: $field-list-default-bigger-padding-size;
1596
+ }
1597
+ }
1598
+
1599
+ .e-axis-table {
1600
+ .e-left-axis-fields .e-field-list-filters,
1601
+ .e-left-axis-fields .e-field-list-rows,
1602
+ .e-right-axis-fields .e-field-list-columns,
1603
+ .e-right-axis-fields .e-field-list-values {
1604
+ .e-axis-container {
1605
+ height: $field-list-bigger-header-height;
1606
+ padding: 0 $field-list-bigger-header-padding 5px;
1607
+
1608
+ .e-axis-icon-container {
1609
+ height: 24px;
1610
+ padding-top: $field-list-bigger-header-icon-wrapper-padding;
1611
+ width: 24px;
1612
+
1613
+ .e-axis-rows,
1614
+ .e-axis-columns,
1615
+ .e-axis-values,
1616
+ .e-axis-filters {
1617
+ font-size: $field-list-bigger-header-icon-size;
1618
+ }
1619
+ }
1620
+
1621
+ .e-axis-header {
1622
+ font-size: $field-list-bigger-header-font-size;
1623
+ line-height: $field-list-bigger-header-content-line-height;
1624
+ margin-top: 4px;
1625
+ padding: 0 12px;
1626
+
1627
+ @if ($field-list-skin == 'bootstrap4') {
1628
+ margin-top: 7px;
1629
+ }
1630
+ }
1631
+ }
1632
+
1633
+ .e-axis-content {
1634
+ @if ($field-list-skin == 'bootstrap4') {
1635
+ height: 126px;
1636
+ }
1637
+
1638
+ /* stylelint-disable */
1639
+ .e-pvt-btn-div {
1640
+ .e-pivot-button {
1641
+ font-size: $field-list-bigger-button-font-size;
1642
+ height: $field-list-bigger-button-height !important;
1643
+ padding: $field-list-bigger-button-padding !important;
1644
+
1645
+ /* stylelint-enable */
1646
+ .e-content {
1647
+ font-size: $field-list-bigger-button-font-size;
1648
+ line-height: $field-list-bigger-button-line-height;
1649
+ padding: 0 10px;
1650
+ }
1651
+
1652
+ .e-draggable {
1653
+ height: 24px;
1654
+ width: 24px;
1655
+ }
1656
+
1657
+ .e-sort,
1658
+ .e-pv-filter,
1659
+ .e-pv-filtered,
1660
+ .e-dropdown-icon,
1661
+ .e-edit {
1662
+ cursor: pointer;
1663
+ display: inline-block;
1664
+ font-size: $field-list-bigger-icon-size;
1665
+ height: 24px;
1666
+ width: 24px;
1667
+ }
1668
+
1669
+ .e-sort {
1670
+ height: $field-list-bigger-icon-size;
1671
+ }
1672
+
1673
+ .e-drag {
1674
+ font-size: $field-list-bigger-icon-size;
1675
+ width: 24px;
1676
+ }
1677
+ }
1678
+ }
1679
+ }
1680
+
1681
+ .e-draggable-prompt {
1682
+ @if ($field-list-skin == 'bootstrap4') {
1683
+ font-size: 16px;
1684
+ }
1685
+ }
1686
+ }
1687
+ }
1688
+
1689
+ .e-calculated-field {
1690
+ font-size: $field-list-bigger-button-font-size;
1691
+ }
1692
+
1693
+ &.e-static {
1694
+ max-height: 720px;
1695
+
1696
+ .e-field-list-container {
1697
+ .e-center-title {
1698
+ color: $field-list-default-header-font-color;
1699
+ font-size: $field-list-bigger-header-font-size;
1700
+ }
1701
+
1702
+ .e-axis-table {
1703
+ .e-right-axis-fields {
1704
+ padding-left: $field-list-default-bigger-padding-size;
1705
+ }
1706
+
1707
+ .e-left-axis-fields .e-field-list-rows,
1708
+ .e-right-axis-fields .e-field-list-values {
1709
+ margin-top: $field-list-default-bigger-padding-size;
1710
+ }
1711
+
1712
+ .e-left-axis-fields .e-field-list-filters,
1713
+ .e-left-axis-fields .e-field-list-rows,
1714
+ .e-right-axis-fields .e-field-list-columns,
1715
+ .e-right-axis-fields .e-field-list-values {
1716
+ .e-axis-container {
1717
+ .e-axis-icon-container {
1718
+ padding-top: $field-list-static-bigger-header-icon-wrapper-padding;
1719
+ }
1720
+ }
1721
+ }
1722
+ }
1723
+ }
1724
+
1725
+ &.e-rtl {
1726
+ .e-axis-table {
1727
+ .e-left-axis-fields {
1728
+ padding-left: $field-list-default-bigger-padding-size;
1729
+ }
1730
+
1731
+ /* stylelint-disable */
1732
+ .e-right-axis-fields {
1733
+ padding: 0 !important;
1734
+ }
1735
+ }
1736
+ }
1737
+ }
1738
+
1739
+ &.e-rtl {
1740
+ .e-field-table {
1741
+ .e-field-list {
1742
+ padding-left: 0;
1743
+ padding-right: 5px;
1744
+
1745
+ .e-drag {
1746
+ margin-left: 4px !important;
1747
+ margin-right: 0 !important;
1748
+ }
1749
+
1750
+ .e-calc-measure-icon,
1751
+ .e-calc-dimension-icon,
1752
+ .e-attributeCDB-icon,
1753
+ .e-hierarchyCDB-icon,
1754
+ .e-level-members,
1755
+ .e-namedSetCDB-icon,
1756
+ .e-measure-icon,
1757
+ .e-kpiGoal-icon,
1758
+ .e-kpiStatus-icon,
1759
+ .e-kpiTrend-icon,
1760
+ .e-kpiValue-icon {
1761
+ margin-left: 0;
1762
+ margin-right: 10px;
1763
+ }
1764
+
1765
+ /* stylelint-enable */
1766
+ }
1767
+
1768
+ .e-field-header {
1769
+ padding-right: $field-list-bigger-header-padding;
1770
+ }
1771
+
1772
+ .e-field-header-container {
1773
+ padding-left: $field-list-bigger-header-padding;
1774
+
1775
+ .e-sort-none,
1776
+ .e-sort-ascend,
1777
+ .e-sort-descend {
1778
+ padding: $field-list-tree-header-padding $field-list-bigger-icon-to-icon-padding 0 0;
1779
+ }
1780
+
1781
+ /* stylelint-disable */
1782
+ @if ($skin-name == 'FluentUI') {
1783
+ .e-sort-none {
1784
+ padding: $field-list-bigger-icon-to-icon-padding 0 0 $field-list-tree-header-padding !important;
1785
+ }
1786
+ }
1787
+ /* stylelint-enable */
1788
+ }
1789
+ }
1790
+
1791
+ .e-axis-table {
1792
+
1793
+ .e-left-axis-fields,
1794
+ .e-right-axis-fields {
1795
+ padding-left: 0;
1796
+ padding-right: $field-list-default-padding-size;
1797
+ }
1798
+
1799
+ .e-left-axis-fields .e-field-list-filters,
1800
+ .e-left-axis-fields .e-field-list-rows,
1801
+ .e-right-axis-fields .e-field-list-columns,
1802
+ .e-right-axis-fields .e-field-list-values {
1803
+ .e-pivot-button {
1804
+
1805
+ .e-sort,
1806
+ .e-pv-filter,
1807
+ .e-pv-filtered,
1808
+ .e-remove,
1809
+ .e-dropdown-icon,
1810
+ .e-edit {
1811
+ padding-left: 0;
1812
+ padding-right: $field-list-bigger-icon-to-icon-padding;
1813
+ }
1814
+ }
1815
+ }
1816
+ }
1817
+ }
1818
+
1819
+ &.e-search-mode {
1820
+ &.e-static {
1821
+ max-height: 750px;
1822
+
1823
+ .e-field-list-container {
1824
+ max-height: 800px;
1825
+
1826
+ .e-field-table {
1827
+ height: 270px;
1828
+ }
1829
+ }
1830
+ }
1831
+
1832
+ /* stylelint-disable */
1833
+ &.e-popup {
1834
+ max-height: 600px !important;
1835
+ min-height: $field-list-search-popup-container-bigger-height !important;
1836
+
1837
+ .e-field-list-container {
1838
+ height: 387px;
1839
+
1840
+ .e-field-table {
1841
+ height: $field-list-search-popup-table-bigger-height !important;
1842
+ }
1843
+
1844
+ .e-axis-table {
1845
+ height: $field-list-search-popup-axis-table-bigger-height;
1846
+
1847
+ .e-axis-content {
1848
+ height: $field-list-search-popup-axis-content-bigger-height !important;
1849
+ }
1850
+ }
1851
+ }
1852
+ }
1853
+ }
1854
+
1855
+ .e-adaptive-field-list-dialog {
1856
+ .e-dlg-content .e-field-list-tree-outer-div {
1857
+ max-height: $field-list-adaptive-outerdiv-height;
1858
+ }
1859
+ }
1860
+ }
1861
+ /* stylelint-enable */
1862
+ }