Skip to content

Commit f77073e

Browse files
authored
Fix [Form] wizard and form input (#16)
1 parent c3997d4 commit f77073e

File tree

13 files changed

+481
-631
lines changed

13 files changed

+481
-631
lines changed

package.json

Lines changed: 100 additions & 100 deletions
Original file line numberDiff line numberDiff line change
@@ -1,103 +1,103 @@
11
{
2-
"name": "iguazio.dashboard-react-controls",
3-
"version": "0.0.7",
4-
"description": "Collection of resources (such as CSS styles, fonts and images) and ReactJS 17.x components to share among different Iguazio React repos.",
5-
"main": "dist/index.js",
6-
"module": "dist/index.js",
7-
"files": [
8-
"dist",
9-
"README.md"
2+
"name": "iguazio.dashboard-react-controls",
3+
"version": "0.0.7",
4+
"description": "Collection of resources (such as CSS styles, fonts and images) and ReactJS 17.x components to share among different Iguazio React repos.",
5+
"main": "dist/index.js",
6+
"module": "dist/index.js",
7+
"files": [
8+
"dist",
9+
"README.md"
10+
],
11+
"repository": {
12+
"type": "git",
13+
"url": "git@github.com:iguazio/dashboard-react-controls.git"
14+
},
15+
"keywords": [
16+
"Iguazio",
17+
"iguazio",
18+
"MLRun",
19+
"mlrun"
20+
],
21+
"peerDependencies": {
22+
"classnames": "*",
23+
"lodash": "*",
24+
"prop-types": "*",
25+
"react": "*",
26+
"react-dom": "*",
27+
"react-modal-promise": "*",
28+
"react-transition-group": "*",
29+
"final-form": "*",
30+
"react-final-form": "*"
31+
},
32+
"devDependencies": {
33+
"@babel/cli": "^7.17.6",
34+
"@babel/core": "^7.17.9",
35+
"@babel/eslint-parser": "^7.17.0",
36+
"@babel/plugin-transform-react-jsx": "^7.17.3",
37+
"@babel/preset-env": "^7.16.11",
38+
"@babel/preset-react": "^7.16.7",
39+
"@storybook/addon-actions": "^6.4.22",
40+
"@storybook/addon-essentials": "^6.4.22",
41+
"@storybook/addon-interactions": "^6.4.22",
42+
"@storybook/addon-links": "^6.4.22",
43+
"@storybook/builder-webpack5": "^6.4.22",
44+
"@storybook/manager-webpack5": "^6.4.22",
45+
"@storybook/preset-create-react-app": "^4.1.0",
46+
"@storybook/react": "^6.4.22",
47+
"@storybook/testing-library": "0.0.9",
48+
"@testing-library/jest-dom": "^5.16.4",
49+
"@testing-library/react": "^12.1.5",
50+
"@testing-library/user-event": "^13.5.0",
51+
"babel-loader": "^8.2.4",
52+
"babel-plugin-inline-react-svg": "^2.0.1",
53+
"classnames": "^2.3.1",
54+
"cross-env": "^7.0.3",
55+
"eslint": "^8.8.0",
56+
"eslint-config-prettier": "^8.3.0",
57+
"eslint-config-react-app": "^7.0.0",
58+
"eslint-plugin-prettier": "^4.0.0",
59+
"eslint-plugin-storybook": "^0.5.10",
60+
"eslint-webpack-plugin": "^3.1.1",
61+
"lodash": "^4.17.21",
62+
"node": "14.18.1",
63+
"prettier": "^2.5.1",
64+
"prop-types": "^15.8.1",
65+
"react": "^17.0.2",
66+
"react-dom": "^17.0.2",
67+
"final-form": "^4.20.7",
68+
"react-final-form": "^6.5.9",
69+
"react-modal-promise": "^1.0.2",
70+
"react-scripts": "5.0.0",
71+
"react-transition-group": "^4.4.2",
72+
"sass": "^1.50.0",
73+
"web-vitals": "^2.1.4",
74+
"webpack": "^5.72.0"
75+
},
76+
"scripts": {
77+
"start": "react-scripts start",
78+
"build": "react-scripts build",
79+
"test": "react-scripts test",
80+
"eject": "react-scripts eject",
81+
"build-storybook": "build-storybook",
82+
"storybook": "start-storybook -p 6006",
83+
"compile": "rm -rf dist/* && babel src/lib --out-dir dist --copy-files --no-copy-ignored --ignore src/**/*.stories.js"
84+
},
85+
"eslintConfig": {
86+
"extends": [
87+
"react-app",
88+
"react-app/jest"
89+
]
90+
},
91+
"browserslist": {
92+
"production": [
93+
">0.2%",
94+
"not dead",
95+
"not op_mini all"
1096
],
11-
"repository": {
12-
"type": "git",
13-
"url": "git@github.com:iguazio/dashboard-react-controls.git"
14-
},
15-
"keywords": [
16-
"Iguazio",
17-
"iguazio",
18-
"MLRun",
19-
"mlrun"
20-
],
21-
"peerDependencies": {
22-
"classnames": "*",
23-
"lodash": "*",
24-
"prop-types": "*",
25-
"react": "*",
26-
"react-dom": "*",
27-
"react-modal-promise": "*",
28-
"react-transition-group": "*",
29-
"final-form": "^4.20.7",
30-
"react-final-form": "^6.5.9"
31-
},
32-
"devDependencies": {
33-
"@babel/cli": "^7.17.6",
34-
"@babel/core": "^7.17.9",
35-
"@babel/eslint-parser": "^7.17.0",
36-
"@babel/plugin-transform-react-jsx": "^7.17.3",
37-
"@babel/preset-env": "^7.16.11",
38-
"@babel/preset-react": "^7.16.7",
39-
"@storybook/addon-actions": "^6.4.22",
40-
"@storybook/addon-essentials": "^6.4.22",
41-
"@storybook/addon-interactions": "^6.4.22",
42-
"@storybook/addon-links": "^6.4.22",
43-
"@storybook/builder-webpack5": "^6.4.22",
44-
"@storybook/manager-webpack5": "^6.4.22",
45-
"@storybook/preset-create-react-app": "^4.1.0",
46-
"@storybook/react": "^6.4.22",
47-
"@storybook/testing-library": "0.0.9",
48-
"@testing-library/jest-dom": "^5.16.4",
49-
"@testing-library/react": "^12.1.5",
50-
"@testing-library/user-event": "^13.5.0",
51-
"babel-loader": "^8.2.4",
52-
"babel-plugin-inline-react-svg": "^2.0.1",
53-
"classnames": "^2.3.1",
54-
"cross-env": "^7.0.3",
55-
"eslint": "^8.8.0",
56-
"eslint-config-prettier": "^8.3.0",
57-
"eslint-config-react-app": "^7.0.0",
58-
"eslint-plugin-prettier": "^4.0.0",
59-
"eslint-plugin-storybook": "^0.5.10",
60-
"eslint-webpack-plugin": "^3.1.1",
61-
"lodash": "^4.17.21",
62-
"node": "14.18.1",
63-
"prettier": "^2.5.1",
64-
"prop-types": "^15.8.1",
65-
"react": "^17.0.2",
66-
"react-dom": "^17.0.2",
67-
"final-form": "^4.20.7",
68-
"react-final-form": "^6.5.9",
69-
"react-modal-promise": "^1.0.2",
70-
"react-scripts": "5.0.0",
71-
"react-transition-group": "^4.4.2",
72-
"sass": "^1.50.0",
73-
"web-vitals": "^2.1.4",
74-
"webpack": "^5.72.0"
75-
},
76-
"scripts": {
77-
"start": "react-scripts start",
78-
"build": "react-scripts build",
79-
"test": "react-scripts test",
80-
"eject": "react-scripts eject",
81-
"build-storybook": "build-storybook",
82-
"storybook": "start-storybook -p 6006",
83-
"compile": "rm -rf dist/* && babel src/lib --out-dir dist --copy-files --no-copy-ignored --ignore src/**/*.stories.js"
84-
},
85-
"eslintConfig": {
86-
"extends": [
87-
"react-app",
88-
"react-app/jest"
89-
]
90-
},
91-
"browserslist": {
92-
"production": [
93-
">0.2%",
94-
"not dead",
95-
"not op_mini all"
96-
],
97-
"development": [
98-
"last 1 chrome version",
99-
"last 1 firefox version",
100-
"last 1 safari version"
101-
]
102-
}
97+
"development": [
98+
"last 1 chrome version",
99+
"last 1 firefox version",
100+
"last 1 safari version"
101+
]
102+
}
103103
}

0 commit comments

Comments
 (0)