2018-01-23 18:55:39 +08:00
|
|
|
import Button from './button'
|
|
|
|
const ButtonGroup = Button.Group
|
|
|
|
export { Button, ButtonGroup }
|
2017-10-26 15:18:08 +08:00
|
|
|
|
2018-01-23 19:00:20 +08:00
|
|
|
import Checkbox from './checkbox'
|
|
|
|
const CheckboxGroup = Checkbox.Group
|
|
|
|
export { Checkbox, CheckboxGroup }
|
2017-10-26 15:18:08 +08:00
|
|
|
|
|
|
|
export { default as Icon } from './icon'
|
2017-10-27 14:04:48 +08:00
|
|
|
|
2018-01-23 18:55:39 +08:00
|
|
|
import Radio from './radio'
|
|
|
|
const RadioGroup = Radio.Group
|
|
|
|
const RadioButton = Radio.Button
|
|
|
|
export { Radio, RadioGroup, RadioButton }
|
2017-10-27 15:17:53 +08:00
|
|
|
|
2017-10-27 13:24:22 +08:00
|
|
|
export { default as Grid } from './grid'
|
2017-11-01 17:03:42 +08:00
|
|
|
|
|
|
|
export { default as Rate } from './rate'
|
2017-11-02 19:42:03 +08:00
|
|
|
|
2018-01-11 18:53:51 +08:00
|
|
|
export { default as Tooltip } from './tooltip'
|
2017-11-06 17:46:08 +08:00
|
|
|
|
2017-11-07 11:57:16 +08:00
|
|
|
export { default as Pagination } from './pagination'
|
2017-11-07 12:02:33 +08:00
|
|
|
|
2017-11-07 14:41:41 +08:00
|
|
|
export { default as Row } from './grid/Row'
|
2017-11-06 17:46:08 +08:00
|
|
|
|
2017-11-07 14:41:41 +08:00
|
|
|
export { default as Col } from './grid/Col'
|
2017-11-09 15:58:53 +08:00
|
|
|
|
|
|
|
export { default as Tag } from './tag'
|
2017-11-09 18:57:34 +08:00
|
|
|
|
|
|
|
export { default as Avatar } from './avatar'
|
2017-11-16 18:29:02 +08:00
|
|
|
|
|
|
|
export { default as Badge } from './badge'
|
2017-11-21 19:15:41 +08:00
|
|
|
|
|
|
|
export { default as Tabs } from './tabs'
|
2017-12-06 18:54:20 +08:00
|
|
|
|
2018-02-28 19:07:04 +08:00
|
|
|
import Input from './input'
|
|
|
|
|
|
|
|
const InputGroup = Input.Group
|
|
|
|
const InputSearch = Input.Search
|
|
|
|
const InputTextArea = Input.TextArea
|
|
|
|
const Textarea = InputTextArea
|
|
|
|
|
|
|
|
export { Input, InputGroup, InputSearch, InputTextArea, Textarea }
|
2018-01-15 10:52:16 +08:00
|
|
|
|
|
|
|
export { default as Breadcrumb } from './breadcrumb'
|
2018-01-15 10:57:10 +08:00
|
|
|
|
2018-01-12 16:10:41 +08:00
|
|
|
export { default as Popover } from './popover'
|
2018-01-12 19:04:42 +08:00
|
|
|
|
|
|
|
export { default as Popconfirm } from './popconfirm'
|
2018-01-16 19:15:07 +08:00
|
|
|
|
2018-01-29 18:57:20 +08:00
|
|
|
import Menu from './menu'
|
|
|
|
const MenuItem = Menu.Item
|
|
|
|
const SubMenu = Menu.SubMenu
|
|
|
|
const MenuDivider = Menu.Divider
|
|
|
|
const MenuItemGroup = Menu.ItemGroup
|
|
|
|
export { Menu, MenuItem, SubMenu, MenuDivider, MenuItemGroup }
|
2018-01-20 14:33:42 +08:00
|
|
|
|
|
|
|
export { default as Card } from './card'
|
2018-01-29 18:57:20 +08:00
|
|
|
|
|
|
|
import Dropdown from './dropdown'
|
|
|
|
const DropdownButton = Dropdown.Button
|
|
|
|
export { Dropdown, DropdownButton }
|
2018-01-30 18:22:41 +08:00
|
|
|
|
|
|
|
export { default as Divider } from './divider'
|
2018-02-01 18:18:05 +08:00
|
|
|
|
|
|
|
import Collapse from './collapse'
|
|
|
|
const CollapsePanel = Collapse.Panel
|
|
|
|
export { Collapse, CollapsePanel }
|
2018-02-06 15:21:13 +08:00
|
|
|
|
|
|
|
import notification from './notification'
|
2018-02-06 16:43:59 +08:00
|
|
|
import message from './message'
|
2018-02-06 15:21:13 +08:00
|
|
|
|
2018-02-09 17:09:50 +08:00
|
|
|
export { default as Spin } from './spin'
|
|
|
|
|
2018-02-06 15:21:13 +08:00
|
|
|
const api = {
|
|
|
|
notification,
|
2018-02-06 16:43:59 +08:00
|
|
|
message,
|
2018-02-06 15:21:13 +08:00
|
|
|
}
|
|
|
|
export { api }
|
2018-02-24 19:53:21 +08:00
|
|
|
|
|
|
|
import Select from './select'
|
|
|
|
const SelectOption = Select.Option
|
|
|
|
const SelectOptGroup = Select.OptGroup
|
|
|
|
export { Select, SelectOption, SelectOptGroup }
|
|
|
|
|
2018-02-27 12:14:29 +08:00
|
|
|
export { default as Switch } from './switch'
|
|
|
|
|
2018-02-27 12:17:53 +08:00
|
|
|
export { default as LocaleProvider } from './locale-provider'
|
|
|
|
|
2018-02-28 19:07:04 +08:00
|
|
|
export { default as AutoComplete } from './auto-complete'
|
|
|
|
|
2018-03-02 16:54:22 +08:00
|
|
|
export { default as Affix } from './affix'
|
|
|
|
|
2018-03-03 19:14:03 +08:00
|
|
|
export { default as Cascader } from './cascader'
|
|
|
|
|