@topconsultnpm/sdkui-react 6.19.0-hotfix0 → 6.19.0-hotfix00
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/lib/helper/helpers.js +7 -1
- package/package.json +2 -2
package/lib/helper/helpers.js
CHANGED
|
@@ -659,7 +659,13 @@ export const renderHighlightedText = (text, searchText, isSelected) => {
|
|
|
659
659
|
return text.split(regex).map((part, index) => regex.test(part) ? (_jsx("span", { style: { backgroundColor: isSelected ? '#6c9023' : 'yellow' }, children: part }, index)) : (part));
|
|
660
660
|
};
|
|
661
661
|
export function versionAndBuildtypeInfo(module) {
|
|
662
|
-
|
|
662
|
+
switch (module) {
|
|
663
|
+
case moduleTypes.SDK:
|
|
664
|
+
case moduleTypes.SDKUI:
|
|
665
|
+
return moduleVersion(module).replace("-hotfix", "+hotfix");
|
|
666
|
+
default:
|
|
667
|
+
return moduleVersion(module);
|
|
668
|
+
}
|
|
663
669
|
}
|
|
664
670
|
export const getListMaxItems = (deviceType) => { return deviceType === DeviceType.MOBILE ? 8 : 12; };
|
|
665
671
|
export const svgToString = (icon) => {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@topconsultnpm/sdkui-react",
|
|
3
|
-
"version": "6.19.0-
|
|
3
|
+
"version": "6.19.0-hotfix00",
|
|
4
4
|
"description": "",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"test": "echo \"Error: no test specified\" && exit 1",
|
|
@@ -39,7 +39,7 @@
|
|
|
39
39
|
"lib"
|
|
40
40
|
],
|
|
41
41
|
"dependencies": {
|
|
42
|
-
"@topconsultnpm/sdk-ts": "6.19.0-
|
|
42
|
+
"@topconsultnpm/sdk-ts": "6.19.0-hotfix00",
|
|
43
43
|
"buffer": "^6.0.3",
|
|
44
44
|
"devextreme": "25.1.7",
|
|
45
45
|
"devextreme-react": "25.1.7",
|