@syncfusion/ej2-angular-pivotview 23.1.36-ngcc → 23.1.36
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/esm2020/public_api.mjs +3 -0
- package/esm2020/src/index.mjs +8 -0
- package/esm2020/src/pivotfieldlist/pivotfieldlist-all.module.mjs +23 -0
- package/esm2020/src/pivotfieldlist/pivotfieldlist.component.mjs +66 -0
- package/esm2020/src/pivotfieldlist/pivotfieldlist.module.mjs +25 -0
- package/esm2020/src/pivotview/pivotview-all.module.mjs +65 -0
- package/esm2020/src/pivotview/pivotview.component.mjs +163 -0
- package/esm2020/src/pivotview/pivotview.module.mjs +25 -0
- package/esm2020/syncfusion-ej2-angular-pivotview.mjs +5 -0
- package/fesm2015/syncfusion-ej2-angular-pivotview.mjs +353 -0
- package/fesm2015/syncfusion-ej2-angular-pivotview.mjs.map +1 -0
- package/fesm2020/syncfusion-ej2-angular-pivotview.mjs +353 -0
- package/fesm2020/syncfusion-ej2-angular-pivotview.mjs.map +1 -0
- package/package.json +26 -12
- package/src/pivotfieldlist/pivotfieldlist-all.module.d.ts +6 -0
- package/src/pivotfieldlist/pivotfieldlist.component.d.ts +3 -0
- package/src/pivotfieldlist/pivotfieldlist.module.d.ts +6 -0
- package/src/pivotview/pivotview-all.module.d.ts +6 -0
- package/src/pivotview/pivotview.component.d.ts +3 -0
- package/src/pivotview/pivotview.module.d.ts +6 -0
- package/styles/material3-dark.css +0 -55
- package/styles/material3-dark.scss +1 -0
- package/styles/material3.css +0 -111
- package/styles/material3.scss +1 -0
- package/styles/pivotfieldlist/_all.scss +2 -0
- package/styles/pivotfieldlist/_bootstrap-dark-definition.scss +231 -0
- package/styles/pivotfieldlist/_bootstrap-definition.scss +213 -0
- package/styles/pivotfieldlist/_bootstrap4-definition.scss +213 -0
- package/styles/pivotfieldlist/_bootstrap5-dark-definition.scss +1 -0
- package/styles/pivotfieldlist/_bootstrap5-definition.scss +217 -0
- package/styles/pivotfieldlist/_fabric-dark-definition.scss +219 -0
- package/styles/pivotfieldlist/_fabric-definition.scss +213 -0
- package/styles/pivotfieldlist/_fluent-dark-definition.scss +1 -0
- package/styles/pivotfieldlist/_fluent-definition.scss +217 -0
- package/styles/pivotfieldlist/_fusionnew-definition.scss +216 -0
- package/styles/pivotfieldlist/_highcontrast-definition.scss +214 -0
- package/styles/pivotfieldlist/_highcontrast-light-definition.scss +214 -0
- package/styles/pivotfieldlist/_layout.scss +1957 -0
- package/styles/pivotfieldlist/_material-dark-definition.scss +214 -0
- package/styles/pivotfieldlist/_material-definition.scss +214 -0
- package/styles/pivotfieldlist/_material3-dark-definition.scss +1 -0
- package/styles/pivotfieldlist/_material3-definition.scss +224 -0
- package/styles/pivotfieldlist/_tailwind-dark-definition.scss +1 -0
- package/styles/pivotfieldlist/_tailwind-definition.scss +217 -0
- package/styles/pivotfieldlist/_theme.scss +1973 -0
- package/styles/pivotfieldlist/bootstrap-dark.scss +4 -1
- package/styles/pivotfieldlist/bootstrap.scss +4 -1
- package/styles/pivotfieldlist/bootstrap4.scss +4 -1
- package/styles/pivotfieldlist/bootstrap5-dark.scss +4 -1
- package/styles/pivotfieldlist/bootstrap5.scss +4 -1
- package/styles/pivotfieldlist/fabric-dark.scss +4 -1
- package/styles/pivotfieldlist/fabric.scss +4 -1
- package/styles/pivotfieldlist/fluent-dark.scss +4 -1
- package/styles/pivotfieldlist/fluent.scss +4 -1
- package/styles/pivotfieldlist/highcontrast-light.scss +4 -1
- package/styles/pivotfieldlist/highcontrast.scss +4 -1
- package/styles/pivotfieldlist/icons/_bootstrap-dark.scss +359 -0
- package/styles/pivotfieldlist/icons/_bootstrap.scss +359 -0
- package/styles/pivotfieldlist/icons/_bootstrap4.scss +359 -0
- package/styles/pivotfieldlist/icons/_bootstrap5-dark.scss +1 -0
- package/styles/pivotfieldlist/icons/_bootstrap5.scss +358 -0
- package/styles/pivotfieldlist/icons/_fabric-dark.scss +359 -0
- package/styles/pivotfieldlist/icons/_fabric.scss +359 -0
- package/styles/pivotfieldlist/icons/_fluent-dark.scss +1 -0
- package/styles/pivotfieldlist/icons/_fluent.scss +358 -0
- package/styles/pivotfieldlist/icons/_fusionnew.scss +353 -0
- package/styles/pivotfieldlist/icons/_highcontrast-light.scss +358 -0
- package/styles/pivotfieldlist/icons/_highcontrast.scss +358 -0
- package/styles/pivotfieldlist/icons/_material-dark.scss +359 -0
- package/styles/pivotfieldlist/icons/_material.scss +358 -0
- package/styles/pivotfieldlist/icons/_material3-dark.scss +1 -0
- package/styles/pivotfieldlist/icons/_material3.scss +357 -0
- package/styles/pivotfieldlist/icons/_tailwind-dark.scss +357 -0
- package/styles/pivotfieldlist/icons/_tailwind.scss +357 -0
- package/styles/pivotfieldlist/material-dark.scss +4 -1
- package/styles/pivotfieldlist/material.scss +4 -1
- package/styles/pivotfieldlist/material3-dark.scss +4 -1
- package/styles/pivotfieldlist/material3.scss +4 -1
- package/styles/pivotfieldlist/tailwind-dark.scss +4 -1
- package/styles/pivotfieldlist/tailwind.scss +4 -1
- package/styles/pivotview/_all.scss +2 -0
- package/styles/pivotview/_bootstrap-dark-definition.scss +176 -0
- package/styles/pivotview/_bootstrap-definition.scss +173 -0
- package/styles/pivotview/_bootstrap4-definition.scss +173 -0
- package/styles/pivotview/_bootstrap5-dark-definition.scss +1 -0
- package/styles/pivotview/_bootstrap5-definition.scss +178 -0
- package/styles/pivotview/_fabric-dark-definition.scss +175 -0
- package/styles/pivotview/_fabric-definition.scss +172 -0
- package/styles/pivotview/_fluent-dark-definition.scss +1 -0
- package/styles/pivotview/_fluent-definition.scss +178 -0
- package/styles/pivotview/_fusionnew-definition.scss +178 -0
- package/styles/pivotview/_highcontrast-definition.scss +171 -0
- package/styles/pivotview/_highcontrast-light-definition.scss +172 -0
- package/styles/pivotview/_layout.scss +1169 -0
- package/styles/pivotview/_material-dark-definition.scss +179 -0
- package/styles/pivotview/_material-definition.scss +175 -0
- package/styles/pivotview/_material3-dark-definition.scss +1 -0
- package/styles/pivotview/_material3-definition.scss +181 -0
- package/styles/pivotview/_tailwind-dark-definition.scss +1 -0
- package/styles/pivotview/_tailwind-definition.scss +178 -0
- package/styles/pivotview/_theme.scss +2020 -0
- package/styles/pivotview/bootstrap-dark.scss +5 -1
- package/styles/pivotview/bootstrap.scss +5 -1
- package/styles/pivotview/bootstrap4.scss +5 -1
- package/styles/pivotview/bootstrap5-dark.scss +4 -1
- package/styles/pivotview/bootstrap5.scss +5 -1
- package/styles/pivotview/fabric-dark.scss +5 -1
- package/styles/pivotview/fabric.scss +5 -1
- package/styles/pivotview/fluent-dark.scss +4 -1
- package/styles/pivotview/fluent.scss +5 -1
- package/styles/pivotview/highcontrast-light.scss +5 -1
- package/styles/pivotview/highcontrast.scss +5 -1
- package/styles/pivotview/icons/_bootstrap-dark.scss +184 -0
- package/styles/pivotview/icons/_bootstrap.scss +184 -0
- package/styles/pivotview/icons/_bootstrap4.scss +184 -0
- package/styles/pivotview/icons/_bootstrap5-dark.scss +1 -0
- package/styles/pivotview/icons/_bootstrap5.scss +183 -0
- package/styles/pivotview/icons/_fabric-dark.scss +184 -0
- package/styles/pivotview/icons/_fabric.scss +184 -0
- package/styles/pivotview/icons/_fluent-dark.scss +1 -0
- package/styles/pivotview/icons/_fluent.scss +183 -0
- package/styles/pivotview/icons/_fusionnew.scss +183 -0
- package/styles/pivotview/icons/_highcontrast-light.scss +183 -0
- package/styles/pivotview/icons/_highcontrast.scss +183 -0
- package/styles/pivotview/icons/_material-dark.scss +184 -0
- package/styles/pivotview/icons/_material.scss +184 -0
- package/styles/pivotview/icons/_material3-dark.scss +1 -0
- package/styles/pivotview/icons/_material3.scss +183 -0
- package/styles/pivotview/icons/_tailwind-dark.scss +183 -0
- package/styles/pivotview/icons/_tailwind.scss +183 -0
- package/styles/pivotview/material-dark.scss +5 -1
- package/styles/pivotview/material.scss +5 -1
- package/styles/pivotview/material3-dark.scss +4 -1
- package/styles/pivotview/material3.scss +5 -1
- package/styles/pivotview/tailwind-dark.scss +4 -1
- package/styles/pivotview/tailwind.scss +5 -1
- package/syncfusion-ej2-angular-pivotview.d.ts +5 -0
- package/@syncfusion/ej2-angular-pivotview.es5.js +0 -439
- package/@syncfusion/ej2-angular-pivotview.es5.js.map +0 -1
- package/@syncfusion/ej2-angular-pivotview.js +0 -409
- package/@syncfusion/ej2-angular-pivotview.js.map +0 -1
- package/CHANGELOG.md +0 -843
- package/dist/ej2-angular-pivotview.umd.js +0 -708
- package/dist/ej2-angular-pivotview.umd.js.map +0 -1
- package/dist/ej2-angular-pivotview.umd.min.js +0 -11
- package/dist/ej2-angular-pivotview.umd.min.js.map +0 -1
- package/ej2-angular-pivotview.d.ts +0 -6
- package/ej2-angular-pivotview.metadata.json +0 -1
- package/postinstall/tagchange.js +0 -18
|
@@ -0,0 +1,183 @@
|
|
|
1
|
+
@include export-module('pivotview-icons') {
|
|
2
|
+
.e-pivotview {
|
|
3
|
+
.e-expand::before {
|
|
4
|
+
content: '\e75c';
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
.e-collapse::before {
|
|
8
|
+
content: '\e734';
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
&.e-rtl {
|
|
12
|
+
.e-expand::before {
|
|
13
|
+
content: '\e738';
|
|
14
|
+
}
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
.e-sort::before {
|
|
18
|
+
content: '\e7df';
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
.e-pv-filter::before {
|
|
22
|
+
content: '\e7f7';
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
.e-pv-filtered::before {
|
|
26
|
+
content: '\e735';
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
.e-remove::before {
|
|
30
|
+
content: '\e7e7';
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
.e-selected-option-icon::before {
|
|
34
|
+
content: '\e72b';
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
.e-clear-filter-icon::before {
|
|
38
|
+
content: '\e72c';
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
.e-dropdown-icon::before {
|
|
42
|
+
content: '\e729';
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
.e-export::before {
|
|
46
|
+
content: '\e72e';
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
.e-new-report::before {
|
|
50
|
+
content: '\e7dc';
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
.e-save-report::before {
|
|
54
|
+
content: '\e7c8';
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
.e-saveas-report::before {
|
|
58
|
+
content: '\e7ae';
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
.e-rename-report::before {
|
|
62
|
+
content: '\e76d';
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
.e-remove-report::before {
|
|
66
|
+
content: '\e820';
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
.e-sub-total::before {
|
|
70
|
+
content: '\e702';
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
.e-grand-total::before {
|
|
74
|
+
content: '\e74d';
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
.e-toolbar-fieldlist::before {
|
|
78
|
+
content: '\e751';
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
.e-toolbar-grid::before {
|
|
82
|
+
content: '\e7e9';
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
.e-toolbar-chart::before {
|
|
86
|
+
content: '\e826';
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
.e-toolbar-formatting::before {
|
|
90
|
+
content: '\e71b';
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
.e-pivot-button .e-edit::before {
|
|
94
|
+
content: '\e730';
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
.e-sort-ascend-icon::before {
|
|
98
|
+
content: '\e7a3';
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
.e-sort-descend-icon::before {
|
|
102
|
+
content: '\e7b6';
|
|
103
|
+
}
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
.e-pivotview-pdf-export::before {
|
|
107
|
+
content: '\e700';
|
|
108
|
+
}
|
|
109
|
+
|
|
110
|
+
.e-pivotview-excel-export::before {
|
|
111
|
+
content: '\e7c1';
|
|
112
|
+
}
|
|
113
|
+
|
|
114
|
+
.e-pivotview-csv-export::before {
|
|
115
|
+
content: '\e7ba';
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
.e-pivotview-png-export::before {
|
|
119
|
+
content: '\e7ee';
|
|
120
|
+
}
|
|
121
|
+
|
|
122
|
+
.e-pivotview-jpeg-export::before {
|
|
123
|
+
content: '\e786';
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
.e-pivotview-svg-export::before {
|
|
127
|
+
content: '\e7cf';
|
|
128
|
+
}
|
|
129
|
+
|
|
130
|
+
.e-mdx::before {
|
|
131
|
+
content: '\e7ac';
|
|
132
|
+
}
|
|
133
|
+
|
|
134
|
+
.e-pivotview-select-icon::before {
|
|
135
|
+
content: '\e774';
|
|
136
|
+
}
|
|
137
|
+
|
|
138
|
+
.e-pivotview-export::before {
|
|
139
|
+
content: '\e72e';
|
|
140
|
+
}
|
|
141
|
+
|
|
142
|
+
.e-pivotview-grid::before {
|
|
143
|
+
content: '\e7e9';
|
|
144
|
+
}
|
|
145
|
+
|
|
146
|
+
.e-pivotview-expand::before {
|
|
147
|
+
content: '\e7c9';
|
|
148
|
+
}
|
|
149
|
+
|
|
150
|
+
.e-pivotview-collapse::before {
|
|
151
|
+
content: '\e80f';
|
|
152
|
+
}
|
|
153
|
+
|
|
154
|
+
.e-pivot-format-menu::before {
|
|
155
|
+
content: '\e76d';
|
|
156
|
+
}
|
|
157
|
+
|
|
158
|
+
.e-pivot-number-format-menu::before {
|
|
159
|
+
content: '\e787';
|
|
160
|
+
}
|
|
161
|
+
|
|
162
|
+
.e-pivot-conditional-format-menu::before {
|
|
163
|
+
content: '\e71b';
|
|
164
|
+
}
|
|
165
|
+
|
|
166
|
+
.e-pivot-format-toolbar::before {
|
|
167
|
+
content: '\e787';
|
|
168
|
+
}
|
|
169
|
+
|
|
170
|
+
.e-pivotview-group::before {
|
|
171
|
+
content: '\e7a5';
|
|
172
|
+
}
|
|
173
|
+
|
|
174
|
+
.e-pivotview-ungroup::before {
|
|
175
|
+
content: '\e779';
|
|
176
|
+
}
|
|
177
|
+
|
|
178
|
+
.e-level-options {
|
|
179
|
+
.e-selected-level-icon::before {
|
|
180
|
+
content: '\e774';
|
|
181
|
+
}
|
|
182
|
+
}
|
|
183
|
+
}
|
|
@@ -0,0 +1,184 @@
|
|
|
1
|
+
@include export-module('pivotview-icons') {
|
|
2
|
+
.e-pivotview {
|
|
3
|
+
.e-expand::before {
|
|
4
|
+
content: '\e219';
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
.e-collapse::before {
|
|
8
|
+
content: '\e84f';
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
&.e-rtl {
|
|
12
|
+
.e-expand::before {
|
|
13
|
+
content: '\e98f';
|
|
14
|
+
}
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
.e-sort::before {
|
|
18
|
+
content: '\ea7c';
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
.e-pv-filter::before {
|
|
22
|
+
content: '\ebb4';
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
.e-pv-filtered::before {
|
|
26
|
+
color: $pivotgrid-active-color;
|
|
27
|
+
content: '\ebac';
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
.e-remove::before {
|
|
31
|
+
content: '\ea7f';
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
.e-selected-option-icon::before {
|
|
35
|
+
content: '\ea84';
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
.e-clear-filter-icon::before {
|
|
39
|
+
content: '\ebae';
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
.e-dropdown-icon::before {
|
|
43
|
+
content: '\e84f';
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
.e-export::before {
|
|
47
|
+
content: '\e710';
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
.e-new-report::before {
|
|
51
|
+
content: '\e712';
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
.e-save-report::before {
|
|
55
|
+
content: '\e70f';
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
.e-saveas-report::before {
|
|
59
|
+
content: '\e700';
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
.e-rename-report::before {
|
|
63
|
+
content: '\e707';
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
.e-remove-report::before {
|
|
67
|
+
content: '\e704';
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
.e-sub-total::before {
|
|
71
|
+
content: '\e709';
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
.e-grand-total::before {
|
|
75
|
+
content: '\e703';
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
.e-toolbar-fieldlist::before {
|
|
79
|
+
content: '\e434';
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
.e-toolbar-grid::before {
|
|
83
|
+
content: '\e702';
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
.e-toolbar-chart::before {
|
|
87
|
+
content: '\e711';
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
.e-toolbar-formatting::before {
|
|
91
|
+
content: '\e729';
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
.e-pivot-button .e-edit::before {
|
|
95
|
+
content: '\e97c';
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
.e-sort-ascend-icon::before {
|
|
99
|
+
content: '\e734';
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
.e-sort-descend-icon::before {
|
|
103
|
+
content: '\e733';
|
|
104
|
+
}
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
.e-pivotview-pdf-export::before {
|
|
108
|
+
content: '\e70d';
|
|
109
|
+
}
|
|
110
|
+
|
|
111
|
+
.e-pivotview-excel-export::before {
|
|
112
|
+
content: '\e70e';
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
.e-pivotview-csv-export::before {
|
|
116
|
+
content: '\e70c';
|
|
117
|
+
}
|
|
118
|
+
|
|
119
|
+
.e-pivotview-png-export::before {
|
|
120
|
+
content: '\e715';
|
|
121
|
+
}
|
|
122
|
+
|
|
123
|
+
.e-pivotview-jpeg-export::before {
|
|
124
|
+
content: '\e713';
|
|
125
|
+
}
|
|
126
|
+
|
|
127
|
+
.e-pivotview-svg-export::before {
|
|
128
|
+
content: '\e720';
|
|
129
|
+
}
|
|
130
|
+
|
|
131
|
+
.e-mdx::before {
|
|
132
|
+
content: '\e724';
|
|
133
|
+
}
|
|
134
|
+
|
|
135
|
+
.e-pivotview-select-icon::before {
|
|
136
|
+
content: '\e614';
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
.e-pivotview-export::before {
|
|
140
|
+
content: '\e710';
|
|
141
|
+
}
|
|
142
|
+
|
|
143
|
+
.e-pivotview-grid::before {
|
|
144
|
+
content: '\e702';
|
|
145
|
+
}
|
|
146
|
+
|
|
147
|
+
.e-pivotview-expand::before {
|
|
148
|
+
content: '\e555';
|
|
149
|
+
}
|
|
150
|
+
|
|
151
|
+
.e-pivotview-collapse::before {
|
|
152
|
+
content: '\e559';
|
|
153
|
+
}
|
|
154
|
+
|
|
155
|
+
.e-pivot-format-menu::before {
|
|
156
|
+
content: '\e730';
|
|
157
|
+
}
|
|
158
|
+
|
|
159
|
+
.e-pivot-number-format-menu::before {
|
|
160
|
+
content: '\e70b';
|
|
161
|
+
}
|
|
162
|
+
|
|
163
|
+
.e-pivot-conditional-format-menu::before {
|
|
164
|
+
content: '\e729';
|
|
165
|
+
}
|
|
166
|
+
|
|
167
|
+
.e-pivot-format-toolbar::before {
|
|
168
|
+
content: '\e70b';
|
|
169
|
+
}
|
|
170
|
+
|
|
171
|
+
.e-pivotview-group::before {
|
|
172
|
+
content: '\e740';
|
|
173
|
+
}
|
|
174
|
+
|
|
175
|
+
.e-pivotview-ungroup::before {
|
|
176
|
+
content: '\e741';
|
|
177
|
+
}
|
|
178
|
+
|
|
179
|
+
.e-level-options {
|
|
180
|
+
.e-selected-level-icon::before {
|
|
181
|
+
content: '\e614';
|
|
182
|
+
}
|
|
183
|
+
}
|
|
184
|
+
}
|
|
@@ -0,0 +1,184 @@
|
|
|
1
|
+
@include export-module('pivotview-icons') {
|
|
2
|
+
.e-pivotview {
|
|
3
|
+
.e-expand::before {
|
|
4
|
+
content: '\e219';
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
.e-collapse::before {
|
|
8
|
+
content: '\e84f';
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
&.e-rtl {
|
|
12
|
+
.e-expand::before {
|
|
13
|
+
content: '\e98f';
|
|
14
|
+
}
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
.e-sort::before {
|
|
18
|
+
content: '\ea7c';
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
.e-pv-filter::before {
|
|
22
|
+
content: '\ebb4';
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
.e-pv-filtered::before {
|
|
26
|
+
color: $pivotgrid-active-color;
|
|
27
|
+
content: '\ebac';
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
.e-remove::before {
|
|
31
|
+
content: '\ea7f';
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
.e-selected-option-icon::before {
|
|
35
|
+
content: '\ea84';
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
.e-clear-filter-icon::before {
|
|
39
|
+
content: '\ebae';
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
.e-dropdown-icon::before {
|
|
43
|
+
content: '\e84f';
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
.e-export::before {
|
|
47
|
+
content: '\e710';
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
.e-new-report::before {
|
|
51
|
+
content: '\e712';
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
.e-save-report::before {
|
|
55
|
+
content: '\e70f';
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
.e-saveas-report::before {
|
|
59
|
+
content: '\e700';
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
.e-rename-report::before {
|
|
63
|
+
content: '\e707';
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
.e-remove-report::before {
|
|
67
|
+
content: '\e704';
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
.e-sub-total::before {
|
|
71
|
+
content: '\e709';
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
.e-grand-total::before {
|
|
75
|
+
content: '\e703';
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
.e-toolbar-fieldlist::before {
|
|
79
|
+
content: '\e434';
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
.e-toolbar-grid::before {
|
|
83
|
+
content: '\e702';
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
.e-toolbar-chart::before {
|
|
87
|
+
content: '\e711';
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
.e-toolbar-formatting::before {
|
|
91
|
+
content: '\e729';
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
.e-pivot-button .e-edit::before {
|
|
95
|
+
content: '\e97c';
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
.e-sort-ascend-icon::before {
|
|
99
|
+
content: '\e734';
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
.e-sort-descend-icon::before {
|
|
103
|
+
content: '\e733';
|
|
104
|
+
}
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
.e-pivotview-pdf-export::before {
|
|
108
|
+
content: '\e70d';
|
|
109
|
+
}
|
|
110
|
+
|
|
111
|
+
.e-pivotview-excel-export::before {
|
|
112
|
+
content: '\e70e';
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
.e-pivotview-csv-export::before {
|
|
116
|
+
content: '\e70c';
|
|
117
|
+
}
|
|
118
|
+
|
|
119
|
+
.e-pivotview-png-export::before {
|
|
120
|
+
content: '\e715';
|
|
121
|
+
}
|
|
122
|
+
|
|
123
|
+
.e-pivotview-jpeg-export::before {
|
|
124
|
+
content: '\e713';
|
|
125
|
+
}
|
|
126
|
+
|
|
127
|
+
.e-pivotview-svg-export::before {
|
|
128
|
+
content: '\e720';
|
|
129
|
+
}
|
|
130
|
+
|
|
131
|
+
.e-mdx::before {
|
|
132
|
+
content: '\e724';
|
|
133
|
+
}
|
|
134
|
+
|
|
135
|
+
.e-pivotview-select-icon::before {
|
|
136
|
+
content: '\e614';
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
.e-pivotview-export::before {
|
|
140
|
+
content: '\e710';
|
|
141
|
+
}
|
|
142
|
+
|
|
143
|
+
.e-pivotview-grid::before {
|
|
144
|
+
content: '\e702';
|
|
145
|
+
}
|
|
146
|
+
|
|
147
|
+
.e-pivotview-expand::before {
|
|
148
|
+
content: '\e555';
|
|
149
|
+
}
|
|
150
|
+
|
|
151
|
+
.e-pivotview-collapse::before {
|
|
152
|
+
content: '\e559';
|
|
153
|
+
}
|
|
154
|
+
|
|
155
|
+
.e-pivot-format-menu::before {
|
|
156
|
+
content: '\e730';
|
|
157
|
+
}
|
|
158
|
+
|
|
159
|
+
.e-pivot-number-format-menu::before {
|
|
160
|
+
content: '\e70b';
|
|
161
|
+
}
|
|
162
|
+
|
|
163
|
+
.e-pivot-conditional-format-menu::before {
|
|
164
|
+
content: '\e729';
|
|
165
|
+
}
|
|
166
|
+
|
|
167
|
+
.e-pivot-format-toolbar::before {
|
|
168
|
+
content: '\e70b';
|
|
169
|
+
}
|
|
170
|
+
|
|
171
|
+
.e-pivotview-group::before {
|
|
172
|
+
content: '\e740';
|
|
173
|
+
}
|
|
174
|
+
|
|
175
|
+
.e-pivotview-ungroup::before {
|
|
176
|
+
content: '\e741';
|
|
177
|
+
}
|
|
178
|
+
|
|
179
|
+
.e-level-options {
|
|
180
|
+
.e-selected-level-icon::before {
|
|
181
|
+
content: '\e614';
|
|
182
|
+
}
|
|
183
|
+
}
|
|
184
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
@import './fluent.scss';
|
|
@@ -0,0 +1,183 @@
|
|
|
1
|
+
@include export-module('pivotview-icons') {
|
|
2
|
+
.e-pivotview {
|
|
3
|
+
.e-expand::before {
|
|
4
|
+
content: '\e75c';
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
.e-collapse::before {
|
|
8
|
+
content: '\e734';
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
&.e-rtl {
|
|
12
|
+
.e-expand::before {
|
|
13
|
+
content: '\e738';
|
|
14
|
+
}
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
.e-sort::before {
|
|
18
|
+
content: '\e7df';
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
.e-pv-filter::before {
|
|
22
|
+
content: '\e7f7';
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
.e-pv-filtered::before {
|
|
26
|
+
content: '\e735';
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
.e-remove::before {
|
|
30
|
+
content: '\e7e7';
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
.e-selected-option-icon::before {
|
|
34
|
+
content: '\e72b';
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
.e-clear-filter-icon::before {
|
|
38
|
+
content: '\e72c';
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
.e-dropdown-icon::before {
|
|
42
|
+
content: '\e729';
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
.e-export::before {
|
|
46
|
+
content: '\e72e';
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
.e-new-report::before {
|
|
50
|
+
content: '\e7dc';
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
.e-save-report::before {
|
|
54
|
+
content: '\e7c8';
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
.e-saveas-report::before {
|
|
58
|
+
content: '\e7ae';
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
.e-rename-report::before {
|
|
62
|
+
content: '\e76d';
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
.e-remove-report::before {
|
|
66
|
+
content: '\e820';
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
.e-sub-total::before {
|
|
70
|
+
content: '\e702';
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
.e-grand-total::before {
|
|
74
|
+
content: '\e74d';
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
.e-toolbar-fieldlist::before {
|
|
78
|
+
content: '\e751';
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
.e-toolbar-grid::before {
|
|
82
|
+
content: '\e7e9';
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
.e-toolbar-chart::before {
|
|
86
|
+
content: '\e826';
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
.e-toolbar-formatting::before {
|
|
90
|
+
content: '\e71b';
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
.e-pivot-button .e-edit::before {
|
|
94
|
+
content: '\e730';
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
.e-sort-ascend-icon::before {
|
|
98
|
+
content: '\e7a3';
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
.e-sort-descend-icon::before {
|
|
102
|
+
content: '\e7b6';
|
|
103
|
+
}
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
.e-pivotview-pdf-export::before {
|
|
107
|
+
content: '\e700';
|
|
108
|
+
}
|
|
109
|
+
|
|
110
|
+
.e-pivotview-excel-export::before {
|
|
111
|
+
content: '\e7c1';
|
|
112
|
+
}
|
|
113
|
+
|
|
114
|
+
.e-pivotview-csv-export::before {
|
|
115
|
+
content: '\e7ba';
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
.e-pivotview-png-export::before {
|
|
119
|
+
content: '\e7ee';
|
|
120
|
+
}
|
|
121
|
+
|
|
122
|
+
.e-pivotview-jpeg-export::before {
|
|
123
|
+
content: '\e786';
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
.e-pivotview-svg-export::before {
|
|
127
|
+
content: '\e7cf';
|
|
128
|
+
}
|
|
129
|
+
|
|
130
|
+
.e-mdx::before {
|
|
131
|
+
content: '\e7ac';
|
|
132
|
+
}
|
|
133
|
+
|
|
134
|
+
.e-pivotview-select-icon::before {
|
|
135
|
+
content: '\e774';
|
|
136
|
+
}
|
|
137
|
+
|
|
138
|
+
.e-pivotview-export::before {
|
|
139
|
+
content: '\e72e';
|
|
140
|
+
}
|
|
141
|
+
|
|
142
|
+
.e-pivotview-grid::before {
|
|
143
|
+
content: '\e7e9';
|
|
144
|
+
}
|
|
145
|
+
|
|
146
|
+
.e-pivotview-expand::before {
|
|
147
|
+
content: '\e7c9';
|
|
148
|
+
}
|
|
149
|
+
|
|
150
|
+
.e-pivotview-collapse::before {
|
|
151
|
+
content: '\e80f';
|
|
152
|
+
}
|
|
153
|
+
|
|
154
|
+
.e-pivot-format-menu::before {
|
|
155
|
+
content: '\e76d';
|
|
156
|
+
}
|
|
157
|
+
|
|
158
|
+
.e-pivot-number-format-menu::before {
|
|
159
|
+
content: '\e787';
|
|
160
|
+
}
|
|
161
|
+
|
|
162
|
+
.e-pivot-conditional-format-menu::before {
|
|
163
|
+
content: '\e71b';
|
|
164
|
+
}
|
|
165
|
+
|
|
166
|
+
.e-pivot-format-toolbar::before {
|
|
167
|
+
content: '\e787';
|
|
168
|
+
}
|
|
169
|
+
|
|
170
|
+
.e-pivotview-group::before {
|
|
171
|
+
content: '\e7a5';
|
|
172
|
+
}
|
|
173
|
+
|
|
174
|
+
.e-pivotview-ungroup::before {
|
|
175
|
+
content: '\e779';
|
|
176
|
+
}
|
|
177
|
+
|
|
178
|
+
.e-level-options {
|
|
179
|
+
.e-selected-level-icon::before {
|
|
180
|
+
content: '\e774';
|
|
181
|
+
}
|
|
182
|
+
}
|
|
183
|
+
}
|