Blame view

src/index.js 1.9 KB
7fa943eb   梁灏   init
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
  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';
9d69bab6   梁灏   add Alert component
20
  import Alert from './components/alert';
49306c7a   梁灏   add Collapse comp...
21
  import Collapse from './components/collapse';
15bae144   梁灏   add Card component
22
  import Card from './components/card';
7c15ac9e   梁灏   add Message compo...
23
  import Message from './components/message';
40f8606f   梁灏   add Notice component
24
  import Notice from './components/notice';
9dde24b6   梁灏   add LoadingBar co...
25
  import LoadingBar from './components/loading-bar';
be966e9f   梁灏   add Modal component
26
  import Modal from './components/modal';
e355dd49   梁灏   add Select Component
27
  import { Select, Option, OptionGroup } from './components/select';
dce3e753   梁灏   add Tooltip compo...
28
  import Tooltip from './components/tooltip';
9699c270   梁灏   add Poptip component
29
  import Poptip from './components/poptip';
7fa943eb   梁灏   init
30
31
32
  
  const iview = {
      Button,
c67c7095   梁灏   add some component
33
      ButtonGroup: Button.Group,
7fa943eb   梁灏   init
34
35
36
37
      Icon,
      Input,
      Switch,
      Radio,
c67c7095   梁灏   add some component
38
      RadioGroup: Radio.Group,
7fa943eb   梁灏   init
39
      Checkbox,
c67c7095   梁灏   add some component
40
      CheckboxGroup: Checkbox.Group,
7fa943eb   梁灏   init
41
42
      InputNumber,
      Row,
c67c7095   梁灏   add some component
43
      iCol: Col,
7fa943eb   梁灏   init
44
45
46
47
48
49
      Page,
      Badge,
      Tag,
      Progress,
      Circle,
      Timeline,
c67c7095   梁灏   add some component
50
      TimelineItem: Timeline.Item,
7fa943eb   梁灏   init
51
52
53
54
      Affix,
      BackTop,
      Spin,
      Steps,
c67c7095   梁灏   add some component
55
      Step: Steps.Step,
9d69bab6   梁灏   add Alert component
56
      Breadcrumb,
c67c7095   梁灏   add some component
57
      BreadcrumbItem: Breadcrumb.Item,
49306c7a   梁灏   add Collapse comp...
58
      Alert,
15bae144   梁灏   add Card component
59
      Collapse,
c67c7095   梁灏   add some component
60
      Panel: Collapse.Panel,
7c15ac9e   梁灏   add Message compo...
61
      Card,
40f8606f   梁灏   add Notice component
62
      Message,
9dde24b6   梁灏   add LoadingBar co...
63
      Notice,
be966e9f   梁灏   add Modal component
64
      LoadingBar,
e355dd49   梁灏   add Select Component
65
66
67
      Modal,
      iSelect: Select,
      iOption: Option,
dce3e753   梁灏   add Tooltip compo...
68
      iOptionGroup: OptionGroup,
9699c270   梁灏   add Poptip component
69
70
      Tooltip,
      Poptip
7fa943eb   梁灏   init
71
72
73
  };
  
  module.exports = iview;