react-native-acoustic-connect-beta 17.0.2 → 18.0.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/AcousticConnectRN.podspec +68 -0
- package/Examples/SampleUI/.bundle/config +2 -0
- package/Examples/SampleUI/.eslintrc.js +4 -0
- package/Examples/SampleUI/.prettierrc.js +7 -0
- package/Examples/SampleUI/.watchmanconfig +1 -0
- package/Examples/SampleUI/App.js +1 -0
- package/Examples/SampleUI/Gemfile +10 -0
- package/Examples/SampleUI/Gemfile.lock +121 -0
- package/Examples/SampleUI/README.md +79 -0
- package/Examples/SampleUI/__tests__/App.test.tsx +17 -0
- package/Examples/SampleUI/android/app/build.gradle +124 -0
- package/{Example/nativebase-v3-kitchensink → Examples/SampleUI}/android/app/debug.keystore +0 -0
- package/{Example/nativebase-v3-kitchensink → Examples/SampleUI}/android/app/proguard-rules.pro +0 -0
- package/Examples/SampleUI/android/app/src/debug/AndroidManifest.xml +9 -0
- package/Examples/SampleUI/android/app/src/main/AndroidManifest.xml +26 -0
- package/Examples/SampleUI/android/app/src/main/java/com/sampleui/MainActivity.kt +23 -0
- package/Examples/SampleUI/android/app/src/main/java/com/sampleui/MainApplication.kt +53 -0
- package/Examples/SampleUI/android/app/src/main/res/drawable/rn_edit_text_material.xml +37 -0
- package/Examples/SampleUI/android/app/src/main/res/mipmap-hdpi/ic_launcher.png +0 -0
- package/Examples/SampleUI/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png +0 -0
- package/Examples/SampleUI/android/app/src/main/res/mipmap-mdpi/ic_launcher.png +0 -0
- package/Examples/SampleUI/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png +0 -0
- package/Examples/SampleUI/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png +0 -0
- package/Examples/SampleUI/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png +0 -0
- package/Examples/SampleUI/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png +0 -0
- package/Examples/SampleUI/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png +0 -0
- package/Examples/SampleUI/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png +0 -0
- package/Examples/SampleUI/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png +0 -0
- package/Examples/SampleUI/android/app/src/main/res/values/strings.xml +3 -0
- package/Examples/SampleUI/android/app/src/main/res/values/styles.xml +9 -0
- package/Examples/SampleUI/android/build.gradle +21 -0
- package/Examples/SampleUI/android/gradle/wrapper/gradle-wrapper.jar +0 -0
- package/Examples/SampleUI/android/gradle/wrapper/gradle-wrapper.properties +7 -0
- package/Examples/SampleUI/android/gradle.properties +39 -0
- package/Examples/SampleUI/android/gradlew +252 -0
- package/Examples/SampleUI/android/gradlew.bat +94 -0
- package/Examples/SampleUI/android/settings.gradle +21 -0
- package/Examples/SampleUI/app.json +51 -0
- package/Examples/SampleUI/assets/fonts/Abel-Regular.ttf +0 -0
- package/Examples/SampleUI/assets/fonts/NotoSans-Regular.ttf +0 -0
- package/Examples/SampleUI/assets/images/android-icon.png +0 -0
- package/Examples/SampleUI/assets/images/artist-1.jpg +0 -0
- package/Examples/SampleUI/assets/images/artist-2.jpg +0 -0
- package/Examples/SampleUI/assets/images/avatar.png +0 -0
- package/Examples/SampleUI/assets/images/beach.jpg +0 -0
- package/Examples/SampleUI/assets/images/bridge.jpg +0 -0
- package/Examples/SampleUI/assets/images/chameleon.jpg +0 -0
- package/Examples/SampleUI/assets/images/city.jpg +0 -0
- package/Examples/SampleUI/assets/images/email-icon.png +0 -0
- package/Examples/SampleUI/assets/images/favorite.png +0 -0
- package/Examples/SampleUI/assets/images/forest.jpg +0 -0
- package/Examples/SampleUI/assets/images/paper-icon.png +0 -0
- package/Examples/SampleUI/assets/images/players-2.jpg +0 -0
- package/Examples/SampleUI/assets/images/players.jpg +0 -0
- package/Examples/SampleUI/assets/images/restaurant-1.jpg +0 -0
- package/Examples/SampleUI/assets/images/restaurant-2.jpg +0 -0
- package/Examples/SampleUI/assets/images/song-1.jpg +0 -0
- package/Examples/SampleUI/assets/images/song-2.jpg +0 -0
- package/Examples/SampleUI/assets/images/splash.png +0 -0
- package/Examples/SampleUI/assets/images/strawberries.jpg +0 -0
- package/Examples/SampleUI/assets/images/wrecked-ship.jpg +0 -0
- package/Examples/SampleUI/assets/styles/fonts.css +47 -0
- package/Examples/SampleUI/babel.config.js +22 -0
- package/Examples/SampleUI/index.js +9 -0
- package/Examples/SampleUI/ios/Podfile +58 -0
- package/Examples/SampleUI/ios/SampleUI/AppDelegate.h +7 -0
- package/Examples/SampleUI/ios/SampleUI/AppDelegate.mm +31 -0
- package/Examples/SampleUI/ios/SampleUI/Images.xcassets/AppIcon.appiconset/Contents.json +53 -0
- package/{Example/nativebase-v3-kitchensink/ios/KitchenSinkappnativebase → Examples/SampleUI/ios/SampleUI}/Images.xcassets/Contents.json +0 -0
- package/Examples/SampleUI/ios/SampleUI/Info.plist +52 -0
- package/Examples/SampleUI/ios/SampleUI/LaunchScreen.storyboard +47 -0
- package/Examples/SampleUI/ios/SampleUI/PrivacyInfo.xcprivacy +48 -0
- package/Examples/SampleUI/ios/SampleUI/main.m +10 -0
- package/Examples/SampleUI/ios/SampleUI.xcodeproj/project.pbxproj +785 -0
- package/Examples/SampleUI/ios/SampleUI.xcodeproj/xcshareddata/xcschemes/SampleUI.xcscheme +88 -0
- package/Examples/SampleUI/ios/SampleUI.xcworkspace/contents.xcworkspacedata +10 -0
- package/Examples/SampleUI/ios/SampleUITests/Info.plist +24 -0
- package/Examples/SampleUI/ios/SampleUITests/SampleUITests.m +66 -0
- package/Examples/SampleUI/jest.config.js +3 -0
- package/Examples/SampleUI/metro.config.js +53 -0
- package/Examples/SampleUI/package-lock.json +17033 -0
- package/Examples/SampleUI/package.json +62 -0
- package/Examples/SampleUI/src/DrawerItems.tsx +322 -0
- package/Examples/SampleUI/src/ExampleList.tsx +175 -0
- package/Examples/SampleUI/src/Examples/ActivityIndicatorExample.tsx +73 -0
- package/Examples/SampleUI/src/Examples/AnimatedFABExample/AnimatedFABExample.tsx +220 -0
- package/Examples/SampleUI/src/Examples/AnimatedFABExample/CustomFAB.tsx +70 -0
- package/Examples/SampleUI/src/Examples/AnimatedFABExample/CustomFABControls.tsx +146 -0
- package/Examples/SampleUI/src/Examples/AnimatedFABExample/index.ts +1 -0
- package/Examples/SampleUI/src/Examples/AppbarExample.tsx +263 -0
- package/Examples/SampleUI/src/Examples/AvatarExample.tsx +76 -0
- package/Examples/SampleUI/src/Examples/BadgeExample.tsx +97 -0
- package/Examples/SampleUI/src/Examples/BannerExample.tsx +152 -0
- package/Examples/SampleUI/src/Examples/BottomNavigationBarExample.tsx +94 -0
- package/Examples/SampleUI/src/Examples/BottomNavigationExample.tsx +205 -0
- package/Examples/SampleUI/src/Examples/ButtonExample.tsx +405 -0
- package/Examples/SampleUI/src/Examples/CardExample.tsx +245 -0
- package/Examples/SampleUI/src/Examples/CheckboxExample.tsx +87 -0
- package/Examples/SampleUI/src/Examples/CheckboxItemExample.tsx +72 -0
- package/Examples/SampleUI/src/Examples/ChipExample.tsx +432 -0
- package/Examples/SampleUI/src/Examples/DataTableExample.tsx +128 -0
- package/Examples/SampleUI/src/Examples/DialogExample.tsx +131 -0
- package/Examples/SampleUI/src/Examples/Dialogs/DialogTextComponent.tsx +31 -0
- package/Examples/SampleUI/src/Examples/Dialogs/DialogWithCustomColors.tsx +57 -0
- package/Examples/SampleUI/src/Examples/Dialogs/DialogWithDismissableBackButton.tsx +38 -0
- package/Examples/SampleUI/src/Examples/Dialogs/DialogWithIcon.tsx +42 -0
- package/Examples/SampleUI/src/Examples/Dialogs/DialogWithLoadingIndicator.tsx +48 -0
- package/Examples/SampleUI/src/Examples/Dialogs/DialogWithLongText.tsx +81 -0
- package/Examples/SampleUI/src/Examples/Dialogs/DialogWithRadioBtns.tsx +111 -0
- package/Examples/SampleUI/src/Examples/Dialogs/UndismissableDialog.tsx +30 -0
- package/Examples/SampleUI/src/Examples/Dialogs/index.tsx +7 -0
- package/Examples/SampleUI/src/Examples/DividerExample.tsx +30 -0
- package/Examples/SampleUI/src/Examples/FABExample.tsx +226 -0
- package/Examples/SampleUI/src/Examples/IconButtonExample.tsx +230 -0
- package/Examples/SampleUI/src/Examples/IconExample.tsx +50 -0
- package/Examples/SampleUI/src/Examples/ListAccordionExample.tsx +65 -0
- package/Examples/SampleUI/src/Examples/ListAccordionGroupExample.tsx +80 -0
- package/Examples/SampleUI/src/Examples/ListItemExample.tsx +310 -0
- package/Examples/SampleUI/src/Examples/ListSectionExample.tsx +159 -0
- package/Examples/SampleUI/src/Examples/MaterialBottomTabNavigatorExample.tsx +87 -0
- package/Examples/SampleUI/src/Examples/MenuExample.tsx +211 -0
- package/Examples/SampleUI/src/Examples/ProgressBarExample.tsx +142 -0
- package/Examples/SampleUI/src/Examples/RadioButtonExample.tsx +104 -0
- package/Examples/SampleUI/src/Examples/RadioButtonGroupExample.tsx +67 -0
- package/Examples/SampleUI/src/Examples/RadioButtonItemExample.tsx +77 -0
- package/Examples/SampleUI/src/Examples/SearchbarExample.tsx +249 -0
- package/Examples/SampleUI/src/Examples/SegmentedButtons/SegmentedButtonCustomColorCheck.tsx +93 -0
- package/Examples/SampleUI/src/Examples/SegmentedButtons/SegmentedButtonDefault.tsx +49 -0
- package/Examples/SampleUI/src/Examples/SegmentedButtons/SegmentedButtonDisabled.tsx +47 -0
- package/Examples/SampleUI/src/Examples/SegmentedButtons/SegmentedButtonMultiselect.tsx +50 -0
- package/Examples/SampleUI/src/Examples/SegmentedButtons/SegmentedButtonMultiselectIcons.tsx +49 -0
- package/Examples/SampleUI/src/Examples/SegmentedButtons/SegmentedButtonMultiselectRealCase.tsx +114 -0
- package/Examples/SampleUI/src/Examples/SegmentedButtons/SegmentedButtonOnlyIcons.tsx +40 -0
- package/Examples/SampleUI/src/Examples/SegmentedButtons/SegmentedButtonOnlyIconsWithCheck.tsx +43 -0
- package/Examples/SampleUI/src/Examples/SegmentedButtons/SegmentedButtonRealCase.tsx +97 -0
- package/Examples/SampleUI/src/Examples/SegmentedButtons/SegmentedButtonWithDensity.tsx +47 -0
- package/Examples/SampleUI/src/Examples/SegmentedButtons/SegmentedButtonWithSelectedCheck.tsx +52 -0
- package/Examples/SampleUI/src/Examples/SegmentedButtons/index.ts +9 -0
- package/Examples/SampleUI/src/Examples/SegmentedButtonsExample.tsx +57 -0
- package/Examples/SampleUI/src/Examples/SnackbarExample.tsx +141 -0
- package/Examples/SampleUI/src/Examples/SurfaceExample.tsx +130 -0
- package/Examples/SampleUI/src/Examples/SwitchExample.tsx +105 -0
- package/Examples/SampleUI/src/Examples/TeamDetails.tsx +291 -0
- package/Examples/SampleUI/src/Examples/TeamsList.tsx +57 -0
- package/Examples/SampleUI/src/Examples/TextExample.tsx +132 -0
- package/Examples/SampleUI/src/Examples/TextInputExample.tsx +914 -0
- package/Examples/SampleUI/src/Examples/ThemeExample.tsx +41 -0
- package/Examples/SampleUI/src/Examples/ThemingWithReactNavigation.tsx +75 -0
- package/Examples/SampleUI/src/Examples/ToggleButtonExample.tsx +128 -0
- package/Examples/SampleUI/src/Examples/TooltipExample.tsx +191 -0
- package/Examples/SampleUI/src/Examples/TouchableRippleExample.tsx +37 -0
- package/Examples/SampleUI/src/RootNavigator.tsx +86 -0
- package/Examples/SampleUI/src/ScreenWrapper.tsx +67 -0
- package/Examples/SampleUI/src/components/ActivityIndicator.tsx +254 -0
- package/Examples/SampleUI/src/components/Appbar/Appbar.tsx +364 -0
- package/Examples/SampleUI/src/components/Appbar/AppbarAction.tsx +132 -0
- package/Examples/SampleUI/src/components/Appbar/AppbarBackAction.tsx +77 -0
- package/Examples/SampleUI/src/components/Appbar/AppbarBackIcon.tsx +52 -0
- package/Examples/SampleUI/src/components/Appbar/AppbarContent.tsx +249 -0
- package/Examples/SampleUI/src/components/Appbar/AppbarHeader.tsx +174 -0
- package/Examples/SampleUI/src/components/Appbar/index.ts +22 -0
- package/Examples/SampleUI/src/components/Appbar/utils.ts +188 -0
- package/Examples/SampleUI/src/components/Avatar/Avatar.tsx +8 -0
- package/Examples/SampleUI/src/components/Avatar/AvatarIcon.tsx +87 -0
- package/Examples/SampleUI/src/components/Avatar/AvatarImage.tsx +128 -0
- package/Examples/SampleUI/src/components/Avatar/AvatarText.tsx +127 -0
- package/Examples/SampleUI/src/components/Badge.tsx +138 -0
- package/Examples/SampleUI/src/components/Banner.tsx +302 -0
- package/Examples/SampleUI/src/components/BottomNavigation/BottomNavigation.tsx +643 -0
- package/Examples/SampleUI/src/components/BottomNavigation/BottomNavigationBar.tsx +1039 -0
- package/Examples/SampleUI/src/components/BottomNavigation/BottomNavigationRouteScreen.tsx +31 -0
- package/Examples/SampleUI/src/components/BottomNavigation/utils.ts +70 -0
- package/Examples/SampleUI/src/components/Button/Button.tsx +503 -0
- package/Examples/SampleUI/src/components/Button/utils.tsx +272 -0
- package/Examples/SampleUI/src/components/Card/Card.tsx +373 -0
- package/Examples/SampleUI/src/components/Card/CardActions.tsx +74 -0
- package/Examples/SampleUI/src/components/Card/CardContent.tsx +99 -0
- package/Examples/SampleUI/src/components/Card/CardCover.tsx +96 -0
- package/Examples/SampleUI/src/components/Card/CardTitle.tsx +236 -0
- package/Examples/SampleUI/src/components/Card/utils.tsx +110 -0
- package/Examples/SampleUI/src/components/Checkbox/Checkbox.tsx +78 -0
- package/Examples/SampleUI/src/components/Checkbox/CheckboxAndroid.tsx +180 -0
- package/Examples/SampleUI/src/components/Checkbox/CheckboxIOS.tsx +104 -0
- package/Examples/SampleUI/src/components/Checkbox/CheckboxItem.tsx +236 -0
- package/Examples/SampleUI/src/components/Checkbox/index.ts +19 -0
- package/Examples/SampleUI/src/components/Checkbox/utils.ts +183 -0
- package/Examples/SampleUI/src/components/Chip/Chip.tsx +513 -0
- package/Examples/SampleUI/src/components/Chip/helpers.tsx +322 -0
- package/Examples/SampleUI/src/components/CrossFadeIcon.tsx +140 -0
- package/Examples/SampleUI/src/components/DataTable/DataTable.tsx +138 -0
- package/Examples/SampleUI/src/components/DataTable/DataTableCell.tsx +132 -0
- package/Examples/SampleUI/src/components/DataTable/DataTableHeader.tsx +82 -0
- package/Examples/SampleUI/src/components/DataTable/DataTablePagination.tsx +407 -0
- package/Examples/SampleUI/src/components/DataTable/DataTableRow.tsx +107 -0
- package/Examples/SampleUI/src/components/DataTable/DataTableTitle.tsx +208 -0
- package/Examples/SampleUI/src/components/Dialog/Dialog.tsx +191 -0
- package/Examples/SampleUI/src/components/Dialog/DialogActions.tsx +94 -0
- package/Examples/SampleUI/src/components/Dialog/DialogContent.tsx +54 -0
- package/Examples/SampleUI/src/components/Dialog/DialogIcon.tsx +100 -0
- package/Examples/SampleUI/src/components/Dialog/DialogScrollArea.tsx +88 -0
- package/Examples/SampleUI/src/components/Dialog/DialogTitle.tsx +94 -0
- package/Examples/SampleUI/src/components/Divider.tsx +102 -0
- package/Examples/SampleUI/src/components/Drawer/Drawer.tsx +8 -0
- package/Examples/SampleUI/src/components/Drawer/DrawerCollapsedItem.tsx +282 -0
- package/Examples/SampleUI/src/components/Drawer/DrawerItem.tsx +209 -0
- package/Examples/SampleUI/src/components/Drawer/DrawerSection.tsx +138 -0
- package/Examples/SampleUI/src/components/FAB/AnimatedFAB.tsx +619 -0
- package/Examples/SampleUI/src/components/FAB/FAB.tsx +371 -0
- package/Examples/SampleUI/src/components/FAB/FABGroup.tsx +532 -0
- package/Examples/SampleUI/src/components/FAB/index.ts +13 -0
- package/Examples/SampleUI/src/components/FAB/utils.ts +474 -0
- package/Examples/SampleUI/src/components/HelperText/HelperText.tsx +168 -0
- package/Examples/SampleUI/src/components/HelperText/utils.ts +30 -0
- package/Examples/SampleUI/src/components/Icon.tsx +170 -0
- package/Examples/SampleUI/src/components/IconButton/IconButton.tsx +234 -0
- package/Examples/SampleUI/src/components/IconButton/utils.ts +190 -0
- package/Examples/SampleUI/src/components/List/List.tsx +20 -0
- package/Examples/SampleUI/src/components/List/ListAccordion.tsx +391 -0
- package/Examples/SampleUI/src/components/List/ListAccordionGroup.tsx +88 -0
- package/Examples/SampleUI/src/components/List/ListIcon.tsx +79 -0
- package/Examples/SampleUI/src/components/List/ListImage.tsx +89 -0
- package/Examples/SampleUI/src/components/List/ListItem.tsx +313 -0
- package/Examples/SampleUI/src/components/List/ListSection.tsx +87 -0
- package/Examples/SampleUI/src/components/List/ListSubheader.tsx +79 -0
- package/Examples/SampleUI/src/components/List/utils.ts +113 -0
- package/Examples/SampleUI/src/components/MaterialCommunityIcon.tsx +121 -0
- package/Examples/SampleUI/src/components/Menu/Menu.tsx +711 -0
- package/Examples/SampleUI/src/components/Menu/MenuItem.tsx +257 -0
- package/Examples/SampleUI/src/components/Menu/utils.ts +110 -0
- package/Examples/SampleUI/src/components/Modal.tsx +245 -0
- package/Examples/SampleUI/src/components/Portal/Portal.tsx +69 -0
- package/Examples/SampleUI/src/components/Portal/PortalConsumer.tsx +44 -0
- package/Examples/SampleUI/src/components/Portal/PortalHost.tsx +143 -0
- package/Examples/SampleUI/src/components/Portal/PortalManager.tsx +54 -0
- package/Examples/SampleUI/src/components/ProgressBar.tsx +292 -0
- package/Examples/SampleUI/src/components/RadioButton/RadioButton.tsx +86 -0
- package/Examples/SampleUI/src/components/RadioButton/RadioButtonAndroid.tsx +202 -0
- package/Examples/SampleUI/src/components/RadioButton/RadioButtonGroup.tsx +67 -0
- package/Examples/SampleUI/src/components/RadioButton/RadioButtonIOS.tsx +130 -0
- package/Examples/SampleUI/src/components/RadioButton/RadioButtonItem.tsx +268 -0
- package/Examples/SampleUI/src/components/RadioButton/index.ts +22 -0
- package/Examples/SampleUI/src/components/RadioButton/utils.ts +37 -0
- package/Examples/SampleUI/src/components/Searchbar.tsx +459 -0
- package/Examples/SampleUI/src/components/SegmentedButtons/SegmentedButtonItem.tsx +271 -0
- package/Examples/SampleUI/src/components/SegmentedButtons/SegmentedButtons.tsx +197 -0
- package/Examples/SampleUI/src/components/SegmentedButtons/utils.ts +179 -0
- package/Examples/SampleUI/src/components/Snackbar.tsx +430 -0
- package/Examples/SampleUI/src/components/Surface.tsx +376 -0
- package/Examples/SampleUI/src/components/Switch/Switch.tsx +108 -0
- package/Examples/SampleUI/src/components/Switch/utils.ts +113 -0
- package/Examples/SampleUI/src/components/TextInput/Addons/Outline.tsx +64 -0
- package/Examples/SampleUI/src/components/TextInput/Addons/Underline.tsx +78 -0
- package/Examples/SampleUI/src/components/TextInput/Adornment/TextInputAdornment.tsx +208 -0
- package/Examples/SampleUI/src/components/TextInput/Adornment/TextInputAffix.tsx +212 -0
- package/Examples/SampleUI/src/components/TextInput/Adornment/TextInputIcon.tsx +195 -0
- package/Examples/SampleUI/src/components/TextInput/Adornment/enums.tsx +12 -0
- package/Examples/SampleUI/src/components/TextInput/Adornment/types.tsx +11 -0
- package/Examples/SampleUI/src/components/TextInput/Adornment/utils.ts +48 -0
- package/Examples/SampleUI/src/components/TextInput/Label/InputLabel.tsx +217 -0
- package/Examples/SampleUI/src/components/TextInput/Label/LabelBackground.tsx +100 -0
- package/Examples/SampleUI/src/components/TextInput/TextInput.tsx +572 -0
- package/Examples/SampleUI/src/components/TextInput/TextInputFlat.tsx +475 -0
- package/Examples/SampleUI/src/components/TextInput/TextInputOutlined.tsx +450 -0
- package/Examples/SampleUI/src/components/TextInput/constants.tsx +48 -0
- package/Examples/SampleUI/src/components/TextInput/helpers.tsx +612 -0
- package/Examples/SampleUI/src/components/TextInput/types.tsx +155 -0
- package/Examples/SampleUI/src/components/ToggleButton/ToggleButton.tsx +187 -0
- package/Examples/SampleUI/src/components/ToggleButton/ToggleButtonGroup.tsx +72 -0
- package/Examples/SampleUI/src/components/ToggleButton/ToggleButtonRow.tsx +107 -0
- package/Examples/SampleUI/src/components/ToggleButton/index.ts +16 -0
- package/Examples/SampleUI/src/components/ToggleButton/utils.ts +26 -0
- package/Examples/SampleUI/src/components/Tooltip/Tooltip.tsx +249 -0
- package/Examples/SampleUI/src/components/Tooltip/utils.ts +129 -0
- package/Examples/SampleUI/src/components/TouchableRipple/Pressable.tsx +41 -0
- package/Examples/SampleUI/src/components/TouchableRipple/TouchableRipple.native.tsx +145 -0
- package/Examples/SampleUI/src/components/TouchableRipple/TouchableRipple.tsx +317 -0
- package/Examples/SampleUI/src/components/TouchableRipple/utils.ts +66 -0
- package/Examples/SampleUI/src/components/Typography/AnimatedText.tsx +107 -0
- package/Examples/SampleUI/src/components/Typography/Text.tsx +184 -0
- package/Examples/SampleUI/src/components/Typography/types.tsx +5 -0
- package/Examples/SampleUI/src/components/Typography/v2/Caption.tsx +50 -0
- package/Examples/SampleUI/src/components/Typography/v2/Headline.tsx +52 -0
- package/Examples/SampleUI/src/components/Typography/v2/Paragraph.tsx +49 -0
- package/Examples/SampleUI/src/components/Typography/v2/StyledText.tsx +56 -0
- package/Examples/SampleUI/src/components/Typography/v2/Subheading.tsx +50 -0
- package/Examples/SampleUI/src/components/Typography/v2/Text.tsx +62 -0
- package/Examples/SampleUI/src/components/Typography/v2/Title.tsx +49 -0
- package/Examples/SampleUI/src/components/Typography/v2/index.ts +5 -0
- package/Examples/SampleUI/src/core/PaperProvider.tsx +122 -0
- package/Examples/SampleUI/src/core/SafeAreaProviderCompat.tsx +65 -0
- package/Examples/SampleUI/src/core/settings.tsx +23 -0
- package/Examples/SampleUI/src/core/theming.tsx +170 -0
- package/Examples/SampleUI/src/index.native.tsx +270 -0
- package/Examples/SampleUI/src/index.tsx +226 -0
- package/Examples/SampleUI/src/react-navigation/index.tsx +19 -0
- package/Examples/SampleUI/src/react-navigation/navigators/createMaterialBottomTabNavigator.tsx +72 -0
- package/Examples/SampleUI/src/react-navigation/types.tsx +126 -0
- package/Examples/SampleUI/src/react-navigation/views/MaterialBottomTabView.tsx +140 -0
- package/Examples/SampleUI/src/styles/__tests__/fonts.test.js +290 -0
- package/Examples/SampleUI/src/styles/fonts.tsx +143 -0
- package/Examples/SampleUI/src/styles/overlay.tsx +70 -0
- package/Examples/SampleUI/src/styles/shadow.tsx +109 -0
- package/Examples/SampleUI/src/styles/themes/index.ts +4 -0
- package/Examples/SampleUI/src/styles/themes/v2/DarkTheme.tsx +30 -0
- package/Examples/SampleUI/src/styles/themes/v2/LightTheme.tsx +30 -0
- package/Examples/SampleUI/src/styles/themes/v2/colors.tsx +277 -0
- package/Examples/SampleUI/src/styles/themes/v3/DarkTheme.tsx +66 -0
- package/Examples/SampleUI/src/styles/themes/v3/LightTheme.tsx +69 -0
- package/Examples/SampleUI/src/styles/themes/v3/tokens.tsx +230 -0
- package/Examples/SampleUI/src/utils/BackHandler/BackHandler.native.tsx +3 -0
- package/Examples/SampleUI/src/utils/BackHandler/BackHandler.tsx +11 -0
- package/Examples/SampleUI/src/utils/addEventListener.tsx +56 -0
- package/Examples/SampleUI/src/utils/forwardRef.tsx +23 -0
- package/Examples/SampleUI/src/utils/getContrastingColor.tsx +15 -0
- package/Examples/SampleUI/src/utils/hasTouchHandler.tsx +23 -0
- package/Examples/SampleUI/src/utils/roundLayoutSize.ts +2 -0
- package/Examples/SampleUI/src/utils/splitStyles.ts +60 -0
- package/Examples/SampleUI/src/utils/useAnimatedValue.tsx +9 -0
- package/Examples/SampleUI/src/utils/useAnimatedValueArray.tsx +13 -0
- package/Examples/SampleUI/src/utils/useIsKeyboardShown.tsx +55 -0
- package/Examples/SampleUI/src/utils/useLayout.tsx +29 -0
- package/Examples/SampleUI/src/utils/useLazyRef.tsx +11 -0
- package/Examples/SampleUI/tsconfig.json +3 -0
- package/Examples/SampleUI/utils/index.ts +1426 -0
- package/README.md +73 -2
- package/android/CMakeLists.txt +41 -0
- package/android/build.gradle +155 -26
- package/android/config.gradle +2 -9
- package/android/gradle.properties +5 -21
- package/android/src/main/AndroidManifest.xml +2 -2
- package/android/src/main/assets/ConnectAdvancedConfig.json +1 -1
- package/android/src/main/assets/EOCoreAdvancedConfig.json +1 -1
- package/android/src/main/assets/TealeafAdvancedConfig.json +1 -1
- package/android/src/main/assets/TealeafLayoutConfigDefault.json +40 -0
- package/android/src/main/cpp/cpp-adapter.cpp +6 -0
- package/android/src/main/java/com/acousticconnectrn/AcousticConnectRNImpl.kt +106 -0
- package/android/src/main/java/com/acousticconnectrn/AcousticConnectRNPackage.java +45 -0
- package/android/src/main/java/com/acousticconnectrn/HybridAcousticConnectRN.kt +497 -0
- package/ios/AcousticConnectRNImpl.swift +64 -0
- package/ios/Bridge.h +13 -0
- package/ios/ConnectConfig/Build_Config.rb +14 -4
- package/ios/HybridAcousticConnectRN.swift +440 -0
- package/jslib/TLTRN.js +265 -0
- package/jslib/components/Connect.js +85 -0
- package/jslib/components/ConnectProfiler.js +40 -0
- package/jslib/utils/KeyboardListener.js +100 -0
- package/lib/commonjs/index.js +25 -0
- package/lib/commonjs/index.js.map +1 -0
- package/lib/commonjs/package.json +1 -0
- package/lib/commonjs/specs/react-native-acoustic-connect.nitro.js +6 -0
- package/lib/commonjs/specs/react-native-acoustic-connect.nitro.js.map +1 -0
- package/lib/commonjs/types.js +24 -0
- package/lib/commonjs/types.js.map +1 -0
- package/lib/module/index.js +21 -0
- package/lib/module/index.js.map +1 -0
- package/lib/module/package.json +1 -0
- package/lib/module/specs/react-native-acoustic-connect.nitro.js +4 -0
- package/lib/module/specs/react-native-acoustic-connect.nitro.js.map +1 -0
- package/lib/module/types.js +24 -0
- package/lib/module/types.js.map +1 -0
- package/lib/typescript/jslib/TLTRN.d.ts +37 -0
- package/lib/typescript/jslib/TLTRN.d.ts.map +1 -0
- package/lib/typescript/jslib/components/Connect.d.ts +4 -0
- package/lib/typescript/jslib/components/Connect.d.ts.map +1 -0
- package/lib/typescript/jslib/components/ConnectProfiler.d.ts +10 -0
- package/lib/typescript/jslib/components/ConnectProfiler.d.ts.map +1 -0
- package/lib/typescript/jslib/utils/KeyboardListener.d.ts +10 -0
- package/lib/typescript/jslib/utils/KeyboardListener.d.ts.map +1 -0
- package/lib/typescript/src/index.d.ts +16 -0
- package/lib/typescript/src/index.d.ts.map +1 -0
- package/lib/typescript/src/specs/react-native-acoustic-connect.nitro.d.ts +30 -0
- package/lib/typescript/src/specs/react-native-acoustic-connect.nitro.d.ts.map +1 -0
- package/lib/typescript/src/types.d.ts +1 -0
- package/lib/typescript/src/types.d.ts.map +1 -0
- package/nitrogen/generated/.gitattributes +1 -0
- package/nitrogen/generated/android/AcousticConnectRN+autolinking.cmake +78 -0
- package/nitrogen/generated/android/AcousticConnectRN+autolinking.gradle +27 -0
- package/nitrogen/generated/android/AcousticConnectRNOnLoad.cpp +46 -0
- package/nitrogen/generated/android/AcousticConnectRNOnLoad.hpp +25 -0
- package/nitrogen/generated/android/c++/JHybridAcousticConnectRNSpec.cpp +142 -0
- package/nitrogen/generated/android/c++/JHybridAcousticConnectRNSpec.hpp +79 -0
- package/nitrogen/generated/android/c++/JVariant_String_Double_Boolean.hpp +98 -0
- package/nitrogen/generated/android/kotlin/com/margelo/nitro/acousticconnectrn/AcousticConnectRNOnLoad.kt +35 -0
- package/nitrogen/generated/android/kotlin/com/margelo/nitro/acousticconnectrn/HybridAcousticConnectRNSpec.kt +120 -0
- package/nitrogen/generated/android/kotlin/com/margelo/nitro/acousticconnectrn/Variant_String_Double_Boolean.kt +49 -0
- package/nitrogen/generated/ios/AcousticConnectRN+autolinking.rb +60 -0
- package/nitrogen/generated/ios/AcousticConnectRN-Swift-Cxx-Bridge.cpp +32 -0
- package/nitrogen/generated/ios/AcousticConnectRN-Swift-Cxx-Bridge.hpp +139 -0
- package/nitrogen/generated/ios/AcousticConnectRN-Swift-Cxx-Umbrella.hpp +46 -0
- package/nitrogen/generated/ios/AcousticConnectRNAutolinking.mm +33 -0
- package/nitrogen/generated/ios/AcousticConnectRNAutolinking.swift +25 -0
- package/nitrogen/generated/ios/c++/HybridAcousticConnectRNSpecSwift.cpp +11 -0
- package/nitrogen/generated/ios/c++/HybridAcousticConnectRNSpecSwift.hpp +210 -0
- package/nitrogen/generated/ios/swift/HybridAcousticConnectRNSpec.swift +65 -0
- package/nitrogen/generated/ios/swift/HybridAcousticConnectRNSpec_cxx.swift +415 -0
- package/nitrogen/generated/ios/swift/Variant_String_Double_Bool.swift +17 -0
- package/nitrogen/generated/shared/c++/HybridAcousticConnectRNSpec.cpp +38 -0
- package/nitrogen/generated/shared/c++/HybridAcousticConnectRNSpec.hpp +82 -0
- package/package.json +163 -8
- package/scripts/ConnectConfig.json +1 -1
- package/scripts/javaParser.js +77 -71
- package/scripts/postInstallScripts.sh +8 -5
- package/src/index.ts +21 -0
- package/src/specs/react-native-acoustic-connect.nitro.ts +56 -0
- package/src/types.ts +23 -0
- package/Example/nativebase-v3-kitchensink/.expo-shared/README.md +0 -11
- package/Example/nativebase-v3-kitchensink/.expo-shared/assets.json +0 -4
- package/Example/nativebase-v3-kitchensink/App.js +0 -15
- package/Example/nativebase-v3-kitchensink/ConnectConfig.json +0 -168
- package/Example/nativebase-v3-kitchensink/README.md +0 -14
- package/Example/nativebase-v3-kitchensink/__tests__/Actionsheet-dark.test.js +0 -31
- package/Example/nativebase-v3-kitchensink/__tests__/Actionsheet-light.test.js +0 -31
- package/Example/nativebase-v3-kitchensink/__tests__/Alert-dark.test.js +0 -31
- package/Example/nativebase-v3-kitchensink/__tests__/Alert-light.test.js +0 -31
- package/Example/nativebase-v3-kitchensink/__tests__/AlertDialog-dark.test.js +0 -31
- package/Example/nativebase-v3-kitchensink/__tests__/AlertDialog-light.test.js +0 -31
- package/Example/nativebase-v3-kitchensink/__tests__/Avatar-dark.test.js +0 -31
- package/Example/nativebase-v3-kitchensink/__tests__/Avatar-light.test.js +0 -31
- package/Example/nativebase-v3-kitchensink/__tests__/Badge-dark.test.js +0 -31
- package/Example/nativebase-v3-kitchensink/__tests__/Badge-light.test.js +0 -31
- package/Example/nativebase-v3-kitchensink/__tests__/Box-dark.test.js +0 -31
- package/Example/nativebase-v3-kitchensink/__tests__/Box-light.test.js +0 -31
- package/Example/nativebase-v3-kitchensink/__tests__/Button-dark.test.js +0 -31
- package/Example/nativebase-v3-kitchensink/__tests__/Button-light.test.js +0 -31
- package/Example/nativebase-v3-kitchensink/__tests__/Center-dark.test.js +0 -31
- package/Example/nativebase-v3-kitchensink/__tests__/Center-light.test.js +0 -31
- package/Example/nativebase-v3-kitchensink/__tests__/CheckBox-dark.test.js +0 -31
- package/Example/nativebase-v3-kitchensink/__tests__/CheckBox-light.test.js +0 -31
- package/Example/nativebase-v3-kitchensink/__tests__/Column-dark.test.js +0 -31
- package/Example/nativebase-v3-kitchensink/__tests__/Column-light.test.js +0 -31
- package/Example/nativebase-v3-kitchensink/__tests__/Divider-dark.test.js +0 -31
- package/Example/nativebase-v3-kitchensink/__tests__/Divider-light.test.js +0 -31
- package/Example/nativebase-v3-kitchensink/__tests__/Fab-dark.test.js +0 -31
- package/Example/nativebase-v3-kitchensink/__tests__/Fab-light.test.js +0 -31
- package/Example/nativebase-v3-kitchensink/__tests__/FlatList-dark.test.js +0 -31
- package/Example/nativebase-v3-kitchensink/__tests__/FlatList-light.test.js +0 -31
- package/Example/nativebase-v3-kitchensink/__tests__/Flex-dark.test.js +0 -31
- package/Example/nativebase-v3-kitchensink/__tests__/Flex-light.test.js +0 -31
- package/Example/nativebase-v3-kitchensink/__tests__/FormControl-dark.test.js +0 -31
- package/Example/nativebase-v3-kitchensink/__tests__/FormControl-light.test.js +0 -31
- package/Example/nativebase-v3-kitchensink/__tests__/HStack-dark.test.js +0 -31
- package/Example/nativebase-v3-kitchensink/__tests__/HStack-light.test.js +0 -31
- package/Example/nativebase-v3-kitchensink/__tests__/Heading-dark.test.js +0 -31
- package/Example/nativebase-v3-kitchensink/__tests__/Heading-light.test.js +0 -31
- package/Example/nativebase-v3-kitchensink/__tests__/Icon-dark.test.js +0 -31
- package/Example/nativebase-v3-kitchensink/__tests__/Icon-light.test.js +0 -31
- package/Example/nativebase-v3-kitchensink/__tests__/IconButton-dark.test.js +0 -31
- package/Example/nativebase-v3-kitchensink/__tests__/IconButton-light.test.js +0 -31
- package/Example/nativebase-v3-kitchensink/__tests__/Image-dark.test.js +0 -31
- package/Example/nativebase-v3-kitchensink/__tests__/Image-light.test.js +0 -31
- package/Example/nativebase-v3-kitchensink/__tests__/Input-dark.test.js +0 -31
- package/Example/nativebase-v3-kitchensink/__tests__/Input-light.test.js +0 -31
- package/Example/nativebase-v3-kitchensink/__tests__/KeyboardAvoidingView-dark.test.js +0 -31
- package/Example/nativebase-v3-kitchensink/__tests__/KeyboardAvoidingView-light.test.js +0 -31
- package/Example/nativebase-v3-kitchensink/__tests__/Link-dark.test.js +0 -31
- package/Example/nativebase-v3-kitchensink/__tests__/Link-light.test.js +0 -31
- package/Example/nativebase-v3-kitchensink/__tests__/Menu-dark.test.js +0 -31
- package/Example/nativebase-v3-kitchensink/__tests__/Menu-light.test.js +0 -31
- package/Example/nativebase-v3-kitchensink/__tests__/Modal-dark.test.js +0 -31
- package/Example/nativebase-v3-kitchensink/__tests__/Modal-light.test.js +0 -31
- package/Example/nativebase-v3-kitchensink/__tests__/Popover-dark.test.js +0 -31
- package/Example/nativebase-v3-kitchensink/__tests__/Popover-light.test.js +0 -31
- package/Example/nativebase-v3-kitchensink/__tests__/Pressable-dark.test.js +0 -31
- package/Example/nativebase-v3-kitchensink/__tests__/Pressable-light.test.js +0 -31
- package/Example/nativebase-v3-kitchensink/__tests__/Progress-dark.test.js +0 -31
- package/Example/nativebase-v3-kitchensink/__tests__/Progress-light.test.js +0 -31
- package/Example/nativebase-v3-kitchensink/__tests__/Radio-dark.test.js +0 -31
- package/Example/nativebase-v3-kitchensink/__tests__/Radio-light.test.js +0 -31
- package/Example/nativebase-v3-kitchensink/__tests__/ScrollView-dark.test.js +0 -31
- package/Example/nativebase-v3-kitchensink/__tests__/ScrollView-light.test.js +0 -31
- package/Example/nativebase-v3-kitchensink/__tests__/SectionList-dark.test.js +0 -31
- package/Example/nativebase-v3-kitchensink/__tests__/SectionList-light.test.js +0 -31
- package/Example/nativebase-v3-kitchensink/__tests__/Select-dark.test.js +0 -31
- package/Example/nativebase-v3-kitchensink/__tests__/Select-light.test.js +0 -31
- package/Example/nativebase-v3-kitchensink/__tests__/Slider-dark.test.js +0 -31
- package/Example/nativebase-v3-kitchensink/__tests__/Slider-light.test.js +0 -31
- package/Example/nativebase-v3-kitchensink/__tests__/Spinner-dark.test.js +0 -31
- package/Example/nativebase-v3-kitchensink/__tests__/Spinner-light.test.js +0 -31
- package/Example/nativebase-v3-kitchensink/__tests__/Stack-dark.test.js +0 -31
- package/Example/nativebase-v3-kitchensink/__tests__/Stack-light.test.js +0 -31
- package/Example/nativebase-v3-kitchensink/__tests__/StatusBar-dark.test.js +0 -31
- package/Example/nativebase-v3-kitchensink/__tests__/StatusBar-light.test.js +0 -31
- package/Example/nativebase-v3-kitchensink/__tests__/Switch-dark.test.js +0 -31
- package/Example/nativebase-v3-kitchensink/__tests__/Switch-light.test.js +0 -31
- package/Example/nativebase-v3-kitchensink/__tests__/Tabs-dark.test.js +0 -31
- package/Example/nativebase-v3-kitchensink/__tests__/Tabs-light.test.js +0 -31
- package/Example/nativebase-v3-kitchensink/__tests__/Text-dark.test.js +0 -31
- package/Example/nativebase-v3-kitchensink/__tests__/Text-light.test.js +0 -31
- package/Example/nativebase-v3-kitchensink/__tests__/TextArea-dark.test.js +0 -31
- package/Example/nativebase-v3-kitchensink/__tests__/TextArea-light.test.js +0 -31
- package/Example/nativebase-v3-kitchensink/__tests__/Toast-dark.test.js +0 -31
- package/Example/nativebase-v3-kitchensink/__tests__/Toast-light.test.js +0 -31
- package/Example/nativebase-v3-kitchensink/__tests__/Tooltip-dark.test.js +0 -31
- package/Example/nativebase-v3-kitchensink/__tests__/Tooltip-light.test.js +0 -31
- package/Example/nativebase-v3-kitchensink/__tests__/Transitions-dark.test.js +0 -31
- package/Example/nativebase-v3-kitchensink/__tests__/Transitions-light.test.js +0 -31
- package/Example/nativebase-v3-kitchensink/__tests__/VStack-dark.test.js +0 -31
- package/Example/nativebase-v3-kitchensink/__tests__/VStack-light.test.js +0 -31
- package/Example/nativebase-v3-kitchensink/__tests__/View-dark.test.js +0 -31
- package/Example/nativebase-v3-kitchensink/__tests__/View-light.test.js +0 -31
- package/Example/nativebase-v3-kitchensink/__tests__/ZStack-dark.test.js +0 -31
- package/Example/nativebase-v3-kitchensink/__tests__/ZStack-light.test.js +0 -31
- package/Example/nativebase-v3-kitchensink/__tests__/__snapshots__/Actionsheet-dark.test.js.snap +0 -179
- package/Example/nativebase-v3-kitchensink/__tests__/__snapshots__/Actionsheet-light.test.js.snap +0 -179
- package/Example/nativebase-v3-kitchensink/__tests__/__snapshots__/Alert-dark.test.js.snap +0 -125
- package/Example/nativebase-v3-kitchensink/__tests__/__snapshots__/Alert-light.test.js.snap +0 -125
- package/Example/nativebase-v3-kitchensink/__tests__/__snapshots__/AlertDialog-dark.test.js.snap +0 -262
- package/Example/nativebase-v3-kitchensink/__tests__/__snapshots__/AlertDialog-light.test.js.snap +0 -262
- package/Example/nativebase-v3-kitchensink/__tests__/__snapshots__/Avatar-dark.test.js.snap +0 -90
- package/Example/nativebase-v3-kitchensink/__tests__/__snapshots__/Avatar-light.test.js.snap +0 -90
- package/Example/nativebase-v3-kitchensink/__tests__/__snapshots__/Badge-dark.test.js.snap +0 -55
- package/Example/nativebase-v3-kitchensink/__tests__/__snapshots__/Badge-light.test.js.snap +0 -55
- package/Example/nativebase-v3-kitchensink/__tests__/__snapshots__/Box-dark.test.js.snap +0 -29
- package/Example/nativebase-v3-kitchensink/__tests__/__snapshots__/Box-light.test.js.snap +0 -29
- package/Example/nativebase-v3-kitchensink/__tests__/__snapshots__/Button-dark.test.js.snap +0 -79
- package/Example/nativebase-v3-kitchensink/__tests__/__snapshots__/Button-light.test.js.snap +0 -79
- package/Example/nativebase-v3-kitchensink/__tests__/__snapshots__/Center-dark.test.js.snap +0 -61
- package/Example/nativebase-v3-kitchensink/__tests__/__snapshots__/Center-light.test.js.snap +0 -61
- package/Example/nativebase-v3-kitchensink/__tests__/__snapshots__/CheckBox-dark.test.js.snap +0 -246
- package/Example/nativebase-v3-kitchensink/__tests__/__snapshots__/CheckBox-light.test.js.snap +0 -246
- package/Example/nativebase-v3-kitchensink/__tests__/__snapshots__/Column-dark.test.js.snap +0 -89
- package/Example/nativebase-v3-kitchensink/__tests__/__snapshots__/Column-light.test.js.snap +0 -89
- package/Example/nativebase-v3-kitchensink/__tests__/__snapshots__/Divider-dark.test.js.snap +0 -130
- package/Example/nativebase-v3-kitchensink/__tests__/__snapshots__/Divider-light.test.js.snap +0 -130
- package/Example/nativebase-v3-kitchensink/__tests__/__snapshots__/Fab-dark.test.js.snap +0 -97
- package/Example/nativebase-v3-kitchensink/__tests__/__snapshots__/Fab-light.test.js.snap +0 -97
- package/Example/nativebase-v3-kitchensink/__tests__/__snapshots__/FlatList-dark.test.js.snap +0 -144
- package/Example/nativebase-v3-kitchensink/__tests__/__snapshots__/FlatList-light.test.js.snap +0 -144
- package/Example/nativebase-v3-kitchensink/__tests__/__snapshots__/Flex-dark.test.js.snap +0 -87
- package/Example/nativebase-v3-kitchensink/__tests__/__snapshots__/Flex-light.test.js.snap +0 -87
- package/Example/nativebase-v3-kitchensink/__tests__/__snapshots__/FormControl-dark.test.js.snap +0 -234
- package/Example/nativebase-v3-kitchensink/__tests__/__snapshots__/FormControl-light.test.js.snap +0 -234
- package/Example/nativebase-v3-kitchensink/__tests__/__snapshots__/HStack-dark.test.js.snap +0 -99
- package/Example/nativebase-v3-kitchensink/__tests__/__snapshots__/HStack-light.test.js.snap +0 -99
- package/Example/nativebase-v3-kitchensink/__tests__/__snapshots__/Heading-dark.test.js.snap +0 -34
- package/Example/nativebase-v3-kitchensink/__tests__/__snapshots__/Heading-light.test.js.snap +0 -34
- package/Example/nativebase-v3-kitchensink/__tests__/__snapshots__/Icon-dark.test.js.snap +0 -88
- package/Example/nativebase-v3-kitchensink/__tests__/__snapshots__/Icon-light.test.js.snap +0 -88
- package/Example/nativebase-v3-kitchensink/__tests__/__snapshots__/IconButton-dark.test.js.snap +0 -78
- package/Example/nativebase-v3-kitchensink/__tests__/__snapshots__/IconButton-light.test.js.snap +0 -78
- package/Example/nativebase-v3-kitchensink/__tests__/__snapshots__/Image-dark.test.js.snap +0 -145
- package/Example/nativebase-v3-kitchensink/__tests__/__snapshots__/Image-light.test.js.snap +0 -145
- package/Example/nativebase-v3-kitchensink/__tests__/__snapshots__/Input-dark.test.js.snap +0 -103
- package/Example/nativebase-v3-kitchensink/__tests__/__snapshots__/Input-light.test.js.snap +0 -103
- package/Example/nativebase-v3-kitchensink/__tests__/__snapshots__/KeyboardAvoidingView-dark.test.js.snap +0 -103
- package/Example/nativebase-v3-kitchensink/__tests__/__snapshots__/KeyboardAvoidingView-light.test.js.snap +0 -103
- package/Example/nativebase-v3-kitchensink/__tests__/__snapshots__/Link-dark.test.js.snap +0 -52
- package/Example/nativebase-v3-kitchensink/__tests__/__snapshots__/Link-light.test.js.snap +0 -52
- package/Example/nativebase-v3-kitchensink/__tests__/__snapshots__/Menu-dark.test.js.snap +0 -232
- package/Example/nativebase-v3-kitchensink/__tests__/__snapshots__/Menu-light.test.js.snap +0 -232
- package/Example/nativebase-v3-kitchensink/__tests__/__snapshots__/Modal-dark.test.js.snap +0 -218
- package/Example/nativebase-v3-kitchensink/__tests__/__snapshots__/Modal-light.test.js.snap +0 -226
- package/Example/nativebase-v3-kitchensink/__tests__/__snapshots__/Popover-dark.test.js.snap +0 -345
- package/Example/nativebase-v3-kitchensink/__tests__/__snapshots__/Popover-light.test.js.snap +0 -345
- package/Example/nativebase-v3-kitchensink/__tests__/__snapshots__/Pressable-dark.test.js.snap +0 -55
- package/Example/nativebase-v3-kitchensink/__tests__/__snapshots__/Pressable-light.test.js.snap +0 -55
- package/Example/nativebase-v3-kitchensink/__tests__/__snapshots__/Progress-dark.test.js.snap +0 -79
- package/Example/nativebase-v3-kitchensink/__tests__/__snapshots__/Progress-light.test.js.snap +0 -79
- package/Example/nativebase-v3-kitchensink/__tests__/__snapshots__/Radio-dark.test.js.snap +0 -283
- package/Example/nativebase-v3-kitchensink/__tests__/__snapshots__/Radio-light.test.js.snap +0 -283
- package/Example/nativebase-v3-kitchensink/__tests__/__snapshots__/ScrollView-dark.test.js.snap +0 -72
- package/Example/nativebase-v3-kitchensink/__tests__/__snapshots__/ScrollView-light.test.js.snap +0 -72
- package/Example/nativebase-v3-kitchensink/__tests__/__snapshots__/SectionList-dark.test.js.snap +0 -412
- package/Example/nativebase-v3-kitchensink/__tests__/__snapshots__/SectionList-light.test.js.snap +0 -412
- package/Example/nativebase-v3-kitchensink/__tests__/__snapshots__/Select-dark.test.js.snap +0 -231
- package/Example/nativebase-v3-kitchensink/__tests__/__snapshots__/Select-light.test.js.snap +0 -231
- package/Example/nativebase-v3-kitchensink/__tests__/__snapshots__/Slider-dark.test.js.snap +0 -187
- package/Example/nativebase-v3-kitchensink/__tests__/__snapshots__/Slider-light.test.js.snap +0 -187
- package/Example/nativebase-v3-kitchensink/__tests__/__snapshots__/Spinner-dark.test.js.snap +0 -138
- package/Example/nativebase-v3-kitchensink/__tests__/__snapshots__/Spinner-light.test.js.snap +0 -138
- package/Example/nativebase-v3-kitchensink/__tests__/__snapshots__/Stack-dark.test.js.snap +0 -186
- package/Example/nativebase-v3-kitchensink/__tests__/__snapshots__/Stack-light.test.js.snap +0 -186
- package/Example/nativebase-v3-kitchensink/__tests__/__snapshots__/StatusBar-dark.test.js.snap +0 -15
- package/Example/nativebase-v3-kitchensink/__tests__/__snapshots__/StatusBar-light.test.js.snap +0 -15
- package/Example/nativebase-v3-kitchensink/__tests__/__snapshots__/Switch-dark.test.js.snap +0 -67
- package/Example/nativebase-v3-kitchensink/__tests__/__snapshots__/Switch-light.test.js.snap +0 -67
- package/Example/nativebase-v3-kitchensink/__tests__/__snapshots__/Tabs-dark.test.js.snap +0 -289
- package/Example/nativebase-v3-kitchensink/__tests__/__snapshots__/Tabs-light.test.js.snap +0 -289
- package/Example/nativebase-v3-kitchensink/__tests__/__snapshots__/Text-dark.test.js.snap +0 -34
- package/Example/nativebase-v3-kitchensink/__tests__/__snapshots__/Text-light.test.js.snap +0 -34
- package/Example/nativebase-v3-kitchensink/__tests__/__snapshots__/TextArea-dark.test.js.snap +0 -150
- package/Example/nativebase-v3-kitchensink/__tests__/__snapshots__/TextArea-light.test.js.snap +0 -150
- package/Example/nativebase-v3-kitchensink/__tests__/__snapshots__/Toast-dark.test.js.snap +0 -373
- package/Example/nativebase-v3-kitchensink/__tests__/__snapshots__/Toast-light.test.js.snap +0 -373
- package/Example/nativebase-v3-kitchensink/__tests__/__snapshots__/Tooltip-dark.test.js.snap +0 -87
- package/Example/nativebase-v3-kitchensink/__tests__/__snapshots__/Tooltip-light.test.js.snap +0 -87
- package/Example/nativebase-v3-kitchensink/__tests__/__snapshots__/Transitions-dark.test.js.snap +0 -143
- package/Example/nativebase-v3-kitchensink/__tests__/__snapshots__/Transitions-light.test.js.snap +0 -143
- package/Example/nativebase-v3-kitchensink/__tests__/__snapshots__/VStack-dark.test.js.snap +0 -93
- package/Example/nativebase-v3-kitchensink/__tests__/__snapshots__/VStack-light.test.js.snap +0 -93
- package/Example/nativebase-v3-kitchensink/__tests__/__snapshots__/View-dark.test.js.snap +0 -31
- package/Example/nativebase-v3-kitchensink/__tests__/__snapshots__/View-light.test.js.snap +0 -31
- package/Example/nativebase-v3-kitchensink/__tests__/__snapshots__/ZStack-dark.test.js.snap +0 -104
- package/Example/nativebase-v3-kitchensink/__tests__/__snapshots__/ZStack-light.test.js.snap +0 -104
- package/Example/nativebase-v3-kitchensink/android/app/build.gradle +0 -267
- package/Example/nativebase-v3-kitchensink/android/app/src/debug/AndroidManifest.xml +0 -6
- package/Example/nativebase-v3-kitchensink/android/app/src/debug/java/com/geekyants/kitchensinkappnativebase/ReactNativeFlipper.java +0 -75
- package/Example/nativebase-v3-kitchensink/android/app/src/main/AndroidManifest.xml +0 -46
- package/Example/nativebase-v3-kitchensink/android/app/src/main/java/com/geekyants/kitchensinkappnativebase/MainActivity.java +0 -51
- package/Example/nativebase-v3-kitchensink/android/app/src/main/java/com/geekyants/kitchensinkappnativebase/MainApplication.java +0 -82
- package/Example/nativebase-v3-kitchensink/android/app/src/main/res/drawable/splashscreen.xml +0 -3
- package/Example/nativebase-v3-kitchensink/android/app/src/main/res/drawable-hdpi/splashscreen_image.png +0 -0
- package/Example/nativebase-v3-kitchensink/android/app/src/main/res/drawable-mdpi/splashscreen_image.png +0 -0
- package/Example/nativebase-v3-kitchensink/android/app/src/main/res/drawable-xhdpi/splashscreen_image.png +0 -0
- package/Example/nativebase-v3-kitchensink/android/app/src/main/res/drawable-xxhdpi/splashscreen_image.png +0 -0
- package/Example/nativebase-v3-kitchensink/android/app/src/main/res/drawable-xxxhdpi/splashscreen_image.png +0 -0
- package/Example/nativebase-v3-kitchensink/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml +0 -5
- package/Example/nativebase-v3-kitchensink/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml +0 -5
- package/Example/nativebase-v3-kitchensink/android/app/src/main/res/mipmap-hdpi/ic_launcher.png +0 -0
- package/Example/nativebase-v3-kitchensink/android/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png +0 -0
- package/Example/nativebase-v3-kitchensink/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png +0 -0
- package/Example/nativebase-v3-kitchensink/android/app/src/main/res/mipmap-mdpi/ic_launcher.png +0 -0
- package/Example/nativebase-v3-kitchensink/android/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png +0 -0
- package/Example/nativebase-v3-kitchensink/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png +0 -0
- package/Example/nativebase-v3-kitchensink/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png +0 -0
- package/Example/nativebase-v3-kitchensink/android/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png +0 -0
- package/Example/nativebase-v3-kitchensink/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png +0 -0
- package/Example/nativebase-v3-kitchensink/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png +0 -0
- package/Example/nativebase-v3-kitchensink/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png +0 -0
- package/Example/nativebase-v3-kitchensink/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png +0 -0
- package/Example/nativebase-v3-kitchensink/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png +0 -0
- package/Example/nativebase-v3-kitchensink/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png +0 -0
- package/Example/nativebase-v3-kitchensink/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png +0 -0
- package/Example/nativebase-v3-kitchensink/android/app/src/main/res/values/colors.xml +0 -6
- package/Example/nativebase-v3-kitchensink/android/app/src/main/res/values/strings.xml +0 -5
- package/Example/nativebase-v3-kitchensink/android/app/src/main/res/values/styles.xml +0 -10
- package/Example/nativebase-v3-kitchensink/android/app/src/main/res/values-night/colors.xml +0 -1
- package/Example/nativebase-v3-kitchensink/android/build.gradle +0 -42
- package/Example/nativebase-v3-kitchensink/android/gradle/wrapper/gradle-wrapper.jar +0 -0
- package/Example/nativebase-v3-kitchensink/android/gradle/wrapper/gradle-wrapper.properties +0 -5
- package/Example/nativebase-v3-kitchensink/android/gradle.properties +0 -56
- package/Example/nativebase-v3-kitchensink/android/gradlew +0 -183
- package/Example/nativebase-v3-kitchensink/android/gradlew.bat +0 -103
- package/Example/nativebase-v3-kitchensink/android/settings.gradle +0 -10
- package/Example/nativebase-v3-kitchensink/app.json +0 -34
- package/Example/nativebase-v3-kitchensink/assets/adaptive-icon.png +0 -0
- package/Example/nativebase-v3-kitchensink/assets/demo.png +0 -0
- package/Example/nativebase-v3-kitchensink/assets/favicon.png +0 -0
- package/Example/nativebase-v3-kitchensink/assets/icon.png +0 -0
- package/Example/nativebase-v3-kitchensink/assets/splash.png +0 -0
- package/Example/nativebase-v3-kitchensink/babel.config.js +0 -22
- package/Example/nativebase-v3-kitchensink/constants.js +0 -8
- package/Example/nativebase-v3-kitchensink/copy-robots.js +0 -11
- package/Example/nativebase-v3-kitchensink/index.js +0 -8
- package/Example/nativebase-v3-kitchensink/ios/KitchenSinkappnativebase/AppDelegate.h +0 -8
- package/Example/nativebase-v3-kitchensink/ios/KitchenSinkappnativebase/AppDelegate.m +0 -26
- package/Example/nativebase-v3-kitchensink/ios/KitchenSinkappnativebase/Base.lproj/LaunchScreen.xib +0 -42
- package/Example/nativebase-v3-kitchensink/ios/KitchenSinkappnativebase/Images.xcassets/AppIcon.appiconset/App-Icon-20x20@1x.png +0 -0
- package/Example/nativebase-v3-kitchensink/ios/KitchenSinkappnativebase/Images.xcassets/AppIcon.appiconset/App-Icon-20x20@2x.png +0 -0
- package/Example/nativebase-v3-kitchensink/ios/KitchenSinkappnativebase/Images.xcassets/AppIcon.appiconset/App-Icon-20x20@3x.png +0 -0
- package/Example/nativebase-v3-kitchensink/ios/KitchenSinkappnativebase/Images.xcassets/AppIcon.appiconset/App-Icon-29x29@1x.png +0 -0
- package/Example/nativebase-v3-kitchensink/ios/KitchenSinkappnativebase/Images.xcassets/AppIcon.appiconset/App-Icon-29x29@2x.png +0 -0
- package/Example/nativebase-v3-kitchensink/ios/KitchenSinkappnativebase/Images.xcassets/AppIcon.appiconset/App-Icon-29x29@3x.png +0 -0
- package/Example/nativebase-v3-kitchensink/ios/KitchenSinkappnativebase/Images.xcassets/AppIcon.appiconset/App-Icon-40x40@1x.png +0 -0
- package/Example/nativebase-v3-kitchensink/ios/KitchenSinkappnativebase/Images.xcassets/AppIcon.appiconset/App-Icon-40x40@2x.png +0 -0
- package/Example/nativebase-v3-kitchensink/ios/KitchenSinkappnativebase/Images.xcassets/AppIcon.appiconset/App-Icon-40x40@3x.png +0 -0
- package/Example/nativebase-v3-kitchensink/ios/KitchenSinkappnativebase/Images.xcassets/AppIcon.appiconset/App-Icon-60x60@2x.png +0 -0
- package/Example/nativebase-v3-kitchensink/ios/KitchenSinkappnativebase/Images.xcassets/AppIcon.appiconset/App-Icon-60x60@3x.png +0 -0
- package/Example/nativebase-v3-kitchensink/ios/KitchenSinkappnativebase/Images.xcassets/AppIcon.appiconset/App-Icon-76x76@1x.png +0 -0
- package/Example/nativebase-v3-kitchensink/ios/KitchenSinkappnativebase/Images.xcassets/AppIcon.appiconset/App-Icon-76x76@2x.png +0 -0
- package/Example/nativebase-v3-kitchensink/ios/KitchenSinkappnativebase/Images.xcassets/AppIcon.appiconset/App-Icon-83.5x83.5@2x.png +0 -0
- package/Example/nativebase-v3-kitchensink/ios/KitchenSinkappnativebase/Images.xcassets/AppIcon.appiconset/Contents.json +0 -13
- package/Example/nativebase-v3-kitchensink/ios/KitchenSinkappnativebase/Images.xcassets/AppIcon.appiconset/ItunesArtwork@2x.png +0 -0
- package/Example/nativebase-v3-kitchensink/ios/KitchenSinkappnativebase/Images.xcassets/SplashScreen.imageset/Contents.json +0 -21
- package/Example/nativebase-v3-kitchensink/ios/KitchenSinkappnativebase/Images.xcassets/SplashScreen.imageset/image.png +0 -0
- package/Example/nativebase-v3-kitchensink/ios/KitchenSinkappnativebase/Images.xcassets/SplashScreenBackground.imageset/Contents.json +0 -21
- package/Example/nativebase-v3-kitchensink/ios/KitchenSinkappnativebase/Images.xcassets/SplashScreenBackground.imageset/image.png +0 -0
- package/Example/nativebase-v3-kitchensink/ios/KitchenSinkappnativebase/Info.plist +0 -80
- package/Example/nativebase-v3-kitchensink/ios/KitchenSinkappnativebase/KitchenSinkappnativebase-Bridging-Header.h +0 -3
- package/Example/nativebase-v3-kitchensink/ios/KitchenSinkappnativebase/SplashScreen.storyboard +0 -51
- package/Example/nativebase-v3-kitchensink/ios/KitchenSinkappnativebase/Supporting/Expo.plist +0 -18
- package/Example/nativebase-v3-kitchensink/ios/KitchenSinkappnativebase/kitchensinkappnativebase.entitlements +0 -8
- package/Example/nativebase-v3-kitchensink/ios/KitchenSinkappnativebase/main.m +0 -10
- package/Example/nativebase-v3-kitchensink/ios/KitchenSinkappnativebase.xcodeproj/project.pbxproj +0 -785
- package/Example/nativebase-v3-kitchensink/ios/KitchenSinkappnativebase.xcodeproj/xcshareddata/xcschemes/KitchenSinkappnativebase.xcscheme +0 -133
- package/Example/nativebase-v3-kitchensink/ios/KitchenSinkappnativebase.xcworkspace/contents.xcworkspacedata +0 -10
- package/Example/nativebase-v3-kitchensink/ios/KitchenSinkappnativebase.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +0 -8
- package/Example/nativebase-v3-kitchensink/ios/Podfile +0 -113
- package/Example/nativebase-v3-kitchensink/ios/Podfile.properties.json +0 -4
- package/Example/nativebase-v3-kitchensink/metro.config.js +0 -12
- package/Example/nativebase-v3-kitchensink/nativebase.config.ts +0 -5
- package/Example/nativebase-v3-kitchensink/package.json +0 -72
- package/Example/nativebase-v3-kitchensink/snapshot/create-snapshots.js +0 -80
- package/Example/nativebase-v3-kitchensink/snapshot/dark-template.js +0 -33
- package/Example/nativebase-v3-kitchensink/snapshot/light-template.js +0 -33
- package/Example/nativebase-v3-kitchensink/src/components/Floaters.tsx +0 -71
- package/Example/nativebase-v3-kitchensink/src/components/Header.tsx +0 -33
- package/Example/nativebase-v3-kitchensink/src/components/Layout.tsx +0 -122
- package/Example/nativebase-v3-kitchensink/src/components/Logo.tsx +0 -32
- package/Example/nativebase-v3-kitchensink/src/components/Main/index.tsx +0 -17
- package/Example/nativebase-v3-kitchensink/src/components/MasonLayout/MasonaryLayout.tsx +0 -35
- package/Example/nativebase-v3-kitchensink/src/components/NativeBaseComponents/Actionsheet.tsx +0 -79
- package/Example/nativebase-v3-kitchensink/src/components/NativeBaseComponents/Alert.tsx +0 -56
- package/Example/nativebase-v3-kitchensink/src/components/NativeBaseComponents/AlertDialog.tsx +0 -128
- package/Example/nativebase-v3-kitchensink/src/components/NativeBaseComponents/Avatar.tsx +0 -23
- package/Example/nativebase-v3-kitchensink/src/components/NativeBaseComponents/Badge.tsx +0 -26
- package/Example/nativebase-v3-kitchensink/src/components/NativeBaseComponents/Box.tsx +0 -7
- package/Example/nativebase-v3-kitchensink/src/components/NativeBaseComponents/Button.tsx +0 -46
- package/Example/nativebase-v3-kitchensink/src/components/NativeBaseComponents/Center.tsx +0 -18
- package/Example/nativebase-v3-kitchensink/src/components/NativeBaseComponents/CheckBox.tsx +0 -26
- package/Example/nativebase-v3-kitchensink/src/components/NativeBaseComponents/Column.tsx +0 -12
- package/Example/nativebase-v3-kitchensink/src/components/NativeBaseComponents/Divider.tsx +0 -35
- package/Example/nativebase-v3-kitchensink/src/components/NativeBaseComponents/ErrorTest.tsx +0 -79
- package/Example/nativebase-v3-kitchensink/src/components/NativeBaseComponents/Fab.tsx +0 -28
- package/Example/nativebase-v3-kitchensink/src/components/NativeBaseComponents/FlatList.tsx +0 -37
- package/Example/nativebase-v3-kitchensink/src/components/NativeBaseComponents/Flex.tsx +0 -12
- package/Example/nativebase-v3-kitchensink/src/components/NativeBaseComponents/FormControl.tsx +0 -99
- package/Example/nativebase-v3-kitchensink/src/components/NativeBaseComponents/HStack.tsx +0 -40
- package/Example/nativebase-v3-kitchensink/src/components/NativeBaseComponents/Heading.tsx +0 -6
- package/Example/nativebase-v3-kitchensink/src/components/NativeBaseComponents/Icon.tsx +0 -16
- package/Example/nativebase-v3-kitchensink/src/components/NativeBaseComponents/IconButton.tsx +0 -45
- package/Example/nativebase-v3-kitchensink/src/components/NativeBaseComponents/Image.tsx +0 -84
- package/Example/nativebase-v3-kitchensink/src/components/NativeBaseComponents/Input.tsx +0 -23
- package/Example/nativebase-v3-kitchensink/src/components/NativeBaseComponents/KeyboardAvoidingView.tsx +0 -16
- package/Example/nativebase-v3-kitchensink/src/components/NativeBaseComponents/Link.tsx +0 -30
- package/Example/nativebase-v3-kitchensink/src/components/NativeBaseComponents/Menu.tsx +0 -112
- package/Example/nativebase-v3-kitchensink/src/components/NativeBaseComponents/Modal.tsx +0 -117
- package/Example/nativebase-v3-kitchensink/src/components/NativeBaseComponents/Popover.tsx +0 -166
- package/Example/nativebase-v3-kitchensink/src/components/NativeBaseComponents/Pressable.tsx +0 -19
- package/Example/nativebase-v3-kitchensink/src/components/NativeBaseComponents/Progress.tsx +0 -14
- package/Example/nativebase-v3-kitchensink/src/components/NativeBaseComponents/Radio.tsx +0 -22
- package/Example/nativebase-v3-kitchensink/src/components/NativeBaseComponents/ScrollView.tsx +0 -28
- package/Example/nativebase-v3-kitchensink/src/components/NativeBaseComponents/SectionList.tsx +0 -71
- package/Example/nativebase-v3-kitchensink/src/components/NativeBaseComponents/Select.tsx +0 -25
- package/Example/nativebase-v3-kitchensink/src/components/NativeBaseComponents/SignalTest.tsx +0 -79
- package/Example/nativebase-v3-kitchensink/src/components/NativeBaseComponents/Skeleton.tsx +0 -11
- package/Example/nativebase-v3-kitchensink/src/components/NativeBaseComponents/Slider.tsx +0 -23
- package/Example/nativebase-v3-kitchensink/src/components/NativeBaseComponents/Spinner.tsx +0 -18
- package/Example/nativebase-v3-kitchensink/src/components/NativeBaseComponents/Stack.tsx +0 -19
- package/Example/nativebase-v3-kitchensink/src/components/NativeBaseComponents/StatusBar.tsx +0 -5
- package/Example/nativebase-v3-kitchensink/src/components/NativeBaseComponents/Switch.tsx +0 -10
- package/Example/nativebase-v3-kitchensink/src/components/NativeBaseComponents/Tabs.tsx +0 -110
- package/Example/nativebase-v3-kitchensink/src/components/NativeBaseComponents/Text.tsx +0 -10
- package/Example/nativebase-v3-kitchensink/src/components/NativeBaseComponents/TextArea.tsx +0 -52
- package/Example/nativebase-v3-kitchensink/src/components/NativeBaseComponents/Toast.tsx +0 -164
- package/Example/nativebase-v3-kitchensink/src/components/NativeBaseComponents/ToolTip.tsx +0 -47
- package/Example/nativebase-v3-kitchensink/src/components/NativeBaseComponents/Transitions.tsx +0 -58
- package/Example/nativebase-v3-kitchensink/src/components/NativeBaseComponents/VStack.tsx +0 -30
- package/Example/nativebase-v3-kitchensink/src/components/NativeBaseComponents/View.tsx +0 -17
- package/Example/nativebase-v3-kitchensink/src/components/NativeBaseComponents/ZStack.tsx +0 -46
- package/Example/nativebase-v3-kitchensink/src/components/RootComponent.tsx +0 -42
- package/Example/nativebase-v3-kitchensink/src/components/StoryBook/index.tsx +0 -75
- package/Example/nativebase-v3-kitchensink/src/config/map.tsx +0 -1485
- package/Example/nativebase-v3-kitchensink/src/navigators/rootNavigator.tsx +0 -27
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/LICENSE +0 -20
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/babel.config.js +0 -5
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/cli.js +0 -69
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/basic/FlatList/FlatList.tsx +0 -43
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/basic/FlatList/index.tsx +0 -2
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/basic/FlatList/types.ts +0 -19
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/basic/KeyboardAvoidingView/KeyboardAvoidingView.tsx +0 -25
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/basic/KeyboardAvoidingView/index.tsx +0 -1
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/basic/KeyboardAvoidingView/types.ts +0 -15
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/basic/ScrollView/ScrollView.tsx +0 -35
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/basic/ScrollView/index.tsx +0 -2
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/basic/ScrollView/types.ts +0 -19
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/basic/SectionList/SectionList.tsx +0 -29
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/basic/SectionList/index.tsx +0 -1
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/basic/SectionList/types.ts +0 -19
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/basic/StatusBar/StatusBar.tsx +0 -12
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/basic/StatusBar/index.tsx +0 -1
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/basic/StatusBar/types.ts +0 -8
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/basic/View/View.tsx +0 -17
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/basic/View/index.tsx +0 -1
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/basic/View/types.ts +0 -14
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/basic/index.tsx +0 -7
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/composites/Accordion/Accordion.tsx +0 -78
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/composites/Accordion/AccordionDetails.tsx +0 -34
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/composites/Accordion/AccordionIcon.tsx +0 -24
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/composites/Accordion/AccordionItem.tsx +0 -53
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/composites/Accordion/AccordionSummary.tsx +0 -72
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/composites/Accordion/Context.ts +0 -5
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/composites/Accordion/index.tsx +0 -29
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/composites/Accordion/types.ts +0 -62
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/composites/Actionsheet/ActionSheetContext.ts +0 -5
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/composites/Actionsheet/Actionsheet.tsx +0 -39
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/composites/Actionsheet/ActionsheetContent.tsx +0 -149
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/composites/Actionsheet/ActionsheetFooter.tsx +0 -16
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/composites/Actionsheet/ActionsheetHeader.tsx +0 -23
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/composites/Actionsheet/ActionsheetItem.tsx +0 -99
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/composites/Actionsheet/index.tsx +0 -23
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/composites/Actionsheet/types.tsx +0 -80
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/composites/Alert/Alert.tsx +0 -37
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/composites/Alert/AlertIcon.tsx +0 -37
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/composites/Alert/Context.ts +0 -2
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/composites/Alert/index.tsx +0 -11
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/composites/Alert/types.tsx +0 -36
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/composites/AlertDialog/AlertDialog.tsx +0 -119
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/composites/AlertDialog/AlertDialogBody.tsx +0 -28
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/composites/AlertDialog/AlertDialogCloseButton.tsx +0 -70
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/composites/AlertDialog/AlertDialogContent.tsx +0 -49
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/composites/AlertDialog/AlertDialogFooter.tsx +0 -15
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/composites/AlertDialog/AlertDialogHeader.tsx +0 -15
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/composites/AlertDialog/Context.ts +0 -7
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/composites/AlertDialog/index.tsx +0 -20
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/composites/AlertDialog/types.ts +0 -109
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/composites/AppBar/AppBar.tsx +0 -30
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/composites/AppBar/AppBarContent.tsx +0 -14
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/composites/AppBar/AppBarLeft.tsx +0 -15
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/composites/AppBar/AppBarRight.tsx +0 -24
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/composites/AppBar/index.tsx +0 -15
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/composites/AppBar/types.tsx +0 -16
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/composites/AppBar/utils.ts +0 -23
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/composites/AspectRatio/index.tsx +0 -74
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/composites/AspectRatio/types.ts +0 -14
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/composites/Avatar/Avatar.tsx +0 -52
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/composites/Avatar/Badge.tsx +0 -19
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/composites/Avatar/Group.tsx +0 -90
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/composites/Avatar/index.tsx +0 -14
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/composites/Avatar/types.tsx +0 -70
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/composites/Backdrop/index.tsx +0 -30
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/composites/Badge/index.tsx +0 -69
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/composites/Badge/types.tsx +0 -43
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/composites/Breadcrumb/Breadcrumb.tsx +0 -180
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/composites/Breadcrumb/BreadcrumbIcon.tsx +0 -24
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/composites/Breadcrumb/BreadcrumbItem.tsx +0 -38
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/composites/Breadcrumb/BreadcrumbLink.tsx +0 -3
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/composites/Breadcrumb/BreadcrumbText.tsx +0 -23
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/composites/Breadcrumb/Context.ts +0 -2
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/composites/Breadcrumb/index.tsx +0 -17
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/composites/Breadcrumb/types.ts +0 -48
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/composites/Card/Card.tsx +0 -14
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/composites/Card/index.tsx +0 -5
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/composites/Card/types.ts +0 -5
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/composites/Center/Center.tsx +0 -16
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/composites/Center/Circle.tsx +0 -17
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/composites/Center/Square.tsx +0 -17
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/composites/Center/index.tsx +0 -4
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/composites/Center/types.ts +0 -12
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/composites/CircularProgress/CircularProgress.tsx +0 -198
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/composites/CircularProgress/index.tsx +0 -2
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/composites/CircularProgress/types.ts +0 -25
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/composites/Code/index.tsx +0 -26
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/composites/Code/types.ts +0 -9
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/composites/Collapse/index.tsx +0 -108
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/composites/Container/index.tsx +0 -22
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/composites/Container/types.tsx +0 -9
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/composites/Divider/index.tsx +0 -30
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/composites/Divider/types.ts +0 -16
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/composites/Drawer/index.tsx +0 -60
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/composites/Fab/Fab.tsx +0 -42
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/composites/Fab/FabItem.tsx +0 -83
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/composites/Fab/FabList.tsx +0 -17
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/composites/Fab/context.ts +0 -3
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/composites/Fab/index.tsx +0 -2
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/composites/Fab/types.tsx +0 -27
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/composites/FormControl/FormControl.tsx +0 -27
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/composites/FormControl/FormControlErrorMessage.tsx +0 -84
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/composites/FormControl/FormControlHelperText.tsx +0 -42
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/composites/FormControl/FormControlLabel.tsx +0 -67
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/composites/FormControl/index.tsx +0 -30
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/composites/FormControl/test/FormControl.test.tsx +0 -125
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/composites/FormControl/types.tsx +0 -102
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/composites/FormControl/useFormControl.tsx +0 -103
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/composites/IconButton/index.tsx +0 -91
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/composites/IconButton/types.ts +0 -78
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/composites/KBD/index.tsx +0 -21
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/composites/KBD/types.ts +0 -3
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/composites/Menu/Menu.tsx +0 -130
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/composites/Menu/MenuContext.ts +0 -5
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/composites/Menu/MenuGroup.tsx +0 -30
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/composites/Menu/MenuItem.tsx +0 -80
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/composites/Menu/MenuItemOption.tsx +0 -55
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/composites/Menu/MenuOptionGroup.tsx +0 -62
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/composites/Menu/index.tsx +0 -24
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/composites/Menu/types.ts +0 -189
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/composites/Menu/useMenu.tsx +0 -121
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/composites/Modal/Context.ts +0 -9
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/composites/Modal/Modal.tsx +0 -124
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/composites/Modal/ModalBody.tsx +0 -28
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/composites/Modal/ModalCloseButton.tsx +0 -70
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/composites/Modal/ModalContent.tsx +0 -51
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/composites/Modal/ModalFooter.tsx +0 -15
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/composites/Modal/ModalHeader.tsx +0 -15
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/composites/Modal/index.tsx +0 -20
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/composites/Modal/types.ts +0 -113
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/composites/NumberInput/Context.ts +0 -3
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/composites/NumberInput/NumberDecrementStepper.tsx +0 -41
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/composites/NumberInput/NumberIncrementStepper.tsx +0 -40
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/composites/NumberInput/NumberInput.tsx +0 -70
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/composites/NumberInput/NumberInputField.tsx +0 -59
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/composites/NumberInput/NumberInputStepper.tsx +0 -82
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/composites/NumberInput/index.tsx +0 -13
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/composites/NumberInput/types.tsx +0 -42
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/composites/PinInput/Context.ts +0 -3
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/composites/PinInput/PinInput.tsx +0 -121
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/composites/PinInput/PinInputField.tsx +0 -66
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/composites/PinInput/index.tsx +0 -15
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/composites/PinInput/types.tsx +0 -33
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/composites/Popover/Popover.tsx +0 -117
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/composites/Popover/PopoverArrow.tsx +0 -18
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/composites/Popover/PopoverBody.tsx +0 -25
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/composites/Popover/PopoverCloseButton.tsx +0 -70
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/composites/Popover/PopoverContent.tsx +0 -94
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/composites/Popover/PopoverContext.ts +0 -15
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/composites/Popover/PopoverFooter.tsx +0 -15
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/composites/Popover/PopoverHeader.tsx +0 -24
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/composites/Popover/index.tsx +0 -21
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/composites/Popover/types.ts +0 -165
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/composites/Popper/Popper.tsx +0 -290
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/composites/Popper/index.ts +0 -1
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/composites/Popper/types.ts +0 -45
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/composites/Progress/index.tsx +0 -93
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/composites/SimpleGrid/SimpleGrid.tsx +0 -101
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/composites/SimpleGrid/index.tsx +0 -2
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/composites/SimpleGrid/types.ts +0 -9
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/composites/Skeleton/Skeleton.tsx +0 -67
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/composites/Skeleton/SkeletonText.tsx +0 -57
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/composites/Skeleton/index.tsx +0 -11
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/composites/Skeleton/types.tsx +0 -83
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/composites/Stat/index.tsx +0 -113
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/composites/Tabs/Context.ts +0 -3
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/composites/Tabs/Tab.tsx +0 -102
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/composites/Tabs/TabBar.tsx +0 -42
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/composites/Tabs/TabIcon.tsx +0 -22
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/composites/Tabs/TabView.tsx +0 -18
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/composites/Tabs/TabViews.tsx +0 -23
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/composites/Tabs/Tabs.tsx +0 -123
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/composites/Tabs/index.tsx +0 -27
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/composites/Tabs/types.tsx +0 -75
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/composites/Tag/index.tsx +0 -17
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/composites/Tag/types.ts +0 -13
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/composites/TextField/TextField.tsx +0 -79
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/composites/TextField/index.tsx +0 -2
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/composites/TextField/types.tsx +0 -19
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/composites/Toast/Toast.tsx +0 -311
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/composites/Toast/ToastDummy.tsx +0 -6
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/composites/Toast/index.ts +0 -2
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/composites/Toast/types.ts +0 -83
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/composites/Toast/utils.ts +0 -29
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/composites/Tooltip/Tooltip.tsx +0 -161
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/composites/Tooltip/index.ts +0 -1
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/composites/Tooltip/types.ts +0 -82
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/composites/Transitions/Fade.tsx +0 -23
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/composites/Transitions/PresenceTransition.tsx +0 -36
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/composites/Transitions/ScaleFade.tsx +0 -24
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/composites/Transitions/Slide.tsx +0 -134
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/composites/Transitions/SlideFade.tsx +0 -81
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/composites/Transitions/Stagger.tsx +0 -79
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/composites/Transitions/Transition.tsx +0 -200
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/composites/Transitions/index.tsx +0 -12
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/composites/Transitions/types.tsx +0 -117
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/composites/Typeahead/Typeahead.tsx +0 -240
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/composites/Typeahead/index.ts +0 -2
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/composites/Typeahead/types.ts +0 -68
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/composites/Typeahead/useTypeahead/index.ts +0 -1
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/composites/Typeahead/useTypeahead/reducer.tsx +0 -80
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/composites/Typeahead/useTypeahead/types.tsx +0 -27
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/composites/Typeahead/useTypeahead/useTypeahead.ts +0 -102
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/composites/Typeahead/useTypeahead/utils.ts +0 -24
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/composites/Wrap/index.tsx +0 -32
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/composites/Wrap/types.ts +0 -5
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/composites/index.ts +0 -152
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/primitives/Box/index.tsx +0 -118
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/primitives/Box/types.ts +0 -49
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/primitives/Button/Button.tsx +0 -149
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/primitives/Button/ButtonGroup.tsx +0 -93
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/primitives/Button/index.tsx +0 -12
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/primitives/Button/types.ts +0 -185
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/primitives/Checkbox/Checkbox.tsx +0 -206
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/primitives/Checkbox/Checkbox.web.tsx +0 -201
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/primitives/Checkbox/CheckboxGroup.tsx +0 -49
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/primitives/Checkbox/SizedIcon.tsx +0 -27
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/primitives/Checkbox/index.tsx +0 -12
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/primitives/Checkbox/test/checkbox.test.tsx +0 -194
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/primitives/Checkbox/types.tsx +0 -199
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/primitives/Column/index.tsx +0 -2
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/primitives/Flex/index.tsx +0 -47
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/primitives/Flex/types.ts +0 -24
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/primitives/GridItem/props.ts +0 -27
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/primitives/Heading/index.tsx +0 -17
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/primitives/Heading/types.ts +0 -13
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/primitives/Hidden/index.tsx +0 -81
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/primitives/Hidden/types.ts +0 -35
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/primitives/Icon/Icon.tsx +0 -41
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/primitives/Icon/Icons/Add.tsx +0 -6
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/primitives/Icon/Icons/Arrow.tsx +0 -51
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/primitives/Icon/Icons/Check.tsx +0 -13
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/primitives/Icon/Icons/Chevron.tsx +0 -25
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/primitives/Icon/Icons/Circle.tsx +0 -7
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/primitives/Icon/Icons/Close.tsx +0 -20
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/primitives/Icon/Icons/Delete.tsx +0 -7
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/primitives/Icon/Icons/Favourite.tsx +0 -7
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/primitives/Icon/Icons/Hamburger.tsx +0 -7
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/primitives/Icon/Icons/Info.tsx +0 -20
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/primitives/Icon/Icons/Minus.tsx +0 -6
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/primitives/Icon/Icons/Moon.tsx +0 -7
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/primitives/Icon/Icons/Play.tsx +0 -7
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/primitives/Icon/Icons/Question.tsx +0 -13
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/primitives/Icon/Icons/Search.tsx +0 -7
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/primitives/Icon/Icons/Share.tsx +0 -7
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/primitives/Icon/Icons/Sun.tsx +0 -20
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/primitives/Icon/Icons/ThreeDots.tsx +0 -12
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/primitives/Icon/Icons/Warning.tsx +0 -22
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/primitives/Icon/Icons/WarningOutline.tsx +0 -7
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/primitives/Icon/Icons/index.tsx +0 -20
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/primitives/Icon/Icons/questionIconPath.tsx +0 -9
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/primitives/Icon/SVGIcon.tsx +0 -75
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/primitives/Icon/createIcon.tsx +0 -18
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/primitives/Icon/index.tsx +0 -3
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/primitives/Icon/nbSvg.tsx +0 -1
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/primitives/Icon/nbSvg.web.tsx +0 -25
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/primitives/Icon/types.ts +0 -73
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/primitives/Image/index.tsx +0 -112
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/primitives/Image/types.ts +0 -50
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/primitives/Input/Input.tsx +0 -161
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/primitives/Input/InputAddons.tsx +0 -34
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/primitives/Input/InputAdvanced.tsx +0 -127
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/primitives/Input/InputBase.tsx +0 -147
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/primitives/Input/InputGroup.tsx +0 -65
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/primitives/Input/index.tsx +0 -13
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/primitives/Input/types.ts +0 -132
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/primitives/Link/index.tsx +0 -82
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/primitives/Link/types.ts +0 -56
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/primitives/Link/useLink.ts +0 -43
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/primitives/List/List.tsx +0 -38
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/primitives/List/ListIcon.tsx +0 -15
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/primitives/List/ListItem.tsx +0 -203
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/primitives/List/Ordered.tsx +0 -38
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/primitives/List/Unordered.tsx +0 -35
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/primitives/List/index.tsx +0 -18
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/primitives/List/types.ts +0 -93
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/primitives/List/utils.ts +0 -78
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/primitives/Overlay/ExitAnimationContext.ts +0 -6
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/primitives/Overlay/Overlay.tsx +0 -73
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/primitives/Overlay/index.ts +0 -1
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/primitives/Pressable/Pressable.tsx +0 -120
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/primitives/Pressable/index.tsx +0 -2
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/primitives/Pressable/types.ts +0 -85
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/primitives/Radio/Radio.tsx +0 -208
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/primitives/Radio/Radio.web.tsx +0 -162
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/primitives/Radio/RadioGroup.tsx +0 -60
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/primitives/Radio/index.tsx +0 -17
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/primitives/Radio/test/radio.test.tsx +0 -74
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/primitives/Radio/types.tsx +0 -171
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/primitives/Row/index.tsx +0 -2
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/primitives/Select/Select.tsx +0 -266
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/primitives/Select/SelectItem.tsx +0 -50
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/primitives/Select/index.tsx +0 -16
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/primitives/Select/types.ts +0 -116
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/primitives/Slider/Context.ts +0 -3
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/primitives/Slider/Slider.tsx +0 -112
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/primitives/Slider/SliderFilledTrack.tsx +0 -55
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/primitives/Slider/SliderThumb.tsx +0 -154
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/primitives/Slider/SliderTrack.tsx +0 -50
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/primitives/Slider/index.tsx +0 -18
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/primitives/Slider/types.tsx +0 -134
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/primitives/Spinner/index.tsx +0 -38
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/primitives/Spinner/types.tsx +0 -25
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/primitives/Spinner/useSpinner.tsx +0 -10
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/primitives/Spinner/variants/default.tsx +0 -36
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/primitives/Spinner/variants/dotted.tsx +0 -58
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/primitives/Spinner/variants/index.ts +0 -5
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/primitives/Spinner/variants/multiColorDotted.tsx +0 -98
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/primitives/Spinner/variants/squareDotted.tsx +0 -48
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/primitives/Spinner/variants/stroked.tsx +0 -122
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/primitives/Stack/HStack.tsx +0 -26
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/primitives/Stack/Stack.tsx +0 -104
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/primitives/Stack/VStack.tsx +0 -27
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/primitives/Stack/index.tsx +0 -5
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/primitives/Switch/index.tsx +0 -99
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/primitives/Switch/test/switch.test.tsx +0 -38
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/primitives/Switch/types.ts +0 -73
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/primitives/Text/__test__/Text.test.tsx +0 -233
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/primitives/Text/index.tsx +0 -101
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/primitives/Text/types.tsx +0 -87
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/primitives/TextArea/index.tsx +0 -76
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/primitives/TouchableItem/index.tsx +0 -6
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/primitives/View/index.tsx +0 -20
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/primitives/View/types.ts +0 -10
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/primitives/VisuallyHidden/index.tsx +0 -12
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/primitives/ZStack/index.tsx +0 -29
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/primitives/index.ts +0 -73
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/types/ExtraProps.ts +0 -9
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/types/PlatformProps.ts +0 -27
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/types/index.tsx +0 -4
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/types/responsiveValue.ts +0 -8
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/components/types/utils.ts +0 -99
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/core/NativeBaseContext.ts +0 -26
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/core/NativeBaseProvider.tsx +0 -111
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/core/RobotoSlab.otf +0 -0
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/core/StrictMode.ts +0 -38
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/core/color-mode/hooks.tsx +0 -89
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/core/color-mode/index.tsx +0 -9
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/core/color-mode/types.ts +0 -25
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/core/extendTheme.tsx +0 -35
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/core/hybrid-overlay/Context.ts +0 -12
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/core/hybrid-overlay/HybridProvider.tsx +0 -80
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/core/hybrid-overlay/index.ts +0 -3
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/core/hybrid-overlay/types.ts +0 -5
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/core/index.ts +0 -20
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/factory/component.tsx +0 -25
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/factory/index.tsx +0 -2
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/factory/types.ts +0 -7
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/hooks/index.ts +0 -27
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/hooks/tests/useBreakpointValue.test.tsx +0 -44
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/hooks/useBreakpointResolvedProps.ts +0 -35
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/hooks/useBreakpointValue.ts +0 -31
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/hooks/useClipboard.ts +0 -19
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/hooks/useColorModeProps.ts +0 -18
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/hooks/useContrastText.ts +0 -155
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/hooks/useControllableProp.ts +0 -52
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/hooks/useDisclose.ts +0 -20
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/hooks/useHasResponsiveProps.ts +0 -19
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/hooks/useKeyboardDismissable.ts +0 -59
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/hooks/useLayout.tsx +0 -15
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/hooks/useMediaQuery.ts +0 -85
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/hooks/useNativeBase.tsx +0 -12
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/hooks/usePlatformProps.ts +0 -19
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/hooks/useResolvedFontFamily.ts +0 -54
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/hooks/useResponsiveSSRProps.ts +0 -24
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/hooks/useSafeArea/index.ts +0 -21
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/hooks/useSafeArea/utils.ts +0 -269
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/hooks/useScreenReaderEnabled.ts +0 -36
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/hooks/useStyledSystemPropsResolver.ts +0 -75
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/hooks/useTheme.ts +0 -12
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/hooks/useThemeProps/index.ts +0 -3
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/hooks/useThemeProps/propsFlattener.tsx +0 -347
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/hooks/useThemeProps/propsFlattenerTest.tsx +0 -258
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/hooks/useThemeProps/useProps.tsx +0 -54
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/hooks/useThemeProps/usePropsResolution.test.tsx +0 -1286
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/hooks/useThemeProps/usePropsResolution.tsx +0 -485
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/hooks/useThemeProps/usePropsResolutionTest.tsx +0 -367
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/hooks/useThemeProps/usePropsWithComponentTheme.ts +0 -9
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/hooks/useThemeProps/utils.ts +0 -289
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/hooks/useToken.ts +0 -23
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/index.tsx +0 -363
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/jest/mock.ts +0 -1
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/theme/base/borders.ts +0 -11
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/theme/base/breakpoints.ts +0 -11
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/theme/base/colors.ts +0 -351
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/theme/base/index.ts +0 -37
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/theme/base/opacity.ts +0 -20
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/theme/base/radius.ts +0 -15
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/theme/base/shadows.ts +0 -116
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/theme/base/sizes.ts +0 -26
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/theme/base/space.ts +0 -48
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/theme/base/types.ts +0 -11
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/theme/base/typography.ts +0 -147
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/theme/components/accordion.ts +0 -51
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/theme/components/actionsheet.ts +0 -110
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/theme/components/alert-dialog.ts +0 -195
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/theme/components/alert.ts +0 -160
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/theme/components/app-bar.ts +0 -17
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/theme/components/aspect-ratio.ts +0 -8
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/theme/components/avatar-badge.ts +0 -19
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/theme/components/avatar-group.ts +0 -37
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/theme/components/avatar.ts +0 -66
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/theme/components/badge.ts +0 -79
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/theme/components/box.ts +0 -6
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/theme/components/breadcrumb.ts +0 -26
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/theme/components/button.ts +0 -311
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/theme/components/card.ts +0 -11
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/theme/components/center.ts +0 -36
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/theme/components/checkbox-group.ts +0 -9
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/theme/components/checkbox.ts +0 -138
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/theme/components/circle.ts +0 -37
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/theme/components/circular-progress.ts +0 -43
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/theme/components/code.ts +0 -20
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/theme/components/container.ts +0 -15
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/theme/components/divider.ts +0 -31
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/theme/components/fab.ts +0 -22
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/theme/components/flatList.ts +0 -6
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/theme/components/flex.ts +0 -12
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/theme/components/form-control.ts +0 -82
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/theme/components/heading.ts +0 -45
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/theme/components/hstack.ts +0 -6
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/theme/components/icon-button.ts +0 -294
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/theme/components/icon.ts +0 -27
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/theme/components/image.ts +0 -19
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/theme/components/index.ts +0 -222
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/theme/components/input.ts +0 -272
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/theme/components/inputleftaddon.ts +0 -30
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/theme/components/inputrightaddon.ts +0 -30
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/theme/components/kbd.ts +0 -25
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/theme/components/keyboardAvoidingView.ts +0 -6
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/theme/components/link.ts +0 -17
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/theme/components/list.ts +0 -32
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/theme/components/menu.ts +0 -131
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/theme/components/modal.ts +0 -196
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/theme/components/number-input.ts +0 -35
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/theme/components/pin-input.ts +0 -62
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/theme/components/popover.ts +0 -144
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/theme/components/pressable.ts +0 -24
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/theme/components/progress.ts +0 -68
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/theme/components/radio-group.ts +0 -9
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/theme/components/radio.ts +0 -147
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/theme/components/scrollView.ts +0 -6
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/theme/components/sectionList.ts +0 -6
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/theme/components/select.ts +0 -81
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/theme/components/simple-grid.ts +0 -6
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/theme/components/skeleton.ts +0 -38
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/theme/components/slider.ts +0 -172
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/theme/components/spinner.ts +0 -12
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/theme/components/square.ts +0 -36
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/theme/components/stack.ts +0 -19
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/theme/components/stat.ts +0 -27
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/theme/components/statusBar.ts +0 -6
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/theme/components/switch.ts +0 -62
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/theme/components/tabs.ts +0 -244
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/theme/components/tag.ts +0 -55
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/theme/components/text.ts +0 -19
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/theme/components/textField.ts +0 -26
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/theme/components/textarea.ts +0 -14
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/theme/components/toast.ts +0 -46
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/theme/components/tooltip.ts +0 -27
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/theme/components/transitions.ts +0 -58
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/theme/components/typeahead.ts +0 -17
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/theme/components/view.ts +0 -6
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/theme/components/vstack.ts +0 -6
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/theme/components/wrap.ts +0 -2
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/theme/components/zstack.ts +0 -6
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/theme/index.ts +0 -35
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/theme/styled-system.ts +0 -791
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/theme/tests/findLastValidBreakpoint.test.tsx +0 -35
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/theme/tests/getClosestBreakpoint.test.tsx +0 -25
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/theme/tests/hasValidBreakpointFormat.test.tsx +0 -26
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/theme/tests/mode.test.tsx +0 -12
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/theme/tools/colors.ts +0 -96
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/theme/tools/index.ts +0 -2
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/theme/tools/platformUnits.test.js +0 -39
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/theme/tools/utils.ts +0 -336
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/theme/types.ts +0 -67
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/theme/v3-compatible-theme/index.ts +0 -1660
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/theme/v33x-theme/base/borders.ts +0 -11
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/theme/v33x-theme/base/breakpoints.ts +0 -11
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/theme/v33x-theme/base/colors.ts +0 -351
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/theme/v33x-theme/base/index.ts +0 -37
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/theme/v33x-theme/base/opacity.ts +0 -20
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/theme/v33x-theme/base/radius.ts +0 -15
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/theme/v33x-theme/base/shadows.ts +0 -116
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/theme/v33x-theme/base/sizes.ts +0 -26
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/theme/v33x-theme/base/space.ts +0 -48
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/theme/v33x-theme/base/types.ts +0 -11
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/theme/v33x-theme/base/typography.ts +0 -147
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/theme/v33x-theme/components/accordion.ts +0 -51
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/theme/v33x-theme/components/actionsheet.ts +0 -61
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/theme/v33x-theme/components/alert-dialog.ts +0 -135
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/theme/v33x-theme/components/alert.ts +0 -129
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/theme/v33x-theme/components/app-bar.ts +0 -17
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/theme/v33x-theme/components/aspect-ratio.ts +0 -8
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/theme/v33x-theme/components/avatar-badge.ts +0 -16
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/theme/v33x-theme/components/avatar-group.ts +0 -22
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/theme/v33x-theme/components/avatar.ts +0 -60
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/theme/v33x-theme/components/badge.ts +0 -57
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/theme/v33x-theme/components/box.ts +0 -6
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/theme/v33x-theme/components/breadcrumb.ts +0 -26
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/theme/v33x-theme/components/button.ts +0 -280
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/theme/v33x-theme/components/card.ts +0 -11
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/theme/v33x-theme/components/center.ts +0 -36
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/theme/v33x-theme/components/checkbox-group.ts +0 -9
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/theme/v33x-theme/components/checkbox.ts +0 -99
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/theme/v33x-theme/components/circle.ts +0 -37
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/theme/v33x-theme/components/circular-progress.ts +0 -43
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/theme/v33x-theme/components/code.ts +0 -20
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/theme/v33x-theme/components/container.ts +0 -15
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/theme/v33x-theme/components/divider.ts +0 -28
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/theme/v33x-theme/components/fab.ts +0 -22
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/theme/v33x-theme/components/flatList.ts +0 -6
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/theme/v33x-theme/components/flex.ts +0 -12
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/theme/v33x-theme/components/form-control.ts +0 -54
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/theme/v33x-theme/components/heading.ts +0 -40
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/theme/v33x-theme/components/hstack.ts +0 -6
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/theme/v33x-theme/components/icon-button.ts +0 -148
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/theme/v33x-theme/components/icon.ts +0 -24
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/theme/v33x-theme/components/image.ts +0 -19
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/theme/v33x-theme/components/index.ts +0 -222
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/theme/v33x-theme/components/input.ts +0 -144
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/theme/v33x-theme/components/inputleftaddon.ts +0 -20
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/theme/v33x-theme/components/inputrightaddon.ts +0 -20
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/theme/v33x-theme/components/kbd.ts +0 -25
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/theme/v33x-theme/components/keyboardAvoidingView.ts +0 -6
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/theme/v33x-theme/components/link.ts +0 -17
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/theme/v33x-theme/components/list.ts +0 -32
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/theme/v33x-theme/components/menu.ts +0 -76
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/theme/v33x-theme/components/modal.ts +0 -135
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/theme/v33x-theme/components/number-input.ts +0 -35
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/theme/v33x-theme/components/pin-input.ts +0 -62
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/theme/v33x-theme/components/popover.ts +0 -73
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/theme/v33x-theme/components/pressable.ts +0 -4
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/theme/v33x-theme/components/progress.ts +0 -59
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/theme/v33x-theme/components/radio-group.ts +0 -9
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/theme/v33x-theme/components/radio.ts +0 -106
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/theme/v33x-theme/components/scrollView.ts +0 -6
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/theme/v33x-theme/components/sectionList.ts +0 -6
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/theme/v33x-theme/components/select.ts +0 -56
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/theme/v33x-theme/components/simple-grid.ts +0 -6
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/theme/v33x-theme/components/skeleton.ts +0 -38
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/theme/v33x-theme/components/slider.ts +0 -87
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/theme/v33x-theme/components/spinner.ts +0 -12
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/theme/v33x-theme/components/square.ts +0 -36
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/theme/v33x-theme/components/stack.ts +0 -19
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/theme/v33x-theme/components/stat.ts +0 -27
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/theme/v33x-theme/components/statusBar.ts +0 -6
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/theme/v33x-theme/components/switch.ts +0 -59
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/theme/v33x-theme/components/tabs.ts +0 -244
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/theme/v33x-theme/components/tag.ts +0 -55
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/theme/v33x-theme/components/text.ts +0 -16
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/theme/v33x-theme/components/textField.ts +0 -26
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/theme/v33x-theme/components/textarea.ts +0 -11
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/theme/v33x-theme/components/toast.ts +0 -26
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/theme/v33x-theme/components/tooltip.ts +0 -19
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/theme/v33x-theme/components/transitions.ts +0 -58
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/theme/v33x-theme/components/typeahead.ts +0 -17
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/theme/v33x-theme/components/view.ts +0 -6
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/theme/v33x-theme/components/vstack.ts +0 -6
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/theme/v33x-theme/components/wrap.ts +0 -2
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/theme/v33x-theme/components/zstack.ts +0 -6
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/theme/v33x-theme/index.ts +0 -27
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/theme/v33x-theme/tools/colors.ts +0 -96
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/theme/v33x-theme/tools/index.ts +0 -2
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/theme/v33x-theme/tools/platformUnits.test.js +0 -39
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/theme/v33x-theme/tools/utils.ts +0 -334
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/utils/accessibilityTypes.ts +0 -9
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/utils/accessibilityUtils.ts +0 -2
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/utils/addTextAndPropsToStrings.tsx +0 -19
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/utils/canUseDom.ts +0 -8
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/utils/combineContextAndProps.ts +0 -6
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/utils/createContext.tsx +0 -33
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/utils/filterShadowProps.ts +0 -23
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/utils/getAbsoluteChildren.ts +0 -30
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/utils/getAttachedChildren.ts +0 -49
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/utils/getIndexedChildren.ts +0 -21
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/utils/getSpacedChildren.tsx +0 -90
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/utils/getUnit.ts +0 -78
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/utils/index.ts +0 -21
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/utils/isEmptyObj.ts +0 -6
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/utils/mergeRefs.ts +0 -23
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/utils/styled.tsx +0 -30
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/utils/test-utils.tsx +0 -15
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/utils/tests/filterShadow.test.tsx +0 -35
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/utils/useKeyboardBottomInset.ts +0 -36
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/utils/useResponsiveQuery/ResponsiveQueryProvider.tsx +0 -28
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/utils/useResponsiveQuery/common.ts +0 -88
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/utils/useResponsiveQuery/hash.ts +0 -65
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/utils/useResponsiveQuery/index.ts +0 -3
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/utils/useResponsiveQuery/types.ts +0 -33
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/utils/useResponsiveQuery/useResponsiveQuery.ts +0 -25
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/utils/useResponsiveQuery/useResponsiveQuery.web.ts +0 -177
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/utils/useResponsiveQuery/useStableMemo.ts +0 -8
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/utils/wrapStringChild.tsx +0 -16
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/tsconfig.json +0 -29
- package/Example/nativebase-v3-kitchensink/src/nb/components/Wrapper.tsx +0 -193
- package/Example/nativebase-v3-kitchensink/src/nb/components/basic/FlatList/Basic.tsx +0 -116
- package/Example/nativebase-v3-kitchensink/src/nb/components/basic/FlatList/index.tsx +0 -10
- package/Example/nativebase-v3-kitchensink/src/nb/components/basic/KeyboardAvoidingView/Basic.tsx +0 -35
- package/Example/nativebase-v3-kitchensink/src/nb/components/basic/KeyboardAvoidingView/Kitchensink-Basic.tsx +0 -43
- package/Example/nativebase-v3-kitchensink/src/nb/components/basic/KeyboardAvoidingView/index.tsx +0 -10
- package/Example/nativebase-v3-kitchensink/src/nb/components/basic/ScrollView/Basic.tsx +0 -56
- package/Example/nativebase-v3-kitchensink/src/nb/components/basic/ScrollView/index.tsx +0 -10
- package/Example/nativebase-v3-kitchensink/src/nb/components/basic/SectionList/Basic.tsx +0 -53
- package/Example/nativebase-v3-kitchensink/src/nb/components/basic/SectionList/index.tsx +0 -10
- package/Example/nativebase-v3-kitchensink/src/nb/components/basic/StatusBar/Basic.tsx +0 -25
- package/Example/nativebase-v3-kitchensink/src/nb/components/basic/StatusBar/index.tsx +0 -10
- package/Example/nativebase-v3-kitchensink/src/nb/components/basic/View/Basic.tsx +0 -16
- package/Example/nativebase-v3-kitchensink/src/nb/components/basic/View/index.tsx +0 -10
- package/Example/nativebase-v3-kitchensink/src/nb/components/composites/Accordion/AccessingInternalState.tsx +0 -45
- package/Example/nativebase-v3-kitchensink/src/nb/components/composites/Accordion/Basic.tsx +0 -46
- package/Example/nativebase-v3-kitchensink/src/nb/components/composites/Accordion/DefaultIndex.tsx +0 -46
- package/Example/nativebase-v3-kitchensink/src/nb/components/composites/Accordion/ExpandedStyle.tsx +0 -34
- package/Example/nativebase-v3-kitchensink/src/nb/components/composites/Accordion/Multiple.tsx +0 -46
- package/Example/nativebase-v3-kitchensink/src/nb/components/composites/Accordion/Playground.tsx +0 -50
- package/Example/nativebase-v3-kitchensink/src/nb/components/composites/Accordion/Toggle.tsx +0 -46
- package/Example/nativebase-v3-kitchensink/src/nb/components/composites/Accordion/index.tsx +0 -23
- package/Example/nativebase-v3-kitchensink/src/nb/components/composites/Actionsheet/Composition.tsx +0 -32
- package/Example/nativebase-v3-kitchensink/src/nb/components/composites/Actionsheet/CustomBackdrop.tsx +0 -29
- package/Example/nativebase-v3-kitchensink/src/nb/components/composites/Actionsheet/DisableOverlay.tsx +0 -33
- package/Example/nativebase-v3-kitchensink/src/nb/components/composites/Actionsheet/Icon.tsx +0 -59
- package/Example/nativebase-v3-kitchensink/src/nb/components/composites/Actionsheet/Usage.tsx +0 -32
- package/Example/nativebase-v3-kitchensink/src/nb/components/composites/Actionsheet/index.tsx +0 -18
- package/Example/nativebase-v3-kitchensink/src/nb/components/composites/Alert/action.tsx +0 -56
- package/Example/nativebase-v3-kitchensink/src/nb/components/composites/Alert/basic.tsx +0 -45
- package/Example/nativebase-v3-kitchensink/src/nb/components/composites/Alert/colorScheme.tsx +0 -46
- package/Example/nativebase-v3-kitchensink/src/nb/components/composites/Alert/composition.tsx +0 -71
- package/Example/nativebase-v3-kitchensink/src/nb/components/composites/Alert/index.tsx +0 -24
- package/Example/nativebase-v3-kitchensink/src/nb/components/composites/Alert/knobEnabled.tsx +0 -29
- package/Example/nativebase-v3-kitchensink/src/nb/components/composites/Alert/status.tsx +0 -60
- package/Example/nativebase-v3-kitchensink/src/nb/components/composites/Alert/usage.tsx +0 -44
- package/Example/nativebase-v3-kitchensink/src/nb/components/composites/Alert/variant.tsx +0 -85
- package/Example/nativebase-v3-kitchensink/src/nb/components/composites/AlertDialog/Basic.tsx +0 -44
- package/Example/nativebase-v3-kitchensink/src/nb/components/composites/AlertDialog/Transition.tsx +0 -46
- package/Example/nativebase-v3-kitchensink/src/nb/components/composites/AlertDialog/index.tsx +0 -12
- package/Example/nativebase-v3-kitchensink/src/nb/components/composites/AppBar/AppBarExamples.tsx +0 -171
- package/Example/nativebase-v3-kitchensink/src/nb/components/composites/AppBar/index.tsx +0 -11
- package/Example/nativebase-v3-kitchensink/src/nb/components/composites/AspectRatio/Basic.tsx +0 -10
- package/Example/nativebase-v3-kitchensink/src/nb/components/composites/AspectRatio/EmbedImage.tsx +0 -19
- package/Example/nativebase-v3-kitchensink/src/nb/components/composites/AspectRatio/index.tsx +0 -12
- package/Example/nativebase-v3-kitchensink/src/nb/components/composites/Avatar/AvatarBadge.tsx +0 -75
- package/Example/nativebase-v3-kitchensink/src/nb/components/composites/Avatar/AvatarGroup.tsx +0 -83
- package/Example/nativebase-v3-kitchensink/src/nb/components/composites/Avatar/Fallback.tsx +0 -22
- package/Example/nativebase-v3-kitchensink/src/nb/components/composites/Avatar/index.tsx +0 -20
- package/Example/nativebase-v3-kitchensink/src/nb/components/composites/Avatar/knobEnabled.tsx +0 -27
- package/Example/nativebase-v3-kitchensink/src/nb/components/composites/Avatar/size.tsx +0 -77
- package/Example/nativebase-v3-kitchensink/src/nb/components/composites/Avatar/usage.tsx +0 -45
- package/Example/nativebase-v3-kitchensink/src/nb/components/composites/Badge/color.tsx +0 -13
- package/Example/nativebase-v3-kitchensink/src/nb/components/composites/Badge/composition.tsx +0 -32
- package/Example/nativebase-v3-kitchensink/src/nb/components/composites/Badge/icons.tsx +0 -19
- package/Example/nativebase-v3-kitchensink/src/nb/components/composites/Badge/index.tsx +0 -20
- package/Example/nativebase-v3-kitchensink/src/nb/components/composites/Badge/knobEnabled.tsx +0 -14
- package/Example/nativebase-v3-kitchensink/src/nb/components/composites/Badge/usage.tsx +0 -10
- package/Example/nativebase-v3-kitchensink/src/nb/components/composites/Badge/variants.tsx +0 -31
- package/Example/nativebase-v3-kitchensink/src/nb/components/composites/Breadcrumb/Basic.tsx +0 -31
- package/Example/nativebase-v3-kitchensink/src/nb/components/composites/Breadcrumb/Collapsible.tsx +0 -102
- package/Example/nativebase-v3-kitchensink/src/nb/components/composites/Breadcrumb/ComponentSeparator.tsx +0 -33
- package/Example/nativebase-v3-kitchensink/src/nb/components/composites/Breadcrumb/Composition.tsx +0 -62
- package/Example/nativebase-v3-kitchensink/src/nb/components/composites/Breadcrumb/Separators.tsx +0 -31
- package/Example/nativebase-v3-kitchensink/src/nb/components/composites/Breadcrumb/index.tsx +0 -18
- package/Example/nativebase-v3-kitchensink/src/nb/components/composites/Card/Basic.tsx +0 -30
- package/Example/nativebase-v3-kitchensink/src/nb/components/composites/Card/index.tsx +0 -10
- package/Example/nativebase-v3-kitchensink/src/nb/components/composites/Center/Basic.tsx +0 -16
- package/Example/nativebase-v3-kitchensink/src/nb/components/composites/Center/SquareCircle.tsx +0 -17
- package/Example/nativebase-v3-kitchensink/src/nb/components/composites/Center/WithIcons.tsx +0 -18
- package/Example/nativebase-v3-kitchensink/src/nb/components/composites/Center/index.tsx +0 -14
- package/Example/nativebase-v3-kitchensink/src/nb/components/composites/CircularProgress/Basic.tsx +0 -10
- package/Example/nativebase-v3-kitchensink/src/nb/components/composites/CircularProgress/ColorScheme.tsx +0 -14
- package/Example/nativebase-v3-kitchensink/src/nb/components/composites/CircularProgress/Colors.tsx +0 -11
- package/Example/nativebase-v3-kitchensink/src/nb/components/composites/CircularProgress/Indeterminate.tsx +0 -12
- package/Example/nativebase-v3-kitchensink/src/nb/components/composites/CircularProgress/Label.tsx +0 -10
- package/Example/nativebase-v3-kitchensink/src/nb/components/composites/CircularProgress/MinMax.tsx +0 -22
- package/Example/nativebase-v3-kitchensink/src/nb/components/composites/CircularProgress/Sizes.tsx +0 -14
- package/Example/nativebase-v3-kitchensink/src/nb/components/composites/CircularProgress/Thickness.tsx +0 -10
- package/Example/nativebase-v3-kitchensink/src/nb/components/composites/CircularProgress/TrackColor.tsx +0 -14
- package/Example/nativebase-v3-kitchensink/src/nb/components/composites/CircularProgress/index.tsx +0 -26
- package/Example/nativebase-v3-kitchensink/src/nb/components/composites/CloseButton/Basic.tsx +0 -5
- package/Example/nativebase-v3-kitchensink/src/nb/components/composites/CloseButton/Sizes.tsx +0 -11
- package/Example/nativebase-v3-kitchensink/src/nb/components/composites/CloseButton/index.tsx +0 -12
- package/Example/nativebase-v3-kitchensink/src/nb/components/composites/Code/Basic.tsx +0 -5
- package/Example/nativebase-v3-kitchensink/src/nb/components/composites/Code/colors.tsx +0 -12
- package/Example/nativebase-v3-kitchensink/src/nb/components/composites/Code/index.tsx +0 -13
- package/Example/nativebase-v3-kitchensink/src/nb/components/composites/Collapse/Basic.tsx +0 -21
- package/Example/nativebase-v3-kitchensink/src/nb/components/composites/Collapse/Callback.tsx +0 -38
- package/Example/nativebase-v3-kitchensink/src/nb/components/composites/Collapse/Duration.tsx +0 -22
- package/Example/nativebase-v3-kitchensink/src/nb/components/composites/Collapse/index.tsx +0 -15
- package/Example/nativebase-v3-kitchensink/src/nb/components/composites/Container/Playground.tsx +0 -21
- package/Example/nativebase-v3-kitchensink/src/nb/components/composites/Container/centeringChildren.tsx +0 -16
- package/Example/nativebase-v3-kitchensink/src/nb/components/composites/Container/index.tsx +0 -12
- package/Example/nativebase-v3-kitchensink/src/nb/components/composites/Container/usage.tsx +0 -18
- package/Example/nativebase-v3-kitchensink/src/nb/components/composites/Divider/Basic.tsx +0 -22
- package/Example/nativebase-v3-kitchensink/src/nb/components/composites/Divider/Composition.tsx +0 -16
- package/Example/nativebase-v3-kitchensink/src/nb/components/composites/Divider/Orientation.tsx +0 -27
- package/Example/nativebase-v3-kitchensink/src/nb/components/composites/Divider/index.tsx +0 -14
- package/Example/nativebase-v3-kitchensink/src/nb/components/composites/Drawer/Basic.tsx +0 -28
- package/Example/nativebase-v3-kitchensink/src/nb/components/composites/Drawer/index.tsx +0 -10
- package/Example/nativebase-v3-kitchensink/src/nb/components/composites/ErrorTest/EventError.tsx +0 -16
- package/Example/nativebase-v3-kitchensink/src/nb/components/composites/ErrorTest/UIError.tsx +0 -21
- package/Example/nativebase-v3-kitchensink/src/nb/components/composites/ErrorTest/index.tsx +0 -13
- package/Example/nativebase-v3-kitchensink/src/nb/components/composites/Fab/Basic.tsx +0 -15
- package/Example/nativebase-v3-kitchensink/src/nb/components/composites/Fab/CustomPosition.tsx +0 -15
- package/Example/nativebase-v3-kitchensink/src/nb/components/composites/Fab/DocsBasic.tsx +0 -25
- package/Example/nativebase-v3-kitchensink/src/nb/components/composites/Fab/DocsCustomPosition.tsx +0 -27
- package/Example/nativebase-v3-kitchensink/src/nb/components/composites/Fab/DocsPlacement.tsx +0 -29
- package/Example/nativebase-v3-kitchensink/src/nb/components/composites/Fab/Kitchensink-Basic.tsx +0 -17
- package/Example/nativebase-v3-kitchensink/src/nb/components/composites/Fab/Kitchensink-CustomPosition.tsx +0 -17
- package/Example/nativebase-v3-kitchensink/src/nb/components/composites/Fab/Kitchensink-Placement.tsx +0 -21
- package/Example/nativebase-v3-kitchensink/src/nb/components/composites/Fab/Placement.tsx +0 -23
- package/Example/nativebase-v3-kitchensink/src/nb/components/composites/Fab/index.tsx +0 -14
- package/Example/nativebase-v3-kitchensink/src/nb/components/composites/FormControl/CustomStyle.tsx +0 -76
- package/Example/nativebase-v3-kitchensink/src/nb/components/composites/FormControl/Playground.tsx +0 -26
- package/Example/nativebase-v3-kitchensink/src/nb/components/composites/FormControl/Usage.tsx +0 -35
- package/Example/nativebase-v3-kitchensink/src/nb/components/composites/FormControl/index.tsx +0 -14
- package/Example/nativebase-v3-kitchensink/src/nb/components/composites/IconButton/Basic.tsx +0 -37
- package/Example/nativebase-v3-kitchensink/src/nb/components/composites/IconButton/SVGIcon.tsx +0 -42
- package/Example/nativebase-v3-kitchensink/src/nb/components/composites/IconButton/Sizes.tsx +0 -21
- package/Example/nativebase-v3-kitchensink/src/nb/components/composites/IconButton/Variant.tsx +0 -22
- package/Example/nativebase-v3-kitchensink/src/nb/components/composites/IconButton/index.tsx +0 -16
- package/Example/nativebase-v3-kitchensink/src/nb/components/composites/Kbd/Basic.tsx +0 -24
- package/Example/nativebase-v3-kitchensink/src/nb/components/composites/Kbd/index.tsx +0 -10
- package/Example/nativebase-v3-kitchensink/src/nb/components/composites/Menu/Basic.tsx +0 -28
- package/Example/nativebase-v3-kitchensink/src/nb/components/composites/Menu/Group.tsx +0 -30
- package/Example/nativebase-v3-kitchensink/src/nb/components/composites/Menu/MenuOptionsGroup.tsx +0 -33
- package/Example/nativebase-v3-kitchensink/src/nb/components/composites/Menu/MenuPositions.tsx +0 -54
- package/Example/nativebase-v3-kitchensink/src/nb/components/composites/Menu/index.tsx +0 -16
- package/Example/nativebase-v3-kitchensink/src/nb/components/composites/Modal/Basic.tsx +0 -49
- package/Example/nativebase-v3-kitchensink/src/nb/components/composites/Modal/CustomBackdrop.tsx +0 -50
- package/Example/nativebase-v3-kitchensink/src/nb/components/composites/Modal/ModalPlacement.tsx +0 -81
- package/Example/nativebase-v3-kitchensink/src/nb/components/composites/Modal/ModalRefEg.tsx +0 -69
- package/Example/nativebase-v3-kitchensink/src/nb/components/composites/Modal/ModalWithAvoidKeyboard.tsx +0 -53
- package/Example/nativebase-v3-kitchensink/src/nb/components/composites/Modal/MultipleModal.tsx +0 -138
- package/Example/nativebase-v3-kitchensink/src/nb/components/composites/Modal/Size.tsx +0 -66
- package/Example/nativebase-v3-kitchensink/src/nb/components/composites/Modal/index.tsx +0 -22
- package/Example/nativebase-v3-kitchensink/src/nb/components/composites/NumberInput/Combination.tsx +0 -42
- package/Example/nativebase-v3-kitchensink/src/nb/components/composites/NumberInput/DefaultValue.tsx +0 -22
- package/Example/nativebase-v3-kitchensink/src/nb/components/composites/NumberInput/FormControlled.tsx +0 -31
- package/Example/nativebase-v3-kitchensink/src/nb/components/composites/NumberInput/MinMax.tsx +0 -22
- package/Example/nativebase-v3-kitchensink/src/nb/components/composites/NumberInput/Playground.tsx +0 -31
- package/Example/nativebase-v3-kitchensink/src/nb/components/composites/NumberInput/Steps.tsx +0 -22
- package/Example/nativebase-v3-kitchensink/src/nb/components/composites/NumberInput/Usage.tsx +0 -23
- package/Example/nativebase-v3-kitchensink/src/nb/components/composites/NumberInput/index.tsx +0 -22
- package/Example/nativebase-v3-kitchensink/src/nb/components/composites/PinInput/DefaultValue.tsx +0 -19
- package/Example/nativebase-v3-kitchensink/src/nb/components/composites/PinInput/FormControlled.tsx +0 -22
- package/Example/nativebase-v3-kitchensink/src/nb/components/composites/PinInput/ManageFocus.tsx +0 -13
- package/Example/nativebase-v3-kitchensink/src/nb/components/composites/PinInput/Placeholder.tsx +0 -12
- package/Example/nativebase-v3-kitchensink/src/nb/components/composites/PinInput/Playground.tsx +0 -22
- package/Example/nativebase-v3-kitchensink/src/nb/components/composites/PinInput/Size.tsx +0 -39
- package/Example/nativebase-v3-kitchensink/src/nb/components/composites/PinInput/Usage.tsx +0 -13
- package/Example/nativebase-v3-kitchensink/src/nb/components/composites/PinInput/Variants.tsx +0 -34
- package/Example/nativebase-v3-kitchensink/src/nb/components/composites/PinInput/index.tsx +0 -24
- package/Example/nativebase-v3-kitchensink/src/nb/components/composites/Popover/Basic.tsx +0 -36
- package/Example/nativebase-v3-kitchensink/src/nb/components/composites/Popover/PopoverPositions.tsx +0 -81
- package/Example/nativebase-v3-kitchensink/src/nb/components/composites/Popover/RefEg.tsx +0 -55
- package/Example/nativebase-v3-kitchensink/src/nb/components/composites/Popover/index.tsx +0 -14
- package/Example/nativebase-v3-kitchensink/src/nb/components/composites/Progress/Basic.tsx +0 -12
- package/Example/nativebase-v3-kitchensink/src/nb/components/composites/Progress/ColorScheme.tsx +0 -20
- package/Example/nativebase-v3-kitchensink/src/nb/components/composites/Progress/Composition.tsx +0 -23
- package/Example/nativebase-v3-kitchensink/src/nb/components/composites/Progress/CustomBgColor.tsx +0 -19
- package/Example/nativebase-v3-kitchensink/src/nb/components/composites/Progress/Flat.tsx +0 -12
- package/Example/nativebase-v3-kitchensink/src/nb/components/composites/Progress/Sizes.tsx +0 -21
- package/Example/nativebase-v3-kitchensink/src/nb/components/composites/Progress/index.tsx +0 -20
- package/Example/nativebase-v3-kitchensink/src/nb/components/composites/SignalTest/EventSignal.tsx +0 -33
- package/Example/nativebase-v3-kitchensink/src/nb/components/composites/SignalTest/index.tsx +0 -11
- package/Example/nativebase-v3-kitchensink/src/nb/components/composites/SimpleGrid/MinWidthColumns.tsx +0 -15
- package/Example/nativebase-v3-kitchensink/src/nb/components/composites/SimpleGrid/NumberOfColumns.tsx +0 -23
- package/Example/nativebase-v3-kitchensink/src/nb/components/composites/SimpleGrid/index.tsx +0 -12
- package/Example/nativebase-v3-kitchensink/src/nb/components/composites/Skeleton/Basic.tsx +0 -22
- package/Example/nativebase-v3-kitchensink/src/nb/components/composites/Skeleton/Color.tsx +0 -29
- package/Example/nativebase-v3-kitchensink/src/nb/components/composites/Skeleton/Composition.tsx +0 -37
- package/Example/nativebase-v3-kitchensink/src/nb/components/composites/Skeleton/FadeDuration.tsx +0 -15
- package/Example/nativebase-v3-kitchensink/src/nb/components/composites/Skeleton/index.tsx +0 -18
- package/Example/nativebase-v3-kitchensink/src/nb/components/composites/Skeleton/isLoaded.tsx +0 -60
- package/Example/nativebase-v3-kitchensink/src/nb/components/composites/Stat/Example.tsx +0 -15
- package/Example/nativebase-v3-kitchensink/src/nb/components/composites/Stat/Indicator.tsx +0 -28
- package/Example/nativebase-v3-kitchensink/src/nb/components/composites/Stat/index.tsx +0 -12
- package/Example/nativebase-v3-kitchensink/src/nb/components/composites/Tabs/Colors.tsx +0 -69
- package/Example/nativebase-v3-kitchensink/src/nb/components/composites/Tabs/Composition.tsx +0 -22
- package/Example/nativebase-v3-kitchensink/src/nb/components/composites/Tabs/Controlled.tsx +0 -23
- package/Example/nativebase-v3-kitchensink/src/nb/components/composites/Tabs/FittedTab.tsx +0 -17
- package/Example/nativebase-v3-kitchensink/src/nb/components/composites/Tabs/IconTabs.tsx +0 -30
- package/Example/nativebase-v3-kitchensink/src/nb/components/composites/Tabs/Size.tsx +0 -48
- package/Example/nativebase-v3-kitchensink/src/nb/components/composites/Tabs/TabAlignment.tsx +0 -45
- package/Example/nativebase-v3-kitchensink/src/nb/components/composites/Tabs/TabBarOnly.tsx +0 -15
- package/Example/nativebase-v3-kitchensink/src/nb/components/composites/Tabs/Usage.tsx +0 -17
- package/Example/nativebase-v3-kitchensink/src/nb/components/composites/Tabs/Variants.tsx +0 -45
- package/Example/nativebase-v3-kitchensink/src/nb/components/composites/Tabs/index.tsx +0 -28
- package/Example/nativebase-v3-kitchensink/src/nb/components/composites/Tag/Basic.tsx +0 -6
- package/Example/nativebase-v3-kitchensink/src/nb/components/composites/Tag/Custom.tsx +0 -18
- package/Example/nativebase-v3-kitchensink/src/nb/components/composites/Tag/Size.tsx +0 -14
- package/Example/nativebase-v3-kitchensink/src/nb/components/composites/Tag/Variants.tsx +0 -14
- package/Example/nativebase-v3-kitchensink/src/nb/components/composites/Tag/WithIcon.tsx +0 -12
- package/Example/nativebase-v3-kitchensink/src/nb/components/composites/Tag/index.tsx +0 -18
- package/Example/nativebase-v3-kitchensink/src/nb/components/composites/TextField/Basic.tsx +0 -6
- package/Example/nativebase-v3-kitchensink/src/nb/components/composites/TextField/Invalid.tsx +0 -19
- package/Example/nativebase-v3-kitchensink/src/nb/components/composites/TextField/Select.tsx +0 -25
- package/Example/nativebase-v3-kitchensink/src/nb/components/composites/TextField/Textarea.tsx +0 -20
- package/Example/nativebase-v3-kitchensink/src/nb/components/composites/TextField/WithIcon.tsx +0 -32
- package/Example/nativebase-v3-kitchensink/src/nb/components/composites/TextField/index.tsx +0 -18
- package/Example/nativebase-v3-kitchensink/src/nb/components/composites/Toast/Basic.tsx +0 -20
- package/Example/nativebase-v3-kitchensink/src/nb/components/composites/Toast/CloseToast.tsx +0 -35
- package/Example/nativebase-v3-kitchensink/src/nb/components/composites/Toast/CustomComponent.tsx +0 -26
- package/Example/nativebase-v3-kitchensink/src/nb/components/composites/Toast/CustomComponentWithCustomId.tsx +0 -28
- package/Example/nativebase-v3-kitchensink/src/nb/components/composites/Toast/PreventDuplicate.tsx +0 -23
- package/Example/nativebase-v3-kitchensink/src/nb/components/composites/Toast/StandaloneToast.tsx +0 -18
- package/Example/nativebase-v3-kitchensink/src/nb/components/composites/Toast/StatusRecipies.tsx +0 -111
- package/Example/nativebase-v3-kitchensink/src/nb/components/composites/Toast/ToastPositions.tsx +0 -78
- package/Example/nativebase-v3-kitchensink/src/nb/components/composites/Toast/VariantRecipies.tsx +0 -133
- package/Example/nativebase-v3-kitchensink/src/nb/components/composites/Toast/index.tsx +0 -26
- package/Example/nativebase-v3-kitchensink/src/nb/components/composites/Tooltip/Basic.tsx +0 -12
- package/Example/nativebase-v3-kitchensink/src/nb/components/composites/Tooltip/CustomTooltip.tsx +0 -17
- package/Example/nativebase-v3-kitchensink/src/nb/components/composites/Tooltip/TooltipPositions.tsx +0 -39
- package/Example/nativebase-v3-kitchensink/src/nb/components/composites/Tooltip/index.tsx +0 -14
- package/Example/nativebase-v3-kitchensink/src/nb/components/composites/Transitions/Fade.tsx +0 -30
- package/Example/nativebase-v3-kitchensink/src/nb/components/composites/Transitions/ScaleFade.tsx +0 -22
- package/Example/nativebase-v3-kitchensink/src/nb/components/composites/Transitions/Slide.tsx +0 -34
- package/Example/nativebase-v3-kitchensink/src/nb/components/composites/Transitions/SlideComposition.tsx +0 -71
- package/Example/nativebase-v3-kitchensink/src/nb/components/composites/Transitions/SlideFade.tsx +0 -31
- package/Example/nativebase-v3-kitchensink/src/nb/components/composites/Transitions/SlideWrapped.tsx +0 -86
- package/Example/nativebase-v3-kitchensink/src/nb/components/composites/Transitions/Stagger.tsx +0 -137
- package/Example/nativebase-v3-kitchensink/src/nb/components/composites/Transitions/index.tsx +0 -20
- package/Example/nativebase-v3-kitchensink/src/nb/components/composites/Typeahead/UsingComponent.tsx +0 -40
- package/Example/nativebase-v3-kitchensink/src/nb/components/composites/Typeahead/UsingComponentWithRenderItem.tsx +0 -59
- package/Example/nativebase-v3-kitchensink/src/nb/components/composites/Typeahead/UsingControlledInput.tsx +0 -42
- package/Example/nativebase-v3-kitchensink/src/nb/components/composites/Typeahead/UsingHook.tsx +0 -89
- package/Example/nativebase-v3-kitchensink/src/nb/components/composites/Typeahead/UsingWithAPI.tsx +0 -62
- package/Example/nativebase-v3-kitchensink/src/nb/components/composites/Typeahead/index.tsx +0 -18
- package/Example/nativebase-v3-kitchensink/src/nb/components/composites/Wrap/AlignmentAlign.tsx +0 -20
- package/Example/nativebase-v3-kitchensink/src/nb/components/composites/Wrap/AlignmentJustify.tsx +0 -20
- package/Example/nativebase-v3-kitchensink/src/nb/components/composites/Wrap/Basic.tsx +0 -35
- package/Example/nativebase-v3-kitchensink/src/nb/components/composites/Wrap/Spacing.tsx +0 -20
- package/Example/nativebase-v3-kitchensink/src/nb/components/composites/Wrap/index.tsx +0 -16
- package/Example/nativebase-v3-kitchensink/src/nb/components/composites/factory/index.tsx +0 -16
- package/Example/nativebase-v3-kitchensink/src/nb/components/composites/factory/modes.tsx +0 -15
- package/Example/nativebase-v3-kitchensink/src/nb/components/composites/factory/ref.tsx +0 -29
- package/Example/nativebase-v3-kitchensink/src/nb/components/composites/factory/theme.tsx +0 -13
- package/Example/nativebase-v3-kitchensink/src/nb/components/composites/factory/usage.tsx +0 -8
- package/Example/nativebase-v3-kitchensink/src/nb/components/perf/NBButton.tsx +0 -14
- package/Example/nativebase-v3-kitchensink/src/nb/components/perf/RNButton.tsx +0 -12
- package/Example/nativebase-v3-kitchensink/src/nb/components/perf/index.tsx +0 -18
- package/Example/nativebase-v3-kitchensink/src/nb/components/primitives/Box/LinearGrad.tsx +0 -26
- package/Example/nativebase-v3-kitchensink/src/nb/components/primitives/Box/WithRef.tsx +0 -29
- package/Example/nativebase-v3-kitchensink/src/nb/components/primitives/Box/basic.tsx +0 -20
- package/Example/nativebase-v3-kitchensink/src/nb/components/primitives/Box/composition-card.tsx +0 -126
- package/Example/nativebase-v3-kitchensink/src/nb/components/primitives/Box/composition-card1.tsx +0 -40
- package/Example/nativebase-v3-kitchensink/src/nb/components/primitives/Box/composition-card2.tsx +0 -39
- package/Example/nativebase-v3-kitchensink/src/nb/components/primitives/Box/composition-card3.tsx +0 -57
- package/Example/nativebase-v3-kitchensink/src/nb/components/primitives/Box/composition-shoes-card.tsx +0 -54
- package/Example/nativebase-v3-kitchensink/src/nb/components/primitives/Box/composition.tsx +0 -86
- package/Example/nativebase-v3-kitchensink/src/nb/components/primitives/Box/index.tsx +0 -26
- package/Example/nativebase-v3-kitchensink/src/nb/components/primitives/Button/Composition.tsx +0 -18
- package/Example/nativebase-v3-kitchensink/src/nb/components/primitives/Button/WithRef.tsx +0 -31
- package/Example/nativebase-v3-kitchensink/src/nb/components/primitives/Button/basic.tsx +0 -10
- package/Example/nativebase-v3-kitchensink/src/nb/components/primitives/Button/icons.tsx +0 -21
- package/Example/nativebase-v3-kitchensink/src/nb/components/primitives/Button/index.tsx +0 -22
- package/Example/nativebase-v3-kitchensink/src/nb/components/primitives/Button/loading.tsx +0 -34
- package/Example/nativebase-v3-kitchensink/src/nb/components/primitives/Button/sizes.tsx +0 -14
- package/Example/nativebase-v3-kitchensink/src/nb/components/primitives/Button/variants.tsx +0 -145
- package/Example/nativebase-v3-kitchensink/src/nb/components/primitives/ButtonGroup/basic.tsx +0 -16
- package/Example/nativebase-v3-kitchensink/src/nb/components/primitives/ButtonGroup/direction.tsx +0 -44
- package/Example/nativebase-v3-kitchensink/src/nb/components/primitives/ButtonGroup/index.tsx +0 -18
- package/Example/nativebase-v3-kitchensink/src/nb/components/primitives/ButtonGroup/isAttached.tsx +0 -89
- package/Example/nativebase-v3-kitchensink/src/nb/components/primitives/ButtonGroup/sizes.tsx +0 -22
- package/Example/nativebase-v3-kitchensink/src/nb/components/primitives/ButtonGroup/variants.tsx +0 -68
- package/Example/nativebase-v3-kitchensink/src/nb/components/primitives/Checkbox/FormControlled.tsx +0 -52
- package/Example/nativebase-v3-kitchensink/src/nb/components/primitives/Checkbox/basic.tsx +0 -15
- package/Example/nativebase-v3-kitchensink/src/nb/components/primitives/Checkbox/checkboxGroup.tsx +0 -45
- package/Example/nativebase-v3-kitchensink/src/nb/components/primitives/Checkbox/controlledCheckbox.tsx +0 -19
- package/Example/nativebase-v3-kitchensink/src/nb/components/primitives/Checkbox/customColor.tsx +0 -27
- package/Example/nativebase-v3-kitchensink/src/nb/components/primitives/Checkbox/customIcon.tsx +0 -52
- package/Example/nativebase-v3-kitchensink/src/nb/components/primitives/Checkbox/disabled.tsx +0 -15
- package/Example/nativebase-v3-kitchensink/src/nb/components/primitives/Checkbox/index.tsx +0 -32
- package/Example/nativebase-v3-kitchensink/src/nb/components/primitives/Checkbox/invalid.tsx +0 -10
- package/Example/nativebase-v3-kitchensink/src/nb/components/primitives/Checkbox/playground.tsx +0 -25
- package/Example/nativebase-v3-kitchensink/src/nb/components/primitives/Checkbox/size.tsx +0 -20
- package/Example/nativebase-v3-kitchensink/src/nb/components/primitives/Checkbox/uncontrolledCheckbox.tsx +0 -13
- package/Example/nativebase-v3-kitchensink/src/nb/components/primitives/Checkbox/withRef.tsx +0 -42
- package/Example/nativebase-v3-kitchensink/src/nb/components/primitives/Column/Basic.tsx +0 -12
- package/Example/nativebase-v3-kitchensink/src/nb/components/primitives/Column/index.tsx +0 -10
- package/Example/nativebase-v3-kitchensink/src/nb/components/primitives/Flex/basic.tsx +0 -186
- package/Example/nativebase-v3-kitchensink/src/nb/components/primitives/Flex/index.tsx +0 -12
- package/Example/nativebase-v3-kitchensink/src/nb/components/primitives/Flex/spacer.tsx +0 -34
- package/Example/nativebase-v3-kitchensink/src/nb/components/primitives/HStack/basic.tsx +0 -12
- package/Example/nativebase-v3-kitchensink/src/nb/components/primitives/HStack/index.tsx +0 -10
- package/Example/nativebase-v3-kitchensink/src/nb/components/primitives/Heading/Basic.tsx +0 -6
- package/Example/nativebase-v3-kitchensink/src/nb/components/primitives/Heading/Composition.tsx +0 -16
- package/Example/nativebase-v3-kitchensink/src/nb/components/primitives/Heading/OverridenStyle.tsx +0 -10
- package/Example/nativebase-v3-kitchensink/src/nb/components/primitives/Heading/Sizes.tsx +0 -17
- package/Example/nativebase-v3-kitchensink/src/nb/components/primitives/Heading/Truncate.tsx +0 -11
- package/Example/nativebase-v3-kitchensink/src/nb/components/primitives/Heading/index.tsx +0 -18
- package/Example/nativebase-v3-kitchensink/src/nb/components/primitives/Hidden/basic.tsx +0 -17
- package/Example/nativebase-v3-kitchensink/src/nb/components/primitives/Hidden/hiddenFromAndToBreakpoints.tsx +0 -22
- package/Example/nativebase-v3-kitchensink/src/nb/components/primitives/Hidden/hiddenOnColorModes.tsx +0 -45
- package/Example/nativebase-v3-kitchensink/src/nb/components/primitives/Hidden/hiddenOnPlatforms.tsx +0 -17
- package/Example/nativebase-v3-kitchensink/src/nb/components/primitives/Hidden/hiddenOnlyOnBreakPoints.tsx +0 -17
- package/Example/nativebase-v3-kitchensink/src/nb/components/primitives/Hidden/index.tsx +0 -18
- package/Example/nativebase-v3-kitchensink/src/nb/components/primitives/Icon/AllIcons.tsx +0 -195
- package/Example/nativebase-v3-kitchensink/src/nb/components/primitives/Icon/Basic.tsx +0 -13
- package/Example/nativebase-v3-kitchensink/src/nb/components/primitives/Icon/CreateIcon.tsx +0 -16
- package/Example/nativebase-v3-kitchensink/src/nb/components/primitives/Icon/CustomIcon.tsx +0 -27
- package/Example/nativebase-v3-kitchensink/src/nb/components/primitives/Icon/Sizes.tsx +0 -22
- package/Example/nativebase-v3-kitchensink/src/nb/components/primitives/Icon/ThirdPartyIcons.tsx +0 -30
- package/Example/nativebase-v3-kitchensink/src/nb/components/primitives/Icon/index.tsx +0 -20
- package/Example/nativebase-v3-kitchensink/src/nb/components/primitives/Image/Basic.tsx +0 -15
- package/Example/nativebase-v3-kitchensink/src/nb/components/primitives/Image/BorderRadius.tsx +0 -16
- package/Example/nativebase-v3-kitchensink/src/nb/components/primitives/Image/FallbackElement.tsx +0 -19
- package/Example/nativebase-v3-kitchensink/src/nb/components/primitives/Image/FallbackSupport.tsx +0 -19
- package/Example/nativebase-v3-kitchensink/src/nb/components/primitives/Image/Sizes.tsx +0 -37
- package/Example/nativebase-v3-kitchensink/src/nb/components/primitives/Image/WithRef.tsx +0 -33
- package/Example/nativebase-v3-kitchensink/src/nb/components/primitives/Image/index.tsx +0 -20
- package/Example/nativebase-v3-kitchensink/src/nb/components/primitives/Input/Addons.tsx +0 -21
- package/Example/nativebase-v3-kitchensink/src/nb/components/primitives/Input/Basic.tsx +0 -10
- package/Example/nativebase-v3-kitchensink/src/nb/components/primitives/Input/Controlled.tsx +0 -17
- package/Example/nativebase-v3-kitchensink/src/nb/components/primitives/Input/Elements.tsx +0 -37
- package/Example/nativebase-v3-kitchensink/src/nb/components/primitives/Input/FormControlled.tsx +0 -16
- package/Example/nativebase-v3-kitchensink/src/nb/components/primitives/Input/Masked.tsx +0 -29
- package/Example/nativebase-v3-kitchensink/src/nb/components/primitives/Input/Size.tsx +0 -15
- package/Example/nativebase-v3-kitchensink/src/nb/components/primitives/Input/Variant.tsx +0 -13
- package/Example/nativebase-v3-kitchensink/src/nb/components/primitives/Input/index.tsx +0 -24
- package/Example/nativebase-v3-kitchensink/src/nb/components/primitives/Link/Basic.tsx +0 -12
- package/Example/nativebase-v3-kitchensink/src/nb/components/primitives/Link/CompositeLink.tsx +0 -47
- package/Example/nativebase-v3-kitchensink/src/nb/components/primitives/Link/CustomOnPress.tsx +0 -25
- package/Example/nativebase-v3-kitchensink/src/nb/components/primitives/Link/ExternalLink.tsx +0 -25
- package/Example/nativebase-v3-kitchensink/src/nb/components/primitives/Link/UnderlineLink.tsx +0 -31
- package/Example/nativebase-v3-kitchensink/src/nb/components/primitives/Link/index.tsx +0 -18
- package/Example/nativebase-v3-kitchensink/src/nb/components/primitives/List/Basic.tsx +0 -16
- package/Example/nativebase-v3-kitchensink/src/nb/components/primitives/List/ListWithIcon.tsx +0 -25
- package/Example/nativebase-v3-kitchensink/src/nb/components/primitives/List/OrderedList.tsx +0 -16
- package/Example/nativebase-v3-kitchensink/src/nb/components/primitives/List/PressableList.tsx +0 -50
- package/Example/nativebase-v3-kitchensink/src/nb/components/primitives/List/StylingList.tsx +0 -17
- package/Example/nativebase-v3-kitchensink/src/nb/components/primitives/List/UnorderedList.tsx +0 -16
- package/Example/nativebase-v3-kitchensink/src/nb/components/primitives/List/VirtualizedList.tsx +0 -40
- package/Example/nativebase-v3-kitchensink/src/nb/components/primitives/List/index.tsx +0 -22
- package/Example/nativebase-v3-kitchensink/src/nb/components/primitives/Pressable/Basic.tsx +0 -49
- package/Example/nativebase-v3-kitchensink/src/nb/components/primitives/Pressable/Events.tsx +0 -88
- package/Example/nativebase-v3-kitchensink/src/nb/components/primitives/Pressable/index.tsx +0 -12
- package/Example/nativebase-v3-kitchensink/src/nb/components/primitives/Radio/controlledRadio.tsx +0 -23
- package/Example/nativebase-v3-kitchensink/src/nb/components/primitives/Radio/customColor.tsx +0 -22
- package/Example/nativebase-v3-kitchensink/src/nb/components/primitives/Radio/customIcon.tsx +0 -42
- package/Example/nativebase-v3-kitchensink/src/nb/components/primitives/Radio/disabled.tsx +0 -22
- package/Example/nativebase-v3-kitchensink/src/nb/components/primitives/Radio/formControlled.tsx +0 -36
- package/Example/nativebase-v3-kitchensink/src/nb/components/primitives/Radio/index.tsx +0 -28
- package/Example/nativebase-v3-kitchensink/src/nb/components/primitives/Radio/invalid.tsx +0 -12
- package/Example/nativebase-v3-kitchensink/src/nb/components/primitives/Radio/playground.tsx +0 -40
- package/Example/nativebase-v3-kitchensink/src/nb/components/primitives/Radio/size.tsx +0 -30
- package/Example/nativebase-v3-kitchensink/src/nb/components/primitives/Radio/uncontrolledRadio.tsx +0 -22
- package/Example/nativebase-v3-kitchensink/src/nb/components/primitives/Radio/withRef.tsx +0 -33
- package/Example/nativebase-v3-kitchensink/src/nb/components/primitives/Row/Basic.tsx +0 -36
- package/Example/nativebase-v3-kitchensink/src/nb/components/primitives/Row/index.tsx +0 -10
- package/Example/nativebase-v3-kitchensink/src/nb/components/primitives/Select/Basic.tsx +0 -31
- package/Example/nativebase-v3-kitchensink/src/nb/components/primitives/Select/FormControlled.tsx +0 -37
- package/Example/nativebase-v3-kitchensink/src/nb/components/primitives/Select/SelectLongList.tsx +0 -80
- package/Example/nativebase-v3-kitchensink/src/nb/components/primitives/Select/index.tsx +0 -14
- package/Example/nativebase-v3-kitchensink/src/nb/components/primitives/Slider/Customized.tsx +0 -24
- package/Example/nativebase-v3-kitchensink/src/nb/components/primitives/Slider/FormControlled.tsx +0 -29
- package/Example/nativebase-v3-kitchensink/src/nb/components/primitives/Slider/Playground.tsx +0 -15
- package/Example/nativebase-v3-kitchensink/src/nb/components/primitives/Slider/Size.tsx +0 -29
- package/Example/nativebase-v3-kitchensink/src/nb/components/primitives/Slider/Value.tsx +0 -30
- package/Example/nativebase-v3-kitchensink/src/nb/components/primitives/Slider/Vertical.tsx +0 -20
- package/Example/nativebase-v3-kitchensink/src/nb/components/primitives/Slider/color.tsx +0 -29
- package/Example/nativebase-v3-kitchensink/src/nb/components/primitives/Slider/index.tsx +0 -28
- package/Example/nativebase-v3-kitchensink/src/nb/components/primitives/Slider/isDisabled.tsx +0 -23
- package/Example/nativebase-v3-kitchensink/src/nb/components/primitives/Slider/isReadOnly.tsx +0 -15
- package/Example/nativebase-v3-kitchensink/src/nb/components/primitives/Slider/usage.tsx +0 -23
- package/Example/nativebase-v3-kitchensink/src/nb/components/primitives/Spinner/color.tsx +0 -13
- package/Example/nativebase-v3-kitchensink/src/nb/components/primitives/Spinner/duration.tsx +0 -6
- package/Example/nativebase-v3-kitchensink/src/nb/components/primitives/Spinner/index.tsx +0 -20
- package/Example/nativebase-v3-kitchensink/src/nb/components/primitives/Spinner/size.tsx +0 -11
- package/Example/nativebase-v3-kitchensink/src/nb/components/primitives/Spinner/usage.tsx +0 -13
- package/Example/nativebase-v3-kitchensink/src/nb/components/primitives/Spinner/variant.tsx +0 -18
- package/Example/nativebase-v3-kitchensink/src/nb/components/primitives/Spinner/withKnob.tsx +0 -32
- package/Example/nativebase-v3-kitchensink/src/nb/components/primitives/Stack/basic.tsx +0 -179
- package/Example/nativebase-v3-kitchensink/src/nb/components/primitives/Stack/divider.tsx +0 -22
- package/Example/nativebase-v3-kitchensink/src/nb/components/primitives/Stack/index.tsx +0 -12
- package/Example/nativebase-v3-kitchensink/src/nb/components/primitives/Switch/Accessibility.tsx +0 -14
- package/Example/nativebase-v3-kitchensink/src/nb/components/primitives/Switch/Basic.tsx +0 -11
- package/Example/nativebase-v3-kitchensink/src/nb/components/primitives/Switch/ColorSchemes.tsx +0 -12
- package/Example/nativebase-v3-kitchensink/src/nb/components/primitives/Switch/Sizes.tsx +0 -12
- package/Example/nativebase-v3-kitchensink/src/nb/components/primitives/Switch/SwitchBgColor.tsx +0 -22
- package/Example/nativebase-v3-kitchensink/src/nb/components/primitives/Switch/example.tsx +0 -38
- package/Example/nativebase-v3-kitchensink/src/nb/components/primitives/Switch/index.tsx +0 -18
- package/Example/nativebase-v3-kitchensink/src/nb/components/primitives/Text/Basic.tsx +0 -6
- package/Example/nativebase-v3-kitchensink/src/nb/components/primitives/Text/ChangingFontSize.tsx +0 -19
- package/Example/nativebase-v3-kitchensink/src/nb/components/primitives/Text/Nested.tsx +0 -10
- package/Example/nativebase-v3-kitchensink/src/nb/components/primitives/Text/Overriden.tsx +0 -23
- package/Example/nativebase-v3-kitchensink/src/nb/components/primitives/Text/Truncated.tsx +0 -11
- package/Example/nativebase-v3-kitchensink/src/nb/components/primitives/Text/index.tsx +0 -18
- package/Example/nativebase-v3-kitchensink/src/nb/components/primitives/TextArea/basic.tsx +0 -10
- package/Example/nativebase-v3-kitchensink/src/nb/components/primitives/TextArea/index.tsx +0 -16
- package/Example/nativebase-v3-kitchensink/src/nb/components/primitives/TextArea/invalid.tsx +0 -36
- package/Example/nativebase-v3-kitchensink/src/nb/components/primitives/TextArea/size-kitchensink.tsx +0 -21
- package/Example/nativebase-v3-kitchensink/src/nb/components/primitives/TextArea/size.tsx +0 -28
- package/Example/nativebase-v3-kitchensink/src/nb/components/primitives/TextArea/value.tsx +0 -17
- package/Example/nativebase-v3-kitchensink/src/nb/components/primitives/VStack/basic.tsx +0 -12
- package/Example/nativebase-v3-kitchensink/src/nb/components/primitives/VStack/index.tsx +0 -10
- package/Example/nativebase-v3-kitchensink/src/nb/components/primitives/View/Basic.tsx +0 -17
- package/Example/nativebase-v3-kitchensink/src/nb/components/primitives/View/index.tsx +0 -10
- package/Example/nativebase-v3-kitchensink/src/nb/components/primitives/ZStack/CenterStack.tsx +0 -14
- package/Example/nativebase-v3-kitchensink/src/nb/components/primitives/ZStack/example.tsx +0 -30
- package/Example/nativebase-v3-kitchensink/src/nb/components/primitives/ZStack/index.tsx +0 -12
- package/Example/nativebase-v3-kitchensink/src/screens/ComponentScreen/index.tsx +0 -73
- package/Example/nativebase-v3-kitchensink/src/screens/MasonLayout/index.tsx +0 -628
- package/Example/nativebase-v3-kitchensink/src/screens/index.tsx +0 -2
- package/Example/nativebase-v3-kitchensink/src/theme/index.ts +0 -33
- package/Example/nativebase-v3-kitchensink/tsconfig.json +0 -18
- package/GroovyUtils/psgrep.sh +0 -1
- package/Jenkinsfile +0 -847
- package/Licenses/License +0 -0
- package/Migration-Guide.md +0 -76
- package/android/.project +0 -28
- package/android/README.md +0 -2
- package/android/gradle/wrapper/gradle-wrapper.jar +0 -0
- package/android/gradle/wrapper/gradle-wrapper.properties +0 -6
- package/android/gradlew +0 -172
- package/android/gradlew.bat +0 -84
- package/android/src/main/java/com/tl/uic/rncxa/RNCxaModule.java +0 -495
- package/android/src/main/java/com/tl/uic/rncxa/RNCxaPackage.java +0 -37
- package/app.json +0 -4
- package/index.js +0 -15
- package/ios/Podfile +0 -89
- package/ios/RNCxa.h +0 -32
- package/ios/RNCxa.m +0 -413
- package/ios/RNCxa.xcodeproj/project.pbxproj +0 -552
- package/ios/RNCxa.xcodeproj/xcshareddata/xcschemes/RNCxa.xcscheme +0 -81
- package/ios/RNCxa.xcodeproj/xcshareddata/xcschemes/RNCxaStandaloneDebug.xcscheme +0 -95
- package/ios/RNCxa.xcworkspace/contents.xcworkspacedata +0 -10
- package/ios/RNCxa.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +0 -8
- package/ios/RNCxaConfig.json +0 -1
- package/ios/testPackage.json +0 -22
- package/latestChanges +0 -28
- package/lib/RNCxa.js +0 -2
- package/lib/TLTRN.js +0 -266
- package/lib/components/Connect.js +0 -84
- package/lib/components/ConnectProfiler.js +0 -30
- package/lib/utils/KeyboardListener.js +0 -90
- package/react-native-acoustic-connect-beta.podspec +0 -46
- package/screenshots/TealeafBasicConfig_appkey.png +0 -0
- package/screenshots/add_environment_variables.png +0 -0
- package/screenshots/add_libraries_resources.png +0 -0
- package/screenshots/add_resources.png +0 -0
- package/screenshots/adjust_TLFResources_bundle.png +0 -0
- package/screenshots/find_libraries_resources.png +0 -0
- package/screenshots/link_libraries.png +0 -0
- package/screenshots/move_RNCxa_project.png +0 -0
- package/screenshots/xcode_legacybuild.png +0 -0
- /package/{Example/nativebase-v3-kitchensink → Examples/SampleUI}/ios/.xcode.env +0 -0
|
@@ -0,0 +1,1426 @@
|
|
|
1
|
+
import { Platform } from 'react-native';
|
|
2
|
+
|
|
3
|
+
import ExpoMaterial3ThemeModule from '@pchmn/expo-material3-theme/build/ExpoMaterial3ThemeModule';
|
|
4
|
+
import { MD3DarkTheme, MD3LightTheme, MD3Theme } from 'react-native-paper';
|
|
5
|
+
|
|
6
|
+
type ReducerAction<T extends keyof State> = {
|
|
7
|
+
payload: State[T];
|
|
8
|
+
type: T;
|
|
9
|
+
};
|
|
10
|
+
|
|
11
|
+
type IconsColor = {
|
|
12
|
+
flatLeftIcon: string | undefined;
|
|
13
|
+
flatRightIcon: string | undefined;
|
|
14
|
+
outlineLeftIcon: string | undefined;
|
|
15
|
+
outlineRightIcon: string | undefined;
|
|
16
|
+
customIcon: string | undefined;
|
|
17
|
+
};
|
|
18
|
+
|
|
19
|
+
export type State = {
|
|
20
|
+
text: string;
|
|
21
|
+
customIconText: string;
|
|
22
|
+
name: string;
|
|
23
|
+
outlinedText: string;
|
|
24
|
+
largeText: string;
|
|
25
|
+
flatTextPassword: string;
|
|
26
|
+
flatLongText: string;
|
|
27
|
+
outlinedLargeText: string;
|
|
28
|
+
outlinedCustomLabel: string;
|
|
29
|
+
outlinedTextPassword: string;
|
|
30
|
+
outlinedLongText: string;
|
|
31
|
+
nameNoPadding: string;
|
|
32
|
+
customStyleText: string;
|
|
33
|
+
nameRequired: string;
|
|
34
|
+
flatDenseText: string;
|
|
35
|
+
flatDense: string;
|
|
36
|
+
outlinedDenseText: string;
|
|
37
|
+
outlinedDense: string;
|
|
38
|
+
flatMultiline: string;
|
|
39
|
+
flatTextArea: string;
|
|
40
|
+
flatUnderlineColors: string;
|
|
41
|
+
outlinedMultiline: string;
|
|
42
|
+
outlinedTextArea: string;
|
|
43
|
+
outlinedColors: string;
|
|
44
|
+
outlinedLongLabel: string;
|
|
45
|
+
maxLengthName: string;
|
|
46
|
+
flatTextSecureEntry: boolean;
|
|
47
|
+
outlineTextSecureEntry: boolean;
|
|
48
|
+
iconsColor: IconsColor;
|
|
49
|
+
};
|
|
50
|
+
|
|
51
|
+
export function inputReducer<T extends keyof State>(
|
|
52
|
+
state: State,
|
|
53
|
+
action: ReducerAction<T>
|
|
54
|
+
) {
|
|
55
|
+
switch (action.type) {
|
|
56
|
+
case action.type:
|
|
57
|
+
return { ...state, [action.type]: action.payload };
|
|
58
|
+
default:
|
|
59
|
+
return state;
|
|
60
|
+
}
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
export const isWeb = Platform.OS === 'web';
|
|
64
|
+
|
|
65
|
+
export const animatedFABExampleData = [
|
|
66
|
+
{
|
|
67
|
+
id: '1',
|
|
68
|
+
sender: 'Hermann, Pfannel & Schumm',
|
|
69
|
+
header:
|
|
70
|
+
'Cras mi pede, malesuada in, imperdiet et, commodo vulputate, justo. In blandit ultrices enim. Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Proin interdum mauris non ligula pellentesque ultrices. Phasellus id sapien in sapien iaculis congue. Vivamus metus arcu, adipiscing molestie, hendrerit at, vulputate vitae, nisl. Aenean lectus. Pellentesque eget nunc. Donec quis orci eget orci vehicula condimentum.',
|
|
71
|
+
message:
|
|
72
|
+
'Duis consequat dui nec nisi volutpat eleifend. Donec ut dolor. Morbi vel lectus in quam fringilla rhoncus.\n\nMauris enim leo, rhoncus sed, vestibulum sit amet, cursus id, turpis. Integer aliquet, massa id lobortis convallis, tortor risus dapibus augue, vel accumsan tellus nisi eu orci. Mauris lacinia sapien quis libero.\n\nNullam sit amet turpis elementum ligula vehicula consequat. Morbi a ipsum. Integer a nibh.',
|
|
73
|
+
initials: 'H',
|
|
74
|
+
date: '29.1.2021',
|
|
75
|
+
read: false,
|
|
76
|
+
favorite: false,
|
|
77
|
+
bgColor: '#ff0173',
|
|
78
|
+
},
|
|
79
|
+
{
|
|
80
|
+
id: '2',
|
|
81
|
+
sender: 'Ziemann, Lockman and Kuvalis',
|
|
82
|
+
header:
|
|
83
|
+
'Vivamus vestibulum sagittis sapien. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Etiam vel augue.',
|
|
84
|
+
message:
|
|
85
|
+
'Maecenas leo odio, condimentum id, luctus nec, molestie sed, justo. Pellentesque viverra pede ac diam. Cras pellentesque volutpat dui.\n\nMaecenas tristique, est et tempus semper, est quam pharetra magna, ac consequat metus sapien ut nunc. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Mauris viverra diam vitae quam. Suspendisse potenti.\n\nNullam porttitor lacus at turpis. Donec posuere metus vitae ipsum. Aliquam non mauris.',
|
|
86
|
+
initials: 'J',
|
|
87
|
+
date: '5.9.2020',
|
|
88
|
+
read: false,
|
|
89
|
+
favorite: false,
|
|
90
|
+
bgColor: '#b287a9',
|
|
91
|
+
},
|
|
92
|
+
{
|
|
93
|
+
id: '3',
|
|
94
|
+
sender: 'Daniel, Kuhn and Wolf',
|
|
95
|
+
header:
|
|
96
|
+
'Aenean fermentum. Donec ut mauris eget massa tempor convallis. Nulla neque libero, convallis eget, eleifend luctus, ultricies eu, nibh. Quisque id justo sit amet sapien dignissim vestibulum.',
|
|
97
|
+
message:
|
|
98
|
+
'Nam ultrices, libero non mattis pulvinar, nulla pede ullamcorper augue, a suscipit nulla elit ac nulla. Sed vel enim sit amet nunc viverra dapibus. Nulla suscipit ligula in lacus.\n\nCurabitur at ipsum ac tellus semper interdum. Mauris ullamcorper purus sit amet nulla. Quisque arcu libero, rutrum ac, lobortis vel, dapibus at, diam.',
|
|
99
|
+
initials: 'Y',
|
|
100
|
+
date: '13.6.2020',
|
|
101
|
+
read: true,
|
|
102
|
+
favorite: false,
|
|
103
|
+
bgColor: '#c1bde9',
|
|
104
|
+
},
|
|
105
|
+
{
|
|
106
|
+
id: '4',
|
|
107
|
+
sender: 'Crona, Lind and Stoltenberg',
|
|
108
|
+
header:
|
|
109
|
+
'Quisque erat eros, viverra eget, congue eget, semper rutrum, nulla. Nunc purus. Phasellus in felis. Donec semper sapien a libero. Nam dui. Proin leo odio, porttitor id, consequat in, consequat ut, nulla.',
|
|
110
|
+
message:
|
|
111
|
+
'Aenean lectus. Pellentesque eget nunc. Donec quis orci eget orci vehicula condimentum.',
|
|
112
|
+
initials: 'W',
|
|
113
|
+
date: '20.5.2020',
|
|
114
|
+
read: false,
|
|
115
|
+
favorite: false,
|
|
116
|
+
bgColor: '#932a24',
|
|
117
|
+
},
|
|
118
|
+
{
|
|
119
|
+
id: '5',
|
|
120
|
+
sender: 'Bashirian-Hudson',
|
|
121
|
+
header:
|
|
122
|
+
'Fusce congue, diam id ornare imperdiet, sapien urna pretium nisl, ut volutpat sapien arcu sed augue. Aliquam erat volutpat. In congue. Etiam justo. Etiam pretium iaculis justo. In hac habitasse platea dictumst.',
|
|
123
|
+
message:
|
|
124
|
+
'Sed sagittis. Nam congue, risus semper porta volutpat, quam pede lobortis ligula, sit amet eleifend pede libero quis orci. Nullam molestie nibh in lectus.\n\nPellentesque at nulla. Suspendisse potenti. Cras in purus eu magna vulputate luctus.\n\nCum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Vivamus vestibulum sagittis sapien. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.',
|
|
125
|
+
initials: 'V',
|
|
126
|
+
date: '21.9.2020',
|
|
127
|
+
read: true,
|
|
128
|
+
favorite: false,
|
|
129
|
+
bgColor: '#eda5b7',
|
|
130
|
+
},
|
|
131
|
+
{
|
|
132
|
+
id: '6',
|
|
133
|
+
sender: 'Schmitt-Jacobs',
|
|
134
|
+
header:
|
|
135
|
+
'Integer aliquet, massa id lobortis convallis, tortor risus dapibus augue, vel accumsan tellus nisi eu orci. Mauris lacinia sapien quis libero. Nullam sit amet turpis elementum ligula vehicula consequat. Morbi a ipsum. Integer a nibh. In quis justo.',
|
|
136
|
+
message:
|
|
137
|
+
'Phasellus sit amet erat. Nulla tempus. Vivamus in felis eu sapien cursus vestibulum.',
|
|
138
|
+
initials: 'M',
|
|
139
|
+
date: '2.6.2020',
|
|
140
|
+
read: true,
|
|
141
|
+
favorite: true,
|
|
142
|
+
bgColor: '#18aaba',
|
|
143
|
+
},
|
|
144
|
+
{
|
|
145
|
+
id: '7',
|
|
146
|
+
sender: 'Graham-Champlin',
|
|
147
|
+
header:
|
|
148
|
+
'Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Nulla dapibus dolor vel est. Donec odio justo, sollicitudin ut, suscipit a, feugiat et, eros. Vestibulum ac est lacinia nisi venenatis tristique. Fusce congue, diam id ornare imperdiet, sapien urna pretium nisl, ut volutpat sapien arcu sed augue. Aliquam erat volutpat. In congue.',
|
|
149
|
+
message:
|
|
150
|
+
'In hac habitasse platea dictumst. Morbi vestibulum, velit id pretium iaculis, diam erat fermentum justo, nec condimentum neque sapien placerat ante. Nulla justo.\n\nAliquam quis turpis eget elit sodales scelerisque. Mauris sit amet eros. Suspendisse accumsan tortor quis turpis.',
|
|
151
|
+
initials: 'T',
|
|
152
|
+
date: '17.10.2020',
|
|
153
|
+
read: false,
|
|
154
|
+
favorite: true,
|
|
155
|
+
bgColor: '#cc5e54',
|
|
156
|
+
},
|
|
157
|
+
{
|
|
158
|
+
id: '8',
|
|
159
|
+
sender: 'Schoen, Carroll and Herzog',
|
|
160
|
+
header:
|
|
161
|
+
'Ut tellus. Nulla ut erat id mauris vulputate elementum. Nullam varius. Nulla facilisi.',
|
|
162
|
+
message:
|
|
163
|
+
'Cras non velit nec nisi vulputate nonummy. Maecenas tincidunt lacus at velit. Vivamus vel nulla eget eros elementum pellentesque.\n\nQuisque porta volutpat erat. Quisque erat eros, viverra eget, congue eget, semper rutrum, nulla. Nunc purus.',
|
|
164
|
+
initials: 'F',
|
|
165
|
+
date: '31.10.2020',
|
|
166
|
+
read: false,
|
|
167
|
+
favorite: false,
|
|
168
|
+
bgColor: '#28db04',
|
|
169
|
+
},
|
|
170
|
+
{
|
|
171
|
+
id: '9',
|
|
172
|
+
sender: 'Pouros-Fay',
|
|
173
|
+
header:
|
|
174
|
+
'Donec semper sapien a libero. Nam dui. Proin leo odio, porttitor id, consequat in, consequat ut, nulla. Sed accumsan felis. Ut at dolor quis odio consequat varius. Integer ac leo. Pellentesque ultrices mattis odio. Donec vitae nisi.',
|
|
175
|
+
message:
|
|
176
|
+
'Aliquam quis turpis eget elit sodales scelerisque. Mauris sit amet eros. Suspendisse accumsan tortor quis turpis.\n\nSed ante. Vivamus tortor. Duis mattis egestas metus.\n\nAenean fermentum. Donec ut mauris eget massa tempor convallis. Nulla neque libero, convallis eget, eleifend luctus, ultricies eu, nibh.',
|
|
177
|
+
initials: 'Z',
|
|
178
|
+
date: '6.1.2021',
|
|
179
|
+
read: true,
|
|
180
|
+
favorite: true,
|
|
181
|
+
bgColor: '#b6f3fb',
|
|
182
|
+
},
|
|
183
|
+
{
|
|
184
|
+
id: '10',
|
|
185
|
+
sender: 'McKenzie, Ruecker and Bernhard',
|
|
186
|
+
header: 'Nunc purus. Phasellus in felis.',
|
|
187
|
+
message:
|
|
188
|
+
'In quis justo. Maecenas rhoncus aliquam lacus. Morbi quis tortor id nulla ultrices aliquet.',
|
|
189
|
+
initials: 'F',
|
|
190
|
+
date: '23.2.2021',
|
|
191
|
+
read: false,
|
|
192
|
+
favorite: false,
|
|
193
|
+
bgColor: '#96f066',
|
|
194
|
+
},
|
|
195
|
+
{
|
|
196
|
+
id: '11',
|
|
197
|
+
sender: 'Olson Inc',
|
|
198
|
+
header:
|
|
199
|
+
'Maecenas leo odio, condimentum id, luctus nec, molestie sed, justo. Pellentesque viverra pede ac diam. Cras pellentesque volutpat dui. Maecenas tristique, est et tempus semper, est quam pharetra magna, ac consequat metus sapien ut nunc. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Mauris viverra diam vitae quam. Suspendisse potenti.',
|
|
200
|
+
message:
|
|
201
|
+
'Phasellus sit amet erat. Nulla tempus. Vivamus in felis eu sapien cursus vestibulum.\n\nProin eu mi. Nulla ac enim. In tempor, turpis nec euismod scelerisque, quam turpis adipiscing lorem, vitae mattis nibh ligula nec sem.\n\nDuis aliquam convallis nunc. Proin at turpis a pede posuere nonummy. Integer non velit.',
|
|
202
|
+
initials: 'V',
|
|
203
|
+
date: '17.10.2020',
|
|
204
|
+
read: false,
|
|
205
|
+
favorite: false,
|
|
206
|
+
bgColor: '#f2d49d',
|
|
207
|
+
},
|
|
208
|
+
{
|
|
209
|
+
id: '12',
|
|
210
|
+
sender: 'Walsh LLC',
|
|
211
|
+
header:
|
|
212
|
+
'Morbi sem mauris, laoreet ut, rhoncus aliquet, pulvinar sed, nisl. Nunc rhoncus dui vel sem. Sed sagittis.',
|
|
213
|
+
message: 'Phasellus in felis. Donec semper sapien a libero. Nam dui.',
|
|
214
|
+
initials: 'O',
|
|
215
|
+
date: '6.1.2021',
|
|
216
|
+
read: false,
|
|
217
|
+
favorite: true,
|
|
218
|
+
bgColor: '#f477dc',
|
|
219
|
+
},
|
|
220
|
+
{
|
|
221
|
+
id: '13',
|
|
222
|
+
sender: 'Lemke, Cremin and Kutch',
|
|
223
|
+
header:
|
|
224
|
+
'Praesent blandit lacinia erat. Vestibulum sed magna at nunc commodo placerat. Praesent blandit. Nam nulla. Integer pede justo, lacinia eget, tincidunt eget, tempus vel, pede. Morbi porttitor lorem id ligula. Suspendisse ornare consequat lectus.',
|
|
225
|
+
message:
|
|
226
|
+
'In sagittis dui vel nisl. Duis ac nibh. Fusce lacus purus, aliquet at, feugiat non, pretium quis, lectus.\n\nSuspendisse potenti. In eleifend quam a odio. In hac habitasse platea dictumst.\n\nMaecenas ut massa quis augue luctus tincidunt. Nulla mollis molestie lorem. Quisque ut erat.',
|
|
227
|
+
initials: 'D',
|
|
228
|
+
date: '10.12.2020',
|
|
229
|
+
read: false,
|
|
230
|
+
favorite: false,
|
|
231
|
+
bgColor: '#b2880e',
|
|
232
|
+
},
|
|
233
|
+
{
|
|
234
|
+
id: '14',
|
|
235
|
+
sender: 'Ruecker Group',
|
|
236
|
+
header:
|
|
237
|
+
'Nulla tempus. Vivamus in felis eu sapien cursus vestibulum. Proin eu mi. Nulla ac enim. In tempor, turpis nec euismod scelerisque, quam turpis adipiscing lorem, vitae mattis nibh ligula nec sem.',
|
|
238
|
+
message:
|
|
239
|
+
'In congue. Etiam justo. Etiam pretium iaculis justo.\n\nIn hac habitasse platea dictumst. Etiam faucibus cursus urna. Ut tellus.\n\nNulla ut erat id mauris vulputate elementum. Nullam varius. Nulla facilisi.',
|
|
240
|
+
initials: 'F',
|
|
241
|
+
date: '21.8.2020',
|
|
242
|
+
read: true,
|
|
243
|
+
favorite: false,
|
|
244
|
+
bgColor: '#64983a',
|
|
245
|
+
},
|
|
246
|
+
{
|
|
247
|
+
id: '15',
|
|
248
|
+
sender: 'Kovacek, Lockman and Kautzer',
|
|
249
|
+
header:
|
|
250
|
+
'Morbi sem mauris, laoreet ut, rhoncus aliquet, pulvinar sed, nisl. Nunc rhoncus dui vel sem. Sed sagittis. Nam congue, risus semper porta volutpat, quam pede lobortis ligula, sit amet eleifend pede libero quis orci. Nullam molestie nibh in lectus. Pellentesque at nulla. Suspendisse potenti. Cras in purus eu magna vulputate luctus. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.',
|
|
251
|
+
message:
|
|
252
|
+
'Maecenas ut massa quis augue luctus tincidunt. Nulla mollis molestie lorem. Quisque ut erat.',
|
|
253
|
+
initials: 'L',
|
|
254
|
+
date: '5.3.2020',
|
|
255
|
+
read: true,
|
|
256
|
+
favorite: false,
|
|
257
|
+
bgColor: '#c7486b',
|
|
258
|
+
},
|
|
259
|
+
{
|
|
260
|
+
id: '16',
|
|
261
|
+
sender: 'Jaskolski-Cummerata',
|
|
262
|
+
header:
|
|
263
|
+
'In hac habitasse platea dictumst. Etiam faucibus cursus urna. Ut tellus. Nulla ut erat id mauris vulputate elementum. Nullam varius. Nulla facilisi. Cras non velit nec nisi vulputate nonummy. Maecenas tincidunt lacus at velit. Vivamus vel nulla eget eros elementum pellentesque.',
|
|
264
|
+
message:
|
|
265
|
+
'Maecenas tristique, est et tempus semper, est quam pharetra magna, ac consequat metus sapien ut nunc. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Mauris viverra diam vitae quam. Suspendisse potenti.\n\nNullam porttitor lacus at turpis. Donec posuere metus vitae ipsum. Aliquam non mauris.\n\nMorbi non lectus. Aliquam sit amet diam in magna bibendum imperdiet. Nullam orci pede, venenatis non, sodales sed, tincidunt eu, felis.',
|
|
266
|
+
initials: 'C',
|
|
267
|
+
date: '21.4.2020',
|
|
268
|
+
read: false,
|
|
269
|
+
favorite: false,
|
|
270
|
+
bgColor: '#2f89a1',
|
|
271
|
+
},
|
|
272
|
+
{
|
|
273
|
+
id: '17',
|
|
274
|
+
sender: 'Wunsch-Walker',
|
|
275
|
+
header: 'Donec vitae nisi.',
|
|
276
|
+
message:
|
|
277
|
+
'Duis bibendum, felis sed interdum venenatis, turpis enim blandit mi, in porttitor pede justo eu massa. Donec dapibus. Duis at velit eu est congue elementum.\n\nIn hac habitasse platea dictumst. Morbi vestibulum, velit id pretium iaculis, diam erat fermentum justo, nec condimentum neque sapien placerat ante. Nulla justo.\n\nAliquam quis turpis eget elit sodales scelerisque. Mauris sit amet eros. Suspendisse accumsan tortor quis turpis.',
|
|
278
|
+
initials: 'A',
|
|
279
|
+
date: '15.4.2020',
|
|
280
|
+
read: false,
|
|
281
|
+
favorite: true,
|
|
282
|
+
bgColor: '#033cbf',
|
|
283
|
+
},
|
|
284
|
+
{
|
|
285
|
+
id: '18',
|
|
286
|
+
sender: 'Ledner Inc',
|
|
287
|
+
header:
|
|
288
|
+
'Curabitur convallis. Duis consequat dui nec nisi volutpat eleifend. Donec ut dolor. Morbi vel lectus in quam fringilla rhoncus. Mauris enim leo, rhoncus sed, vestibulum sit amet, cursus id, turpis. Integer aliquet, massa id lobortis convallis, tortor risus dapibus augue, vel accumsan tellus nisi eu orci. Mauris lacinia sapien quis libero. Nullam sit amet turpis elementum ligula vehicula consequat. Morbi a ipsum.',
|
|
289
|
+
message:
|
|
290
|
+
'In congue. Etiam justo. Etiam pretium iaculis justo.\n\nIn hac habitasse platea dictumst. Etiam faucibus cursus urna. Ut tellus.',
|
|
291
|
+
initials: 'Y',
|
|
292
|
+
date: '16.5.2020',
|
|
293
|
+
read: false,
|
|
294
|
+
favorite: true,
|
|
295
|
+
bgColor: '#166b59',
|
|
296
|
+
},
|
|
297
|
+
{
|
|
298
|
+
id: '19',
|
|
299
|
+
sender: 'Heaney-Rolfson',
|
|
300
|
+
header: 'Nunc rhoncus dui vel sem.',
|
|
301
|
+
message:
|
|
302
|
+
'In hac habitasse platea dictumst. Etiam faucibus cursus urna. Ut tellus.',
|
|
303
|
+
initials: 'T',
|
|
304
|
+
date: '19.1.2021',
|
|
305
|
+
read: true,
|
|
306
|
+
favorite: false,
|
|
307
|
+
bgColor: '#da0148',
|
|
308
|
+
},
|
|
309
|
+
{
|
|
310
|
+
id: '20',
|
|
311
|
+
sender: 'Dietrich, Beier and Leannon',
|
|
312
|
+
header:
|
|
313
|
+
'Morbi odio odio, elementum eu, interdum eu, tincidunt in, leo. Maecenas pulvinar lobortis est. Phasellus sit amet erat. Nulla tempus. Vivamus in felis eu sapien cursus vestibulum. Proin eu mi. Nulla ac enim. In tempor, turpis nec euismod scelerisque, quam turpis adipiscing lorem, vitae mattis nibh ligula nec sem. Duis aliquam convallis nunc.',
|
|
314
|
+
message:
|
|
315
|
+
'Duis bibendum, felis sed interdum venenatis, turpis enim blandit mi, in porttitor pede justo eu massa. Donec dapibus. Duis at velit eu est congue elementum.',
|
|
316
|
+
initials: 'Z',
|
|
317
|
+
date: '21.5.2020',
|
|
318
|
+
read: false,
|
|
319
|
+
favorite: false,
|
|
320
|
+
bgColor: '#22b33f',
|
|
321
|
+
},
|
|
322
|
+
];
|
|
323
|
+
|
|
324
|
+
export const teamResultsData = [
|
|
325
|
+
{
|
|
326
|
+
host: 'Team Blue',
|
|
327
|
+
guest: 'Team Pink',
|
|
328
|
+
result: '1:0',
|
|
329
|
+
winner: 'Team Blue',
|
|
330
|
+
favourite: true,
|
|
331
|
+
},
|
|
332
|
+
{
|
|
333
|
+
host: 'Team Green',
|
|
334
|
+
guest: 'Team Pink',
|
|
335
|
+
result: '0:1',
|
|
336
|
+
winner: 'Team Pink',
|
|
337
|
+
favourite: false,
|
|
338
|
+
},
|
|
339
|
+
{
|
|
340
|
+
host: 'Team Green',
|
|
341
|
+
guest: 'Team Blue',
|
|
342
|
+
result: '1:0',
|
|
343
|
+
winner: 'Team Green',
|
|
344
|
+
favourite: true,
|
|
345
|
+
},
|
|
346
|
+
{
|
|
347
|
+
host: 'Team Blue',
|
|
348
|
+
guest: 'Team Pink',
|
|
349
|
+
result: '1:0',
|
|
350
|
+
winner: 'Team Blue',
|
|
351
|
+
favourite: false,
|
|
352
|
+
},
|
|
353
|
+
{
|
|
354
|
+
host: 'Team Green',
|
|
355
|
+
guest: 'Team Pink',
|
|
356
|
+
result: '0:1',
|
|
357
|
+
winner: 'Team Pink',
|
|
358
|
+
favourite: true,
|
|
359
|
+
},
|
|
360
|
+
{
|
|
361
|
+
host: 'Team Green',
|
|
362
|
+
guest: 'Team Blue',
|
|
363
|
+
result: '1:0',
|
|
364
|
+
winner: 'Team Green',
|
|
365
|
+
favourite: false,
|
|
366
|
+
},
|
|
367
|
+
{
|
|
368
|
+
host: 'Team Blue',
|
|
369
|
+
guest: 'Team Pink',
|
|
370
|
+
result: '1:0',
|
|
371
|
+
winner: 'Team Blue',
|
|
372
|
+
favourite: true,
|
|
373
|
+
},
|
|
374
|
+
{
|
|
375
|
+
host: 'Team Green',
|
|
376
|
+
guest: 'Team Pink',
|
|
377
|
+
result: '0:1',
|
|
378
|
+
winner: 'Team Pink',
|
|
379
|
+
favourite: false,
|
|
380
|
+
},
|
|
381
|
+
{
|
|
382
|
+
host: 'Team Green',
|
|
383
|
+
guest: 'Team Blue',
|
|
384
|
+
result: '1:0',
|
|
385
|
+
winner: 'Team Green',
|
|
386
|
+
favourite: true,
|
|
387
|
+
},
|
|
388
|
+
{
|
|
389
|
+
host: 'Team Green',
|
|
390
|
+
guest: 'Team Pink',
|
|
391
|
+
result: '0:1',
|
|
392
|
+
winner: 'Team Pink',
|
|
393
|
+
favourite: false,
|
|
394
|
+
},
|
|
395
|
+
{
|
|
396
|
+
host: 'Team Green',
|
|
397
|
+
guest: 'Team Blue',
|
|
398
|
+
result: '1:0',
|
|
399
|
+
winner: 'Team Green',
|
|
400
|
+
favourite: true,
|
|
401
|
+
},
|
|
402
|
+
];
|
|
403
|
+
|
|
404
|
+
export const teamsList = [
|
|
405
|
+
{
|
|
406
|
+
key: 1,
|
|
407
|
+
name: 'Team Paper',
|
|
408
|
+
matchesPlayed: 16,
|
|
409
|
+
goals: 100,
|
|
410
|
+
points: 48,
|
|
411
|
+
},
|
|
412
|
+
{
|
|
413
|
+
key: 2,
|
|
414
|
+
name: 'Team Red',
|
|
415
|
+
matchesPlayed: 16,
|
|
416
|
+
goals: 99,
|
|
417
|
+
points: 47,
|
|
418
|
+
},
|
|
419
|
+
{
|
|
420
|
+
key: 3,
|
|
421
|
+
name: 'Team Green',
|
|
422
|
+
matchesPlayed: 16,
|
|
423
|
+
goals: 98,
|
|
424
|
+
points: 46,
|
|
425
|
+
},
|
|
426
|
+
{
|
|
427
|
+
key: 4,
|
|
428
|
+
name: 'Team Blue',
|
|
429
|
+
matchesPlayed: 16,
|
|
430
|
+
goals: 97,
|
|
431
|
+
points: 45,
|
|
432
|
+
},
|
|
433
|
+
{
|
|
434
|
+
key: 5,
|
|
435
|
+
name: 'Team Orange',
|
|
436
|
+
matchesPlayed: 16,
|
|
437
|
+
goals: 96,
|
|
438
|
+
points: 44,
|
|
439
|
+
},
|
|
440
|
+
{
|
|
441
|
+
key: 6,
|
|
442
|
+
name: 'Team Yellow',
|
|
443
|
+
goals: 95,
|
|
444
|
+
matchesPlayed: 16,
|
|
445
|
+
points: 43,
|
|
446
|
+
},
|
|
447
|
+
{
|
|
448
|
+
key: 7,
|
|
449
|
+
name: 'Team Pink',
|
|
450
|
+
goals: 94,
|
|
451
|
+
matchesPlayed: 16,
|
|
452
|
+
points: 42,
|
|
453
|
+
},
|
|
454
|
+
{
|
|
455
|
+
key: 8,
|
|
456
|
+
name: 'Team Cyan',
|
|
457
|
+
goals: 93,
|
|
458
|
+
matchesPlayed: 16,
|
|
459
|
+
points: 41,
|
|
460
|
+
},
|
|
461
|
+
{
|
|
462
|
+
key: 9,
|
|
463
|
+
name: 'Team Paper Dark',
|
|
464
|
+
goals: 92,
|
|
465
|
+
matchesPlayed: 16,
|
|
466
|
+
points: 40,
|
|
467
|
+
darkMode: true,
|
|
468
|
+
},
|
|
469
|
+
{
|
|
470
|
+
key: 10,
|
|
471
|
+
name: 'Team Red Dark',
|
|
472
|
+
goals: 91,
|
|
473
|
+
matchesPlayed: 16,
|
|
474
|
+
points: 39,
|
|
475
|
+
darkMode: true,
|
|
476
|
+
},
|
|
477
|
+
{
|
|
478
|
+
key: 11,
|
|
479
|
+
name: 'Team Green Dark',
|
|
480
|
+
goals: 90,
|
|
481
|
+
matchesPlayed: 16,
|
|
482
|
+
points: 38,
|
|
483
|
+
darkMode: true,
|
|
484
|
+
},
|
|
485
|
+
{
|
|
486
|
+
key: 12,
|
|
487
|
+
name: 'Team Blue Dark',
|
|
488
|
+
goals: 89,
|
|
489
|
+
matchesPlayed: 16,
|
|
490
|
+
points: 37,
|
|
491
|
+
darkMode: true,
|
|
492
|
+
},
|
|
493
|
+
{
|
|
494
|
+
key: 13,
|
|
495
|
+
name: 'Team Orange Dark',
|
|
496
|
+
goals: 88,
|
|
497
|
+
matchesPlayed: 16,
|
|
498
|
+
points: 36,
|
|
499
|
+
darkMode: true,
|
|
500
|
+
},
|
|
501
|
+
{
|
|
502
|
+
key: 14,
|
|
503
|
+
name: 'Team Yellow Dark',
|
|
504
|
+
goals: 87,
|
|
505
|
+
matchesPlayed: 16,
|
|
506
|
+
points: 35,
|
|
507
|
+
darkMode: true,
|
|
508
|
+
},
|
|
509
|
+
{
|
|
510
|
+
key: 15,
|
|
511
|
+
name: 'Team Pink Dark',
|
|
512
|
+
goals: 86,
|
|
513
|
+
matchesPlayed: 16,
|
|
514
|
+
points: 34,
|
|
515
|
+
darkMode: true,
|
|
516
|
+
},
|
|
517
|
+
{
|
|
518
|
+
key: 16,
|
|
519
|
+
name: 'Team Cyan Dark',
|
|
520
|
+
goals: 85,
|
|
521
|
+
matchesPlayed: 16,
|
|
522
|
+
points: 33,
|
|
523
|
+
darkMode: true,
|
|
524
|
+
},
|
|
525
|
+
];
|
|
526
|
+
|
|
527
|
+
const lightPinkColors = {
|
|
528
|
+
colors: {
|
|
529
|
+
primary: 'rgb(154, 64, 87)',
|
|
530
|
+
onPrimary: 'rgb(255, 255, 255)',
|
|
531
|
+
primaryContainer: 'rgb(255, 217, 223)',
|
|
532
|
+
onPrimaryContainer: 'rgb(63, 0, 22)',
|
|
533
|
+
secondary: 'rgb(117, 86, 92)',
|
|
534
|
+
onSecondary: 'rgb(255, 255, 255)',
|
|
535
|
+
secondaryContainer: 'rgb(255, 217, 223)',
|
|
536
|
+
onSecondaryContainer: 'rgb(43, 21, 26)',
|
|
537
|
+
tertiary: 'rgb(122, 87, 50)',
|
|
538
|
+
onTertiary: 'rgb(255, 255, 255)',
|
|
539
|
+
tertiaryContainer: 'rgb(255, 220, 188)',
|
|
540
|
+
onTertiaryContainer: 'rgb(44, 23, 0)',
|
|
541
|
+
error: 'rgb(186, 26, 26)',
|
|
542
|
+
onError: 'rgb(255, 255, 255)',
|
|
543
|
+
errorContainer: 'rgb(255, 218, 214)',
|
|
544
|
+
onErrorContainer: 'rgb(65, 0, 2)',
|
|
545
|
+
background: 'rgb(255, 251, 255)',
|
|
546
|
+
onBackground: 'rgb(32, 26, 27)',
|
|
547
|
+
surface: 'rgb(255, 251, 255)',
|
|
548
|
+
onSurface: 'rgb(32, 26, 27)',
|
|
549
|
+
surfaceVariant: 'rgb(243, 221, 224)',
|
|
550
|
+
onSurfaceVariant: 'rgb(82, 67, 69)',
|
|
551
|
+
outline: 'rgb(132, 115, 117)',
|
|
552
|
+
outlineVariant: 'rgb(214, 194, 196)',
|
|
553
|
+
shadow: 'rgb(0, 0, 0)',
|
|
554
|
+
scrim: 'rgb(0, 0, 0)',
|
|
555
|
+
inverseSurface: 'rgb(54, 47, 48)',
|
|
556
|
+
inverseOnSurface: 'rgb(250, 238, 238)',
|
|
557
|
+
inversePrimary: 'rgb(255, 177, 192)',
|
|
558
|
+
elevation: {
|
|
559
|
+
level0: 'transparent',
|
|
560
|
+
level1: 'rgb(250, 242, 247)',
|
|
561
|
+
level2: 'rgb(247, 236, 242)',
|
|
562
|
+
level3: 'rgb(244, 230, 237)',
|
|
563
|
+
level4: 'rgb(243, 229, 235)',
|
|
564
|
+
level5: 'rgb(241, 225, 232)',
|
|
565
|
+
},
|
|
566
|
+
surfaceDisabled: 'rgba(32, 26, 27, 0.12)',
|
|
567
|
+
onSurfaceDisabled: 'rgba(32, 26, 27, 0.38)',
|
|
568
|
+
backdrop: 'rgba(58, 45, 47, 0.4)',
|
|
569
|
+
},
|
|
570
|
+
};
|
|
571
|
+
|
|
572
|
+
const darkPinkColors = {
|
|
573
|
+
colors: {
|
|
574
|
+
primary: 'rgb(255, 177, 192)',
|
|
575
|
+
onPrimary: 'rgb(95, 17, 42)',
|
|
576
|
+
primaryContainer: 'rgb(124, 41, 64)',
|
|
577
|
+
onPrimaryContainer: 'rgb(255, 217, 223)',
|
|
578
|
+
secondary: 'rgb(228, 189, 195)',
|
|
579
|
+
onSecondary: 'rgb(67, 41, 46)',
|
|
580
|
+
secondaryContainer: 'rgb(92, 63, 68)',
|
|
581
|
+
onSecondaryContainer: 'rgb(255, 217, 223)',
|
|
582
|
+
tertiary: 'rgb(236, 190, 144)',
|
|
583
|
+
onTertiary: 'rgb(70, 42, 8)',
|
|
584
|
+
tertiaryContainer: 'rgb(95, 64, 29)',
|
|
585
|
+
onTertiaryContainer: 'rgb(255, 220, 188)',
|
|
586
|
+
error: 'rgb(255, 180, 171)',
|
|
587
|
+
onError: 'rgb(105, 0, 5)',
|
|
588
|
+
errorContainer: 'rgb(147, 0, 10)',
|
|
589
|
+
onErrorContainer: 'rgb(255, 180, 171)',
|
|
590
|
+
background: 'rgb(32, 26, 27)',
|
|
591
|
+
onBackground: 'rgb(236, 224, 224)',
|
|
592
|
+
surface: 'rgb(32, 26, 27)',
|
|
593
|
+
onSurface: 'rgb(236, 224, 224)',
|
|
594
|
+
surfaceVariant: 'rgb(82, 67, 69)',
|
|
595
|
+
onSurfaceVariant: 'rgb(214, 194, 196)',
|
|
596
|
+
outline: 'rgb(159, 140, 143)',
|
|
597
|
+
outlineVariant: 'rgb(82, 67, 69)',
|
|
598
|
+
shadow: 'rgb(0, 0, 0)',
|
|
599
|
+
scrim: 'rgb(0, 0, 0)',
|
|
600
|
+
inverseSurface: 'rgb(236, 224, 224)',
|
|
601
|
+
inverseOnSurface: 'rgb(54, 47, 48)',
|
|
602
|
+
inversePrimary: 'rgb(154, 64, 87)',
|
|
603
|
+
elevation: {
|
|
604
|
+
level0: 'transparent',
|
|
605
|
+
level1: 'rgb(43, 34, 35)',
|
|
606
|
+
level2: 'rgb(50, 38, 40)',
|
|
607
|
+
level3: 'rgb(57, 43, 45)',
|
|
608
|
+
level4: 'rgb(59, 44, 47)',
|
|
609
|
+
level5: 'rgb(63, 47, 50)',
|
|
610
|
+
},
|
|
611
|
+
surfaceDisabled: 'rgba(236, 224, 224, 0.12)',
|
|
612
|
+
onSurfaceDisabled: 'rgba(236, 224, 224, 0.38)',
|
|
613
|
+
backdrop: 'rgba(58, 45, 47, 0.4)',
|
|
614
|
+
},
|
|
615
|
+
};
|
|
616
|
+
|
|
617
|
+
const lightGreenColors = {
|
|
618
|
+
colors: {
|
|
619
|
+
primary: 'rgb(0, 110, 0)',
|
|
620
|
+
onPrimary: 'rgb(255, 255, 255)',
|
|
621
|
+
primaryContainer: 'rgb(141, 251, 119)',
|
|
622
|
+
onPrimaryContainer: 'rgb(0, 34, 0)',
|
|
623
|
+
secondary: 'rgb(84, 99, 77)',
|
|
624
|
+
onSecondary: 'rgb(255, 255, 255)',
|
|
625
|
+
secondaryContainer: 'rgb(215, 232, 205)',
|
|
626
|
+
onSecondaryContainer: 'rgb(18, 31, 14)',
|
|
627
|
+
tertiary: 'rgb(56, 101, 104)',
|
|
628
|
+
onTertiary: 'rgb(255, 255, 255)',
|
|
629
|
+
tertiaryContainer: 'rgb(188, 235, 238)',
|
|
630
|
+
onTertiaryContainer: 'rgb(0, 32, 34)',
|
|
631
|
+
error: 'rgb(186, 26, 26)',
|
|
632
|
+
onError: 'rgb(255, 255, 255)',
|
|
633
|
+
errorContainer: 'rgb(255, 218, 214)',
|
|
634
|
+
onErrorContainer: 'rgb(65, 0, 2)',
|
|
635
|
+
background: 'rgb(252, 253, 246)',
|
|
636
|
+
onBackground: 'rgb(26, 28, 24)',
|
|
637
|
+
surface: 'rgb(252, 253, 246)',
|
|
638
|
+
onSurface: 'rgb(26, 28, 24)',
|
|
639
|
+
surfaceVariant: 'rgb(223, 228, 215)',
|
|
640
|
+
onSurfaceVariant: 'rgb(67, 72, 63)',
|
|
641
|
+
outline: 'rgb(115, 121, 110)',
|
|
642
|
+
outlineVariant: 'rgb(195, 200, 188)',
|
|
643
|
+
shadow: 'rgb(0, 0, 0)',
|
|
644
|
+
scrim: 'rgb(0, 0, 0)',
|
|
645
|
+
inverseSurface: 'rgb(47, 49, 45)',
|
|
646
|
+
inverseOnSurface: 'rgb(241, 241, 235)',
|
|
647
|
+
inversePrimary: 'rgb(114, 222, 94)',
|
|
648
|
+
elevation: {
|
|
649
|
+
level0: 'transparent',
|
|
650
|
+
level1: 'rgb(239, 246, 234)',
|
|
651
|
+
level2: 'rgb(232, 242, 226)',
|
|
652
|
+
level3: 'rgb(224, 237, 219)',
|
|
653
|
+
level4: 'rgb(222, 236, 217)',
|
|
654
|
+
level5: 'rgb(217, 233, 212)',
|
|
655
|
+
},
|
|
656
|
+
surfaceDisabled: 'rgba(26, 28, 24, 0.12)',
|
|
657
|
+
onSurfaceDisabled: 'rgba(26, 28, 24, 0.38)',
|
|
658
|
+
backdrop: 'rgba(44, 50, 41, 0.4)',
|
|
659
|
+
},
|
|
660
|
+
};
|
|
661
|
+
|
|
662
|
+
const darkGreenColors = {
|
|
663
|
+
colors: {
|
|
664
|
+
primary: 'rgb(114, 222, 94)',
|
|
665
|
+
onPrimary: 'rgb(0, 58, 0)',
|
|
666
|
+
primaryContainer: 'rgb(0, 83, 0)',
|
|
667
|
+
onPrimaryContainer: 'rgb(141, 251, 119)',
|
|
668
|
+
secondary: 'rgb(187, 203, 178)',
|
|
669
|
+
onSecondary: 'rgb(38, 52, 34)',
|
|
670
|
+
secondaryContainer: 'rgb(60, 75, 55)',
|
|
671
|
+
onSecondaryContainer: 'rgb(215, 232, 205)',
|
|
672
|
+
tertiary: 'rgb(160, 207, 210)',
|
|
673
|
+
onTertiary: 'rgb(0, 55, 57)',
|
|
674
|
+
tertiaryContainer: 'rgb(30, 77, 80)',
|
|
675
|
+
onTertiaryContainer: 'rgb(188, 235, 238)',
|
|
676
|
+
error: 'rgb(255, 180, 171)',
|
|
677
|
+
onError: 'rgb(105, 0, 5)',
|
|
678
|
+
errorContainer: 'rgb(147, 0, 10)',
|
|
679
|
+
onErrorContainer: 'rgb(255, 180, 171)',
|
|
680
|
+
background: 'rgb(26, 28, 24)',
|
|
681
|
+
onBackground: 'rgb(226, 227, 220)',
|
|
682
|
+
surface: 'rgb(26, 28, 24)',
|
|
683
|
+
onSurface: 'rgb(226, 227, 220)',
|
|
684
|
+
surfaceVariant: 'rgb(67, 72, 63)',
|
|
685
|
+
onSurfaceVariant: 'rgb(195, 200, 188)',
|
|
686
|
+
outline: 'rgb(141, 147, 135)',
|
|
687
|
+
outlineVariant: 'rgb(67, 72, 63)',
|
|
688
|
+
shadow: 'rgb(0, 0, 0)',
|
|
689
|
+
scrim: 'rgb(0, 0, 0)',
|
|
690
|
+
inverseSurface: 'rgb(226, 227, 220)',
|
|
691
|
+
inverseOnSurface: 'rgb(47, 49, 45)',
|
|
692
|
+
inversePrimary: 'rgb(0, 110, 0)',
|
|
693
|
+
elevation: {
|
|
694
|
+
level0: 'transparent',
|
|
695
|
+
level1: 'rgb(30, 38, 28)',
|
|
696
|
+
level2: 'rgb(33, 44, 30)',
|
|
697
|
+
level3: 'rgb(36, 49, 32)',
|
|
698
|
+
level4: 'rgb(37, 51, 32)',
|
|
699
|
+
level5: 'rgb(38, 55, 34)',
|
|
700
|
+
},
|
|
701
|
+
surfaceDisabled: 'rgba(226, 227, 220, 0.12)',
|
|
702
|
+
onSurfaceDisabled: 'rgba(226, 227, 220, 0.38)',
|
|
703
|
+
backdrop: 'rgba(44, 50, 41, 0.4)',
|
|
704
|
+
},
|
|
705
|
+
};
|
|
706
|
+
|
|
707
|
+
const lightBlueColors = {
|
|
708
|
+
colors: {
|
|
709
|
+
primary: 'rgb(52, 61, 255)',
|
|
710
|
+
onPrimary: 'rgb(255, 255, 255)',
|
|
711
|
+
primaryContainer: 'rgb(224, 224, 255)',
|
|
712
|
+
onPrimaryContainer: 'rgb(0, 0, 110)',
|
|
713
|
+
secondary: 'rgb(92, 93, 114)',
|
|
714
|
+
onSecondary: 'rgb(255, 255, 255)',
|
|
715
|
+
secondaryContainer: 'rgb(225, 224, 249)',
|
|
716
|
+
onSecondaryContainer: 'rgb(25, 26, 44)',
|
|
717
|
+
tertiary: 'rgb(120, 83, 107)',
|
|
718
|
+
onTertiary: 'rgb(255, 255, 255)',
|
|
719
|
+
tertiaryContainer: 'rgb(255, 216, 238)',
|
|
720
|
+
onTertiaryContainer: 'rgb(46, 17, 38)',
|
|
721
|
+
error: 'rgb(186, 26, 26)',
|
|
722
|
+
onError: 'rgb(255, 255, 255)',
|
|
723
|
+
errorContainer: 'rgb(255, 218, 214)',
|
|
724
|
+
onErrorContainer: 'rgb(65, 0, 2)',
|
|
725
|
+
background: 'rgb(255, 251, 255)',
|
|
726
|
+
onBackground: 'rgb(27, 27, 31)',
|
|
727
|
+
surface: 'rgb(255, 251, 255)',
|
|
728
|
+
onSurface: 'rgb(27, 27, 31)',
|
|
729
|
+
surfaceVariant: 'rgb(228, 225, 236)',
|
|
730
|
+
onSurfaceVariant: 'rgb(70, 70, 79)',
|
|
731
|
+
outline: 'rgb(119, 118, 128)',
|
|
732
|
+
outlineVariant: 'rgb(199, 197, 208)',
|
|
733
|
+
shadow: 'rgb(0, 0, 0)',
|
|
734
|
+
scrim: 'rgb(0, 0, 0)',
|
|
735
|
+
inverseSurface: 'rgb(48, 48, 52)',
|
|
736
|
+
inverseOnSurface: 'rgb(243, 239, 244)',
|
|
737
|
+
inversePrimary: 'rgb(190, 194, 255)',
|
|
738
|
+
elevation: {
|
|
739
|
+
level0: 'transparent',
|
|
740
|
+
level1: 'rgb(245, 242, 255)',
|
|
741
|
+
level2: 'rgb(239, 236, 255)',
|
|
742
|
+
level3: 'rgb(233, 230, 255)',
|
|
743
|
+
level4: 'rgb(231, 228, 255)',
|
|
744
|
+
level5: 'rgb(227, 224, 255)',
|
|
745
|
+
},
|
|
746
|
+
surfaceDisabled: 'rgba(27, 27, 31, 0.12)',
|
|
747
|
+
onSurfaceDisabled: 'rgba(27, 27, 31, 0.38)',
|
|
748
|
+
backdrop: 'rgba(48, 48, 56, 0.4)',
|
|
749
|
+
},
|
|
750
|
+
};
|
|
751
|
+
|
|
752
|
+
const darkBlueColors = {
|
|
753
|
+
colors: {
|
|
754
|
+
primary: 'rgb(190, 194, 255)',
|
|
755
|
+
onPrimary: 'rgb(0, 1, 172)',
|
|
756
|
+
primaryContainer: 'rgb(0, 0, 239)',
|
|
757
|
+
onPrimaryContainer: 'rgb(224, 224, 255)',
|
|
758
|
+
secondary: 'rgb(197, 196, 221)',
|
|
759
|
+
onSecondary: 'rgb(46, 47, 66)',
|
|
760
|
+
secondaryContainer: 'rgb(68, 69, 89)',
|
|
761
|
+
onSecondaryContainer: 'rgb(225, 224, 249)',
|
|
762
|
+
tertiary: 'rgb(232, 185, 213)',
|
|
763
|
+
onTertiary: 'rgb(70, 38, 59)',
|
|
764
|
+
tertiaryContainer: 'rgb(94, 60, 82)',
|
|
765
|
+
onTertiaryContainer: 'rgb(255, 216, 238)',
|
|
766
|
+
error: 'rgb(255, 180, 171)',
|
|
767
|
+
onError: 'rgb(105, 0, 5)',
|
|
768
|
+
errorContainer: 'rgb(147, 0, 10)',
|
|
769
|
+
onErrorContainer: 'rgb(255, 180, 171)',
|
|
770
|
+
background: 'rgb(27, 27, 31)',
|
|
771
|
+
onBackground: 'rgb(229, 225, 230)',
|
|
772
|
+
surface: 'rgb(27, 27, 31)',
|
|
773
|
+
onSurface: 'rgb(229, 225, 230)',
|
|
774
|
+
surfaceVariant: 'rgb(70, 70, 79)',
|
|
775
|
+
onSurfaceVariant: 'rgb(199, 197, 208)',
|
|
776
|
+
outline: 'rgb(145, 144, 154)',
|
|
777
|
+
outlineVariant: 'rgb(70, 70, 79)',
|
|
778
|
+
shadow: 'rgb(0, 0, 0)',
|
|
779
|
+
scrim: 'rgb(0, 0, 0)',
|
|
780
|
+
inverseSurface: 'rgb(229, 225, 230)',
|
|
781
|
+
inverseOnSurface: 'rgb(48, 48, 52)',
|
|
782
|
+
inversePrimary: 'rgb(52, 61, 255)',
|
|
783
|
+
elevation: {
|
|
784
|
+
level0: 'transparent',
|
|
785
|
+
level1: 'rgb(35, 35, 42)',
|
|
786
|
+
level2: 'rgb(40, 40, 49)',
|
|
787
|
+
level3: 'rgb(45, 45, 56)',
|
|
788
|
+
level4: 'rgb(47, 47, 58)',
|
|
789
|
+
level5: 'rgb(50, 50, 62)',
|
|
790
|
+
},
|
|
791
|
+
surfaceDisabled: 'rgba(229, 225, 230, 0.12)',
|
|
792
|
+
onSurfaceDisabled: 'rgba(229, 225, 230, 0.38)',
|
|
793
|
+
backdrop: 'rgba(48, 48, 56, 0.4)',
|
|
794
|
+
},
|
|
795
|
+
};
|
|
796
|
+
|
|
797
|
+
const lightOrangeColors = {
|
|
798
|
+
colors: {
|
|
799
|
+
primary: 'rgb(133, 84, 0)',
|
|
800
|
+
onPrimary: 'rgb(255, 255, 255)',
|
|
801
|
+
primaryContainer: 'rgb(255, 221, 183)',
|
|
802
|
+
onPrimaryContainer: 'rgb(42, 23, 0)',
|
|
803
|
+
secondary: 'rgb(112, 91, 65)',
|
|
804
|
+
onSecondary: 'rgb(255, 255, 255)',
|
|
805
|
+
secondaryContainer: 'rgb(252, 222, 188)',
|
|
806
|
+
onSecondaryContainer: 'rgb(40, 24, 5)',
|
|
807
|
+
tertiary: 'rgb(83, 100, 62)',
|
|
808
|
+
onTertiary: 'rgb(255, 255, 255)',
|
|
809
|
+
tertiaryContainer: 'rgb(214, 233, 185)',
|
|
810
|
+
onTertiaryContainer: 'rgb(18, 31, 3)',
|
|
811
|
+
error: 'rgb(186, 26, 26)',
|
|
812
|
+
onError: 'rgb(255, 255, 255)',
|
|
813
|
+
errorContainer: 'rgb(255, 218, 214)',
|
|
814
|
+
onErrorContainer: 'rgb(65, 0, 2)',
|
|
815
|
+
background: 'rgb(255, 251, 255)',
|
|
816
|
+
onBackground: 'rgb(31, 27, 22)',
|
|
817
|
+
surface: 'rgb(255, 251, 255)',
|
|
818
|
+
onSurface: 'rgb(31, 27, 22)',
|
|
819
|
+
surfaceVariant: 'rgb(240, 224, 208)',
|
|
820
|
+
onSurfaceVariant: 'rgb(80, 69, 57)',
|
|
821
|
+
outline: 'rgb(130, 117, 104)',
|
|
822
|
+
outlineVariant: 'rgb(212, 196, 181)',
|
|
823
|
+
shadow: 'rgb(0, 0, 0)',
|
|
824
|
+
scrim: 'rgb(0, 0, 0)',
|
|
825
|
+
inverseSurface: 'rgb(53, 47, 42)',
|
|
826
|
+
inverseOnSurface: 'rgb(249, 239, 231)',
|
|
827
|
+
inversePrimary: 'rgb(255, 185, 92)',
|
|
828
|
+
elevation: {
|
|
829
|
+
level0: 'transparent',
|
|
830
|
+
level1: 'rgb(249, 243, 242)',
|
|
831
|
+
level2: 'rgb(245, 238, 235)',
|
|
832
|
+
level3: 'rgb(242, 233, 227)',
|
|
833
|
+
level4: 'rgb(240, 231, 224)',
|
|
834
|
+
level5: 'rgb(238, 228, 219)',
|
|
835
|
+
},
|
|
836
|
+
surfaceDisabled: 'rgba(31, 27, 22, 0.12)',
|
|
837
|
+
onSurfaceDisabled: 'rgba(31, 27, 22, 0.38)',
|
|
838
|
+
backdrop: 'rgba(56, 47, 36, 0.4)',
|
|
839
|
+
},
|
|
840
|
+
};
|
|
841
|
+
|
|
842
|
+
const darkOrangeColors = {
|
|
843
|
+
colors: {
|
|
844
|
+
primary: 'rgb(255, 185, 92)',
|
|
845
|
+
onPrimary: 'rgb(70, 42, 0)',
|
|
846
|
+
primaryContainer: 'rgb(101, 62, 0)',
|
|
847
|
+
onPrimaryContainer: 'rgb(255, 221, 183)',
|
|
848
|
+
secondary: 'rgb(223, 194, 162)',
|
|
849
|
+
onSecondary: 'rgb(63, 45, 23)',
|
|
850
|
+
secondaryContainer: 'rgb(87, 67, 43)',
|
|
851
|
+
onSecondaryContainer: 'rgb(252, 222, 188)',
|
|
852
|
+
tertiary: 'rgb(186, 205, 159)',
|
|
853
|
+
onTertiary: 'rgb(38, 53, 20)',
|
|
854
|
+
tertiaryContainer: 'rgb(60, 76, 40)',
|
|
855
|
+
onTertiaryContainer: 'rgb(214, 233, 185)',
|
|
856
|
+
error: 'rgb(255, 180, 171)',
|
|
857
|
+
onError: 'rgb(105, 0, 5)',
|
|
858
|
+
errorContainer: 'rgb(147, 0, 10)',
|
|
859
|
+
onErrorContainer: 'rgb(255, 180, 171)',
|
|
860
|
+
background: 'rgb(31, 27, 22)',
|
|
861
|
+
onBackground: 'rgb(235, 225, 217)',
|
|
862
|
+
surface: 'rgb(31, 27, 22)',
|
|
863
|
+
onSurface: 'rgb(235, 225, 217)',
|
|
864
|
+
surfaceVariant: 'rgb(80, 69, 57)',
|
|
865
|
+
onSurfaceVariant: 'rgb(212, 196, 181)',
|
|
866
|
+
outline: 'rgb(156, 142, 128)',
|
|
867
|
+
outlineVariant: 'rgb(80, 69, 57)',
|
|
868
|
+
shadow: 'rgb(0, 0, 0)',
|
|
869
|
+
scrim: 'rgb(0, 0, 0)',
|
|
870
|
+
inverseSurface: 'rgb(235, 225, 217)',
|
|
871
|
+
inverseOnSurface: 'rgb(53, 47, 42)',
|
|
872
|
+
inversePrimary: 'rgb(133, 84, 0)',
|
|
873
|
+
elevation: {
|
|
874
|
+
level0: 'transparent',
|
|
875
|
+
level1: 'rgb(42, 35, 26)',
|
|
876
|
+
level2: 'rgb(49, 40, 28)',
|
|
877
|
+
level3: 'rgb(56, 44, 30)',
|
|
878
|
+
level4: 'rgb(58, 46, 30)',
|
|
879
|
+
level5: 'rgb(62, 49, 32)',
|
|
880
|
+
},
|
|
881
|
+
surfaceDisabled: 'rgba(235, 225, 217, 0.12)',
|
|
882
|
+
onSurfaceDisabled: 'rgba(235, 225, 217, 0.38)',
|
|
883
|
+
backdrop: 'rgba(56, 47, 36, 0.4)',
|
|
884
|
+
},
|
|
885
|
+
};
|
|
886
|
+
|
|
887
|
+
const lightRedColors = {
|
|
888
|
+
colors: {
|
|
889
|
+
primary: 'rgb(192, 1, 0)',
|
|
890
|
+
onPrimary: 'rgb(255, 255, 255)',
|
|
891
|
+
primaryContainer: 'rgb(255, 218, 212)',
|
|
892
|
+
onPrimaryContainer: 'rgb(65, 0, 0)',
|
|
893
|
+
secondary: 'rgb(119, 86, 81)',
|
|
894
|
+
onSecondary: 'rgb(255, 255, 255)',
|
|
895
|
+
secondaryContainer: 'rgb(255, 218, 212)',
|
|
896
|
+
onSecondaryContainer: 'rgb(44, 21, 18)',
|
|
897
|
+
tertiary: 'rgb(112, 92, 46)',
|
|
898
|
+
onTertiary: 'rgb(255, 255, 255)',
|
|
899
|
+
tertiaryContainer: 'rgb(251, 223, 166)',
|
|
900
|
+
onTertiaryContainer: 'rgb(37, 26, 0)',
|
|
901
|
+
error: 'rgb(186, 26, 26)',
|
|
902
|
+
onError: 'rgb(255, 255, 255)',
|
|
903
|
+
errorContainer: 'rgb(255, 218, 214)',
|
|
904
|
+
onErrorContainer: 'rgb(65, 0, 2)',
|
|
905
|
+
background: 'rgb(255, 251, 255)',
|
|
906
|
+
onBackground: 'rgb(32, 26, 25)',
|
|
907
|
+
surface: 'rgb(255, 251, 255)',
|
|
908
|
+
onSurface: 'rgb(32, 26, 25)',
|
|
909
|
+
surfaceVariant: 'rgb(245, 221, 218)',
|
|
910
|
+
onSurfaceVariant: 'rgb(83, 67, 65)',
|
|
911
|
+
outline: 'rgb(133, 115, 112)',
|
|
912
|
+
outlineVariant: 'rgb(216, 194, 190)',
|
|
913
|
+
shadow: 'rgb(0, 0, 0)',
|
|
914
|
+
scrim: 'rgb(0, 0, 0)',
|
|
915
|
+
inverseSurface: 'rgb(54, 47, 46)',
|
|
916
|
+
inverseOnSurface: 'rgb(251, 238, 236)',
|
|
917
|
+
inversePrimary: 'rgb(255, 180, 168)',
|
|
918
|
+
elevation: {
|
|
919
|
+
level0: 'transparent',
|
|
920
|
+
level1: 'rgb(252, 239, 242)',
|
|
921
|
+
level2: 'rgb(250, 231, 235)',
|
|
922
|
+
level3: 'rgb(248, 224, 227)',
|
|
923
|
+
level4: 'rgb(247, 221, 224)',
|
|
924
|
+
level5: 'rgb(246, 216, 219)',
|
|
925
|
+
},
|
|
926
|
+
surfaceDisabled: 'rgba(32, 26, 25, 0.12)',
|
|
927
|
+
onSurfaceDisabled: 'rgba(32, 26, 25, 0.38)',
|
|
928
|
+
backdrop: 'rgba(59, 45, 43, 0.4)',
|
|
929
|
+
},
|
|
930
|
+
};
|
|
931
|
+
|
|
932
|
+
const darkRedColors = {
|
|
933
|
+
colors: {
|
|
934
|
+
primary: 'rgb(255, 180, 168)',
|
|
935
|
+
onPrimary: 'rgb(105, 1, 0)',
|
|
936
|
+
primaryContainer: 'rgb(147, 1, 0)',
|
|
937
|
+
onPrimaryContainer: 'rgb(255, 218, 212)',
|
|
938
|
+
secondary: 'rgb(231, 189, 182)',
|
|
939
|
+
onSecondary: 'rgb(68, 41, 37)',
|
|
940
|
+
secondaryContainer: 'rgb(93, 63, 59)',
|
|
941
|
+
onSecondaryContainer: 'rgb(255, 218, 212)',
|
|
942
|
+
tertiary: 'rgb(222, 196, 140)',
|
|
943
|
+
onTertiary: 'rgb(62, 46, 4)',
|
|
944
|
+
tertiaryContainer: 'rgb(86, 68, 25)',
|
|
945
|
+
onTertiaryContainer: 'rgb(251, 223, 166)',
|
|
946
|
+
error: 'rgb(255, 180, 171)',
|
|
947
|
+
onError: 'rgb(105, 0, 5)',
|
|
948
|
+
errorContainer: 'rgb(147, 0, 10)',
|
|
949
|
+
onErrorContainer: 'rgb(255, 180, 171)',
|
|
950
|
+
background: 'rgb(32, 26, 25)',
|
|
951
|
+
onBackground: 'rgb(237, 224, 221)',
|
|
952
|
+
surface: 'rgb(32, 26, 25)',
|
|
953
|
+
onSurface: 'rgb(237, 224, 221)',
|
|
954
|
+
surfaceVariant: 'rgb(83, 67, 65)',
|
|
955
|
+
onSurfaceVariant: 'rgb(216, 194, 190)',
|
|
956
|
+
outline: 'rgb(160, 140, 137)',
|
|
957
|
+
outlineVariant: 'rgb(83, 67, 65)',
|
|
958
|
+
shadow: 'rgb(0, 0, 0)',
|
|
959
|
+
scrim: 'rgb(0, 0, 0)',
|
|
960
|
+
inverseSurface: 'rgb(237, 224, 221)',
|
|
961
|
+
inverseOnSurface: 'rgb(54, 47, 46)',
|
|
962
|
+
inversePrimary: 'rgb(192, 1, 0)',
|
|
963
|
+
elevation: {
|
|
964
|
+
level0: 'transparent',
|
|
965
|
+
level1: 'rgb(43, 34, 32)',
|
|
966
|
+
level2: 'rgb(50, 38, 36)',
|
|
967
|
+
level3: 'rgb(57, 43, 41)',
|
|
968
|
+
level4: 'rgb(59, 45, 42)',
|
|
969
|
+
level5: 'rgb(63, 48, 45)',
|
|
970
|
+
},
|
|
971
|
+
surfaceDisabled: 'rgba(237, 224, 221, 0.12)',
|
|
972
|
+
onSurfaceDisabled: 'rgba(237, 224, 221, 0.38)',
|
|
973
|
+
backdrop: 'rgba(59, 45, 43, 0.4)',
|
|
974
|
+
},
|
|
975
|
+
};
|
|
976
|
+
|
|
977
|
+
const lightYellowColors = {
|
|
978
|
+
colors: {
|
|
979
|
+
primary: 'rgb(98, 98, 0)',
|
|
980
|
+
onPrimary: 'rgb(255, 255, 255)',
|
|
981
|
+
primaryContainer: 'rgb(234, 234, 0)',
|
|
982
|
+
onPrimaryContainer: 'rgb(29, 29, 0)',
|
|
983
|
+
secondary: 'rgb(96, 96, 67)',
|
|
984
|
+
onSecondary: 'rgb(255, 255, 255)',
|
|
985
|
+
secondaryContainer: 'rgb(231, 228, 191)',
|
|
986
|
+
onSecondaryContainer: 'rgb(29, 29, 6)',
|
|
987
|
+
tertiary: 'rgb(61, 102, 87)',
|
|
988
|
+
onTertiary: 'rgb(255, 255, 255)',
|
|
989
|
+
tertiaryContainer: 'rgb(191, 236, 216)',
|
|
990
|
+
onTertiaryContainer: 'rgb(0, 33, 23)',
|
|
991
|
+
error: 'rgb(186, 26, 26)',
|
|
992
|
+
onError: 'rgb(255, 255, 255)',
|
|
993
|
+
errorContainer: 'rgb(255, 218, 214)',
|
|
994
|
+
onErrorContainer: 'rgb(65, 0, 2)',
|
|
995
|
+
background: 'rgb(255, 251, 255)',
|
|
996
|
+
onBackground: 'rgb(28, 28, 23)',
|
|
997
|
+
surface: 'rgb(255, 251, 255)',
|
|
998
|
+
onSurface: 'rgb(28, 28, 23)',
|
|
999
|
+
surfaceVariant: 'rgb(230, 227, 209)',
|
|
1000
|
+
onSurfaceVariant: 'rgb(72, 71, 58)',
|
|
1001
|
+
outline: 'rgb(121, 120, 105)',
|
|
1002
|
+
outlineVariant: 'rgb(202, 199, 182)',
|
|
1003
|
+
shadow: 'rgb(0, 0, 0)',
|
|
1004
|
+
scrim: 'rgb(0, 0, 0)',
|
|
1005
|
+
inverseSurface: 'rgb(49, 49, 43)',
|
|
1006
|
+
inverseOnSurface: 'rgb(244, 240, 232)',
|
|
1007
|
+
inversePrimary: 'rgb(205, 205, 0)',
|
|
1008
|
+
elevation: {
|
|
1009
|
+
level0: 'transparent',
|
|
1010
|
+
level1: 'rgb(247, 243, 242)',
|
|
1011
|
+
level2: 'rgb(242, 239, 235)',
|
|
1012
|
+
level3: 'rgb(238, 234, 227)',
|
|
1013
|
+
level4: 'rgb(236, 233, 224)',
|
|
1014
|
+
level5: 'rgb(233, 230, 219)',
|
|
1015
|
+
},
|
|
1016
|
+
surfaceDisabled: 'rgba(28, 28, 23, 0.12)',
|
|
1017
|
+
onSurfaceDisabled: 'rgba(28, 28, 23, 0.38)',
|
|
1018
|
+
backdrop: 'rgba(49, 49, 37, 0.4)',
|
|
1019
|
+
},
|
|
1020
|
+
};
|
|
1021
|
+
|
|
1022
|
+
const darkYellowColors = {
|
|
1023
|
+
colors: {
|
|
1024
|
+
primary: 'rgb(205, 205, 0)',
|
|
1025
|
+
onPrimary: 'rgb(50, 50, 0)',
|
|
1026
|
+
primaryContainer: 'rgb(73, 73, 0)',
|
|
1027
|
+
onPrimaryContainer: 'rgb(234, 234, 0)',
|
|
1028
|
+
secondary: 'rgb(202, 200, 165)',
|
|
1029
|
+
onSecondary: 'rgb(50, 50, 24)',
|
|
1030
|
+
secondaryContainer: 'rgb(73, 72, 45)',
|
|
1031
|
+
onSecondaryContainer: 'rgb(231, 228, 191)',
|
|
1032
|
+
tertiary: 'rgb(164, 208, 189)',
|
|
1033
|
+
onTertiary: 'rgb(11, 55, 42)',
|
|
1034
|
+
tertiaryContainer: 'rgb(37, 78, 64)',
|
|
1035
|
+
onTertiaryContainer: 'rgb(191, 236, 216)',
|
|
1036
|
+
error: 'rgb(255, 180, 171)',
|
|
1037
|
+
onError: 'rgb(105, 0, 5)',
|
|
1038
|
+
errorContainer: 'rgb(147, 0, 10)',
|
|
1039
|
+
onErrorContainer: 'rgb(255, 180, 171)',
|
|
1040
|
+
background: 'rgb(28, 28, 23)',
|
|
1041
|
+
onBackground: 'rgb(230, 226, 217)',
|
|
1042
|
+
surface: 'rgb(28, 28, 23)',
|
|
1043
|
+
onSurface: 'rgb(230, 226, 217)',
|
|
1044
|
+
surfaceVariant: 'rgb(72, 71, 58)',
|
|
1045
|
+
onSurfaceVariant: 'rgb(202, 199, 182)',
|
|
1046
|
+
outline: 'rgb(147, 145, 130)',
|
|
1047
|
+
outlineVariant: 'rgb(72, 71, 58)',
|
|
1048
|
+
shadow: 'rgb(0, 0, 0)',
|
|
1049
|
+
scrim: 'rgb(0, 0, 0)',
|
|
1050
|
+
inverseSurface: 'rgb(230, 226, 217)',
|
|
1051
|
+
inverseOnSurface: 'rgb(49, 49, 43)',
|
|
1052
|
+
inversePrimary: 'rgb(98, 98, 0)',
|
|
1053
|
+
elevation: {
|
|
1054
|
+
level0: 'transparent',
|
|
1055
|
+
level1: 'rgb(37, 37, 22)',
|
|
1056
|
+
level2: 'rgb(42, 42, 21)',
|
|
1057
|
+
level3: 'rgb(48, 48, 21)',
|
|
1058
|
+
level4: 'rgb(49, 49, 20)',
|
|
1059
|
+
level5: 'rgb(53, 53, 20)',
|
|
1060
|
+
},
|
|
1061
|
+
surfaceDisabled: 'rgba(230, 226, 217, 0.12)',
|
|
1062
|
+
onSurfaceDisabled: 'rgba(230, 226, 217, 0.38)',
|
|
1063
|
+
backdrop: 'rgba(49, 49, 37, 0.4)',
|
|
1064
|
+
},
|
|
1065
|
+
};
|
|
1066
|
+
|
|
1067
|
+
const lightCyanColors = {
|
|
1068
|
+
colors: {
|
|
1069
|
+
primary: 'rgb(0, 106, 106)',
|
|
1070
|
+
onPrimary: 'rgb(255, 255, 255)',
|
|
1071
|
+
primaryContainer: 'rgb(0, 251, 251)',
|
|
1072
|
+
onPrimaryContainer: 'rgb(0, 32, 32)',
|
|
1073
|
+
secondary: 'rgb(74, 99, 99)',
|
|
1074
|
+
onSecondary: 'rgb(255, 255, 255)',
|
|
1075
|
+
secondaryContainer: 'rgb(204, 232, 231)',
|
|
1076
|
+
onSecondaryContainer: 'rgb(5, 31, 31)',
|
|
1077
|
+
tertiary: 'rgb(75, 96, 124)',
|
|
1078
|
+
onTertiary: 'rgb(255, 255, 255)',
|
|
1079
|
+
tertiaryContainer: 'rgb(211, 228, 255)',
|
|
1080
|
+
onTertiaryContainer: 'rgb(4, 28, 53)',
|
|
1081
|
+
error: 'rgb(186, 26, 26)',
|
|
1082
|
+
onError: 'rgb(255, 255, 255)',
|
|
1083
|
+
errorContainer: 'rgb(255, 218, 214)',
|
|
1084
|
+
onErrorContainer: 'rgb(65, 0, 2)',
|
|
1085
|
+
background: 'rgb(250, 253, 252)',
|
|
1086
|
+
onBackground: 'rgb(25, 28, 28)',
|
|
1087
|
+
surface: 'rgb(250, 253, 252)',
|
|
1088
|
+
onSurface: 'rgb(25, 28, 28)',
|
|
1089
|
+
surfaceVariant: 'rgb(218, 229, 228)',
|
|
1090
|
+
onSurfaceVariant: 'rgb(63, 73, 72)',
|
|
1091
|
+
outline: 'rgb(111, 121, 121)',
|
|
1092
|
+
outlineVariant: 'rgb(190, 201, 200)',
|
|
1093
|
+
shadow: 'rgb(0, 0, 0)',
|
|
1094
|
+
scrim: 'rgb(0, 0, 0)',
|
|
1095
|
+
inverseSurface: 'rgb(45, 49, 49)',
|
|
1096
|
+
inverseOnSurface: 'rgb(239, 241, 240)',
|
|
1097
|
+
inversePrimary: 'rgb(0, 221, 221)',
|
|
1098
|
+
elevation: {
|
|
1099
|
+
level0: 'transparent',
|
|
1100
|
+
level1: 'rgb(238, 246, 245)',
|
|
1101
|
+
level2: 'rgb(230, 241, 240)',
|
|
1102
|
+
level3: 'rgb(223, 237, 236)',
|
|
1103
|
+
level4: 'rgb(220, 235, 235)',
|
|
1104
|
+
level5: 'rgb(215, 232, 232)',
|
|
1105
|
+
},
|
|
1106
|
+
surfaceDisabled: 'rgba(25, 28, 28, 0.12)',
|
|
1107
|
+
onSurfaceDisabled: 'rgba(25, 28, 28, 0.38)',
|
|
1108
|
+
backdrop: 'rgba(41, 50, 50, 0.4)',
|
|
1109
|
+
},
|
|
1110
|
+
};
|
|
1111
|
+
|
|
1112
|
+
const darkCyanColors = {
|
|
1113
|
+
colors: {
|
|
1114
|
+
primary: 'rgb(0, 221, 221)',
|
|
1115
|
+
onPrimary: 'rgb(0, 55, 55)',
|
|
1116
|
+
primaryContainer: 'rgb(0, 79, 79)',
|
|
1117
|
+
onPrimaryContainer: 'rgb(0, 251, 251)',
|
|
1118
|
+
secondary: 'rgb(176, 204, 203)',
|
|
1119
|
+
onSecondary: 'rgb(27, 53, 52)',
|
|
1120
|
+
secondaryContainer: 'rgb(50, 75, 75)',
|
|
1121
|
+
onSecondaryContainer: 'rgb(204, 232, 231)',
|
|
1122
|
+
tertiary: 'rgb(179, 200, 232)',
|
|
1123
|
+
onTertiary: 'rgb(28, 49, 75)',
|
|
1124
|
+
tertiaryContainer: 'rgb(51, 72, 99)',
|
|
1125
|
+
onTertiaryContainer: 'rgb(211, 228, 255)',
|
|
1126
|
+
error: 'rgb(255, 180, 171)',
|
|
1127
|
+
onError: 'rgb(105, 0, 5)',
|
|
1128
|
+
errorContainer: 'rgb(147, 0, 10)',
|
|
1129
|
+
onErrorContainer: 'rgb(255, 180, 171)',
|
|
1130
|
+
background: 'rgb(25, 28, 28)',
|
|
1131
|
+
onBackground: 'rgb(224, 227, 226)',
|
|
1132
|
+
surface: 'rgb(25, 28, 28)',
|
|
1133
|
+
onSurface: 'rgb(224, 227, 226)',
|
|
1134
|
+
surfaceVariant: 'rgb(63, 73, 72)',
|
|
1135
|
+
onSurfaceVariant: 'rgb(190, 201, 200)',
|
|
1136
|
+
outline: 'rgb(136, 147, 146)',
|
|
1137
|
+
outlineVariant: 'rgb(63, 73, 72)',
|
|
1138
|
+
shadow: 'rgb(0, 0, 0)',
|
|
1139
|
+
scrim: 'rgb(0, 0, 0)',
|
|
1140
|
+
inverseSurface: 'rgb(224, 227, 226)',
|
|
1141
|
+
inverseOnSurface: 'rgb(45, 49, 49)',
|
|
1142
|
+
inversePrimary: 'rgb(0, 106, 106)',
|
|
1143
|
+
elevation: {
|
|
1144
|
+
level0: 'transparent',
|
|
1145
|
+
level1: 'rgb(24, 38, 38)',
|
|
1146
|
+
level2: 'rgb(23, 43, 43)',
|
|
1147
|
+
level3: 'rgb(22, 49, 49)',
|
|
1148
|
+
level4: 'rgb(22, 51, 51)',
|
|
1149
|
+
level5: 'rgb(22, 55, 55)',
|
|
1150
|
+
},
|
|
1151
|
+
surfaceDisabled: 'rgba(224, 227, 226, 0.12)',
|
|
1152
|
+
onSurfaceDisabled: 'rgba(224, 227, 226, 0.38)',
|
|
1153
|
+
backdrop: 'rgba(41, 50, 50, 0.4)',
|
|
1154
|
+
},
|
|
1155
|
+
};
|
|
1156
|
+
|
|
1157
|
+
export const colorThemes = {
|
|
1158
|
+
paper: {
|
|
1159
|
+
light: MD3LightTheme,
|
|
1160
|
+
dark: MD3DarkTheme,
|
|
1161
|
+
},
|
|
1162
|
+
pink: {
|
|
1163
|
+
light: {
|
|
1164
|
+
...MD3LightTheme,
|
|
1165
|
+
...lightPinkColors,
|
|
1166
|
+
},
|
|
1167
|
+
dark: {
|
|
1168
|
+
...MD3DarkTheme,
|
|
1169
|
+
...darkPinkColors,
|
|
1170
|
+
},
|
|
1171
|
+
},
|
|
1172
|
+
green: {
|
|
1173
|
+
light: {
|
|
1174
|
+
...MD3LightTheme,
|
|
1175
|
+
...lightGreenColors,
|
|
1176
|
+
},
|
|
1177
|
+
dark: {
|
|
1178
|
+
...MD3DarkTheme,
|
|
1179
|
+
...darkGreenColors,
|
|
1180
|
+
},
|
|
1181
|
+
},
|
|
1182
|
+
blue: {
|
|
1183
|
+
light: {
|
|
1184
|
+
...MD3LightTheme,
|
|
1185
|
+
...lightBlueColors,
|
|
1186
|
+
},
|
|
1187
|
+
dark: {
|
|
1188
|
+
...MD3DarkTheme,
|
|
1189
|
+
...darkBlueColors,
|
|
1190
|
+
},
|
|
1191
|
+
},
|
|
1192
|
+
orange: {
|
|
1193
|
+
light: {
|
|
1194
|
+
...MD3LightTheme,
|
|
1195
|
+
...lightOrangeColors,
|
|
1196
|
+
},
|
|
1197
|
+
dark: {
|
|
1198
|
+
...MD3DarkTheme,
|
|
1199
|
+
...darkOrangeColors,
|
|
1200
|
+
},
|
|
1201
|
+
},
|
|
1202
|
+
red: {
|
|
1203
|
+
light: {
|
|
1204
|
+
...MD3LightTheme,
|
|
1205
|
+
...lightRedColors,
|
|
1206
|
+
},
|
|
1207
|
+
dark: {
|
|
1208
|
+
...MD3DarkTheme,
|
|
1209
|
+
...darkRedColors,
|
|
1210
|
+
},
|
|
1211
|
+
},
|
|
1212
|
+
yellow: {
|
|
1213
|
+
light: {
|
|
1214
|
+
...MD3LightTheme,
|
|
1215
|
+
...lightYellowColors,
|
|
1216
|
+
},
|
|
1217
|
+
dark: {
|
|
1218
|
+
...MD3DarkTheme,
|
|
1219
|
+
...darkYellowColors,
|
|
1220
|
+
},
|
|
1221
|
+
},
|
|
1222
|
+
cyan: {
|
|
1223
|
+
light: {
|
|
1224
|
+
...MD3LightTheme,
|
|
1225
|
+
...lightCyanColors,
|
|
1226
|
+
},
|
|
1227
|
+
dark: {
|
|
1228
|
+
...MD3DarkTheme,
|
|
1229
|
+
...darkCyanColors,
|
|
1230
|
+
},
|
|
1231
|
+
},
|
|
1232
|
+
} as { [key: string]: { light: MD3Theme; dark: MD3Theme } };
|
|
1233
|
+
|
|
1234
|
+
export const songsData = [
|
|
1235
|
+
{
|
|
1236
|
+
artist: 'The artist no 1',
|
|
1237
|
+
cover: require('../assets/images/song-1.jpg'),
|
|
1238
|
+
id: '0',
|
|
1239
|
+
title: 'Song title no 0',
|
|
1240
|
+
},
|
|
1241
|
+
{
|
|
1242
|
+
artist: 'The artist no 1',
|
|
1243
|
+
cover: require('../assets/images/song-2.jpg'),
|
|
1244
|
+
id: '1',
|
|
1245
|
+
title: 'Song title no 1',
|
|
1246
|
+
},
|
|
1247
|
+
{
|
|
1248
|
+
artist: 'The artist no 2',
|
|
1249
|
+
cover: require('../assets/images/song-1.jpg'),
|
|
1250
|
+
id: '2',
|
|
1251
|
+
title: 'Song title no 2',
|
|
1252
|
+
},
|
|
1253
|
+
{
|
|
1254
|
+
artist: 'The artist no 3',
|
|
1255
|
+
cover: require('../assets/images/song-2.jpg'),
|
|
1256
|
+
id: '3',
|
|
1257
|
+
title: 'Song title no 3',
|
|
1258
|
+
},
|
|
1259
|
+
{
|
|
1260
|
+
artist: 'The artist no 4',
|
|
1261
|
+
cover: require('../assets/images/song-1.jpg'),
|
|
1262
|
+
id: '4',
|
|
1263
|
+
title: 'Song title no 4',
|
|
1264
|
+
},
|
|
1265
|
+
{
|
|
1266
|
+
artist: 'The artist no 5',
|
|
1267
|
+
cover: require('../assets/images/song-2.jpg'),
|
|
1268
|
+
id: '5',
|
|
1269
|
+
title: 'Song title no 5',
|
|
1270
|
+
},
|
|
1271
|
+
{
|
|
1272
|
+
artist: 'The artist no 6',
|
|
1273
|
+
cover: require('../assets/images/song-1.jpg'),
|
|
1274
|
+
id: '6',
|
|
1275
|
+
title: 'Song title no 6',
|
|
1276
|
+
},
|
|
1277
|
+
{
|
|
1278
|
+
artist: 'The artist no 7',
|
|
1279
|
+
cover: require('../assets/images/song-2.jpg'),
|
|
1280
|
+
id: '7',
|
|
1281
|
+
title: 'Song title no 7',
|
|
1282
|
+
},
|
|
1283
|
+
{
|
|
1284
|
+
artist: 'The artist no 8',
|
|
1285
|
+
cover: require('../assets/images/song-1.jpg'),
|
|
1286
|
+
id: '8',
|
|
1287
|
+
title: 'Song title no 8',
|
|
1288
|
+
},
|
|
1289
|
+
{
|
|
1290
|
+
artist: 'The artist no 9',
|
|
1291
|
+
cover: require('../assets/images/song-2.jpg'),
|
|
1292
|
+
id: '9',
|
|
1293
|
+
title: 'Song title no 9',
|
|
1294
|
+
},
|
|
1295
|
+
];
|
|
1296
|
+
|
|
1297
|
+
export const albumsData = [
|
|
1298
|
+
{
|
|
1299
|
+
artist: 'The artist no 0',
|
|
1300
|
+
cover: require('../assets/images/artist-1.jpg'),
|
|
1301
|
+
id: '0',
|
|
1302
|
+
title: 'Album title no 0',
|
|
1303
|
+
},
|
|
1304
|
+
{
|
|
1305
|
+
artist: 'The artist no 1',
|
|
1306
|
+
cover: require('../assets/images/artist-2.jpg'),
|
|
1307
|
+
id: '1',
|
|
1308
|
+
title: 'Album title no 1',
|
|
1309
|
+
},
|
|
1310
|
+
{
|
|
1311
|
+
artist: 'The artist no 2',
|
|
1312
|
+
cover: require('../assets/images/artist-1.jpg'),
|
|
1313
|
+
id: '2',
|
|
1314
|
+
title: 'Album title no 2',
|
|
1315
|
+
},
|
|
1316
|
+
{
|
|
1317
|
+
artist: 'The artist no 3',
|
|
1318
|
+
cover: require('../assets/images/artist-2.jpg'),
|
|
1319
|
+
id: '3',
|
|
1320
|
+
title: 'Album title no 3',
|
|
1321
|
+
},
|
|
1322
|
+
{
|
|
1323
|
+
artist: 'The artist no 4',
|
|
1324
|
+
cover: require('../assets/images/artist-1.jpg'),
|
|
1325
|
+
id: '4',
|
|
1326
|
+
title: 'Album title no 4',
|
|
1327
|
+
},
|
|
1328
|
+
{
|
|
1329
|
+
artist: 'The artist no 5',
|
|
1330
|
+
cover: require('../assets/images/artist-2.jpg'),
|
|
1331
|
+
id: '5',
|
|
1332
|
+
title: 'Album title no 5',
|
|
1333
|
+
},
|
|
1334
|
+
{
|
|
1335
|
+
artist: 'The artist no 6',
|
|
1336
|
+
cover: require('../assets/images/artist-1.jpg'),
|
|
1337
|
+
id: '6',
|
|
1338
|
+
title: 'Album title no 6',
|
|
1339
|
+
},
|
|
1340
|
+
{
|
|
1341
|
+
artist: 'The artist no 7',
|
|
1342
|
+
cover: require('../assets/images/artist-2.jpg'),
|
|
1343
|
+
id: '7',
|
|
1344
|
+
title: 'Album title no 7',
|
|
1345
|
+
},
|
|
1346
|
+
{
|
|
1347
|
+
artist: 'The artist no 8',
|
|
1348
|
+
cover: require('../assets/images/artist-1.jpg'),
|
|
1349
|
+
id: '8',
|
|
1350
|
+
title: 'Album title no 8',
|
|
1351
|
+
},
|
|
1352
|
+
{
|
|
1353
|
+
artist: 'The artist no 9',
|
|
1354
|
+
cover: require('../assets/images/artist-1.jpg'),
|
|
1355
|
+
id: '9',
|
|
1356
|
+
title: 'Album title no 9',
|
|
1357
|
+
},
|
|
1358
|
+
];
|
|
1359
|
+
|
|
1360
|
+
export const restaurantsData = [
|
|
1361
|
+
{
|
|
1362
|
+
cover: require('../assets/images/restaurant-1.jpg'),
|
|
1363
|
+
id: '0',
|
|
1364
|
+
name: 'Restaurant no 0',
|
|
1365
|
+
price: 1,
|
|
1366
|
+
},
|
|
1367
|
+
{
|
|
1368
|
+
cover: require('../assets/images/restaurant-2.jpg'),
|
|
1369
|
+
id: '1',
|
|
1370
|
+
name: 'Restaurant no 1',
|
|
1371
|
+
price: 1,
|
|
1372
|
+
},
|
|
1373
|
+
{
|
|
1374
|
+
cover: require('../assets/images/restaurant-1.jpg'),
|
|
1375
|
+
id: '2',
|
|
1376
|
+
name: 'Restaurant no 2',
|
|
1377
|
+
price: 2,
|
|
1378
|
+
},
|
|
1379
|
+
{
|
|
1380
|
+
cover: require('../assets/images/restaurant-2.jpg'),
|
|
1381
|
+
id: '3',
|
|
1382
|
+
name: 'Restaurant no 3',
|
|
1383
|
+
price: 2,
|
|
1384
|
+
},
|
|
1385
|
+
{
|
|
1386
|
+
cover: require('../assets/images/restaurant-1.jpg'),
|
|
1387
|
+
id: '4',
|
|
1388
|
+
name: 'Restaurant no 4',
|
|
1389
|
+
price: 3,
|
|
1390
|
+
},
|
|
1391
|
+
{
|
|
1392
|
+
cover: require('../assets/images/restaurant-2.jpg'),
|
|
1393
|
+
id: '5',
|
|
1394
|
+
name: 'Restaurant no 5',
|
|
1395
|
+
price: 3,
|
|
1396
|
+
},
|
|
1397
|
+
{
|
|
1398
|
+
cover: require('../assets/images/restaurant-1.jpg'),
|
|
1399
|
+
id: '6',
|
|
1400
|
+
name: 'Restaurant no 6',
|
|
1401
|
+
price: 4,
|
|
1402
|
+
},
|
|
1403
|
+
{
|
|
1404
|
+
cover: require('../assets/images/restaurant-2.jpg'),
|
|
1405
|
+
id: '7',
|
|
1406
|
+
name: 'Restaurant no 7',
|
|
1407
|
+
price: 4,
|
|
1408
|
+
},
|
|
1409
|
+
{
|
|
1410
|
+
cover: require('../assets/images/restaurant-1.jpg'),
|
|
1411
|
+
id: '8',
|
|
1412
|
+
name: 'Restaurant no 8',
|
|
1413
|
+
price: 4,
|
|
1414
|
+
},
|
|
1415
|
+
{
|
|
1416
|
+
cover: require('../assets/images/restaurant-2.jpg'),
|
|
1417
|
+
id: '9',
|
|
1418
|
+
name: 'Restaurant no 9',
|
|
1419
|
+
price: 4,
|
|
1420
|
+
},
|
|
1421
|
+
];
|
|
1422
|
+
|
|
1423
|
+
export const deviceColorsSupported =
|
|
1424
|
+
Boolean(ExpoMaterial3ThemeModule) &&
|
|
1425
|
+
Platform.OS === 'android' &&
|
|
1426
|
+
Platform.Version >= 31;
|