@syncfusion/ej2-angular-pivotview 20.2.39-ngcc → 20.2.43

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