@@ -3,6 +3,14 @@ import {
3
3
Avatar as AvatarComponent ,
4
4
Props as AvatarProps ,
5
5
} from './avatar/avatar.component' ;
6
+ import {
7
+ BottomNavigatorTab as BottomNavigatorTabComponent ,
8
+ Props as BottomNavigatorTabProps ,
9
+ } from './tabNavigator/bottomNavigatorTab.component' ;
10
+ import {
11
+ BottomTabNavigator as BottomTabNavigatorComponent ,
12
+ Props as BottomTabNavigatorProps ,
13
+ } from './tabNavigator/bottomTabNavigator.component' ;
6
14
import {
7
15
Button as ButtonComponent ,
8
16
Props as ButtonProps ,
@@ -11,14 +19,34 @@ import {
11
19
ButtonGroup as ButtonGroupComponent ,
12
20
Props as ButtonGroupProps ,
13
21
} from './buttonGroup/buttonGroup.component' ;
22
+ import {
23
+ CheckBox as CheckBoxComponent ,
24
+ Props as CheckBoxProps ,
25
+ } from './checkbox/checkbox.component' ;
14
26
import {
15
27
Input as InputComponent ,
16
28
Props as InputProps ,
17
29
} from './input/input.component' ;
18
30
import {
19
- Text as TextComponent ,
20
- Props as TextProps ,
21
- } from './text/text.component' ;
31
+ Layout as LayoutComponent ,
32
+ Props as LayoutProps ,
33
+ } from './layout/layout.component' ;
34
+ import {
35
+ List as ListComponent ,
36
+ Props as ListProps ,
37
+ } from './list/list.component' ;
38
+ import {
39
+ ListItem as ListItemComponent ,
40
+ Props as ListItemProps ,
41
+ } from './list/listItem.component' ;
42
+ import {
43
+ Modal as ModalComponent ,
44
+ Props as ModalProps ,
45
+ } from './modal/modal.component' ;
46
+ import {
47
+ Popover as PopoverComponent ,
48
+ Props as PopoverProps ,
49
+ } from './popover/popover.component' ;
22
50
import {
23
51
Radio as RadioComponent ,
24
52
Props as RadioProps ,
@@ -27,18 +55,6 @@ import {
27
55
RadioGroup as RadioGroupComponent ,
28
56
Props as RadioGroupProps ,
29
57
} from './radioGroup/radioGroup.component' ;
30
- import {
31
- Layout as LayoutComponent ,
32
- Props as LayoutProps ,
33
- } from './layout/layout.component' ;
34
- import {
35
- Toggle as ToggleComponent ,
36
- Props as ToggleProps ,
37
- } from './toggle/toggle.component' ;
38
- import {
39
- CheckBox as CheckBoxComponent ,
40
- Props as CheckBoxProps ,
41
- } from './checkbox/checkbox.component' ;
42
58
import {
43
59
Tab as TabComponent ,
44
60
Props as TabProps ,
@@ -47,26 +63,22 @@ import {
47
63
TabBar as TabBarComponent ,
48
64
Props as TabBarProps ,
49
65
} from './tab/tabBar.component' ;
50
- import {
51
- Popover as PopoverComponent ,
52
- Props as PopoverProps ,
53
- } from './popover/popover.component' ;
54
- import {
55
- Tooltip as TooltipComponent ,
56
- Props as TooltipProps ,
57
- } from './tooltip/tooltip.component' ;
58
- import {
59
- ViewPager ,
60
- Props as ViewPagerProps ,
61
- } from './viewPager/viewPager.component' ;
62
66
import {
63
67
TabView ,
64
68
Props as TabViewProps ,
65
69
} from './tab/tabView.component' ;
66
70
import {
67
- BottomTabNavigator as BottomTabNavigatorComponent ,
68
- Props as BottomTabNavigatorProps ,
69
- } from './tabNavigator/bottomTabNavigator.component' ;
71
+ Text as TextComponent ,
72
+ Props as TextProps ,
73
+ } from './text/text.component' ;
74
+ import {
75
+ Toggle as ToggleComponent ,
76
+ Props as ToggleProps ,
77
+ } from './toggle/toggle.component' ;
78
+ import {
79
+ Tooltip as TooltipComponent ,
80
+ Props as TooltipProps ,
81
+ } from './tooltip/tooltip.component' ;
70
82
import {
71
83
TopNavigationBar as TopNavigationBarComponent ,
72
84
Props as TopNavigationBarProps ,
@@ -76,13 +88,9 @@ import {
76
88
Props as TopNavigationBarActionProps ,
77
89
} from './topNavigationBar/topNavigationBarAction.component' ;
78
90
import {
79
- BottomNavigatorTab as BottomNavigatorTabComponent ,
80
- Props as BottomNavigatorTabProps ,
81
- } from './tabNavigator/bottomNavigatorTab.component' ;
82
- import {
83
- Modal as ModalComponent ,
84
- Props as ModalProps ,
85
- } from './modal/modal.component' ;
91
+ ViewPager ,
92
+ Props as ViewPagerProps ,
93
+ } from './viewPager/viewPager.component' ;
86
94
import {
87
95
ButtonAlignment ,
88
96
ButtonAlignments ,
@@ -93,68 +101,80 @@ import {
93
101
} from './popover/type' ;
94
102
95
103
const Avatar = styled < AvatarComponent , AvatarProps > ( AvatarComponent ) ;
104
+ const BottomNavigatorTab = styled < BottomNavigatorTabComponent , BottomNavigatorTabProps > ( BottomNavigatorTabComponent ) ;
105
+ const BottomTabNavigator = styled < BottomTabNavigatorComponent , BottomTabNavigatorProps > ( BottomTabNavigatorComponent ) ;
96
106
const Button = styled < ButtonComponent , ButtonProps > ( ButtonComponent ) ;
97
107
const ButtonGroup = styled < ButtonGroupComponent , ButtonGroupProps > ( ButtonGroupComponent ) ;
108
+ const CheckBox = styled < CheckBoxComponent , CheckBoxProps > ( CheckBoxComponent ) ;
98
109
const Input = styled < InputComponent , InputProps > ( InputComponent ) ;
99
- const Text = styled < TextComponent , TextProps > ( TextComponent ) ;
110
+ const Layout = styled < LayoutComponent , LayoutProps > ( LayoutComponent ) ;
111
+ const List = styled < ListComponent , ListProps > ( ListComponent ) ;
112
+ const ListItem = styled < ListItemComponent , ListItemProps > ( ListItemComponent ) ;
113
+ const Modal = styled < ModalComponent , ModalProps > ( ModalComponent ) ;
114
+ const Popover = styled < PopoverComponent , PopoverProps > ( PopoverComponent ) ;
100
115
const Radio = styled < RadioComponent , RadioProps > ( RadioComponent ) ;
101
116
const RadioGroup = styled < RadioGroupComponent , RadioGroupProps > ( RadioGroupComponent ) ;
102
- const Layout = styled < LayoutComponent , LayoutProps > ( LayoutComponent ) ;
103
- const Toggle = styled < ToggleComponent , ToggleProps > ( ToggleComponent ) ;
104
- const CheckBox = styled < CheckBoxComponent , CheckBoxProps > ( CheckBoxComponent ) ;
105
117
const Tab = styled < TabComponent , TabProps > ( TabComponent ) ;
106
118
const TabBar = styled < TabBarComponent , TabBarProps > ( TabBarComponent ) ;
107
- const Popover = styled < PopoverComponent , PopoverProps > ( PopoverComponent ) ;
119
+ const Text = styled < TextComponent , TextProps > ( TextComponent ) ;
120
+ const Toggle = styled < ToggleComponent , ToggleProps > ( ToggleComponent ) ;
108
121
const Tooltip = styled < TooltipComponent , TooltipProps > ( TooltipComponent ) ;
109
- const BottomTabNavigator = styled < BottomTabNavigatorComponent , BottomTabNavigatorProps > ( BottomTabNavigatorComponent ) ;
110
- const BottomNavigatorTab = styled < BottomNavigatorTabComponent , BottomNavigatorTabProps > ( BottomNavigatorTabComponent ) ;
111
122
const TopNavigationBar = styled < TopNavigationBarComponent , TopNavigationBarProps > ( TopNavigationBarComponent ) ;
112
123
const TopNavigationBarAction =
113
124
styled < TopNavigationBarActionComponent , TopNavigationBarActionProps > ( TopNavigationBarActionComponent ) ;
114
- const Modal = styled < ModalComponent , ModalProps > ( ModalComponent ) ;
115
125
116
126
export {
117
127
Avatar ,
128
+ BottomNavigatorTab ,
129
+ BottomTabNavigator ,
118
130
Button ,
119
131
ButtonGroup ,
132
+ CheckBox ,
120
133
Input ,
121
- Text ,
122
134
Layout ,
123
- LayoutProps ,
135
+ List ,
136
+ ListItem ,
137
+ Modal ,
138
+ Popover ,
124
139
Radio ,
125
- RadioProps ,
126
140
RadioGroup ,
127
- RadioGroupProps ,
128
- Toggle ,
129
- ToggleProps ,
130
- CheckBox ,
131
141
Tab ,
132
142
TabBar ,
133
- Popover ,
143
+ TabView ,
144
+ Text ,
145
+ Toggle ,
134
146
Tooltip ,
147
+ TopNavigationBar ,
148
+ TopNavigationBarAction ,
135
149
ViewPager ,
136
- TabView ,
150
+ } ;
151
+
152
+ export {
137
153
AvatarProps ,
154
+ BottomNavigatorTabProps ,
155
+ BottomTabNavigatorProps ,
138
156
ButtonProps ,
139
- InputProps ,
140
157
ButtonGroupProps ,
141
158
CheckBoxProps ,
159
+ InputProps ,
160
+ LayoutProps ,
161
+ ListProps ,
162
+ ListItemProps ,
163
+ ModalProps ,
164
+ PopoverProps ,
165
+ RadioProps ,
166
+ RadioGroupProps ,
142
167
TabProps ,
143
168
TabBarProps ,
144
- PopoverProps ,
145
- TooltipProps ,
146
- ViewPagerProps ,
147
169
TabViewProps ,
148
- BottomTabNavigator ,
149
- BottomTabNavigatorProps ,
150
- BottomNavigatorTab ,
151
- BottomNavigatorTabProps ,
152
- TopNavigationBar ,
170
+ TooltipProps ,
171
+ ToggleProps ,
153
172
TopNavigationBarProps ,
154
- TopNavigationBarAction ,
155
173
TopNavigationBarActionProps ,
156
- Modal ,
157
- ModalProps ,
174
+ ViewPagerProps ,
175
+ } ;
176
+
177
+ export {
158
178
ButtonAlignment ,
159
179
ButtonAlignments ,
160
180
PopoverPlacement ,
0 commit comments