gov-ui-core 0.2.6-beta.13 → 0.2.6-beta.15
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/@types/styles.d.ts +4 -0
- package/build/components/Button/styled.d.ts +3 -2
- package/build/components/Input/styled.d.ts +2 -1
- package/build/components/Pannel/index.d.ts +10 -0
- package/build/components/Pannel/styled.d.ts +5 -0
- package/build/components/TextBox/index.d.ts +10 -0
- package/build/components/Tree/index.d.ts +8 -0
- package/build/index.js +1 -1
- package/build/pages/PannelSample.d.ts +5 -0
- package/build/pages/TextBoxSample.d.ts +2 -0
- package/build/pages/TreeSample.d.ts +5 -0
- package/package.json +14 -13
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "gov-ui-core",
|
|
3
|
-
"version": "0.2.6-beta.
|
|
3
|
+
"version": "0.2.6-beta.15",
|
|
4
4
|
"main": "./build/index.js",
|
|
5
5
|
"module": "./build/index.js",
|
|
6
6
|
"types": "./build/modules.d.ts",
|
|
@@ -11,6 +11,7 @@
|
|
|
11
11
|
"@mdi/font": "^5.9.55",
|
|
12
12
|
"@mdi/js": "^5.9.55",
|
|
13
13
|
"@mdi/react": "^1.6.1",
|
|
14
|
+
"@monaco-editor/react": "^4.7.0",
|
|
14
15
|
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.3",
|
|
15
16
|
"@svgr/webpack": "^5.5.0",
|
|
16
17
|
"@testing-library/jest-dom": "^5.17.0",
|
|
@@ -55,10 +56,10 @@
|
|
|
55
56
|
"query-string": "^9.0.0",
|
|
56
57
|
"ramda": "^0.29.1",
|
|
57
58
|
"rc-motion": "^2.9.0",
|
|
59
|
+
"react": "18.2",
|
|
58
60
|
"react-app-polyfill": "^3.0.0",
|
|
59
61
|
"react-date-range": "^1.4.0",
|
|
60
62
|
"react-dev-utils": "^12.0.1",
|
|
61
|
-
"react": "18.2",
|
|
62
63
|
"react-dom": "18.2",
|
|
63
64
|
"react-hook-form": "^7.51.1",
|
|
64
65
|
"react-intl": "^6.8.9",
|
|
@@ -149,35 +150,35 @@
|
|
|
149
150
|
"@types/react-slick": "^0.23.13",
|
|
150
151
|
"@types/slick-carousel": "^1.6.40",
|
|
151
152
|
"@types/styled-components": "^5.1.34",
|
|
152
|
-
"clean-webpack-plugin": "^4.0.0",
|
|
153
|
-
"eslint-plugin-storybook": "^0.11.1",
|
|
154
153
|
"@typescript-eslint/eslint-plugin": "^5.47.1",
|
|
155
154
|
"@typescript-eslint/parser": "^5.47.1",
|
|
155
|
+
"clean-webpack-plugin": "^4.0.0",
|
|
156
156
|
"eslint": "^8.3.0",
|
|
157
|
-
"eslint-config-react-app": "^7.0.1",
|
|
158
|
-
"eslint-webpack-plugin": "^3.1.1",
|
|
159
157
|
"eslint-config-airbnb": "^19.0.4",
|
|
160
158
|
"eslint-config-airbnb-typescript": "^17.0.0",
|
|
161
159
|
"eslint-config-prettier": "^8.5.0",
|
|
160
|
+
"eslint-config-react-app": "^7.0.1",
|
|
162
161
|
"eslint-plugin-import": "^2.26.0",
|
|
163
162
|
"eslint-plugin-jsx-a11y": "^6.6.1",
|
|
164
163
|
"eslint-plugin-prettier": "^4.2.1",
|
|
165
164
|
"eslint-plugin-react": "^7.31.11",
|
|
166
165
|
"eslint-plugin-react-hooks": "^4.6.0",
|
|
166
|
+
"eslint-plugin-storybook": "^0.11.1",
|
|
167
|
+
"eslint-webpack-plugin": "^3.1.1",
|
|
168
|
+
"husky": "^8.0.0",
|
|
169
|
+
"lint-staged": "^13.1.0",
|
|
170
|
+
"prettier": "^2.8.1",
|
|
167
171
|
"prop-types": "^15.8.1",
|
|
168
172
|
"sass": "^1.72.0",
|
|
169
173
|
"sass-loader": "^16.0.3",
|
|
170
174
|
"storybook": "^8.4.7",
|
|
175
|
+
"stylelint": "^14.16.0",
|
|
176
|
+
"stylelint-config-prettier-scss": "^0.0.1",
|
|
177
|
+
"stylelint-config-standard-scss": "^6.1.0",
|
|
171
178
|
"ts-loader": "^9.5.1",
|
|
172
179
|
"tscpaths": "^0.0.9",
|
|
173
180
|
"url-loader": "^4.1.1",
|
|
174
|
-
"webpack": "^5.94.0"
|
|
175
|
-
"husky": "^8.0.0",
|
|
176
|
-
"lint-staged": "^13.1.0",
|
|
177
|
-
"prettier": "^2.8.1",
|
|
178
|
-
"stylelint": "^14.16.0",
|
|
179
|
-
"stylelint-config-prettier-scss": "^0.0.1",
|
|
180
|
-
"stylelint-config-standard-scss": "^6.1.0"
|
|
181
|
+
"webpack": "^5.94.0"
|
|
181
182
|
},
|
|
182
183
|
"resolutions": {
|
|
183
184
|
"types-ramda": "0.29.4",
|