@etsoo/react 1.8.84 → 1.8.85

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.
@@ -30,7 +30,7 @@ export declare const GridDeletedCellBoxStyle: (data: undefined | {
30
30
  /**
31
31
  * Grid cell value type
32
32
  */
33
- export type GridCellValueType = string | number | Date | boolean | undefined;
33
+ export type GridCellValueType = string | number | Date | boolean | undefined | null;
34
34
  /**
35
35
  * Grid cell formatter props
36
36
  */
@@ -30,7 +30,7 @@ export declare const GridDeletedCellBoxStyle: (data: undefined | {
30
30
  /**
31
31
  * Grid cell value type
32
32
  */
33
- export type GridCellValueType = string | number | Date | boolean | undefined;
33
+ export type GridCellValueType = string | number | Date | boolean | undefined | null;
34
34
  /**
35
35
  * Grid cell formatter props
36
36
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@etsoo/react",
3
- "version": "1.8.84",
3
+ "version": "1.8.85",
4
4
  "description": "TypeScript ReactJs UI Independent Framework",
5
5
  "main": "lib/cjs/index.js",
6
6
  "module": "lib/mjs/index.js",
@@ -38,12 +38,12 @@
38
38
  "@emotion/css": "^11.13.5",
39
39
  "@emotion/react": "^11.14.0",
40
40
  "@emotion/styled": "^11.14.1",
41
- "@etsoo/appscript": "^1.6.60",
41
+ "@etsoo/appscript": "^1.6.61",
42
42
  "@etsoo/notificationbase": "^1.1.69",
43
- "@etsoo/shared": "^1.2.82",
44
- "react": "^19.2.4",
45
- "react-dom": "^19.2.4",
46
- "react-router-dom": "^7.14.0",
43
+ "@etsoo/shared": "^1.2.83",
44
+ "react": "^19.2.5",
45
+ "react-dom": "^19.2.5",
46
+ "react-router-dom": "^7.14.1",
47
47
  "react-window": "^2.2.7"
48
48
  },
49
49
  "devDependencies": {
@@ -56,8 +56,8 @@
56
56
  "@types/react": "^19.2.14",
57
57
  "@types/react-dom": "^19.2.3",
58
58
  "@vitejs/plugin-react": "^6.0.1",
59
- "jsdom": "^29.0.1",
59
+ "jsdom": "^29.0.2",
60
60
  "typescript": "^6.0.2",
61
- "vitest": "^4.1.2"
61
+ "vitest": "^4.1.4"
62
62
  }
63
63
  }
@@ -47,8 +47,8 @@ export const GridDeletedCellBoxStyle = (
47
47
  "status" in data
48
48
  ? data.status
49
49
  : "entityStatus" in data
50
- ? data.entityStatus
51
- : EntityStatus.Normal;
50
+ ? data.entityStatus
51
+ : EntityStatus.Normal;
52
52
 
53
53
  if (status === EntityStatus.Inactivated || status === EntityStatus.Deleted)
54
54
  return { textDecoration: "line-through" };
@@ -59,7 +59,13 @@ export const GridDeletedCellBoxStyle = (
59
59
  /**
60
60
  * Grid cell value type
61
61
  */
62
- export type GridCellValueType = string | number | Date | boolean | undefined;
62
+ export type GridCellValueType =
63
+ | string
64
+ | number
65
+ | Date
66
+ | boolean
67
+ | undefined
68
+ | null;
63
69
 
64
70
  /**
65
71
  * Grid cell formatter props