antd-mobile 5.24.2 → 5.25.1
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/2x/bundle/antd-mobile.cjs.development.js +304 -191
- package/2x/bundle/antd-mobile.cjs.js +8 -8
- package/2x/bundle/antd-mobile.es.development.js +304 -191
- package/2x/bundle/antd-mobile.es.js +6566 -6502
- package/2x/bundle/antd-mobile.umd.development.js +304 -191
- package/2x/bundle/antd-mobile.umd.js +8 -8
- package/2x/bundle/style.css +1 -0
- package/2x/cjs/components/cascader-view/cascader-view.d.ts +1 -1
- package/2x/cjs/components/cascader-view/cascader-view.js +3 -4
- package/2x/cjs/components/image-uploader/image-uploader.js +8 -7
- package/2x/cjs/components/image-viewer/image-viewer.d.ts +1 -1
- package/2x/cjs/components/image-viewer/slide.d.ts +1 -1
- package/2x/cjs/components/image-viewer/slide.js +9 -2
- package/2x/cjs/components/popup/popup.css +1 -0
- package/2x/cjs/components/slider/thumb.js +3 -2
- package/2x/cjs/index.d.ts +81 -1
- package/2x/cjs/index.js +1 -1
- package/2x/es/components/cascader-view/cascader-view.d.ts +1 -1
- package/2x/es/components/cascader-view/cascader-view.js +3 -4
- package/2x/es/components/image-uploader/image-uploader.js +8 -7
- package/2x/es/components/image-viewer/image-viewer.d.ts +1 -1
- package/2x/es/components/image-viewer/slide.d.ts +1 -1
- package/2x/es/components/image-viewer/slide.js +9 -2
- package/2x/es/components/popup/popup.css +1 -0
- package/2x/es/components/slider/thumb.js +1 -1
- package/2x/es/index.d.ts +81 -1
- package/2x/es/index.js +1 -1
- package/2x/package.json +1 -1
- package/bundle/antd-mobile.cjs.development.js +304 -191
- package/bundle/antd-mobile.cjs.js +8 -8
- package/bundle/antd-mobile.compatible.umd.js +1 -1
- package/bundle/antd-mobile.es.development.js +304 -191
- package/bundle/antd-mobile.es.js +6566 -6502
- package/bundle/antd-mobile.umd.development.js +304 -191
- package/bundle/antd-mobile.umd.js +8 -8
- package/bundle/style.css +1 -1
- package/cjs/components/cascader-view/cascader-view.d.ts +1 -1
- package/cjs/components/cascader-view/cascader-view.js +3 -4
- package/cjs/components/image-uploader/image-uploader.js +8 -7
- package/cjs/components/image-viewer/image-viewer.d.ts +1 -1
- package/cjs/components/image-viewer/slide.d.ts +1 -1
- package/cjs/components/image-viewer/slide.js +9 -2
- package/cjs/components/popup/popup.css +1 -0
- package/cjs/components/slider/thumb.js +3 -2
- package/cjs/index.d.ts +81 -1
- package/cjs/index.js +1 -1
- package/es/components/cascader-view/cascader-view.d.ts +1 -1
- package/es/components/cascader-view/cascader-view.js +3 -4
- package/es/components/image-uploader/image-uploader.js +8 -7
- package/es/components/image-viewer/image-viewer.d.ts +1 -1
- package/es/components/image-viewer/slide.d.ts +1 -1
- package/es/components/image-viewer/slide.js +9 -2
- package/es/components/popup/popup.css +1 -0
- package/es/components/slider/thumb.js +1 -1
- package/es/index.d.ts +81 -1
- package/es/index.js +1 -1
- package/package.json +1 -1
- package/umd/antd-mobile.js +1 -1
package/2x/es/index.d.ts
CHANGED
|
@@ -1,84 +1,164 @@
|
|
|
1
1
|
import './global';
|
|
2
2
|
export { setDefaultConfig } from './components/config-provider';
|
|
3
3
|
export { default as ActionSheet } from './components/action-sheet';
|
|
4
|
+
export type { ActionSheetProps } from './components/action-sheet';
|
|
4
5
|
export { default as AutoCenter } from './components/auto-center';
|
|
6
|
+
export type { AutoCenterProps } from './components/auto-center';
|
|
5
7
|
export { default as Avatar } from './components/avatar';
|
|
8
|
+
export type { AvatarProps } from './components/avatar';
|
|
6
9
|
export { default as Badge } from './components/badge';
|
|
10
|
+
export type { BadgeProps } from './components/badge';
|
|
7
11
|
export { default as Button } from './components/button';
|
|
12
|
+
export type { ButtonProps, ButtonRef } from './components/button';
|
|
8
13
|
export { default as Calendar } from './components/calendar';
|
|
14
|
+
export type { CalendarProps, CalendarRef } from './components/calendar';
|
|
9
15
|
export { default as CapsuleTabs } from './components/capsule-tabs';
|
|
16
|
+
export type { CapsuleTabsProps, CapsuleTabProps, } from './components/capsule-tabs';
|
|
10
17
|
export { default as Card } from './components/card';
|
|
18
|
+
export type { CardProps } from './components/card';
|
|
11
19
|
export { default as CascadePicker } from './components/cascade-picker';
|
|
20
|
+
export type { CascadePickerProps, CascadePickerOption, CascadePickerRef, } from './components/cascade-picker';
|
|
12
21
|
export { default as CascadePickerView } from './components/cascade-picker-view';
|
|
22
|
+
export type { CascadePickerViewProps } from './components/cascade-picker-view';
|
|
13
23
|
export { default as Cascader } from './components/cascader';
|
|
24
|
+
export type { CascaderProps, CascaderRef } from './components/cascader';
|
|
14
25
|
export { default as CascaderView } from './components/cascader-view';
|
|
26
|
+
export type { CascaderViewProps, CascaderOption, } from './components/cascader-view';
|
|
15
27
|
export { default as CenterPopup } from './components/center-popup';
|
|
28
|
+
export type { CenterPopupProps } from './components/center-popup';
|
|
16
29
|
export { default as CheckList } from './components/check-list';
|
|
30
|
+
export type { CheckListProps, CheckListItemProps, } from './components/check-list';
|
|
17
31
|
export { default as Checkbox } from './components/checkbox';
|
|
32
|
+
export type { CheckboxProps, CheckboxGroupProps, CheckboxRef, } from './components/checkbox';
|
|
18
33
|
export { default as Collapse } from './components/collapse';
|
|
34
|
+
export type { CollapseProps, CollapsePanelProps } from './components/collapse';
|
|
19
35
|
export { default as ConfigProvider } from './components/config-provider';
|
|
36
|
+
export type { ConfigProviderProps } from './components/config-provider';
|
|
20
37
|
export { default as DatePicker } from './components/date-picker';
|
|
38
|
+
export type { DatePickerProps, DatePickerRef } from './components/date-picker';
|
|
21
39
|
export { default as DatePickerView } from './components/date-picker-view';
|
|
40
|
+
export type { DatePickerViewProps } from './components/date-picker-view';
|
|
22
41
|
export { default as Dialog } from './components/dialog';
|
|
42
|
+
export type { DialogProps, DialogShowProps, DialogAlertProps, DialogConfirmProps, } from './components/dialog';
|
|
23
43
|
export { default as Divider } from './components/divider';
|
|
44
|
+
export type { DividerProps } from './components/divider';
|
|
24
45
|
export { default as DotLoading } from './components/dot-loading';
|
|
46
|
+
export type { DotLoadingProps } from './components/dot-loading';
|
|
25
47
|
export { default as Dropdown } from './components/dropdown';
|
|
48
|
+
export type { DropdownProps, DropdownItemProps, DropdownRef, } from './components/dropdown';
|
|
26
49
|
export { default as Ellipsis } from './components/ellipsis';
|
|
50
|
+
export type { EllipsisProps } from './components/ellipsis';
|
|
27
51
|
export { default as Empty } from './components/empty';
|
|
52
|
+
export type { EmptyProps } from './components/empty';
|
|
28
53
|
export { default as ErrorBlock } from './components/error-block';
|
|
54
|
+
export type { ErrorBlockProps, ErrorBlockStatus, } from './components/error-block';
|
|
29
55
|
export { default as FloatingBubble } from './components/floating-bubble';
|
|
56
|
+
export type { FloatingBubbleProps } from './components/floating-bubble';
|
|
30
57
|
export { default as FloatingPanel } from './components/floating-panel';
|
|
58
|
+
export type { FloatingPanelProps, FloatingPanelRef, } from './components/floating-panel';
|
|
31
59
|
export { default as Form } from './components/form';
|
|
60
|
+
export type { FormProps, FormItemProps } from './components/form';
|
|
32
61
|
export { default as Grid } from './components/grid';
|
|
62
|
+
export type { GridProps, GridItemProps } from './components/grid';
|
|
33
63
|
export { default as Image } from './components/image';
|
|
64
|
+
export type { ImageProps } from './components/image';
|
|
34
65
|
export { default as ImageUploader } from './components/image-uploader';
|
|
66
|
+
export type { ImageUploaderProps, ImageUploadItem, } from './components/image-uploader';
|
|
35
67
|
export { default as ImageViewer } from './components/image-viewer';
|
|
68
|
+
export type { ImageViewerProps, MultiImageViewerProps, MultiImageViewerRef, } from './components/image-viewer';
|
|
36
69
|
export { default as IndexBar } from './components/index-bar';
|
|
70
|
+
export type { IndexBarProps, IndexBarPanelProps, IndexBarRef, } from './components/index-bar';
|
|
37
71
|
export { default as InfiniteScroll } from './components/infinite-scroll';
|
|
72
|
+
export type { InfiniteScrollProps } from './components/infinite-scroll';
|
|
38
73
|
export { default as Input } from './components/input';
|
|
74
|
+
export type { InputProps, InputRef } from './components/input';
|
|
39
75
|
export { default as JumboTabs } from './components/jumbo-tabs';
|
|
76
|
+
export type { JumboTabsProps, JumboTabProps } from './components/jumbo-tabs';
|
|
40
77
|
export { default as List } from './components/list';
|
|
78
|
+
export type { ListProps, ListItemProps, ListRef } from './components/list';
|
|
41
79
|
export { default as Loading } from './components/loading';
|
|
80
|
+
export type { LoadingProps } from './components/loading';
|
|
42
81
|
export { default as Mask } from './components/mask';
|
|
82
|
+
export type { MaskProps } from './components/mask';
|
|
43
83
|
export { default as Modal } from './components/modal';
|
|
84
|
+
export type { ModalProps, ModalShowProps, ModalAlertProps, ModalConfirmProps, } from './components/modal';
|
|
44
85
|
export { default as NavBar } from './components/nav-bar';
|
|
86
|
+
export type { NavBarProps } from './components/nav-bar';
|
|
45
87
|
export { default as NoticeBar } from './components/notice-bar';
|
|
88
|
+
export type { NoticeBarProps } from './components/notice-bar';
|
|
46
89
|
export { default as NumberKeyboard } from './components/number-keyboard';
|
|
90
|
+
export type { NumberKeyboardProps } from './components/number-keyboard';
|
|
47
91
|
export { default as PageIndicator } from './components/page-indicator';
|
|
92
|
+
export type { PageIndicatorProps } from './components/page-indicator';
|
|
48
93
|
export { default as PasscodeInput } from './components/passcode-input';
|
|
94
|
+
export type { PasscodeInputProps, PasscodeInputRef, } from './components/passcode-input';
|
|
49
95
|
export { default as Picker } from './components/picker';
|
|
96
|
+
export type { PickerProps, PickerRef } from './components/picker';
|
|
50
97
|
export { default as PickerView } from './components/picker-view';
|
|
98
|
+
export type { PickerViewProps } from './components/picker-view';
|
|
51
99
|
export { default as Popover } from './components/popover';
|
|
100
|
+
export type { PopoverProps, PopoverMenuProps, PopoverRef, } from './components/popover';
|
|
52
101
|
export { default as Popup } from './components/popup';
|
|
102
|
+
export type { PopupProps } from './components/popup';
|
|
53
103
|
export { default as ProgressBar } from './components/progress-bar';
|
|
104
|
+
export type { ProgressBarProps } from './components/progress-bar';
|
|
54
105
|
export { default as ProgressCircle } from './components/progress-circle';
|
|
106
|
+
export type { ProgressCircleProps } from './components/progress-circle';
|
|
55
107
|
export { default as PullToRefresh } from './components/pull-to-refresh';
|
|
108
|
+
export type { PullToRefreshProps } from './components/pull-to-refresh';
|
|
56
109
|
export { default as Radio } from './components/radio';
|
|
110
|
+
export type { RadioProps, RadioGroupProps } from './components/radio';
|
|
57
111
|
export { default as Rate } from './components/rate';
|
|
112
|
+
export type { RateProps } from './components/rate';
|
|
58
113
|
export { default as Result } from './components/result';
|
|
114
|
+
export type { ResultProps } from './components/result';
|
|
59
115
|
export { default as ResultPage } from './components/result-page';
|
|
116
|
+
export type { ResultPageProps } from './components/result-page';
|
|
60
117
|
export { default as SafeArea } from './components/safe-area';
|
|
118
|
+
export type { SafeAreaProps } from './components/safe-area';
|
|
61
119
|
export { default as ScrollMask } from './components/scroll-mask';
|
|
120
|
+
export type { ScrollMaskProps } from './components/scroll-mask';
|
|
62
121
|
export { default as SearchBar } from './components/search-bar';
|
|
122
|
+
export type { SearchBarProps, SearchBarRef } from './components/search-bar';
|
|
63
123
|
export { default as Selector } from './components/selector';
|
|
124
|
+
export type { SelectorProps, SelectorOption } from './components/selector';
|
|
64
125
|
export { default as SideBar } from './components/side-bar';
|
|
126
|
+
export type { SideBarProps, SideBarItemProps } from './components/side-bar';
|
|
65
127
|
export { default as Skeleton } from './components/skeleton';
|
|
128
|
+
export type { SkeletonProps, SkeletonTitleProps } from './components/skeleton';
|
|
66
129
|
export { default as Slider } from './components/slider';
|
|
130
|
+
export type { SliderProps } from './components/slider';
|
|
67
131
|
export { default as Space } from './components/space';
|
|
132
|
+
export type { SpaceProps } from './components/space';
|
|
68
133
|
export { default as SpinLoading } from './components/spin-loading';
|
|
69
|
-
export {
|
|
134
|
+
export type { SpinLoadingProps } from './components/spin-loading';
|
|
135
|
+
export { default as Stepper } from './components/stepper';
|
|
136
|
+
export type { StepperProps } from './components/stepper';
|
|
70
137
|
export { default as Steps } from './components/steps';
|
|
138
|
+
export type { StepsProps, StepProps } from './components/steps';
|
|
71
139
|
export { default as SwipeAction } from './components/swipe-action';
|
|
140
|
+
export type { SwipeActionProps, SwipeActionRef, } from './components/swipe-action';
|
|
72
141
|
export { default as Swiper } from './components/swiper';
|
|
142
|
+
export type { SwiperProps, SwiperRef } from './components/swiper';
|
|
73
143
|
export { default as Switch } from './components/switch';
|
|
144
|
+
export type { SwitchProps } from './components/switch';
|
|
74
145
|
export { default as TabBar } from './components/tab-bar';
|
|
146
|
+
export type { TabBarProps, TabBarItemProps } from './components/tab-bar';
|
|
75
147
|
export { default as Tabs } from './components/tabs';
|
|
148
|
+
export type { TabsProps, TabProps } from './components/tabs';
|
|
76
149
|
export { default as Tag } from './components/tag';
|
|
150
|
+
export type { TagProps } from './components/tag';
|
|
77
151
|
export { default as TextArea } from './components/text-area';
|
|
152
|
+
export type { TextAreaProps, TextAreaRef } from './components/text-area';
|
|
78
153
|
export { default as Toast } from './components/toast';
|
|
154
|
+
export type { ToastShowProps } from './components/toast';
|
|
79
155
|
export { default as TreeSelect } from './components/tree-select';
|
|
156
|
+
export type { TreeSelectProps, TreeSelectOption, } from './components/tree-select';
|
|
80
157
|
export { default as VirtualInput } from './components/virtual-input';
|
|
158
|
+
export type { VirtualInputProps, VirtualInputRef, } from './components/virtual-input';
|
|
81
159
|
export { default as WaterMark } from './components/water-mark';
|
|
160
|
+
export type { WaterMarkProps } from './components/water-mark';
|
|
82
161
|
export { default as Footer } from './components/footer';
|
|
162
|
+
export type { FooterProps } from './components/footer';
|
|
83
163
|
export { createErrorBlock } from './components/error-block';
|
|
84
164
|
export { reduceMotion, restoreMotion } from './utils/reduce-and-restore-motion';
|
package/2x/es/index.js
CHANGED
|
@@ -66,7 +66,7 @@ export { default as Skeleton } from './components/skeleton';
|
|
|
66
66
|
export { default as Slider } from './components/slider';
|
|
67
67
|
export { default as Space } from './components/space';
|
|
68
68
|
export { default as SpinLoading } from './components/spin-loading';
|
|
69
|
-
export { default as Stepper } from './components
|
|
69
|
+
export { default as Stepper } from './components/stepper';
|
|
70
70
|
export { default as Steps } from './components/steps';
|
|
71
71
|
export { default as SwipeAction } from './components/swipe-action';
|
|
72
72
|
export { default as Swiper } from './components/swiper';
|