orcs-design-system 3.2.37 → 3.2.39
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/es/assets/Colour/index.js +1 -1
- package/es/components/ActionsMenu/index.js +12 -17
- package/es/components/ActionsMenu/useActionMenu.js +2 -2
- package/es/components/Avatar/index.js +5 -5
- package/es/components/Badge/index.js +1 -1
- package/es/components/Button/index.js +5 -5
- package/es/components/ButtonGroup/index.js +1 -1
- package/es/components/Checkbox/index.js +3 -3
- package/es/components/DatePicker/index.js +2 -2
- package/es/components/Divider/index.js +1 -1
- package/es/components/Header/Header.stories.js +6 -6
- package/es/components/Header/index.js +2 -2
- package/es/components/HeaderSimple/HeaderSimple.stories.js +2 -2
- package/es/components/Icon/index.js +1 -1
- package/es/components/Modal/Modal.stories.js +226 -4
- package/es/components/Modal/index.js +1 -1
- package/es/components/Popover/index.js +7 -5
- package/es/components/ProgressBar/index.js +2 -2
- package/es/components/RadioButton/index.js +2 -2
- package/es/components/Range/index.js +17 -2
- package/es/components/Select/index.js +11 -12
- package/es/components/SideNav/SideNav.stories.js +22 -33
- package/es/components/SideNav/index.js +9 -30
- package/es/components/Sidebar/index.js +1 -1
- package/es/components/StyledLink/StyledLink.stories.js +3 -4
- package/es/components/Table/Table.stories.js +2 -2
- package/es/components/Table/getExpandColumnConfig.js +5 -5
- package/es/components/Table/muiStyleOverrides.js +1 -2
- package/es/components/Tabs/index.js +3 -3
- package/es/components/Tag/index.js +4 -4
- package/es/components/TextArea/index.js +2 -2
- package/es/components/TextInput/index.js +11 -11
- package/es/components.test.js +72 -1
- package/es/systemThemeCollapsed.js +9 -9
- package/es/systemtheme.js +9 -9
- package/es/utils/floatingUiHelpers.js +3 -8
- package/package.json +18 -13
|
@@ -24,23 +24,23 @@ const IconWrapper = styled.label.withConfig({
|
|
|
24
24
|
componentId: "sc-shde0o-1"
|
|
25
25
|
})(["display:flex;align-items:center;position:relative;svg{opacity:0.4;position:absolute;}", ";"], props => props.iconLeft && !props.floating ? css(["svg{bottom:", ";left:12px;}"], props => {
|
|
26
26
|
let inputHeight = themeGet("appScale.inputHeightDefault")(props);
|
|
27
|
-
return
|
|
27
|
+
return `calc(${inputHeight} / 3 - 1px)`;
|
|
28
28
|
}) : props.iconLeft && props.floating ? css(["svg{bottom:", ";left:12px;}"], props => {
|
|
29
29
|
let inputHeight = themeGet("appScale.inputHeightDefault")(props);
|
|
30
|
-
return
|
|
30
|
+
return `calc(${inputHeight} / 2 + 3px)`;
|
|
31
31
|
}) : props.iconRight && !props.floating ? css(["svg{bottom:", ";right:12px;}"], props => {
|
|
32
32
|
let inputHeight = themeGet("appScale.inputHeightDefault")(props);
|
|
33
|
-
return
|
|
33
|
+
return `calc(${inputHeight} / 3 - 1px)`;
|
|
34
34
|
}) : props.iconRight && props.floating ? css(["svg{bottom:", ";right:12px;}"], props => {
|
|
35
35
|
let inputHeight = themeGet("appScale.inputHeightDefault")(props);
|
|
36
|
-
return
|
|
36
|
+
return `calc(${inputHeight} / 2 + 3px)`;
|
|
37
37
|
}) : css([""]));
|
|
38
|
-
const InputStyle = css(["display:block;cursor:text;-moz-appearance:none;-webkit-appearance:none;appearance:none;font-family:\"Open Sans\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;box-shadow:none;font-size:", ";z-index:1;border-radius:", ";transition:", ";background:", ";color:", ";width:", ";height:", ";padding:", ";border:1px solid ", ";", " &:hover{border:1px solid ", ";}&:focus{outline:0;box-shadow:", ";border:1px solid ", ";", ";}"], props => themeGet("fontSizes.2")(props), props => themeGet("radii.2")(props), props => themeGet("transition.transitionDefault")(props), props => props.disabled ? themeGet("colors.greyLightest")(props) : themeGet("colors.white")(props), props => props.disabled ? themeGet("colors.grey")(props) : themeGet("colors.greyDarkest")(props), props => props.fullWidth ?
|
|
38
|
+
const InputStyle = css(["display:block;cursor:text;-moz-appearance:none;-webkit-appearance:none;appearance:none;font-family:\"Open Sans\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;box-shadow:none;font-size:", ";z-index:1;border-radius:", ";transition:", ";background:", ";color:", ";width:", ";height:", ";padding:", ";border:1px solid ", ";", " &:hover{border:1px solid ", ";}&:focus{outline:0;box-shadow:", ";border:1px solid ", ";", ";}"], props => themeGet("fontSizes.2")(props), props => themeGet("radii.2")(props), props => themeGet("transition.transitionDefault")(props), props => props.disabled ? themeGet("colors.greyLightest")(props) : themeGet("colors.white")(props), props => props.disabled ? themeGet("colors.grey")(props) : themeGet("colors.greyDarkest")(props), props => props.fullWidth ? `100%` : `auto`, props => props.height ? props.height : props.floating ? themeGet("appScale.inputHeightLarge")(props) : themeGet("appScale.inputHeightDefault")(props), props => {
|
|
39
39
|
let left = props.iconLeft ? 36 : 10;
|
|
40
40
|
let right = props.iconRight ? 36 : 10;
|
|
41
41
|
let top = props.floating ? 25 : 5;
|
|
42
42
|
let bottom = 6;
|
|
43
|
-
return
|
|
43
|
+
return `${top}px ${right}px ${bottom}px ${left}px`;
|
|
44
44
|
}, props => props.invalid ? themeGet("colors.danger")(props) : props.valid ? themeGet("colors.success")(props) : themeGet("colors.black30")(props), props => props.floating ? css(["&::placeholder{color:transparent;}&:not(:placeholder-shown){~ label{transform:translateY(-10px);font-size:", ";}}&:-ms-input-placeholder:not(:focus){~ label{transform:translateY(-10px);font-size:", ";}}&:not(:-ms-input-placeholder){~ label{transform:translateY(-10px);font-size:", ";}}"], themeGet("fontSizes.0")(props), themeGet("fontSizes.0")(props), themeGet("fontSizes.0")(props)) : css(["&::placeholder{color:", ";}"], themeGet("colors.grey")(props)), props => props.invalid ? themeGet("colors.dangerDark")(props) : props.valid ? themeGet("colors.successDark")(props) : themeGet("colors.primary")(props), props => props.invalid ? themeGet("shadows.thickOutline")(props) + " " + themeGet("colors.danger30")(props) : props.valid ? themeGet("shadows.thickOutline")(props) + " " + themeGet("colors.success30")(props) : themeGet("shadows.thickOutline")(props) + " " + themeGet("colors.primary30")(props), props => props.invalid ? themeGet("colors.dangerDark")(props) : props.valid ? themeGet("colors.successDark")(props) : themeGet("colors.primary")(props), props => props.floating ? css(["&::placeholder{color:", ";}~ label{transform:translateY(-10px);font-size:", ";color:", ";}"], themeGet("colors.greyLight")(props), themeGet("fontSizes.0")(props), props => props.invalid ? themeGet("colors.dangerDark")(props) : props.valid ? themeGet("colors.successDark")(props) : themeGet("colors.primary")(props)) : css([""]));
|
|
45
45
|
const Input = styled("input").attrs(props => ({
|
|
46
46
|
"data-testid": props["data-testid"] ? props["data-testid"] : null
|
|
@@ -57,9 +57,9 @@ const NumberInput = styled(NumericFormat).attrs(props => ({
|
|
|
57
57
|
const Label = styled.label.withConfig({
|
|
58
58
|
displayName: "TextInput__Label",
|
|
59
59
|
componentId: "sc-shde0o-4"
|
|
60
|
-
})(["display:block;z-index:2;text-align:left;font-size:", ";font-weight:", ";transition:", ";padding-right:", ";margin-bottom:", ";color:", ";", ";", ";"], props => themeGet("fontSizes.1")(props), props => props.bold ? themeGet("fontWeights.2")(props) : themeGet("fontWeights.1")(props), props => themeGet("transition.transitionDefault")(props), props => props.floating && props.iconRight ?
|
|
60
|
+
})(["display:block;z-index:2;text-align:left;font-size:", ";font-weight:", ";transition:", ";padding-right:", ";margin-bottom:", ";color:", ";", ";", ";"], props => themeGet("fontSizes.1")(props), props => props.bold ? themeGet("fontWeights.2")(props) : themeGet("fontWeights.1")(props), props => themeGet("transition.transitionDefault")(props), props => props.floating && props.iconRight ? `40px` : `12px`, props => props.floating ? 0 : themeGet("space.xs")(props), props => props.inverted ? themeGet("colors.white")(props) : props.valid ? themeGet("colors.successDark")(props) : props.invalid ? themeGet("colors.dangerDark")(props) : themeGet("colors.greyDarkest")(props), props => props.floating ? css(["padding-left:", ";cursor:text;position:absolute;top:", ";color:", ";"], props => props.iconLeft ? "37px" : "11px", props => {
|
|
61
61
|
let inputHeight = themeGet("appScale.inputHeightLarge")(props);
|
|
62
|
-
return
|
|
62
|
+
return `calc(${inputHeight} / 3)`;
|
|
63
63
|
}, props => props.invalid ? themeGet("colors.dangerDark")(props) : props.valid ? themeGet("colors.successDark")(props) : themeGet("colors.greyDark")(props)) : css([""]), props => props.mandatory ? css(["&:after{content:\" *\";color:", ";}"], themeGet("colors.danger")(props)) : css([""]));
|
|
64
64
|
const TextInput = /*#__PURE__*/React.forwardRef((props, ref) => {
|
|
65
65
|
const {
|
|
@@ -91,7 +91,7 @@ const TextInput = /*#__PURE__*/React.forwardRef((props, ref) => {
|
|
|
91
91
|
}
|
|
92
92
|
const label = useMemo(() => {
|
|
93
93
|
if (numberProps && numberProps.prefix) {
|
|
94
|
-
return
|
|
94
|
+
return `${props.label} ${numberProps.prefix}`;
|
|
95
95
|
}
|
|
96
96
|
return props.label;
|
|
97
97
|
}, [props.label, numberProps]);
|
|
@@ -166,10 +166,10 @@ TextInput.propTypes = {
|
|
|
166
166
|
/** Specifies aria-label for TextArea. This is only required if not using the label prop.*/
|
|
167
167
|
ariaLabel: (props, propName) => {
|
|
168
168
|
if (!props.label && (props[propName] == null || props[propName] === "")) {
|
|
169
|
-
return new Error(
|
|
169
|
+
return new Error(`Missing prop \`${propName}\` not specified for TextInput component. When \`label\` is not provided, \`${propName}\` is required.`);
|
|
170
170
|
}
|
|
171
171
|
if (props[propName] && typeof props[propName] !== "string") {
|
|
172
|
-
return new Error(
|
|
172
|
+
return new Error(`Invalid propType \`${propName}\` supplied to TextInput component. Expected \`string\`, received \`${typeof props[propName]}\`.`);
|
|
173
173
|
}
|
|
174
174
|
return null;
|
|
175
175
|
},
|
package/es/components.test.js
CHANGED
|
@@ -1,4 +1,75 @@
|
|
|
1
1
|
import * as components from ".";
|
|
2
2
|
test("all components exported", () => {
|
|
3
|
-
expect(Object.keys(components)).toMatchInlineSnapshot(
|
|
3
|
+
expect(Object.keys(components)).toMatchInlineSnapshot(`
|
|
4
|
+
Array [
|
|
5
|
+
"ActionsMenu",
|
|
6
|
+
"ActionsMenuBody",
|
|
7
|
+
"ActionsMenuHeading",
|
|
8
|
+
"ActionsMenuItem",
|
|
9
|
+
"Avatar",
|
|
10
|
+
"Badge",
|
|
11
|
+
"Box",
|
|
12
|
+
"Button",
|
|
13
|
+
"ButtonGroupContainer",
|
|
14
|
+
"ButtonGroupItem",
|
|
15
|
+
"ButtonLink",
|
|
16
|
+
"Card",
|
|
17
|
+
"Checkbox",
|
|
18
|
+
"Code",
|
|
19
|
+
"DatePicker",
|
|
20
|
+
"Divider",
|
|
21
|
+
"Expandable",
|
|
22
|
+
"Flex",
|
|
23
|
+
"FlexItem",
|
|
24
|
+
"GlobalStyles",
|
|
25
|
+
"Grid",
|
|
26
|
+
"GridItem",
|
|
27
|
+
"H1",
|
|
28
|
+
"H2",
|
|
29
|
+
"H3",
|
|
30
|
+
"H4",
|
|
31
|
+
"H5",
|
|
32
|
+
"H6",
|
|
33
|
+
"Header",
|
|
34
|
+
"HeaderSimple",
|
|
35
|
+
"Icon",
|
|
36
|
+
"Loading",
|
|
37
|
+
"Modal",
|
|
38
|
+
"Notification",
|
|
39
|
+
"P",
|
|
40
|
+
"Popover",
|
|
41
|
+
"ProgressBar",
|
|
42
|
+
"Quote",
|
|
43
|
+
"RadioButton",
|
|
44
|
+
"Range",
|
|
45
|
+
"Select",
|
|
46
|
+
"SideNav",
|
|
47
|
+
"Sidebar",
|
|
48
|
+
"SidebarClose",
|
|
49
|
+
"SidebarPanel",
|
|
50
|
+
"SidebarPanels",
|
|
51
|
+
"SidebarTab",
|
|
52
|
+
"SidebarTabs",
|
|
53
|
+
"Small",
|
|
54
|
+
"Spacer",
|
|
55
|
+
"StatusDot",
|
|
56
|
+
"StyledLink",
|
|
57
|
+
"SystemThemeProvider",
|
|
58
|
+
"Tab",
|
|
59
|
+
"Table",
|
|
60
|
+
"TabsContainer",
|
|
61
|
+
"Tag",
|
|
62
|
+
"Text",
|
|
63
|
+
"TextArea",
|
|
64
|
+
"TextInput",
|
|
65
|
+
"Toggle",
|
|
66
|
+
"TreeNav",
|
|
67
|
+
"Typography",
|
|
68
|
+
"VARIANT_COLORS",
|
|
69
|
+
"getOptionByValue",
|
|
70
|
+
"styleLink",
|
|
71
|
+
"systemThemeCollapsed",
|
|
72
|
+
"systemtheme",
|
|
73
|
+
]
|
|
74
|
+
`);
|
|
4
75
|
});
|
|
@@ -190,9 +190,9 @@ export const borderWidths = [0, "1px", "2px", "3px"];
|
|
|
190
190
|
|
|
191
191
|
// SHADOWS
|
|
192
192
|
export const shadows = {
|
|
193
|
-
boxDefault:
|
|
194
|
-
thinOutline:
|
|
195
|
-
thickOutline:
|
|
193
|
+
boxDefault: `0 2px 5px 0 ${colors.black10}`,
|
|
194
|
+
thinOutline: `0 0 0 1px`,
|
|
195
|
+
thickOutline: `0 0 0 3px`
|
|
196
196
|
};
|
|
197
197
|
|
|
198
198
|
// ANIMATION
|
|
@@ -203,12 +203,12 @@ export const transition = {
|
|
|
203
203
|
// RESPONSIVE MEDIA BREAKPOINTS
|
|
204
204
|
export const breakpoints = ["450px", "675px", "900px", "1100px", "1400px", "1900px"];
|
|
205
205
|
export const mediaQueries = {
|
|
206
|
-
screenXS:
|
|
207
|
-
screenS:
|
|
208
|
-
screenM:
|
|
209
|
-
screenL:
|
|
210
|
-
screenXL:
|
|
211
|
-
screenXXL:
|
|
206
|
+
screenXS: `@media screen and (min-width: ${breakpoints[0]})`,
|
|
207
|
+
screenS: `@media screen and (min-width: ${breakpoints[1]})`,
|
|
208
|
+
screenM: `@media screen and (min-width: ${breakpoints[2]})`,
|
|
209
|
+
screenL: `@media screen and (min-width: ${breakpoints[3]})`,
|
|
210
|
+
screenXL: `@media screen and (min-width: ${breakpoints[4]})`,
|
|
211
|
+
screenXXL: `@media screen and (min-width: ${breakpoints[5]})`
|
|
212
212
|
};
|
|
213
213
|
|
|
214
214
|
// APP-SPECIFIC DIMENSIONS
|
package/es/systemtheme.js
CHANGED
|
@@ -189,9 +189,9 @@ export const borderWidths = [0, "1px", "2px", "3px"];
|
|
|
189
189
|
|
|
190
190
|
// SHADOWS
|
|
191
191
|
export const shadows = {
|
|
192
|
-
boxDefault:
|
|
193
|
-
thinOutline:
|
|
194
|
-
thickOutline:
|
|
192
|
+
boxDefault: `0 2px 5px 0 ${colors.black10}`,
|
|
193
|
+
thinOutline: `0 0 0 1px`,
|
|
194
|
+
thickOutline: `0 0 0 3px`
|
|
195
195
|
};
|
|
196
196
|
|
|
197
197
|
// ANIMATION
|
|
@@ -202,12 +202,12 @@ export const transition = {
|
|
|
202
202
|
// RESPONSIVE MEDIA BREAKPOINTS
|
|
203
203
|
export const breakpoints = ["450px", "675px", "900px", "1100px", "1400px", "1900px"];
|
|
204
204
|
export const mediaQueries = {
|
|
205
|
-
screenXS:
|
|
206
|
-
screenS:
|
|
207
|
-
screenM:
|
|
208
|
-
screenL:
|
|
209
|
-
screenXL:
|
|
210
|
-
screenXXL:
|
|
205
|
+
screenXS: `@media screen and (min-width: ${breakpoints[0]})`,
|
|
206
|
+
screenS: `@media screen and (min-width: ${breakpoints[1]})`,
|
|
207
|
+
screenM: `@media screen and (min-width: ${breakpoints[2]})`,
|
|
208
|
+
screenL: `@media screen and (min-width: ${breakpoints[3]})`,
|
|
209
|
+
screenXL: `@media screen and (min-width: ${breakpoints[4]})`,
|
|
210
|
+
screenXXL: `@media screen and (min-width: ${breakpoints[5]})`
|
|
211
211
|
};
|
|
212
212
|
|
|
213
213
|
// APP-SPECIFIC DIMENSIONS
|
|
@@ -1,20 +1,15 @@
|
|
|
1
1
|
const getFloatingUiZIndex = triggerRef => {
|
|
2
|
-
var _activeModalRef$conta;
|
|
3
2
|
const activeModalRef = document.getElementById("modal-overlay");
|
|
4
|
-
if (activeModalRef && triggerRef.current && activeModalRef
|
|
3
|
+
if (activeModalRef && triggerRef.current && activeModalRef?.contains?.(triggerRef.current)) {
|
|
5
4
|
return 1100;
|
|
6
5
|
}
|
|
7
6
|
return 900;
|
|
8
7
|
};
|
|
9
8
|
const REACT_SELECT_MENU = "react-select-menu";
|
|
10
|
-
const isRenderedInReactSelectMenu = triggerRef =>
|
|
11
|
-
var _document$getElementB, _document$getElementB2;
|
|
12
|
-
return (_document$getElementB = document.getElementById(REACT_SELECT_MENU)) === null || _document$getElementB === void 0 || (_document$getElementB2 = _document$getElementB.contains) === null || _document$getElementB2 === void 0 ? void 0 : _document$getElementB2.call(_document$getElementB, triggerRef.current);
|
|
13
|
-
};
|
|
9
|
+
const isRenderedInReactSelectMenu = triggerRef => document.getElementById(REACT_SELECT_MENU)?.contains?.(triggerRef.current);
|
|
14
10
|
const getFloatingUiRootElement = triggerRef => {
|
|
15
|
-
var _activeModalRef$conta2;
|
|
16
11
|
const activeModalRef = document.getElementById("modal-overlay");
|
|
17
|
-
const isRenderedInModal = activeModalRef
|
|
12
|
+
const isRenderedInModal = activeModalRef?.contains?.(triggerRef.current);
|
|
18
13
|
if (isRenderedInModal) {
|
|
19
14
|
return document.getElementById("modal");
|
|
20
15
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "orcs-design-system",
|
|
3
|
-
"version": "3.2.
|
|
3
|
+
"version": "3.2.39",
|
|
4
4
|
"engines": {
|
|
5
5
|
"node": "20.12.2"
|
|
6
6
|
},
|
|
@@ -47,9 +47,10 @@
|
|
|
47
47
|
"@emotion/react": "^11.11.4",
|
|
48
48
|
"@emotion/styled": "^11.11.5",
|
|
49
49
|
"@floating-ui/react": "^0.26.19",
|
|
50
|
-
"@mui/icons-material": "^
|
|
51
|
-
"@mui/material": "^
|
|
52
|
-
"@mui/
|
|
50
|
+
"@mui/icons-material": "^6.0.2",
|
|
51
|
+
"@mui/material": "^6.0.2",
|
|
52
|
+
"@mui/utils": "^6.0.2",
|
|
53
|
+
"@mui/x-date-pickers": "^7.16.0",
|
|
53
54
|
"@styled-system/css": "^5.1.5",
|
|
54
55
|
"@styled-system/prop-types": "^5.1.5",
|
|
55
56
|
"@styled-system/should-forward-prop": "^5.1.5",
|
|
@@ -59,13 +60,13 @@
|
|
|
59
60
|
"polished": "^3.7.1",
|
|
60
61
|
"prop-types": "^15.6.2",
|
|
61
62
|
"react-app-polyfill": "^2.0.0",
|
|
62
|
-
"react-arborist": "^3.
|
|
63
|
+
"react-arborist": "^3.4.0",
|
|
63
64
|
"react-cool-onclickoutside": "^1.5.9",
|
|
64
65
|
"react-dates": "^21.8.0",
|
|
65
66
|
"react-intersection-observer": "^9.4.3",
|
|
66
67
|
"react-moment-proptypes": "^1.8.1",
|
|
67
68
|
"react-number-format": "^5.3.0",
|
|
68
|
-
"react-router-dom": "^
|
|
69
|
+
"react-router-dom": "^6.26.2",
|
|
69
70
|
"react-select": "^5.7.4",
|
|
70
71
|
"styled-system": "^5.1.5"
|
|
71
72
|
},
|
|
@@ -78,10 +79,10 @@
|
|
|
78
79
|
"@babel/preset-react": "^7.12.10",
|
|
79
80
|
"@babel/runtime": "^7.12.5",
|
|
80
81
|
"@chromatic-com/storybook": "^1.5.0",
|
|
81
|
-
"@fortawesome/fontawesome-svg-core": "
|
|
82
|
+
"@fortawesome/fontawesome-svg-core": "file:libs/fortawesome-fontawesome-svg-core-1.3.0.tgz",
|
|
82
83
|
"@fortawesome/free-regular-svg-icons": "^5.15.1",
|
|
83
84
|
"@fortawesome/free-solid-svg-icons": "^5.15.1",
|
|
84
|
-
"@fortawesome/react-fontawesome": "
|
|
85
|
+
"@fortawesome/react-fontawesome": "git://github.com/FortAwesome/react-fontawesome.git#0.1.13",
|
|
85
86
|
"@mdx-js/loader": "^2.3.0",
|
|
86
87
|
"@mdx-js/react": "^2.3.0",
|
|
87
88
|
"@storybook/addon-a11y": "^8.1.7",
|
|
@@ -98,7 +99,7 @@
|
|
|
98
99
|
"@storybook/mdx1-csf": "^1.0.0",
|
|
99
100
|
"@storybook/preset-create-react-app": "^8.1.7",
|
|
100
101
|
"@storybook/react": "^8.1.7",
|
|
101
|
-
"@storybook/react-webpack5": "^8.
|
|
102
|
+
"@storybook/react-webpack5": "^8.2.9",
|
|
102
103
|
"@storybook/storybook-deployer": "2.8.16",
|
|
103
104
|
"@storybook/theming": "^8.1.7",
|
|
104
105
|
"@testing-library/jest-dom": "^5.11.6",
|
|
@@ -143,7 +144,6 @@
|
|
|
143
144
|
"webpack-cli": "^5.1.4"
|
|
144
145
|
},
|
|
145
146
|
"overrides": {
|
|
146
|
-
"@mui/utils": "6.0.0-alpha.9",
|
|
147
147
|
"braces": "3.0.3",
|
|
148
148
|
"eslint-plugin-testing-library": "^5.11.1",
|
|
149
149
|
"jest": "$jest",
|
|
@@ -152,11 +152,16 @@
|
|
|
152
152
|
"postcss": "^8.4.31",
|
|
153
153
|
"react-scripts": "5.0.1",
|
|
154
154
|
"remark-parse": "10.0.2",
|
|
155
|
-
"react": "
|
|
156
|
-
"react-dom": "
|
|
155
|
+
"react": "^18.3.1",
|
|
156
|
+
"react-dom": "^18.3.1",
|
|
157
157
|
"typescript": "5.2.2",
|
|
158
158
|
"webpack-dev-middleware": "6.1.2",
|
|
159
|
-
"ws": "8.17.1"
|
|
159
|
+
"ws": "8.17.1",
|
|
160
|
+
"express": {
|
|
161
|
+
"path-to-regexp": "0.1.10"
|
|
162
|
+
},
|
|
163
|
+
"send": "0.19.0",
|
|
164
|
+
"redux": "4.2.1"
|
|
160
165
|
},
|
|
161
166
|
"browserslist": [
|
|
162
167
|
">0.2%",
|