Blame view

index.js 1.58 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';
7fa943eb   梁灏   init
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
  
  const iview = {
      Button,
      Icon,
      Input,
      Switch,
      Radio,
      Checkbox,
      InputNumber,
      Row,
      Col,
      Page,
      Badge,
      Tag,
      Progress,
      Circle,
      Timeline,
      Affix,
      BackTop,
      Spin,
      Steps,
9d69bab6   梁灏   add Alert component
49
      Breadcrumb,
49306c7a   梁灏   add Collapse comp...
50
      Alert,
15bae144   梁灏   add Card component
51
      Collapse,
7c15ac9e   梁灏   add Message compo...
52
      Card,
40f8606f   梁灏   add Notice component
53
      Message,
9dde24b6   梁灏   add LoadingBar co...
54
      Notice,
be966e9f   梁灏   add Modal component
55
      LoadingBar,
e355dd49   梁灏   add Select Component
56
57
58
59
      Modal,
      iSelect: Select,
      iOption: Option,
      iOptionGroup: OptionGroup
7fa943eb   梁灏   init
60
61
62
  };
  
  module.exports = iview;