mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-08-15 19:26:42 +08:00

* fix(tabs): delay loadView when animation runs * chore: update api.md * chore: remove unnecessary casting * test: Added disabled test for changing tabs * tabs(ios): added tabs styling in ios * tabs: added iosAlignment property * tabs: textTransform support * tabs: iosAlignment moved to tabstrip * test: add frame-in-tabs test * chore: addressing PR comments * chore: addressing PR comments * chore: call method on the instance instead of call * chore: move IOSAlignment property * chore: update comments * fix: texttransform to tabstrip in bottomnavigation * chore: add new item to native-api-usage * chore: remove unneeded setNativeView call * chore: removed unneeded check Co-authored-by: Dimitar Topuzov <dtopuzov@gmail.com>
46 lines
2.7 KiB
TypeScript
46 lines
2.7 KiB
TypeScript
export { ActionBar, ActionItem, ActionItems, NavigationButton } from "./action-bar";
|
|
export { ActivityIndicator } from "./activity-indicator";
|
|
export { Animation, AnimationDefinition } from "./animation";
|
|
export { BottomNavigation, SelectedIndexChangedEventData } from "./bottom-navigation";
|
|
export { Builder, LoadOptions } from "./builder";
|
|
export { Button } from "./button";
|
|
export { ContentView } from "./content-view";
|
|
export { ViewBase, ShowModalOptions } from "./core/view-base";
|
|
export { View, Template, KeyedTemplate, ShownModallyData } from "./core/view";
|
|
export { DatePicker } from "./date-picker";
|
|
export { EditableTextBase } from "./editable-text-base";
|
|
export { Frame, NavigationEntry, NavigationContext, NavigationTransition, BackstackEntry, ViewEntry } from "./frame";
|
|
export { GestureEventData, GestureEventDataWithState, GestureStateTypes, GestureTypes, GesturesObserver, PanGestureEventData, PinchGestureEventData, RotationGestureEventData, SwipeDirection, SwipeGestureEventData, TouchGestureEventData } from "./gestures";
|
|
export { HtmlView } from "./html-view";
|
|
export { Image } from "./image";
|
|
export { Cache as ImageCache, DownloadError, DownloadRequest, DownloadedData } from "./image-cache";
|
|
export { Label } from "./label";
|
|
export * from "./layouts";
|
|
export { ListPicker } from "./list-picker";
|
|
export { ListView, ItemEventData, TemplatedItemsView, ItemsSource } from "./list-view";
|
|
export { Page, NavigatedData } from "./page";
|
|
export { Placeholder, CreateViewEventData } from "./placeholder";
|
|
export { Progress } from "./progress";
|
|
export { ProxyViewContainer } from "./proxy-view-container";
|
|
export { Repeater } from "./repeater";
|
|
export { ScrollView, ScrollEventData } from "./scroll-view";
|
|
export { SearchBar } from "./search-bar";
|
|
export { SegmentedBar, SegmentedBarItem } from "./segmented-bar";
|
|
export { Slider } from "./slider";
|
|
export { Style, CommonLayoutParams } from "./styling/style";
|
|
export { Switch } from "./switch";
|
|
export { TabContentItem } from "./tab-navigation-base/tab-content-item";
|
|
export { TabNavigationBase } from "./tab-navigation-base/tab-navigation-base";
|
|
export { TabStrip, TabStripItemEventData } from "./tab-navigation-base/tab-strip";
|
|
export { TabStripItem } from "./tab-navigation-base/tab-strip-item";
|
|
export { TabView, TabViewItem } from "./tab-view";
|
|
export { Tabs, IOSTabBarItemsAlignment } from "./tabs";
|
|
export { TextBase } from "./text-base";
|
|
export { FormattedString } from "./text-base/formatted-string";
|
|
export { Span } from "./text-base/span";
|
|
export { TextField } from "./text-field";
|
|
export { TextView } from "./text-view";
|
|
export { TimePicker } from "./time-picker";
|
|
export { Transition } from "./transition";
|
|
export { WebView } from "./web-view";
|