2016-09-09 14:29:19 +08:00
|
|
|
import Button from './components/button';
|
|
|
|
import Icon from './components/icon';
|
|
|
|
import Input from './components/input';
|
|
|
|
import Switch from './components/switch';
|
|
|
|
import Radio from './components/radio';
|
|
|
|
import Checkbox from './components/checkbox';
|
|
|
|
import InputNumber from './components/input-number';
|
|
|
|
import { Row, Col } from './components/layout';
|
|
|
|
import Page from './components/page';
|
|
|
|
import Badge from './components/badge';
|
|
|
|
import Tag from './components/tag';
|
|
|
|
import Progress from './components/progress';
|
|
|
|
import Circle from './components/circle';
|
|
|
|
import Timeline from './components/timeline';
|
|
|
|
import Affix from './components/affix';
|
|
|
|
import BackTop from './components/back-top';
|
|
|
|
import Spin from './components/spin';
|
|
|
|
import Steps from './components/steps';
|
|
|
|
import Breadcrumb from './components/breadcrumb';
|
2016-09-12 11:59:15 +08:00
|
|
|
import Alert from './components/alert';
|
2016-09-13 07:56:38 +08:00
|
|
|
import Collapse from './components/collapse';
|
2016-09-15 23:43:50 +08:00
|
|
|
import Card from './components/card';
|
2016-09-19 14:50:32 +08:00
|
|
|
import Message from './components/message';
|
2016-09-20 09:30:35 +08:00
|
|
|
import Notice from './components/notice';
|
2016-09-22 13:42:59 +08:00
|
|
|
import LoadingBar from './components/loading-bar';
|
2016-09-29 15:47:19 +08:00
|
|
|
import Modal from './components/modal';
|
2016-10-17 12:34:20 +08:00
|
|
|
import { Select, Option, OptionGroup } from './components/select';
|
2016-10-26 10:03:16 +08:00
|
|
|
import Tooltip from './components/tooltip';
|
2016-10-27 10:30:32 +08:00
|
|
|
import Poptip from './components/poptip';
|
2016-09-09 14:29:19 +08:00
|
|
|
|
|
|
|
const iview = {
|
|
|
|
Button,
|
2016-10-25 09:58:10 +08:00
|
|
|
ButtonGroup: Button.Group,
|
2016-09-09 14:29:19 +08:00
|
|
|
Icon,
|
|
|
|
Input,
|
|
|
|
Switch,
|
|
|
|
Radio,
|
2016-10-25 09:58:10 +08:00
|
|
|
RadioGroup: Radio.Group,
|
2016-09-09 14:29:19 +08:00
|
|
|
Checkbox,
|
2016-10-25 09:58:10 +08:00
|
|
|
CheckboxGroup: Checkbox.Group,
|
2016-09-09 14:29:19 +08:00
|
|
|
InputNumber,
|
|
|
|
Row,
|
2016-10-25 09:58:10 +08:00
|
|
|
iCol: Col,
|
2016-09-09 14:29:19 +08:00
|
|
|
Page,
|
|
|
|
Badge,
|
|
|
|
Tag,
|
|
|
|
Progress,
|
|
|
|
Circle,
|
|
|
|
Timeline,
|
2016-10-25 09:58:10 +08:00
|
|
|
TimelineItem: Timeline.Item,
|
2016-09-09 14:29:19 +08:00
|
|
|
Affix,
|
|
|
|
BackTop,
|
|
|
|
Spin,
|
|
|
|
Steps,
|
2016-10-25 09:58:10 +08:00
|
|
|
Step: Steps.Step,
|
2016-09-12 11:59:15 +08:00
|
|
|
Breadcrumb,
|
2016-10-25 09:58:10 +08:00
|
|
|
BreadcrumbItem: Breadcrumb.Item,
|
2016-09-13 07:56:38 +08:00
|
|
|
Alert,
|
2016-09-15 23:43:50 +08:00
|
|
|
Collapse,
|
2016-10-25 09:58:10 +08:00
|
|
|
Panel: Collapse.Panel,
|
2016-09-19 14:50:32 +08:00
|
|
|
Card,
|
2016-09-20 09:30:35 +08:00
|
|
|
Message,
|
2016-09-22 13:42:59 +08:00
|
|
|
Notice,
|
2016-09-29 15:47:19 +08:00
|
|
|
LoadingBar,
|
2016-10-17 12:34:20 +08:00
|
|
|
Modal,
|
|
|
|
iSelect: Select,
|
|
|
|
iOption: Option,
|
2016-10-26 10:03:16 +08:00
|
|
|
iOptionGroup: OptionGroup,
|
2016-10-27 10:30:32 +08:00
|
|
|
Tooltip,
|
|
|
|
Poptip
|
2016-09-09 14:29:19 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
module.exports = iview;
|