formik-mui-fields 0.1.0

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/package.json ADDED
@@ -0,0 +1,120 @@
1
+ {
2
+ "name": "formik-mui-fields",
3
+ "version": "0.1.0",
4
+ "description": "Formik-connected MUI form field components with automatic value, validation, and error handling",
5
+ "keywords": [
6
+ "formik",
7
+ "mui",
8
+ "material-ui",
9
+ "react",
10
+ "form",
11
+ "fields",
12
+ "text-field",
13
+ "select",
14
+ "checkbox",
15
+ "switch",
16
+ "slider",
17
+ "rating",
18
+ "autocomplete",
19
+ "radio-group",
20
+ "toggle-button",
21
+ "color-picker",
22
+ "date-picker",
23
+ "image-upload"
24
+ ],
25
+ "license": "MIT",
26
+ "author": "Wadii Basmi",
27
+ "repository": {
28
+ "type": "git",
29
+ "url": "git+https://github.com/wadiibasmi/formik-mui-fields.git"
30
+ },
31
+ "homepage": "https://github.com/wadiibasmi/formik-mui-fields#readme",
32
+ "bugs": {
33
+ "url": "https://github.com/wadiibasmi/formik-mui-fields/issues"
34
+ },
35
+ "type": "module",
36
+ "main": "./dist/index.cjs",
37
+ "module": "./dist/index.js",
38
+ "types": "./dist/index.d.ts",
39
+ "exports": {
40
+ ".": {
41
+ "import": {
42
+ "types": "./dist/index.d.ts",
43
+ "default": "./dist/index.js"
44
+ },
45
+ "require": {
46
+ "types": "./dist/index.d.cts",
47
+ "default": "./dist/index.cjs"
48
+ }
49
+ }
50
+ },
51
+ "files": [
52
+ "dist",
53
+ "README.md",
54
+ "LICENSE"
55
+ ],
56
+ "sideEffects": false,
57
+ "scripts": {
58
+ "dev": "tsup --watch",
59
+ "build": "tsup",
60
+ "test": "vitest run",
61
+ "lint": "eslint src/",
62
+ "format": "prettier --write .",
63
+ "format:check": "prettier --check .",
64
+ "typecheck": "tsc --noEmit",
65
+ "prepublishOnly": "pnpm run build",
66
+ "storybook": "storybook dev -p 6006",
67
+ "build-storybook": "storybook build",
68
+ "prepare": "husky"
69
+ },
70
+ "dependencies": {
71
+ "react-color": "^2.19.3",
72
+ "react-image-crop": "^11.0.10"
73
+ },
74
+ "peerDependencies": {
75
+ "@mui/material": ">=7",
76
+ "@mui/x-date-pickers": ">=7",
77
+ "dayjs": ">=1",
78
+ "formik": ">=2",
79
+ "react": ">=18",
80
+ "react-dom": ">=18"
81
+ },
82
+ "peerDependenciesMeta": {
83
+ "@mui/x-date-pickers": {
84
+ "optional": true
85
+ },
86
+ "dayjs": {
87
+ "optional": true
88
+ }
89
+ },
90
+ "devDependencies": {
91
+ "@chromatic-com/storybook": "^5.1.1",
92
+ "@emotion/react": "^11.14.0",
93
+ "@emotion/styled": "^11.14.1",
94
+ "@eslint/js": "^10.0.1",
95
+ "@mui/x-date-pickers": "^8.27.2",
96
+ "@storybook/addon-a11y": "^10.3.3",
97
+ "@storybook/addon-docs": "^10.3.3",
98
+ "@storybook/addon-onboarding": "^10.3.3",
99
+ "@storybook/addon-vitest": "^10.3.3",
100
+ "@storybook/react-vite": "^10.3.3",
101
+ "@testing-library/react": "^16.3.2",
102
+ "@types/node": "^20",
103
+ "@types/react": "^19",
104
+ "@types/react-color": "^3.0.13",
105
+ "@vitest/browser-playwright": "^4.1.2",
106
+ "@vitest/coverage-v8": "^4.1.2",
107
+ "dayjs": "^1.11.20",
108
+ "eslint": "^10.1.0",
109
+ "eslint-config-prettier": "^10.1.8",
110
+ "eslint-plugin-react-hooks": "^7.0.1",
111
+ "husky": "^9.1.7",
112
+ "jsdom": "^26.1.0",
113
+ "playwright": "^1.58.2",
114
+ "prettier": "^3.8.1",
115
+ "storybook": "^10.3.3",
116
+ "tsup": "^8.5.1",
117
+ "typescript-eslint": "^8.57.2",
118
+ "vitest": "^4.1.2"
119
+ }
120
+ }