npm audit and type fixes
This commit is contained in:
Generated
+2058
-856
File diff suppressed because it is too large
Load Diff
+3
-3
@@ -81,7 +81,7 @@
|
|||||||
"html-webpack-plugin": "3.2.0",
|
"html-webpack-plugin": "3.2.0",
|
||||||
"husky": "1.3.1",
|
"husky": "1.3.1",
|
||||||
"image-webpack-loader": "6.0.0",
|
"image-webpack-loader": "6.0.0",
|
||||||
"json-server": "0.14.2",
|
"json-server": "0.16.1",
|
||||||
"mini-css-extract-plugin": "0.4.5",
|
"mini-css-extract-plugin": "0.4.5",
|
||||||
"module-to-cdn": "3.1.2",
|
"module-to-cdn": "3.1.2",
|
||||||
"morgan": "1.9.1",
|
"morgan": "1.9.1",
|
||||||
@@ -94,7 +94,7 @@
|
|||||||
"react-hot-loader": "4.8.8",
|
"react-hot-loader": "4.8.8",
|
||||||
"sass": "^1.26.8",
|
"sass": "^1.26.8",
|
||||||
"sass-loader": "7.1.0",
|
"sass-loader": "7.1.0",
|
||||||
"serve": "11.2.0",
|
"serve": "11.3.2",
|
||||||
"style-loader": "0.21.0",
|
"style-loader": "0.21.0",
|
||||||
"stylelint": "11.1.1",
|
"stylelint": "11.1.1",
|
||||||
"stylelint-config-recommended-scss": "4.0.0",
|
"stylelint-config-recommended-scss": "4.0.0",
|
||||||
@@ -109,7 +109,7 @@
|
|||||||
"webpack-cdn-plugin": "3.2.0",
|
"webpack-cdn-plugin": "3.2.0",
|
||||||
"webpack-cli": "3.3.10",
|
"webpack-cli": "3.3.10",
|
||||||
"webpack-dev-middleware": "3.7.2",
|
"webpack-dev-middleware": "3.7.2",
|
||||||
"webpack-dev-server": "3.9.0",
|
"webpack-dev-server": "3.11.0",
|
||||||
"webpack-merge": "4.2.2",
|
"webpack-merge": "4.2.2",
|
||||||
"webpack-node-externals": "1.7.2"
|
"webpack-node-externals": "1.7.2"
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -216,11 +216,11 @@ class FeedCreatePage extends React.Component<FeedCreatePageProps, FeedCreatePage
|
|||||||
</Helmet>
|
</Helmet>
|
||||||
<h1>{title}</h1>
|
<h1>{title}</h1>
|
||||||
{statusMessage && <div className="success">{statusMessage}</div>}
|
{statusMessage && <div className="success">{statusMessage}</div>}
|
||||||
<Form schema={schema}
|
<Form schema={schema as any}
|
||||||
uiSchema={uiSchema}
|
uiSchema={uiSchema}
|
||||||
formData={formData}
|
formData={formData}
|
||||||
idPrefix="rjsf"
|
idPrefix="rjsf"
|
||||||
widgets={widgets}
|
widgets={widgets as any}
|
||||||
onChange={this.onChange}
|
onChange={this.onChange}
|
||||||
onSubmit={this.onSubmit}
|
onSubmit={this.onSubmit}
|
||||||
onError={this.onError}
|
onError={this.onError}
|
||||||
|
|||||||
@@ -190,7 +190,7 @@ class SignUpPage extends React.Component<SignUpPageProps, SignUpPageState> {
|
|||||||
<div>
|
<div>
|
||||||
<h1>Title: {signUpForm.title}</h1>
|
<h1>Title: {signUpForm.title}</h1>
|
||||||
<Form
|
<Form
|
||||||
schema={schema}
|
schema={schema as any}
|
||||||
uiSchema={uiSchema}
|
uiSchema={uiSchema}
|
||||||
formData={formData}
|
formData={formData}
|
||||||
idPrefix="rjsf"
|
idPrefix="rjsf"
|
||||||
|
|||||||
@@ -189,11 +189,11 @@ class SignupCreatePage extends React.Component<SignupCreatePageProps, SignupCrea
|
|||||||
{formData.id && <p>
|
{formData.id && <p>
|
||||||
Check out the signup form here: <Link to={`/signup/${formData.id}`}>{formData.title}</Link>
|
Check out the signup form here: <Link to={`/signup/${formData.id}`}>{formData.title}</Link>
|
||||||
</p>}
|
</p>}
|
||||||
<Form schema={schema}
|
<Form schema={schema as any}
|
||||||
uiSchema={uiSchema}
|
uiSchema={uiSchema}
|
||||||
formData={formData}
|
formData={formData}
|
||||||
idPrefix="rjsf"
|
idPrefix="rjsf"
|
||||||
widgets={widgets}
|
widgets={widgets as any}
|
||||||
onChange={this.onChange}
|
onChange={this.onChange}
|
||||||
onSubmit={this.onSubmit}
|
onSubmit={this.onSubmit}
|
||||||
onError={this.onError}
|
onError={this.onError}
|
||||||
|
|||||||
Reference in New Issue
Block a user