formik-form-components 0.2.7
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/LICENSE +21 -0
- package/README.md +423 -0
- package/dist/index.d.ts +270 -0
- package/dist/index.js +11907 -0
- package/dist/index.js.map +1 -0
- package/dist/index.mjs +11858 -0
- package/dist/index.mjs.map +1 -0
- package/package.json +134 -0
package/package.json
ADDED
|
@@ -0,0 +1,134 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "formik-form-components",
|
|
3
|
+
"version": "0.2.7",
|
|
4
|
+
"private": false,
|
|
5
|
+
"description": "A collection of reusable form components built with React, Material UI, Formik, and Tiptap",
|
|
6
|
+
"keywords": [
|
|
7
|
+
"react",
|
|
8
|
+
"form",
|
|
9
|
+
"material-ui",
|
|
10
|
+
"mui",
|
|
11
|
+
"formik",
|
|
12
|
+
"tiptap",
|
|
13
|
+
"components",
|
|
14
|
+
"ui"
|
|
15
|
+
],
|
|
16
|
+
"repository": {
|
|
17
|
+
"type": "git",
|
|
18
|
+
"url": "https://github.com/tkturners/formik-form-components.git"
|
|
19
|
+
},
|
|
20
|
+
"author": "Aarfeen",
|
|
21
|
+
"license": "MIT",
|
|
22
|
+
"main": "dist/index.cjs",
|
|
23
|
+
"module": "dist/index.mjs",
|
|
24
|
+
"types": "dist/index.d.ts",
|
|
25
|
+
"exports": {
|
|
26
|
+
".": {
|
|
27
|
+
"types": "./dist/index.d.ts",
|
|
28
|
+
"import": "./dist/index.mjs",
|
|
29
|
+
"require": "./dist/index.cjs"
|
|
30
|
+
}
|
|
31
|
+
},
|
|
32
|
+
"files": [
|
|
33
|
+
"dist"
|
|
34
|
+
],
|
|
35
|
+
"sideEffects": false,
|
|
36
|
+
"scripts": {
|
|
37
|
+
"clean": "rm -rf dist",
|
|
38
|
+
"build": "npm run clean && tsup",
|
|
39
|
+
"dev": "tsup --watch",
|
|
40
|
+
"prepublishOnly": "npm run build"
|
|
41
|
+
},
|
|
42
|
+
"peerDependencies": {
|
|
43
|
+
"@iconify/react": "^6.0.0",
|
|
44
|
+
"@mui/icons-material": "^5.0.0 || ^6.0.0 || ^7.0.0",
|
|
45
|
+
"@mui/material": "^5.0.0 || ^6.0.0 || ^7.0.0",
|
|
46
|
+
"@mui/x-date-pickers": "^8.0.0",
|
|
47
|
+
"@tiptap/extension-link": "^3.0.0",
|
|
48
|
+
"@tiptap/extension-text-align": "^3.0.0",
|
|
49
|
+
"@tiptap/react": "^3.0.0",
|
|
50
|
+
"@tiptap/starter-kit": "^3.0.0",
|
|
51
|
+
"classnames": "^2.5.1",
|
|
52
|
+
"dayjs": "^1.11.0",
|
|
53
|
+
"formik": "^2.2.9",
|
|
54
|
+
"framer-motion": "^12.0.0",
|
|
55
|
+
"i18next": "^25.0.0",
|
|
56
|
+
"lodash": "^4.17.21",
|
|
57
|
+
"react": ">=18.0.0 <20",
|
|
58
|
+
"react-dom": ">=18.0.0 <20",
|
|
59
|
+
"react-dropzone": "^14.0.0",
|
|
60
|
+
"react-i18next": "^16.0.0",
|
|
61
|
+
"react-lazy-load-image-component": "^1 || ^2 || ^3",
|
|
62
|
+
"react-phone-input-2": "^2.15.1",
|
|
63
|
+
"sanitize-html": "^2.17.0",
|
|
64
|
+
"yup": "^1.2.0"
|
|
65
|
+
},
|
|
66
|
+
"peerDependenciesMeta": {
|
|
67
|
+
"@mui/icons-material": {
|
|
68
|
+
"optional": true
|
|
69
|
+
},
|
|
70
|
+
"@tiptap/react": {
|
|
71
|
+
"optional": true
|
|
72
|
+
},
|
|
73
|
+
"@tiptap/starter-kit": {
|
|
74
|
+
"optional": true
|
|
75
|
+
},
|
|
76
|
+
"@tiptap/extension-link": {
|
|
77
|
+
"optional": true
|
|
78
|
+
},
|
|
79
|
+
"@tiptap/extension-text-align": {
|
|
80
|
+
"optional": true
|
|
81
|
+
},
|
|
82
|
+
"react-lazy-load-image-component": {
|
|
83
|
+
"optional": true
|
|
84
|
+
},
|
|
85
|
+
"@mui/x-date-pickers": {
|
|
86
|
+
"optional": true
|
|
87
|
+
},
|
|
88
|
+
"dayjs": {
|
|
89
|
+
"optional": true
|
|
90
|
+
},
|
|
91
|
+
"sanitize-html": {
|
|
92
|
+
"optional": true
|
|
93
|
+
},
|
|
94
|
+
"framer-motion": {
|
|
95
|
+
"optional": true
|
|
96
|
+
},
|
|
97
|
+
"react-dropzone": {
|
|
98
|
+
"optional": true
|
|
99
|
+
},
|
|
100
|
+
"react-i18next": {
|
|
101
|
+
"optional": true
|
|
102
|
+
},
|
|
103
|
+
"i18next": {
|
|
104
|
+
"optional": true
|
|
105
|
+
},
|
|
106
|
+
"@iconify/react": {
|
|
107
|
+
"optional": true
|
|
108
|
+
},
|
|
109
|
+
"react-phone-input-2": {
|
|
110
|
+
"optional": true
|
|
111
|
+
},
|
|
112
|
+
"classnames": {
|
|
113
|
+
"optional": true
|
|
114
|
+
},
|
|
115
|
+
"lodash": {
|
|
116
|
+
"optional": true
|
|
117
|
+
}
|
|
118
|
+
},
|
|
119
|
+
"devDependencies": {
|
|
120
|
+
"@mui/icons-material": "^7.3.6",
|
|
121
|
+
"@tiptap/extension-link": "^3.13.0",
|
|
122
|
+
"@tiptap/extension-text-align": "^3.13.0",
|
|
123
|
+
"@tiptap/react": "^3.13.0",
|
|
124
|
+
"@tiptap/starter-kit": "^3.13.0",
|
|
125
|
+
"@types/lodash": "^4.17.21",
|
|
126
|
+
"@types/node": "^20.11.0",
|
|
127
|
+
"@types/react": "^18.2.48",
|
|
128
|
+
"@types/react-dom": "^18.2.18",
|
|
129
|
+
"@types/react-lazy-load-image-component": "^1.6.5",
|
|
130
|
+
"@types/sanitize-html": "^2.16.0",
|
|
131
|
+
"tsup": "^6.7.0",
|
|
132
|
+
"typescript": "^5.3.3"
|
|
133
|
+
}
|
|
134
|
+
}
|