@etsoo/react 1.6.68 → 1.6.70

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.
@@ -35,7 +35,7 @@ export const GridDeletedCellBoxStyle = (data) => {
35
35
  : 'entityStatus' in data
36
36
  ? data.entityStatus
37
37
  : EntityStatus.Normal;
38
- if (status >= EntityStatus.Inactivated)
38
+ if (status === EntityStatus.Inactivated || status === EntityStatus.Deleted)
39
39
  return { textDecoration: 'line-through' };
40
40
  return {};
41
41
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@etsoo/react",
3
- "version": "1.6.68",
3
+ "version": "1.6.70",
4
4
  "description": "TypeScript ReactJs UI Independent Framework",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",
@@ -50,11 +50,11 @@
50
50
  "@emotion/css": "^11.10.6",
51
51
  "@emotion/react": "^11.10.6",
52
52
  "@emotion/styled": "^11.10.6",
53
- "@etsoo/appscript": "^1.3.94",
53
+ "@etsoo/appscript": "^1.3.95",
54
54
  "@etsoo/notificationbase": "^1.1.24",
55
55
  "@etsoo/shared": "^1.2.1",
56
- "@types/react": "^18.0.37",
57
- "@types/react-dom": "^18.0.11",
56
+ "@types/react": "^18.2.0",
57
+ "@types/react-dom": "^18.2.1",
58
58
  "@types/react-window": "^1.8.5",
59
59
  "react": "^18.2.0",
60
60
  "react-dom": "^18.2.0",
@@ -51,7 +51,7 @@ export const GridDeletedCellBoxStyle = (
51
51
  ? data.entityStatus
52
52
  : EntityStatus.Normal;
53
53
 
54
- if (status >= EntityStatus.Inactivated)
54
+ if (status === EntityStatus.Inactivated || status === EntityStatus.Deleted)
55
55
  return { textDecoration: 'line-through' };
56
56
 
57
57
  return {};