Skip to content

Export missing typings #1452

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Aug 8, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions generatedTypes/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,9 @@ export {default as ActionBar, ActionBarProps} from './components/actionBar';
export {default as Avatar, AvatarPropTypes, AvatarProps} from './components/avatar';
export {default as Badge, BadgeProps} from './components/badge';
export {default as Card, CardPropTypes, CardProps, CardSectionProps} from './components/card';
export {default as ConnectionStatusBar, ConnectionStatusBarProps} from './components/connectionStatusBar';
export {default as Constants} from './helpers/Constants';
export {default as GradientSlider, GradientSliderProps} from './components/slider/GradientSlider';
export {default as View, ViewPropTypes, ViewProps} from './components/view';
export {default as Text, TextPropTypes, TextProps} from './components/text';
export {default as TouchableOpacity, TouchableOpacityProps} from './components/touchableOpacity';
Expand All @@ -48,6 +50,7 @@ export {default as RadioGroup, RadioGroupPropTypes, RadioGroupProps} from './com
export {default as SectionsWheelPicker, SectionsWheelPickerProps} from './components/sectionsWheelPicker';
export {default as HapticService, HapticType} from './services/HapticService';
export {default as SegmentedControl, SegmentedControlProps, SegmentedControlItemProps} from './components/segmentedControl';
export {default as Slider, SliderProps} from './components/slider';
export {default as Switch, SwitchProps} from './components/switch';
export {default as TabController, TabControllerProps, TabControllerItemProps} from './components/tabController';
export {default as TabController2} from './components/tabController2';
Expand Down Expand Up @@ -80,14 +83,11 @@ export {default as Wizard, WizardProps, WizardStepProps, WizardStepStates, Wizar

/* All components with manual typings */
export {
ConnectionStatusBar,
BaseInput,
TextArea,
MaskedInput,
ListItem,
ProgressBar,
Slider,
GradientSlider,
ColorSliderGroup,
Stepper,
TagsInput,
Expand Down
3 changes: 2 additions & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ export {default as Avatar, AvatarPropTypes, AvatarProps} from './components/avat
export {AvatarHelper} from './helpers';
export {default as Badge, BadgeProps} from './components/badge';
export {default as Card, CardPropTypes, CardProps, CardSectionProps} from './components/card';
export {default as ConnectionStatusBar, ConnectionStatusBarProps} from './components/connectionStatusBar';
export {default as Constants} from './helpers/Constants';
export {default as HapticService, HapticType} from './services/HapticService';
export {default as View, ViewPropTypes, ViewProps} from './components/view';
Expand Down Expand Up @@ -80,7 +81,7 @@ export {default as LogService} from './services/LogService';

//================ Manual typings (all those exports should be removed one day) ==========
export {
ConnectionStatusBar, ChipsInput,
ChipsInput,
BaseInput, TextArea, TextField, MaskedInput, ListItem, Picker,
PickerProps, ProgressBar, Stepper,
TagsInput, SharedTransition, Toast, WheelPickerDialog, Assets,
Expand Down