devexpress-aspnetcore-spreadsheet 22.2.2-beta → 22.2.3
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.
|
@@ -1850,13 +1850,22 @@ div[class*='material-'] .dxss-insertHyperlinkDialog.dxss-mv
|
|
|
1850
1850
|
}
|
|
1851
1851
|
|
|
1852
1852
|
.dx-ribbon[class*=material] .dx-menu-base.dx-ribbon-item :not(.dx-submenu) .dx-menu-item .dx-menu-item-content .dx-menu-item-text {
|
|
1853
|
-
font-size: 14px;
|
|
1854
1853
|
text-transform: uppercase;
|
|
1855
1854
|
font-weight: 500;
|
|
1856
1855
|
}
|
|
1857
1856
|
.dx-ribbon[class*=material] .dx-dropdowneditor.dx-editor-filled::after {
|
|
1858
1857
|
border-bottom-color: transparent;
|
|
1859
1858
|
}
|
|
1859
|
+
.dx-ribbon[class*=material] .dx-menu-item-content {
|
|
1860
|
+
display: flex;
|
|
1861
|
+
align-items: center;
|
|
1862
|
+
}
|
|
1863
|
+
.dx-ribbon[class*=material][class*=compact] .dx-menu-base .dx-icon {
|
|
1864
|
+
font-size: 16px;
|
|
1865
|
+
}
|
|
1866
|
+
.dx-ribbon[class*=material]:not([class*=compact]) .dx-menu-base .dx-icon {
|
|
1867
|
+
font-size: 18px;
|
|
1868
|
+
}
|
|
1860
1869
|
|
|
1861
1870
|
.dx-ribbon .dx-menu-base.dx-ribbon-item.dx-showTextInMenu :not(.dx-submenu) .dx-menu-item .dx-menu-item-content .dx-menu-item-text, .dx-ribbon .dx-menu-base.dx-ribbon-item.dx-showTextInMenu :not(.dx-submenu) .dx-menu-item .dx-menu-item-content .dx-menu-item-popout:before {
|
|
1862
1871
|
display: none;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* DevExpress AspNetCore Spreadsheet (dx-aspnetcore-spreadsheet.js)
|
|
3
|
-
* Version: 22.2.
|
|
3
|
+
* Version: 22.2.3
|
|
4
4
|
* Copyright (c) 2012 - 2022 Developer Express Inc. ALL RIGHTS RESERVED
|
|
5
5
|
* License: https://www.devexpress.com/Support/EULAs
|
|
6
6
|
*/
|
|
@@ -949,8 +949,9 @@ Str.InsertEx = function(str, subStr, startIndex, endIndex) {
|
|
|
949
949
|
};
|
|
950
950
|
var greekSLFSigmaChar = String.fromCharCode(962);
|
|
951
951
|
var greekSLSigmaChar = String.fromCharCode(963);
|
|
952
|
-
Str.PrepareStringForFilter = function(s){
|
|
953
|
-
|
|
952
|
+
Str.PrepareStringForFilter = function(s, saveCaseSensitive){
|
|
953
|
+
if(!saveCaseSensitive)
|
|
954
|
+
s = s.toLowerCase();
|
|
954
955
|
if(ASPx.Browser.WebKitFamily) {
|
|
955
956
|
return s.replace(new RegExp(greekSLFSigmaChar, "g"), greekSLSigmaChar);
|
|
956
957
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "devexpress-aspnetcore-spreadsheet",
|
|
3
|
-
"version": "22.2.
|
|
3
|
+
"version": "22.2.3",
|
|
4
4
|
"homepage": "https://www.devexpress.com/",
|
|
5
5
|
"bugs": "https://www.devexpress.com/support/",
|
|
6
6
|
"author": "Developer Express Inc.",
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
"localization": "node bin/localization-builder.js localization-source localization"
|
|
12
12
|
},
|
|
13
13
|
"peerDependencies": {
|
|
14
|
-
"devextreme": "22.2.
|
|
14
|
+
"devextreme": "22.2.3"
|
|
15
15
|
},
|
|
16
16
|
"keywords": [
|
|
17
17
|
"spreadsheet",
|