@pdg/react-table 1.1.11 → 1.1.14
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 +2 -6
- package/dist/index.esm.js +149 -724
- package/dist/index.js +146 -721
- package/package.json +53 -46
package/package.json
CHANGED
|
@@ -1,12 +1,19 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pdg/react-table",
|
|
3
|
-
"title": "React Table",
|
|
4
|
-
"
|
|
5
|
-
"
|
|
3
|
+
"title": "Typescript React Table Module",
|
|
4
|
+
"description": "Typescript React Table Module",
|
|
5
|
+
"version": "1.1.14",
|
|
6
6
|
"type": "module",
|
|
7
|
-
"
|
|
8
|
-
"
|
|
9
|
-
"
|
|
7
|
+
"main": "./dist/index.js",
|
|
8
|
+
"module": "./dist/index.esm.js",
|
|
9
|
+
"types": "./dist/index.d.ts",
|
|
10
|
+
"exports": {
|
|
11
|
+
".": {
|
|
12
|
+
"types": "./dist/index.d.ts",
|
|
13
|
+
"import": "./dist/index.esm.js",
|
|
14
|
+
"require": "./dist/index.js"
|
|
15
|
+
}
|
|
16
|
+
},
|
|
10
17
|
"repository": {
|
|
11
18
|
"type": "git",
|
|
12
19
|
"url": "git+https://github.com/parkdigy/react-table.git",
|
|
@@ -22,25 +29,24 @@
|
|
|
22
29
|
],
|
|
23
30
|
"scripts": {
|
|
24
31
|
"dev": "cd examples && npm run dev",
|
|
25
|
-
"
|
|
26
|
-
"build": "rollup -c --bundleConfigAsCjs",
|
|
32
|
+
"watchman:del": "watchman watch-del \"${PWD}\" ; watchman watch-project \"${PWD}\"",
|
|
27
33
|
"build:examples": "cd examples && npm run build",
|
|
28
|
-
"
|
|
34
|
+
"build": "npm run watchman:del && npm run lint && rollup -c --bundleConfigAsCjs",
|
|
29
35
|
"git:commit": "node .git-commit.cjs",
|
|
30
36
|
"git:push": "git push",
|
|
31
37
|
"git:commit:push": "npm run git:commit && npm run git:push",
|
|
38
|
+
"git:merge:mirror": "node .git-merge.cjs mirror main",
|
|
32
39
|
"reset:gitignore": "git rm -r --cached . && git add .",
|
|
40
|
+
"pub": "npm i && npm run build:examples && npm run build && npm publish --access=public && rm ./.git/hooks/pre-commit",
|
|
41
|
+
"lint": "eslint './src/**/*.{ts,tsx}'",
|
|
33
42
|
"reinstall": "npm run reinstall:module",
|
|
34
|
-
"reinstall:module": "rm -rf node_modules && rm -f package-lock.json && npm i"
|
|
35
|
-
"lint": "eslint './src/**/*.{ts,tsx}'"
|
|
43
|
+
"reinstall:module": "rm -rf node_modules && rm -f package-lock.json && npm i"
|
|
36
44
|
},
|
|
37
45
|
"author": "YOUNG CHUL PARK",
|
|
38
46
|
"license": "MIT",
|
|
39
47
|
"readmeFilename": "README.md",
|
|
40
48
|
"keywords": [
|
|
41
|
-
"
|
|
42
|
-
"table",
|
|
43
|
-
"mui",
|
|
49
|
+
"util",
|
|
44
50
|
"typescript",
|
|
45
51
|
"javascript"
|
|
46
52
|
],
|
|
@@ -52,41 +58,42 @@
|
|
|
52
58
|
"@dnd-kit/core": "^6.3.1",
|
|
53
59
|
"@dnd-kit/sortable": "^10.0.0",
|
|
54
60
|
"@emotion/react": "^11.14.0",
|
|
55
|
-
"@emotion/styled": "^11.14.
|
|
56
|
-
"@mui/icons-material": "^7.
|
|
57
|
-
"@mui/material": "^7.
|
|
61
|
+
"@emotion/styled": "^11.14.1",
|
|
62
|
+
"@mui/icons-material": "^7.3.6",
|
|
63
|
+
"@mui/material": "^7.3.6",
|
|
58
64
|
"@mui/x-date-pickers": "^7.29.4",
|
|
59
|
-
"@pdg/compare": "^1.0.
|
|
60
|
-
"@pdg/formatting": "^1.0.
|
|
61
|
-
"@pdg/react-component": "^1.1.
|
|
62
|
-
"@pdg/react-form": "^1.1.
|
|
63
|
-
"@pdg/react-hook": "^1.0.
|
|
64
|
-
"@pdg/types": "^1.0.
|
|
65
|
-
"@types/uuid": "^10.0.0",
|
|
65
|
+
"@pdg/compare": "^1.0.8",
|
|
66
|
+
"@pdg/formatting": "^1.0.8",
|
|
67
|
+
"@pdg/react-component": "^1.1.6",
|
|
68
|
+
"@pdg/react-form": "^1.1.23",
|
|
69
|
+
"@pdg/react-hook": "^1.0.43",
|
|
70
|
+
"@pdg/types": "^1.0.9",
|
|
66
71
|
"react-intersection-observer": "^9.16.0",
|
|
67
|
-
"uuid": "^
|
|
72
|
+
"uuid": "^13.0.0"
|
|
68
73
|
},
|
|
69
74
|
"devDependencies": {
|
|
70
|
-
"@eslint/js": "
|
|
71
|
-
"@rollup/plugin-commonjs": "
|
|
72
|
-
"@rollup/plugin-
|
|
73
|
-
"@
|
|
74
|
-
"@types/
|
|
75
|
-
"@
|
|
76
|
-
"
|
|
77
|
-
"eslint": "
|
|
78
|
-
"eslint-
|
|
79
|
-
"eslint-plugin-
|
|
80
|
-
"eslint-plugin-react": "
|
|
81
|
-
"eslint-plugin-react-
|
|
82
|
-
"
|
|
83
|
-
"
|
|
84
|
-
"rollup
|
|
85
|
-
"rollup-plugin-
|
|
86
|
-
"rollup-plugin-
|
|
87
|
-
"rollup-plugin-
|
|
88
|
-
"
|
|
89
|
-
"
|
|
90
|
-
"
|
|
75
|
+
"@eslint/js": "9.39.1",
|
|
76
|
+
"@rollup/plugin-commonjs": "29.0.0",
|
|
77
|
+
"@rollup/plugin-node-resolve": "16.0.3",
|
|
78
|
+
"@types/node": "^22.19.2",
|
|
79
|
+
"@types/react": "19.2.7",
|
|
80
|
+
"@typescript-eslint/parser": "8.49.0",
|
|
81
|
+
"eslint": "9.39.1",
|
|
82
|
+
"eslint-config-prettier": "10.1.8",
|
|
83
|
+
"eslint-plugin-prettier": "5.5.4",
|
|
84
|
+
"eslint-plugin-react": "7.37.5",
|
|
85
|
+
"eslint-plugin-react-hooks": "5.2.0",
|
|
86
|
+
"eslint-plugin-react-refresh": "0.4.24",
|
|
87
|
+
"globals": "^16.5.0",
|
|
88
|
+
"prettier": "3.7.4",
|
|
89
|
+
"rollup": "4.53.3",
|
|
90
|
+
"rollup-plugin-delete": "2.2.0",
|
|
91
|
+
"rollup-plugin-peer-deps-external": "2.2.4",
|
|
92
|
+
"rollup-plugin-sass": "1.15.3",
|
|
93
|
+
"rollup-plugin-typescript2": "0.36.0",
|
|
94
|
+
"sass": "1.95.1",
|
|
95
|
+
"ts-node": "10.9.2",
|
|
96
|
+
"typescript": "5.9.3",
|
|
97
|
+
"typescript-eslint": "8.49.0"
|
|
91
98
|
}
|
|
92
99
|
}
|