@antscorp/ama-ui 0.0.33 → 0.0.35
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/dist/ama-ui.es.js +2228 -2126
- package/dist/ama-ui.es.js.map +1 -1
- package/dist/index.d.ts +69 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -17,6 +17,7 @@ import { CascaderOption } from 'antd-mobile/es/components/cascader';
|
|
|
17
17
|
import { CascaderProps as CascaderProps_2 } from 'antd-mobile';
|
|
18
18
|
import { CascaderView as CascaderView_2 } from 'antd-mobile';
|
|
19
19
|
import { CascaderViewProps as CascaderViewProps_2 } from 'antd-mobile';
|
|
20
|
+
import { CenterPopupProps as CenterPopupProps_2 } from 'antd-mobile';
|
|
20
21
|
import { Checkbox as Checkbox_2 } from 'antd-mobile';
|
|
21
22
|
import { CheckboxProps as CheckboxProps_2 } from 'antd-mobile';
|
|
22
23
|
import { CheckboxRef as CheckboxRef_2 } from 'antd-mobile';
|
|
@@ -30,6 +31,9 @@ import { ConfigProviderProps as ConfigProviderProps_2 } from 'antd-mobile';
|
|
|
30
31
|
import { confirm as confirm_2 } from 'antd-mobile/es/components/modal/confirm';
|
|
31
32
|
import { DatePickerProps as DatePickerProps_2 } from 'antd-mobile';
|
|
32
33
|
import { default as default_2 } from 'react';
|
|
34
|
+
import { Dialog } from 'antd-mobile';
|
|
35
|
+
import { DialogShowHandler } from 'antd-mobile/es/components/dialog';
|
|
36
|
+
import { DialogShowProps } from 'antd-mobile';
|
|
33
37
|
import { DividerProps as DividerProps_2 } from 'antd-mobile';
|
|
34
38
|
import { DotLoadingProps as DotLoadingProps_2 } from 'antd-mobile';
|
|
35
39
|
import { EllipsisProps as EllipsisProps_2 } from 'antd-mobile';
|
|
@@ -57,6 +61,7 @@ import { JumboTabsProps as JumboTabsProps_2 } from 'antd-mobile';
|
|
|
57
61
|
import { LinkItem } from 'antd-mobile/es/components/footer';
|
|
58
62
|
import { List as List_2 } from 'antd-mobile';
|
|
59
63
|
import { ListProps as ListProps_2 } from 'antd-mobile';
|
|
64
|
+
import { MaskProps as MaskProps_2 } from 'antd-mobile';
|
|
60
65
|
import { ModalAlertProps } from 'antd-mobile';
|
|
61
66
|
import { ModalConfirmProps } from 'antd-mobile';
|
|
62
67
|
import { ModalProps } from 'antd-mobile';
|
|
@@ -64,12 +69,18 @@ import { ModalShowProps } from 'antd-mobile';
|
|
|
64
69
|
import { NavBarProps as NavBarProps_2 } from 'antd-mobile';
|
|
65
70
|
import { PageIndicatorProps as PageIndicatorProps_2 } from 'antd-mobile';
|
|
66
71
|
import { PickerProps as PickerProps_2 } from 'antd-mobile';
|
|
72
|
+
import { Popover as Popover_2 } from 'antd-mobile';
|
|
73
|
+
import { PopoverProps as PopoverProps_2 } from 'antd-mobile';
|
|
74
|
+
import { PopupProps as PopupProps_2 } from 'antd-mobile';
|
|
75
|
+
import { ProgressBarProps } from 'antd-mobile';
|
|
76
|
+
import { ProgressCircleProps as ProgressCircleProps_2 } from 'antd-mobile';
|
|
67
77
|
import { PullStatus } from 'antd-mobile/es/components/pull-to-refresh';
|
|
68
78
|
import { PullToRefreshProps as PullToRefreshProps_2 } from 'antd-mobile';
|
|
69
79
|
import { Radio as Radio_2 } from 'antd-mobile';
|
|
70
80
|
import { RadioProps as RadioProps_2 } from 'antd-mobile';
|
|
71
81
|
import { RateProps as RateProps_2 } from 'antd-mobile';
|
|
72
82
|
import { RefAttributes } from 'react';
|
|
83
|
+
import { ResultProps as ResultProps_2 } from 'antd-mobile';
|
|
73
84
|
import { SafeAreaProps as SafeAreaProps_2 } from 'antd-mobile';
|
|
74
85
|
import { SearchBarProps as SearchBarProps_2 } from 'antd-mobile';
|
|
75
86
|
import { SearchBarRef as SearchBarRef_2 } from 'antd-mobile';
|
|
@@ -182,6 +193,13 @@ export declare interface CascaderViewProps extends CascaderViewProps_2 {
|
|
|
182
193
|
optional?: string;
|
|
183
194
|
}
|
|
184
195
|
|
|
196
|
+
export declare const CenterPopup: default_2.FC<CenterPopupProps>;
|
|
197
|
+
|
|
198
|
+
export declare interface CenterPopupProps extends CenterPopupProps_2 {
|
|
199
|
+
/** An optional prop */
|
|
200
|
+
optional?: string;
|
|
201
|
+
}
|
|
202
|
+
|
|
185
203
|
export declare const Checkbox: typeof BaseCheckbox & {
|
|
186
204
|
Group: typeof Checkbox_2.Group;
|
|
187
205
|
};
|
|
@@ -227,6 +245,15 @@ export declare interface DatePickerProps extends DatePickerProps_2 {
|
|
|
227
245
|
optional?: string;
|
|
228
246
|
}
|
|
229
247
|
|
|
248
|
+
export { Dialog }
|
|
249
|
+
|
|
250
|
+
export declare interface DialogProps extends DialogShowProps {
|
|
251
|
+
/** An optional prop */
|
|
252
|
+
optional?: string;
|
|
253
|
+
}
|
|
254
|
+
|
|
255
|
+
export { DialogShowHandler }
|
|
256
|
+
|
|
230
257
|
export declare const Divider: default_2.FC<DividerProps>;
|
|
231
258
|
|
|
232
259
|
export declare interface DividerProps extends DividerProps_2 {
|
|
@@ -271,6 +298,7 @@ export declare interface FooterProps extends FooterProps_2 {
|
|
|
271
298
|
|
|
272
299
|
export declare const Form: default_2.FC<FormProps> & {
|
|
273
300
|
Item: typeof Form_2.Item;
|
|
301
|
+
useForm: typeof Form_2.useForm;
|
|
274
302
|
};
|
|
275
303
|
|
|
276
304
|
export declare interface FormProps extends FormProps_2 {
|
|
@@ -347,6 +375,13 @@ export declare interface ListProps extends ListProps_2 {
|
|
|
347
375
|
optional?: boolean;
|
|
348
376
|
}
|
|
349
377
|
|
|
378
|
+
export declare const Mask: default_2.FC<MaskProps>;
|
|
379
|
+
|
|
380
|
+
export declare interface MaskProps extends MaskProps_2 {
|
|
381
|
+
/** An optional prop */
|
|
382
|
+
optional?: string;
|
|
383
|
+
}
|
|
384
|
+
|
|
350
385
|
export declare const Modal: FC<ModalProps> & {
|
|
351
386
|
show: show;
|
|
352
387
|
alert: alert_2;
|
|
@@ -381,6 +416,33 @@ export declare const Picker: default_2.FC<PickerProps>;
|
|
|
381
416
|
export declare interface PickerProps extends PickerProps_2 {
|
|
382
417
|
}
|
|
383
418
|
|
|
419
|
+
export declare const Popover: default_2.FC<PopoverProps> & {
|
|
420
|
+
Menu: typeof Popover_2.Menu;
|
|
421
|
+
};
|
|
422
|
+
|
|
423
|
+
export declare interface PopoverProps extends PopoverProps_2 {
|
|
424
|
+
/** Optional */
|
|
425
|
+
optional?: boolean;
|
|
426
|
+
}
|
|
427
|
+
|
|
428
|
+
export declare const Popup: default_2.FC<PopupProps>;
|
|
429
|
+
|
|
430
|
+
export declare interface PopupProps extends PopupProps_2 {
|
|
431
|
+
/** An optional prop */
|
|
432
|
+
optional?: string;
|
|
433
|
+
}
|
|
434
|
+
|
|
435
|
+
export declare const ProgressBar: FC<ProgressBarProps>;
|
|
436
|
+
|
|
437
|
+
export { ProgressBarProps }
|
|
438
|
+
|
|
439
|
+
export declare const ProgressCircle: default_2.FC<ProgressCircleProps>;
|
|
440
|
+
|
|
441
|
+
export declare interface ProgressCircleProps extends ProgressCircleProps_2 {
|
|
442
|
+
/** An optional prop */
|
|
443
|
+
optional?: string;
|
|
444
|
+
}
|
|
445
|
+
|
|
384
446
|
export { PullStatus }
|
|
385
447
|
|
|
386
448
|
export declare const PullToRefresh: default_2.FC<PullToRefreshProps>;
|
|
@@ -406,6 +468,13 @@ export declare interface RateProps extends RateProps_2 {
|
|
|
406
468
|
optional?: string;
|
|
407
469
|
}
|
|
408
470
|
|
|
471
|
+
export declare const Result: default_2.FC<ResultProps>;
|
|
472
|
+
|
|
473
|
+
export declare interface ResultProps extends ResultProps_2 {
|
|
474
|
+
/** An optional prop */
|
|
475
|
+
optional?: string;
|
|
476
|
+
}
|
|
477
|
+
|
|
409
478
|
export declare const SafeArea: default_2.FC<SafeAreaProps>;
|
|
410
479
|
|
|
411
480
|
export declare interface SafeAreaProps extends SafeAreaProps_2 {
|