forked from vueComponent/ant-design-vue
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomponents.ts
269 lines (198 loc) · 8.41 KB
/
components.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
export type { AffixProps } from './affix';
export { default as Affix } from './affix';
export type { AnchorProps, AnchorLinkProps } from './anchor';
export { default as Anchor, AnchorLink } from './anchor';
export type { AutoCompleteProps } from './auto-complete';
export { default as AutoComplete, AutoCompleteOptGroup, AutoCompleteOption } from './auto-complete';
export type { AlertProps } from './alert';
export { default as Alert } from './alert';
export type { AvatarProps } from './avatar';
export { default as Avatar, AvatarGroup } from './avatar';
export type { BadgeProps } from './badge';
export { default as Badge, BadgeRibbon } from './badge';
export type { BreadcrumbProps, BreadcrumbItemProps, BreadcrumbSeparatorProps } from './breadcrumb';
export { default as Breadcrumb, BreadcrumbItem, BreadcrumbSeparator } from './breadcrumb';
export type { ButtonProps } from './button';
export { default as Button, ButtonGroup } from './button';
export type { CalendarProps } from './calendar';
export { default as Calendar } from './calendar';
export type { CardProps } from './card';
export { default as Card, CardGrid, CardMeta } from './card';
export type { CollapseProps, CollapsePanelProps } from './collapse';
export { default as Collapse, CollapsePanel } from './collapse';
export type { CarouselProps } from './carousel';
export { default as Carousel } from './carousel';
export type { CascaderProps } from './cascader';
export { default as Cascader } from './cascader';
export type { CheckboxProps, CheckboxGroupProps, CheckboxOptionType } from './checkbox';
export { default as Checkbox, CheckboxGroup } from './checkbox';
export type { ColProps } from './col';
export { default as Col } from './col';
export type { CommentProps } from './comment';
export { default as Comment } from './comment';
export type { ConfigProviderProps } from './config-provider';
export { default as ConfigProvider } from './config-provider';
export type { DatePickerProps } from './date-picker';
export {
default as DatePicker,
MonthPicker,
WeekPicker,
RangePicker,
QuarterPicker,
} from './date-picker';
export type { DescriptionsProps } from './descriptions';
export { default as Descriptions, DescriptionsItem } from './descriptions';
export type { DividerProps } from './divider';
export { default as Divider } from './divider';
export type { DropdownProps } from './dropdown';
export { default as Dropdown, DropdownButton } from './dropdown';
export type { DrawerProps } from './drawer';
export { default as Drawer } from './drawer';
export type { EmptyProps } from './empty';
export { default as Empty } from './empty';
export type {
FloatButtonProps,
FloatButtonGroupProps,
BackTopProps,
} from './float-button/interface';
export { default as FloatButton, FloatButtonGroup, BackTop } from './float-button';
export type { FormProps, FormItemProps, FormInstance, FormItemInstance } from './form';
export { default as Form, FormItem, FormItemRest } from './form';
export { default as Grid } from './grid';
export type { InputProps, TextAreaProps } from './input';
export { default as Input, InputGroup, InputPassword, InputSearch, Textarea } from './input';
export type { ImageProps } from './image';
export { default as Image, ImagePreviewGroup } from './image';
export type { InputNumberProps } from './input-number';
export { default as InputNumber } from './input-number';
export type { LayoutProps, SiderProps } from './layout';
export {
default as Layout,
LayoutHeader,
LayoutSider,
LayoutFooter,
LayoutContent,
} from './layout';
export type { ListProps, ListItemProps, ListItemMetaProps } from './list';
export { default as List, ListItem, ListItemMeta } from './list';
export type { MessageArgsProps } from './message';
export { default as message } from './message';
export type {
MenuProps,
MenuTheme,
SubMenuProps,
MenuItemProps,
MenuMode,
MenuDividerProps,
ItemType,
} from './menu';
export { default as Menu, MenuDivider, MenuItem, MenuItemGroup, SubMenu } from './menu';
export type { MentionsProps } from './mentions';
export { default as Mentions, MentionsOption } from './mentions';
export type { ModalProps, ModalFuncProps } from './modal';
export { default as Modal } from './modal';
export type { StatisticProps } from './statistic';
export { default as Statistic, StatisticCountdown } from './statistic';
export type { NotificationPlacement } from './notification';
export { default as notification } from './notification';
export type { PageHeaderProps } from './page-header';
export { default as PageHeader } from './page-header';
export type { PaginationProps } from './pagination';
export { default as Pagination } from './pagination';
export type { PopconfirmProps } from './popconfirm';
export { default as Popconfirm } from './popconfirm';
export type { PopoverProps } from './popover';
export { default as Popover } from './popover';
export type { ProgressProps } from './progress';
export { default as Progress } from './progress';
export type { RadioProps, RadioChangeEvent, RadioGroupProps } from './radio';
export { default as Radio, RadioButton, RadioGroup } from './radio';
export type { RateProps } from './rate';
export { default as Rate } from './rate';
export type { ResultProps } from './result';
export { default as Result } from './result';
export type { RowProps } from './row';
export { default as Row } from './row';
export type { SelectProps } from './select';
export { default as Select, SelectOptGroup, SelectOption } from './select';
export type {
SkeletonProps,
SkeletonButtonProps,
SkeletonInputProps,
SkeletonImageProps,
SkeletonAvatarProps,
SkeletonTitleProps,
} from './skeleton';
export {
default as Skeleton,
SkeletonButton,
SkeletonAvatar,
SkeletonInput,
SkeletonImage,
SkeletonTitle,
} from './skeleton';
export type { SliderProps } from './slider';
export { default as Slider } from './slider';
export type { SpaceProps } from './space';
export { default as Space, Compact } from './space';
export type { SpinProps } from './spin';
export { default as Spin } from './spin';
export type { StepProps, StepsProps } from './steps';
export { default as Steps, Step } from './steps';
export type { SwitchProps } from './switch';
export { default as Switch } from './switch';
export type {
TableProps,
TablePaginationConfig,
ColumnGroupType as TableColumnGroupType,
ColumnType as TableColumnType,
ColumnProps as TableColumnProps,
ColumnsType as TableColumnsType,
} from './table';
export {
default as Table,
TableColumn,
TableColumnGroup,
TableSummary,
TableSummaryRow,
TableSummaryCell,
} from './table';
export type { TransferProps } from './transfer';
export { default as Transfer } from './transfer';
export type { TreeProps, DirectoryTreeProps } from './tree';
export { default as Tree, TreeNode, DirectoryTree } from './tree';
export type { TreeSelectProps } from './tree-select';
export { default as TreeSelect, TreeSelectNode } from './tree-select';
export type { TabsProps, TabPaneProps } from './tabs';
export { default as Tabs, TabPane } from './tabs';
export type { TagProps } from './tag';
export { default as Tag, CheckableTag } from './tag';
export type { TimePickerProps, TimeRangePickerProps } from './time-picker';
export { default as TimePicker, TimeRangePicker } from './time-picker';
export type { TimelineProps, TimelineItemProps } from './timeline';
export { default as Timeline, TimelineItem } from './timeline';
export type { TooltipProps } from './tooltip';
export { default as Tooltip } from './tooltip';
export type { TypographyProps } from './typography';
export {
default as Typography,
TypographyLink,
TypographyParagraph,
TypographyText,
TypographyTitle,
} from './typography';
export type { UploadProps, UploadListProps, UploadChangeParam, UploadFile } from './upload';
export { default as Upload, UploadDragger } from './upload';
export { default as LocaleProvider } from './locale-provider';
export { default as Watermark } from './watermark';
export type { WatermarkProps } from './watermark';
export type { SegmentedProps } from './segmented';
export { default as Segmented } from './segmented';
export type { QRCodeProps } from './qrcode';
export { default as QRCode } from './qrcode';
export type { TourProps, TourStepProps } from './tour';
export { default as Tour } from './tour';
export type { AppProps } from './app';
export { default as App } from './app';
export type { FlexProps } from './flex';
export { default as Flex } from './flex';