@manuscripts/style-guide 3.5.31 → 3.6.0
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/README.md +2 -0
- package/dist/cjs/components/Shortcut/index.js +36 -0
- package/dist/cjs/components/StyledModal.js +2 -2
- package/dist/cjs/hooks/use-focus-cycle.js +5 -2
- package/dist/cjs/index.js +2 -1
- package/dist/es/components/Shortcut/index.js +30 -0
- package/dist/es/components/StyledModal.js +2 -2
- package/dist/es/hooks/use-focus-cycle.js +5 -2
- package/dist/es/index.js +2 -1
- package/dist/types/components/Dialog.d.ts +1 -1
- package/dist/types/components/Shortcut/index.d.ts +17 -0
- package/dist/types/components/StyledModal.d.ts +2 -0
- package/dist/types/components/Tooltip.d.ts +1 -1
- package/dist/types/components/icons/add-author.d.ts +2 -1
- package/dist/types/components/icons/add-figure.d.ts +2 -1
- package/dist/types/components/icons/affiliation-placeholder.d.ts +2 -1
- package/dist/types/components/icons/author-placeholder.d.ts +2 -1
- package/dist/types/components/icons/danger.d.ts +2 -1
- package/dist/types/components/icons/section-category.d.ts +2 -1
- package/dist/types/components/icons/x.d.ts +1 -1
- package/dist/types/hooks/use-focus-cycle.d.ts +1 -1
- package/dist/types/index.d.ts +2 -1
- package/package.json +47 -52
package/README.md
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
# Manuscripts Style Guide
|
|
2
|
+
# 2026-06-11 16:44:00
|
|
2
3
|
|
|
3
4
|
React components for Manuscripts applications.
|
|
4
5
|
|
|
@@ -23,3 +24,4 @@ Run `yarn build` to build the `dist` folder for distribution.
|
|
|
23
24
|
Run `yarn dev` to automatically rebuild when a file is changed.
|
|
24
25
|
|
|
25
26
|
If a component needs new theme properties, add the types to `src/theme.ts` and add the corresponding values to `.storybook/theme.ts`.
|
|
27
|
+
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/*!
|
|
3
|
+
* © 2025 Atypon Systems LLC
|
|
4
|
+
*
|
|
5
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
6
|
+
* you may not use this file except in compliance with the License.
|
|
7
|
+
* You may obtain a copy of the License at
|
|
8
|
+
*
|
|
9
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
10
|
+
*
|
|
11
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
12
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
13
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
14
|
+
* See the License for the specific language governing permissions and
|
|
15
|
+
* limitations under the License.
|
|
16
|
+
*/
|
|
17
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
18
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
19
|
+
};
|
|
20
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
21
|
+
exports.ShortcutConnector = exports.Shortcut = void 0;
|
|
22
|
+
const styled_components_1 = __importDefault(require("styled-components"));
|
|
23
|
+
exports.Shortcut = styled_components_1.default.span `
|
|
24
|
+
display: inline-flex;
|
|
25
|
+
align-items: center;
|
|
26
|
+
justify-content: center;
|
|
27
|
+
min-width: 28px;
|
|
28
|
+
height: 28px;
|
|
29
|
+
border-radius: ${({ theme }) => theme.grid.radius.small};
|
|
30
|
+
background: ${({ theme }) => theme.colors.background.primary};
|
|
31
|
+
font-size: ${({ theme }) => theme.font.size.small};
|
|
32
|
+
box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.10), 0 1px 2px -1px rgba(0, 0, 0, 0.10);
|
|
33
|
+
`;
|
|
34
|
+
exports.ShortcutConnector = styled_components_1.default.span `
|
|
35
|
+
padding: 0 ${({ theme }) => theme.grid.unit * 2}px;
|
|
36
|
+
`;
|
|
@@ -40,7 +40,7 @@ const react_dom_1 = require("react-dom");
|
|
|
40
40
|
const styled_components_1 = __importStar(require("styled-components"));
|
|
41
41
|
const Button_1 = require("./Button");
|
|
42
42
|
const Sidebar_1 = require("./Sidebar");
|
|
43
|
-
const StyledModalContent = ({ isOpen, onRequestClose, shouldCloseOnOverlayClick = true, hideOverlay = false, pointerEventsOnBackdrop, children, className, style, }) => {
|
|
43
|
+
const StyledModalContent = ({ isOpen, onRequestClose, shouldCloseOnOverlayClick = true, hideOverlay = false, pointerEventsOnBackdrop, children, className, style, ariaLabelledby, id, }) => {
|
|
44
44
|
const dialogRef = (0, react_1.useRef)(null);
|
|
45
45
|
const closedByCancelRef = (0, react_1.useRef)(false);
|
|
46
46
|
(0, react_1.useEffect)(() => {
|
|
@@ -95,7 +95,7 @@ const StyledModalContent = ({ isOpen, onRequestClose, shouldCloseOnOverlayClick
|
|
|
95
95
|
return ((0, jsx_runtime_1.jsx)(Dialog, { ref: dialogRef, onClick: e => {
|
|
96
96
|
e.stopPropagation();
|
|
97
97
|
handleBackdropClick(e);
|
|
98
|
-
}, "$hideOverlay": hideOverlay, "$pointerEventsOnBackdrop": pointerEventsOnBackdrop, className: className ? `Modal ${className}` : 'Modal', style: style?.content, children: children }));
|
|
98
|
+
}, "$hideOverlay": hideOverlay, "$pointerEventsOnBackdrop": pointerEventsOnBackdrop, className: className ? `Modal ${className}` : 'Modal', style: style?.content, "aria-labelledby": ariaLabelledby ? ariaLabelledby : undefined, id: id ? id : undefined, children: children }));
|
|
99
99
|
};
|
|
100
100
|
exports.StyledModalContent = StyledModalContent;
|
|
101
101
|
const StyledModal = (props) => {
|
|
@@ -43,11 +43,14 @@ function trapFocus(e, element) {
|
|
|
43
43
|
lastElement.focus();
|
|
44
44
|
}
|
|
45
45
|
}
|
|
46
|
-
const useFocusCycle = (containerRef) => {
|
|
46
|
+
const useFocusCycle = (containerRef, enabled = true) => {
|
|
47
47
|
(0, react_1.useEffect)(() => {
|
|
48
|
+
if (!enabled) {
|
|
49
|
+
return;
|
|
50
|
+
}
|
|
48
51
|
const handleKeyDown = (e) => trapFocus(e, containerRef.current);
|
|
49
52
|
document.addEventListener('keydown', handleKeyDown);
|
|
50
53
|
return () => document.removeEventListener('keydown', handleKeyDown);
|
|
51
|
-
}, [containerRef]);
|
|
54
|
+
}, [containerRef, enabled]);
|
|
52
55
|
};
|
|
53
56
|
exports.useFocusCycle = useFocusCycle;
|
package/dist/cjs/index.js
CHANGED
|
@@ -70,8 +70,9 @@ __exportStar(require("./components/Form"), exports);
|
|
|
70
70
|
__exportStar(require("./components/MultiValueInput"), exports);
|
|
71
71
|
__exportStar(require("./components/Resizer"), exports);
|
|
72
72
|
__exportStar(require("./components/SaveStatus"), exports);
|
|
73
|
-
__exportStar(require("./components/
|
|
73
|
+
__exportStar(require("./components/Shortcut"), exports);
|
|
74
74
|
__exportStar(require("./components/Sidebar"), exports);
|
|
75
|
+
__exportStar(require("./components/StyledModal"), exports);
|
|
75
76
|
__exportStar(require("./components/TextField"), exports);
|
|
76
77
|
__exportStar(require("./components/FormFieldContainer"), exports);
|
|
77
78
|
__exportStar(require("./components/FormCommon"), exports);
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
/*!
|
|
2
|
+
* © 2025 Atypon Systems LLC
|
|
3
|
+
*
|
|
4
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
* you may not use this file except in compliance with the License.
|
|
6
|
+
* You may obtain a copy of the License at
|
|
7
|
+
*
|
|
8
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
*
|
|
10
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
* See the License for the specific language governing permissions and
|
|
14
|
+
* limitations under the License.
|
|
15
|
+
*/
|
|
16
|
+
import styled from 'styled-components';
|
|
17
|
+
export const Shortcut = styled.span `
|
|
18
|
+
display: inline-flex;
|
|
19
|
+
align-items: center;
|
|
20
|
+
justify-content: center;
|
|
21
|
+
min-width: 28px;
|
|
22
|
+
height: 28px;
|
|
23
|
+
border-radius: ${({ theme }) => theme.grid.radius.small};
|
|
24
|
+
background: ${({ theme }) => theme.colors.background.primary};
|
|
25
|
+
font-size: ${({ theme }) => theme.font.size.small};
|
|
26
|
+
box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.10), 0 1px 2px -1px rgba(0, 0, 0, 0.10);
|
|
27
|
+
`;
|
|
28
|
+
export const ShortcutConnector = styled.span `
|
|
29
|
+
padding: 0 ${({ theme }) => theme.grid.unit * 2}px;
|
|
30
|
+
`;
|
|
@@ -4,7 +4,7 @@ import { createPortal } from 'react-dom';
|
|
|
4
4
|
import styled, { css } from 'styled-components';
|
|
5
5
|
import { RoundIconButton } from './Button';
|
|
6
6
|
import { SidebarStyles } from './Sidebar';
|
|
7
|
-
export const StyledModalContent = ({ isOpen, onRequestClose, shouldCloseOnOverlayClick = true, hideOverlay = false, pointerEventsOnBackdrop, children, className, style, }) => {
|
|
7
|
+
export const StyledModalContent = ({ isOpen, onRequestClose, shouldCloseOnOverlayClick = true, hideOverlay = false, pointerEventsOnBackdrop, children, className, style, ariaLabelledby, id, }) => {
|
|
8
8
|
const dialogRef = useRef(null);
|
|
9
9
|
const closedByCancelRef = useRef(false);
|
|
10
10
|
useEffect(() => {
|
|
@@ -59,7 +59,7 @@ export const StyledModalContent = ({ isOpen, onRequestClose, shouldCloseOnOverla
|
|
|
59
59
|
return (_jsx(Dialog, { ref: dialogRef, onClick: e => {
|
|
60
60
|
e.stopPropagation();
|
|
61
61
|
handleBackdropClick(e);
|
|
62
|
-
}, "$hideOverlay": hideOverlay, "$pointerEventsOnBackdrop": pointerEventsOnBackdrop, className: className ? `Modal ${className}` : 'Modal', style: style?.content, children: children }));
|
|
62
|
+
}, "$hideOverlay": hideOverlay, "$pointerEventsOnBackdrop": pointerEventsOnBackdrop, className: className ? `Modal ${className}` : 'Modal', style: style?.content, "aria-labelledby": ariaLabelledby ? ariaLabelledby : undefined, id: id ? id : undefined, children: children }));
|
|
63
63
|
};
|
|
64
64
|
export const StyledModal = (props) => {
|
|
65
65
|
return createPortal(_jsx(StyledModalContent, { ...props }), document.body);
|
|
@@ -38,10 +38,13 @@ export function trapFocus(e, element) {
|
|
|
38
38
|
lastElement.focus();
|
|
39
39
|
}
|
|
40
40
|
}
|
|
41
|
-
export const useFocusCycle = (containerRef) => {
|
|
41
|
+
export const useFocusCycle = (containerRef, enabled = true) => {
|
|
42
42
|
useEffect(() => {
|
|
43
|
+
if (!enabled) {
|
|
44
|
+
return;
|
|
45
|
+
}
|
|
43
46
|
const handleKeyDown = (e) => trapFocus(e, containerRef.current);
|
|
44
47
|
document.addEventListener('keydown', handleKeyDown);
|
|
45
48
|
return () => document.removeEventListener('keydown', handleKeyDown);
|
|
46
|
-
}, [containerRef]);
|
|
49
|
+
}, [containerRef, enabled]);
|
|
47
50
|
};
|
package/dist/es/index.js
CHANGED
|
@@ -29,8 +29,9 @@ export * from './components/Form';
|
|
|
29
29
|
export * from './components/MultiValueInput';
|
|
30
30
|
export * from './components/Resizer';
|
|
31
31
|
export * from './components/SaveStatus';
|
|
32
|
-
export * from './components/
|
|
32
|
+
export * from './components/Shortcut';
|
|
33
33
|
export * from './components/Sidebar';
|
|
34
|
+
export * from './components/StyledModal';
|
|
34
35
|
export * from './components/TextField';
|
|
35
36
|
export * from './components/FormFieldContainer';
|
|
36
37
|
export * from './components/FormCommon';
|
|
@@ -50,7 +50,7 @@ export declare enum Category {
|
|
|
50
50
|
export declare class Dialog extends React.Component<DialogProps, DialogState> {
|
|
51
51
|
state: DialogState;
|
|
52
52
|
componentDidMount(): void;
|
|
53
|
-
render():
|
|
53
|
+
render(): React.JSX.Element;
|
|
54
54
|
private renderButtons;
|
|
55
55
|
private checkInputValue;
|
|
56
56
|
private setDisabledBtnState;
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
/*!
|
|
2
|
+
* © 2025 Atypon Systems LLC
|
|
3
|
+
*
|
|
4
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
* you may not use this file except in compliance with the License.
|
|
6
|
+
* You may obtain a copy of the License at
|
|
7
|
+
*
|
|
8
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
*
|
|
10
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
* See the License for the specific language governing permissions and
|
|
14
|
+
* limitations under the License.
|
|
15
|
+
*/
|
|
16
|
+
export declare const Shortcut: import("styled-components").StyledComponent<"span", import("styled-components").DefaultTheme, {}, never>;
|
|
17
|
+
export declare const ShortcutConnector: import("styled-components").StyledComponent<"span", import("styled-components").DefaultTheme, {}, never>;
|
|
@@ -25,6 +25,8 @@ interface StyledModalProps {
|
|
|
25
25
|
style?: {
|
|
26
26
|
content?: React.CSSProperties;
|
|
27
27
|
};
|
|
28
|
+
ariaLabelledby?: string;
|
|
29
|
+
id?: string;
|
|
28
30
|
}
|
|
29
31
|
export declare const StyledModalContent: React.FC<StyledModalProps>;
|
|
30
32
|
export declare const StyledModal: React.FC<StyledModalProps>;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import { Tooltip as ReactTooltip } from 'react-tooltip';
|
|
3
|
-
export declare const Tooltip: (props: React.ComponentProps<typeof ReactTooltip>) =>
|
|
3
|
+
export declare const Tooltip: (props: React.ComponentProps<typeof ReactTooltip>) => React.JSX.Element;
|
|
@@ -13,6 +13,7 @@
|
|
|
13
13
|
* See the License for the specific language governing permissions and
|
|
14
14
|
* limitations under the License.
|
|
15
15
|
*/
|
|
16
|
+
import React from 'react';
|
|
16
17
|
import { IconProps } from './types';
|
|
17
|
-
declare const AddAuthorIcon: (props: IconProps) =>
|
|
18
|
+
declare const AddAuthorIcon: (props: IconProps) => React.JSX.Element;
|
|
18
19
|
export default AddAuthorIcon;
|
|
@@ -13,6 +13,7 @@
|
|
|
13
13
|
* See the License for the specific language governing permissions and
|
|
14
14
|
* limitations under the License.
|
|
15
15
|
*/
|
|
16
|
+
import React from 'react';
|
|
16
17
|
import { IconProps } from './types';
|
|
17
|
-
declare const AddFigureIcon: (props: IconProps) =>
|
|
18
|
+
declare const AddFigureIcon: (props: IconProps) => React.JSX.Element;
|
|
18
19
|
export default AddFigureIcon;
|
|
@@ -13,6 +13,7 @@
|
|
|
13
13
|
* See the License for the specific language governing permissions and
|
|
14
14
|
* limitations under the License.
|
|
15
15
|
*/
|
|
16
|
+
import React from 'react';
|
|
16
17
|
import { IconProps } from './types';
|
|
17
|
-
declare const AffiliationPlaceholderIcon: (props: IconProps) =>
|
|
18
|
+
declare const AffiliationPlaceholderIcon: (props: IconProps) => React.JSX.Element;
|
|
18
19
|
export default AffiliationPlaceholderIcon;
|
|
@@ -13,6 +13,7 @@
|
|
|
13
13
|
* See the License for the specific language governing permissions and
|
|
14
14
|
* limitations under the License.
|
|
15
15
|
*/
|
|
16
|
+
import React from 'react';
|
|
16
17
|
import { IconProps } from './types';
|
|
17
|
-
declare const AuthorPlaceholderIcon: (props: IconProps) =>
|
|
18
|
+
declare const AuthorPlaceholderIcon: (props: IconProps) => React.JSX.Element;
|
|
18
19
|
export default AuthorPlaceholderIcon;
|
|
@@ -13,5 +13,6 @@
|
|
|
13
13
|
* See the License for the specific language governing permissions and
|
|
14
14
|
* limitations under the License.
|
|
15
15
|
*/
|
|
16
|
-
|
|
16
|
+
import React from 'react';
|
|
17
|
+
declare const SectionCategoryIcon: () => React.JSX.Element;
|
|
17
18
|
export default SectionCategoryIcon;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import { RefObject } from 'react';
|
|
2
2
|
export declare function getFocusableElements(element: HTMLElement): HTMLElement[];
|
|
3
3
|
export declare function trapFocus(e: KeyboardEvent, element: HTMLElement | null): void;
|
|
4
|
-
export declare const useFocusCycle: (containerRef: RefObject<HTMLDivElement | null
|
|
4
|
+
export declare const useFocusCycle: (containerRef: RefObject<HTMLDivElement | null>, enabled?: boolean) => void;
|
package/dist/types/index.d.ts
CHANGED
|
@@ -30,8 +30,9 @@ export * from './components/Form';
|
|
|
30
30
|
export * from './components/MultiValueInput';
|
|
31
31
|
export * from './components/Resizer';
|
|
32
32
|
export * from './components/SaveStatus';
|
|
33
|
-
export * from './components/
|
|
33
|
+
export * from './components/Shortcut';
|
|
34
34
|
export * from './components/Sidebar';
|
|
35
|
+
export * from './components/StyledModal';
|
|
35
36
|
export * from './components/TextField';
|
|
36
37
|
export * from './components/FormFieldContainer';
|
|
37
38
|
export * from './components/FormCommon';
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@manuscripts/style-guide",
|
|
3
3
|
"description": "Shared components for Manuscripts applications",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.6.0",
|
|
5
5
|
"repository": "github:Atypon-OpenSource/manuscripts-style-guide",
|
|
6
6
|
"license": "Apache-2.0",
|
|
7
7
|
"main": "dist/cjs",
|
|
@@ -18,92 +18,87 @@
|
|
|
18
18
|
"**/*.css"
|
|
19
19
|
],
|
|
20
20
|
"scripts": {
|
|
21
|
-
"build": "npm-run-
|
|
21
|
+
"build": "npm-run-all2 --parallel build:*",
|
|
22
22
|
"build:cjs": "tsc --outDir dist/cjs --module commonjs",
|
|
23
23
|
"build:es": "tsc --outDir dist/es --declarationDir dist/types --declaration",
|
|
24
24
|
"build-storybook": "storybook build",
|
|
25
|
-
"dev": "npm-run-
|
|
25
|
+
"dev": "npm-run-all2 --parallel 'build:* --watch'",
|
|
26
26
|
"lint": "eslint src stories --ext .ts,.tsx --max-warnings=0 --fix",
|
|
27
27
|
"prebuild": "rimraf dist",
|
|
28
28
|
"prettier": "prettier --write \"{src,stories}/**/*.{ts,tsx}\"",
|
|
29
|
-
"preversion": "npm-run-
|
|
29
|
+
"preversion": "npm-run-all2 --parallel lint typecheck",
|
|
30
30
|
"storybook": "storybook dev -p 6006",
|
|
31
31
|
"test": "vitest run",
|
|
32
32
|
"typecheck": "tsc --noEmit",
|
|
33
33
|
"version": "pnpm build",
|
|
34
|
-
"
|
|
35
|
-
"prepare": "husky install"
|
|
34
|
+
"prepare": "husky"
|
|
36
35
|
},
|
|
37
36
|
"dependencies": {
|
|
38
|
-
"@headlessui/react": "2.2.
|
|
39
|
-
"
|
|
40
|
-
"formik": "2.4.6",
|
|
41
|
-
"lodash": "4.17.21",
|
|
37
|
+
"@headlessui/react": "2.2.10",
|
|
38
|
+
"formik": "2.4.9",
|
|
42
39
|
"prosemirror-commands": "1.7.1",
|
|
43
40
|
"prosemirror-history": "1.4.1",
|
|
44
41
|
"prosemirror-keymap": "1.2.3",
|
|
45
42
|
"prosemirror-model": "1.25.0",
|
|
46
43
|
"prosemirror-state": "1.4.3",
|
|
47
44
|
"prosemirror-view": "1.41.0",
|
|
48
|
-
"react": "19.2.
|
|
45
|
+
"react": "19.2.6",
|
|
49
46
|
"react-dnd": "16.0.1",
|
|
50
47
|
"react-dnd-html5-backend": "16.0.1",
|
|
51
|
-
"react-dom": "19.2.
|
|
52
|
-
"react-is": "19.2.0",
|
|
48
|
+
"react-dom": "19.2.6",
|
|
53
49
|
"react-router-dom": "5.3.4",
|
|
54
|
-
"react-select": "5.10.
|
|
55
|
-
"react-tooltip": "
|
|
50
|
+
"react-select": "5.10.2",
|
|
51
|
+
"react-tooltip": "6.0.2",
|
|
56
52
|
"styled-components": "5.3.11"
|
|
57
53
|
},
|
|
58
54
|
"devDependencies": {
|
|
59
|
-
"@babel/core": "7.
|
|
60
|
-
"@babel/preset-env": "7.
|
|
61
|
-
"@babel/preset-react": "7.
|
|
62
|
-
"@babel/preset-typescript": "7.
|
|
63
|
-
"@eslint/eslintrc": "3.3.
|
|
64
|
-
"@eslint/js": "9.39.
|
|
55
|
+
"@babel/core": "7.29.0",
|
|
56
|
+
"@babel/preset-env": "7.29.5",
|
|
57
|
+
"@babel/preset-react": "7.28.5",
|
|
58
|
+
"@babel/preset-typescript": "7.28.5",
|
|
59
|
+
"@eslint/eslintrc": "3.3.5",
|
|
60
|
+
"@eslint/js": "9.39.4",
|
|
61
|
+
"@fontsource/lato": "5.2.7",
|
|
65
62
|
"@manuscripts/eslint-config": "0.5.1",
|
|
66
|
-
"@storybook/addon-actions": "8.
|
|
67
|
-
"@storybook/addon-essentials": "8.
|
|
68
|
-
"@storybook/addon-interactions": "8.
|
|
69
|
-
"@storybook/addon-links": "8.
|
|
70
|
-
"@storybook/blocks": "8.
|
|
71
|
-
"@storybook/react": "8.
|
|
72
|
-
"@storybook/react-webpack5": "8.
|
|
73
|
-
"@storybook/test": "8.
|
|
74
|
-
"@vitest/coverage-v8": "4.1.6",
|
|
63
|
+
"@storybook/addon-actions": "8.6.18",
|
|
64
|
+
"@storybook/addon-essentials": "8.6.18",
|
|
65
|
+
"@storybook/addon-interactions": "8.6.18",
|
|
66
|
+
"@storybook/addon-links": "8.6.18",
|
|
67
|
+
"@storybook/blocks": "8.6.18",
|
|
68
|
+
"@storybook/react": "8.6.18",
|
|
69
|
+
"@storybook/react-webpack5": "8.6.18",
|
|
70
|
+
"@storybook/test": "8.6.18",
|
|
75
71
|
"@types/lodash": "4.17.16",
|
|
76
72
|
"@types/node": "^20.19.25",
|
|
77
|
-
"@types/react": "19.2.
|
|
73
|
+
"@types/react": "19.2.17",
|
|
78
74
|
"@types/react-dom": "19.2.3",
|
|
79
75
|
"@types/react-router-dom": "5.3.3",
|
|
80
|
-
"@types/styled-components": "5.1.
|
|
81
|
-
"@typescript-eslint/eslint-plugin": "8.
|
|
82
|
-
"@typescript-eslint/parser": "8.
|
|
83
|
-
"
|
|
84
|
-
"babel-loader": "
|
|
76
|
+
"@types/styled-components": "5.1.36",
|
|
77
|
+
"@typescript-eslint/eslint-plugin": "8.59.3",
|
|
78
|
+
"@typescript-eslint/parser": "8.59.3",
|
|
79
|
+
"@vitest/coverage-v8": "4.1.6",
|
|
80
|
+
"babel-loader": "10.1.1",
|
|
85
81
|
"eslint": "9.39.1",
|
|
86
82
|
"eslint-config-prettier": "10.1.8",
|
|
87
|
-
"eslint-plugin-diff": "2.
|
|
83
|
+
"eslint-plugin-diff": "2.1.7",
|
|
88
84
|
"eslint-plugin-header": "3.1.1",
|
|
89
85
|
"eslint-plugin-import": "2.32.0",
|
|
90
86
|
"eslint-plugin-jsx-a11y": "6.10.2",
|
|
91
|
-
"eslint-plugin-mdx": "3.
|
|
92
|
-
"eslint-plugin-
|
|
93
|
-
"eslint-plugin-
|
|
94
|
-
"eslint-plugin-promise": "7.2.1",
|
|
87
|
+
"eslint-plugin-mdx": "3.7.0",
|
|
88
|
+
"eslint-plugin-prettier": "5.5.5",
|
|
89
|
+
"eslint-plugin-promise": "7.3.0",
|
|
95
90
|
"eslint-plugin-react": "7.37.5",
|
|
96
|
-
"eslint-plugin-react-hooks": "7.
|
|
97
|
-
"eslint-plugin-simple-import-sort": "
|
|
98
|
-
"eslint-plugin-storybook": "10.
|
|
99
|
-
"husky": "
|
|
100
|
-
"
|
|
101
|
-
"npm-run-
|
|
102
|
-
"prettier": "3.
|
|
103
|
-
"rimraf": "6.
|
|
104
|
-
"storybook": "8.
|
|
105
|
-
"
|
|
106
|
-
"
|
|
91
|
+
"eslint-plugin-react-hooks": "7.1.1",
|
|
92
|
+
"eslint-plugin-simple-import-sort": "13.0.0",
|
|
93
|
+
"eslint-plugin-storybook": "10.3.6",
|
|
94
|
+
"husky": "9.1.7",
|
|
95
|
+
"jsdom": "29.1.1",
|
|
96
|
+
"npm-run-all2": "8.0.4",
|
|
97
|
+
"prettier": "3.8.3",
|
|
98
|
+
"rimraf": "6.1.3",
|
|
99
|
+
"storybook": "8.6.18",
|
|
100
|
+
"typescript": "5.9.2",
|
|
101
|
+
"vitest": "4.1.7"
|
|
107
102
|
},
|
|
108
103
|
"engines": {
|
|
109
104
|
"node": ">=22"
|