@pdg/react-form 1.1.20 → 1.1.22
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 -10
- package/package.json +56 -48
package/README.md
CHANGED
|
@@ -1,16 +1,8 @@
|
|
|
1
1
|
# @pdg/react-form
|
|
2
2
|
|
|
3
|
-
React Form
|
|
4
|
-
|
|
5
|
-
## Demo 사이트
|
|
6
|
-
https://parkdigy.github.io/react-form/
|
|
3
|
+
Typescript React Form Module
|
|
7
4
|
|
|
8
5
|
## 설치
|
|
9
|
-
```shell
|
|
10
|
-
npm install -D @pdg/react-form
|
|
11
6
|
```
|
|
12
|
-
|
|
13
|
-
### simplebar-react css 추가
|
|
14
|
-
```
|
|
15
|
-
import 'simplebar-react/dist/simplebar.min.css';
|
|
7
|
+
npm install -D @pdg/react-form
|
|
16
8
|
```
|
package/package.json
CHANGED
|
@@ -1,12 +1,19 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pdg/react-form",
|
|
3
|
-
"title": "React Form",
|
|
4
|
-
"
|
|
5
|
-
"
|
|
3
|
+
"title": "Typescript React Form Module",
|
|
4
|
+
"description": "Typescript React Form Module",
|
|
5
|
+
"version": "1.1.22",
|
|
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-form.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
|
-
"form",
|
|
43
|
-
"mui",
|
|
49
|
+
"util",
|
|
44
50
|
"typescript",
|
|
45
51
|
"javascript"
|
|
46
52
|
],
|
|
@@ -50,45 +56,47 @@
|
|
|
50
56
|
},
|
|
51
57
|
"dependencies": {
|
|
52
58
|
"@emotion/react": "^11.14.0",
|
|
53
|
-
"@emotion/styled": "^11.14.
|
|
54
|
-
"@mui/icons-material": "^7.
|
|
55
|
-
"@mui/material": "^7.
|
|
59
|
+
"@emotion/styled": "^11.14.1",
|
|
60
|
+
"@mui/icons-material": "^7.3.6",
|
|
61
|
+
"@mui/material": "^7.3.6",
|
|
56
62
|
"@mui/x-date-pickers": "^7.29.4",
|
|
57
|
-
"@pdg/compare": "^1.0.
|
|
58
|
-
"@pdg/data": "^1.0.
|
|
59
|
-
"@pdg/formatting": "^1.0.
|
|
60
|
-
"@pdg/react-component": "^1.1.
|
|
61
|
-
"@pdg/react-hook": "^1.0.
|
|
62
|
-
"@pdg/types": "^1.0.
|
|
63
|
+
"@pdg/compare": "^1.0.8",
|
|
64
|
+
"@pdg/data": "^1.0.5",
|
|
65
|
+
"@pdg/formatting": "^1.0.8",
|
|
66
|
+
"@pdg/react-component": "^1.1.6",
|
|
67
|
+
"@pdg/react-hook": "^1.0.43",
|
|
68
|
+
"@pdg/types": "^1.0.9",
|
|
63
69
|
"@tinymce/miniature": "^6.0.0",
|
|
64
|
-
"@tinymce/tinymce-react": "^6.
|
|
70
|
+
"@tinymce/tinymce-react": "^6.3.0",
|
|
65
71
|
"classnames": "^2.5.1",
|
|
66
|
-
"dayjs": "^1.11.
|
|
72
|
+
"dayjs": "^1.11.19",
|
|
67
73
|
"react-number-format": "^5.4.4",
|
|
68
|
-
"react-resize-detector": "^12.0
|
|
69
|
-
"simplebar-react": "^3.3.
|
|
74
|
+
"react-resize-detector": "^12.3.0",
|
|
75
|
+
"simplebar-react": "^3.3.2"
|
|
70
76
|
},
|
|
71
77
|
"devDependencies": {
|
|
72
|
-
"@eslint/js": "
|
|
73
|
-
"@rollup/plugin-commonjs": "
|
|
74
|
-
"@rollup/plugin-
|
|
75
|
-
"@
|
|
76
|
-
"@types/
|
|
77
|
-
"@
|
|
78
|
-
"
|
|
79
|
-
"eslint": "
|
|
80
|
-
"eslint-
|
|
81
|
-
"eslint-plugin-
|
|
82
|
-
"eslint-plugin-react": "
|
|
83
|
-
"eslint-plugin-react-
|
|
84
|
-
"
|
|
85
|
-
"
|
|
86
|
-
"rollup
|
|
87
|
-
"rollup-plugin-
|
|
88
|
-
"rollup-plugin-
|
|
89
|
-
"rollup-plugin-
|
|
90
|
-
"
|
|
91
|
-
"
|
|
92
|
-
"
|
|
78
|
+
"@eslint/js": "9.39.1",
|
|
79
|
+
"@rollup/plugin-commonjs": "29.0.0",
|
|
80
|
+
"@rollup/plugin-node-resolve": "16.0.3",
|
|
81
|
+
"@types/node": "^22.19.2",
|
|
82
|
+
"@types/react": "19.2.7",
|
|
83
|
+
"@typescript-eslint/parser": "8.49.0",
|
|
84
|
+
"eslint": "9.39.1",
|
|
85
|
+
"eslint-config-prettier": "10.1.8",
|
|
86
|
+
"eslint-plugin-prettier": "5.5.4",
|
|
87
|
+
"eslint-plugin-react": "7.37.5",
|
|
88
|
+
"eslint-plugin-react-hooks": "5.2.0",
|
|
89
|
+
"eslint-plugin-react-refresh": "0.4.24",
|
|
90
|
+
"globals": "^16.5.0",
|
|
91
|
+
"prettier": "3.7.4",
|
|
92
|
+
"rollup": "4.53.3",
|
|
93
|
+
"rollup-plugin-delete": "2.2.0",
|
|
94
|
+
"rollup-plugin-peer-deps-external": "2.2.4",
|
|
95
|
+
"rollup-plugin-sass": "1.15.3",
|
|
96
|
+
"rollup-plugin-typescript2": "0.36.0",
|
|
97
|
+
"sass": "1.95.1",
|
|
98
|
+
"ts-node": "10.9.2",
|
|
99
|
+
"typescript": "5.9.3",
|
|
100
|
+
"typescript-eslint": "8.49.0"
|
|
93
101
|
}
|
|
94
102
|
}
|