doui-react 2.0.9 → 2.0.11
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/api/component/common.d.ts +1 -1
- package/es/api/component/common.js +55 -46
- package/es/form/component/utils.d.ts +16 -16
- package/es/form/style/index.js +1 -1
- package/es/grid/component/pagination.d.ts +10 -10
- package/es/icon/hook/index.d.ts +200 -200
- package/es/input/component/text-area.d.ts +1 -1
- package/es/input/component/text-area.js +6 -2
- package/es/modal-prompt/component/utils.d.ts +1 -1
- package/es/open-modal/hook/use-modal.js +1 -1
- package/es/radio/component/abstract-box.d.ts +71 -71
- package/es/tabs/component/utils.d.ts +7 -7
- package/es/tooltip/component/index.d.ts +11 -10
- package/lib/api/component/common.d.ts +1 -1
- package/lib/api/component/common.js +55 -46
- package/lib/form/component/utils.d.ts +16 -16
- package/lib/form/style/index.js +1 -1
- package/lib/grid/component/pagination.d.ts +10 -10
- package/lib/icon/hook/index.d.ts +200 -200
- package/lib/input/component/text-area.d.ts +1 -1
- package/lib/input/component/text-area.js +6 -2
- package/lib/modal-prompt/component/utils.d.ts +1 -1
- package/lib/open-modal/hook/use-modal.js +2 -2
- package/lib/radio/component/abstract-box.d.ts +71 -71
- package/lib/tabs/component/utils.d.ts +7 -7
- package/lib/tooltip/component/index.d.ts +11 -10
- package/package.json +4 -2
|
@@ -8,8 +8,8 @@ export declare function useAbstractBox({ refs, boxTooltip, value, onChange, inGr
|
|
|
8
8
|
color?: string | undefined;
|
|
9
9
|
title?: import("react").ReactNode | import("antd/es/_util/getRenderPropValue").RenderFunction;
|
|
10
10
|
overlay?: import("react").ReactNode | import("antd/es/_util/getRenderPropValue").RenderFunction;
|
|
11
|
-
styles?: Partial<Record<"
|
|
12
|
-
classNames?: Partial<Record<"
|
|
11
|
+
styles?: Partial<Record<"body" | "root", import("react").CSSProperties>> | undefined;
|
|
12
|
+
classNames?: Partial<Record<"body" | "root", string>> | undefined;
|
|
13
13
|
style?: import("react").CSSProperties | undefined;
|
|
14
14
|
className?: string | undefined;
|
|
15
15
|
rootClassName?: string | undefined;
|
|
@@ -36,26 +36,26 @@ export declare function useAbstractBox({ refs, boxTooltip, value, onChange, inGr
|
|
|
36
36
|
defaultVisible?: boolean | undefined;
|
|
37
37
|
onVisibleChange?: ((visible: boolean) => void) | undefined;
|
|
38
38
|
afterVisibleChange?: ((visible: boolean) => void) | undefined;
|
|
39
|
-
|
|
40
|
-
onPopupAlign?: ((element: HTMLElement, align: import("@rc-component/trigger").AlignType) => void) | undefined;
|
|
41
|
-
fresh?: boolean | undefined;
|
|
42
|
-
mouseLeaveDelay?: number | undefined;
|
|
43
|
-
mouseEnterDelay?: number | undefined;
|
|
44
|
-
forceRender?: boolean | undefined;
|
|
45
|
-
popupVisible?: boolean | undefined;
|
|
46
|
-
trigger?: import("@rc-component/trigger").ActionType | import("@rc-component/trigger").ActionType[] | undefined;
|
|
47
|
-
transitionName?: string | undefined;
|
|
39
|
+
zIndex?: number | undefined;
|
|
48
40
|
animation?: string | undefined;
|
|
49
41
|
motion?: import("rc-motion").CSSMotionProps | undefined;
|
|
50
|
-
|
|
42
|
+
transitionName?: string | undefined;
|
|
43
|
+
prefixCls?: string | undefined;
|
|
44
|
+
forceRender?: boolean | undefined;
|
|
45
|
+
id?: string | undefined;
|
|
46
|
+
mouseEnterDelay?: number | undefined;
|
|
47
|
+
mouseLeaveDelay?: number | undefined;
|
|
48
|
+
onPopupAlign?: ((element: HTMLElement, align: import("@rc-component/trigger").AlignType) => void) | undefined;
|
|
51
49
|
overlayClassName?: string | undefined;
|
|
52
|
-
getTooltipContainer?: ((node: HTMLElement) => HTMLElement) | undefined;
|
|
53
50
|
align?: import("@rc-component/trigger").AlignType | undefined;
|
|
51
|
+
overlayStyle?: import("react").CSSProperties | undefined;
|
|
52
|
+
trigger?: import("@rc-component/trigger").ActionType | import("@rc-component/trigger").ActionType[] | undefined;
|
|
53
|
+
popupVisible?: boolean | undefined;
|
|
54
|
+
fresh?: boolean | undefined;
|
|
55
|
+
getTooltipContainer?: ((node: HTMLElement) => HTMLElement) | undefined;
|
|
54
56
|
showArrow?: boolean | import("@rc-component/trigger").ArrowType | undefined;
|
|
55
57
|
arrowContent?: import("react").ReactNode;
|
|
56
|
-
id?: string | undefined;
|
|
57
58
|
overlayInnerStyle?: import("react").CSSProperties | undefined;
|
|
58
|
-
zIndex?: number | undefined;
|
|
59
59
|
};
|
|
60
60
|
boxProps: {
|
|
61
61
|
onChange(e: CheckboxChangeEvent): void;
|
|
@@ -65,75 +65,40 @@ export declare function useAbstractBox({ refs, boxTooltip, value, onChange, inGr
|
|
|
65
65
|
value?: any;
|
|
66
66
|
boxTooltip?: import("react").ReactNode | import("antd").TooltipProps;
|
|
67
67
|
inGroup?: boolean | undefined;
|
|
68
|
-
prefixCls?: string | undefined;
|
|
69
|
-
disabled?: boolean | undefined;
|
|
70
|
-
className?: string | undefined;
|
|
71
68
|
style?: import("react").CSSProperties | undefined;
|
|
72
|
-
|
|
69
|
+
title?: string | undefined;
|
|
70
|
+
className?: string | undefined;
|
|
71
|
+
prefixCls?: string | undefined;
|
|
73
72
|
rootClassName?: string | undefined;
|
|
74
|
-
|
|
73
|
+
id?: string | undefined;
|
|
75
74
|
name?: string | undefined;
|
|
76
|
-
required?: boolean | undefined;
|
|
77
75
|
type?: string | undefined;
|
|
78
|
-
defaultChecked?: boolean | undefined;
|
|
79
|
-
autoFocus?: boolean | undefined;
|
|
80
76
|
tabIndex?: number | undefined;
|
|
81
|
-
title?: string | undefined;
|
|
82
77
|
onKeyDown?: import("react").KeyboardEventHandler<HTMLElement> | undefined;
|
|
83
78
|
onKeyPress?: import("react").KeyboardEventHandler<HTMLElement> | undefined;
|
|
84
79
|
onClick?: import("react").MouseEventHandler<HTMLElement> | undefined;
|
|
85
80
|
onMouseEnter?: import("react").MouseEventHandler<HTMLElement> | undefined;
|
|
86
81
|
onMouseLeave?: import("react").MouseEventHandler<HTMLElement> | undefined;
|
|
82
|
+
disabled?: boolean | undefined;
|
|
83
|
+
checked?: boolean | undefined;
|
|
84
|
+
required?: boolean | undefined;
|
|
85
|
+
defaultChecked?: boolean | undefined;
|
|
86
|
+
autoFocus?: boolean | undefined;
|
|
87
87
|
indeterminate?: boolean | undefined;
|
|
88
88
|
skipGroup?: boolean | undefined;
|
|
89
|
-
|
|
90
|
-
color?: string | undefined;
|
|
91
|
-
rows?: number | false | undefined;
|
|
92
|
-
suppressContentEditableWarning?: boolean | undefined;
|
|
93
|
-
suppressHydrationWarning?: boolean | undefined;
|
|
89
|
+
slot?: string | undefined;
|
|
94
90
|
accessKey?: string | undefined;
|
|
95
|
-
autoCapitalize?: (string & {}) | "none" | "off" | "on" | "sentences" | "words" | "characters" | undefined;
|
|
96
|
-
contentEditable?: "inherit" | (boolean | "true" | "false") | "plaintext-only" | undefined;
|
|
97
|
-
contextMenu?: string | undefined;
|
|
98
91
|
dir?: string | undefined;
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
92
|
+
color?: string | undefined;
|
|
93
|
+
content?: string | undefined;
|
|
94
|
+
direction?: import("antd/es/config-provider").DirectionType;
|
|
95
|
+
translate?: "no" | "yes" | undefined;
|
|
96
|
+
suppressHydrationWarning?: boolean | undefined;
|
|
102
97
|
lang?: string | undefined;
|
|
103
|
-
nonce?: string | undefined;
|
|
104
|
-
slot?: string | undefined;
|
|
105
|
-
spellCheck?: (boolean | "true" | "false") | undefined;
|
|
106
|
-
translate?: "yes" | "no" | undefined;
|
|
107
|
-
radioGroup?: string | undefined;
|
|
108
98
|
role?: import("react").AriaRole | undefined;
|
|
109
|
-
about?: string | undefined;
|
|
110
|
-
content?: string | undefined;
|
|
111
|
-
datatype?: string | undefined;
|
|
112
|
-
inlist?: any;
|
|
113
|
-
prefix?: string | undefined;
|
|
114
|
-
property?: string | undefined;
|
|
115
|
-
rel?: string | undefined;
|
|
116
|
-
resource?: string | undefined;
|
|
117
|
-
rev?: string | undefined;
|
|
118
|
-
typeof?: string | undefined;
|
|
119
|
-
vocab?: string | undefined;
|
|
120
|
-
autoCorrect?: string | undefined;
|
|
121
|
-
autoSave?: string | undefined;
|
|
122
|
-
itemProp?: string | undefined;
|
|
123
|
-
itemScope?: boolean | undefined;
|
|
124
|
-
itemType?: string | undefined;
|
|
125
|
-
itemID?: string | undefined;
|
|
126
|
-
itemRef?: string | undefined;
|
|
127
|
-
results?: number | undefined;
|
|
128
|
-
security?: string | undefined;
|
|
129
|
-
unselectable?: "off" | "on" | undefined;
|
|
130
|
-
inputMode?: "search" | "none" | "text" | "email" | "tel" | "url" | "numeric" | "decimal" | undefined;
|
|
131
|
-
is?: string | undefined;
|
|
132
|
-
exportparts?: string | undefined;
|
|
133
|
-
part?: string | undefined;
|
|
134
99
|
"aria-activedescendant"?: string | undefined;
|
|
135
100
|
"aria-atomic"?: (boolean | "true" | "false") | undefined;
|
|
136
|
-
"aria-autocomplete"?: "
|
|
101
|
+
"aria-autocomplete"?: "none" | "list" | "inline" | "both" | undefined;
|
|
137
102
|
"aria-braillelabel"?: string | undefined;
|
|
138
103
|
"aria-brailleroledescription"?: string | undefined;
|
|
139
104
|
"aria-busy"?: (boolean | "true" | "false") | undefined;
|
|
@@ -143,7 +108,7 @@ export declare function useAbstractBox({ refs, boxTooltip, value, onChange, inGr
|
|
|
143
108
|
"aria-colindextext"?: string | undefined;
|
|
144
109
|
"aria-colspan"?: number | undefined;
|
|
145
110
|
"aria-controls"?: string | undefined;
|
|
146
|
-
"aria-current"?: boolean | "
|
|
111
|
+
"aria-current"?: boolean | "time" | "page" | "true" | "false" | "step" | "location" | "date" | undefined;
|
|
147
112
|
"aria-describedby"?: string | undefined;
|
|
148
113
|
"aria-description"?: string | undefined;
|
|
149
114
|
"aria-details"?: string | undefined;
|
|
@@ -153,7 +118,7 @@ export declare function useAbstractBox({ refs, boxTooltip, value, onChange, inGr
|
|
|
153
118
|
"aria-expanded"?: (boolean | "true" | "false") | undefined;
|
|
154
119
|
"aria-flowto"?: string | undefined;
|
|
155
120
|
"aria-grabbed"?: (boolean | "true" | "false") | undefined;
|
|
156
|
-
"aria-haspopup"?: boolean | "
|
|
121
|
+
"aria-haspopup"?: boolean | "dialog" | "menu" | "grid" | "listbox" | "tree" | "true" | "false" | undefined;
|
|
157
122
|
"aria-hidden"?: (boolean | "true" | "false") | undefined;
|
|
158
123
|
"aria-invalid"?: boolean | "true" | "false" | "grammar" | "spelling" | undefined;
|
|
159
124
|
"aria-keyshortcuts"?: string | undefined;
|
|
@@ -164,13 +129,13 @@ export declare function useAbstractBox({ refs, boxTooltip, value, onChange, inGr
|
|
|
164
129
|
"aria-modal"?: (boolean | "true" | "false") | undefined;
|
|
165
130
|
"aria-multiline"?: (boolean | "true" | "false") | undefined;
|
|
166
131
|
"aria-multiselectable"?: (boolean | "true" | "false") | undefined;
|
|
167
|
-
"aria-orientation"?: "
|
|
132
|
+
"aria-orientation"?: "vertical" | "horizontal" | undefined;
|
|
168
133
|
"aria-owns"?: string | undefined;
|
|
169
134
|
"aria-placeholder"?: string | undefined;
|
|
170
135
|
"aria-posinset"?: number | undefined;
|
|
171
136
|
"aria-pressed"?: boolean | "true" | "false" | "mixed" | undefined;
|
|
172
137
|
"aria-readonly"?: (boolean | "true" | "false") | undefined;
|
|
173
|
-
"aria-relevant"?: "
|
|
138
|
+
"aria-relevant"?: "text" | "all" | "additions" | "additions removals" | "additions text" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals" | undefined;
|
|
174
139
|
"aria-required"?: (boolean | "true" | "false") | undefined;
|
|
175
140
|
"aria-roledescription"?: string | undefined;
|
|
176
141
|
"aria-rowcount"?: number | undefined;
|
|
@@ -337,8 +302,43 @@ export declare function useAbstractBox({ refs, boxTooltip, value, onChange, inGr
|
|
|
337
302
|
onAnimationIterationCapture?: import("react").AnimationEventHandler<HTMLElement> | undefined;
|
|
338
303
|
onTransitionEnd?: import("react").TransitionEventHandler<HTMLElement> | undefined;
|
|
339
304
|
onTransitionEndCapture?: import("react").TransitionEventHandler<HTMLElement> | undefined;
|
|
340
|
-
direction?: import("antd/es/config-provider").DirectionType;
|
|
341
305
|
tooltip?: import("react").ReactNode | import("antd").TooltipProps;
|
|
306
|
+
hidden?: boolean | undefined;
|
|
307
|
+
contextMenu?: string | undefined;
|
|
308
|
+
defaultValue?: string | number | readonly string[] | undefined;
|
|
309
|
+
prefix?: string | undefined;
|
|
310
|
+
suppressContentEditableWarning?: boolean | undefined;
|
|
311
|
+
autoCapitalize?: (string & {}) | "none" | "off" | "on" | "sentences" | "words" | "characters" | undefined;
|
|
312
|
+
contentEditable?: "inherit" | (boolean | "true" | "false") | "plaintext-only" | undefined;
|
|
313
|
+
draggable?: (boolean | "true" | "false") | undefined;
|
|
314
|
+
enterKeyHint?: "search" | "done" | "enter" | "next" | "go" | "previous" | "send" | undefined;
|
|
315
|
+
nonce?: string | undefined;
|
|
316
|
+
spellCheck?: (boolean | "true" | "false") | undefined;
|
|
317
|
+
radioGroup?: string | undefined;
|
|
318
|
+
about?: string | undefined;
|
|
319
|
+
datatype?: string | undefined;
|
|
320
|
+
inlist?: any;
|
|
321
|
+
property?: string | undefined;
|
|
322
|
+
rel?: string | undefined;
|
|
323
|
+
resource?: string | undefined;
|
|
324
|
+
rev?: string | undefined;
|
|
325
|
+
typeof?: string | undefined;
|
|
326
|
+
vocab?: string | undefined;
|
|
327
|
+
autoCorrect?: string | undefined;
|
|
328
|
+
autoSave?: string | undefined;
|
|
329
|
+
itemProp?: string | undefined;
|
|
330
|
+
itemScope?: boolean | undefined;
|
|
331
|
+
itemType?: string | undefined;
|
|
332
|
+
itemID?: string | undefined;
|
|
333
|
+
itemRef?: string | undefined;
|
|
334
|
+
results?: number | undefined;
|
|
335
|
+
security?: string | undefined;
|
|
336
|
+
unselectable?: "off" | "on" | undefined;
|
|
337
|
+
inputMode?: "search" | "text" | "none" | "email" | "tel" | "url" | "numeric" | "decimal" | undefined;
|
|
338
|
+
is?: string | undefined;
|
|
339
|
+
exportparts?: string | undefined;
|
|
340
|
+
part?: string | undefined;
|
|
341
|
+
rows?: number | false | undefined;
|
|
342
342
|
autoShowTooltip?: boolean | undefined;
|
|
343
343
|
refs?: import("../../api").Refs | undefined;
|
|
344
344
|
ref: import("../../api").Refs | undefined;
|
|
@@ -6,19 +6,19 @@ export declare function getRenderTabBar({ type, items, size, tabBarGutter, tabBa
|
|
|
6
6
|
export declare function generateTabItems({ items }: TabsProps): {
|
|
7
7
|
label: import("@emotion/react/jsx-runtime").JSX.Element;
|
|
8
8
|
key: string;
|
|
9
|
-
prefixCls?: string | undefined;
|
|
10
|
-
disabled?: boolean | undefined;
|
|
11
|
-
className?: string | undefined;
|
|
12
9
|
style?: import("react").CSSProperties | undefined;
|
|
10
|
+
className?: string | undefined;
|
|
13
11
|
children?: import("react").ReactNode;
|
|
12
|
+
closable?: boolean | undefined;
|
|
13
|
+
prefixCls?: string | undefined;
|
|
14
|
+
closeIcon?: import("react").ReactNode;
|
|
14
15
|
forceRender?: boolean | undefined;
|
|
15
16
|
id?: string | undefined;
|
|
17
|
+
icon?: import("react").ReactNode;
|
|
18
|
+
active?: boolean | undefined;
|
|
19
|
+
disabled?: boolean | undefined;
|
|
16
20
|
destroyInactiveTabPane?: boolean | undefined;
|
|
17
21
|
animated?: boolean | undefined;
|
|
18
|
-
closable?: boolean | undefined;
|
|
19
|
-
closeIcon?: import("react").ReactNode;
|
|
20
|
-
icon?: import("react").ReactNode;
|
|
21
22
|
tabKey?: string | undefined;
|
|
22
|
-
active?: boolean | undefined;
|
|
23
23
|
}[];
|
|
24
24
|
export {};
|
|
@@ -1,12 +1,13 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
+
import { getPopupContainer } from "../../api";
|
|
2
3
|
import { TooltipProps } from "..";
|
|
3
4
|
export declare const tooltipOverlayClassName: string;
|
|
4
5
|
export declare function getTooltipProps(props: TooltipProps): {
|
|
5
6
|
color?: string | undefined;
|
|
6
7
|
title?: import("react").ReactNode | import("antd/es/_util/getRenderPropValue").RenderFunction;
|
|
7
8
|
overlay?: import("react").ReactNode | import("antd/es/_util/getRenderPropValue").RenderFunction;
|
|
8
|
-
styles?: Partial<Record<"
|
|
9
|
-
classNames: Partial<Record<"
|
|
9
|
+
styles?: Partial<Record<"body" | "root", import("react").CSSProperties>> | undefined;
|
|
10
|
+
classNames: Partial<Record<"body" | "root", string>>;
|
|
10
11
|
style?: import("react").CSSProperties | undefined;
|
|
11
12
|
className?: string | undefined;
|
|
12
13
|
rootClassName?: string | undefined;
|
|
@@ -19,7 +20,7 @@ export declare function getTooltipProps(props: TooltipProps): {
|
|
|
19
20
|
pointAtCenter?: boolean | undefined;
|
|
20
21
|
};
|
|
21
22
|
autoAdjustOverflow?: boolean | import("antd/es/tooltip").AdjustOverflow | undefined;
|
|
22
|
-
getPopupContainer:
|
|
23
|
+
getPopupContainer: typeof getPopupContainer;
|
|
23
24
|
children?: import("react").ReactNode;
|
|
24
25
|
destroyTooltipOnHide?: boolean | {
|
|
25
26
|
keepParent?: boolean | undefined;
|
|
@@ -40,15 +41,15 @@ export declare function getTooltipProps(props: TooltipProps): {
|
|
|
40
41
|
prefixCls?: string | undefined;
|
|
41
42
|
forceRender?: boolean | undefined;
|
|
42
43
|
id?: string | undefined;
|
|
43
|
-
align?: import("@rc-component/trigger").AlignType | undefined;
|
|
44
|
-
onPopupAlign?: ((element: HTMLElement, align: import("@rc-component/trigger").AlignType) => void) | undefined;
|
|
45
|
-
fresh?: boolean | undefined;
|
|
46
|
-
mouseLeaveDelay?: number | undefined;
|
|
47
44
|
mouseEnterDelay?: number | undefined;
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
overlayStyle?: import("react").CSSProperties | undefined;
|
|
45
|
+
mouseLeaveDelay?: number | undefined;
|
|
46
|
+
onPopupAlign?: ((element: HTMLElement, align: import("@rc-component/trigger").AlignType) => void) | undefined;
|
|
51
47
|
overlayClassName?: string | undefined;
|
|
48
|
+
align?: import("@rc-component/trigger").AlignType | undefined;
|
|
49
|
+
overlayStyle?: import("react").CSSProperties | undefined;
|
|
50
|
+
trigger?: import("@rc-component/trigger").ActionType | import("@rc-component/trigger").ActionType[] | undefined;
|
|
51
|
+
popupVisible?: boolean | undefined;
|
|
52
|
+
fresh?: boolean | undefined;
|
|
52
53
|
getTooltipContainer?: ((node: HTMLElement) => HTMLElement) | undefined;
|
|
53
54
|
showArrow?: boolean | import("@rc-component/trigger").ArrowType | undefined;
|
|
54
55
|
arrowContent?: import("react").ReactNode;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "doui-react",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.11",
|
|
4
4
|
"description": "A React UI library based on Ant Design",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"main": "lib/index.js",
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
"prepare": "if [ -z \"$SKIP_PREPARE\" ]; then yarn setup; fi",
|
|
22
22
|
"prepublishOnly": "yarn lint && yarn build",
|
|
23
23
|
"preview:docs": "dumi preview --port 3060",
|
|
24
|
-
"release": "npm version patch && npm publish",
|
|
24
|
+
"release": "npm login && npm version patch && npm publish",
|
|
25
25
|
"setup": "husky && dumi setup && patch-package",
|
|
26
26
|
"test": "jest --coverage"
|
|
27
27
|
},
|
|
@@ -51,6 +51,7 @@
|
|
|
51
51
|
"delay": "^5.0.0",
|
|
52
52
|
"lodash": "^4.17.21",
|
|
53
53
|
"match-path-parser": "^8.2.2",
|
|
54
|
+
"p-wait-for": "^6.0.0",
|
|
54
55
|
"query-string": "^7.1.3",
|
|
55
56
|
"rc-resize-observer": "^1.4.3",
|
|
56
57
|
"react-copy-to-clipboard": "^5.1.0",
|
|
@@ -92,6 +93,7 @@
|
|
|
92
93
|
"@umijs/test": "^4",
|
|
93
94
|
"@utopia/eslint-config-react": "^0.0.13",
|
|
94
95
|
"@utopia/prettier-config-base": "^0.0.13",
|
|
96
|
+
"antd": "^5",
|
|
95
97
|
"cross-env": "^7",
|
|
96
98
|
"dumi": "2.4.17",
|
|
97
99
|
"eslint": "^8.23.0",
|