@overmap-ai/forms 1.0.26 → 1.0.28
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/dist/FileIcon/FileIcon.d.ts +0 -3
- package/dist/FileIcon/constants.d.ts +3 -0
- package/dist/FileIcon/index.d.ts +3 -0
- package/dist/forms.js +2531 -2553
- package/dist/forms.umd.cjs +22 -22
- package/package.json +106 -104
package/package.json
CHANGED
|
@@ -1,106 +1,108 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
2
|
+
"name": "@overmap-ai/forms",
|
|
3
|
+
"version": "1.0.28",
|
|
4
|
+
"license": "UNLICENSED",
|
|
5
|
+
"main": "dist/forms.umd.cjs",
|
|
6
|
+
"module": "dist/forms.js",
|
|
7
|
+
"types": "dist/index.d.ts",
|
|
8
|
+
"type": "module",
|
|
9
|
+
"exports": {
|
|
10
|
+
".": {
|
|
11
|
+
"types": "./dist/index.d.ts",
|
|
12
|
+
"import": "./dist/forms.js",
|
|
13
|
+
"require": "./dist/forms.umd.cjs"
|
|
14
|
+
},
|
|
15
|
+
"./package.json": "./package.json"
|
|
16
|
+
},
|
|
17
|
+
"files": [
|
|
18
|
+
"dist"
|
|
19
|
+
],
|
|
20
|
+
"scripts": {
|
|
21
|
+
"dev": "vite",
|
|
22
|
+
"build": "tsc && vite build",
|
|
23
|
+
"preview": "vite preview",
|
|
24
|
+
"prepare": "husky",
|
|
25
|
+
"lint:fix": "yarn lint --fix",
|
|
26
|
+
"lint": "tsc --noEmit && eslint --report-unused-disable-directives --max-warnings 0",
|
|
27
|
+
"storybook": "storybook dev -p 6006",
|
|
28
|
+
"build-storybook": "storybook build"
|
|
29
|
+
},
|
|
30
|
+
"peerDependencies": {
|
|
31
|
+
"@overmap-ai/blocks": "^1.0.35-radio-card.2",
|
|
32
|
+
"react": ">=18.2.0 <20.0.0",
|
|
33
|
+
"react-dom": ">=18.2.0 <20.0.0",
|
|
34
|
+
"tailwindcss": "^4.0.0"
|
|
35
|
+
},
|
|
36
|
+
"devDependencies": {
|
|
37
|
+
"@chromatic-com/storybook": "^4.0.1",
|
|
38
|
+
"@eslint/js": "^9.31.0",
|
|
39
|
+
"@overmap-ai/blocks": "^1.0.35-radio-card.2",
|
|
40
|
+
"@radix-ui/colors": "^3.0.0",
|
|
41
|
+
"@rollup/plugin-commonjs": "^28.0.6",
|
|
42
|
+
"@storybook/addon-a11y": "^9.0.18",
|
|
43
|
+
"@storybook/addon-docs": "^9.0.18",
|
|
44
|
+
"@storybook/addon-onboarding": "^9.0.18",
|
|
45
|
+
"@storybook/addon-themes": "^9.0.18",
|
|
46
|
+
"@storybook/react-vite": "^9.0.18",
|
|
47
|
+
"@tailwindcss/vite": "^4.1.11",
|
|
48
|
+
"@types/file-saver": "^2.0.7",
|
|
49
|
+
"@types/lodash.clonedeep": "^4.5.9",
|
|
50
|
+
"@types/lodash.get": "^4.4.9",
|
|
51
|
+
"@types/lodash.set": "^4.3.9",
|
|
52
|
+
"@types/node": "^22.13.0",
|
|
53
|
+
"@types/react": "^19.0.0",
|
|
54
|
+
"@types/react-dom": "^19.0.0",
|
|
55
|
+
"@types/react-icons": "^3.0.0",
|
|
56
|
+
"@vitejs/plugin-react": "^4.7.0",
|
|
57
|
+
"@vitejs/plugin-react-swc": "^3.11.0",
|
|
58
|
+
"eslint": "^9.31.0",
|
|
59
|
+
"eslint-config-prettier": "^10.1.8",
|
|
60
|
+
"eslint-import-resolver-typescript": "^4.4.4",
|
|
61
|
+
"eslint-plugin-import-x": "^4.16.1",
|
|
62
|
+
"eslint-plugin-prettier": "^5.5.3",
|
|
63
|
+
"eslint-plugin-react": "^7.37.5",
|
|
64
|
+
"eslint-plugin-react-hooks": "^5.2.0",
|
|
65
|
+
"eslint-plugin-react-refresh": "^0.4.20",
|
|
66
|
+
"eslint-plugin-simple-import-sort": "^12.1.1",
|
|
67
|
+
"eslint-plugin-storybook": "^9.0.18",
|
|
68
|
+
"globals": "^16.3.0",
|
|
69
|
+
"husky": "^9.1.7",
|
|
70
|
+
"jiti": "^2.5.1",
|
|
71
|
+
"prettier": "^3.6.2",
|
|
72
|
+
"react": "^19.0.0",
|
|
73
|
+
"react-dom": "^19.0.0",
|
|
74
|
+
"rollup": "^4",
|
|
75
|
+
"rollup-plugin-polyfill-node": "^0.13.0",
|
|
76
|
+
"storybook": "^9.0.18",
|
|
77
|
+
"tailwindcss": "^4.1.11",
|
|
78
|
+
"typescript": "~5.6.2",
|
|
79
|
+
"typescript-eslint": "^8.38.0",
|
|
80
|
+
"vite": "^6",
|
|
81
|
+
"vite-plugin-dts": "^4.5.4",
|
|
82
|
+
"vite-plugin-externalize-deps": "^0.9.0"
|
|
83
|
+
},
|
|
84
|
+
"eslintConfig": {
|
|
85
|
+
"extends": [
|
|
86
|
+
"plugin:storybook/recommended"
|
|
87
|
+
]
|
|
88
|
+
},
|
|
89
|
+
"dependencies": {
|
|
90
|
+
"@hello-pangea/dnd": "^18.0.1",
|
|
91
|
+
"class-variance-authority": "^0.7.0",
|
|
92
|
+
"file-saver": "^2.0.5",
|
|
93
|
+
"formik": "^2.4.6",
|
|
94
|
+
"lodash.clonedeep": "^4.5.0",
|
|
95
|
+
"lodash.get": "^4.4.2",
|
|
96
|
+
"lodash.set": "^4.3.2",
|
|
97
|
+
"react-icons": "^5.5.0",
|
|
98
|
+
"react-zxing": "^2.1.0",
|
|
99
|
+
"uuid": "^11.1.0"
|
|
100
|
+
},
|
|
101
|
+
"resolutions": {
|
|
102
|
+
"@types/react": "^19.0.0"
|
|
103
|
+
},
|
|
104
|
+
"volta": {
|
|
105
|
+
"node": "22.17.1",
|
|
106
|
+
"yarn": "4.9.2"
|
|
107
|
+
}
|
|
106
108
|
}
|