@douyinfe/semi-ui-19 2.90.2 → 2.90.4
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/lib/cjs/modal/confirm.d.ts +5 -5
- package/lib/es/modal/confirm.d.ts +5 -5
- package/package.json +20 -17
|
@@ -155,13 +155,13 @@ export declare function withError(props: ModalReactProps): {
|
|
|
155
155
|
style?: React.CSSProperties;
|
|
156
156
|
className?: string;
|
|
157
157
|
motion?: boolean;
|
|
158
|
-
|
|
158
|
+
visible?: boolean;
|
|
159
159
|
footer?: React.ReactNode;
|
|
160
160
|
header?: React.ReactNode;
|
|
161
|
-
direction?: any;
|
|
162
|
-
visible?: boolean;
|
|
163
161
|
mask?: boolean;
|
|
164
162
|
zIndex?: number;
|
|
163
|
+
getPopupContainer?: () => HTMLElement;
|
|
164
|
+
direction?: any;
|
|
165
165
|
width?: string | number;
|
|
166
166
|
height?: string | number;
|
|
167
167
|
content?: React.ReactNode;
|
|
@@ -220,8 +220,6 @@ export declare function withError(props: ModalReactProps): {
|
|
|
220
220
|
value?: string | number | readonly string[];
|
|
221
221
|
onAnimationStart?: React.AnimationEventHandler<HTMLButtonElement>;
|
|
222
222
|
onAnimationEnd?: React.AnimationEventHandler<HTMLButtonElement>;
|
|
223
|
-
form?: string;
|
|
224
|
-
slot?: string;
|
|
225
223
|
prefix?: string;
|
|
226
224
|
dangerouslySetInnerHTML?: {
|
|
227
225
|
__html: string | TrustedHTML;
|
|
@@ -381,6 +379,8 @@ export declare function withError(props: ModalReactProps): {
|
|
|
381
379
|
onTransitionEnd?: React.TransitionEventHandler<HTMLButtonElement>;
|
|
382
380
|
onTransitionEndCapture?: React.TransitionEventHandler<HTMLButtonElement>;
|
|
383
381
|
hidden?: boolean;
|
|
382
|
+
form?: string;
|
|
383
|
+
slot?: string;
|
|
384
384
|
contextMenu?: string;
|
|
385
385
|
defaultValue?: string | number | readonly string[];
|
|
386
386
|
accessKey?: string;
|
|
@@ -155,13 +155,13 @@ export declare function withError(props: ModalReactProps): {
|
|
|
155
155
|
style?: React.CSSProperties;
|
|
156
156
|
className?: string;
|
|
157
157
|
motion?: boolean;
|
|
158
|
-
|
|
158
|
+
visible?: boolean;
|
|
159
159
|
footer?: React.ReactNode;
|
|
160
160
|
header?: React.ReactNode;
|
|
161
|
-
direction?: any;
|
|
162
|
-
visible?: boolean;
|
|
163
161
|
mask?: boolean;
|
|
164
162
|
zIndex?: number;
|
|
163
|
+
getPopupContainer?: () => HTMLElement;
|
|
164
|
+
direction?: any;
|
|
165
165
|
width?: string | number;
|
|
166
166
|
height?: string | number;
|
|
167
167
|
content?: React.ReactNode;
|
|
@@ -220,8 +220,6 @@ export declare function withError(props: ModalReactProps): {
|
|
|
220
220
|
value?: string | number | readonly string[];
|
|
221
221
|
onAnimationStart?: React.AnimationEventHandler<HTMLButtonElement>;
|
|
222
222
|
onAnimationEnd?: React.AnimationEventHandler<HTMLButtonElement>;
|
|
223
|
-
form?: string;
|
|
224
|
-
slot?: string;
|
|
225
223
|
prefix?: string;
|
|
226
224
|
dangerouslySetInnerHTML?: {
|
|
227
225
|
__html: string | TrustedHTML;
|
|
@@ -381,6 +379,8 @@ export declare function withError(props: ModalReactProps): {
|
|
|
381
379
|
onTransitionEnd?: React.TransitionEventHandler<HTMLButtonElement>;
|
|
382
380
|
onTransitionEndCapture?: React.TransitionEventHandler<HTMLButtonElement>;
|
|
383
381
|
hidden?: boolean;
|
|
382
|
+
form?: string;
|
|
383
|
+
slot?: string;
|
|
384
384
|
contextMenu?: string;
|
|
385
385
|
defaultValue?: string | number | readonly string[];
|
|
386
386
|
accessKey?: string;
|
package/package.json
CHANGED
|
@@ -1,11 +1,21 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@douyinfe/semi-ui-19",
|
|
3
|
-
"version": "2.90.
|
|
3
|
+
"version": "2.90.4",
|
|
4
4
|
"description": "A modern, comprehensive, flexible design system and UI library. Connect DesignOps & DevOps. Quickly build beautiful React apps. Maintained by Douyin-fe team. (React 19 Compatible)",
|
|
5
5
|
"main": "lib/cjs/index.js",
|
|
6
6
|
"module": "lib/es/index.js",
|
|
7
|
-
"types": "lib/
|
|
8
|
-
"typings": "lib/
|
|
7
|
+
"types": "lib/cjs/index.d.ts",
|
|
8
|
+
"typings": "lib/cjs/index.d.ts",
|
|
9
|
+
"typesVersions": {
|
|
10
|
+
"*": {
|
|
11
|
+
"lib/es/*": [
|
|
12
|
+
"lib/es/*"
|
|
13
|
+
],
|
|
14
|
+
"lib/cjs/*": [
|
|
15
|
+
"lib/cjs/*"
|
|
16
|
+
]
|
|
17
|
+
}
|
|
18
|
+
},
|
|
9
19
|
"exports": {
|
|
10
20
|
".": {
|
|
11
21
|
"types": "./lib/es/index.d.ts",
|
|
@@ -60,23 +70,16 @@
|
|
|
60
70
|
"!**/*.spec.ts",
|
|
61
71
|
"!**/*.spec.tsx"
|
|
62
72
|
],
|
|
63
|
-
"typesVersions": {
|
|
64
|
-
"*": {
|
|
65
|
-
"*": [
|
|
66
|
-
"lib/es/*"
|
|
67
|
-
]
|
|
68
|
-
}
|
|
69
|
-
},
|
|
70
73
|
"dependencies": {
|
|
71
74
|
"@dnd-kit/core": "^6.0.8",
|
|
72
75
|
"@dnd-kit/sortable": "^7.0.2",
|
|
73
76
|
"@dnd-kit/utilities": "^3.2.1",
|
|
74
|
-
"@douyinfe/semi-animation": "2.90.
|
|
75
|
-
"@douyinfe/semi-animation-react": "2.90.
|
|
76
|
-
"@douyinfe/semi-foundation": "2.90.
|
|
77
|
-
"@douyinfe/semi-icons": "2.90.
|
|
78
|
-
"@douyinfe/semi-illustrations": "2.90.
|
|
79
|
-
"@douyinfe/semi-theme-default": "2.90.
|
|
77
|
+
"@douyinfe/semi-animation": "2.90.4",
|
|
78
|
+
"@douyinfe/semi-animation-react": "2.90.4",
|
|
79
|
+
"@douyinfe/semi-foundation": "2.90.4",
|
|
80
|
+
"@douyinfe/semi-icons": "2.90.4",
|
|
81
|
+
"@douyinfe/semi-illustrations": "2.90.4",
|
|
82
|
+
"@douyinfe/semi-theme-default": "2.90.4",
|
|
80
83
|
"@tiptap/core": "^3.10.7",
|
|
81
84
|
"@tiptap/extension-document": "^3.10.7",
|
|
82
85
|
"@tiptap/extension-hard-break": "^3.10.7",
|
|
@@ -141,7 +144,7 @@
|
|
|
141
144
|
],
|
|
142
145
|
"author": "",
|
|
143
146
|
"license": "MIT",
|
|
144
|
-
"gitHead": "
|
|
147
|
+
"gitHead": "802e389e04714e6e930f978220c2b5a8e0d17cb1",
|
|
145
148
|
"devDependencies": {
|
|
146
149
|
"@babel/plugin-proposal-decorators": "^7.15.8",
|
|
147
150
|
"@babel/plugin-transform-runtime": "^7.15.8",
|