flexmonster 2.9.100 → 2.9.101
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/flexmonster.css +136 -5
- package/flexmonster.full.js +2352 -2391
- package/flexmonster.js +2350 -2389
- package/flexmonster.min.css +2 -2
- package/lib/flexmonster.amcharts.js +1 -1
- package/lib/flexmonster.fusioncharts.js +1 -1
- package/lib/flexmonster.googlecharts.js +1 -1
- package/lib/flexmonster.highcharts.js +1 -1
- package/package.json +1 -1
- package/theme/accessible/flexmonster.css +194 -63
- package/theme/accessible/flexmonster.less +16 -15
- package/theme/accessible/flexmonster.min.css +2 -2
- package/theme/blackorange/flexmonster.css +136 -5
- package/theme/blackorange/flexmonster.less +1 -1
- package/theme/blackorange/flexmonster.min.css +2 -2
- package/theme/brightorange/flexmonster.css +136 -5
- package/theme/brightorange/flexmonster.less +1 -1
- package/theme/brightorange/flexmonster.min.css +2 -2
- package/theme/dark/flexmonster.css +136 -5
- package/theme/dark/flexmonster.less +1 -1
- package/theme/dark/flexmonster.min.css +2 -2
- package/theme/default/flexmonster.less +1 -1
- package/theme/flexmonster-base.less +102 -6
- package/theme/green/flexmonster.css +136 -5
- package/theme/green/flexmonster.less +1 -1
- package/theme/green/flexmonster.min.css +2 -2
- package/theme/lightblue/flexmonster.css +136 -5
- package/theme/lightblue/flexmonster.less +1 -1
- package/theme/lightblue/flexmonster.min.css +2 -2
- package/theme/macos/flexmonster.css +136 -5
- package/theme/macos/flexmonster.less +1 -1
- package/theme/macos/flexmonster.min.css +2 -2
- package/theme/midnight/flexmonster.css +136 -5
- package/theme/midnight/flexmonster.less +1 -1
- package/theme/midnight/flexmonster.min.css +2 -2
- package/theme/old/flexmonster.css +136 -5
- package/theme/old/flexmonster.less +1 -1
- package/theme/old/flexmonster.min.css +2 -2
- package/theme/orange/flexmonster.css +136 -5
- package/theme/orange/flexmonster.less +1 -1
- package/theme/orange/flexmonster.min.css +2 -2
- package/theme/purple/flexmonster.css +136 -5
- package/theme/purple/flexmonster.less +1 -1
- package/theme/purple/flexmonster.min.css +2 -2
- package/theme/softdefault/flexmonster.css +136 -5
- package/theme/softdefault/flexmonster.less +1 -1
- package/theme/softdefault/flexmonster.min.css +2 -2
- package/theme/stripedblue/flexmonster.css +136 -5
- package/theme/stripedblue/flexmonster.less +1 -1
- package/theme/stripedblue/flexmonster.min.css +2 -2
- package/theme/stripedteal/flexmonster.css +136 -5
- package/theme/stripedteal/flexmonster.less +1 -1
- package/theme/stripedteal/flexmonster.min.css +2 -2
- package/theme/teal/flexmonster.css +136 -5
- package/theme/teal/flexmonster.less +1 -1
- package/theme/teal/flexmonster.min.css +2 -2
- package/theme/yellow/flexmonster.css +136 -5
- package/theme/yellow/flexmonster.less +1 -1
- package/theme/yellow/flexmonster.min.css +2 -2
- package/toolbar/flexmonster.toolbar.js +1 -1
- package/types/flexmonster.d.ts +1 -1
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Flexmonster Pivot Table & Charts [https://www.flexmonster.com/]
|
|
3
|
-
*
|
|
3
|
+
* April 2025 (v. 2.9.101)
|
|
4
4
|
* Copyright (c) 2025 Flexmonster. All rights reserved.
|
|
5
5
|
*
|
|
6
6
|
* Flexmonster Pivot Table & Charts is a part of Flexmonster Software that is distributed under the terms and conditions of Flexmonster Software License Agreement:
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
* https://www.flexmonster.com/pivot-table-editions-and-pricing/
|
|
15
15
|
*/
|
|
16
16
|
:root {
|
|
17
|
-
--fm-version: "2.9.
|
|
17
|
+
--fm-version: "2.9.101";
|
|
18
18
|
}
|
|
19
19
|
/* ===== RESET STYLES ===== */
|
|
20
20
|
#fm-pivot-view,
|
|
@@ -1795,7 +1795,7 @@
|
|
|
1795
1795
|
color: #F44336;
|
|
1796
1796
|
right: 0;
|
|
1797
1797
|
}
|
|
1798
|
-
#fm-pivot-view .fm-helper.fm-drag-remove .fm-drag-icon
|
|
1798
|
+
#fm-pivot-view .fm-helper.fm-drag-remove .fm-drag-icon::after {
|
|
1799
1799
|
display: block;
|
|
1800
1800
|
position: absolute;
|
|
1801
1801
|
font-family: 'flexmonster-icons' !important;
|
|
@@ -1818,6 +1818,89 @@
|
|
|
1818
1818
|
top: -4px;
|
|
1819
1819
|
font-size: 21px;
|
|
1820
1820
|
}
|
|
1821
|
+
@media (max-width: 1370px) and (pointer: coarse) {
|
|
1822
|
+
#fm-pivot-view .fm-helper {
|
|
1823
|
+
-webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
|
|
1824
|
+
box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
|
|
1825
|
+
display: inline-block;
|
|
1826
|
+
background: #f7f7f7;
|
|
1827
|
+
opacity: 0.9;
|
|
1828
|
+
padding: 10px 9px;
|
|
1829
|
+
font-family: Tahoma, Arial, sans-serif;
|
|
1830
|
+
font-size: 14px;
|
|
1831
|
+
font-weight: bold;
|
|
1832
|
+
border: 1px solid #ccc;
|
|
1833
|
+
pointer-events: none;
|
|
1834
|
+
white-space: nowrap;
|
|
1835
|
+
text-overflow: ellipsis;
|
|
1836
|
+
overflow: hidden;
|
|
1837
|
+
max-width: 250px;
|
|
1838
|
+
color: #111;
|
|
1839
|
+
}
|
|
1840
|
+
#fm-pivot-view .fm-helper .fm-label {
|
|
1841
|
+
width: calc(100% - 20px);
|
|
1842
|
+
display: inline-block;
|
|
1843
|
+
text-overflow: ellipsis;
|
|
1844
|
+
overflow: hidden;
|
|
1845
|
+
}
|
|
1846
|
+
#fm-pivot-view .fm-helper .fm-drag-icon {
|
|
1847
|
+
float: right;
|
|
1848
|
+
position: relative;
|
|
1849
|
+
}
|
|
1850
|
+
#fm-pivot-view .fm-helper.fm-no-drop .fm-drag-icon:after {
|
|
1851
|
+
display: block;
|
|
1852
|
+
position: absolute;
|
|
1853
|
+
font-family: 'flexmonster-icons' !important;
|
|
1854
|
+
speak-as: none;
|
|
1855
|
+
font-style: normal;
|
|
1856
|
+
font-weight: normal;
|
|
1857
|
+
font-variant: normal;
|
|
1858
|
+
text-transform: none;
|
|
1859
|
+
line-height: 1;
|
|
1860
|
+
width: auto;
|
|
1861
|
+
height: auto;
|
|
1862
|
+
height: initial;
|
|
1863
|
+
background: transparent;
|
|
1864
|
+
/* Better Font Rendering =========== */
|
|
1865
|
+
-webkit-font-smoothing: antialiased;
|
|
1866
|
+
-moz-osx-font-smoothing: grayscale;
|
|
1867
|
+
content: "\ea0e";
|
|
1868
|
+
color: #F44336;
|
|
1869
|
+
right: 0;
|
|
1870
|
+
}
|
|
1871
|
+
#fm-pivot-view .fm-helper.fm-drag-remove {
|
|
1872
|
+
border-color: red;
|
|
1873
|
+
border-width: 2px;
|
|
1874
|
+
display: flex;
|
|
1875
|
+
}
|
|
1876
|
+
#fm-pivot-view .fm-helper.fm-drag-remove .fm-label {
|
|
1877
|
+
display: flex;
|
|
1878
|
+
padding-left: 10px;
|
|
1879
|
+
}
|
|
1880
|
+
#fm-pivot-view .fm-helper.fm-drag-remove .fm-drag-icon::after {
|
|
1881
|
+
display: block;
|
|
1882
|
+
position: absolute;
|
|
1883
|
+
font-family: 'flexmonster-icons' !important;
|
|
1884
|
+
speak-as: none;
|
|
1885
|
+
font-style: normal;
|
|
1886
|
+
font-weight: normal;
|
|
1887
|
+
font-variant: normal;
|
|
1888
|
+
text-transform: none;
|
|
1889
|
+
line-height: 1;
|
|
1890
|
+
width: auto;
|
|
1891
|
+
height: auto;
|
|
1892
|
+
height: initial;
|
|
1893
|
+
background: transparent;
|
|
1894
|
+
/* Better Font Rendering =========== */
|
|
1895
|
+
-webkit-font-smoothing: antialiased;
|
|
1896
|
+
-moz-osx-font-smoothing: grayscale;
|
|
1897
|
+
content: "\e90e";
|
|
1898
|
+
color: #F44336;
|
|
1899
|
+
left: -8px;
|
|
1900
|
+
top: -5px;
|
|
1901
|
+
font-size: 21px;
|
|
1902
|
+
}
|
|
1903
|
+
}
|
|
1821
1904
|
#fm-pivot-view .fm-header-helper {
|
|
1822
1905
|
text-transform: uppercase;
|
|
1823
1906
|
border: none;
|
|
@@ -1827,6 +1910,10 @@
|
|
|
1827
1910
|
border: 1px solid #999;
|
|
1828
1911
|
cursor: move;
|
|
1829
1912
|
}
|
|
1913
|
+
#fm-pivot-view .fm-header-helper.fm-drag-remove {
|
|
1914
|
+
border-color: red;
|
|
1915
|
+
border-width: 2px;
|
|
1916
|
+
}
|
|
1830
1917
|
#fm-pivot-view .fm-header-helper.fm-drag-remove .fm-remove-icon {
|
|
1831
1918
|
display: inline-block;
|
|
1832
1919
|
margin-left: 4px;
|
|
@@ -1852,10 +1939,54 @@
|
|
|
1852
1939
|
-moz-osx-font-smoothing: grayscale;
|
|
1853
1940
|
content: "\e90e";
|
|
1854
1941
|
color: #F44336;
|
|
1855
|
-
top: -
|
|
1856
|
-
left: -
|
|
1942
|
+
top: -16px;
|
|
1943
|
+
left: -7px;
|
|
1857
1944
|
font-size: 21px;
|
|
1858
1945
|
}
|
|
1946
|
+
@media (max-width: 1370px) and (pointer: coarse) {
|
|
1947
|
+
#fm-pivot-view .fm-header-helper {
|
|
1948
|
+
text-transform: uppercase;
|
|
1949
|
+
border: none;
|
|
1950
|
+
background: #f7f7f7;
|
|
1951
|
+
padding: 12px 18px;
|
|
1952
|
+
font-size: 13.2px;
|
|
1953
|
+
border: 1px solid #999;
|
|
1954
|
+
cursor: move;
|
|
1955
|
+
}
|
|
1956
|
+
#fm-pivot-view .fm-header-helper.fm-drag-remove {
|
|
1957
|
+
border-color: red;
|
|
1958
|
+
border-width: 2px;
|
|
1959
|
+
}
|
|
1960
|
+
#fm-pivot-view .fm-header-helper.fm-drag-remove .fm-remove-icon {
|
|
1961
|
+
display: inline-block;
|
|
1962
|
+
margin-left: 4px;
|
|
1963
|
+
width: 10px;
|
|
1964
|
+
position: relative;
|
|
1965
|
+
}
|
|
1966
|
+
#fm-pivot-view .fm-header-helper.fm-drag-remove .fm-remove-icon:after {
|
|
1967
|
+
display: block;
|
|
1968
|
+
position: absolute;
|
|
1969
|
+
font-family: 'flexmonster-icons' !important;
|
|
1970
|
+
speak-as: none;
|
|
1971
|
+
font-style: normal;
|
|
1972
|
+
font-weight: normal;
|
|
1973
|
+
font-variant: normal;
|
|
1974
|
+
text-transform: none;
|
|
1975
|
+
line-height: 1;
|
|
1976
|
+
width: auto;
|
|
1977
|
+
height: auto;
|
|
1978
|
+
height: initial;
|
|
1979
|
+
background: transparent;
|
|
1980
|
+
/* Better Font Rendering =========== */
|
|
1981
|
+
-webkit-font-smoothing: antialiased;
|
|
1982
|
+
-moz-osx-font-smoothing: grayscale;
|
|
1983
|
+
content: "\e90e";
|
|
1984
|
+
color: #F44336;
|
|
1985
|
+
top: -23px;
|
|
1986
|
+
left: -15px;
|
|
1987
|
+
font-size: 31.5px;
|
|
1988
|
+
}
|
|
1989
|
+
}
|
|
1859
1990
|
#fm-pivot-view .fm-drop-indicator {
|
|
1860
1991
|
height: 2px;
|
|
1861
1992
|
background: #555;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Flexmonster Pivot Table & Charts [https://www.flexmonster.com/]
|
|
3
|
-
*
|
|
3
|
+
* April 2025 (v. 2.9.101)
|
|
4
4
|
* Copyright (c) 2025 Flexmonster. All rights reserved.
|
|
5
5
|
*
|
|
6
6
|
* Flexmonster Pivot Table & Charts is a part of Flexmonster Software that is distributed under the terms and conditions of Flexmonster Software License Agreement:
|