Skip to content

Commit 8ee8705

Browse files
committed
Packages are updated
1 parent 1515fb8 commit 8ee8705

File tree

4 files changed

+14545
-76
lines changed

4 files changed

+14545
-76
lines changed

changelog.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# Changelog
22

3+
## [8.2.2] - 21.12.2023
4+
- Update dependencies
5+
36
## [8.2.2] - 18.05.2023
47
- Update dependencies
58
- Update react version

package.json

Lines changed: 11 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@
6868
"axios": "^0.27.2",
6969
"bootstrap": "5.2.3",
7070
"classnames": "^2.3.2",
71-
"connected-react-router": "6.9.2",
71+
"connected-react-router": "6.9.3",
7272
"draft-js": "^0.11.7",
7373
"echarts": "^4.9.0",
7474
"echarts-for-react": "^2.0.16",
@@ -105,11 +105,10 @@
105105
"react-datetime": "^3.2.0",
106106
"react-dev-utils": "^6.1.1",
107107
"react-dom": "^18.2.0",
108-
"react-draft-wysiwyg": "1.14.7",
108+
"react-draft-wysiwyg": "1.15.0",
109109
"react-dropzone": "^11.7.1",
110110
"react-google-maps": "^9.4.5",
111111
"react-images": "0.5.19",
112-
"react-joyride": "^2.5.4",
113112
"react-maskedinput": "^4.0.1",
114113
"react-mde": "^11.5.0",
115114
"react-redux": "7.2.8",
@@ -137,14 +136,14 @@
137136
"sass-loader": "^10",
138137
"showdown": "^1.9.1",
139138
"skycons": "^1.0.0",
140-
"sortablejs": "1.15.0",
139+
"sortablejs": "1.15.1",
141140
"styled-components": "^5.3.10",
142141
"uuid": "^8.3.2",
143142
"yup": "^0.32.11"
144143
},
145144
"devDependencies": {
146-
"@babel/core": "7.14.0",
147-
"@babel/plugin-proposal-class-properties": "7.13.0",
145+
"@babel/core": "7.23.6",
146+
"@babel/plugin-proposal-class-properties": "7.18.6",
148147
"@babel/plugin-proposal-optional-chaining": "^7.13.12",
149148
"@svgr/webpack": "4.3.3",
150149
"babel-core": "7.0.0-bridge.0",
@@ -165,9 +164,9 @@
165164
"eslint-config-react-app": "4.0.1",
166165
"eslint-loader": "2.1.1",
167166
"eslint-plugin-flowtype": "3.13.0",
168-
"eslint-plugin-import": "2.22.1",
169-
"eslint-plugin-jsx-a11y": "6.4.1",
170-
"eslint-plugin-react": "7.23.2",
167+
"eslint-plugin-import": "2.29.1",
168+
"eslint-plugin-jsx-a11y": "6.8.0",
169+
"eslint-plugin-react": "7.33.2",
171170
"eslint-plugin-react-hooks": "1.7.0",
172171
"expose-loader": "0.7.5",
173172
"file-loader": "3.0.1",
@@ -176,19 +175,19 @@
176175
"identity-obj-proxy": "3.0.0",
177176
"imports-loader": "0.8.0",
178177
"jest": "24.9.0",
179-
"jest-pnp-resolver": "1.2.2",
178+
"jest-pnp-resolver": "1.2.3",
180179
"jest-resolve": "24.9.0",
181180
"lodash.assign": "^4.2.0",
182181
"lodash.clonedeep": "^4.5.0",
183182
"mini-css-extract-plugin": "0.12.0",
184183
"optimize-css-assets-webpack-plugin": "5.0.4",
185-
"pnp-webpack-plugin": "1.6.4",
184+
"pnp-webpack-plugin": "1.7.0",
186185
"postcss-flexbugs-fixes": "4.2.1",
187186
"postcss-loader": "3.0.0",
188187
"postcss-preset-env": "6.7.0",
189188
"postcss-safe-parser": "4.0.2",
190189
"redux-logger": "^3.0.6",
191-
"resolve": "1.20.0",
190+
"resolve": "1.22.8",
192191
"style-loader": "0.23.1",
193192
"terser-webpack-plugin": "1.4.4",
194193
"url-loader": "1.1.2",

src/components/Helper/Helper.js

Lines changed: 64 additions & 64 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import cx from 'classnames';
33
import { Button } from 'reactstrap';
44
import PropTypes from 'prop-types';
55
import { connect } from 'react-redux';
6-
import Joyride, { STATUS } from 'react-joyride';
6+
// import Joyride, { STATUS } from 'react-joyride';
77
import { DashboardThemes } from '../../reducers/layout';
88
import {
99
changeThemeColor
@@ -65,14 +65,14 @@ class Helper extends Component {
6565
}
6666
}
6767

68-
handleJoyrideCallback = (CallBackProps) => {
69-
const { status } = CallBackProps;
70-
71-
if (([STATUS.FINISHED, STATUS.SKIPPED]).includes(status)) {
72-
this.setState({ run: false });
73-
}
74-
75-
};
68+
// handleJoyrideCallback = (CallBackProps) => {
69+
// const { status } = CallBackProps;
70+
//
71+
// if (([STATUS.FINISHED, STATUS.SKIPPED]).includes(status)) {
72+
// this.setState({ run: false });
73+
// }
74+
//
75+
// };
7676

7777
start = () => {
7878
this.setState({
@@ -98,61 +98,61 @@ class Helper extends Component {
9898
return (
9999
<div className={cx(s.themeHelper, { [s.themeHelperOpened]: isOpened })}>
100100

101-
<Joyride
102-
callback={this.handleJoyrideCallback}
103-
continuous={true}
104-
run={this.state.run}
105-
showSkipButton={true}
106-
steps={this.state.steps}
107-
disableOverlay={true}
108-
disableScrolling
109-
outline="none"
110-
styles={{
111-
options: {
112-
arrowColor: '#ffffff',
113-
backgroundColor: '#ffffff',
114-
overlayColor: 'rgba(79, 26, 0, 0.4)',
115-
primaryColor: '#000',
116-
textColor: '#495057',
117-
spotlightPadding: 0,
118-
zIndex: 1000,
119-
padding: 5,
120-
width: 240,
121-
},
122-
tooltip: {
123-
fontSize: 15,
124-
padding: 15,
125-
},
126-
tooltipContent: {
127-
padding: '20px 5px 0',
128-
},
129-
floater: {
130-
arrow: {
131-
padding: 10
132-
},
133-
},
134-
buttonClose: {
135-
display: 'none'
136-
},
137-
buttonNext: {
138-
backgroundColor: "#21AE8C",
139-
fontSize: 13,
140-
borderRadius: 4,
141-
color: "#ffffff",
142-
fontWeight: "bold"
143-
},
144-
buttonBack: {
145-
color: "#798892",
146-
marginLeft: 'auto',
147-
fontSize: 13,
148-
marginRight: 5,
149-
},
150-
buttonSkip: {
151-
color: "#798892",
152-
fontSize: 13,
153-
},
154-
}}
155-
/>
101+
{/*<Joyride*/}
102+
{/* callback={this.handleJoyrideCallback}*/}
103+
{/* continuous={true}*/}
104+
{/* run={this.state.run}*/}
105+
{/* showSkipButton={true}*/}
106+
{/* steps={this.state.steps}*/}
107+
{/* disableOverlay={true}*/}
108+
{/* disableScrolling*/}
109+
{/* outline="none"*/}
110+
{/* styles={{*/}
111+
{/* options: {*/}
112+
{/* arrowColor: '#ffffff',*/}
113+
{/* backgroundColor: '#ffffff',*/}
114+
{/* overlayColor: 'rgba(79, 26, 0, 0.4)',*/}
115+
{/* primaryColor: '#000',*/}
116+
{/* textColor: '#495057',*/}
117+
{/* spotlightPadding: 0,*/}
118+
{/* zIndex: 1000,*/}
119+
{/* padding: 5,*/}
120+
{/* width: 240,*/}
121+
{/* },*/}
122+
{/* tooltip: {*/}
123+
{/* fontSize: 15,*/}
124+
{/* padding: 15,*/}
125+
{/* },*/}
126+
{/* tooltipContent: {*/}
127+
{/* padding: '20px 5px 0',*/}
128+
{/* },*/}
129+
{/* floater: {*/}
130+
{/* arrow: {*/}
131+
{/* padding: 10*/}
132+
{/* },*/}
133+
{/* },*/}
134+
{/* buttonClose: {*/}
135+
{/* display: 'none'*/}
136+
{/* },*/}
137+
{/* buttonNext: {*/}
138+
{/* backgroundColor: "#21AE8C",*/}
139+
{/* fontSize: 13,*/}
140+
{/* borderRadius: 4,*/}
141+
{/* color: "#ffffff",*/}
142+
{/* fontWeight: "bold"*/}
143+
{/* },*/}
144+
{/* buttonBack: {*/}
145+
{/* color: "#798892",*/}
146+
{/* marginLeft: 'auto',*/}
147+
{/* fontSize: 13,*/}
148+
{/* marginRight: 5,*/}
149+
{/* },*/}
150+
{/* buttonSkip: {*/}
151+
{/* color: "#798892",*/}
152+
{/* fontSize: 13,*/}
153+
{/* },*/}
154+
{/* }}*/}
155+
{/*/>*/}
156156

157157
<div className={`${s.themeHelperBtn} bg-primary helper-button`} onClick={this.toggle}>
158158
<div className={cx(s.themeHelperSpinner, 'text-white')}>

0 commit comments

Comments
 (0)