@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,1073 @@
1
+ @include export-module('pivotview-layout') {
2
+ /*! PivotView layout */
3
+ .e-pivotview {
4
+
5
+ /* stylelint-disable */
6
+ .e-value-field-settings,
7
+ .e-member-editor-dialog,
8
+ .e-group-field-settings {
9
+ max-height: 450px !important;
10
+ border-radius: $pivotgrid-default-border-radius;
11
+ max-width: 400px !important;
12
+ width: auto !important;
13
+ }
14
+
15
+ .e-pivot-format-dialog {
16
+ border-radius: $pivotgrid-default-border-radius;
17
+ max-width: 400px !important;
18
+ width: auto !important;
19
+ }
20
+ /* stylelint-enable */
21
+
22
+ .e-value-field-settings {
23
+ .e-field-name-text-container {
24
+ display: flex;
25
+ }
26
+
27
+ .e-field-name-title {
28
+ flex: none;
29
+ font-size: 13px;
30
+ font-weight: 500;
31
+ }
32
+
33
+ .e-field-name-content {
34
+ flex: auto;
35
+ font-size: 13px;
36
+ font-weight: 500;
37
+ width: 100%;
38
+ }
39
+
40
+ .e-caption-input-container,
41
+ .e-type-option-container,
42
+ .e-base-field-option-container,
43
+ .e-base-item-option-container {
44
+ padding-top: $pivotgrid-editor-search-padding-size;
45
+ }
46
+
47
+ .e-base-field-option-text,
48
+ .e-base-item-option-text,
49
+ .e-type-option-text {
50
+ font-size: 13px;
51
+ font-weight: 500;
52
+ width: 100%;
53
+
54
+ @if ($skin-name == 'tailwind') or ($skin-name == 'bootstrap5') or ($skin-name == 'FluentUI') {
55
+ padding-bottom: 4px;
56
+ }
57
+ }
58
+
59
+ .e-caption-input-text {
60
+ font-size: 13px;
61
+ }
62
+ }
63
+
64
+ .e-group-field-settings {
65
+ .e-caption-option-text,
66
+ .e-input-option-text,
67
+ .e-group-inerval-option-text,
68
+ .e-checkbox-wrapper {
69
+ padding-bottom: $pivotgrid-grouping-padding-bottom;
70
+ }
71
+
72
+ .e-group-start-option-container .e-checkbox-wrapper {
73
+ padding-top: $pivotgrid-grouping-padding-top;
74
+ }
75
+
76
+ .e-caption-option-text,
77
+ .e-input-option-text,
78
+ .e-group-inerval-option-text,
79
+ .e-checkbox-wrapper .e-label {
80
+ font-size: 13px;
81
+ font-weight: 500;
82
+ width: 100%;
83
+ }
84
+
85
+ .e-group-input-container,
86
+ .e-group-end-option-container,
87
+ .e-group-interval-option-container {
88
+ padding-top: $pivotgrid-editor-search-padding-size;
89
+ }
90
+
91
+ .e-group-field-div-content {
92
+ margin-bottom: 10px;
93
+ }
94
+ }
95
+
96
+ .e-member-editor-dialog {
97
+ min-width: 320px;
98
+
99
+ .e-editor-search-container {
100
+ display: flex;
101
+ padding: 0 $pivotgrid-editor-search-padding-size 10px;
102
+ @if ($skin-name == 'FluentUI') {
103
+ padding-top: 1px;
104
+ }
105
+
106
+ .e-clear-icon-hide {
107
+ display: inline-block;
108
+ visibility: hidden;
109
+ }
110
+ }
111
+
112
+ @if ($pivotgrid-skin == 'bootstrap4') {
113
+ &:not(.e-excel-filter) {
114
+ .e-editor-search-container {
115
+ padding: 5px $pivotgrid-editor-search-padding-size 10px;
116
+ }
117
+ }
118
+ }
119
+
120
+ @if ($skin-name == 'bootstrap5') or ($skin-name == 'tailwind') {
121
+ &:not(.e-excel-filter) {
122
+ .e-editor-search-container {
123
+ padding: 5px $pivotgrid-editor-search-padding-size 10px;
124
+ }
125
+ }
126
+ }
127
+
128
+ @if ($skin-name == 'tailwind') {
129
+ &:not(.e-excel-filter) {
130
+ .e-editor-search-container {
131
+ padding: 5px $pivotgrid-editor-search-padding-size 10px;
132
+ }
133
+ }
134
+ }
135
+
136
+ .e-filter-sort {
137
+ box-shadow: none;
138
+ margin-left: $pivotgrid-sort-wrapper-padding-size;
139
+
140
+ /* stylelint-disable */
141
+ .e-member-sort {
142
+ @if ($pivotgrid-skin == 'bootstrap4') {
143
+ background-color: $content-bg;
144
+ border-color: $gray-400;
145
+ color: $gray-700;
146
+ }
147
+
148
+ &:hover {
149
+ @if ($pivotgrid-skin == 'bootstrap4') {
150
+ background-color: $gray-600 !important;
151
+ border-color: $gray-600 !important;
152
+ color: $white !important;
153
+ }
154
+ }
155
+
156
+ &.e-active {
157
+ @if ($pivotgrid-skin == 'bootstrap4') {
158
+ background-color: $pivotgrid-sort-select-background-color;
159
+ border-color: $pivotgrid-sort-select-border-color;
160
+ color: $pivotgrid-sort-select-color;
161
+ outline: none;
162
+ }
163
+ }
164
+
165
+ .e-sort-ascend-icon,
166
+ .e-sort-descend-icon {
167
+ font-size: 16px;
168
+ }
169
+
170
+ &:focus {
171
+ @if ($pivotgrid-skin == 'bootstrap4') {
172
+ background-color: $gray-600 !important;
173
+ border-color: $gray-600 !important;
174
+ color: $white !important;
175
+ }
176
+
177
+ &.e-active {
178
+ @if ($skin-name == 'bootstrap4') {
179
+ background-color: $pivotgrid-sort-select-background-color;
180
+ border-color: $pivotgrid-sort-select-border-color;
181
+ color: $pivotgrid-sort-select-color;
182
+ outline: none;
183
+ }
184
+ }
185
+ }
186
+ }
187
+ }
188
+
189
+ .e-member-prompt {
190
+ padding: 15px $pivotgrid-editor-search-padding-size;
191
+ text-align: center;
192
+ width: 100%;
193
+ }
194
+
195
+ .e-member-editor-container-outer-div {
196
+ display: inline-block;
197
+ height: $pivotgrid-member-filter-list-height;
198
+ max-width: 400px;
199
+ overflow: auto;
200
+ width: 100%;
201
+ }
202
+
203
+ .e-member-editor-container {
204
+ display: inline-table;
205
+ width: 100%;
206
+
207
+ &.e-olap-field-list-tree {
208
+ overflow-x: auto;
209
+ }
210
+ }
211
+
212
+ .e-select-all-container ul,
213
+ .e-member-editor-container ul {
214
+ margin-left: $pivotgrid-member-filter-list-padding-size;
215
+ overflow: hidden;
216
+
217
+ li {
218
+ .e-list-text {
219
+ font-family: $field-list-font-family;
220
+ }
221
+
222
+ .e-list-icon {
223
+ margin: 0;
224
+ }
225
+ }
226
+ }
227
+
228
+ .e-select-all-container ul,
229
+ .e-member-editor-container ul {
230
+ margin-left: $pivotgrid-member-filter-list-padding-size;
231
+ overflow: hidden;
232
+
233
+ li {
234
+ .e-list-text {
235
+ font-family: $field-list-font-family;
236
+ }
237
+
238
+ .e-list-icon {
239
+ margin: 0;
240
+ }
241
+ }
242
+ }
243
+
244
+ .e-excelfilter {
245
+ padding-top: 20px;
246
+
247
+ @if ($skin-name == 'tailwind') {
248
+ padding-top: 12px;
249
+ }
250
+
251
+ .e-member-editor-container-outer-div {
252
+ height: $pivotgrid-excel-member-filter-height;
253
+ }
254
+
255
+ .e-editor-label-container {
256
+ opacity: $pivotgrid-editor-label-excel-opacity;
257
+ padding: $pivotgrid-editor-label-excel-padding-size;
258
+ }
259
+ }
260
+
261
+ .e-label-filter,
262
+ .e-value-filter {
263
+ height: $pivotgrid-excel-filter-height;
264
+ overflow: auto;
265
+ padding: 20px;
266
+ padding-bottom: 0;
267
+
268
+ .e-filter-text-div {
269
+ color: $pivotview-grid-header-font-color !important;
270
+ font-size: 13px;
271
+ font-weight: 500;
272
+ }
273
+
274
+ .e-filter-option-container-1,
275
+ .e-filter-option-container-2,
276
+ .e-separator-div {
277
+ padding-top: 20px;
278
+ }
279
+
280
+ .e-between-text-div {
281
+ padding: 8px 0;
282
+ }
283
+
284
+ .e-disable {
285
+ display: none;
286
+ }
287
+
288
+ @if ($skin-name == 'tailwind') {
289
+ padding-top: 0;
290
+ }
291
+
292
+ }
293
+
294
+ .e-filter-tab-container {
295
+ border: none;
296
+ /* stylelint-enable */
297
+
298
+ .e-tab-header {
299
+ .e-toolbar-item .e-icon-left + .e-tab-text {
300
+ margin: 0 0 0 6px;
301
+ }
302
+
303
+ .e-text-wrap {
304
+ .e-tab-icon {
305
+ height: 14px;
306
+ min-width: 14px;
307
+ width: 14px;
308
+ @if ($pivotgrid-skin == 'bootstrap4') or ($skin-name == 'bootstrap5') or ($skin-name == 'tailwind') or ($skin-name == 'FluentUI') {
309
+ height: auto;
310
+ }
311
+
312
+ &::before {
313
+ font-size: 14px;
314
+ }
315
+ }
316
+ }
317
+ }
318
+
319
+ &.e-rtl {
320
+ .e-tab-header {
321
+ .e-toolbar-item .e-icon-left + .e-tab-text {
322
+ margin: 0 6px 0 0;
323
+ }
324
+ }
325
+ }
326
+ }
327
+
328
+ /* stylelint-disable */
329
+ .e-disable {
330
+ display: none !important;
331
+ }
332
+
333
+ .e-clear-filter-button {
334
+ float: left;
335
+ margin: 0;
336
+
337
+ @if ($skin-name == 'FluentUI') {
338
+ margin-left: 0 !important;
339
+ margin-right: 0 !important;
340
+ }
341
+
342
+ &.e-disable {
343
+ display: none;
344
+ }
345
+ }
346
+ .e-editor-label-container {
347
+ background-color: $pivotgrid-editor-label-fill;
348
+ opacity: $pivotgrid-editor-label-excel-opacity;
349
+ padding: $pivotgrid-editor-label-padding-size;
350
+
351
+ .e-editor-label {
352
+ color: $pivotgrid-editor-label-color;
353
+ font: $pivotgrid-editor-label-font;
354
+ opacity: $pivotgrid-editor-label-opacity;
355
+ overflow: hidden;
356
+ text-overflow: ellipsis;
357
+ white-space: nowrap;
358
+ }
359
+ }
360
+
361
+ &.e-rtl {
362
+ .e-member-editor-outer-container {
363
+ .e-editor-search-container {
364
+ .e-filter-sort {
365
+ margin-left: 0;
366
+ margin-right: $pivotgrid-sort-wrapper-padding-size;
367
+ }
368
+ }
369
+
370
+ ul {
371
+ margin-left: 0;
372
+ margin-right: $pivotgrid-member-filter-list-padding-size;
373
+ }
374
+ }
375
+ .e-member-editor-outer-container {
376
+ .e-editor-search-container {
377
+ .e-filter-sort {
378
+ margin-left: 0;
379
+ margin-right: $pivotgrid-sort-wrapper-padding-size;
380
+ }
381
+ }
382
+
383
+ ul {
384
+ margin-left: 0;
385
+ margin-right: $pivotgrid-member-filter-list-padding-size;
386
+ }
387
+ }
388
+
389
+ .e-footer-content {
390
+ .e-clear-filter-button {
391
+ float: right;
392
+ margin: 0;
393
+ }
394
+ }
395
+ }
396
+
397
+ &.e-olap-editor-dialog {
398
+ .e-member-editor-outer-container {
399
+ .e-select-all-container ul,
400
+ .e-member-editor-container ul {
401
+ margin-left: 0;
402
+ }
403
+
404
+ .e-treeview ul:first-child {
405
+ padding-left: 10px;
406
+ padding-right: 10px;
407
+ }
408
+
409
+ .e-editor-search-container {
410
+ .e-level-drop {
411
+ margin: 0 5px;
412
+
413
+ .e-caret {
414
+ font-size: $pivotgrid-button-icon-size;
415
+ }
416
+
417
+ li .e-disabled {
418
+ opacity: .5;
419
+ pointer-events: none;
420
+ }
421
+ }
422
+ }
423
+ }
424
+ .e-member-editor-outer-container {
425
+ .e-select-all-container ul,
426
+ .e-member-editor-container ul {
427
+ margin-left: 0;
428
+ }
429
+
430
+ .e-treeview ul:first-child {
431
+ padding-left: 10px;
432
+ padding-right: 10px;
433
+ }
434
+
435
+ .e-editor-search-container {
436
+ .e-level-drop {
437
+ margin: 0 5px;
438
+
439
+ .e-caret {
440
+ font-size: $pivotgrid-button-icon-size;
441
+ }
442
+
443
+ li .e-disabled {
444
+ opacity: .5;
445
+ pointer-events: none;
446
+ }
447
+ }
448
+ }
449
+ }
450
+
451
+ &.e-rtl {
452
+ .e-member-editor-outer-container {
453
+ ul {
454
+ margin-right: 0;
455
+ }
456
+ }
457
+ }
458
+ }
459
+ }
460
+
461
+ .e-value-field-settings,
462
+ .e-member-editor-dialog,
463
+ .e-pivot-format-dialog,
464
+ .e-group-field-settings {
465
+
466
+ .e-dlg-header-content {
467
+ border: 0;
468
+ border-radius: $pivotgrid-default-border-radius;
469
+ font-weight: normal;
470
+ }
471
+
472
+ .e-footer-content {
473
+ border-top-left-radius: 0;
474
+ border-top-right-radius: 0;
475
+ border-radius: $pivotgrid-default-border-radius;
476
+
477
+ @if ($skin-name != 'FluentUI') {
478
+ padding-bottom: 8px;
479
+ padding-top: 8px;
480
+ }
481
+ }
482
+
483
+ .e-dlg-content {
484
+ overflow: hidden;
485
+
486
+ .e-empty-field::-webkit-input-placeholder {
487
+ color: $error-font-color !important;
488
+ font-weight: 600 !important;
489
+ }
490
+
491
+ .e-empty-field:-moz-placeholder {
492
+ color: $error-font-color !important;
493
+ font-weight: 600 !important;
494
+ }
495
+
496
+ .e-empty-field::-moz-placeholder {
497
+ color: $error-font-color !important;
498
+ font-weight: 600 !important;
499
+ }
500
+
501
+ .e-empty-field:-ms-input-placeholder {
502
+ color: $error-font-color !important;
503
+ font-weight: 600 !important;
504
+ }
505
+ }
506
+ }
507
+
508
+ .e-member-editor-dialog,
509
+ .e-pivot-format-dialog {
510
+ .e-dlg-content {
511
+ @if ($skin-name != 'FluentUI') {
512
+ padding: 0;
513
+ }
514
+
515
+ @if ($skin-name == 'FluentUI') {
516
+ padding-left: 0 !important;
517
+ padding-right: 0 !important;
518
+ }
519
+ }
520
+ }
521
+ /* stylelint-enable */
522
+
523
+ .e-value-field-settings,
524
+ .e-member-editor-dialog {
525
+ .e-footer-content {
526
+ border-top: $pivotgrid-border-size $pivotgrid-border-type $pivotgrid-default-border-color;
527
+
528
+ @if ($skin-name == 'FluentUI') {
529
+ border-top: 0;
530
+ }
531
+ }
532
+ }
533
+
534
+ .e-value-field-settings,
535
+ .e-pivot-format-dialog {
536
+ min-width: 300px;
537
+
538
+ .e-dlg-content {
539
+ overflow: auto;
540
+
541
+ @if ($skin-name == 'tailwind') {
542
+ padding-top: 12px;
543
+ }
544
+ }
545
+ }
546
+
547
+ /* stylelint-disable */
548
+ .e-pivotchart-type-dialog {
549
+ max-width: 350px !important;
550
+ max-height: 380px !important;
551
+
552
+ .e-chart-type-option-container,
553
+ .e-chart-type-option-text {
554
+ padding-bottom: 20px;
555
+
556
+ .e-chart-type-option-text {
557
+ padding-bottom: 5px;
558
+ }
559
+ }
560
+
561
+ .e-multiple-axes-mode-container {
562
+ padding-top: 20px;
563
+
564
+ .e-multiple-axes-mode-text {
565
+ padding-bottom: 5px;
566
+ }
567
+ }
568
+
569
+ .e-dialog-multiple-axis,
570
+ .e-dialog-show-legend {
571
+ width: 49%;
572
+ }
573
+ }
574
+
575
+ .e-pivot-format-dialog {
576
+ max-height: 550px !important;
577
+ max-width: 350px !important;
578
+
579
+ .e-pivot-format-dialog-outer {
580
+ padding: 0 $pivotgrid-editor-search-padding-size;
581
+
582
+ .e-pivot-format-value-lable,
583
+ .e-pivot-format-lable,
584
+ .e-pivot-format-custom-lable,
585
+ .e-pivot-format-grouping-lable,
586
+ .e-pivot-format-decimal-lable {
587
+ font-weight: 500;
588
+ @if ($skin-name == 'tailwind') or ($skin-name == 'bootstrap5') or ($skin-name == 'FluentUI') {
589
+ padding-bottom: 4px;
590
+ }
591
+ }
592
+
593
+ .e-pivot-format-value-drop,
594
+ .e-pivot-format-drop,
595
+ .e-pivot-format-custom-text,
596
+ .e-pivot-format-grouping-drop,
597
+ .e-pivot-format-decimal-drop {
598
+ margin-bottom: 20px;
599
+ @if ($skin-name == 'tailwind') {
600
+ margin-bottom: 12px;
601
+ }
602
+ }
603
+ }
604
+ }
605
+
606
+ .e-pivot-toolbar {
607
+ background: $pivotgrid-grp-bg-color;
608
+ border-bottom: 0;
609
+ border-style: solid;
610
+
611
+ @if($skin-name == 'FluentUI') {
612
+ box-shadow: none;
613
+ }
614
+
615
+ @if ($skin-name == 'bootstrap5') or ($skin-name == 'tailwind') or ($skin-name == 'FluentUI') {
616
+ border-top: 1px solid $pivotgrid-border;
617
+ border-left: 1px solid $pivotgrid-border;
618
+ border-right: 1px solid $pivotgrid-border;
619
+ }
620
+
621
+ .e-toolbar-items {
622
+ background: $pivotgrid-grp-bg-color;
623
+ }
624
+
625
+ .e-toolbar-item .e-tbar-btn.e-btn {
626
+ @if($skin-name == 'FluentUI') {
627
+ line-height: 20px;
628
+ }
629
+
630
+ .e-icons.e-btn-icon {
631
+ font-size: 16px;
632
+ @if ($skin-name == 'FluentUI') {
633
+ margin: 4px;
634
+ }
635
+ }
636
+ }
637
+
638
+ .e-pivot-toolbar-menu {
639
+ background-color: transparent;
640
+ border: none;
641
+ @if ($pivotgrid-skin == 'bootstrap4') {
642
+ background-color: $gray-100;
643
+ color: $gray-700;
644
+ }
645
+
646
+ ul .e-menu-item {
647
+ @if ($skin-name != 'tailwind') {
648
+ height: $pivotgrid-menubar-height !important;
649
+ }
650
+ overflow: hidden;
651
+ padding-left: 10px;
652
+ @if ($pivotgrid-skin == 'bootstrap4') {
653
+ background-color: $gray-100;
654
+ color: $gray-700;
655
+ }
656
+
657
+ .e-menu-icon {
658
+ margin-left: 0;
659
+ margin-right: 0;
660
+ font-size: 16px;
661
+ @if ($pivotgrid-skin == 'bootstrap4') {
662
+ color: $gray-700;
663
+ }
664
+
665
+ @if ($pivotgrid-skin == 'FluentUI') {
666
+ color: $pivotgrid-active-color;
667
+ }
668
+
669
+ @if ($skin-name == 'bootstrap5') or ($skin-name == 'FluentUI') {
670
+ line-height: $pivotgrid-menubar-height;
671
+ }
672
+
673
+ @if ($skin-name == 'tailwind') {
674
+ line-height: 40px;
675
+ }
676
+ }
677
+
678
+ .e-caret {
679
+ @if ($pivotgrid-skin == 'bootstrap4') {
680
+ color: $gray-700;
681
+ }
682
+
683
+ @if ($pivotgrid-skin == 'FluentUI') {
684
+ color: $pivotgrid-active-color;
685
+ }
686
+
687
+ @if ($skin-name == 'bootstrap5') or ($skin-name == 'FluentUI') {
688
+ line-height: $pivotgrid-menubar-height;
689
+ }
690
+
691
+ @if ($skin-name == 'tailwind') {
692
+ line-height: 40px;
693
+ }
694
+ }
695
+ }
696
+
697
+ ul .e-menu-item.e-focused {
698
+ @if ($pivotgrid-skin == 'bootstrap4') {
699
+ background-color: $gray-600;
700
+ border-radius: $pivotgrid-default-border-radius;
701
+ }
702
+
703
+ .e-menu-icon,
704
+ .e-icons{
705
+ @if ($pivotgrid-skin == 'bootstrap4') {
706
+ color: $white;
707
+ }
708
+
709
+ @if ($pivotgrid-skin == 'FluentUI') {
710
+ color: $pivotgrid-active-color;
711
+ }
712
+ }
713
+ }
714
+ }
715
+
716
+ .e-tab .e-tab-header .e-toolbar-item.e-active {
717
+ margin-left: 18px !important;
718
+ /* stylelint-enable */
719
+ }
720
+
721
+ .e-toolbar-item.e-template {
722
+ /* stylelint-disable */
723
+ padding: 0 !important;
724
+ }
725
+
726
+ .e-reportlist-label {
727
+ float: left;
728
+ font-weight: 500;
729
+ /* stylelint-enable */
730
+ }
731
+
732
+ .e-reportlist-drop {
733
+ float: right;
734
+ margin: 0 8px;
735
+ }
736
+
737
+ &.e-rtl {
738
+ .e-reportlist-label {
739
+ float: right;
740
+ }
741
+
742
+ .e-reportlist-drop {
743
+ float: left;
744
+ }
745
+
746
+ .e-pivot-toolbar-menu {
747
+ ul .e-menu-item {
748
+ padding-left: 30px;
749
+ padding-right: 10px;
750
+ }
751
+ }
752
+ }
753
+ }
754
+
755
+ .e-frozenscrollbar {
756
+ background-color: $pivotgrid-grp-bg-color;
757
+ }
758
+ }
759
+
760
+ .e-pivotview-disable-icon {
761
+ visibility: hidden;
762
+ }
763
+
764
+ .e-pivotview-report-inner {
765
+ padding-top: 10px;
766
+ }
767
+
768
+ .e-pivotview-report-dialog {
769
+ /* stylelint-disable */
770
+ max-width: 350px !important;
771
+ }
772
+
773
+ .e-mdx-query-content {
774
+ background-color: $pivotgrid-table-background-color;
775
+ color: $pivotgrid-default-font-color;
776
+ font-size: 14px;
777
+ font-weight: 500;
778
+ height: 200px;
779
+ margin-top: 5px;
780
+ padding: 5px 10px;
781
+ resize: none;
782
+ width: 100%;
783
+ }
784
+
785
+ .e-pivotview-mdx-dialog {
786
+ max-width: 500px !important;
787
+ }
788
+ /* stylelint-enable */
789
+
790
+ .e-report-outer {
791
+ display: inline-block;
792
+ width: 100%;
793
+ @if ($skin-name == 'FluentUI') {
794
+ padding-top: 1px;
795
+ }
796
+ }
797
+
798
+ .e-pivotview-report-label {
799
+ float: left;
800
+ margin-top: $pivotgrid-report-label-margin-top;
801
+ width: 40%;
802
+ @if($skin-name == 'bootstrap5') {
803
+ padding-left: 12px;
804
+ }
805
+ }
806
+
807
+ /* stylelint-disable */
808
+ .e-pivotview-report-input {
809
+ float: right;
810
+ width: 60% !important;
811
+ }
812
+
813
+ #{if(&, "&", "*")}.e-rtl {
814
+ .e-pivotview-report-input {
815
+ float: left;
816
+ }
817
+
818
+ .e-pivotview-report-label {
819
+ float: right;
820
+ }
821
+ }
822
+
823
+
824
+ .e-pivotview-pdf-export,
825
+ .e-pivotview-excel-export,
826
+ .e-pivotview-csv-export,
827
+ .e-pivotview-png-export,
828
+ .e-pivotview-jpeg-export,
829
+ .e-pivotview-svg-export {
830
+ font-size: 18px !important;
831
+ }
832
+ /* stylelint-enable */
833
+
834
+ .e-contextmenu-container.e-menu-popup.e-menu-container.e-pivot-chart-menu ul {
835
+ .e-dialog-multiple-axis .e-label,
836
+ .e-dialog-multiple-axis .e-label {
837
+ white-space: nowrap;
838
+ }
839
+ }
840
+
841
+ .e-drillthrough-dialog {
842
+ .e-drillthrough-body-header-container {
843
+ margin-bottom: 20px;
844
+
845
+ @if ($skin-name == 'bootstrap5') {
846
+ margin-bottom: 18px;
847
+ }
848
+
849
+ }
850
+
851
+ .e-drillthrough-body-header {
852
+ color: $pivotgrid-editor-label-color;
853
+ font-weight: $pivotgrid-drillthrough-header-font-weight;
854
+ opacity: $pivotgrid-editor-label-opacity;
855
+ }
856
+
857
+ .e-drillthrough-body-header-value {
858
+ color: $pivotview-grid-header-font-color;
859
+ margin-right: 20px;
860
+ }
861
+
862
+ /* stylelint-disable */
863
+ .e-drillthrough-body-header-common {
864
+ -webkit-flex-wrap: wrap;
865
+ -moz-flex-wrap: wrap;
866
+ -ms-flex-wrap: wrap;
867
+ display: inline-block;
868
+ flex-wrap: wrap;
869
+ }
870
+ /* stylelint-enable */
871
+ }
872
+
873
+ .e-bigger .e-pivotview,
874
+ .e-bigger.e-pivotview {
875
+ .e-pivot-toolbar .e-pivot-toolbar-menu ul .e-menu-item {
876
+ @if ($skin-name != 'tailwind') and ($skin-name != 'bootstrap5') {
877
+ /* stylelint-disable */
878
+ height: $pivotgrid-bigger-menubar-height !important;
879
+ /* stylelint-enable */
880
+ }
881
+
882
+ .e-menu-icon {
883
+ @if ($skin-name == 'tailwind') {
884
+ line-height: 50px;
885
+ }
886
+ }
887
+
888
+ .e-caret {
889
+ @if ($skin-name == 'tailwind') {
890
+ line-height: 50px;
891
+ }
892
+ }
893
+ }
894
+
895
+ .e-member-editor-dialog .e-dlg-content .e-member-editor-outer-container .e-member-editor-container-outer-div {
896
+ height: $pivotgrid-member-filter-list-bigger-height;
897
+ }
898
+
899
+ /* stylelint-disable */
900
+ .e-member-editor-dialog {
901
+ .e-editor-search-container {
902
+ .e-filter-sort {
903
+ .e-member-sort {
904
+ .e-sort-ascend-icon,
905
+ .e-sort-descend-icon {
906
+ font-size: 18px;
907
+ }
908
+ }
909
+ }
910
+
911
+ .e-level-drop {
912
+ .e-caret {
913
+ font-size: $pivotgrid-bigger-button-icon-size !important;
914
+ }
915
+ }
916
+ }
917
+
918
+ .e-member-editor-outer-container ul {
919
+ @if ($pivotgrid-skin == 'bootstrap4') {
920
+ margin-left: -30px !important;
921
+ }
922
+ }
923
+
924
+ &.e-rtl {
925
+ .e-member-editor-outer-container ul {
926
+ @if ($pivotgrid-skin == 'bootstrap4') {
927
+ margin-right: -30px !important;
928
+ }
929
+ }
930
+ }
931
+ }
932
+
933
+ .e-member-editor-dialog {
934
+ .e-filter-tab-container {
935
+ .e-tab-header {
936
+ .e-toolbar-item .e-icon-left + .e-tab-text {
937
+ margin: 0 0 0 6px;
938
+ }
939
+ }
940
+
941
+ &.e-rtl {
942
+ .e-tab-header {
943
+ .e-toolbar-item .e-icon-left + .e-tab-text {
944
+ margin: 0 6px 0 0;
945
+ }
946
+ }
947
+ }
948
+ }
949
+
950
+ .e-excelfilter {
951
+ .e-member-editor-container-outer-div {
952
+ height: $pivotgrid-excel-member-filter-bigger-height !important;
953
+ }
954
+ @if ($skin-name == 'tailwind') {
955
+ padding-top: 16px;
956
+ }
957
+ }
958
+
959
+ .e-label-filter,
960
+ .e-value-filter {
961
+ height: $pivotgrid-excel-filter-bigger-height;
962
+
963
+ .e-filter-text-div {
964
+ font-size: 14px;
965
+ }
966
+
967
+ .e-filter-option-container-1,
968
+ .e-filter-option-container-2,
969
+ .e-separator-div {
970
+ padding-top: 24px;
971
+ }
972
+
973
+ .e-between-text-div {
974
+ padding: 10px 0;
975
+ }
976
+ }
977
+
978
+ &.e-excel-filter {
979
+ min-width: $pivotgrid-bigger-excel-dialog-min-width;
980
+ }
981
+ }
982
+
983
+ .e-member-editor-dialog,
984
+ .e-value-field-settings,
985
+ .e-pivot-format-dialog {
986
+ .e-dlg-header-content {
987
+ .e-clear-filter-button.e-small {
988
+ font-size: 14px;
989
+ top: 0;
990
+ }
991
+ }
992
+ }
993
+
994
+ .e-value-field-settings {
995
+ max-height: 510px !important;
996
+ }
997
+ /* stylelint-enable */
998
+
999
+ .e-pivot-format-dialog {
1000
+ .e-pivot-format-dialog-outer {
1001
+ padding: 0 20px 10px;
1002
+ }
1003
+ }
1004
+
1005
+ .e-group-field-settings {
1006
+ .e-caption-option-text,
1007
+ .e-checkbox-wrapper .e-label {
1008
+ font-size: 14px;
1009
+ }
1010
+
1011
+ .e-group-input-container,
1012
+ .e-group-end-option-container,
1013
+ .e-group-interval-option-container {
1014
+ padding-top: 24px;
1015
+ }
1016
+
1017
+ .e-caption-input-text,
1018
+ .e-input-option-text,
1019
+ .e-checkbox-wrapper .e-label,
1020
+ .e-group-inerval-option-text {
1021
+ font-size: 14px;
1022
+ }
1023
+
1024
+ .e-group-start-option-container .e-checkbox-wrapper {
1025
+ padding-top: $pivotgrid-grouping-bigger-padding-top;
1026
+ }
1027
+ }
1028
+
1029
+ .e-value-field-settings {
1030
+ .e-field-name-text-container {
1031
+ display: flex;
1032
+ }
1033
+
1034
+ .e-field-name-title,
1035
+ .e-field-name-content {
1036
+ font-size: 14px;
1037
+ // font-size: 13px;
1038
+ font-weight: 500;
1039
+ }
1040
+
1041
+ .e-caption-input-container,
1042
+ .e-type-option-container,
1043
+ .e-base-field-option-container,
1044
+ .e-base-item-option-container {
1045
+ padding-top: 24px;
1046
+ }
1047
+
1048
+ .e-base-field-option-text,
1049
+ .e-base-item-option-text,
1050
+ .e-type-option-text {
1051
+ font-size: 14px;
1052
+ }
1053
+ }
1054
+
1055
+ /* stylelint-disable */
1056
+ .e-value-field-settings,
1057
+ .e-group-field-settings {
1058
+ .e-value-field-div-content,
1059
+ .e-group-field-div-content {
1060
+ padding: 0 $pivotgrid-editor-search-padding-size 10px;
1061
+ }
1062
+ }
1063
+ /* stylelint-enable */
1064
+ }
1065
+
1066
+ .e-bigger .e-pivotview-report-dialog,
1067
+ .e-bigger.e-pivotview-report-dialog {
1068
+ .e-pivotview-report-label {
1069
+ margin-top: $pivotgrid-bigger-report-label-margin-top;
1070
+ }
1071
+ }
1072
+ }
1073
+