amis 1.9.1-beta.23 → 1.9.1-beta.26
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/index.js +1 -1
- package/lib/renderers/Dialog.d.ts +147 -169
- package/lib/renderers/Dialog.js.map +2 -2
- package/lib/renderers/Form/index.d.ts +4 -4
- package/lib/renderers/Form/index.js +252 -252
- package/lib/renderers/Form/index.js.map +2 -2
- package/lib/themes/ang-ie11.css +4 -7
- package/lib/themes/ang.css +4 -7
- package/lib/themes/ang.css.map +1 -1
- package/lib/themes/antd-ie11.css +4 -7
- package/lib/themes/antd.css +4 -7
- package/lib/themes/antd.css.map +1 -1
- package/lib/themes/cxd-ie11.css +4 -7
- package/lib/themes/cxd.css +4 -7
- package/lib/themes/cxd.css.map +1 -1
- package/lib/themes/dark-ie11.css +4 -7
- package/lib/themes/dark.css +4 -7
- package/lib/themes/dark.css.map +1 -1
- package/lib/themes/default-ie11.css +4 -7
- package/lib/themes/default.css +4 -7
- package/lib/themes/default.css.map +1 -1
- package/lib/utils/helper.js +1 -1
- package/lib/utils/helper.js.map +2 -2
- package/package.json +1 -1
- package/schema.json +24 -19
- package/scss/components/form/_date.scss +19 -11
- package/sdk/ang-ie11.css +4 -8
- package/sdk/ang.css +4 -8
- package/sdk/antd-ie11.css +4 -8
- package/sdk/antd.css +4 -8
- package/sdk/barcode.js +51 -51
- package/sdk/charts.js +14 -14
- package/sdk/codemirror.js +7 -7
- package/sdk/color-picker.js +65 -65
- package/sdk/cropperjs.js +2 -2
- package/sdk/cxd-ie11.css +4 -8
- package/sdk/cxd.css +4 -8
- package/sdk/dark-ie11.css +4 -8
- package/sdk/dark.css +4 -8
- package/sdk/exceljs.js +1 -1
- package/sdk/markdown.js +69 -69
- package/sdk/papaparse.js +1 -1
- package/sdk/renderers/Form/CityDB.js +1 -1
- package/sdk/rest.js +16 -16
- package/sdk/rich-text.js +62 -62
- package/sdk/sdk-ie11.css +4 -8
- package/sdk/sdk.css +4 -8
- package/sdk/sdk.js +1648 -1643
- package/sdk/thirds/hls.js/hls.js +1 -1
- package/sdk/thirds/mpegts.js/mpegts.js +1 -1
- package/sdk/tinymce.js +57 -57
- package/src/renderers/Dialog.tsx +0 -1
- package/src/renderers/Form/index.tsx +15 -24
- package/src/utils/helper.ts +2 -2
@@ -83,9 +83,6 @@ export default class Dialog extends React.Component<DialogProps> {
|
|
83
83
|
showCloseButton: boolean;
|
84
84
|
wrapperComponent: {
|
85
85
|
new (props: Omit<Pick<Omit<import("../components/Modal").ModalProps, keyof import("../locale").LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "disabled" | "show" | "onHide" | "onEntered" | "onExited" | "closeOnEsc" | "contentClassName" | "closeOnOutside"> & Partial<Pick<Omit<import("../components/Modal").ModalProps, keyof import("../locale").LocaleProps>, "overlay" | "size" | "container">> & Partial<Pick<{
|
86
|
-
/**
|
87
|
-
* 内容区域
|
88
|
-
*/
|
89
86
|
container: HTMLElement;
|
90
87
|
size: string;
|
91
88
|
overlay: boolean;
|
@@ -99,9 +96,6 @@ export default class Dialog extends React.Component<DialogProps> {
|
|
99
96
|
render(): JSX.Element;
|
100
97
|
context: any;
|
101
98
|
setState<K extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<Omit<Pick<Omit<import("../components/Modal").ModalProps, keyof import("../locale").LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "disabled" | "show" | "onHide" | "onEntered" | "onExited" | "closeOnEsc" | "contentClassName" | "closeOnOutside"> & Partial<Pick<Omit<import("../components/Modal").ModalProps, keyof import("../locale").LocaleProps>, "overlay" | "size" | "container">> & Partial<Pick<{
|
102
|
-
/**
|
103
|
-
* 内容区域
|
104
|
-
*/
|
105
99
|
container: HTMLElement;
|
106
100
|
size: string;
|
107
101
|
overlay: boolean;
|
@@ -111,9 +105,6 @@ export default class Dialog extends React.Component<DialogProps> {
|
|
111
105
|
}, keyof import("../theme").ThemeProps> & import("../theme").ThemeOutterProps>) => {} | Pick<{}, K> | null) | Pick<{}, K> | null, callback?: (() => void) | undefined): void;
|
112
106
|
forceUpdate(callback?: (() => void) | undefined): void;
|
113
107
|
readonly props: Readonly<Omit<Pick<Omit<import("../components/Modal").ModalProps, keyof import("../locale").LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "disabled" | "show" | "onHide" | "onEntered" | "onExited" | "closeOnEsc" | "contentClassName" | "closeOnOutside"> & Partial<Pick<Omit<import("../components/Modal").ModalProps, keyof import("../locale").LocaleProps>, "overlay" | "size" | "container">> & Partial<Pick<{
|
114
|
-
/**
|
115
|
-
* 内容区域
|
116
|
-
*/
|
117
108
|
container: HTMLElement;
|
118
109
|
size: string;
|
119
110
|
overlay: boolean;
|
@@ -129,9 +120,6 @@ export default class Dialog extends React.Component<DialogProps> {
|
|
129
120
|
};
|
130
121
|
componentDidMount?(): void;
|
131
122
|
shouldComponentUpdate?(nextProps: Readonly<Omit<Pick<Omit<import("../components/Modal").ModalProps, keyof import("../locale").LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "disabled" | "show" | "onHide" | "onEntered" | "onExited" | "closeOnEsc" | "contentClassName" | "closeOnOutside"> & Partial<Pick<Omit<import("../components/Modal").ModalProps, keyof import("../locale").LocaleProps>, "overlay" | "size" | "container">> & Partial<Pick<{
|
132
|
-
/**
|
133
|
-
* 内容区域
|
134
|
-
*/
|
135
123
|
container: HTMLElement;
|
136
124
|
size: string;
|
137
125
|
overlay: boolean;
|
@@ -142,9 +130,6 @@ export default class Dialog extends React.Component<DialogProps> {
|
|
142
130
|
componentWillUnmount?(): void;
|
143
131
|
componentDidCatch?(error: Error, errorInfo: React.ErrorInfo): void;
|
144
132
|
getSnapshotBeforeUpdate?(prevProps: Readonly<Omit<Pick<Omit<import("../components/Modal").ModalProps, keyof import("../locale").LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "disabled" | "show" | "onHide" | "onEntered" | "onExited" | "closeOnEsc" | "contentClassName" | "closeOnOutside"> & Partial<Pick<Omit<import("../components/Modal").ModalProps, keyof import("../locale").LocaleProps>, "overlay" | "size" | "container">> & Partial<Pick<{
|
145
|
-
/**
|
146
|
-
* 内容区域
|
147
|
-
*/
|
148
133
|
container: HTMLElement;
|
149
134
|
size: string;
|
150
135
|
overlay: boolean;
|
@@ -153,9 +138,6 @@ export default class Dialog extends React.Component<DialogProps> {
|
|
153
138
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
154
139
|
}, keyof import("../theme").ThemeProps> & import("../theme").ThemeOutterProps>, prevState: Readonly<{}>): any;
|
155
140
|
componentDidUpdate?(prevProps: Readonly<Omit<Pick<Omit<import("../components/Modal").ModalProps, keyof import("../locale").LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "disabled" | "show" | "onHide" | "onEntered" | "onExited" | "closeOnEsc" | "contentClassName" | "closeOnOutside"> & Partial<Pick<Omit<import("../components/Modal").ModalProps, keyof import("../locale").LocaleProps>, "overlay" | "size" | "container">> & Partial<Pick<{
|
156
|
-
/**
|
157
|
-
* 内容区域
|
158
|
-
*/
|
159
141
|
container: HTMLElement;
|
160
142
|
size: string;
|
161
143
|
overlay: boolean;
|
@@ -166,9 +148,6 @@ export default class Dialog extends React.Component<DialogProps> {
|
|
166
148
|
componentWillMount?(): void;
|
167
149
|
UNSAFE_componentWillMount?(): void;
|
168
150
|
componentWillReceiveProps?(nextProps: Readonly<Omit<Pick<Omit<import("../components/Modal").ModalProps, keyof import("../locale").LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "disabled" | "show" | "onHide" | "onEntered" | "onExited" | "closeOnEsc" | "contentClassName" | "closeOnOutside"> & Partial<Pick<Omit<import("../components/Modal").ModalProps, keyof import("../locale").LocaleProps>, "overlay" | "size" | "container">> & Partial<Pick<{
|
169
|
-
/**
|
170
|
-
* 内容区域
|
171
|
-
*/
|
172
151
|
container: HTMLElement;
|
173
152
|
size: string;
|
174
153
|
overlay: boolean;
|
@@ -177,9 +156,6 @@ export default class Dialog extends React.Component<DialogProps> {
|
|
177
156
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
178
157
|
}, keyof import("../theme").ThemeProps> & import("../theme").ThemeOutterProps>, nextContext: any): void;
|
179
158
|
UNSAFE_componentWillReceiveProps?(nextProps: Readonly<Omit<Pick<Omit<import("../components/Modal").ModalProps, keyof import("../locale").LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "disabled" | "show" | "onHide" | "onEntered" | "onExited" | "closeOnEsc" | "contentClassName" | "closeOnOutside"> & Partial<Pick<Omit<import("../components/Modal").ModalProps, keyof import("../locale").LocaleProps>, "overlay" | "size" | "container">> & Partial<Pick<{
|
180
|
-
/**
|
181
|
-
* 内容区域
|
182
|
-
*/
|
183
159
|
container: HTMLElement;
|
184
160
|
size: string;
|
185
161
|
overlay: boolean;
|
@@ -188,9 +164,6 @@ export default class Dialog extends React.Component<DialogProps> {
|
|
188
164
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
189
165
|
}, keyof import("../theme").ThemeProps> & import("../theme").ThemeOutterProps>, nextContext: any): void;
|
190
166
|
componentWillUpdate?(nextProps: Readonly<Omit<Pick<Omit<import("../components/Modal").ModalProps, keyof import("../locale").LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "disabled" | "show" | "onHide" | "onEntered" | "onExited" | "closeOnEsc" | "contentClassName" | "closeOnOutside"> & Partial<Pick<Omit<import("../components/Modal").ModalProps, keyof import("../locale").LocaleProps>, "overlay" | "size" | "container">> & Partial<Pick<{
|
191
|
-
/**
|
192
|
-
* 内容区域
|
193
|
-
*/
|
194
167
|
container: HTMLElement;
|
195
168
|
size: string;
|
196
169
|
overlay: boolean;
|
@@ -199,9 +172,6 @@ export default class Dialog extends React.Component<DialogProps> {
|
|
199
172
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
200
173
|
}, keyof import("../theme").ThemeProps> & import("../theme").ThemeOutterProps>, nextState: Readonly<{}>, nextContext: any): void;
|
201
174
|
UNSAFE_componentWillUpdate?(nextProps: Readonly<Omit<Pick<Omit<import("../components/Modal").ModalProps, keyof import("../locale").LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "disabled" | "show" | "onHide" | "onEntered" | "onExited" | "closeOnEsc" | "contentClassName" | "closeOnOutside"> & Partial<Pick<Omit<import("../components/Modal").ModalProps, keyof import("../locale").LocaleProps>, "overlay" | "size" | "container">> & Partial<Pick<{
|
202
|
-
/**
|
203
|
-
* 内容区域
|
204
|
-
*/
|
205
175
|
container: HTMLElement;
|
206
176
|
size: string;
|
207
177
|
overlay: boolean;
|
@@ -214,9 +184,6 @@ export default class Dialog extends React.Component<DialogProps> {
|
|
214
184
|
contextType: React.Context<string>;
|
215
185
|
ComposedComponent: React.ComponentType<{
|
216
186
|
new (props: Pick<Omit<import("../components/Modal").ModalProps, keyof import("../locale").LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "disabled" | "show" | "onHide" | "onEntered" | "onExited" | "closeOnEsc" | "contentClassName" | "closeOnOutside"> & Partial<Pick<Omit<import("../components/Modal").ModalProps, keyof import("../locale").LocaleProps>, "overlay" | "size" | "container">> & Partial<Pick<{
|
217
|
-
/**
|
218
|
-
* 内容区域
|
219
|
-
*/
|
220
187
|
container: HTMLElement;
|
221
188
|
size: string;
|
222
189
|
overlay: boolean;
|
@@ -230,9 +197,6 @@ export default class Dialog extends React.Component<DialogProps> {
|
|
230
197
|
render(): JSX.Element;
|
231
198
|
context: any;
|
232
199
|
setState<K_1 extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<Pick<Omit<import("../components/Modal").ModalProps, keyof import("../locale").LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "disabled" | "show" | "onHide" | "onEntered" | "onExited" | "closeOnEsc" | "contentClassName" | "closeOnOutside"> & Partial<Pick<Omit<import("../components/Modal").ModalProps, keyof import("../locale").LocaleProps>, "overlay" | "size" | "container">> & Partial<Pick<{
|
233
|
-
/**
|
234
|
-
* 内容区域
|
235
|
-
*/
|
236
200
|
container: HTMLElement;
|
237
201
|
size: string;
|
238
202
|
overlay: boolean;
|
@@ -242,9 +206,6 @@ export default class Dialog extends React.Component<DialogProps> {
|
|
242
206
|
}>) => {} | Pick<{}, K_1> | null) | Pick<{}, K_1> | null, callback?: (() => void) | undefined): void;
|
243
207
|
forceUpdate(callback?: (() => void) | undefined): void;
|
244
208
|
readonly props: Readonly<Pick<Omit<import("../components/Modal").ModalProps, keyof import("../locale").LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "disabled" | "show" | "onHide" | "onEntered" | "onExited" | "closeOnEsc" | "contentClassName" | "closeOnOutside"> & Partial<Pick<Omit<import("../components/Modal").ModalProps, keyof import("../locale").LocaleProps>, "overlay" | "size" | "container">> & Partial<Pick<{
|
245
|
-
/**
|
246
|
-
* 内容区域
|
247
|
-
*/
|
248
209
|
container: HTMLElement;
|
249
210
|
size: string;
|
250
211
|
overlay: boolean;
|
@@ -260,9 +221,6 @@ export default class Dialog extends React.Component<DialogProps> {
|
|
260
221
|
};
|
261
222
|
componentDidMount?(): void;
|
262
223
|
shouldComponentUpdate?(nextProps: Readonly<Pick<Omit<import("../components/Modal").ModalProps, keyof import("../locale").LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "disabled" | "show" | "onHide" | "onEntered" | "onExited" | "closeOnEsc" | "contentClassName" | "closeOnOutside"> & Partial<Pick<Omit<import("../components/Modal").ModalProps, keyof import("../locale").LocaleProps>, "overlay" | "size" | "container">> & Partial<Pick<{
|
263
|
-
/**
|
264
|
-
* 内容区域
|
265
|
-
*/
|
266
224
|
container: HTMLElement;
|
267
225
|
size: string;
|
268
226
|
overlay: boolean;
|
@@ -273,9 +231,6 @@ export default class Dialog extends React.Component<DialogProps> {
|
|
273
231
|
componentWillUnmount?(): void;
|
274
232
|
componentDidCatch?(error: Error, errorInfo: React.ErrorInfo): void;
|
275
233
|
getSnapshotBeforeUpdate?(prevProps: Readonly<Pick<Omit<import("../components/Modal").ModalProps, keyof import("../locale").LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "disabled" | "show" | "onHide" | "onEntered" | "onExited" | "closeOnEsc" | "contentClassName" | "closeOnOutside"> & Partial<Pick<Omit<import("../components/Modal").ModalProps, keyof import("../locale").LocaleProps>, "overlay" | "size" | "container">> & Partial<Pick<{
|
276
|
-
/**
|
277
|
-
* 内容区域
|
278
|
-
*/
|
279
234
|
container: HTMLElement;
|
280
235
|
size: string;
|
281
236
|
overlay: boolean;
|
@@ -284,9 +239,6 @@ export default class Dialog extends React.Component<DialogProps> {
|
|
284
239
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
285
240
|
}>, prevState: Readonly<{}>): any;
|
286
241
|
componentDidUpdate?(prevProps: Readonly<Pick<Omit<import("../components/Modal").ModalProps, keyof import("../locale").LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "disabled" | "show" | "onHide" | "onEntered" | "onExited" | "closeOnEsc" | "contentClassName" | "closeOnOutside"> & Partial<Pick<Omit<import("../components/Modal").ModalProps, keyof import("../locale").LocaleProps>, "overlay" | "size" | "container">> & Partial<Pick<{
|
287
|
-
/**
|
288
|
-
* 内容区域
|
289
|
-
*/
|
290
242
|
container: HTMLElement;
|
291
243
|
size: string;
|
292
244
|
overlay: boolean;
|
@@ -297,9 +249,6 @@ export default class Dialog extends React.Component<DialogProps> {
|
|
297
249
|
componentWillMount?(): void;
|
298
250
|
UNSAFE_componentWillMount?(): void;
|
299
251
|
componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<import("../components/Modal").ModalProps, keyof import("../locale").LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "disabled" | "show" | "onHide" | "onEntered" | "onExited" | "closeOnEsc" | "contentClassName" | "closeOnOutside"> & Partial<Pick<Omit<import("../components/Modal").ModalProps, keyof import("../locale").LocaleProps>, "overlay" | "size" | "container">> & Partial<Pick<{
|
300
|
-
/**
|
301
|
-
* 内容区域
|
302
|
-
*/
|
303
252
|
container: HTMLElement;
|
304
253
|
size: string;
|
305
254
|
overlay: boolean;
|
@@ -308,9 +257,6 @@ export default class Dialog extends React.Component<DialogProps> {
|
|
308
257
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
309
258
|
}>, nextContext: any): void;
|
310
259
|
UNSAFE_componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<import("../components/Modal").ModalProps, keyof import("../locale").LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "disabled" | "show" | "onHide" | "onEntered" | "onExited" | "closeOnEsc" | "contentClassName" | "closeOnOutside"> & Partial<Pick<Omit<import("../components/Modal").ModalProps, keyof import("../locale").LocaleProps>, "overlay" | "size" | "container">> & Partial<Pick<{
|
311
|
-
/**
|
312
|
-
* 内容区域
|
313
|
-
*/
|
314
260
|
container: HTMLElement;
|
315
261
|
size: string;
|
316
262
|
overlay: boolean;
|
@@ -319,9 +265,6 @@ export default class Dialog extends React.Component<DialogProps> {
|
|
319
265
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
320
266
|
}>, nextContext: any): void;
|
321
267
|
componentWillUpdate?(nextProps: Readonly<Pick<Omit<import("../components/Modal").ModalProps, keyof import("../locale").LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "disabled" | "show" | "onHide" | "onEntered" | "onExited" | "closeOnEsc" | "contentClassName" | "closeOnOutside"> & Partial<Pick<Omit<import("../components/Modal").ModalProps, keyof import("../locale").LocaleProps>, "overlay" | "size" | "container">> & Partial<Pick<{
|
322
|
-
/**
|
323
|
-
* 内容区域
|
324
|
-
*/
|
325
268
|
container: HTMLElement;
|
326
269
|
size: string;
|
327
270
|
overlay: boolean;
|
@@ -330,9 +273,6 @@ export default class Dialog extends React.Component<DialogProps> {
|
|
330
273
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
331
274
|
}>, nextState: Readonly<{}>, nextContext: any): void;
|
332
275
|
UNSAFE_componentWillUpdate?(nextProps: Readonly<Pick<Omit<import("../components/Modal").ModalProps, keyof import("../locale").LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "disabled" | "show" | "onHide" | "onEntered" | "onExited" | "closeOnEsc" | "contentClassName" | "closeOnOutside"> & Partial<Pick<Omit<import("../components/Modal").ModalProps, keyof import("../locale").LocaleProps>, "overlay" | "size" | "container">> & Partial<Pick<{
|
333
|
-
/**
|
334
|
-
* 内容区域
|
335
|
-
*/
|
336
276
|
container: HTMLElement;
|
337
277
|
size: string;
|
338
278
|
overlay: boolean;
|
@@ -349,9 +289,6 @@ export default class Dialog extends React.Component<DialogProps> {
|
|
349
289
|
}>;
|
350
290
|
} & import("hoist-non-react-statics").NonReactStatics<{
|
351
291
|
new (props: Pick<Omit<import("../components/Modal").ModalProps, keyof import("../locale").LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "disabled" | "show" | "onHide" | "onEntered" | "onExited" | "closeOnEsc" | "contentClassName" | "closeOnOutside"> & Partial<Pick<Omit<import("../components/Modal").ModalProps, keyof import("../locale").LocaleProps>, "overlay" | "size" | "container">> & Partial<Pick<{
|
352
|
-
/**
|
353
|
-
* 内容区域
|
354
|
-
*/
|
355
292
|
container: HTMLElement;
|
356
293
|
size: string;
|
357
294
|
overlay: boolean;
|
@@ -365,9 +302,6 @@ export default class Dialog extends React.Component<DialogProps> {
|
|
365
302
|
render(): JSX.Element;
|
366
303
|
context: any;
|
367
304
|
setState<K_1 extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<Pick<Omit<import("../components/Modal").ModalProps, keyof import("../locale").LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "disabled" | "show" | "onHide" | "onEntered" | "onExited" | "closeOnEsc" | "contentClassName" | "closeOnOutside"> & Partial<Pick<Omit<import("../components/Modal").ModalProps, keyof import("../locale").LocaleProps>, "overlay" | "size" | "container">> & Partial<Pick<{
|
368
|
-
/**
|
369
|
-
* 内容区域
|
370
|
-
*/
|
371
305
|
container: HTMLElement;
|
372
306
|
size: string;
|
373
307
|
overlay: boolean;
|
@@ -377,9 +311,6 @@ export default class Dialog extends React.Component<DialogProps> {
|
|
377
311
|
}>) => {} | Pick<{}, K_1> | null) | Pick<{}, K_1> | null, callback?: (() => void) | undefined): void;
|
378
312
|
forceUpdate(callback?: (() => void) | undefined): void;
|
379
313
|
readonly props: Readonly<Pick<Omit<import("../components/Modal").ModalProps, keyof import("../locale").LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "disabled" | "show" | "onHide" | "onEntered" | "onExited" | "closeOnEsc" | "contentClassName" | "closeOnOutside"> & Partial<Pick<Omit<import("../components/Modal").ModalProps, keyof import("../locale").LocaleProps>, "overlay" | "size" | "container">> & Partial<Pick<{
|
380
|
-
/**
|
381
|
-
* 内容区域
|
382
|
-
*/
|
383
314
|
container: HTMLElement;
|
384
315
|
size: string;
|
385
316
|
overlay: boolean;
|
@@ -395,9 +326,6 @@ export default class Dialog extends React.Component<DialogProps> {
|
|
395
326
|
};
|
396
327
|
componentDidMount?(): void;
|
397
328
|
shouldComponentUpdate?(nextProps: Readonly<Pick<Omit<import("../components/Modal").ModalProps, keyof import("../locale").LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "disabled" | "show" | "onHide" | "onEntered" | "onExited" | "closeOnEsc" | "contentClassName" | "closeOnOutside"> & Partial<Pick<Omit<import("../components/Modal").ModalProps, keyof import("../locale").LocaleProps>, "overlay" | "size" | "container">> & Partial<Pick<{
|
398
|
-
/**
|
399
|
-
* 内容区域
|
400
|
-
*/
|
401
329
|
container: HTMLElement;
|
402
330
|
size: string;
|
403
331
|
overlay: boolean;
|
@@ -408,9 +336,6 @@ export default class Dialog extends React.Component<DialogProps> {
|
|
408
336
|
componentWillUnmount?(): void;
|
409
337
|
componentDidCatch?(error: Error, errorInfo: React.ErrorInfo): void;
|
410
338
|
getSnapshotBeforeUpdate?(prevProps: Readonly<Pick<Omit<import("../components/Modal").ModalProps, keyof import("../locale").LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "disabled" | "show" | "onHide" | "onEntered" | "onExited" | "closeOnEsc" | "contentClassName" | "closeOnOutside"> & Partial<Pick<Omit<import("../components/Modal").ModalProps, keyof import("../locale").LocaleProps>, "overlay" | "size" | "container">> & Partial<Pick<{
|
411
|
-
/**
|
412
|
-
* 内容区域
|
413
|
-
*/
|
414
339
|
container: HTMLElement;
|
415
340
|
size: string;
|
416
341
|
overlay: boolean;
|
@@ -419,9 +344,6 @@ export default class Dialog extends React.Component<DialogProps> {
|
|
419
344
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
420
345
|
}>, prevState: Readonly<{}>): any;
|
421
346
|
componentDidUpdate?(prevProps: Readonly<Pick<Omit<import("../components/Modal").ModalProps, keyof import("../locale").LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "disabled" | "show" | "onHide" | "onEntered" | "onExited" | "closeOnEsc" | "contentClassName" | "closeOnOutside"> & Partial<Pick<Omit<import("../components/Modal").ModalProps, keyof import("../locale").LocaleProps>, "overlay" | "size" | "container">> & Partial<Pick<{
|
422
|
-
/**
|
423
|
-
* 内容区域
|
424
|
-
*/
|
425
347
|
container: HTMLElement;
|
426
348
|
size: string;
|
427
349
|
overlay: boolean;
|
@@ -432,9 +354,6 @@ export default class Dialog extends React.Component<DialogProps> {
|
|
432
354
|
componentWillMount?(): void;
|
433
355
|
UNSAFE_componentWillMount?(): void;
|
434
356
|
componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<import("../components/Modal").ModalProps, keyof import("../locale").LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "disabled" | "show" | "onHide" | "onEntered" | "onExited" | "closeOnEsc" | "contentClassName" | "closeOnOutside"> & Partial<Pick<Omit<import("../components/Modal").ModalProps, keyof import("../locale").LocaleProps>, "overlay" | "size" | "container">> & Partial<Pick<{
|
435
|
-
/**
|
436
|
-
* 内容区域
|
437
|
-
*/
|
438
357
|
container: HTMLElement;
|
439
358
|
size: string;
|
440
359
|
overlay: boolean;
|
@@ -443,9 +362,6 @@ export default class Dialog extends React.Component<DialogProps> {
|
|
443
362
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
444
363
|
}>, nextContext: any): void;
|
445
364
|
UNSAFE_componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<import("../components/Modal").ModalProps, keyof import("../locale").LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "disabled" | "show" | "onHide" | "onEntered" | "onExited" | "closeOnEsc" | "contentClassName" | "closeOnOutside"> & Partial<Pick<Omit<import("../components/Modal").ModalProps, keyof import("../locale").LocaleProps>, "overlay" | "size" | "container">> & Partial<Pick<{
|
446
|
-
/**
|
447
|
-
* 内容区域
|
448
|
-
*/
|
449
365
|
container: HTMLElement;
|
450
366
|
size: string;
|
451
367
|
overlay: boolean;
|
@@ -454,9 +370,6 @@ export default class Dialog extends React.Component<DialogProps> {
|
|
454
370
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
455
371
|
}>, nextContext: any): void;
|
456
372
|
componentWillUpdate?(nextProps: Readonly<Pick<Omit<import("../components/Modal").ModalProps, keyof import("../locale").LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "disabled" | "show" | "onHide" | "onEntered" | "onExited" | "closeOnEsc" | "contentClassName" | "closeOnOutside"> & Partial<Pick<Omit<import("../components/Modal").ModalProps, keyof import("../locale").LocaleProps>, "overlay" | "size" | "container">> & Partial<Pick<{
|
457
|
-
/**
|
458
|
-
* 内容区域
|
459
|
-
*/
|
460
373
|
container: HTMLElement;
|
461
374
|
size: string;
|
462
375
|
overlay: boolean;
|
@@ -465,9 +378,6 @@ export default class Dialog extends React.Component<DialogProps> {
|
|
465
378
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
466
379
|
}>, nextState: Readonly<{}>, nextContext: any): void;
|
467
380
|
UNSAFE_componentWillUpdate?(nextProps: Readonly<Pick<Omit<import("../components/Modal").ModalProps, keyof import("../locale").LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "disabled" | "show" | "onHide" | "onEntered" | "onExited" | "closeOnEsc" | "contentClassName" | "closeOnOutside"> & Partial<Pick<Omit<import("../components/Modal").ModalProps, keyof import("../locale").LocaleProps>, "overlay" | "size" | "container">> & Partial<Pick<{
|
468
|
-
/**
|
469
|
-
* 内容区域
|
470
|
-
*/
|
471
381
|
container: HTMLElement;
|
472
382
|
size: string;
|
473
383
|
overlay: boolean;
|
@@ -484,9 +394,6 @@ export default class Dialog extends React.Component<DialogProps> {
|
|
484
394
|
}, {}> & {
|
485
395
|
ComposedComponent: {
|
486
396
|
new (props: Pick<Omit<import("../components/Modal").ModalProps, keyof import("../locale").LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "disabled" | "show" | "onHide" | "onEntered" | "onExited" | "closeOnEsc" | "contentClassName" | "closeOnOutside"> & Partial<Pick<Omit<import("../components/Modal").ModalProps, keyof import("../locale").LocaleProps>, "overlay" | "size" | "container">> & Partial<Pick<{
|
487
|
-
/**
|
488
|
-
* 内容区域
|
489
|
-
*/
|
490
397
|
container: HTMLElement;
|
491
398
|
size: string;
|
492
399
|
overlay: boolean;
|
@@ -500,9 +407,6 @@ export default class Dialog extends React.Component<DialogProps> {
|
|
500
407
|
render(): JSX.Element;
|
501
408
|
context: any;
|
502
409
|
setState<K_1 extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<Pick<Omit<import("../components/Modal").ModalProps, keyof import("../locale").LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "disabled" | "show" | "onHide" | "onEntered" | "onExited" | "closeOnEsc" | "contentClassName" | "closeOnOutside"> & Partial<Pick<Omit<import("../components/Modal").ModalProps, keyof import("../locale").LocaleProps>, "overlay" | "size" | "container">> & Partial<Pick<{
|
503
|
-
/**
|
504
|
-
* 内容区域
|
505
|
-
*/
|
506
410
|
container: HTMLElement;
|
507
411
|
size: string;
|
508
412
|
overlay: boolean;
|
@@ -512,9 +416,6 @@ export default class Dialog extends React.Component<DialogProps> {
|
|
512
416
|
}>) => {} | Pick<{}, K_1> | null) | Pick<{}, K_1> | null, callback?: (() => void) | undefined): void;
|
513
417
|
forceUpdate(callback?: (() => void) | undefined): void;
|
514
418
|
readonly props: Readonly<Pick<Omit<import("../components/Modal").ModalProps, keyof import("../locale").LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "disabled" | "show" | "onHide" | "onEntered" | "onExited" | "closeOnEsc" | "contentClassName" | "closeOnOutside"> & Partial<Pick<Omit<import("../components/Modal").ModalProps, keyof import("../locale").LocaleProps>, "overlay" | "size" | "container">> & Partial<Pick<{
|
515
|
-
/**
|
516
|
-
* 内容区域
|
517
|
-
*/
|
518
419
|
container: HTMLElement;
|
519
420
|
size: string;
|
520
421
|
overlay: boolean;
|
@@ -530,9 +431,6 @@ export default class Dialog extends React.Component<DialogProps> {
|
|
530
431
|
};
|
531
432
|
componentDidMount?(): void;
|
532
433
|
shouldComponentUpdate?(nextProps: Readonly<Pick<Omit<import("../components/Modal").ModalProps, keyof import("../locale").LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "disabled" | "show" | "onHide" | "onEntered" | "onExited" | "closeOnEsc" | "contentClassName" | "closeOnOutside"> & Partial<Pick<Omit<import("../components/Modal").ModalProps, keyof import("../locale").LocaleProps>, "overlay" | "size" | "container">> & Partial<Pick<{
|
533
|
-
/**
|
534
|
-
* 内容区域
|
535
|
-
*/
|
536
434
|
container: HTMLElement;
|
537
435
|
size: string;
|
538
436
|
overlay: boolean;
|
@@ -543,9 +441,6 @@ export default class Dialog extends React.Component<DialogProps> {
|
|
543
441
|
componentWillUnmount?(): void;
|
544
442
|
componentDidCatch?(error: Error, errorInfo: React.ErrorInfo): void;
|
545
443
|
getSnapshotBeforeUpdate?(prevProps: Readonly<Pick<Omit<import("../components/Modal").ModalProps, keyof import("../locale").LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "disabled" | "show" | "onHide" | "onEntered" | "onExited" | "closeOnEsc" | "contentClassName" | "closeOnOutside"> & Partial<Pick<Omit<import("../components/Modal").ModalProps, keyof import("../locale").LocaleProps>, "overlay" | "size" | "container">> & Partial<Pick<{
|
546
|
-
/**
|
547
|
-
* 内容区域
|
548
|
-
*/
|
549
444
|
container: HTMLElement;
|
550
445
|
size: string;
|
551
446
|
overlay: boolean;
|
@@ -554,9 +449,6 @@ export default class Dialog extends React.Component<DialogProps> {
|
|
554
449
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
555
450
|
}>, prevState: Readonly<{}>): any;
|
556
451
|
componentDidUpdate?(prevProps: Readonly<Pick<Omit<import("../components/Modal").ModalProps, keyof import("../locale").LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "disabled" | "show" | "onHide" | "onEntered" | "onExited" | "closeOnEsc" | "contentClassName" | "closeOnOutside"> & Partial<Pick<Omit<import("../components/Modal").ModalProps, keyof import("../locale").LocaleProps>, "overlay" | "size" | "container">> & Partial<Pick<{
|
557
|
-
/**
|
558
|
-
* 内容区域
|
559
|
-
*/
|
560
452
|
container: HTMLElement;
|
561
453
|
size: string;
|
562
454
|
overlay: boolean;
|
@@ -567,9 +459,6 @@ export default class Dialog extends React.Component<DialogProps> {
|
|
567
459
|
componentWillMount?(): void;
|
568
460
|
UNSAFE_componentWillMount?(): void;
|
569
461
|
componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<import("../components/Modal").ModalProps, keyof import("../locale").LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "disabled" | "show" | "onHide" | "onEntered" | "onExited" | "closeOnEsc" | "contentClassName" | "closeOnOutside"> & Partial<Pick<Omit<import("../components/Modal").ModalProps, keyof import("../locale").LocaleProps>, "overlay" | "size" | "container">> & Partial<Pick<{
|
570
|
-
/**
|
571
|
-
* 内容区域
|
572
|
-
*/
|
573
462
|
container: HTMLElement;
|
574
463
|
size: string;
|
575
464
|
overlay: boolean;
|
@@ -578,9 +467,6 @@ export default class Dialog extends React.Component<DialogProps> {
|
|
578
467
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
579
468
|
}>, nextContext: any): void;
|
580
469
|
UNSAFE_componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<import("../components/Modal").ModalProps, keyof import("../locale").LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "disabled" | "show" | "onHide" | "onEntered" | "onExited" | "closeOnEsc" | "contentClassName" | "closeOnOutside"> & Partial<Pick<Omit<import("../components/Modal").ModalProps, keyof import("../locale").LocaleProps>, "overlay" | "size" | "container">> & Partial<Pick<{
|
581
|
-
/**
|
582
|
-
* 内容区域
|
583
|
-
*/
|
584
470
|
container: HTMLElement;
|
585
471
|
size: string;
|
586
472
|
overlay: boolean;
|
@@ -589,9 +475,6 @@ export default class Dialog extends React.Component<DialogProps> {
|
|
589
475
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
590
476
|
}>, nextContext: any): void;
|
591
477
|
componentWillUpdate?(nextProps: Readonly<Pick<Omit<import("../components/Modal").ModalProps, keyof import("../locale").LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "disabled" | "show" | "onHide" | "onEntered" | "onExited" | "closeOnEsc" | "contentClassName" | "closeOnOutside"> & Partial<Pick<Omit<import("../components/Modal").ModalProps, keyof import("../locale").LocaleProps>, "overlay" | "size" | "container">> & Partial<Pick<{
|
592
|
-
/**
|
593
|
-
* 内容区域
|
594
|
-
*/
|
595
478
|
container: HTMLElement;
|
596
479
|
size: string;
|
597
480
|
overlay: boolean;
|
@@ -600,9 +483,6 @@ export default class Dialog extends React.Component<DialogProps> {
|
|
600
483
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
601
484
|
}>, nextState: Readonly<{}>, nextContext: any): void;
|
602
485
|
UNSAFE_componentWillUpdate?(nextProps: Readonly<Pick<Omit<import("../components/Modal").ModalProps, keyof import("../locale").LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "disabled" | "show" | "onHide" | "onEntered" | "onExited" | "closeOnEsc" | "contentClassName" | "closeOnOutside"> & Partial<Pick<Omit<import("../components/Modal").ModalProps, keyof import("../locale").LocaleProps>, "overlay" | "size" | "container">> & Partial<Pick<{
|
603
|
-
/**
|
604
|
-
* 内容区域
|
605
|
-
*/
|
606
486
|
container: HTMLElement;
|
607
487
|
size: string;
|
608
488
|
overlay: boolean;
|
@@ -623,7 +503,9 @@ export default class Dialog extends React.Component<DialogProps> {
|
|
623
503
|
className?: string | undefined;
|
624
504
|
showCloseButton?: boolean | undefined;
|
625
505
|
onClose?: (() => void) | undefined;
|
626
|
-
children?: React.ReactNode;
|
506
|
+
children?: React.ReactNode; /**
|
507
|
+
* 是否显示关闭按钮
|
508
|
+
*/
|
627
509
|
forwardedRef?: any;
|
628
510
|
} & React.HTMLAttributes<HTMLDivElement>, keyof import("../locale").LocaleProps> & {
|
629
511
|
locale?: string | undefined;
|
@@ -638,7 +520,9 @@ export default class Dialog extends React.Component<DialogProps> {
|
|
638
520
|
className?: string | undefined;
|
639
521
|
showCloseButton?: boolean | undefined;
|
640
522
|
onClose?: (() => void) | undefined;
|
641
|
-
children?: React.ReactNode;
|
523
|
+
children?: React.ReactNode; /**
|
524
|
+
* 是否显示关闭按钮
|
525
|
+
*/
|
642
526
|
forwardedRef?: any;
|
643
527
|
} & React.HTMLAttributes<HTMLDivElement>, keyof import("../locale").LocaleProps> & {
|
644
528
|
locale?: string | undefined;
|
@@ -649,7 +533,9 @@ export default class Dialog extends React.Component<DialogProps> {
|
|
649
533
|
className?: string | undefined;
|
650
534
|
showCloseButton?: boolean | undefined;
|
651
535
|
onClose?: (() => void) | undefined;
|
652
|
-
children?: React.ReactNode;
|
536
|
+
children?: React.ReactNode; /**
|
537
|
+
* 是否显示关闭按钮
|
538
|
+
*/
|
653
539
|
forwardedRef?: any;
|
654
540
|
} & React.HTMLAttributes<HTMLDivElement>, keyof import("../locale").LocaleProps> & {
|
655
541
|
locale?: string | undefined;
|
@@ -666,7 +552,9 @@ export default class Dialog extends React.Component<DialogProps> {
|
|
666
552
|
className?: string | undefined;
|
667
553
|
showCloseButton?: boolean | undefined;
|
668
554
|
onClose?: (() => void) | undefined;
|
669
|
-
children?: React.ReactNode;
|
555
|
+
children?: React.ReactNode; /**
|
556
|
+
* 是否显示关闭按钮
|
557
|
+
*/
|
670
558
|
forwardedRef?: any;
|
671
559
|
} & React.HTMLAttributes<HTMLDivElement>, keyof import("../locale").LocaleProps> & {
|
672
560
|
locale?: string | undefined;
|
@@ -678,7 +566,9 @@ export default class Dialog extends React.Component<DialogProps> {
|
|
678
566
|
className?: string | undefined;
|
679
567
|
showCloseButton?: boolean | undefined;
|
680
568
|
onClose?: (() => void) | undefined;
|
681
|
-
children?: React.ReactNode;
|
569
|
+
children?: React.ReactNode; /**
|
570
|
+
* 是否显示关闭按钮
|
571
|
+
*/
|
682
572
|
forwardedRef?: any;
|
683
573
|
} & React.HTMLAttributes<HTMLDivElement>, keyof import("../locale").LocaleProps> & {
|
684
574
|
locale?: string | undefined;
|
@@ -688,7 +578,9 @@ export default class Dialog extends React.Component<DialogProps> {
|
|
688
578
|
className?: string | undefined;
|
689
579
|
showCloseButton?: boolean | undefined;
|
690
580
|
onClose?: (() => void) | undefined;
|
691
|
-
children?: React.ReactNode;
|
581
|
+
children?: React.ReactNode; /**
|
582
|
+
* 是否显示关闭按钮
|
583
|
+
*/
|
692
584
|
forwardedRef?: any;
|
693
585
|
} & React.HTMLAttributes<HTMLDivElement>, keyof import("../locale").LocaleProps> & {
|
694
586
|
locale?: string | undefined;
|
@@ -700,7 +592,9 @@ export default class Dialog extends React.Component<DialogProps> {
|
|
700
592
|
className?: string | undefined;
|
701
593
|
showCloseButton?: boolean | undefined;
|
702
594
|
onClose?: (() => void) | undefined;
|
703
|
-
children?: React.ReactNode;
|
595
|
+
children?: React.ReactNode; /**
|
596
|
+
* 是否显示关闭按钮
|
597
|
+
*/
|
704
598
|
forwardedRef?: any;
|
705
599
|
} & React.HTMLAttributes<HTMLDivElement>, keyof import("../locale").LocaleProps> & {
|
706
600
|
locale?: string | undefined;
|
@@ -710,7 +604,9 @@ export default class Dialog extends React.Component<DialogProps> {
|
|
710
604
|
className?: string | undefined;
|
711
605
|
showCloseButton?: boolean | undefined;
|
712
606
|
onClose?: (() => void) | undefined;
|
713
|
-
children?: React.ReactNode;
|
607
|
+
children?: React.ReactNode; /**
|
608
|
+
* 是否显示关闭按钮
|
609
|
+
*/
|
714
610
|
forwardedRef?: any;
|
715
611
|
} & React.HTMLAttributes<HTMLDivElement>, keyof import("../locale").LocaleProps> & {
|
716
612
|
locale?: string | undefined;
|
@@ -720,7 +616,9 @@ export default class Dialog extends React.Component<DialogProps> {
|
|
720
616
|
className?: string | undefined;
|
721
617
|
showCloseButton?: boolean | undefined;
|
722
618
|
onClose?: (() => void) | undefined;
|
723
|
-
children?: React.ReactNode;
|
619
|
+
children?: React.ReactNode; /**
|
620
|
+
* 是否显示关闭按钮
|
621
|
+
*/
|
724
622
|
forwardedRef?: any;
|
725
623
|
} & React.HTMLAttributes<HTMLDivElement>, keyof import("../locale").LocaleProps> & {
|
726
624
|
locale?: string | undefined;
|
@@ -730,7 +628,9 @@ export default class Dialog extends React.Component<DialogProps> {
|
|
730
628
|
className?: string | undefined;
|
731
629
|
showCloseButton?: boolean | undefined;
|
732
630
|
onClose?: (() => void) | undefined;
|
733
|
-
children?: React.ReactNode;
|
631
|
+
children?: React.ReactNode; /**
|
632
|
+
* 是否显示关闭按钮
|
633
|
+
*/
|
734
634
|
forwardedRef?: any;
|
735
635
|
} & React.HTMLAttributes<HTMLDivElement>, keyof import("../locale").LocaleProps> & {
|
736
636
|
locale?: string | undefined;
|
@@ -744,7 +644,9 @@ export default class Dialog extends React.Component<DialogProps> {
|
|
744
644
|
className?: string | undefined;
|
745
645
|
showCloseButton?: boolean | undefined;
|
746
646
|
onClose?: (() => void) | undefined;
|
747
|
-
children?: React.ReactNode;
|
647
|
+
children?: React.ReactNode; /**
|
648
|
+
* 是否显示关闭按钮
|
649
|
+
*/
|
748
650
|
forwardedRef?: any;
|
749
651
|
} & React.HTMLAttributes<HTMLDivElement>, keyof import("../locale").LocaleProps> & {
|
750
652
|
locale?: string | undefined;
|
@@ -759,7 +661,9 @@ export default class Dialog extends React.Component<DialogProps> {
|
|
759
661
|
className?: string | undefined;
|
760
662
|
showCloseButton?: boolean | undefined;
|
761
663
|
onClose?: (() => void) | undefined;
|
762
|
-
children?: React.ReactNode;
|
664
|
+
children?: React.ReactNode; /**
|
665
|
+
* 是否显示关闭按钮
|
666
|
+
*/
|
763
667
|
forwardedRef?: any;
|
764
668
|
} & React.HTMLAttributes<HTMLDivElement>, keyof import("../locale").LocaleProps> & {
|
765
669
|
locale?: string | undefined;
|
@@ -770,7 +674,9 @@ export default class Dialog extends React.Component<DialogProps> {
|
|
770
674
|
className?: string | undefined;
|
771
675
|
showCloseButton?: boolean | undefined;
|
772
676
|
onClose?: (() => void) | undefined;
|
773
|
-
children?: React.ReactNode;
|
677
|
+
children?: React.ReactNode; /**
|
678
|
+
* 是否显示关闭按钮
|
679
|
+
*/
|
774
680
|
forwardedRef?: any;
|
775
681
|
} & React.HTMLAttributes<HTMLDivElement>, keyof import("../locale").LocaleProps> & {
|
776
682
|
locale?: string | undefined;
|
@@ -787,7 +693,9 @@ export default class Dialog extends React.Component<DialogProps> {
|
|
787
693
|
className?: string | undefined;
|
788
694
|
showCloseButton?: boolean | undefined;
|
789
695
|
onClose?: (() => void) | undefined;
|
790
|
-
children?: React.ReactNode;
|
696
|
+
children?: React.ReactNode; /**
|
697
|
+
* 是否显示关闭按钮
|
698
|
+
*/
|
791
699
|
forwardedRef?: any;
|
792
700
|
} & React.HTMLAttributes<HTMLDivElement>, keyof import("../locale").LocaleProps> & {
|
793
701
|
locale?: string | undefined;
|
@@ -799,7 +707,9 @@ export default class Dialog extends React.Component<DialogProps> {
|
|
799
707
|
className?: string | undefined;
|
800
708
|
showCloseButton?: boolean | undefined;
|
801
709
|
onClose?: (() => void) | undefined;
|
802
|
-
children?: React.ReactNode;
|
710
|
+
children?: React.ReactNode; /**
|
711
|
+
* 是否显示关闭按钮
|
712
|
+
*/
|
803
713
|
forwardedRef?: any;
|
804
714
|
} & React.HTMLAttributes<HTMLDivElement>, keyof import("../locale").LocaleProps> & {
|
805
715
|
locale?: string | undefined;
|
@@ -809,7 +719,9 @@ export default class Dialog extends React.Component<DialogProps> {
|
|
809
719
|
className?: string | undefined;
|
810
720
|
showCloseButton?: boolean | undefined;
|
811
721
|
onClose?: (() => void) | undefined;
|
812
|
-
children?: React.ReactNode;
|
722
|
+
children?: React.ReactNode; /**
|
723
|
+
* 是否显示关闭按钮
|
724
|
+
*/
|
813
725
|
forwardedRef?: any;
|
814
726
|
} & React.HTMLAttributes<HTMLDivElement>, keyof import("../locale").LocaleProps> & {
|
815
727
|
locale?: string | undefined;
|
@@ -821,7 +733,9 @@ export default class Dialog extends React.Component<DialogProps> {
|
|
821
733
|
className?: string | undefined;
|
822
734
|
showCloseButton?: boolean | undefined;
|
823
735
|
onClose?: (() => void) | undefined;
|
824
|
-
children?: React.ReactNode;
|
736
|
+
children?: React.ReactNode; /**
|
737
|
+
* 是否显示关闭按钮
|
738
|
+
*/
|
825
739
|
forwardedRef?: any;
|
826
740
|
} & React.HTMLAttributes<HTMLDivElement>, keyof import("../locale").LocaleProps> & {
|
827
741
|
locale?: string | undefined;
|
@@ -831,7 +745,9 @@ export default class Dialog extends React.Component<DialogProps> {
|
|
831
745
|
className?: string | undefined;
|
832
746
|
showCloseButton?: boolean | undefined;
|
833
747
|
onClose?: (() => void) | undefined;
|
834
|
-
children?: React.ReactNode;
|
748
|
+
children?: React.ReactNode; /**
|
749
|
+
* 是否显示关闭按钮
|
750
|
+
*/
|
835
751
|
forwardedRef?: any;
|
836
752
|
} & React.HTMLAttributes<HTMLDivElement>, keyof import("../locale").LocaleProps> & {
|
837
753
|
locale?: string | undefined;
|
@@ -841,7 +757,9 @@ export default class Dialog extends React.Component<DialogProps> {
|
|
841
757
|
className?: string | undefined;
|
842
758
|
showCloseButton?: boolean | undefined;
|
843
759
|
onClose?: (() => void) | undefined;
|
844
|
-
children?: React.ReactNode;
|
760
|
+
children?: React.ReactNode; /**
|
761
|
+
* 是否显示关闭按钮
|
762
|
+
*/
|
845
763
|
forwardedRef?: any;
|
846
764
|
} & React.HTMLAttributes<HTMLDivElement>, keyof import("../locale").LocaleProps> & {
|
847
765
|
locale?: string | undefined;
|
@@ -851,7 +769,9 @@ export default class Dialog extends React.Component<DialogProps> {
|
|
851
769
|
className?: string | undefined;
|
852
770
|
showCloseButton?: boolean | undefined;
|
853
771
|
onClose?: (() => void) | undefined;
|
854
|
-
children?: React.ReactNode;
|
772
|
+
children?: React.ReactNode; /**
|
773
|
+
* 是否显示关闭按钮
|
774
|
+
*/
|
855
775
|
forwardedRef?: any;
|
856
776
|
} & React.HTMLAttributes<HTMLDivElement>, keyof import("../locale").LocaleProps> & {
|
857
777
|
locale?: string | undefined;
|
@@ -864,21 +784,27 @@ export default class Dialog extends React.Component<DialogProps> {
|
|
864
784
|
className?: string | undefined;
|
865
785
|
showCloseButton?: boolean | undefined;
|
866
786
|
onClose?: (() => void) | undefined;
|
867
|
-
children?: React.ReactNode;
|
787
|
+
children?: React.ReactNode; /**
|
788
|
+
* 是否显示关闭按钮
|
789
|
+
*/
|
868
790
|
forwardedRef?: any;
|
869
791
|
} & React.HTMLAttributes<HTMLDivElement>) => JSX.Element>;
|
870
792
|
} & import("hoist-non-react-statics").NonReactStatics<({ classnames: cx, className, showCloseButton, onClose, children, classPrefix, translate: __, forwardedRef, ...rest }: import("../theme").ThemeProps & import("../locale").LocaleProps & {
|
871
793
|
className?: string | undefined;
|
872
794
|
showCloseButton?: boolean | undefined;
|
873
795
|
onClose?: (() => void) | undefined;
|
874
|
-
children?: React.ReactNode;
|
796
|
+
children?: React.ReactNode; /**
|
797
|
+
* 是否显示关闭按钮
|
798
|
+
*/
|
875
799
|
forwardedRef?: any;
|
876
800
|
} & React.HTMLAttributes<HTMLDivElement>) => JSX.Element, {}> & {
|
877
801
|
ComposedComponent: ({ classnames: cx, className, showCloseButton, onClose, children, classPrefix, translate: __, forwardedRef, ...rest }: import("../theme").ThemeProps & import("../locale").LocaleProps & {
|
878
802
|
className?: string | undefined;
|
879
803
|
showCloseButton?: boolean | undefined;
|
880
804
|
onClose?: (() => void) | undefined;
|
881
|
-
children?: React.ReactNode;
|
805
|
+
children?: React.ReactNode; /**
|
806
|
+
* 是否显示关闭按钮
|
807
|
+
*/
|
882
808
|
forwardedRef?: any;
|
883
809
|
} & React.HTMLAttributes<HTMLDivElement>) => JSX.Element;
|
884
810
|
}>;
|
@@ -887,7 +813,9 @@ export default class Dialog extends React.Component<DialogProps> {
|
|
887
813
|
className?: string | undefined;
|
888
814
|
showCloseButton?: boolean | undefined;
|
889
815
|
onClose?: (() => void) | undefined;
|
890
|
-
children?: React.ReactNode;
|
816
|
+
children?: React.ReactNode; /**
|
817
|
+
* 是否显示关闭按钮
|
818
|
+
*/
|
891
819
|
forwardedRef?: any;
|
892
820
|
} & React.HTMLAttributes<HTMLDivElement>, keyof import("../locale").LocaleProps> & {
|
893
821
|
locale?: string | undefined;
|
@@ -902,7 +830,9 @@ export default class Dialog extends React.Component<DialogProps> {
|
|
902
830
|
className?: string | undefined;
|
903
831
|
showCloseButton?: boolean | undefined;
|
904
832
|
onClose?: (() => void) | undefined;
|
905
|
-
children?: React.ReactNode;
|
833
|
+
children?: React.ReactNode; /**
|
834
|
+
* 是否显示关闭按钮
|
835
|
+
*/
|
906
836
|
forwardedRef?: any;
|
907
837
|
} & React.HTMLAttributes<HTMLDivElement>, keyof import("../locale").LocaleProps> & {
|
908
838
|
locale?: string | undefined;
|
@@ -913,7 +843,9 @@ export default class Dialog extends React.Component<DialogProps> {
|
|
913
843
|
className?: string | undefined;
|
914
844
|
showCloseButton?: boolean | undefined;
|
915
845
|
onClose?: (() => void) | undefined;
|
916
|
-
children?: React.ReactNode;
|
846
|
+
children?: React.ReactNode; /**
|
847
|
+
* 是否显示关闭按钮
|
848
|
+
*/
|
917
849
|
forwardedRef?: any;
|
918
850
|
} & React.HTMLAttributes<HTMLDivElement>, keyof import("../locale").LocaleProps> & {
|
919
851
|
locale?: string | undefined;
|
@@ -930,7 +862,9 @@ export default class Dialog extends React.Component<DialogProps> {
|
|
930
862
|
className?: string | undefined;
|
931
863
|
showCloseButton?: boolean | undefined;
|
932
864
|
onClose?: (() => void) | undefined;
|
933
|
-
children?: React.ReactNode;
|
865
|
+
children?: React.ReactNode; /**
|
866
|
+
* 是否显示关闭按钮
|
867
|
+
*/
|
934
868
|
forwardedRef?: any;
|
935
869
|
} & React.HTMLAttributes<HTMLDivElement>, keyof import("../locale").LocaleProps> & {
|
936
870
|
locale?: string | undefined;
|
@@ -942,7 +876,9 @@ export default class Dialog extends React.Component<DialogProps> {
|
|
942
876
|
className?: string | undefined;
|
943
877
|
showCloseButton?: boolean | undefined;
|
944
878
|
onClose?: (() => void) | undefined;
|
945
|
-
children?: React.ReactNode;
|
879
|
+
children?: React.ReactNode; /**
|
880
|
+
* 是否显示关闭按钮
|
881
|
+
*/
|
946
882
|
forwardedRef?: any;
|
947
883
|
} & React.HTMLAttributes<HTMLDivElement>, keyof import("../locale").LocaleProps> & {
|
948
884
|
locale?: string | undefined;
|
@@ -952,7 +888,9 @@ export default class Dialog extends React.Component<DialogProps> {
|
|
952
888
|
className?: string | undefined;
|
953
889
|
showCloseButton?: boolean | undefined;
|
954
890
|
onClose?: (() => void) | undefined;
|
955
|
-
children?: React.ReactNode;
|
891
|
+
children?: React.ReactNode; /**
|
892
|
+
* 是否显示关闭按钮
|
893
|
+
*/
|
956
894
|
forwardedRef?: any;
|
957
895
|
} & React.HTMLAttributes<HTMLDivElement>, keyof import("../locale").LocaleProps> & {
|
958
896
|
locale?: string | undefined;
|
@@ -964,7 +902,9 @@ export default class Dialog extends React.Component<DialogProps> {
|
|
964
902
|
className?: string | undefined;
|
965
903
|
showCloseButton?: boolean | undefined;
|
966
904
|
onClose?: (() => void) | undefined;
|
967
|
-
children?: React.ReactNode;
|
905
|
+
children?: React.ReactNode; /**
|
906
|
+
* 是否显示关闭按钮
|
907
|
+
*/
|
968
908
|
forwardedRef?: any;
|
969
909
|
} & React.HTMLAttributes<HTMLDivElement>, keyof import("../locale").LocaleProps> & {
|
970
910
|
locale?: string | undefined;
|
@@ -974,7 +914,9 @@ export default class Dialog extends React.Component<DialogProps> {
|
|
974
914
|
className?: string | undefined;
|
975
915
|
showCloseButton?: boolean | undefined;
|
976
916
|
onClose?: (() => void) | undefined;
|
977
|
-
children?: React.ReactNode;
|
917
|
+
children?: React.ReactNode; /**
|
918
|
+
* 是否显示关闭按钮
|
919
|
+
*/
|
978
920
|
forwardedRef?: any;
|
979
921
|
} & React.HTMLAttributes<HTMLDivElement>, keyof import("../locale").LocaleProps> & {
|
980
922
|
locale?: string | undefined;
|
@@ -984,7 +926,9 @@ export default class Dialog extends React.Component<DialogProps> {
|
|
984
926
|
className?: string | undefined;
|
985
927
|
showCloseButton?: boolean | undefined;
|
986
928
|
onClose?: (() => void) | undefined;
|
987
|
-
children?: React.ReactNode;
|
929
|
+
children?: React.ReactNode; /**
|
930
|
+
* 是否显示关闭按钮
|
931
|
+
*/
|
988
932
|
forwardedRef?: any;
|
989
933
|
} & React.HTMLAttributes<HTMLDivElement>, keyof import("../locale").LocaleProps> & {
|
990
934
|
locale?: string | undefined;
|
@@ -994,7 +938,9 @@ export default class Dialog extends React.Component<DialogProps> {
|
|
994
938
|
className?: string | undefined;
|
995
939
|
showCloseButton?: boolean | undefined;
|
996
940
|
onClose?: (() => void) | undefined;
|
997
|
-
children?: React.ReactNode;
|
941
|
+
children?: React.ReactNode; /**
|
942
|
+
* 是否显示关闭按钮
|
943
|
+
*/
|
998
944
|
forwardedRef?: any;
|
999
945
|
} & React.HTMLAttributes<HTMLDivElement>, keyof import("../locale").LocaleProps> & {
|
1000
946
|
locale?: string | undefined;
|
@@ -1007,21 +953,27 @@ export default class Dialog extends React.Component<DialogProps> {
|
|
1007
953
|
className?: string | undefined;
|
1008
954
|
showCloseButton?: boolean | undefined;
|
1009
955
|
onClose?: (() => void) | undefined;
|
1010
|
-
children?: React.ReactNode;
|
956
|
+
children?: React.ReactNode; /**
|
957
|
+
* 是否显示关闭按钮
|
958
|
+
*/
|
1011
959
|
forwardedRef?: any;
|
1012
960
|
} & React.HTMLAttributes<HTMLDivElement>) => JSX.Element>;
|
1013
961
|
} & import("hoist-non-react-statics").NonReactStatics<({ classnames: cx, className, showCloseButton, onClose, children, classPrefix, translate: __, forwardedRef, ...rest }: import("../theme").ThemeProps & import("../locale").LocaleProps & {
|
1014
962
|
className?: string | undefined;
|
1015
963
|
showCloseButton?: boolean | undefined;
|
1016
964
|
onClose?: (() => void) | undefined;
|
1017
|
-
children?: React.ReactNode;
|
965
|
+
children?: React.ReactNode; /**
|
966
|
+
* 是否显示关闭按钮
|
967
|
+
*/
|
1018
968
|
forwardedRef?: any;
|
1019
969
|
} & React.HTMLAttributes<HTMLDivElement>) => JSX.Element, {}> & {
|
1020
970
|
ComposedComponent: ({ classnames: cx, className, showCloseButton, onClose, children, classPrefix, translate: __, forwardedRef, ...rest }: import("../theme").ThemeProps & import("../locale").LocaleProps & {
|
1021
971
|
className?: string | undefined;
|
1022
972
|
showCloseButton?: boolean | undefined;
|
1023
973
|
onClose?: (() => void) | undefined;
|
1024
|
-
children?: React.ReactNode;
|
974
|
+
children?: React.ReactNode; /**
|
975
|
+
* 是否显示关闭按钮
|
976
|
+
*/
|
1025
977
|
forwardedRef?: any;
|
1026
978
|
} & React.HTMLAttributes<HTMLDivElement>) => JSX.Element;
|
1027
979
|
}, {}> & {
|
@@ -1030,7 +982,9 @@ export default class Dialog extends React.Component<DialogProps> {
|
|
1030
982
|
className?: string | undefined;
|
1031
983
|
showCloseButton?: boolean | undefined;
|
1032
984
|
onClose?: (() => void) | undefined;
|
1033
|
-
children?: React.ReactNode;
|
985
|
+
children?: React.ReactNode; /**
|
986
|
+
* 是否显示关闭按钮
|
987
|
+
*/
|
1034
988
|
forwardedRef?: any;
|
1035
989
|
} & React.HTMLAttributes<HTMLDivElement>, keyof import("../locale").LocaleProps> & {
|
1036
990
|
locale?: string | undefined;
|
@@ -1045,7 +999,9 @@ export default class Dialog extends React.Component<DialogProps> {
|
|
1045
999
|
className?: string | undefined;
|
1046
1000
|
showCloseButton?: boolean | undefined;
|
1047
1001
|
onClose?: (() => void) | undefined;
|
1048
|
-
children?: React.ReactNode;
|
1002
|
+
children?: React.ReactNode; /**
|
1003
|
+
* 是否显示关闭按钮
|
1004
|
+
*/
|
1049
1005
|
forwardedRef?: any;
|
1050
1006
|
} & React.HTMLAttributes<HTMLDivElement>, keyof import("../locale").LocaleProps> & {
|
1051
1007
|
locale?: string | undefined;
|
@@ -1056,7 +1012,9 @@ export default class Dialog extends React.Component<DialogProps> {
|
|
1056
1012
|
className?: string | undefined;
|
1057
1013
|
showCloseButton?: boolean | undefined;
|
1058
1014
|
onClose?: (() => void) | undefined;
|
1059
|
-
children?: React.ReactNode;
|
1015
|
+
children?: React.ReactNode; /**
|
1016
|
+
* 是否显示关闭按钮
|
1017
|
+
*/
|
1060
1018
|
forwardedRef?: any;
|
1061
1019
|
} & React.HTMLAttributes<HTMLDivElement>, keyof import("../locale").LocaleProps> & {
|
1062
1020
|
locale?: string | undefined;
|
@@ -1073,7 +1031,9 @@ export default class Dialog extends React.Component<DialogProps> {
|
|
1073
1031
|
className?: string | undefined;
|
1074
1032
|
showCloseButton?: boolean | undefined;
|
1075
1033
|
onClose?: (() => void) | undefined;
|
1076
|
-
children?: React.ReactNode;
|
1034
|
+
children?: React.ReactNode; /**
|
1035
|
+
* 是否显示关闭按钮
|
1036
|
+
*/
|
1077
1037
|
forwardedRef?: any;
|
1078
1038
|
} & React.HTMLAttributes<HTMLDivElement>, keyof import("../locale").LocaleProps> & {
|
1079
1039
|
locale?: string | undefined;
|
@@ -1085,7 +1045,9 @@ export default class Dialog extends React.Component<DialogProps> {
|
|
1085
1045
|
className?: string | undefined;
|
1086
1046
|
showCloseButton?: boolean | undefined;
|
1087
1047
|
onClose?: (() => void) | undefined;
|
1088
|
-
children?: React.ReactNode;
|
1048
|
+
children?: React.ReactNode; /**
|
1049
|
+
* 是否显示关闭按钮
|
1050
|
+
*/
|
1089
1051
|
forwardedRef?: any;
|
1090
1052
|
} & React.HTMLAttributes<HTMLDivElement>, keyof import("../locale").LocaleProps> & {
|
1091
1053
|
locale?: string | undefined;
|
@@ -1095,7 +1057,9 @@ export default class Dialog extends React.Component<DialogProps> {
|
|
1095
1057
|
className?: string | undefined;
|
1096
1058
|
showCloseButton?: boolean | undefined;
|
1097
1059
|
onClose?: (() => void) | undefined;
|
1098
|
-
children?: React.ReactNode;
|
1060
|
+
children?: React.ReactNode; /**
|
1061
|
+
* 是否显示关闭按钮
|
1062
|
+
*/
|
1099
1063
|
forwardedRef?: any;
|
1100
1064
|
} & React.HTMLAttributes<HTMLDivElement>, keyof import("../locale").LocaleProps> & {
|
1101
1065
|
locale?: string | undefined;
|
@@ -1107,7 +1071,9 @@ export default class Dialog extends React.Component<DialogProps> {
|
|
1107
1071
|
className?: string | undefined;
|
1108
1072
|
showCloseButton?: boolean | undefined;
|
1109
1073
|
onClose?: (() => void) | undefined;
|
1110
|
-
children?: React.ReactNode;
|
1074
|
+
children?: React.ReactNode; /**
|
1075
|
+
* 是否显示关闭按钮
|
1076
|
+
*/
|
1111
1077
|
forwardedRef?: any;
|
1112
1078
|
} & React.HTMLAttributes<HTMLDivElement>, keyof import("../locale").LocaleProps> & {
|
1113
1079
|
locale?: string | undefined;
|
@@ -1117,7 +1083,9 @@ export default class Dialog extends React.Component<DialogProps> {
|
|
1117
1083
|
className?: string | undefined;
|
1118
1084
|
showCloseButton?: boolean | undefined;
|
1119
1085
|
onClose?: (() => void) | undefined;
|
1120
|
-
children?: React.ReactNode;
|
1086
|
+
children?: React.ReactNode; /**
|
1087
|
+
* 是否显示关闭按钮
|
1088
|
+
*/
|
1121
1089
|
forwardedRef?: any;
|
1122
1090
|
} & React.HTMLAttributes<HTMLDivElement>, keyof import("../locale").LocaleProps> & {
|
1123
1091
|
locale?: string | undefined;
|
@@ -1127,7 +1095,9 @@ export default class Dialog extends React.Component<DialogProps> {
|
|
1127
1095
|
className?: string | undefined;
|
1128
1096
|
showCloseButton?: boolean | undefined;
|
1129
1097
|
onClose?: (() => void) | undefined;
|
1130
|
-
children?: React.ReactNode;
|
1098
|
+
children?: React.ReactNode; /**
|
1099
|
+
* 是否显示关闭按钮
|
1100
|
+
*/
|
1131
1101
|
forwardedRef?: any;
|
1132
1102
|
} & React.HTMLAttributes<HTMLDivElement>, keyof import("../locale").LocaleProps> & {
|
1133
1103
|
locale?: string | undefined;
|
@@ -1137,7 +1107,9 @@ export default class Dialog extends React.Component<DialogProps> {
|
|
1137
1107
|
className?: string | undefined;
|
1138
1108
|
showCloseButton?: boolean | undefined;
|
1139
1109
|
onClose?: (() => void) | undefined;
|
1140
|
-
children?: React.ReactNode;
|
1110
|
+
children?: React.ReactNode; /**
|
1111
|
+
* 是否显示关闭按钮
|
1112
|
+
*/
|
1141
1113
|
forwardedRef?: any;
|
1142
1114
|
} & React.HTMLAttributes<HTMLDivElement>, keyof import("../locale").LocaleProps> & {
|
1143
1115
|
locale?: string | undefined;
|
@@ -1150,21 +1122,27 @@ export default class Dialog extends React.Component<DialogProps> {
|
|
1150
1122
|
className?: string | undefined;
|
1151
1123
|
showCloseButton?: boolean | undefined;
|
1152
1124
|
onClose?: (() => void) | undefined;
|
1153
|
-
children?: React.ReactNode;
|
1125
|
+
children?: React.ReactNode; /**
|
1126
|
+
* 是否显示关闭按钮
|
1127
|
+
*/
|
1154
1128
|
forwardedRef?: any;
|
1155
1129
|
} & React.HTMLAttributes<HTMLDivElement>) => JSX.Element>;
|
1156
1130
|
} & import("hoist-non-react-statics").NonReactStatics<({ classnames: cx, className, showCloseButton, onClose, children, classPrefix, translate: __, forwardedRef, ...rest }: import("../theme").ThemeProps & import("../locale").LocaleProps & {
|
1157
1131
|
className?: string | undefined;
|
1158
1132
|
showCloseButton?: boolean | undefined;
|
1159
1133
|
onClose?: (() => void) | undefined;
|
1160
|
-
children?: React.ReactNode;
|
1134
|
+
children?: React.ReactNode; /**
|
1135
|
+
* 是否显示关闭按钮
|
1136
|
+
*/
|
1161
1137
|
forwardedRef?: any;
|
1162
1138
|
} & React.HTMLAttributes<HTMLDivElement>) => JSX.Element, {}> & {
|
1163
1139
|
ComposedComponent: ({ classnames: cx, className, showCloseButton, onClose, children, classPrefix, translate: __, forwardedRef, ...rest }: import("../theme").ThemeProps & import("../locale").LocaleProps & {
|
1164
1140
|
className?: string | undefined;
|
1165
1141
|
showCloseButton?: boolean | undefined;
|
1166
1142
|
onClose?: (() => void) | undefined;
|
1167
|
-
children?: React.ReactNode;
|
1143
|
+
children?: React.ReactNode; /**
|
1144
|
+
* 是否显示关闭按钮
|
1145
|
+
*/
|
1168
1146
|
forwardedRef?: any;
|
1169
1147
|
} & React.HTMLAttributes<HTMLDivElement>) => JSX.Element;
|
1170
1148
|
};
|