@nutui/nutui-react-taro 1.3.4 → 1.3.5-beta.0

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.
Files changed (47) hide show
  1. package/CHANGELOG.md +12 -0
  2. package/dist/esm/Address.js +3 -4
  3. package/dist/esm/AnimatingNumbers.js +2 -2
  4. package/dist/esm/Audio.js +4 -4
  5. package/dist/esm/Cascader/style/index.js +2 -1
  6. package/dist/esm/Cascader.js +2 -2
  7. package/dist/esm/Dialog.js +2 -4
  8. package/dist/esm/ImagePreview/style/index.js +3 -1
  9. package/dist/esm/ImagePreview.js +3 -4
  10. package/dist/esm/Infiniteloading.js +2 -2
  11. package/dist/esm/Notify.js +2 -3
  12. package/dist/esm/Range.js +3 -3
  13. package/dist/esm/Rate.js +2 -2
  14. package/dist/esm/Swiper/style/index.js +1 -1
  15. package/dist/esm/Swiper.js +2 -2
  16. package/dist/esm/Toast.js +2 -2
  17. package/dist/esm/{address.taro-7540c626.js → address.taro-f16cef31.js} +76 -373
  18. package/dist/esm/{animatingnumbers.taro-877baa98.js → animatingnumbers.taro-6f40a2e9.js} +41 -25
  19. package/dist/esm/{audio.taro-ab2528b2.js → audio.taro-29f5568f.js} +1 -1
  20. package/dist/esm/{cascader.taro-35387092.js → cascader.taro-77100fb4.js} +54 -48
  21. package/dist/esm/dialog.taro-492e2b9a.js +218 -0
  22. package/dist/esm/{imagepreview.taro-3f1c7638.js → imagepreview.taro-1199e977.js} +3 -11
  23. package/dist/esm/{infiniteloading.taro-9701755f.js → infiniteloading.taro-b95e62bf.js} +1 -3
  24. package/dist/esm/notify.taro-d9c48fae.js +122 -0
  25. package/dist/esm/nutui-react.es.js +12 -12
  26. package/dist/esm/{range.taro-141a0163.js → range.taro-515d37a4.js} +1 -1
  27. package/dist/esm/{rate.taro-5077b962.js → rate.taro-69c85081.js} +4 -2
  28. package/dist/esm/{swiper.taro-58ed323b.js → swiper.taro-f314d67a.js} +4 -2
  29. package/dist/esm/{toast.taro-cd22a0d7.js → toast.taro-86862dff.js} +1 -1
  30. package/dist/esm/types/src/packages/address/customRender.taro.d.ts +15 -0
  31. package/dist/esm/types/src/packages/cascader/cascader.d.ts +1 -0
  32. package/dist/esm/types/src/packages/cascader/cascader.taro.d.ts +1 -0
  33. package/dist/esm/types/src/packages/notify/index.taro.d.ts +1 -1
  34. package/dist/esm/types/src/packages/notify/notify.taro.d.ts +9 -15
  35. package/dist/locales/base.js +1 -1
  36. package/dist/locales/en-US.js +1 -1
  37. package/dist/locales/id-ID.js +1 -1
  38. package/dist/locales/zh-CN.js +1 -1
  39. package/dist/locales/zh-TW.js +1 -1
  40. package/dist/nutui.react.es.js +582 -1232
  41. package/dist/nutui.react.umd.js +577 -1227
  42. package/dist/style.css +1 -1
  43. package/dist/style.es.js +1 -1
  44. package/dist/types/index.d.ts +169 -174
  45. package/package.json +1 -1
  46. package/dist/esm/dialog.taro-54c67e08.js +0 -554
  47. package/dist/esm/notify.taro-0d9cfb07.js +0 -300
@@ -1,5 +1,4 @@
1
- import * as React$1 from 'react';
2
- import React__default, { CSSProperties, ReactNode, FunctionComponent, ReactHTML, ReactElement, MouseEvent as MouseEvent$1, ChangeEvent, FocusEvent, HTMLInputTypeAttribute, MouseEventHandler, RefObject, ForwardRefExoticComponent, PropsWithChildren, Component } from 'react';
1
+ import React$1, { CSSProperties, ReactNode, FunctionComponent, ReactHTML, ReactElement, MouseEvent as MouseEvent$1, ChangeEvent, FocusEvent, HTMLInputTypeAttribute, MouseEventHandler, RefObject, ForwardRefExoticComponent, PropsWithChildren, Component } from 'react';
3
2
  import Taro from '@tarojs/taro';
4
3
 
