@syncfusion/ej2-angular-pivotview 21.1.37-ngcc → 21.1.37
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/bootstrap-dark.css +1 -1
- package/styles/bootstrap.css +1 -1
- package/styles/bootstrap4.css +1 -1
- package/styles/bootstrap5-dark.css +1 -1
- package/styles/bootstrap5.css +1 -1
- package/styles/fabric-dark.css +1 -1
- package/styles/fabric.css +1 -1
- package/styles/fluent-dark.css +1 -1
- package/styles/fluent.css +1 -1
- package/styles/highcontrast-light.css +1 -1
- package/styles/highcontrast.css +1 -1
- package/styles/material-dark.css +1 -1
- package/styles/material.css +1 -1
- package/styles/pivotfieldlist/_all.scss +2 -0
- package/styles/pivotfieldlist/_bootstrap-dark-definition.scss +240 -0
- package/styles/pivotfieldlist/_bootstrap-definition.scss +194 -0
- package/styles/pivotfieldlist/_bootstrap4-definition.scss +194 -0
- package/styles/pivotfieldlist/_bootstrap5-dark-definition.scss +1 -0
- package/styles/pivotfieldlist/_bootstrap5-definition.scss +198 -0
- package/styles/pivotfieldlist/_fabric-dark-definition.scss +200 -0
- package/styles/pivotfieldlist/_fabric-definition.scss +194 -0
- package/styles/pivotfieldlist/_fluent-dark-definition.scss +1 -0
- package/styles/pivotfieldlist/_fluent-definition.scss +198 -0
- package/styles/pivotfieldlist/_fusionnew-definition.scss +197 -0
- package/styles/pivotfieldlist/_highcontrast-definition.scss +195 -0
- package/styles/pivotfieldlist/_highcontrast-light-definition.scss +195 -0
- package/styles/pivotfieldlist/_layout.scss +1981 -0
- package/styles/pivotfieldlist/_material-dark-definition.scss +195 -0
- package/styles/pivotfieldlist/_material-definition.scss +195 -0
- package/styles/pivotfieldlist/_tailwind-dark-definition.scss +1 -0
- package/styles/pivotfieldlist/_tailwind-definition.scss +198 -0
- package/styles/pivotfieldlist/_theme.scss +1998 -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.scss +353 -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/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 +164 -0
- package/styles/pivotview/_bootstrap-definition.scss +161 -0
- package/styles/pivotview/_bootstrap4-definition.scss +161 -0
- package/styles/pivotview/_bootstrap5-dark-definition.scss +1 -0
- package/styles/pivotview/_bootstrap5-definition.scss +166 -0
- package/styles/pivotview/_fabric-dark-definition.scss +163 -0
- package/styles/pivotview/_fabric-definition.scss +160 -0
- package/styles/pivotview/_fluent-dark-definition.scss +1 -0
- package/styles/pivotview/_fluent-definition.scss +166 -0
- package/styles/pivotview/_fusionnew-definition.scss +166 -0
- package/styles/pivotview/_highcontrast-definition.scss +159 -0
- package/styles/pivotview/_highcontrast-light-definition.scss +160 -0
- package/styles/pivotview/_layout.scss +1118 -0
- package/styles/pivotview/_material-dark-definition.scss +167 -0
- package/styles/pivotview/_material-definition.scss +163 -0
- package/styles/pivotview/_tailwind-dark-definition.scss +1 -0
- package/styles/pivotview/_tailwind-definition.scss +166 -0
- package/styles/pivotview/_theme.scss +2026 -0
- package/styles/pivotview/bootstrap-dark.css +1 -1
- package/styles/pivotview/bootstrap-dark.scss +5 -1
- package/styles/pivotview/bootstrap.css +1 -1
- package/styles/pivotview/bootstrap.scss +5 -1
- package/styles/pivotview/bootstrap4.css +1 -1
- package/styles/pivotview/bootstrap4.scss +5 -1
- package/styles/pivotview/bootstrap5-dark.css +1 -1
- package/styles/pivotview/bootstrap5-dark.scss +4 -1
- package/styles/pivotview/bootstrap5.css +1 -1
- package/styles/pivotview/bootstrap5.scss +5 -1
- package/styles/pivotview/fabric-dark.css +1 -1
- package/styles/pivotview/fabric-dark.scss +5 -1
- package/styles/pivotview/fabric.css +1 -1
- package/styles/pivotview/fabric.scss +5 -1
- package/styles/pivotview/fluent-dark.css +1 -1
- package/styles/pivotview/fluent-dark.scss +4 -1
- package/styles/pivotview/fluent.css +1 -1
- package/styles/pivotview/fluent.scss +5 -1
- package/styles/pivotview/highcontrast-light.css +1 -1
- package/styles/pivotview/highcontrast-light.scss +5 -1
- package/styles/pivotview/highcontrast.css +1 -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.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.css +1 -1
- package/styles/pivotview/material-dark.scss +5 -1
- package/styles/pivotview/material.css +1 -1
- package/styles/pivotview/material.scss +5 -1
- package/styles/pivotview/tailwind-dark.css +1 -1
- package/styles/pivotview/tailwind-dark.scss +4 -1
- package/styles/pivotview/tailwind.css +1 -1
- package/styles/pivotview/tailwind.scss +5 -1
- package/styles/tailwind-dark.css +1 -1
- package/styles/tailwind.css +1 -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 -834
- package/dist/ej2-angular-pivotview.umd.js +0 -706
- 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
|
@@ -1846,7 +1846,7 @@
|
|
|
1846
1846
|
}
|
|
1847
1847
|
.e-pivotview .e-pivot-pager.e-compact-view .e-pivot-pager-maindiv:not(.e-pivot-pager-single-maindiv) .e-pivot-pager-row-maindiv.e-page-size-disable .e-pivotview-text-div,
|
|
1848
1848
|
.e-pivotview .e-pivot-pager.e-compact-view .e-pivot-pager-maindiv:not(.e-pivot-pager-single-maindiv) .e-pivot-pager-column-maindiv.e-page-size-disable .e-pivotview-text-div {
|
|
1849
|
-
width:
|
|
1849
|
+
width: auto;
|
|
1850
1850
|
}
|
|
1851
1851
|
.e-pivotview .e-pivot-pager.e-compact-view.e-rtl .e-pivot-pager-maindiv .e-pivot-pager-row-maindiv .e-pivotview-text-div .e-pivot-row-pager-settings,
|
|
1852
1852
|
.e-pivotview .e-pivot-pager.e-compact-view.e-rtl .e-pivot-pager-maindiv .e-pivot-pager-row-maindiv .e-pivotview-text-div .e-pivot-column-pager-settings,
|
|
@@ -1 +1,5 @@
|
|
|
1
|
-
@import 'ej2-
|
|
1
|
+
@import 'ej2-base/styles/bootstrap-dark-definition.scss';
|
|
2
|
+
@import '../pivotfieldlist/bootstrap-dark-definition.scss';
|
|
3
|
+
@import 'bootstrap-dark-definition.scss';
|
|
4
|
+
@import 'icons/bootstrap-dark.scss';
|
|
5
|
+
@import 'all.scss';
|
|
@@ -1845,7 +1845,7 @@
|
|
|
1845
1845
|
}
|
|
1846
1846
|
.e-pivotview .e-pivot-pager.e-compact-view .e-pivot-pager-maindiv:not(.e-pivot-pager-single-maindiv) .e-pivot-pager-row-maindiv.e-page-size-disable .e-pivotview-text-div,
|
|
1847
1847
|
.e-pivotview .e-pivot-pager.e-compact-view .e-pivot-pager-maindiv:not(.e-pivot-pager-single-maindiv) .e-pivot-pager-column-maindiv.e-page-size-disable .e-pivotview-text-div {
|
|
1848
|
-
width:
|
|
1848
|
+
width: auto;
|
|
1849
1849
|
}
|
|
1850
1850
|
.e-pivotview .e-pivot-pager.e-compact-view.e-rtl .e-pivot-pager-maindiv .e-pivot-pager-row-maindiv .e-pivotview-text-div .e-pivot-row-pager-settings,
|
|
1851
1851
|
.e-pivotview .e-pivot-pager.e-compact-view.e-rtl .e-pivot-pager-maindiv .e-pivot-pager-row-maindiv .e-pivotview-text-div .e-pivot-column-pager-settings,
|
|
@@ -1926,7 +1926,7 @@
|
|
|
1926
1926
|
}
|
|
1927
1927
|
.e-pivotview .e-pivot-pager.e-compact-view .e-pivot-pager-maindiv:not(.e-pivot-pager-single-maindiv) .e-pivot-pager-row-maindiv.e-page-size-disable .e-pivotview-text-div,
|
|
1928
1928
|
.e-pivotview .e-pivot-pager.e-compact-view .e-pivot-pager-maindiv:not(.e-pivot-pager-single-maindiv) .e-pivot-pager-column-maindiv.e-page-size-disable .e-pivotview-text-div {
|
|
1929
|
-
width:
|
|
1929
|
+
width: auto;
|
|
1930
1930
|
}
|
|
1931
1931
|
.e-pivotview .e-pivot-pager.e-compact-view.e-rtl .e-pivot-pager-maindiv .e-pivot-pager-row-maindiv .e-pivotview-text-div .e-pivot-row-pager-settings,
|
|
1932
1932
|
.e-pivotview .e-pivot-pager.e-compact-view.e-rtl .e-pivot-pager-maindiv .e-pivot-pager-row-maindiv .e-pivotview-text-div .e-pivot-column-pager-settings,
|
|
@@ -1893,7 +1893,7 @@
|
|
|
1893
1893
|
}
|
|
1894
1894
|
.e-pivotview .e-pivot-pager.e-compact-view .e-pivot-pager-maindiv:not(.e-pivot-pager-single-maindiv) .e-pivot-pager-row-maindiv.e-page-size-disable .e-pivotview-text-div,
|
|
1895
1895
|
.e-pivotview .e-pivot-pager.e-compact-view .e-pivot-pager-maindiv:not(.e-pivot-pager-single-maindiv) .e-pivot-pager-column-maindiv.e-page-size-disable .e-pivotview-text-div {
|
|
1896
|
-
width:
|
|
1896
|
+
width: auto;
|
|
1897
1897
|
}
|
|
1898
1898
|
.e-pivotview .e-pivot-pager.e-compact-view.e-rtl .e-pivot-pager-maindiv .e-pivot-pager-row-maindiv .e-pivotview-text-div .e-pivot-row-pager-settings,
|
|
1899
1899
|
.e-pivotview .e-pivot-pager.e-compact-view.e-rtl .e-pivot-pager-maindiv .e-pivot-pager-row-maindiv .e-pivotview-text-div .e-pivot-column-pager-settings,
|
|
@@ -1895,7 +1895,7 @@
|
|
|
1895
1895
|
}
|
|
1896
1896
|
.e-pivotview .e-pivot-pager.e-compact-view .e-pivot-pager-maindiv:not(.e-pivot-pager-single-maindiv) .e-pivot-pager-row-maindiv.e-page-size-disable .e-pivotview-text-div,
|
|
1897
1897
|
.e-pivotview .e-pivot-pager.e-compact-view .e-pivot-pager-maindiv:not(.e-pivot-pager-single-maindiv) .e-pivot-pager-column-maindiv.e-page-size-disable .e-pivotview-text-div {
|
|
1898
|
-
width:
|
|
1898
|
+
width: auto;
|
|
1899
1899
|
}
|
|
1900
1900
|
.e-pivotview .e-pivot-pager.e-compact-view.e-rtl .e-pivot-pager-maindiv .e-pivot-pager-row-maindiv .e-pivotview-text-div .e-pivot-row-pager-settings,
|
|
1901
1901
|
.e-pivotview .e-pivot-pager.e-compact-view.e-rtl .e-pivot-pager-maindiv .e-pivot-pager-row-maindiv .e-pivotview-text-div .e-pivot-column-pager-settings,
|
|
@@ -1853,7 +1853,7 @@
|
|
|
1853
1853
|
}
|
|
1854
1854
|
.e-pivotview .e-pivot-pager.e-compact-view .e-pivot-pager-maindiv:not(.e-pivot-pager-single-maindiv) .e-pivot-pager-row-maindiv.e-page-size-disable .e-pivotview-text-div,
|
|
1855
1855
|
.e-pivotview .e-pivot-pager.e-compact-view .e-pivot-pager-maindiv:not(.e-pivot-pager-single-maindiv) .e-pivot-pager-column-maindiv.e-page-size-disable .e-pivotview-text-div {
|
|
1856
|
-
width:
|
|
1856
|
+
width: auto;
|
|
1857
1857
|
}
|
|
1858
1858
|
.e-pivotview .e-pivot-pager.e-compact-view.e-rtl .e-pivot-pager-maindiv .e-pivot-pager-row-maindiv .e-pivotview-text-div .e-pivot-row-pager-settings,
|
|
1859
1859
|
.e-pivotview .e-pivot-pager.e-compact-view.e-rtl .e-pivot-pager-maindiv .e-pivot-pager-row-maindiv .e-pivotview-text-div .e-pivot-column-pager-settings,
|
|
@@ -1 +1,5 @@
|
|
|
1
|
-
@import 'ej2-
|
|
1
|
+
@import 'ej2-base/styles/fabric-dark-definition.scss';
|
|
2
|
+
@import '../pivotfieldlist/fabric-dark-definition.scss';
|
|
3
|
+
@import 'fabric-dark-definition.scss';
|
|
4
|
+
@import 'icons/fabric-dark.scss';
|
|
5
|
+
@import 'all.scss';
|
|
@@ -1856,7 +1856,7 @@
|
|
|
1856
1856
|
}
|
|
1857
1857
|
.e-pivotview .e-pivot-pager.e-compact-view .e-pivot-pager-maindiv:not(.e-pivot-pager-single-maindiv) .e-pivot-pager-row-maindiv.e-page-size-disable .e-pivotview-text-div,
|
|
1858
1858
|
.e-pivotview .e-pivot-pager.e-compact-view .e-pivot-pager-maindiv:not(.e-pivot-pager-single-maindiv) .e-pivot-pager-column-maindiv.e-page-size-disable .e-pivotview-text-div {
|
|
1859
|
-
width:
|
|
1859
|
+
width: auto;
|
|
1860
1860
|
}
|
|
1861
1861
|
.e-pivotview .e-pivot-pager.e-compact-view.e-rtl .e-pivot-pager-maindiv .e-pivot-pager-row-maindiv .e-pivotview-text-div .e-pivot-row-pager-settings,
|
|
1862
1862
|
.e-pivotview .e-pivot-pager.e-compact-view.e-rtl .e-pivot-pager-maindiv .e-pivot-pager-row-maindiv .e-pivotview-text-div .e-pivot-column-pager-settings,
|
|
@@ -1883,7 +1883,7 @@
|
|
|
1883
1883
|
}
|
|
1884
1884
|
.e-pivotview .e-pivot-pager.e-compact-view .e-pivot-pager-maindiv:not(.e-pivot-pager-single-maindiv) .e-pivot-pager-row-maindiv.e-page-size-disable .e-pivotview-text-div,
|
|
1885
1885
|
.e-pivotview .e-pivot-pager.e-compact-view .e-pivot-pager-maindiv:not(.e-pivot-pager-single-maindiv) .e-pivot-pager-column-maindiv.e-page-size-disable .e-pivotview-text-div {
|
|
1886
|
-
width:
|
|
1886
|
+
width: auto;
|
|
1887
1887
|
}
|
|
1888
1888
|
.e-pivotview .e-pivot-pager.e-compact-view.e-rtl .e-pivot-pager-maindiv .e-pivot-pager-row-maindiv .e-pivotview-text-div .e-pivot-row-pager-settings,
|
|
1889
1889
|
.e-pivotview .e-pivot-pager.e-compact-view.e-rtl .e-pivot-pager-maindiv .e-pivot-pager-row-maindiv .e-pivotview-text-div .e-pivot-column-pager-settings,
|
|
@@ -1885,7 +1885,7 @@
|
|
|
1885
1885
|
}
|
|
1886
1886
|
.e-pivotview .e-pivot-pager.e-compact-view .e-pivot-pager-maindiv:not(.e-pivot-pager-single-maindiv) .e-pivot-pager-row-maindiv.e-page-size-disable .e-pivotview-text-div,
|
|
1887
1887
|
.e-pivotview .e-pivot-pager.e-compact-view .e-pivot-pager-maindiv:not(.e-pivot-pager-single-maindiv) .e-pivot-pager-column-maindiv.e-page-size-disable .e-pivotview-text-div {
|
|
1888
|
-
width:
|
|
1888
|
+
width: auto;
|
|
1889
1889
|
}
|
|
1890
1890
|
.e-pivotview .e-pivot-pager.e-compact-view.e-rtl .e-pivot-pager-maindiv .e-pivot-pager-row-maindiv .e-pivotview-text-div .e-pivot-row-pager-settings,
|
|
1891
1891
|
.e-pivotview .e-pivot-pager.e-compact-view.e-rtl .e-pivot-pager-maindiv .e-pivot-pager-row-maindiv .e-pivotview-text-div .e-pivot-column-pager-settings,
|
|
@@ -1850,7 +1850,7 @@
|
|
|
1850
1850
|
}
|
|
1851
1851
|
.e-pivotview .e-pivot-pager.e-compact-view .e-pivot-pager-maindiv:not(.e-pivot-pager-single-maindiv) .e-pivot-pager-row-maindiv.e-page-size-disable .e-pivotview-text-div,
|
|
1852
1852
|
.e-pivotview .e-pivot-pager.e-compact-view .e-pivot-pager-maindiv:not(.e-pivot-pager-single-maindiv) .e-pivot-pager-column-maindiv.e-page-size-disable .e-pivotview-text-div {
|
|
1853
|
-
width:
|
|
1853
|
+
width: auto;
|
|
1854
1854
|
}
|
|
1855
1855
|
.e-pivotview .e-pivot-pager.e-compact-view.e-rtl .e-pivot-pager-maindiv .e-pivot-pager-row-maindiv .e-pivotview-text-div .e-pivot-row-pager-settings,
|
|
1856
1856
|
.e-pivotview .e-pivot-pager.e-compact-view.e-rtl .e-pivot-pager-maindiv .e-pivot-pager-row-maindiv .e-pivotview-text-div .e-pivot-column-pager-settings,
|
|
@@ -1 +1,5 @@
|
|
|
1
|
-
@import 'ej2-
|
|
1
|
+
@import 'ej2-base/styles/highcontrast-light-definition.scss';
|
|
2
|
+
@import '../pivotfieldlist/highcontrast-light-definition.scss';
|
|
3
|
+
@import 'highcontrast-light-definition.scss';
|
|
4
|
+
@import 'icons/highcontrast-light.scss';
|
|
5
|
+
@import 'all.scss';
|
|
@@ -1850,7 +1850,7 @@
|
|
|
1850
1850
|
}
|
|
1851
1851
|
.e-pivotview .e-pivot-pager.e-compact-view .e-pivot-pager-maindiv:not(.e-pivot-pager-single-maindiv) .e-pivot-pager-row-maindiv.e-page-size-disable .e-pivotview-text-div,
|
|
1852
1852
|
.e-pivotview .e-pivot-pager.e-compact-view .e-pivot-pager-maindiv:not(.e-pivot-pager-single-maindiv) .e-pivot-pager-column-maindiv.e-page-size-disable .e-pivotview-text-div {
|
|
1853
|
-
width:
|
|
1853
|
+
width: auto;
|
|
1854
1854
|
}
|
|
1855
1855
|
.e-pivotview .e-pivot-pager.e-compact-view.e-rtl .e-pivot-pager-maindiv .e-pivot-pager-row-maindiv .e-pivotview-text-div .e-pivot-row-pager-settings,
|
|
1856
1856
|
.e-pivotview .e-pivot-pager.e-compact-view.e-rtl .e-pivot-pager-maindiv .e-pivot-pager-row-maindiv .e-pivotview-text-div .e-pivot-column-pager-settings,
|
|
@@ -1 +1,5 @@
|
|
|
1
|
-
@import 'ej2-
|
|
1
|
+
@import 'ej2-base/styles/highcontrast-definition.scss';
|
|
2
|
+
@import '../pivotfieldlist/highcontrast-definition.scss';
|
|
3
|
+
@import 'highcontrast-definition.scss';
|
|
4
|
+
@import 'icons/highcontrast.scss';
|
|
5
|
+
@import 'all.scss';
|
|
@@ -0,0 +1,184 @@
|
|
|
1
|
+
@include export-module('pivotview-bootstrap-icons') {
|
|
2
|
+
.e-pivotview {
|
|
3
|
+
.e-expand::before {
|
|
4
|
+
content: '\e207';
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
.e-collapse::before {
|
|
8
|
+
content: '\e95d';
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
&.e-rtl {
|
|
12
|
+
.e-expand::before {
|
|
13
|
+
content: '\e990';
|
|
14
|
+
}
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
.e-sort::before {
|
|
18
|
+
content: '\ea79';
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
.e-pv-filter::before {
|
|
22
|
+
content: '\ebb0';
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
.e-pv-filtered::before {
|
|
26
|
+
color: $pivotgrid-active-color;
|
|
27
|
+
content: '\ebb2';
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
.e-remove::before {
|
|
31
|
+
content: '\ea7b';
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
.e-selected-option-icon::before {
|
|
35
|
+
content: '\ea84';
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
.e-clear-filter-icon::before {
|
|
39
|
+
content: '\ebab';
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
.e-dropdown-icon::before {
|
|
43
|
+
content: '\e95d';
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
.e-export::before {
|
|
47
|
+
content: '\e702';
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
.e-new-report::before {
|
|
51
|
+
content: '\e709';
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
.e-save-report::before {
|
|
55
|
+
content: '\e701';
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
.e-saveas-report::before {
|
|
59
|
+
content: '\e703';
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
.e-rename-report::before {
|
|
63
|
+
content: '\e704';
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
.e-remove-report::before {
|
|
67
|
+
content: '\e70c';
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
.e-sub-total::before {
|
|
71
|
+
content: '\e710';
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
.e-grand-total::before {
|
|
75
|
+
content: '\e708';
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
.e-toolbar-fieldlist::before {
|
|
79
|
+
content: '\e434';
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
.e-toolbar-grid::before {
|
|
83
|
+
content: '\e70f';
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
.e-toolbar-chart::before {
|
|
87
|
+
content: '\e70d';
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
.e-toolbar-formatting::before {
|
|
91
|
+
content: '\e725';
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
.e-pivot-button .e-edit::before {
|
|
95
|
+
content: '\e338';
|
|
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: '\e707';
|
|
109
|
+
}
|
|
110
|
+
|
|
111
|
+
.e-pivotview-excel-export::before {
|
|
112
|
+
content: '\e70b';
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
.e-pivotview-csv-export::before {
|
|
116
|
+
content: '\e712';
|
|
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: '\e716';
|
|
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-grid::before {
|
|
140
|
+
content: '\e70f';
|
|
141
|
+
}
|
|
142
|
+
|
|
143
|
+
.e-pivotview-export::before {
|
|
144
|
+
content: '\e702';
|
|
145
|
+
}
|
|
146
|
+
|
|
147
|
+
.e-pivotview-expand::before {
|
|
148
|
+
content: '\e558';
|
|
149
|
+
}
|
|
150
|
+
|
|
151
|
+
.e-pivotview-collapse::before {
|
|
152
|
+
content: '\e557';
|
|
153
|
+
}
|
|
154
|
+
|
|
155
|
+
.e-pivot-format-menu::before {
|
|
156
|
+
content: '\e728';
|
|
157
|
+
}
|
|
158
|
+
|
|
159
|
+
.e-pivot-number-format-menu::before {
|
|
160
|
+
content: '\e711';
|
|
161
|
+
}
|
|
162
|
+
|
|
163
|
+
.e-pivot-conditional-format-menu::before {
|
|
164
|
+
content: '\e725';
|
|
165
|
+
}
|
|
166
|
+
|
|
167
|
+
.e-pivot-format-toolbar::before {
|
|
168
|
+
content: '\e711';
|
|
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-bootstrap-icons') {
|
|
2
|
+
.e-pivotview {
|
|
3
|
+
.e-expand::before {
|
|
4
|
+
content: '\e207';
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
.e-collapse::before {
|
|
8
|
+
content: '\e95d';
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
&.e-rtl {
|
|
12
|
+
.e-expand::before {
|
|
13
|
+
content: '\e990';
|
|
14
|
+
}
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
.e-sort::before {
|
|
18
|
+
content: '\ea79';
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
.e-pv-filter::before {
|
|
22
|
+
content: '\ebb0';
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
.e-pv-filtered::before {
|
|
26
|
+
color: $pivotgrid-active-color;
|
|
27
|
+
content: '\ebb2';
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
.e-remove::before {
|
|
31
|
+
content: '\ea7b';
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
.e-selected-option-icon::before {
|
|
35
|
+
content: '\ea84';
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
.e-clear-filter-icon::before {
|
|
39
|
+
content: '\ebab';
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
.e-dropdown-icon::before {
|
|
43
|
+
content: '\e95d';
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
.e-export::before {
|
|
47
|
+
content: '\e702';
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
.e-new-report::before {
|
|
51
|
+
content: '\e709';
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
.e-save-report::before {
|
|
55
|
+
content: '\e701';
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
.e-saveas-report::before {
|
|
59
|
+
content: '\e703';
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
.e-rename-report::before {
|
|
63
|
+
content: '\e704';
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
.e-remove-report::before {
|
|
67
|
+
content: '\e70c';
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
.e-sub-total::before {
|
|
71
|
+
content: '\e710';
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
.e-grand-total::before {
|
|
75
|
+
content: '\e708';
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
.e-toolbar-fieldlist::before {
|
|
79
|
+
content: '\e434';
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
.e-toolbar-grid::before {
|
|
83
|
+
content: '\e70f';
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
.e-toolbar-chart::before {
|
|
87
|
+
content: '\e70d';
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
.e-toolbar-formatting::before {
|
|
91
|
+
content: '\e725';
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
.e-pivot-button .e-edit::before {
|
|
95
|
+
content: '\e338';
|
|
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: '\e707';
|
|
109
|
+
}
|
|
110
|
+
|
|
111
|
+
.e-pivotview-excel-export::before {
|
|
112
|
+
content: '\e70b';
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
.e-pivotview-csv-export::before {
|
|
116
|
+
content: '\e712';
|
|
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: '\e716';
|
|
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-grid::before {
|
|
140
|
+
content: '\e70f';
|
|
141
|
+
}
|
|
142
|
+
|
|
143
|
+
.e-pivotview-export::before {
|
|
144
|
+
content: '\e702';
|
|
145
|
+
}
|
|
146
|
+
|
|
147
|
+
.e-pivotview-expand::before {
|
|
148
|
+
content: '\e558';
|
|
149
|
+
}
|
|
150
|
+
|
|
151
|
+
.e-pivotview-collapse::before {
|
|
152
|
+
content: '\e557';
|
|
153
|
+
}
|
|
154
|
+
|
|
155
|
+
.e-pivot-format-menu::before {
|
|
156
|
+
content: '\e728';
|
|
157
|
+
}
|
|
158
|
+
|
|
159
|
+
.e-pivot-number-format-menu::before {
|
|
160
|
+
content: '\e711';
|
|
161
|
+
}
|
|
162
|
+
|
|
163
|
+
.e-pivot-conditional-format-menu::before {
|
|
164
|
+
content: '\e725';
|
|
165
|
+
}
|
|
166
|
+
|
|
167
|
+
.e-pivot-format-toolbar::before {
|
|
168
|
+
content: '\e711';
|
|
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
|
+
}
|