@wavv/ui 1.9.8 → 1.9.10
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/build/cjs/index.js +6 -189
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/types/components/ChartHelpers.d.ts +1 -1
- package/build/cjs/types/components/DocTable.d.ts +1 -1
- package/build/cjs/types/components/Dropdown/DropdownUtils.d.ts +2 -2
- package/build/cjs/types/components/FormControl.d.ts +3 -3
- package/build/cjs/types/components/InlineCode.d.ts +1 -1
- package/build/cjs/types/components/InputHelpers.d.ts +8 -8
- package/build/cjs/types/components/Message.d.ts +2 -2
- package/build/cjs/types/components/Modal.d.ts +4 -4
- package/build/cjs/types/components/Notification.d.ts +1 -1
- package/build/cjs/types/components/Spacer.d.ts +1 -1
- package/build/cjs/types/components/Table/Column.d.ts +1 -1
- package/build/cjs/types/components/Table/Content.d.ts +17 -5
- package/build/cjs/types/components/Table/HeaderCell.d.ts +1 -1
- package/build/cjs/types/components/Table/Table.d.ts +16 -4
- package/build/cjs/types/components/Tooltip.d.ts +2 -2
- package/build/esm/index.js +6 -189
- package/build/esm/index.js.map +1 -1
- package/build/esm/types/components/ChartHelpers.d.ts +1 -1
- package/build/esm/types/components/DocTable.d.ts +1 -1
- package/build/esm/types/components/Dropdown/DropdownUtils.d.ts +2 -2
- package/build/esm/types/components/FormControl.d.ts +3 -3
- package/build/esm/types/components/InlineCode.d.ts +1 -1
- package/build/esm/types/components/InputHelpers.d.ts +8 -8
- package/build/esm/types/components/Message.d.ts +2 -2
- package/build/esm/types/components/Modal.d.ts +4 -4
- package/build/esm/types/components/Notification.d.ts +1 -1
- package/build/esm/types/components/Spacer.d.ts +1 -1
- package/build/esm/types/components/Table/Column.d.ts +1 -1
- package/build/esm/types/components/Table/Content.d.ts +17 -5
- package/build/esm/types/components/Table/HeaderCell.d.ts +1 -1
- package/build/esm/types/components/Table/Table.d.ts +16 -4
- package/build/esm/types/components/Tooltip.d.ts +2 -2
- package/build/index.d.ts +32 -33
- package/build/types/components/ChartHelpers.d.ts +1 -1
- package/build/types/components/DocTable.d.ts +1 -1
- package/build/types/components/Dropdown/DropdownUtils.d.ts +2 -2
- package/build/types/components/FormControl.d.ts +3 -3
- package/build/types/components/InlineCode.d.ts +1 -1
- package/build/types/components/InputHelpers.d.ts +8 -8
- package/build/types/components/Message.d.ts +2 -2
- package/build/types/components/Modal.d.ts +4 -4
- package/build/types/components/Notification.d.ts +1 -1
- package/build/types/components/Spacer.d.ts +1 -1
- package/build/types/components/Table/Column.d.ts +1 -1
- package/build/types/components/Table/Content.d.ts +17 -5
- package/build/types/components/Table/HeaderCell.d.ts +1 -1
- package/build/types/components/Table/Table.d.ts +16 -4
- package/build/types/components/Tooltip.d.ts +2 -2
- package/package.json +45 -45
|
@@ -15,11 +15,11 @@ declare const Message: {
|
|
|
15
15
|
({ type, content, closeIcon, onClose, width, margin, marginTop, marginBottom, marginRight, marginLeft, children, }: MessageProps): import("react/jsx-runtime").JSX.Element;
|
|
16
16
|
Header: import("@emotion/styled").StyledComponent<{
|
|
17
17
|
theme?: import("@emotion/react").Theme | undefined;
|
|
18
|
-
as?: import("react").ElementType<any> | undefined;
|
|
18
|
+
as?: import("react").ElementType<any, keyof import("react").JSX.IntrinsicElements> | undefined;
|
|
19
19
|
} & ThemeProp, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
|
|
20
20
|
Body: import("@emotion/styled").StyledComponent<{
|
|
21
21
|
theme?: import("@emotion/react").Theme | undefined;
|
|
22
|
-
as?: import("react").ElementType<any> | undefined;
|
|
22
|
+
as?: import("react").ElementType<any, keyof import("react").JSX.IntrinsicElements> | undefined;
|
|
23
23
|
} & ThemeProp, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
|
|
24
24
|
};
|
|
25
25
|
export default Message;
|
|
@@ -42,22 +42,22 @@ declare const Modal: {
|
|
|
42
42
|
({ children, rootSelector, visible, width, height, onClose, closeIcon, preventOverlayClose, overlayColor, backgroundColor, small, noOverlay, centerX, centerY, position, top, bottom, right, left, padding, paddingTop, paddingBottom, paddingRight, paddingLeft, zIndex, }: ModalProps): import("react").ReactPortal | null;
|
|
43
43
|
Header: import("@emotion/styled").StyledComponent<{
|
|
44
44
|
theme?: import("@emotion/react").Theme | undefined;
|
|
45
|
-
as?: import("react").ElementType<any> | undefined;
|
|
45
|
+
as?: import("react").ElementType<any, keyof import("react").JSX.IntrinsicElements> | undefined;
|
|
46
46
|
} & ThemeProp, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
|
|
47
47
|
Text: import("@emotion/styled").StyledComponent<{
|
|
48
48
|
theme?: import("@emotion/react").Theme | undefined;
|
|
49
|
-
as?: import("react").ElementType<any> | undefined;
|
|
49
|
+
as?: import("react").ElementType<any, keyof import("react").JSX.IntrinsicElements> | undefined;
|
|
50
50
|
} & {
|
|
51
51
|
primary?: boolean | undefined;
|
|
52
52
|
fontSize?: string | number | undefined;
|
|
53
53
|
} & ThemeProp, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
|
|
54
54
|
Body: import("@emotion/styled").StyledComponent<{
|
|
55
55
|
theme?: import("@emotion/react").Theme | undefined;
|
|
56
|
-
as?: import("react").ElementType<any> | undefined;
|
|
56
|
+
as?: import("react").ElementType<any, keyof import("react").JSX.IntrinsicElements> | undefined;
|
|
57
57
|
} & Height & Margin, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
|
|
58
58
|
Footer: import("@emotion/styled").StyledComponent<{
|
|
59
59
|
theme?: import("@emotion/react").Theme | undefined;
|
|
60
|
-
as?: import("react").ElementType<any> | undefined;
|
|
60
|
+
as?: import("react").ElementType<any, keyof import("react").JSX.IntrinsicElements> | undefined;
|
|
61
61
|
} & {
|
|
62
62
|
justify?: FlexPosition | undefined;
|
|
63
63
|
inline?: boolean | undefined;
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
import { Margin, Position, ThemeProp } from './types';
|
|
3
3
|
declare const Notification: import("@emotion/styled").StyledComponent<{
|
|
4
4
|
theme?: import("@emotion/react").Theme | undefined;
|
|
5
|
-
as?: import("react").ElementType<any> | undefined;
|
|
5
|
+
as?: import("react").ElementType<any, keyof import("react").JSX.IntrinsicElements> | undefined;
|
|
6
6
|
} & {
|
|
7
7
|
/** The color of the dot */
|
|
8
8
|
color?: string | undefined;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
2
|
declare const Spacer: import("@emotion/styled").StyledComponent<{
|
|
3
3
|
theme?: import("@emotion/react").Theme | undefined;
|
|
4
|
-
as?: import("react").ElementType<any> | undefined;
|
|
4
|
+
as?: import("react").ElementType<any, keyof import("react").JSX.IntrinsicElements> | undefined;
|
|
5
5
|
} & import("./types").Width & import("./types").Height, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
|
|
6
6
|
export default Spacer;
|
|
@@ -6,5 +6,5 @@ type ColumnProps = {
|
|
|
6
6
|
/** The string value to display if the child text is undefined (i.e. "N/A", "—") */
|
|
7
7
|
defaultValue?: string;
|
|
8
8
|
} & Padding & ContentProps;
|
|
9
|
-
declare const Column: ({ children, contentPosition, direction, justify, align, gap, defaultValue, padding, paddingTop, paddingBottom, paddingRight, paddingLeft, }: ColumnProps) => import("react/jsx-runtime").JSX.Element;
|
|
9
|
+
declare const Column: ({ children, contentPosition, direction, justify, align, gap, defaultValue, padding, paddingTop, paddingBottom, paddingRight, paddingLeft, ...rest }: ColumnProps) => import("react/jsx-runtime").JSX.Element;
|
|
10
10
|
export default Column;
|
|
@@ -1,5 +1,6 @@
|
|
|
1
|
-
|
|
2
|
-
import { FlexDirection, FlexPosition } from '../types';
|
|
1
|
+
import { HTMLProps } from 'react';
|
|
2
|
+
import { As, FlexDirection, FlexPosition } from '../types';
|
|
3
|
+
type DefaultContentProps = Omit<HTMLProps<HTMLDivElement>, 'as'> & As;
|
|
3
4
|
export type ContentProps = {
|
|
4
5
|
/** The flex positioning of the content */
|
|
5
6
|
contentPosition?: FlexPosition;
|
|
@@ -11,9 +12,20 @@ export type ContentProps = {
|
|
|
11
12
|
align?: FlexPosition;
|
|
12
13
|
/** The flex gap of the content */
|
|
13
14
|
gap?: number | string;
|
|
14
|
-
};
|
|
15
|
+
} & DefaultContentProps;
|
|
15
16
|
declare const Content: import("@emotion/styled").StyledComponent<{
|
|
16
17
|
theme?: import("@emotion/react").Theme | undefined;
|
|
17
|
-
as?: import("react").ElementType<any> | undefined;
|
|
18
|
-
} &
|
|
18
|
+
as?: import("react").ElementType<any, keyof import("react").JSX.IntrinsicElements> | undefined;
|
|
19
|
+
} & {
|
|
20
|
+
/** The flex positioning of the content */
|
|
21
|
+
contentPosition?: FlexPosition | undefined;
|
|
22
|
+
/** The flex direction of the content */
|
|
23
|
+
direction?: FlexDirection | undefined;
|
|
24
|
+
/** The flex positioning of the content */
|
|
25
|
+
justify?: FlexPosition | undefined;
|
|
26
|
+
/** The flex alignment of the content */
|
|
27
|
+
align?: FlexPosition | undefined;
|
|
28
|
+
/** The flex gap of the content */
|
|
29
|
+
gap?: string | number | undefined;
|
|
30
|
+
} & Omit<HTMLProps<HTMLDivElement>, "as"> & As, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
|
|
19
31
|
export default Content;
|
|
@@ -10,5 +10,5 @@ type HeaderCellProps = {
|
|
|
10
10
|
/** The property of the data object to sort by */
|
|
11
11
|
sortKey?: string;
|
|
12
12
|
} & ContentProps;
|
|
13
|
-
declare const HeaderCell: ({ children, onClick, contentPosition, justify, align, direction, gap, sorted, sortKey, }: HeaderCellProps) => import("react/jsx-runtime").JSX.Element;
|
|
13
|
+
declare const HeaderCell: ({ children, onClick, contentPosition, justify, align, direction, gap, sorted, sortKey, ...rest }: HeaderCellProps) => import("react/jsx-runtime").JSX.Element;
|
|
14
14
|
export default HeaderCell;
|
|
@@ -10,19 +10,31 @@ declare const Table: {
|
|
|
10
10
|
} & {
|
|
11
11
|
columns?: import("./types").Columns | undefined;
|
|
12
12
|
} & Width & import("../types").Margin & import("../types").Padding & import("react").HTMLProps<HTMLTableRowElement>) => import("react/jsx-runtime").JSX.Element;
|
|
13
|
-
HeaderCell: ({ children, onClick, contentPosition, justify, align, direction, gap, sorted, sortKey, }: {
|
|
13
|
+
HeaderCell: ({ children, onClick, contentPosition, justify, align, direction, gap, sorted, sortKey, ...rest }: {
|
|
14
14
|
children?: ReactNode;
|
|
15
15
|
onClick?: ((event: import("react").MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
16
16
|
sorted?: import("./types").SortDir | undefined;
|
|
17
17
|
sortKey?: string | undefined;
|
|
18
|
-
} &
|
|
18
|
+
} & {
|
|
19
|
+
contentPosition?: import("../types").FlexPosition | undefined;
|
|
20
|
+
direction?: import("../types").FlexDirection | undefined;
|
|
21
|
+
justify?: import("../types").FlexPosition | undefined;
|
|
22
|
+
align?: import("../types").FlexPosition | undefined;
|
|
23
|
+
gap?: string | number | undefined;
|
|
24
|
+
} & Omit<import("react").HTMLProps<HTMLDivElement>, "as"> & import("../types").As) => import("react/jsx-runtime").JSX.Element;
|
|
19
25
|
Body: ({ children, height, maxHeight, ...rest }: {
|
|
20
26
|
children: ReactNode;
|
|
21
27
|
} & import("../types").Height & import("../types").MaxHeight & Omit<import("react").HTMLProps<HTMLTableSectionElement>, "as"> & import("../types").As) => import("react/jsx-runtime").JSX.Element;
|
|
22
28
|
Row: ({ children, columns, onClick, columnStyles, ...rest }: import("./types").TableHeaderRow) => import("react/jsx-runtime").JSX.Element;
|
|
23
|
-
Column: ({ children, contentPosition, direction, justify, align, gap, defaultValue, padding, paddingTop, paddingBottom, paddingRight, paddingLeft, }: {
|
|
29
|
+
Column: ({ children, contentPosition, direction, justify, align, gap, defaultValue, padding, paddingTop, paddingBottom, paddingRight, paddingLeft, ...rest }: {
|
|
24
30
|
children?: ReactNode;
|
|
25
31
|
defaultValue?: string | undefined;
|
|
26
|
-
} & import("../types").Padding &
|
|
32
|
+
} & import("../types").Padding & {
|
|
33
|
+
contentPosition?: import("../types").FlexPosition | undefined;
|
|
34
|
+
direction?: import("../types").FlexDirection | undefined;
|
|
35
|
+
justify?: import("../types").FlexPosition | undefined;
|
|
36
|
+
align?: import("../types").FlexPosition | undefined;
|
|
37
|
+
gap?: string | number | undefined;
|
|
38
|
+
} & Omit<import("react").HTMLProps<HTMLDivElement>, "as"> & import("../types").As) => import("react/jsx-runtime").JSX.Element;
|
|
27
39
|
};
|
|
28
40
|
export default Table;
|
|
@@ -40,11 +40,11 @@ declare const Tooltip: {
|
|
|
40
40
|
({ trigger, children, content, position, offset, zIndex, width, maxWidth, textAlign, open, disabled, id, bgColor, color, container, afterShow, afterHide, ...props }: TooltipProps): import("react/jsx-runtime").JSX.Element;
|
|
41
41
|
Header: import("@emotion/styled").StyledComponent<{
|
|
42
42
|
theme?: import("@emotion/react").Theme | undefined;
|
|
43
|
-
as?: import("react").ElementType<any> | undefined;
|
|
43
|
+
as?: import("react").ElementType<any, keyof import("react").JSX.IntrinsicElements> | undefined;
|
|
44
44
|
} & ThemeProp, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
|
|
45
45
|
Body: import("@emotion/styled").StyledComponent<{
|
|
46
46
|
theme?: import("@emotion/react").Theme | undefined;
|
|
47
|
-
as?: import("react").ElementType<any> | undefined;
|
|
47
|
+
as?: import("react").ElementType<any, keyof import("react").JSX.IntrinsicElements> | undefined;
|
|
48
48
|
} & ThemeProp, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
|
|
49
49
|
};
|
|
50
50
|
export default Tooltip;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wavv/ui",
|
|
3
|
-
"version": "1.9.
|
|
3
|
+
"version": "1.9.10",
|
|
4
4
|
"files": [
|
|
5
5
|
"build/**/*"
|
|
6
6
|
],
|
|
@@ -21,78 +21,78 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@emotion/styled": "^11.11.0",
|
|
23
23
|
"@radix-ui/react-accordion": "^1.1.2",
|
|
24
|
-
"@radix-ui/react-dropdown-menu": "^2.0.
|
|
25
|
-
"@radix-ui/react-tooltip": "^1.0.
|
|
24
|
+
"@radix-ui/react-dropdown-menu": "^2.0.6",
|
|
25
|
+
"@radix-ui/react-tooltip": "^1.0.7",
|
|
26
26
|
"@react-hook/resize-observer": "^1.2.6",
|
|
27
27
|
"date-fns": "^2.30.0",
|
|
28
28
|
"draft-js": "^0.11.7",
|
|
29
29
|
"lodash": "^4.17.21",
|
|
30
30
|
"millify": "^6.1.0",
|
|
31
31
|
"polished": "^4.1.4",
|
|
32
|
-
"prism-react-renderer": "^2.
|
|
32
|
+
"prism-react-renderer": "^2.3.1",
|
|
33
33
|
"react-keyed-flatten-children": "^2.2.1",
|
|
34
34
|
"react-phone-input-auto-format": "^0.1.0",
|
|
35
|
-
"recharts": "^2.
|
|
35
|
+
"recharts": "^2.10.4",
|
|
36
36
|
"sanitize.css": "^13.0.0",
|
|
37
|
-
"uuid": "^9.0.
|
|
37
|
+
"uuid": "^9.0.1",
|
|
38
38
|
"webfontloader": "^1.6.28"
|
|
39
39
|
},
|
|
40
40
|
"devDependencies": {
|
|
41
|
-
"@babel/core": "^7.
|
|
42
|
-
"@babel/preset-env": "^7.
|
|
43
|
-
"@babel/preset-typescript": "^7.
|
|
41
|
+
"@babel/core": "^7.23.7",
|
|
42
|
+
"@babel/preset-env": "^7.23.8",
|
|
43
|
+
"@babel/preset-typescript": "^7.23.3",
|
|
44
44
|
"@emotion/babel-plugin": "^11.11.0",
|
|
45
45
|
"@emotion/babel-preset-css-prop": "^11.11.0",
|
|
46
|
-
"@emotion/react": "^11.11.
|
|
46
|
+
"@emotion/react": "^11.11.3",
|
|
47
47
|
"@mdx-js/react": "^2.2.1",
|
|
48
48
|
"@mdx-js/rollup": "^2.2.1",
|
|
49
|
-
"@rollup/plugin-commonjs": "^25.0.
|
|
50
|
-
"@rollup/plugin-node-resolve": "^15.
|
|
51
|
-
"@rollup/plugin-terser": "^0.4.
|
|
52
|
-
"@rollup/plugin-typescript": "^11.1.
|
|
53
|
-
"@svgr/core": "^8.
|
|
54
|
-
"@svgr/plugin-jsx": "^8.0
|
|
55
|
-
"@svgr/plugin-prettier": "^8.0
|
|
56
|
-
"@types/dashify": "^1.0.
|
|
57
|
-
"@types/draft-js": "^0.11.
|
|
58
|
-
"@types/jest": "^29.5.
|
|
59
|
-
"@types/lodash": "^4.14.
|
|
60
|
-
"@types/ncp": "^2.0.
|
|
61
|
-
"@types/node": "^20.
|
|
62
|
-
"@types/prompts": "^2.4.
|
|
63
|
-
"@types/randomcolor": "^0.5.
|
|
64
|
-
"@types/react": "^18.2.
|
|
65
|
-
"@types/react-dom": "^18.2.
|
|
66
|
-
"@types/rollup-plugin-peer-deps-external": "^2.2.
|
|
67
|
-
"@types/signale": "^1.4.
|
|
68
|
-
"@types/uuid": "^9.0.
|
|
69
|
-
"@types/webfontloader": "^1.6.
|
|
49
|
+
"@rollup/plugin-commonjs": "^25.0.7",
|
|
50
|
+
"@rollup/plugin-node-resolve": "^15.2.3",
|
|
51
|
+
"@rollup/plugin-terser": "^0.4.4",
|
|
52
|
+
"@rollup/plugin-typescript": "^11.1.6",
|
|
53
|
+
"@svgr/core": "^8.1.0",
|
|
54
|
+
"@svgr/plugin-jsx": "^8.1.0",
|
|
55
|
+
"@svgr/plugin-prettier": "^8.1.0",
|
|
56
|
+
"@types/dashify": "^1.0.3",
|
|
57
|
+
"@types/draft-js": "^0.11.17",
|
|
58
|
+
"@types/jest": "^29.5.11",
|
|
59
|
+
"@types/lodash": "^4.14.202",
|
|
60
|
+
"@types/ncp": "^2.0.8",
|
|
61
|
+
"@types/node": "^20.11.0",
|
|
62
|
+
"@types/prompts": "^2.4.9",
|
|
63
|
+
"@types/randomcolor": "^0.5.9",
|
|
64
|
+
"@types/react": "^18.2.47",
|
|
65
|
+
"@types/react-dom": "^18.2.18",
|
|
66
|
+
"@types/rollup-plugin-peer-deps-external": "^2.2.4",
|
|
67
|
+
"@types/signale": "^1.4.7",
|
|
68
|
+
"@types/uuid": "^9.0.7",
|
|
69
|
+
"@types/webfontloader": "^1.6.38",
|
|
70
70
|
"@typescript-eslint/eslint-plugin": "^5.60.1",
|
|
71
71
|
"@typescript-eslint/parser": "^5.60.1",
|
|
72
|
-
"@vitejs/plugin-react": "^4.
|
|
72
|
+
"@vitejs/plugin-react": "^4.2.1",
|
|
73
73
|
"babel-plugin-lodash": "^3.3.4",
|
|
74
|
-
"chalk": "^5.
|
|
74
|
+
"chalk": "^5.3.0",
|
|
75
75
|
"dashify": "^2.0.0",
|
|
76
|
-
"eslint": "^8.
|
|
76
|
+
"eslint": "^8.56.0",
|
|
77
77
|
"eslint-config-airbnb": "^19.0.4",
|
|
78
78
|
"eslint-config-prettier": "^8.8.0",
|
|
79
79
|
"eslint-config-storm": "^1.0.3",
|
|
80
80
|
"eslint-import-resolver-alias": "^1.1.2",
|
|
81
|
-
"eslint-import-resolver-typescript": "^3.
|
|
82
|
-
"eslint-plugin-import": "^2.
|
|
83
|
-
"eslint-plugin-jest": "^27.2
|
|
84
|
-
"eslint-plugin-jsx-a11y": "^6.
|
|
85
|
-
"eslint-plugin-react": "^7.
|
|
81
|
+
"eslint-import-resolver-typescript": "^3.6.1",
|
|
82
|
+
"eslint-plugin-import": "^2.29.1",
|
|
83
|
+
"eslint-plugin-jest": "^27.6.2",
|
|
84
|
+
"eslint-plugin-jsx-a11y": "^6.8.0",
|
|
85
|
+
"eslint-plugin-react": "^7.33.2",
|
|
86
86
|
"eslint-plugin-react-hooks": "^4.6.0",
|
|
87
87
|
"esm": "^3.2.25",
|
|
88
88
|
"husky": "^8.0.2",
|
|
89
|
-
"jest": "^29.
|
|
89
|
+
"jest": "^29.7.0",
|
|
90
90
|
"lint-staged": "^13.2.1",
|
|
91
91
|
"ncp": "^2.0.0",
|
|
92
92
|
"pascal-case": "^3.1.2",
|
|
93
93
|
"path": "^0.12.7",
|
|
94
|
-
"phone": "^3.1.
|
|
95
|
-
"postcss": "^8.4.
|
|
94
|
+
"phone": "^3.1.42",
|
|
95
|
+
"postcss": "^8.4.33",
|
|
96
96
|
"prettier": "^2.8.8",
|
|
97
97
|
"prompts": "^2.4.2",
|
|
98
98
|
"randomcolor": "^0.6.2",
|
|
@@ -100,7 +100,7 @@
|
|
|
100
100
|
"react-dom": "^18.2.0",
|
|
101
101
|
"react-ga4": "^2.1.0",
|
|
102
102
|
"react-helmet-async": "^1.3.0",
|
|
103
|
-
"react-router-dom": "^6.
|
|
103
|
+
"react-router-dom": "^6.21.2",
|
|
104
104
|
"react-toastify": "^9.1.3",
|
|
105
105
|
"remark-gfm": "^3.0.1",
|
|
106
106
|
"replace": "^1.2.2",
|
|
@@ -109,9 +109,9 @@
|
|
|
109
109
|
"rollup-plugin-peer-deps-external": "^2.2.4",
|
|
110
110
|
"rollup-plugin-postcss": "^4.0.2",
|
|
111
111
|
"signale": "^1.4.0",
|
|
112
|
-
"ts-node": "^10.9.
|
|
112
|
+
"ts-node": "^10.9.2",
|
|
113
113
|
"tslib": "^2.6.2",
|
|
114
|
-
"typescript": "^5.
|
|
114
|
+
"typescript": "^5.3.3",
|
|
115
115
|
"vite": "^4.4.9",
|
|
116
116
|
"vite-plugin-eslint": "^1.8.1",
|
|
117
117
|
"vite-plugin-svgr": "^3.2.0"
|