@noraent/nora-datagrid 0.0.299 → 0.0.301

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/README.md CHANGED
@@ -78,3 +78,11 @@ nora-data-grid은 @leokim97제공하는 ConveGrid 코어를 기반으로 개발
78
78
  ```
79
79
 
80
80
  npm publish --access=public
81
+
82
+ 참고
83
+
84
+ ### React의 SemVer 이해 
85
+
86
+ - Major 버전 (\(X\)): 호환성을 깨뜨리는 변경이 있을 때 증가합니다. 예를 들어 React 16에서 17로 넘어갈 때 호환성이 깨지는 변경이 포함되었습니다.
87
+ - Minor 버전 (\(Y\)): 기존 기능과 호환되면서 새로운 기능이 추가될 때 증가합니다. 예를 들어 React가 $18.2.0$에서 $18.3.0$으로 변경되는 경우입니다.
88
+ - Patch 버전 (\(Z\)): 버그 수정이 있을 때만 증가합니다. 치명적인 버그가 수정되면 해당 버전을 올립니다.
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@noraent/nora-datagrid",
3
- "version": "0.0.299",
3
+ "version": "0.0.301",
4
4
  "module": "./dist/nora_datagrid.es.js",
5
5
  "main": "./dist/nora_datagrid.cjs.js",
6
6
  "private": false,
@@ -35,6 +35,7 @@
35
35
  "dependencies": {
36
36
  "@emotion/css": "^11.13.5",
37
37
  "@noraent/nora-datagrid": "file:",
38
+ "jose": "^6.1.0",
38
39
  "lodash": "^4.17.21",
39
40
  "rimraf": "^6.0.1",
40
41
  "sass-embedded": "^1.87.0"
@@ -59,15 +60,15 @@
59
60
  "eslint-plugin-react-hooks": "^5.1.0-rc.0",
60
61
  "eslint-plugin-react-refresh": "^0.4.9",
61
62
  "globals": "^15.9.0",
63
+ "react": "^19.0.0",
64
+ "react-dom": "^19.0.0",
62
65
  "terser": "^5.39.0",
63
66
  "typescript": "~5.8.3",
64
67
  "typescript-eslint": "^8.24.1",
65
68
  "vite": "^6.2.0",
66
69
  "vite-plugin-dts": "^4.5.3",
67
70
  "vite-plugin-svgr": "^4.3.0",
68
- "vite-tsconfig-paths": "^5.1.4",
69
- "react": "^19.0.0",
70
- "react-dom": "^19.0.0"
71
+ "vite-tsconfig-paths": "^5.1.4"
71
72
  },
72
73
  "peerDependenciesMeta": {
73
74
  "@emotion/react": {
@@ -42,3 +42,6 @@ export declare const NoraDataGridStyled: import('@emotion/styled').StyledCompone
42
42
  export declare const NoraDataGridBodyStyled: import('@emotion/styled').StyledComponent<any, {}, {
43
43
  ref?: React.Ref<any> | undefined;
44
44
  }>;
45
+ export declare const WatermarStyled: import('@emotion/styled').StyledComponent<any, {}, {
46
+ ref?: React.Ref<any> | undefined;
47
+ }>;