5
4
  interface IComponent {
@@ -17,7 +16,7 @@ interface ButtonProps extends IComponent {
17
16
  plain: boolean;
18
17
  loading: boolean;
19
18
  disabled: boolean;
20
- style: React__default.CSSProperties;
19
+ style: React$1.CSSProperties;
21
20
  type: ButtonType;
22
21
  size: ButtonSize;
23
22
  block: boolean;
@@ -46,9 +45,9 @@ interface CellProps extends IComponent {
46
45
  className: string;
47
46
  iconSlot: ReactNode;
48
47
  linkSlot: ReactNode;
49
- click: (event: React__default.MouseEvent<HTMLDivElement, MouseEvent>) => void;
48
+ click: (event: React$1.MouseEvent<HTMLDivElement, MouseEvent>) => void;
50
49
  }
51
- declare const Cell: FunctionComponent<Partial<CellProps> & Omit<React__default.HTMLAttributes<HTMLDivElement>, 'title'>>;
50
+ declare const Cell: FunctionComponent<Partial<CellProps> & Omit<React$1.HTMLAttributes<HTMLDivElement>, 'title'>>;
52
51
 
53
52
  interface CellGroupProps {
54
53
  title: ReactNode;
@@ -69,8 +68,8 @@ interface IconProps {
69
68
  onClick: (e: MouseEvent) => void;
70
69
  fontClassName: string;
71
70
  className: string;
72
- style: React__default.CSSProperties;
73
- children: React__default.ReactNode;
71
+ style: React$1.CSSProperties;
72
+ children: React$1.ReactNode;
74
73
  }
75
74
  declare function Icon<T>(props: Partial<IconProps> & T): ReactElement;
76
75
  declare namespace Icon {
@@ -82,18 +81,18 @@ interface OverlayProps {
82
81
  zIndex: number;
83
82
  duration: number;
84
83
  overlayClass: string;
85
- overlayStyle: React__default.CSSProperties;
84
+ overlayStyle: React$1.CSSProperties;
86
85
  closeOnClickOverlay: boolean;
87
86
  visible: boolean;
88
87
  lockScroll: boolean;
89
88
  }
90
- declare const Overlay: FunctionComponent<Partial<OverlayProps> & React__default.HTMLAttributes<HTMLDivElement>>;
89
+ declare const Overlay: FunctionComponent<Partial<OverlayProps> & React$1.HTMLAttributes<HTMLDivElement>>;
91
90
 
92
91
  declare type Teleport = HTMLElement | (() => HTMLElement) | null;
93
92
  interface PopupProps extends OverlayProps, IComponent {
94
93
  position: string;
95
94
  transition: string;
96
- style: React__default.CSSProperties;
95
+ style: React$1.CSSProperties;
97
96
  popClass: string;
98
97
  closeable: boolean;
99
98
  closeIconPosition: string;
@@ -110,7 +109,7 @@ interface PopupProps extends OverlayProps, IComponent {
110
109
  onClickOverlay: (e: MouseEvent$1) => void;
111
110
  onClickCloseIcon: (e: MouseEvent$1) => void;
112
111
  }
113
- declare const Popup: FunctionComponent<Partial<PopupProps> & React__default.HTMLAttributes<HTMLDivElement>>;
112
+ declare const Popup: FunctionComponent<Partial<PopupProps> & React$1.HTMLAttributes<HTMLDivElement>>;
114
113
 
115
114
  interface BaseLang {
116
115
  save: string;
@@ -241,11 +240,11 @@ interface BaseLang {
241
240
  interface ConfigProviderProps {
242
241
  locale: BaseLang;
243
242
  }
244
- declare const ConfigProvider: FunctionComponent<Partial<ConfigProviderProps> & React__default.HTMLAttributes<HTMLDivElement>>;
243
+ declare const ConfigProvider: FunctionComponent<Partial<ConfigProviderProps> & React$1.HTMLAttributes<HTMLDivElement>>;
245
244
 
246
245
  interface LayoutProps {
247
246
  }
248
- declare const Layout: FunctionComponent<Partial<LayoutProps> & React__default.HTMLAttributes<HTMLDivElement>>;
247
+ declare const Layout: FunctionComponent<Partial<LayoutProps> & React$1.HTMLAttributes<HTMLDivElement>>;
249
248
 
250
249
  declare type EventType$1 = 'row' | 'col';
251
250
  interface ColProps {
@@ -254,7 +253,7 @@ interface ColProps {
254
253
  gutter: string | number;
255
254
  onClick: (e: any, type: EventType$1) => void;
256
255
  }
257
- declare const Col: FunctionComponent<Partial<ColProps> & Omit<React__default.HTMLAttributes<HTMLDivElement>, 'onClick'>>;
256
+ declare const Col: FunctionComponent<Partial<ColProps> & Omit<React$1.HTMLAttributes<HTMLDivElement>, 'onClick'>>;
258
257
 
259
258
  declare type EventType = 'row' | 'col';
260
259
  interface RowProps {
@@ -265,7 +264,7 @@ interface RowProps {
265
264
  gutter: string | number;
266
265
  onClick: (e: any, type: EventType) => void;
267
266
  }
268
- declare const Row: FunctionComponent<Partial<RowProps> & Omit<React__default.HTMLAttributes<HTMLDivElement>, 'onClick'>>;
267
+ declare const Row: FunctionComponent<Partial<RowProps> & Omit<React$1.HTMLAttributes<HTMLDivElement>, 'onClick'>>;
269
268
 
270
269
  declare type ContentPositionType = 'left' | 'center' | 'right';
271
270
  declare type DirectionType = 'horizontal' | 'vertical';
@@ -273,11 +272,11 @@ interface DividerProps {
273
272
  contentPosition: ContentPositionType;
274
273
  dashed: boolean;
275
274
  hairline: boolean;
276
- styles?: React__default.CSSProperties;
275
+ styles?: React$1.CSSProperties;
277
276
  className?: string;
278
277
  direction?: DirectionType;
279
278
  }
280
- declare const Divider: FunctionComponent<Partial<DividerProps> & React__default.HTMLAttributes<HTMLDivElement>>;
279
+ declare const Divider: FunctionComponent<Partial<DividerProps> & React$1.HTMLAttributes<HTMLDivElement>>;
281
280
 
282
281
  declare type GridDirection$1 = 'horizontal' | 'vertical';
283
282
  interface GridProps {
@@ -293,7 +292,7 @@ interface GridProps {
293
292
  iconColor?: string;
294
293
  style?: CSSProperties;
295
294
  }
296
- declare const Grid: FunctionComponent<Partial<GridProps> & React__default.HTMLAttributes<HTMLDivElement>>;
295
+ declare const Grid: FunctionComponent<Partial<GridProps> & React$1.HTMLAttributes<HTMLDivElement>>;
297
296
 
298
297
  declare type GridDirection = 'horizontal' | 'vertical';
299
298
  interface GridItemProps extends IComponent {
@@ -312,11 +311,11 @@ interface GridItemProps extends IComponent {
312
311
  reverse: boolean;
313
312
  direction: GridDirection;
314
313
  }
315
- declare const GridItem: FunctionComponent<Partial<GridItemProps> & React__default.HTMLAttributes<HTMLDivElement>>;
314
+ declare const GridItem: FunctionComponent<Partial<GridItemProps> & React$1.HTMLAttributes<HTMLDivElement>>;
316
315
 
317
316
  interface StickyProps {
318
317
  }
319
- declare const Sticky: FunctionComponent<Partial<StickyProps> & React__default.HTMLAttributes<HTMLDivElement>>;
318
+ declare const Sticky: FunctionComponent<Partial<StickyProps> & React$1.HTMLAttributes<HTMLDivElement>>;
320
319
 
321
320
  interface NavBarProps$1 extends IComponent {
322
321
  leftShow: boolean;
@@ -330,12 +329,12 @@ interface NavBarProps$1 extends IComponent {
330
329
  border: boolean;
331
330
  placeholder: boolean;
332
331
  zIndex: number | string;
333
- style: React__default.CSSProperties;
334
- onClickTitle: (e: React__default.MouseEvent<HTMLDivElement>) => void;
335
- onClickIcon: (e: React__default.MouseEvent<HTMLDivElement>) => void;
336
- onClickBack: (e: React__default.MouseEvent<HTMLElement>) => void;
337
- onClickRight: (e: React__default.MouseEvent<HTMLDivElement>) => void;
338
- children?: React__default.ReactNode;
332
+ style: React$1.CSSProperties;
333
+ onClickTitle: (e: React$1.MouseEvent<HTMLDivElement>) => void;
334
+ onClickIcon: (e: React$1.MouseEvent<HTMLDivElement>) => void;
335
+ onClickBack: (e: React$1.MouseEvent<HTMLElement>) => void;
336
+ onClickRight: (e: React$1.MouseEvent<HTMLDivElement>) => void;
337
+ children?: React$1.ReactNode;
339
338
  }
340
339
  declare const NavBar: FunctionComponent<Partial<NavBarProps$1>>;
341
340
 
@@ -355,10 +354,10 @@ interface FixedNavProps extends IComponent {
355
354
  type: Direction$1;
356
355
  onChange: (v: any) => void;
357
356
  onSelected: (item: any, e: any) => void;
358
- slotList: React__default.ReactNode;
359
- slotBtn: React__default.ReactNode;
357
+ slotList: React$1.ReactNode;
358
+ slotBtn: React$1.ReactNode;
360
359
  }
361
- declare const FixedNav: FunctionComponent<Partial<FixedNavProps> & React__default.HTMLAttributes<HTMLDivElement>>;
360
+ declare const FixedNav: FunctionComponent<Partial<FixedNavProps> & React$1.HTMLAttributes<HTMLDivElement>>;
362
361
 
363
362
  interface TabbarProps {
364
363
  visible: number | string;
@@ -368,9 +367,9 @@ interface TabbarProps {
368
367
  activeColor: string;
369
368
  safeAreaInsetBottom: boolean;
370
369
  className: string;
371
- style: React__default.CSSProperties;
372
- tabSwitch: (child: React__default.ReactElement<any>, active: number) => void;
373
- children?: React__default.ReactNode;
370
+ style: React$1.CSSProperties;
371
+ tabSwitch: (child: React$1.ReactElement<any>, active: number) => void;
372
+ children?: React$1.ReactNode;
374
373
  }
375
374
  declare const Tabbar: FunctionComponent<Partial<TabbarProps>>;
376
375
 
@@ -399,8 +398,8 @@ interface ElevatorProps {
399
398
  spaceHeight: number;
400
399
  titleHeight: number;
401
400
  className: string;
402
- style: React__default.CSSProperties;
403
- children: React__default.ReactNode;
401
+ style: React$1.CSSProperties;
402
+ children: React$1.ReactNode;
404
403
  onClickItem: (key: string, item: ElevatorData) => void;
405
404
  onClickIndex: (key: string) => void;
406
405
  }
@@ -409,26 +408,26 @@ interface ElevatorData {
409
408
  id: number | string;
410
409
  [key: string]: string | number;
411
410
  }
412
- declare const Elevator: FunctionComponent<Partial<ElevatorProps> & React__default.HTMLAttributes<HTMLDivElement>>;
411
+ declare const Elevator: FunctionComponent<Partial<ElevatorProps> & React$1.HTMLAttributes<HTMLDivElement>>;
413
412
 
414
413
  interface PaginationProps {
415
414
  defaultValue: number;
416
415
  modelValue: number;
417
416
  mode: 'multi' | 'simple';
418
- prevText?: React__default.ReactNode;
419
- nextText?: React__default.ReactNode;
417
+ prevText?: React$1.ReactNode;
418
+ nextText?: React$1.ReactNode;
420
419
  pageCount: string | number;
421
420
  totalItems: string | number;
422
421
  itemsPerPage: string | number;
423
422
  showPageSize: string | number;
424
423
  forceEllipses: boolean;
425
- pageNodeRender: (page: any) => React__default.ReactNode;
424
+ pageNodeRender: (page: any) => React$1.ReactNode;
426
425
  onChange: (currPage: number) => void;
427
426
  updatecurrent: (currPage: number) => void;
428
- style?: React__default.CSSProperties;
427
+ style?: React$1.CSSProperties;
429
428
  className?: string;
430
429
  }
431
- declare const Pagination: FunctionComponent<Partial<PaginationProps> & Omit<React__default.HTMLAttributes<HTMLDivElement>, 'onChange'>>;
430
+ declare const Pagination: FunctionComponent<Partial<PaginationProps> & Omit<React$1.HTMLAttributes<HTMLDivElement>, 'onChange'>>;
432
431
 
433
432
  declare class Title {
434
433
  title: string;
@@ -440,7 +439,7 @@ declare class Title {
440
439
  declare type TabsSize = 'large' | 'normal' | 'small';
441
440
  interface TabsProps extends IComponent {
442
441
  className: string;
443
- style: React__default.CSSProperties;
442
+ style: React$1.CSSProperties;
444
443
  value: string | number;
445
444
  color: string;
446
445
  background: string;
@@ -455,7 +454,7 @@ interface TabsProps extends IComponent {
455
454
  onChange: (t: Title) => void;
456
455
  onClick: (t: Title) => void;
457
456
  autoHeight: boolean;
458
- children?: React__default.ReactNode;
457
+ children?: React$1.ReactNode;
459
458
  }
460
459
  declare const Tabs: FunctionComponent<Partial<TabsProps>>;
461
460
 
@@ -465,7 +464,7 @@ interface TabPaneProps {
465
464
  activeKey: string | number;
466
465
  disabled: boolean;
467
466
  autoHeightClassName: string;
468
- children?: React__default.ReactNode;
467
+ children?: React$1.ReactNode;
469
468
  }
470
469
  declare const TabPane: FunctionComponent<Partial<TabPaneProps>>;
471
470
 
@@ -477,19 +476,19 @@ interface IndicatorProps {
477
476
  fillZero: boolean;
478
477
  vertical: boolean;
479
478
  }
480
- declare const Indicator: FunctionComponent<Partial<IndicatorProps> & React__default.HTMLAttributes<HTMLDivElement>>;
479
+ declare const Indicator: FunctionComponent<Partial<IndicatorProps> & React$1.HTMLAttributes<HTMLDivElement>>;
481
480
 
482
481
  declare type NavBarProps = {
483
482
  showhead?: boolean;
484
483
  };
485
- interface SideNavBarProps extends React__default.HTMLAttributes<HTMLDivElement>, NavBarProps {
484
+ interface SideNavBarProps extends React$1.HTMLAttributes<HTMLDivElement>, NavBarProps {
486
485
  title: string;
487
486
  visible: boolean;
488
487
  width?: string;
489
488
  offset?: number;
490
489
  position?: 'left' | 'right';
491
490
  handleClose: () => void;
492
- children?: React__default.ReactNode;
491
+ children?: React$1.ReactNode;
493
492
  }
494
493
  declare const SideNavBar: FunctionComponent<SideNavBarProps>;
495
494
 
@@ -497,7 +496,7 @@ declare type SubSideNavBarProps = {
497
496
  title: string;
498
497
  ikey: string | number;
499
498
  open?: boolean;
500
- children?: React__default.ReactNode;
499
+ children?: React$1.ReactNode;
501
500
  titleClick?: ({ title, ikey, isShow, }: {
502
501
  title: string;
503
502
  ikey: string | number;
@@ -513,19 +512,19 @@ declare type SideNavBarItemProps = {
513
512
  title: string;
514
513
  ikey: string | number;
515
514
  }) => void;
516
- children?: React__default.ReactNode;
515
+ children?: React$1.ReactNode;
517
516
  };
518
517
  declare const SideNavBarItem: FunctionComponent<SideNavBarItemProps>;
519
518
 
520
519
  interface MenuProps extends IComponent {
521
520
  className: string;
522
- style: React__default.CSSProperties;
521
+ style: React$1.CSSProperties;
523
522
  activeColor: string;
524
523
  closeOnClickOverlay: boolean;
525
524
  scrollFixed: boolean | string | number;
526
525
  lockScroll: boolean;
527
526
  titleIcon: string;
528
- children: React__default.ReactNode;
527
+ children: React$1.ReactNode;
529
528
  }
530
529
  declare const Menu: FunctionComponent<Partial<MenuProps>>;
531
530
 
@@ -535,8 +534,8 @@ interface OptionItem {
535
534
  }
536
535
  interface MenuItemProps extends IComponent {
537
536
  className: string;
538
- style: React__default.CSSProperties;
539
- title: React__default.ReactNode;
537
+ style: React$1.CSSProperties;
538
+ title: React$1.ReactNode;
540
539
  options: OptionItem[];
541
540
  disabled: boolean;
542
541
  columns: number;
@@ -548,7 +547,7 @@ interface MenuItemProps extends IComponent {
548
547
  iconClassPrefix: string;
549
548
  value: string | number;
550
549
  onChange: (event: any) => void;
551
- children: React__default.ReactNode;
550
+ children: React$1.ReactNode;
552
551
  }
553
552
  declare const MenuItem: FunctionComponent<Partial<MenuItemProps>>;
554
553
 
@@ -567,14 +566,14 @@ interface RangeProps {
567
566
  max: number | string;
568
567
  step: number | string;
569
568
  modelValue: SliderValue;
570
- button: React__default.ReactNode;
569
+ button: React$1.ReactNode;
571
570
  vertical: boolean;
572
571
  marks: Record<string, unknown>;
573
572
  change?: (value: number) => void;
574
573
  dragStart?: () => void;
575
574
  dragEnd?: () => void;
576
575
  }
577
- declare const Range: FunctionComponent<Partial<RangeProps> & Omit<React__default.HTMLAttributes<HTMLDivElement>, 'onClick'>>;
576
+ declare const Range: FunctionComponent<Partial<RangeProps> & Omit<React$1.HTMLAttributes<HTMLDivElement>, 'onClick'>>;
578
577
 
579
578
  interface CalendarProps {
580
579
  type?: string;
@@ -588,7 +587,7 @@ interface CalendarProps {
588
587
  onClose?: () => void;
589
588
  onChoose?: (param: string) => void;
590
589
  }
591
- declare const Calendar: FunctionComponent<Partial<CalendarProps> & React__default.HTMLAttributes<HTMLDivElement>>;
590
+ declare const Calendar: FunctionComponent<Partial<CalendarProps> & React$1.HTMLAttributes<HTMLDivElement>>;
592
591
 
593
592
  interface CheckboxGroupProps {
594
593
  disabled: boolean;
@@ -596,7 +595,7 @@ interface CheckboxGroupProps {
596
595
  max: number | undefined;
597
596
  onChange: (value: string[]) => void;
598
597
  }
599
- declare const CheckboxGroup: React__default.ForwardRefExoticComponent<Partial<CheckboxGroupProps> & Omit<React__default.HTMLAttributes<HTMLDivElement>, "onChange"> & React__default.RefAttributes<unknown>>;
598
+ declare const CheckboxGroup: React$1.ForwardRefExoticComponent<Partial<CheckboxGroupProps> & Omit<React$1.HTMLAttributes<HTMLDivElement>, "onChange"> & React$1.RefAttributes<unknown>>;
600
599
 
601
600
  interface CheckboxProps extends IComponent {
602
601
  checked: boolean;
@@ -612,7 +611,7 @@ interface CheckboxProps extends IComponent {
612
611
  label: string;
613
612
  onChange: (state: boolean, label: string) => void;
614
613
  }
615
- declare const Checkbox: FunctionComponent<Partial<CheckboxProps> & Omit<React__default.HTMLAttributes<HTMLDivElement>, 'onChange'>> & {
614
+ declare const Checkbox: FunctionComponent<Partial<CheckboxProps> & Omit<React$1.HTMLAttributes<HTMLDivElement>, 'onChange'>> & {
616
615
  Group: typeof CheckboxGroup;
617
616
  };
618
617
 
@@ -634,14 +633,14 @@ interface DatePickerProps {
634
633
  maxDate: Date;
635
634
  threeDimensional: boolean;
636
635
  className?: string;
637
- style?: React__default.CSSProperties;
636
+ style?: React$1.CSSProperties;
638
637
  formatter: (type: string, option: PickerOption$1) => PickerOption$1;
639
638
  filter: (type: string, option: PickerOption$1[]) => PickerOption$1[];
640
639
  onCloseDatePicker: () => void;
641
640
  onConfirmDatePicker: (values: (string | number)[], options: PickerOption$1[]) => void;
642
641
  onChangeDatePicker: (columnIndex: string | number, values: (string | number)[], options: PickerOption$1[]) => void;
643
642
  }
644
- declare const DatePicker: FunctionComponent<Partial<DatePickerProps> & React__default.HTMLAttributes<HTMLDivElement>>;
643
+ declare const DatePicker: FunctionComponent<Partial<DatePickerProps> & React$1.HTMLAttributes<HTMLDivElement>>;
645
644
 
646
645
  interface InputNumberProps extends IComponent {
647
646
  disabled: boolean;
@@ -655,7 +654,7 @@ interface InputNumberProps extends IComponent {
655
654
  decimalPlaces: string | number;
656
655
  isAsync: boolean;
657
656
  className: string;
658
- style: React__default.CSSProperties;
657
+ style: React$1.CSSProperties;
659
658
  add: (e: MouseEvent) => void;
660
659
  reduce: (e: MouseEvent) => void;
661
660
  overlimit: (e: MouseEvent) => void;
@@ -663,7 +662,7 @@ interface InputNumberProps extends IComponent {
663
662
  focus: (e: FocusEvent<HTMLInputElement>) => void;
664
663
  change: (param: string | number, e: MouseEvent | ChangeEvent<HTMLInputElement>) => void;
665
664
  }
666
- declare const InputNumber: FunctionComponent<Partial<InputNumberProps> & React__default.HTMLAttributes<HTMLDivElement>>;
665
+ declare const InputNumber: FunctionComponent<Partial<InputNumberProps> & React$1.HTMLAttributes<HTMLDivElement>>;
667
666
 
668
667
  declare type InputAlignType = 'left' | 'center' | 'right';
669
668
  declare type InputFormatTrigger = 'onChange' | 'onBlur';
@@ -706,8 +705,8 @@ interface InputProps extends IComponent {
706
705
  autofocus: boolean;
707
706
  style?: CSSProperties;
708
707
  className?: string;
709
- slotButton?: React__default.ReactNode;
710
- slotInput?: React__default.ReactNode;
708
+ slotButton?: React$1.ReactNode;
709
+ slotInput?: React$1.ReactNode;
711
710
  formatter: (value: string) => void;
712
711
  change?: (value: any, event: Event) => void;
713
712
  blur?: (value: any, event: Event) => void;
@@ -719,7 +718,7 @@ interface InputProps extends IComponent {
719
718
  clickRightIcon?: (value: any) => void;
720
719
  click?: (value: any) => void;
721
720
  }
722
- declare const Input: FunctionComponent<Partial<InputProps> & React__default.HTMLAttributes<HTMLDivElement>>;
721
+ declare const Input: FunctionComponent<Partial<InputProps> & React$1.HTMLAttributes<HTMLDivElement>>;
723
722
 
724
723
  declare type Position$1 = 'left' | 'right';
725
724
  declare type Direction = 'horizontal' | 'vertical';
@@ -729,13 +728,13 @@ interface RadioGroupProps {
729
728
  direction: Direction;
730
729
  onChange: (value: string | number | boolean) => void;
731
730
  }
732
- declare const RadioGroup: React__default.ForwardRefExoticComponent<Partial<RadioGroupProps> & Omit<React__default.HTMLAttributes<HTMLDivElement>, "onChange"> & React__default.RefAttributes<unknown>>;
731
+ declare const RadioGroup: React$1.ForwardRefExoticComponent<Partial<RadioGroupProps> & Omit<React$1.HTMLAttributes<HTMLDivElement>, "onChange"> & React$1.RefAttributes<unknown>>;
733
732
 
734
733
  declare type Shape = 'button' | 'round';
735
734
  declare type Position = 'right' | 'left';
736
735
  interface RadioProps extends IComponent {
737
736
  className: string;
738
- style: React__default.CSSProperties;
737
+ style: React$1.CSSProperties;
739
738
  disabled: boolean;
740
739
  checked: boolean;
741
740
  shape: Shape;
@@ -746,7 +745,7 @@ interface RadioProps extends IComponent {
746
745
  iconSize: string | number;
747
746
  onChange: MouseEventHandler<HTMLDivElement>;
748
747
  }
749
- declare const Radio: FunctionComponent<Partial<RadioProps> & React__default.HTMLAttributes<HTMLDivElement>> & {
748
+ declare const Radio: FunctionComponent<Partial<RadioProps> & React$1.HTMLAttributes<HTMLDivElement>> & {
750
749
  RadioGroup: typeof RadioGroup;
751
750
  };
752
751
 
@@ -781,7 +780,7 @@ interface CalendarItemProps {
781
780
  onUpdate?: () => void;
782
781
  onClose?: () => void;
783
782
  }
784
- declare const CalendarItem: FunctionComponent<Partial<CalendarItemProps> & React__default.HTMLAttributes<HTMLDivElement>>;
783
+ declare const CalendarItem: FunctionComponent<Partial<CalendarItemProps> & React$1.HTMLAttributes<HTMLDivElement>>;
785
784
 
786
785
  interface PickerOption {
787
786
  text: string | number;
@@ -796,7 +795,7 @@ interface PickerProps {
796
795
  listData: (PickerOption | PickerOption[])[];
797
796
  defaultValueData?: (number | string)[];
798
797
  className?: '';
799
- style?: React__default.CSSProperties;
798
+ style?: React$1.CSSProperties;
800
799
  threeDimensional?: boolean;
801
800
  swipeDuration: number | string;
802
801
  onConfirm?: (selectedValue: (string | number)[], selectedOptions: PickerOption[]) => void;
@@ -804,7 +803,7 @@ interface PickerProps {
804
803
  onCloseUpdate?: (selectedValue: (string | number)[], list: PickerOption[], pickerRef: RefObject<HTMLDivElement>) => void;
805
804
  onChange?: (index: number, value: (string | number)[], selectedOptions: PickerOption[]) => void;
806
805
  }
807
- declare const Picker: React__default.ForwardRefExoticComponent<Partial<PickerProps> & React__default.RefAttributes<unknown>>;
806
+ declare const Picker: React$1.ForwardRefExoticComponent<Partial<PickerProps> & React$1.RefAttributes<unknown>>;
808
807
 
809
808
  interface ShortPasswordProps extends IComponent {
810
809
  title: string;
@@ -825,7 +824,7 @@ interface ShortPasswordProps extends IComponent {
825
824
  onTips: () => void;
826
825
  onComplete: (value: string | number) => void;
827
826
  }
828
- declare const ShortPassword: FunctionComponent<Partial<ShortPasswordProps> & Omit<React__default.HTMLAttributes<HTMLDivElement>, 'onChange'>>;
827
+ declare const ShortPassword: FunctionComponent<Partial<ShortPasswordProps> & Omit<React$1.HTMLAttributes<HTMLDivElement>, 'onChange'>>;
829
828
 
830
829
  interface TextAreaProps {
831
830
  className?: string;
@@ -843,7 +842,7 @@ interface TextAreaProps {
843
842
  onBlur?: (event: Event) => void;
844
843
  onFocus?: (event: Event) => void;
845
844
  }
846
- declare const TextArea: FunctionComponent<Partial<TextAreaProps> & Omit<React__default.HTMLAttributes<HTMLDivElement>, 'onChange' | 'onBlur' | 'onFocus'>>;
845
+ declare const TextArea: FunctionComponent<Partial<TextAreaProps> & Omit<React$1.HTMLAttributes<HTMLDivElement>, 'onChange' | 'onBlur' | 'onFocus'>>;
847
846
 
848
847
  declare class UploadOptions {
849
848
  url: string;
@@ -909,7 +908,7 @@ interface UploaderProps extends IComponent {
909
908
  isDeletable: boolean;
910
909
  className: string;
911
910
  defaultImg: string;
912
- style: React__default.CSSProperties;
911
+ style: React$1.CSSProperties;
913
912
  onStart?: (option: UploadOptions) => void;
914
913
  onRemove?: (file: FileItem, fileList: FileType<string>[]) => void;
915
914
  onSuccess?: (param: {
@@ -946,9 +945,9 @@ declare class FileItem {
946
945
  percentage: string | number;
947
946
  formData: any;
948
947
  }
949
- declare const Uploader: React__default.ForwardRefExoticComponent<Partial<UploaderProps> & {
950
- children?: React__default.ReactNode;
951
- } & React__default.RefAttributes<unknown>>;
948
+ declare const Uploader: React$1.ForwardRefExoticComponent<Partial<UploaderProps> & {
949
+ children?: React$1.ReactNode;
950
+ } & React$1.RefAttributes<unknown>>;
952
951
 
953
952
  interface CascaderOption {
954
953
  text?: string;
@@ -965,6 +964,7 @@ interface CascaderOption {
965
964
  interface CascaderProps {
966
965
  className: string;
967
966
  style: CSSProperties;
967
+ poppable: boolean;
968
968
  visible: boolean;
969
969
  options: CascaderOption[];
970
970
  value: string[];
@@ -982,9 +982,9 @@ interface CascaderProps {
982
982
  onChange: (value: any, params: any) => void;
983
983
  onPathChange: (value: any, params: any) => void;
984
984
  }
985
- declare const Cascader: React__default.ForwardRefExoticComponent<Partial<CascaderProps> & {
986
- children?: React__default.ReactNode;
987
- } & React__default.RefAttributes<unknown>>;
985
+ declare const Cascader: React$1.ForwardRefExoticComponent<Partial<CascaderProps> & {
986
+ children?: React$1.ReactNode;
987
+ } & React$1.RefAttributes<unknown>>;
988
988
 
989
989
  interface SearchBarProps extends IComponent {
990
990
  /** 文本值 */
@@ -1012,17 +1012,17 @@ interface SearchBarProps extends IComponent {
1012
1012
  /** 是否自动聚焦,iOS 系统不支持该属性 */
1013
1013
  autoFocus?: boolean;
1014
1014
  /** 搜索框左侧文本 */
1015
- label?: React__default.ReactNode;
1015
+ label?: React$1.ReactNode;
1016
1016
  /** 输入框内 左icon */
1017
- leftinIcon?: React__default.ReactNode;
1017
+ leftinIcon?: React$1.ReactNode;
1018
1018
  /** 输入框内 右icon */
1019
- rightinIcon?: React__default.ReactNode;
1019
+ rightinIcon?: React$1.ReactNode;
1020
1020
  /** 输入框外 左icon */
1021
- leftoutIcon?: React__default.ReactNode;
1021
+ leftoutIcon?: React$1.ReactNode;
1022
1022
  /** 输入框外 右icon */
1023
- rightoutIcon?: React__default.ReactNode;
1023
+ rightoutIcon?: React$1.ReactNode;
1024
1024
  /** 取消按钮文字 */
1025
- actionText?: React__default.ReactNode;
1025
+ actionText?: React$1.ReactNode;
1026
1026
  /** 确定搜索时触发 */
1027
1027
  onSearch?: (val: string) => void;
1028
1028
  /** 输入框内容变化时触发 */
@@ -1044,7 +1044,7 @@ interface SearchBarProps extends IComponent {
1044
1044
  /** 点击输入框外右侧图标时触发 */
1045
1045
  onClickRightoutIcon?: (value: string, event: Event) => void;
1046
1046
  }
1047
- declare const SearchBar: FunctionComponent<Partial<SearchBarProps> & Omit<React__default.HTMLAttributes<HTMLDivElement>, 'onChange' | 'onFocus' | 'onBlur'>>;
1047
+ declare const SearchBar: FunctionComponent<Partial<SearchBarProps> & Omit<React$1.HTMLAttributes<HTMLDivElement>, 'onChange' | 'onFocus' | 'onBlur'>>;
1048
1048
 
1049
1049
  interface NumberKeyboardProps {
1050
1050
  confirmText: string;
@@ -1060,7 +1060,7 @@ interface NumberKeyboardProps {
1060
1060
  onDelete?: () => void;
1061
1061
  onClose: () => void;
1062
1062
  }
1063
- declare const NumberKeyboard: FunctionComponent<Partial<NumberKeyboardProps> & Omit<React__default.HTMLAttributes<HTMLDivElement>, 'onChange'>>;
1063
+ declare const NumberKeyboard: FunctionComponent<Partial<NumberKeyboardProps> & Omit<React$1.HTMLAttributes<HTMLDivElement>, 'onChange'>>;
1064
1064
 
1065
1065
  declare type ItemType<T> = {
1066
1066
  [key: string]: T;
@@ -1078,9 +1078,9 @@ interface ActionSheetProps {
1078
1078
  onChoose: (item: any, index: number) => void;
1079
1079
  visible: boolean;
1080
1080
  className: string;
1081
- style: React__default.CSSProperties;
1081
+ style: React$1.CSSProperties;
1082
1082
  }
1083
- declare const ActionSheet: FunctionComponent<Partial<ActionSheetProps> & React__default.HTMLAttributes<HTMLDivElement>>;
1083
+ declare const ActionSheet: FunctionComponent<Partial<ActionSheetProps> & React$1.HTMLAttributes<HTMLDivElement>>;
1084
1084
 
1085
1085
  interface BackTopProps extends IComponent {
1086
1086
  className?: string;
@@ -1092,10 +1092,10 @@ interface BackTopProps extends IComponent {
1092
1092
  isAnimation: boolean;
1093
1093
  duration: number;
1094
1094
  children?: HTMLElement | any;
1095
- style?: React__default.CSSProperties;
1095
+ style?: React$1.CSSProperties;
1096
1096
  onClick?: (event: MouseEvent) => void;
1097
1097
  }
1098
- declare const BackTop: FunctionComponent<Partial<BackTopProps> & Omit<React__default.HTMLAttributes<HTMLDivElement>, 'onClick'>>;
1098
+ declare const BackTop: FunctionComponent<Partial<BackTopProps> & Omit<React$1.HTMLAttributes<HTMLDivElement>, 'onClick'>>;
1099
1099
 
1100
1100
  interface DragProps {
1101
1101
  attract: boolean;
@@ -1107,9 +1107,9 @@ interface DragProps {
1107
1107
  bottom: number;
1108
1108
  };
1109
1109
  className: string;
1110
- style: React__default.CSSProperties;
1110
+ style: React$1.CSSProperties;
1111
1111
  }
1112
- declare const Drag: FunctionComponent<Partial<DragProps> & React__default.HTMLAttributes<HTMLDivElement>>;
1112
+ declare const Drag: FunctionComponent<Partial<DragProps> & React$1.HTMLAttributes<HTMLDivElement>>;
1113
1113
 
1114
1114
  declare type DialogConfigType = {
1115
1115
  prefixCls?: string;
@@ -1171,34 +1171,29 @@ interface InfiniteloadingProps extends IComponent {
1171
1171
  loadTxt: string;
1172
1172
  loadMoreTxt: string;
1173
1173
  className: string;
1174
- style: React__default.CSSProperties;
1174
+ style: React$1.CSSProperties;
1175
1175
  onRefresh: (param: () => void) => void;
1176
1176
  onLoadMore: (param: () => void) => void;
1177
1177
  onScrollChange: (param: number) => void;
1178
1178
  }
1179
- declare const Infiniteloading: FunctionComponent<Partial<InfiniteloadingProps> & React__default.HTMLAttributes<HTMLDivElement>>;
1179
+ declare const Infiniteloading: FunctionComponent<Partial<InfiniteloadingProps> & React$1.HTMLAttributes<HTMLDivElement>>;
1180
1180
 
1181
1181
  interface NotifyProps {
1182
- id: string;
1183
- color?: string;
1182
+ id?: string;
1183
+ style?: React$1.CSSProperties;
1184
1184
  msg: string;
1185
+ color: string;
1185
1186
  duration: number;
1186
- className?: string;
1187
- background?: string;
1188
1187
  type: string;
1188
+ className: string;
1189
+ background: string;
1189
1190
  position: string;
1190
1191
  isWrapTeleport: boolean;
1191
- onClick: () => void;
1192
+ visible: boolean;
1192
1193
  onClosed: () => void;
1194
+ onClick: () => void;
1193
1195
  }
1194
- declare const _default: {
1195
- text(msg: string | React$1.ReactNode, option?: {}): void;
1196
- success(msg: string | React$1.ReactNode, option?: {}): void;
1197
- primary(msg: string | React$1.ReactNode, option?: {}): void;
1198
- danger(msg: string | React$1.ReactNode, option?: {}): void;
1199
- warn(msg: string | React$1.ReactNode, option?: {}): void;
1200
- hide(): void;
1201
- };
1196
+ declare const Notify: FunctionComponent<Partial<NotifyProps> & React$1.HTMLAttributes<HTMLDivElement>>;
1202
1197
 
1203
1198
  interface SwitchProps {
1204
1199
  isAsync: boolean;
@@ -1209,17 +1204,17 @@ interface SwitchProps {
1209
1204
  activeText: string;
1210
1205
  inactiveText: string;
1211
1206
  className: string;
1212
- style: React__default.CSSProperties;
1213
- change: (val: boolean, event: React__default.MouseEvent) => void;
1207
+ style: React$1.CSSProperties;
1208
+ change: (val: boolean, event: React$1.MouseEvent) => void;
1214
1209
  }
1215
1210
  declare const Switch: FunctionComponent<Partial<SwitchProps>>;
1216
1211
 
1217
1212
  interface ToastProps {
1218
1213
  id?: string;
1219
- style?: React__default.CSSProperties;
1214
+ style?: React$1.CSSProperties;
1220
1215
  icon: string | null;
1221
1216
  iconSize: string;
1222
- msg: string | React__default.ReactNode;
1217
+ msg: string | React$1.ReactNode;
1223
1218
  bottom: number | string;
1224
1219
  duration: number;
1225
1220
  center: boolean;
@@ -1235,7 +1230,7 @@ interface ToastProps {
1235
1230
  visible: boolean;
1236
1231
  onClose: () => void;
1237
1232
  }
1238
- declare const Toast: FunctionComponent<Partial<ToastProps> & React__default.HTMLAttributes<HTMLDivElement>>;
1233
+ declare const Toast: FunctionComponent<Partial<ToastProps> & React$1.HTMLAttributes<HTMLDivElement>>;
1239
1234
 
1240
1235
  declare type SwipeSide = 'left' | 'right';
1241
1236
  declare type SwipePosition = SwipeSide | 'cell' | 'outside';
@@ -1247,7 +1242,7 @@ interface SwipeProps {
1247
1242
  /** 自定义类名 */
1248
1243
  className: string;
1249
1244
  /** 自定义样式 */
1250
- style: React__default.CSSProperties;
1245
+ style: React$1.CSSProperties;
1251
1246
  /** 标识符,可以在事件参数中获取到 */
1252
1247
  name?: string | number;
1253
1248
  /** 指定左侧滑动区域宽度,单位为px */
@@ -1255,9 +1250,9 @@ interface SwipeProps {
1255
1250
  /** 指定右侧滑动区域宽度,单位为 px */
1256
1251
  rightWidth?: string | number;
1257
1252
  /** 左侧滑动区域的内容 */
1258
- leftAction?: React__default.ReactNode;
1253
+ leftAction?: React$1.ReactNode;
1259
1254
  /** 右侧滑动区域的内容 */
1260
- rightAction?: React__default.ReactNode;
1255
+ rightAction?: React$1.ReactNode;
1261
1256
  /** 关闭前的回调函数,返回 false 可阻止关闭,支持返回 Promise */
1262
1257
  beforeClose?: (position: string) => void;
1263
1258
  /** 是否禁用 */
@@ -1274,14 +1269,14 @@ interface SwipeProps {
1274
1269
  }) => void;
1275
1270
  /** 点击时触发 */
1276
1271
  onActionClick?: (event: Event, position: SwipePosition) => void;
1277
- children?: React__default.ReactNode;
1272
+ children?: React$1.ReactNode;
1278
1273
  }
1279
- declare const Swipe: React__default.ForwardRefExoticComponent<Partial<SwipeProps> & React__default.HTMLAttributes<HTMLDivElement> & React__default.RefAttributes<SwipeInstance>>;
1274
+ declare const Swipe: React$1.ForwardRefExoticComponent<Partial<SwipeProps> & React$1.HTMLAttributes<HTMLDivElement> & React$1.RefAttributes<SwipeInstance>>;
1280
1275
 
1281
1276
  declare type PullStatus = 'pulling' | 'canRelease' | 'refreshing' | 'complete';
1282
1277
  interface PullToRefreshProps {
1283
1278
  className: string;
1284
- style: React__default.CSSProperties;
1279
+ style: React$1.CSSProperties;
1285
1280
  onRefresh: () => Promise<any>;
1286
1281
  pullingText: ReactNode;
1287
1282
  canReleaseText: ReactNode;
@@ -1292,7 +1287,7 @@ interface PullToRefreshProps {
1292
1287
  threshold: number;
1293
1288
  disabled: boolean;
1294
1289
  renderText: (status: PullStatus) => ReactNode;
1295
- children: React__default.ReactNode;
1290
+ children: React$1.ReactNode;
1296
1291
  }
1297
1292
  declare const PullToRefresh: FunctionComponent<Partial<PullToRefreshProps>>;
1298
1293
 
@@ -1306,7 +1301,7 @@ interface CircleProgressProps {
1306
1301
  clockwise?: boolean;
1307
1302
  className?: string;
1308
1303
  }
1309
- declare const CircleProgress: FunctionComponent<CircleProgressProps & React__default.HTMLAttributes<HTMLDivElement>>;
1304
+ declare const CircleProgress: FunctionComponent<CircleProgressProps & React$1.HTMLAttributes<HTMLDivElement>>;
1310
1305
 
1311
1306
  interface NoticeBarProps extends IComponent {
1312
1307
  direction: string;
@@ -1329,17 +1324,17 @@ interface NoticeBarProps extends IComponent {
1329
1324
  close?: (list?: any) => void;
1330
1325
  click?: (item?: any) => void;
1331
1326
  }
1332
- declare const NoticeBar: FunctionComponent<Partial<NoticeBarProps> & React__default.HTMLAttributes<HTMLDivElement>>;
1327
+ declare const NoticeBar: FunctionComponent<Partial<NoticeBarProps> & React$1.HTMLAttributes<HTMLDivElement>>;
1333
1328
 
1334
1329
  interface StepsProps {
1335
1330
  current: number;
1336
1331
  direction: string;
1337
1332
  progressDot: boolean;
1338
1333
  className: string;
1339
- style: React__default.CSSProperties;
1334
+ style: React$1.CSSProperties;
1340
1335
  clickStep: (index: number) => void;
1341
1336
  }
1342
- declare const Steps: FunctionComponent<Partial<StepsProps> & React__default.HTMLAttributes<HTMLDivElement>>;
1337
+ declare const Steps: FunctionComponent<Partial<StepsProps> & React$1.HTMLAttributes<HTMLDivElement>>;
1343
1338
 
1344
1339
  interface StepProps extends IComponent {
1345
1340
  title: string;
@@ -1349,10 +1344,10 @@ interface StepProps extends IComponent {
1349
1344
  iconColor: string;
1350
1345
  size: string;
1351
1346
  className: string;
1352
- style: React__default.CSSProperties;
1353
- renderContent: () => React__default.ReactNode;
1347
+ style: React$1.CSSProperties;
1348
+ renderContent: () => React$1.ReactNode;
1354
1349
  }
1355
- declare const Step: FunctionComponent<Partial<StepProps> & React__default.HTMLAttributes<HTMLDivElement>>;
1350
+ declare const Step: FunctionComponent<Partial<StepProps> & React$1.HTMLAttributes<HTMLDivElement>>;
1356
1351
 
1357
1352
  declare type SwiperRef = {
1358
1353
  to: (index: number) => void;
@@ -1374,17 +1369,17 @@ interface SwiperProps {
1374
1369
  isStopPropagation: boolean;
1375
1370
  isCenter: boolean;
1376
1371
  className?: string;
1377
- style?: React__default.CSSProperties;
1378
- pageContent?: React__default.ReactNode;
1372
+ style?: React$1.CSSProperties;
1373
+ pageContent?: React$1.ReactNode;
1379
1374
  onChange?: (currPage: number) => void;
1380
1375
  }
1381
- declare const Swiper: React__default.ForwardRefExoticComponent<Partial<SwiperProps> & Omit<React__default.HTMLAttributes<HTMLDivElement>, "onChange"> & React__default.RefAttributes<SwiperRef>>;
1376
+ declare const Swiper: React$1.ForwardRefExoticComponent<Partial<SwiperProps> & Omit<React$1.HTMLAttributes<HTMLDivElement>, "onChange"> & React$1.RefAttributes<SwiperRef>>;
1382
1377
 
1383
1378
  interface SwiperItemProps {
1384
1379
  direction?: string;
1385
1380
  size?: 0;
1386
1381
  }
1387
- declare const SwiperItem: React__default.ForwardRefExoticComponent<Partial<SwiperItemProps> & React__default.HTMLAttributes<HTMLDivElement> & React__default.RefAttributes<HTMLDivElement>>;
1382
+ declare const SwiperItem: React$1.ForwardRefExoticComponent<Partial<SwiperItemProps> & React$1.HTMLAttributes<HTMLDivElement> & React$1.RefAttributes<HTMLDivElement>>;
1388
1383
 
1389
1384
  interface AvatarProps extends IComponent {
1390
1385
  size: string;
@@ -1396,12 +1391,12 @@ interface AvatarProps extends IComponent {
1396
1391
  url: string;
1397
1392
  className: string;
1398
1393
  alt: string;
1399
- style: React__default.CSSProperties;
1394
+ style: React$1.CSSProperties;
1400
1395
  activeAvatar: (e: MouseEvent) => void;
1401
1396
  onError: (e: any) => void;
1402
1397
  }
1403
1398
  declare type AvatarShape = 'round' | 'square';
1404
- declare const Avatar: FunctionComponent<Partial<AvatarProps> & React__default.HTMLAttributes<HTMLDivElement>>;
1399
+ declare const Avatar: FunctionComponent<Partial<AvatarProps> & React$1.HTMLAttributes<HTMLDivElement>>;
1405
1400
 
1406
1401
  interface AvatarGroupProps {
1407
1402
  maxContent: string;
@@ -1413,9 +1408,9 @@ interface AvatarGroupProps {
1413
1408
  span: string;
1414
1409
  zIndex: string;
1415
1410
  className: string;
1416
- style: React__default.CSSProperties;
1411
+ style: React$1.CSSProperties;
1417
1412
  }
1418
- declare const AvatarGroup: FunctionComponent<Partial<AvatarGroupProps> & React__default.HTMLAttributes<HTMLDivElement>>;
1413
+ declare const AvatarGroup: FunctionComponent<Partial<AvatarGroupProps> & React$1.HTMLAttributes<HTMLDivElement>>;
1419
1414
 
1420
1415
  interface PriceProps {
1421
1416
  price: number | string;
@@ -1424,7 +1419,7 @@ interface PriceProps {
1424
1419
  decimalDigits: number;
1425
1420
  thousands: boolean;
1426
1421
  className: string;
1427
- style: React__default.CSSProperties;
1422
+ style: React$1.CSSProperties;
1428
1423
  }
1429
1424
  declare const Price: FunctionComponent<Partial<PriceProps>>;
1430
1425
 
@@ -1452,7 +1447,7 @@ interface TagProps extends IComponent {
1452
1447
  prefixCls: string;
1453
1448
  onClick: (e: MouseEvent) => void;
1454
1449
  onClose: (e?: any) => void;
1455
- children?: React__default.ReactNode;
1450
+ children?: React$1.ReactNode;
1456
1451
  }
1457
1452
  declare type TagType = 'default' | 'primary' | 'success' | 'warning' | 'danger';
1458
1453
  declare const Tag: FunctionComponent<Partial<TagProps>>;
@@ -1472,11 +1467,11 @@ interface PopoverProps extends IComponent {
1472
1467
  offset: string | number;
1473
1468
  className: string;
1474
1469
  style?: CSSProperties;
1475
- children?: React__default.ReactNode;
1476
- onClick: (e: React__default.MouseEvent) => void;
1470
+ children?: React$1.ReactNode;
1471
+ onClick: (e: React$1.MouseEvent) => void;
1477
1472
  onChoose: (item: List, index: number) => void;
1478
1473
  }
1479
- declare const Popover: FunctionComponent<Partial<PopoverProps> & React__default.HTMLAttributes<HTMLDivElement>>;
1474
+ declare const Popover: FunctionComponent<Partial<PopoverProps> & React$1.HTMLAttributes<HTMLDivElement>>;
1480
1475
 
1481
1476
  declare type avatarShape = 'round' | 'square';
1482
1477
  interface SkeletonProps {
@@ -1487,12 +1482,12 @@ interface SkeletonProps {
1487
1482
  title: boolean;
1488
1483
  avatar: boolean;
1489
1484
  className?: string;
1490
- style?: React__default.CSSProperties;
1485
+ style?: React$1.CSSProperties;
1491
1486
  avatarSize: string;
1492
1487
  round: boolean;
1493
1488
  loading: boolean;
1494
1489
  avatarShape: avatarShape;
1495
- children?: React__default.ReactNode;
1490
+ children?: React$1.ReactNode;
1496
1491
  }
1497
1492
  declare const Skeleton: FunctionComponent<Partial<SkeletonProps>>;
1498
1493
 
@@ -1512,7 +1507,7 @@ interface CountDownProps {
1512
1507
  onUpdate: (restTime: any) => void;
1513
1508
  children: ReactNode;
1514
1509
  }
1515
- declare const CountDown: React__default.ForwardRefExoticComponent<Partial<CountDownProps> & React__default.RefAttributes<unknown>>;
1510
+ declare const CountDown: React$1.ForwardRefExoticComponent<Partial<CountDownProps> & React$1.RefAttributes<unknown>>;
1516
1511
 
1517
1512
  interface CollapseProps {
1518
1513
  activeName: Array<number | string> | number | string;
@@ -1522,7 +1517,7 @@ interface CollapseProps {
1522
1517
  iconColor: string;
1523
1518
  rotate: number;
1524
1519
  change: (isOpen: boolean, name: string) => void;
1525
- children?: React__default.ReactNode;
1520
+ children?: React$1.ReactNode;
1526
1521
  }
1527
1522
  declare const Collapse: FunctionComponent<Partial<CollapseProps>>;
1528
1523
 
@@ -1543,7 +1538,7 @@ interface CollapseItemProps$1 extends IComponent {
1543
1538
  childnull: boolean;
1544
1539
  onToggle: (isOpen: boolean, name: string) => void;
1545
1540
  }
1546
- declare const CollapseItem: FunctionComponent<Partial<CollapseItemProps$1> & React__default.HTMLAttributes<HTMLDivElement>>;
1541
+ declare const CollapseItem: FunctionComponent<Partial<CollapseItemProps$1> & React$1.HTMLAttributes<HTMLDivElement>>;
1547
1542
 
1548
1543
  interface CountUpProps {
1549
1544
  maxLen: number;
@@ -1552,7 +1547,7 @@ interface CountUpProps {
1552
1547
  easeSpeed: number;
1553
1548
  thousands: boolean;
1554
1549
  className: string;
1555
- style: React__default.CSSProperties;
1550
+ style: React$1.CSSProperties;
1556
1551
  }
1557
1552
 
1558
1553
  interface AnimatingNumbersProps {
@@ -1561,7 +1556,7 @@ declare type AnimatingNumbersStates = {};
1561
1556
  declare class AnimatingNumbers extends Component<AnimatingNumbersProps, AnimatingNumbersStates> {
1562
1557
  static defaultProps: AnimatingNumbersProps;
1563
1558
  static displayName: string;
1564
- static CountUp: React__default.FunctionComponent<Partial<CountUpProps>>;
1559
+ static CountUp: React$1.FunctionComponent<Partial<CountUpProps>>;
1565
1560
  constructor(props: AnimatingNumbersProps);
1566
1561
  render(): JSX.Element;
1567
1562
  }
@@ -1572,7 +1567,7 @@ interface EmptyProps {
1572
1567
  description: ReactNode;
1573
1568
  className: string;
1574
1569
  }
1575
- declare const Empty: FunctionComponent<Partial<EmptyProps> & React__default.HTMLAttributes<HTMLDivElement>>;
1570
+ declare const Empty: FunctionComponent<Partial<EmptyProps> & React$1.HTMLAttributes<HTMLDivElement>>;
1576
1571
 
1577
1572
  declare type Data = any;
1578
1573
  interface IVirtualListProps {
@@ -1592,17 +1587,17 @@ interface IVirtualListProps {
1592
1587
  }
1593
1588
 
1594
1589
  declare type VirtualListProps = IVirtualListProps;
1595
- declare const VirtualList: FunctionComponent<VirtualListProps & React__default.HTMLAttributes<HTMLDivElement>>;
1590
+ declare const VirtualList: FunctionComponent<VirtualListProps & React$1.HTMLAttributes<HTMLDivElement>>;
1596
1591
 
1597
1592
  interface ITableProps extends IComponent {
1598
1593
  className: string;
1599
- style: React__default.CSSProperties;
1594
+ style: React$1.CSSProperties;
1600
1595
  columns: Array<TableColumnProps>;
1601
1596
  data: Array<any>;
1602
1597
  bordered: boolean;
1603
- summary?: React__default.ReactNode;
1598
+ summary?: React$1.ReactNode;
1604
1599
  striped?: boolean;
1605
- noData?: React__default.ReactNode;
1600
+ noData?: React$1.ReactNode;
1606
1601
  onSorter?: (item: TableColumnProps, data: Array<any>) => void;
1607
1602
  }
1608
1603
  interface TableColumnProps {
@@ -1610,11 +1605,11 @@ interface TableColumnProps {
1610
1605
  title?: string;
1611
1606
  align?: string;
1612
1607
  sorter?: ((a: any, b: any) => number) | boolean | string;
1613
- render?: (rowData?: any, rowIndex?: number) => string | React__default.ReactNode;
1608
+ render?: (rowData?: any, rowIndex?: number) => string | React$1.ReactNode;
1614
1609
  }
1615
1610
 
1616
1611
  declare type TableProps = ITableProps;
1617
- declare const Table: FunctionComponent<Partial<TableProps> & React__default.HTMLAttributes<HTMLDivElement>>;
1612
+ declare const Table: FunctionComponent<Partial<TableProps> & React$1.HTMLAttributes<HTMLDivElement>>;
1618
1613
 
1619
1614
  interface VideoProps$1 {
1620
1615
  source: {
@@ -1630,12 +1625,12 @@ interface VideoProps$1 {
1630
1625
  loop?: boolean;
1631
1626
  };
1632
1627
  className: string;
1633
- style: React__default.CSSProperties;
1628
+ style: React$1.CSSProperties;
1634
1629
  play: (e: HTMLVideoElement) => void;
1635
1630
  pause: (e: HTMLVideoElement) => void;
1636
1631
  playend: (e: HTMLVideoElement) => void;
1637
1632
  }
1638
- declare const Video: FunctionComponent<Partial<VideoProps$1> & React__default.HTMLAttributes<HTMLDivElement>>;
1633
+ declare const Video: FunctionComponent<Partial<VideoProps$1> & React$1.HTMLAttributes<HTMLDivElement>>;
1639
1634
 
1640
1635
  declare type ProgressSize = 'small' | 'base' | 'large';
1641
1636
  declare type TextType = 'icon' | 'text';
@@ -1661,7 +1656,7 @@ interface ProgressProps extends IComponent {
1661
1656
  rounded: boolean | string;
1662
1657
  children: ReactNode;
1663
1658
  }
1664
- declare const Progress: FunctionComponent<Partial<ProgressProps> & React__default.HTMLAttributes<HTMLDivElement>>;
1659
+ declare const Progress: FunctionComponent<Partial<ProgressProps> & React$1.HTMLAttributes<HTMLDivElement>>;
1665
1660
 
1666
1661
  interface AudioProps extends IComponent {
1667
1662
  className?: string;
@@ -1677,7 +1672,7 @@ interface AudioProps extends IComponent {
1677
1672
  onPlayEnd?: (ctx: Taro.InnerAudioContext) => void;
1678
1673
  onCanPlay?: (ctx: Taro.InnerAudioContext) => void;
1679
1674
  }
1680
- declare const Audio: FunctionComponent<Partial<AudioProps> & (React__default.HTMLAttributes<HTMLDivElement> | Taro.InnerAudioContext)>;
1675
+ declare const Audio: FunctionComponent<Partial<AudioProps> & (React$1.HTMLAttributes<HTMLDivElement> | Taro.InnerAudioContext)>;
1681
1676
 
1682
1677
  interface ImagePreviewProps {
1683
1678
  className?: string;
@@ -1771,11 +1766,11 @@ interface AddressProps extends IComponent {
1771
1766
  onChange?: (cal: ChangeCallBack) => void;
1772
1767
  onTabChecked?: (cal: string) => void;
1773
1768
  }
1774
- declare const Address: FunctionComponent<Partial<AddressProps> & Omit<React__default.HTMLAttributes<HTMLDivElement>, 'onChange'>>;
1769
+ declare const Address: FunctionComponent<Partial<AddressProps> & Omit<React$1.HTMLAttributes<HTMLDivElement>, 'onChange'>>;
1775
1770
 
1776
1771
  interface BarrageProps {
1777
1772
  className: string;
1778
- style: React__default.CSSProperties;
1773
+ style: React$1.CSSProperties;
1779
1774
  barrageList: Array<string>;
1780
1775
  frequency: number;
1781
1776
  loop: boolean;
@@ -1783,7 +1778,7 @@ interface BarrageProps {
1783
1778
  rows: number;
1784
1779
  top: number;
1785
1780
  }
1786
- declare const Barrage: React__default.ForwardRefExoticComponent<Partial<BarrageProps> & React__default.RefAttributes<unknown>>;
1781
+ declare const Barrage: React$1.ForwardRefExoticComponent<Partial<BarrageProps> & React$1.RefAttributes<unknown>>;
1787
1782
 
1788
1783
  interface SignatureProps {
1789
1784
  type: string;
@@ -1794,7 +1789,7 @@ interface SignatureProps {
1794
1789
  confirm?: (canvas: HTMLCanvasElement, dataurl: string) => void;
1795
1790
  clear?: () => void;
1796
1791
  }
1797
- declare const Signature: FunctionComponent<Partial<SignatureProps> & React__default.HTMLAttributes<HTMLDivElement>>;
1792
+ declare const Signature: FunctionComponent<Partial<SignatureProps> & React$1.HTMLAttributes<HTMLDivElement>>;
1798
1793
 
1799
1794
  interface CardProps {
1800
1795
  imgUrl: string;
@@ -1805,13 +1800,13 @@ interface CardProps {
1805
1800
  delivery: string;
1806
1801
  shopName: string;
1807
1802
  className: string;
1808
- style: React__default.CSSProperties;
1809
- prolistTpl: React__default.ReactNode;
1810
- shopTagTpl: React__default.ReactNode;
1811
- originTpl: React__default.ReactNode;
1812
- footerTpl: React__default.ReactNode;
1803
+ style: React$1.CSSProperties;
1804
+ prolistTpl: React$1.ReactNode;
1805
+ shopTagTpl: React$1.ReactNode;
1806
+ originTpl: React$1.ReactNode;
1807
+ footerTpl: React$1.ReactNode;
1813
1808
  }
1814
- declare const Card: FunctionComponent<Partial<CardProps> & React__default.HTMLAttributes<HTMLDivElement>>;
1809
+ declare const Card: FunctionComponent<Partial<CardProps> & React$1.HTMLAttributes<HTMLDivElement>>;
1815
1810
 
1816
1811
  interface TimePannelProps {
1817
1812
  date: string;
@@ -1819,7 +1814,7 @@ interface TimePannelProps {
1819
1814
  className?: string;
1820
1815
  change: (curKey: string | number) => void;
1821
1816
  }
1822
- declare const TimePannel: FunctionComponent<Partial<TimePannelProps> & React__default.HTMLAttributes<HTMLDivElement>>;
1817
+ declare const TimePannel: FunctionComponent<Partial<TimePannelProps> & React$1.HTMLAttributes<HTMLDivElement>>;
1823
1818
 
1824
1819
  interface TimeType {
1825
1820
  key?: string | number;
@@ -1832,7 +1827,7 @@ interface TimeDetailProps {
1832
1827
  times: TimeType[];
1833
1828
  select: (time: string) => void;
1834
1829
  }
1835
- declare const TimeDetail: FunctionComponent<Partial<TimeDetailProps> & React__default.HTMLAttributes<HTMLDivElement>>;
1830
+ declare const TimeDetail: FunctionComponent<Partial<TimeDetailProps> & React$1.HTMLAttributes<HTMLDivElement>>;
1836
1831
 
1837
1832
  interface DateType {
1838
1833
  'pannel-key'?: string | number;
@@ -1852,7 +1847,7 @@ interface TimeSelectProps {
1852
1847
  pannelChange?: (pannelKey: string | number, selectTimeData: TimeType[]) => void;
1853
1848
  timeChange?: (time: string, selectTimeData: TimeType[]) => void;
1854
1849
  }
1855
- declare const TimeSelect: FunctionComponent<Partial<TimeSelectProps> & React__default.HTMLAttributes<HTMLDivElement>>;
1850
+ declare const TimeSelect: FunctionComponent<Partial<TimeSelectProps> & React$1.HTMLAttributes<HTMLDivElement>>;
1856
1851
 
1857
1852
  interface CollapseItemProps extends IComponent {
1858
1853
  title: string;
@@ -1885,10 +1880,10 @@ interface VideoProps {
1885
1880
  loop?: boolean;
1886
1881
  };
1887
1882
  className: string;
1888
- style: React__default.CSSProperties;
1883
+ style: React$1.CSSProperties;
1889
1884
  play: (e: HTMLVideoElement) => void;
1890
1885
  pause: (e: HTMLVideoElement) => void;
1891
1886
  playend: (e: HTMLVideoElement) => void;
1892
1887
  }
1893
1888
 
1894
- export { ActionSheet, ActionSheetProps, Address, AddressProps, AnimatingNumbers, AnimatingNumbersProps, Audio, AudioProps, Avatar, AvatarGroup, AvatarGroupProps, AvatarProps, BackTop, BackTopProps, Badge, BadgeProps, Barrage, BarrageProps, Button, ButtonProps, Calendar, CalendarItem, CalendarItemProps, CalendarProps, Card, CardProps, Cascader, CascaderProps, Cell, CellGroup, CellGroupProps, CellProps, Checkbox, CheckboxGroup, CheckboxGroupProps, CheckboxProps, CircleProgress, CircleProgressProps, Col, ColProps, Collapse, CollapseItem, CollapseItemProps, CollapseProps, ConfigProvider, ConfigProviderProps, CountDown, CountDownProps, DatePicker, DatePickerProps, Dialog, DialogProps, Divider, DividerProps, Drag, DragProps, Elevator, ElevatorProps, Empty, EmptyProps, FixedNav, FixedNavProps, Grid, GridItem, GridItemProps, GridProps, Icon, IconProps, ImagePreview, ImagePreviewProps, Indicator, IndicatorProps, Infiniteloading, InfiniteloadingProps, Input, InputNumber, InputNumberProps, InputProps, Layout, LayoutProps, Menu, MenuItem, MenuItemProps, MenuProps, NavBar, NavBarProps$1 as NavBarProps, NoticeBar, NoticeBarProps, _default as Notify, NotifyProps, NumberKeyboard, NumberKeyboardProps, Overlay, OverlayProps, Pagination, PaginationProps, Picker, PickerProps, Popover, PopoverProps, Popup, PopupProps, Price, PriceProps, Progress, ProgressProps, PullToRefresh, PullToRefreshProps, Radio, RadioGroup, RadioGroupProps, RadioProps, Range, RangeProps, Rate, RateProps, Row, RowProps, SearchBar, SearchBarProps, ShortPassword, ShortPasswordProps, SideNavBar, SideNavBarItem, SideNavBarItemProps, SideNavBarProps, Signature, SignatureProps, Skeleton, SkeletonProps, Step, StepProps, Steps, StepsProps, Sticky, StickyProps, SubSideNavBar, SubSideNavBarProps, Swipe, SwipeProps, Swiper, SwiperItem, SwiperItemProps, SwiperProps, Switch, SwitchProps, TabPane, TabPaneProps, Tabbar, TabbarItem, TabbarItemProps, TabbarProps, Table, TableProps, Tabs, TabsProps, Tag, TagProps, TextArea, TextAreaProps, TimeDetail, TimeDetailProps, TimePannel, TimePannelProps, TimeSelect, TimeSelectProps, Toast, ToastProps, Uploader, UploaderProps, Video, VideoProps, VirtualList, VirtualListProps };
1889
+ export { ActionSheet, ActionSheetProps, Address, AddressProps, AnimatingNumbers, AnimatingNumbersProps, Audio, AudioProps, Avatar, AvatarGroup, AvatarGroupProps, AvatarProps, BackTop, BackTopProps, Badge, BadgeProps, Barrage, BarrageProps, Button, ButtonProps, Calendar, CalendarItem, CalendarItemProps, CalendarProps, Card, CardProps, Cascader, CascaderProps, Cell, CellGroup, CellGroupProps, CellProps, Checkbox, CheckboxGroup, CheckboxGroupProps, CheckboxProps, CircleProgress, CircleProgressProps, Col, ColProps, Collapse, CollapseItem, CollapseItemProps, CollapseProps, ConfigProvider, ConfigProviderProps, CountDown, CountDownProps, DatePicker, DatePickerProps, Dialog, DialogProps, Divider, DividerProps, Drag, DragProps, Elevator, ElevatorProps, Empty, EmptyProps, FixedNav, FixedNavProps, Grid, GridItem, GridItemProps, GridProps, Icon, IconProps, ImagePreview, ImagePreviewProps, Indicator, IndicatorProps, Infiniteloading, InfiniteloadingProps, Input, InputNumber, InputNumberProps, InputProps, Layout, LayoutProps, Menu, MenuItem, MenuItemProps, MenuProps, NavBar, NavBarProps$1 as NavBarProps, NoticeBar, NoticeBarProps, Notify, NotifyProps, NumberKeyboard, NumberKeyboardProps, Overlay, OverlayProps, Pagination, PaginationProps, Picker, PickerProps, Popover, PopoverProps, Popup, PopupProps, Price, PriceProps, Progress, ProgressProps, PullToRefresh, PullToRefreshProps, Radio, RadioGroup, RadioGroupProps, RadioProps, Range, RangeProps, Rate, RateProps, Row, RowProps, SearchBar, SearchBarProps, ShortPassword, ShortPasswordProps, SideNavBar, SideNavBarItem, SideNavBarItemProps, SideNavBarProps, Signature, SignatureProps, Skeleton, SkeletonProps, Step, StepProps, Steps, StepsProps, Sticky, StickyProps, SubSideNavBar, SubSideNavBarProps, Swipe, SwipeProps, Swiper, SwiperItem, SwiperItemProps, SwiperProps, Switch, SwitchProps, TabPane, TabPaneProps, Tabbar, TabbarItem, TabbarItemProps, TabbarProps, Table, TableProps, Tabs, TabsProps, Tag, TagProps, TextArea, TextAreaProps, TimeDetail, TimeDetailProps, TimePannel, TimePannelProps, TimeSelect, TimeSelectProps, Toast, ToastProps, Uploader, UploaderProps, Video, VideoProps, VirtualList, VirtualListProps };