@arquimedes.co/eureka-forms 1.9.15 → 1.9.17-test
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/dist/App.js +98 -205
- package/dist/AxiosAPI.js +3 -3
- package/dist/AxiosWidget.js +4 -4
- package/dist/FormComponents/Form/ColumnForm/ColumnForm.js +104 -207
- package/dist/FormComponents/Form/ConfirmationDialog/ConfirmationDialog.js +5 -17
- package/dist/FormComponents/Form/Form.js +29 -56
- package/dist/FormComponents/Form/StepperForm/StepperForm.js +1 -1
- package/dist/FormComponents/Section/MaterialSection/MaterialSection.js +7 -30
- package/dist/FormComponents/Section/Section.js +2 -13
- package/dist/FormComponents/Step/@Construction/CBRIncidentsStep/CBRIncidentsStep.js +2 -13
- package/dist/FormComponents/Step/@Construction/CBRIncidentsStep/MaterialCBRIncidentsStep/Incident/Incident.js +9 -32
- package/dist/FormComponents/Step/@Construction/CBRIncidentsStep/MaterialCBRIncidentsStep/MaterialCBRIncidentsStep.js +47 -64
- package/dist/FormComponents/Step/@Construction/CBRLocativasStep/CBRLocativasStep.js +41 -102
- package/dist/FormComponents/Step/@Construction/CBRPropertyStep/CBRPropertyStep.js +37 -92
- package/dist/FormComponents/Step/AYFStepMapper.js +23 -75
- package/dist/FormComponents/Step/CBRStepMapper.js +56 -144
- package/dist/FormComponents/Step/CheckBoxStep/CheckBoxStep.js +3 -26
- package/dist/FormComponents/Step/CheckBoxStep/MaterialCheckBoxStep/MaterialCheckBoxStep.js +6 -21
- package/dist/FormComponents/Step/ClassifierSelectorStep/ClassifierSelectorStep.js +3 -26
- package/dist/FormComponents/Step/ClassifierSelectorStep/MaterialClassifierSelectorStep/MaterialClassifierSelectorStep.js +32 -65
- package/dist/FormComponents/Step/DatePickerStep/DatePickerStep.js +2 -13
- package/dist/FormComponents/Step/DatePickerStep/MaterialDatePickerStep/MaterialDatePickerStep.js +6 -21
- package/dist/FormComponents/Step/FileUploadStep/FileUploadStep.js +2 -13
- package/dist/FormComponents/Step/FileUploadStep/MaterialFileUploadStep/FileComponent/FileComponent.js +27 -88
- package/dist/FormComponents/Step/FileUploadStep/MaterialFileUploadStep/MaterialFileUploadStep.js +81 -171
- package/dist/FormComponents/Step/RatingStep/MaterialRatingStep/MaterialRatingStep.js +15 -41
- package/dist/FormComponents/Step/RatingStep/RatingStep.js +2 -13
- package/dist/FormComponents/Step/SelectorStep/MaterialSelectorStep/MaterialSelectorStep.js +25 -52
- package/dist/FormComponents/Step/SelectorStep/SelectorStep.js +3 -26
- package/dist/FormComponents/Step/SeparatorStep/MaterialSeparatorStep/MaterialSeparatorStep.js +1 -2
- package/dist/FormComponents/Step/SeparatorStep/SeparatorStep.js +3 -26
- package/dist/FormComponents/Step/SmartSelectStep/MaterialSmartSelectStep/MaterialSmartSelectStep.js +83 -145
- package/dist/FormComponents/Step/SmartSelectStep/SmartSelectStep.js +2 -13
- package/dist/FormComponents/Step/Step.js +19 -39
- package/dist/FormComponents/Step/StepFunctions.js +14 -16
- package/dist/FormComponents/Step/TextAreaStep/MaterialTextAreaStep/MaterialTextAreaStep.js +43 -62
- package/dist/FormComponents/Step/TextAreaStep/TextAreaStep.js +2 -13
- package/dist/FormComponents/Step/TextInputStep/MaterialTextInputStep/MaterialTextInputStep.js +6 -21
- package/dist/FormComponents/Step/TextInputStep/TextInputStep.js +2 -13
- package/dist/FormComponents/Step/TitleStep/MaterialTitleStep/MaterialTitleStep.js +3 -15
- package/dist/FormComponents/Step/TitleStep/TitleStep.js +3 -26
- package/dist/FormComponents/Term/MaterialTerm/MaterialTerm.js +19 -35
- package/dist/FormComponents/Term/Term.js +2 -13
- package/dist/Widget.js +13 -25
- package/dist/constants/Files/FileExtensions.js +3 -3
- package/dist/constants/Files/FileMaxSize.js +1 -1
- package/dist/constants/InternalFormStyle.js +1 -1
- package/dist/constants/MaterialClassNameSeed.js +1 -1
- package/dist/controllers/FileService.js +29 -86
- package/dist/index.js +4 -15
- package/dist/shared/Loader/Loader.js +5 -17
- package/dist/shared/Navbar/Navbar.js +2 -14
- package/dist/shared/Rating/Rating.js +4 -27
- package/dist/shared/Rating/Ratings/LikeRating.js +9 -21
- package/dist/shared/Rating/Ratings/SatisfactionRating.js +15 -27
- package/dist/shared/Rating/Ratings/ScaleRating.js +22 -49
- package/dist/shared/RoundedButton/RoundedButton.js +12 -24
- package/dist/shared/RoundedCheckBox/RoundedCheckBox.js +39 -84
- package/dist/shared/RoundedDatePicker/RoundedDatePicker.js +235 -286
- package/dist/shared/RoundedSelect/RoundedSelect.js +103 -152
- package/dist/shared/RoundedSmartSelect/RoundedSmartSelect.js +125 -160
- package/dist/shared/RoundedTextField/RoundedTextField.js +92 -137
- package/dist/utils/CbrFunctions.js +30 -30
- package/package.json +4 -4
|
@@ -1,146 +1,106 @@
|
|
|
1
|
-
var __extends = (this && this.__extends) || (function () {
|
|
2
|
-
var extendStatics = function (d, b) {
|
|
3
|
-
extendStatics = Object.setPrototypeOf ||
|
|
4
|
-
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
5
|
-
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
|
|
6
|
-
return extendStatics(d, b);
|
|
7
|
-
};
|
|
8
|
-
return function (d, b) {
|
|
9
|
-
if (typeof b !== "function" && b !== null)
|
|
10
|
-
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
|
|
11
|
-
extendStatics(d, b);
|
|
12
|
-
function __() { this.constructor = d; }
|
|
13
|
-
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
14
|
-
};
|
|
15
|
-
})();
|
|
16
|
-
var __assign = (this && this.__assign) || function () {
|
|
17
|
-
__assign = Object.assign || function(t) {
|
|
18
|
-
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
19
|
-
s = arguments[i];
|
|
20
|
-
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
|
|
21
|
-
t[p] = s[p];
|
|
22
|
-
}
|
|
23
|
-
return t;
|
|
24
|
-
};
|
|
25
|
-
return __assign.apply(this, arguments);
|
|
26
|
-
};
|
|
27
|
-
var __rest = (this && this.__rest) || function (s, e) {
|
|
28
|
-
var t = {};
|
|
29
|
-
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
|
|
30
|
-
t[p] = s[p];
|
|
31
|
-
if (s != null && typeof Object.getOwnPropertySymbols === "function")
|
|
32
|
-
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
|
|
33
|
-
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
|
|
34
|
-
t[p[i]] = s[p[i]];
|
|
35
|
-
}
|
|
36
|
-
return t;
|
|
37
|
-
};
|
|
38
1
|
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
39
2
|
import React from 'react';
|
|
40
3
|
import { makeStyles } from '@material-ui/core/styles';
|
|
41
4
|
import TextField from '@material-ui/core/TextField';
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
5
|
+
const useTextfieldStyles = (props) => makeStyles(() => ({
|
|
6
|
+
root: {
|
|
7
|
+
borderRadius: props.borderRadius,
|
|
8
|
+
backgroundColor: props.backgroundColor,
|
|
9
|
+
'& input, textarea': {
|
|
10
|
+
cursor: props.cantEdit ? 'default' : 'text',
|
|
11
|
+
padding: props.multiline ? props.padding : props.padding,
|
|
12
|
+
fontWeight: props.fontWeight,
|
|
13
|
+
color: props.textColor,
|
|
14
|
+
fontSize: props.fontSize,
|
|
15
|
+
'&::placeholder': {
|
|
52
16
|
fontSize: props.fontSize,
|
|
53
|
-
'&::placeholder': {
|
|
54
|
-
fontSize: props.fontSize,
|
|
55
|
-
},
|
|
56
|
-
backgroundColor: props.innerBackgroundColor,
|
|
57
|
-
borderRadius: props.borderRadius,
|
|
58
|
-
},
|
|
59
|
-
'& label': {
|
|
60
|
-
marginTop: props.multiline ? '0px' : '-4px',
|
|
61
|
-
fontSize: props.fontSize,
|
|
62
|
-
whiteSpace: 'nowrap',
|
|
63
|
-
overflow: 'hidden',
|
|
64
|
-
textOverflow: 'ellipsis',
|
|
65
|
-
maxWidth: 'calc(100% - 22px)',
|
|
66
|
-
},
|
|
67
|
-
'& label.EF-MuiInputLabel-shrink': {
|
|
68
|
-
marginTop: '0px',
|
|
69
|
-
maxWidth: 'calc(100% - 5px)',
|
|
70
17
|
},
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
18
|
+
backgroundColor: props.innerBackgroundColor,
|
|
19
|
+
borderRadius: props.borderRadius,
|
|
20
|
+
},
|
|
21
|
+
'& label': {
|
|
22
|
+
marginTop: props.multiline ? '0px' : '-4px',
|
|
23
|
+
fontSize: props.fontSize,
|
|
24
|
+
whiteSpace: 'nowrap',
|
|
25
|
+
overflow: 'hidden',
|
|
26
|
+
textOverflow: 'ellipsis',
|
|
27
|
+
maxWidth: 'calc(100% - 22px)',
|
|
28
|
+
},
|
|
29
|
+
'& label.EF-MuiInputLabel-shrink': {
|
|
30
|
+
marginTop: '0px',
|
|
31
|
+
maxWidth: 'calc(100% - 5px)',
|
|
32
|
+
},
|
|
33
|
+
'& input + fieldset': {
|
|
34
|
+
borderRadius: props.borderRadius,
|
|
35
|
+
},
|
|
36
|
+
'& .EF-MuiInput-underline:after': {
|
|
37
|
+
borderBottomColor: props.outlineColor,
|
|
38
|
+
},
|
|
39
|
+
'& .EF-MuiOutlinedInput-root': {
|
|
40
|
+
borderRadius: props.borderRadius,
|
|
41
|
+
'&.Mui-focused fieldset': {
|
|
42
|
+
borderColor: props.focusColor,
|
|
43
|
+
borderWidth: props.readOnly ? 1 : 2,
|
|
76
44
|
},
|
|
77
|
-
'& .EF-MuiOutlinedInput-
|
|
78
|
-
|
|
79
|
-
'
|
|
80
|
-
|
|
81
|
-
borderWidth: props.readOnly ? 1 : 2,
|
|
82
|
-
},
|
|
83
|
-
'& .EF-MuiOutlinedInput-notchedOutline': {
|
|
84
|
-
borderColor: props.outlineColor,
|
|
85
|
-
'& legend': {
|
|
86
|
-
fontSize: 'calc(' + props.fontSize + ' * 0.75)',
|
|
87
|
-
},
|
|
45
|
+
'& .EF-MuiOutlinedInput-notchedOutline': {
|
|
46
|
+
borderColor: props.outlineColor,
|
|
47
|
+
'& legend': {
|
|
48
|
+
fontSize: 'calc(' + props.fontSize + ' * 0.75)',
|
|
88
49
|
},
|
|
89
50
|
},
|
|
90
|
-
'& .EF-MuiOutlinedInput-root:hover .EF-MuiOutlinedInput-notchedOutline': {
|
|
91
|
-
borderColor: props.cantEdit
|
|
92
|
-
? props.outlineColor
|
|
93
|
-
: props.focusColor,
|
|
94
|
-
},
|
|
95
|
-
'& label.Mui-focused': {
|
|
96
|
-
color: props.focusColor,
|
|
97
|
-
},
|
|
98
|
-
'& .Mui-error': {
|
|
99
|
-
color: props.errorColor,
|
|
100
|
-
},
|
|
101
|
-
'& .EF-MuiOutlinedInput-adornedEnd': {
|
|
102
|
-
paddingRight: '7px',
|
|
103
|
-
},
|
|
104
|
-
'& .EF-MuiFormHelperText-root': {
|
|
105
|
-
color: props.helperTextColor,
|
|
106
|
-
marginRight: props.maxLength ? 40 : 14,
|
|
107
|
-
},
|
|
108
|
-
'& .EF-MuiOutlinedInput-multiline': {
|
|
109
|
-
padding: 0,
|
|
110
|
-
backgroundColor: props.innerBackgroundColor,
|
|
111
|
-
},
|
|
112
51
|
},
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
52
|
+
'& .EF-MuiOutlinedInput-root:hover .EF-MuiOutlinedInput-notchedOutline': {
|
|
53
|
+
borderColor: props.cantEdit
|
|
54
|
+
? props.outlineColor
|
|
55
|
+
: props.focusColor,
|
|
56
|
+
},
|
|
57
|
+
'& label.Mui-focused': {
|
|
58
|
+
color: props.focusColor,
|
|
59
|
+
},
|
|
60
|
+
'& .Mui-error': {
|
|
61
|
+
color: props.errorColor,
|
|
62
|
+
},
|
|
63
|
+
'& .EF-MuiOutlinedInput-adornedEnd': {
|
|
64
|
+
paddingRight: '7px',
|
|
65
|
+
},
|
|
66
|
+
'& .EF-MuiFormHelperText-root': {
|
|
67
|
+
color: props.helperTextColor,
|
|
68
|
+
marginRight: props.maxLength ? 40 : 14,
|
|
69
|
+
},
|
|
70
|
+
'& .EF-MuiOutlinedInput-multiline': {
|
|
71
|
+
padding: 0,
|
|
72
|
+
backgroundColor: props.innerBackgroundColor,
|
|
73
|
+
},
|
|
74
|
+
},
|
|
75
|
+
}));
|
|
76
|
+
function CustomTextfield({ focusColor = '#3d5a7f', helperTextColor = '#989898', outlineColor = '#0000003b', backgroundColor = 'transparent', innerBackgroundColor = 'white', textColor = '#293241', readOnly = false, borderRadius = 10, padding = '6px 12px', fontSize = '1rem', errorColor = '#cc2936', fontWeight = '300', multiline = false, cantEdit = false, maxLength, value, icon, ...others }) {
|
|
77
|
+
const classes = useTextfieldStyles({
|
|
78
|
+
padding,
|
|
79
|
+
textColor,
|
|
80
|
+
errorColor,
|
|
81
|
+
focusColor,
|
|
82
|
+
outlineColor,
|
|
83
|
+
innerBackgroundColor: innerBackgroundColor ?? backgroundColor,
|
|
84
|
+
helperTextColor,
|
|
85
|
+
backgroundColor,
|
|
86
|
+
borderRadius,
|
|
87
|
+
readOnly,
|
|
88
|
+
fontSize,
|
|
89
|
+
fontWeight,
|
|
90
|
+
multiline,
|
|
91
|
+
cantEdit,
|
|
92
|
+
maxLength,
|
|
133
93
|
})();
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
readOnly
|
|
94
|
+
const length = maxLength ? value.length : null;
|
|
95
|
+
const inputProps = {
|
|
96
|
+
readOnly,
|
|
137
97
|
disabled: cantEdit,
|
|
138
98
|
endAdornment: icon,
|
|
139
99
|
};
|
|
140
100
|
if (maxLength) {
|
|
141
|
-
inputProps.inputProps = { maxLength
|
|
101
|
+
inputProps.inputProps = { maxLength };
|
|
142
102
|
}
|
|
143
|
-
return (_jsxs("div",
|
|
103
|
+
return (_jsxs("div", { style: { position: 'relative', width: '100%', maxWidth: '100%' }, children: [_jsx(TextField, { classes: classes, ...others, value: value ?? '', multiline: multiline, variant: "outlined", size: "small", fullWidth: true, InputProps: inputProps }), length !== null && (_jsxs("div", { style: others.helperText
|
|
144
104
|
? {
|
|
145
105
|
position: 'absolute',
|
|
146
106
|
bottom: '3px',
|
|
@@ -155,19 +115,14 @@ function CustomTextfield(_a) {
|
|
|
155
115
|
paddingRight: '8px',
|
|
156
116
|
paddingTop: '2px',
|
|
157
117
|
paddingBottom: '2px',
|
|
158
|
-
}
|
|
118
|
+
}, children: [length, "/", maxLength] }))] }));
|
|
159
119
|
}
|
|
160
120
|
/**
|
|
161
121
|
* Generic textfield with apps designs. Is class do to the use in the react-hook-forms library
|
|
162
122
|
*/
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
return _super !== null && _super.apply(this, arguments) || this;
|
|
123
|
+
class RoundedTextField extends React.Component {
|
|
124
|
+
render() {
|
|
125
|
+
return _jsx(CustomTextfield, { ...this.props });
|
|
167
126
|
}
|
|
168
|
-
|
|
169
|
-
return _jsx(CustomTextfield, __assign({}, this.props));
|
|
170
|
-
};
|
|
171
|
-
return RoundedTextField;
|
|
172
|
-
}(React.Component));
|
|
127
|
+
}
|
|
173
128
|
export default RoundedTextField;
|
|
@@ -1,25 +1,11 @@
|
|
|
1
|
-
var __assign = (this && this.__assign) || function () {
|
|
2
|
-
__assign = Object.assign || function(t) {
|
|
3
|
-
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
4
|
-
s = arguments[i];
|
|
5
|
-
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
|
|
6
|
-
t[p] = s[p];
|
|
7
|
-
}
|
|
8
|
-
return t;
|
|
9
|
-
};
|
|
10
|
-
return __assign.apply(this, arguments);
|
|
11
|
-
};
|
|
12
1
|
import CBRFormStepTypes from '../constants/CBRFormStepTypes';
|
|
13
|
-
export
|
|
14
|
-
|
|
15
|
-
for (var _i = 0, _b = Object.values(form.steps); _i < _b.length; _i++) {
|
|
16
|
-
var step = _b[_i];
|
|
2
|
+
export const calcCbrForm = (form, formValues) => {
|
|
3
|
+
for (let step of Object.values(form.steps)) {
|
|
17
4
|
if (step.type === CBRFormStepTypes.CBR_INCIDENCIAS) {
|
|
18
|
-
|
|
19
|
-
|
|
5
|
+
const incidentStep = step;
|
|
6
|
+
const incValue = formValues[incidentStep.id ?? ''];
|
|
20
7
|
if (incValue) {
|
|
21
|
-
for (
|
|
22
|
-
var incident = incValue_1[_c];
|
|
8
|
+
for (const incident of incValue) {
|
|
23
9
|
handleAddIncident(incident, incidentStep, form.steps, formValues);
|
|
24
10
|
}
|
|
25
11
|
}
|
|
@@ -27,24 +13,38 @@ export var calcCbrForm = function (form, formValues) {
|
|
|
27
13
|
}
|
|
28
14
|
return form;
|
|
29
15
|
};
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
16
|
+
const handleAddIncident = (incident, step, steps, formValues) => {
|
|
17
|
+
const spaceStep = {
|
|
18
|
+
...step.spaceStep,
|
|
19
|
+
id: incident.idSpaceStep,
|
|
20
|
+
type: CBRFormStepTypes.CBR_TIPO_ESPACIO,
|
|
21
|
+
dependencies: step.dependencies,
|
|
22
|
+
};
|
|
33
23
|
steps[incident.idSpaceStep] = spaceStep;
|
|
34
|
-
|
|
24
|
+
const commentStep = {
|
|
25
|
+
...step.commentStep,
|
|
26
|
+
id: incident.idCommentStep,
|
|
27
|
+
type: CBRFormStepTypes.CBR_COMENTARIO,
|
|
28
|
+
};
|
|
35
29
|
steps[incident.idCommentStep] = commentStep;
|
|
36
|
-
addRecursiveElementStep(incident.idElementStep, step.elementStep, null, steps,
|
|
30
|
+
addRecursiveElementStep(incident.idElementStep, step.elementStep, null, steps, step.dependencies?.[0] ?? '', formValues);
|
|
37
31
|
};
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
32
|
+
const addRecursiveElementStep = (idStep, step, idParent, steps, idProjectDep, formValues) => {
|
|
33
|
+
const idSubStep = formValues[idStep]?.subStep;
|
|
34
|
+
const newSubStep = step.subStep ? { ...step.subStep } : undefined;
|
|
35
|
+
const newStep = {
|
|
36
|
+
...step,
|
|
37
|
+
id: idStep,
|
|
38
|
+
type: CBRFormStepTypes.CBR_LOCATIVAS,
|
|
39
|
+
parentStep: idParent,
|
|
40
|
+
dependencies: [idProjectDep],
|
|
41
|
+
subStep: null,
|
|
42
|
+
};
|
|
43
43
|
if (newSubStep) {
|
|
44
44
|
newStep.subStep = idSubStep;
|
|
45
45
|
}
|
|
46
46
|
if (idParent) {
|
|
47
|
-
|
|
47
|
+
newStep.dependencies?.push?.(idParent);
|
|
48
48
|
}
|
|
49
49
|
steps[idStep] = newStep;
|
|
50
50
|
if (newSubStep) {
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@arquimedes.co/eureka-forms",
|
|
3
3
|
"repository": "git://github.com/Arquimede5/Eureka-Forms.git",
|
|
4
|
-
"version":
|
|
4
|
+
"version":"1.9.17-test",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"start": "react-scripts start",
|
|
7
7
|
"build": "react-scripts build",
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
"react-hook-form": "^7.6.4",
|
|
29
29
|
"react-router-dom": "^5.2.0",
|
|
30
30
|
"react-scripts": "5.0.1",
|
|
31
|
-
"typescript": "^4.
|
|
31
|
+
"typescript": "^4.9.5"
|
|
32
32
|
},
|
|
33
33
|
"eslintConfig": {
|
|
34
34
|
"extends": [
|
|
@@ -58,8 +58,8 @@
|
|
|
58
58
|
"@types/react-dom": "^17.0.9",
|
|
59
59
|
"@types/react-draft-wysiwyg": "^1.13.3",
|
|
60
60
|
"@types/react-router-dom": "^5.1.7",
|
|
61
|
-
"@typescript-eslint/eslint-plugin": "^
|
|
62
|
-
"@typescript-eslint/parser": "^
|
|
61
|
+
"@typescript-eslint/eslint-plugin": "^5.58.0",
|
|
62
|
+
"@typescript-eslint/parser": "^5.58.0",
|
|
63
63
|
"cypress": "^9.5.2",
|
|
64
64
|
"eslint": "^7.27.0",
|
|
65
65
|
"eslint-config-prettier": "^8.3.0",
|