Skip to content

Commit 953a72b

Browse files
authored
Export missing typings (#1452)
1 parent 05ebf9c commit 953a72b

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

generatedTypes/index.d.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,9 @@ export {default as ActionBar, ActionBarProps} from './components/actionBar';
2727
export {default as Avatar, AvatarPropTypes, AvatarProps} from './components/avatar';
2828
export {default as Badge, BadgeProps} from './components/badge';
2929
export {default as Card, CardPropTypes, CardProps, CardSectionProps} from './components/card';
30+
export {default as ConnectionStatusBar, ConnectionStatusBarProps} from './components/connectionStatusBar';
3031
export {default as Constants} from './helpers/Constants';
32+
export {default as GradientSlider, GradientSliderProps} from './components/slider/GradientSlider';
3133
export {default as View, ViewPropTypes, ViewProps} from './components/view';
3234
export {default as Text, TextPropTypes, TextProps} from './components/text';
3335
export {default as TouchableOpacity, TouchableOpacityProps} from './components/touchableOpacity';
@@ -48,6 +50,7 @@ export {default as RadioGroup, RadioGroupPropTypes, RadioGroupProps} from './com
4850
export {default as SectionsWheelPicker, SectionsWheelPickerProps} from './components/sectionsWheelPicker';
4951
export {default as HapticService, HapticType} from './services/HapticService';
5052
export {default as SegmentedControl, SegmentedControlProps, SegmentedControlItemProps} from './components/segmentedControl';
53+
export {default as Slider, SliderProps} from './components/slider';
5154
export {default as Switch, SwitchProps} from './components/switch';
5255
export {default as TabController, TabControllerProps, TabControllerItemProps} from './components/tabController';
5356
export {default as TabController2} from './components/tabController2';
@@ -80,14 +83,11 @@ export {default as Wizard, WizardProps, WizardStepProps, WizardStepStates, Wizar
8083

8184
/* All components with manual typings */
8285
export {
83-
ConnectionStatusBar,
8486
BaseInput,
8587
TextArea,
8688
MaskedInput,
8789
ListItem,
8890
ProgressBar,
89-
Slider,
90-
GradientSlider,
9191
ColorSliderGroup,
9292
Stepper,
9393
TagsInput,

src/index.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ export {default as Avatar, AvatarPropTypes, AvatarProps} from './components/avat
2424
export {AvatarHelper} from './helpers';
2525
export {default as Badge, BadgeProps} from './components/badge';
2626
export {default as Card, CardPropTypes, CardProps, CardSectionProps} from './components/card';
27+
export {default as ConnectionStatusBar, ConnectionStatusBarProps} from './components/connectionStatusBar';
2728
export {default as Constants} from './helpers/Constants';
2829
export {default as HapticService, HapticType} from './services/HapticService';
2930
export {default as View, ViewPropTypes, ViewProps} from './components/view';
@@ -80,7 +81,7 @@ export {default as LogService} from './services/LogService';
8081

8182
//================ Manual typings (all those exports should be removed one day) ==========
8283
export {
83-
ConnectionStatusBar, ChipsInput,
84+
ChipsInput,
8485
BaseInput, TextArea, TextField, MaskedInput, ListItem, Picker,
8586
PickerProps, ProgressBar, Stepper,
8687
TagsInput, SharedTransition, Toast, WheelPickerDialog, Assets,

0 commit comments

Comments
 (0)