Fix review issues
This commit is contained in:
parent
7d9a9904f5
commit
36899dad55
1
bundle.js.map
Normal file
1
bundle.js.map
Normal file
File diff suppressed because one or more lines are too long
22
package.json
22
package.json
@ -3,21 +3,11 @@
|
|||||||
"version": "0.1.0",
|
"version": "0.1.0",
|
||||||
"private": true,
|
"private": true,
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@testing-library/jest-dom": "^4.2.4",
|
|
||||||
"@testing-library/react": "^9.3.2",
|
|
||||||
"@testing-library/user-event": "^7.1.2",
|
|
||||||
"@types/classnames": "^2.2.10",
|
|
||||||
"@types/jest": "^24.0.0",
|
|
||||||
"@types/node": "^12.0.0",
|
|
||||||
"@types/react": "^16.9.0",
|
|
||||||
"@types/react-dom": "^16.9.0",
|
|
||||||
"@types/yup": "^0.29.3",
|
|
||||||
"classnames": "^2.2.6",
|
"classnames": "^2.2.6",
|
||||||
"formik": "^2.1.4",
|
"formik": "^2.1.4",
|
||||||
"react": "^16.13.1",
|
"react": "^16.13.1",
|
||||||
"react-dom": "^16.13.1",
|
"react-dom": "^16.13.1",
|
||||||
"react-scripts": "3.4.1",
|
"react-scripts": "3.4.1",
|
||||||
"typescript": "~3.7.2",
|
|
||||||
"yup": "^0.29.1"
|
"yup": "^0.29.1"
|
||||||
},
|
},
|
||||||
"scripts": {
|
"scripts": {
|
||||||
@ -56,10 +46,20 @@
|
|||||||
]
|
]
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
|
"@testing-library/jest-dom": "^4.2.4",
|
||||||
|
"@testing-library/react": "^9.3.2",
|
||||||
|
"@testing-library/user-event": "^7.1.2",
|
||||||
|
"@types/classnames": "^2.2.10",
|
||||||
|
"@types/jest": "^24.0.0",
|
||||||
|
"@types/node": "^12.0.0",
|
||||||
|
"@types/react": "^16.9.0",
|
||||||
|
"@types/react-dom": "^16.9.0",
|
||||||
|
"@types/yup": "^0.29.3",
|
||||||
"eslint-config-matrix-org": "^0.1.0",
|
"eslint-config-matrix-org": "^0.1.0",
|
||||||
"husky": "^4.2.5",
|
"husky": "^4.2.5",
|
||||||
"lint-staged": "^10.2.7",
|
"lint-staged": "^10.2.7",
|
||||||
"node-sass": "^4.14.1",
|
"node-sass": "^4.14.1",
|
||||||
"prettier": "^2.0.5"
|
"prettier": "^2.0.5",
|
||||||
|
"typescript": "~3.7.2"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,3 +1,19 @@
|
|||||||
|
/*
|
||||||
|
Copyright 2020 The Matrix.org Foundation C.I.C.
|
||||||
|
|
||||||
|
Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
you may not use this file except in compliance with the License.
|
||||||
|
You may obtain a copy of the License at
|
||||||
|
|
||||||
|
http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
|
||||||
|
Unless required by applicable law or agreed to in writing, software
|
||||||
|
distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
See the License for the specific language governing permissions and
|
||||||
|
limitations under the License.
|
||||||
|
*/
|
||||||
|
|
||||||
$app-background: #f4f4f4;
|
$app-background: #f4f4f4;
|
||||||
$background: #ffffff;
|
$background: #ffffff;
|
||||||
$foreground: #000000;
|
$foreground: #000000;
|
||||||
|
@ -1,3 +1,19 @@
|
|||||||
|
/*
|
||||||
|
Copyright 2020 The Matrix.org Foundation C.I.C.
|
||||||
|
|
||||||
|
Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
you may not use this file except in compliance with the License.
|
||||||
|
You may obtain a copy of the License at
|
||||||
|
|
||||||
|
http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
|
||||||
|
Unless required by applicable law or agreed to in writing, software
|
||||||
|
distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
See the License for the specific language governing permissions and
|
||||||
|
limitations under the License.
|
||||||
|
*/
|
||||||
|
|
||||||
@mixin error {
|
@mixin error {
|
||||||
color: $error;
|
color: $error;
|
||||||
border-color: $error;
|
border-color: $error;
|
||||||
|
@ -31,7 +31,7 @@ const Button: React.FC<
|
|||||||
IProps & React.RefAttributes<HTMLButtonElement>
|
IProps & React.RefAttributes<HTMLButtonElement>
|
||||||
> = React.forwardRef(
|
> = React.forwardRef(
|
||||||
(
|
(
|
||||||
{ onClick, children, flashChildren, className, ...restProps }: IProps,
|
{ onClick, children, flashChildren, className, ...props }: IProps,
|
||||||
ref: React.Ref<HTMLButtonElement>
|
ref: React.Ref<HTMLButtonElement>
|
||||||
) => {
|
) => {
|
||||||
const [wasClicked, setWasClicked] = React.useState(false);
|
const [wasClicked, setWasClicked] = React.useState(false);
|
||||||
@ -58,7 +58,7 @@ const Button: React.FC<
|
|||||||
className={classNames}
|
className={classNames}
|
||||||
onClick={wrappedOnClick}
|
onClick={wrappedOnClick}
|
||||||
ref={ref}
|
ref={ref}
|
||||||
{...restProps}
|
{...props}
|
||||||
>
|
>
|
||||||
{content}
|
{content}
|
||||||
</button>
|
</button>
|
||||||
|
@ -21,13 +21,10 @@ import "./TextButton.scss";
|
|||||||
|
|
||||||
const TextButton: React.FC<React.ButtonHTMLAttributes<Element>> = ({
|
const TextButton: React.FC<React.ButtonHTMLAttributes<Element>> = ({
|
||||||
className,
|
className,
|
||||||
...restProps
|
...props
|
||||||
}) => {
|
}) => {
|
||||||
return (
|
return (
|
||||||
<button
|
<button className={classnames("textButton", className)} {...props} />
|
||||||
className={classnames("textButton", className)}
|
|
||||||
{...restProps}
|
|
||||||
/>
|
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
export default TextButton;
|
export default TextButton;
|
||||||
|
Loading…
Reference in New Issue
Block a user