Skip to content

Commit 7a3b06e

Browse files
author
Anton Mogdalov
committed
Updated package.json, yarn.lock, components.
1 parent e25cb6f commit 7a3b06e

File tree

5 files changed

+6258
-5462
lines changed

5 files changed

+6258
-5462
lines changed

package.json

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@
2121
"lodash": "4.17.11",
2222
"md5": "2.2.1",
2323
"moment": "^2.22.2",
24-
"node-sass": "4.12.0",
2524
"rc-color-picker": "^1.2.6",
2625
"rc-hammerjs": "0.6.9",
2726
"react": "^16.8.3",
@@ -34,7 +33,7 @@
3433
"react-router": "4.3.1",
3534
"react-router-dom": "4.3.1",
3635
"react-router-hash-link": "^1.2.1",
37-
"react-scripts": "2.1.8",
36+
"react-scripts": "^3.4.4",
3837
"react-scrollspy": "^3.3.5",
3938
"react-test-render": "1.1.1",
4039
"react-toastify": "^5.4.0",
@@ -44,14 +43,15 @@
4443
"redux": "4.0.1",
4544
"redux-devtools-extension": "2.13.8",
4645
"redux-thunk": "2.3.0",
46+
"sass": "^1.69.5",
4747
"sass-loader": "7.1.0",
4848
"skycons": "^1.0.0",
4949
"styled-components": "4.1.3",
5050
"yup": "0.26.10"
5151
},
5252
"scripts": {
53-
"build": "cross-env REACT_APP_ENVIRONMENT=production react-scripts build",
54-
"start": "cross-env REACT_APP_ENVIRONMENT=development react-scripts start"
53+
"build": "cross-env REACT_APP_ENVIRONMENT=production react-scripts --openssl-legacy-provider build",
54+
"start": "cross-env REACT_APP_ENVIRONMENT=development react-scripts --openssl-legacy-provider start"
5555
},
5656
"eslintConfig": {
5757
"extends": "react-app"
@@ -62,10 +62,13 @@
6262
"not ie <= 11",
6363
"not op_mini all"
6464
],
65+
"engines": {
66+
"node": "^20.15"
67+
},
6568
"devDependencies": {
6669
"@babel/helper-call-delegate": "7.8.7",
6770
"@types/jest": "24.0.9",
6871
"cross-env": "5.2.0",
6972
"less": "3.9.0"
7073
}
71-
}
74+
}

src/components/Widget/Widget.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import PropTypes from 'prop-types';
33
import { UncontrolledTooltip } from 'reactstrap';
44
import s from './Widget.module.scss';
55
import classNames from 'classnames';
6-
import Loader from '../Loader'; // eslint-disable-line css-modules/no-unused-class
6+
import Loader from '../Loader';
77
import AnimateHeight from 'react-animate-height';
88
import uuidv4 from 'uuid/v4'
99
import {

src/documentation/DocumentationHeader.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import {
1313

1414
import { openSidebar, closeSidebar, changeActiveSidebarItem } from '../actions/navigation';
1515

16-
import s from '../components/Header/Header.module.scss'; // eslint-disable-line css-modules/no-unused-class
16+
import s from '../components/Header/Header.module.scss';
1717
import sd from './styles.module.scss';
1818

1919
import twitterLogo from '../images/documentation/twitter-logo.svg';

src/styles/_utils.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -439,7 +439,7 @@ $z-index-variants: (more: 1, less: -1, '10': 10, '-10': -10);
439439
.form-control:focus,
440440
.form-control:focus + .input-group-addon,
441441
&.focus .input-group-addon {
442-
@extend .input-no-border:focus;
442+
@extend .input-no-border, :focus;
443443
}
444444
}
445445

0 commit comments

Comments
 (0)