react-native-acoustic-connect 19.0.9 → 19.0.28

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.
Files changed (378) hide show
  1. package/CHANGELOG.md +91 -0
  2. package/ConnectConfig.example.json +1 -1
  3. package/README.md +390 -1
  4. package/android/build.gradle +86 -3
  5. package/android/config.gradle +137 -13
  6. package/android/src/main/assets/ConnectAdvancedConfig.json +1 -1
  7. package/android/src/main/java/com/acousticconnectrn/HybridAcousticConnectRN.kt +407 -34
  8. package/app.plugin.js +2 -2
  9. package/ios/AcousticConnectRNConfig.json +2 -2
  10. package/ios/ConnectRNParsing.swift +229 -0
  11. package/ios/HybridAcousticConnectRN.swift +290 -30
  12. package/lib/commonjs/TLTRN.js +116 -3
  13. package/lib/commonjs/TLTRN.js.map +1 -1
  14. package/lib/commonjs/components/Connect.js +145 -27
  15. package/lib/commonjs/components/Connect.js.map +1 -1
  16. package/lib/commonjs/index.js +3 -0
  17. package/lib/commonjs/index.js.map +1 -1
  18. package/lib/module/TLTRN.js +116 -3
  19. package/lib/module/TLTRN.js.map +1 -1
  20. package/lib/module/components/Connect.js +146 -28
  21. package/lib/module/components/Connect.js.map +1 -1
  22. package/lib/module/index.js +5 -0
  23. package/lib/module/index.js.map +1 -1
  24. package/lib/typescript/src/TLTRN.d.ts +85 -1
  25. package/lib/typescript/src/TLTRN.d.ts.map +1 -1
  26. package/lib/typescript/src/components/Connect.d.ts.map +1 -1
  27. package/lib/typescript/src/index.d.ts +1 -0
  28. package/lib/typescript/src/index.d.ts.map +1 -1
  29. package/lib/typescript/src/specs/react-native-acoustic-connect.nitro.d.ts +178 -10
  30. package/lib/typescript/src/specs/react-native-acoustic-connect.nitro.d.ts.map +1 -1
  31. package/nitrogen/generated/android/c++/JHybridAcousticConnectRNSpec.cpp +5 -9
  32. package/nitrogen/generated/android/c++/JHybridAcousticConnectRNSpec.hpp +1 -1
  33. package/nitrogen/generated/android/kotlin/com/margelo/nitro/acousticconnectrn/HybridAcousticConnectRNSpec.kt +2 -1
  34. package/nitrogen/generated/ios/AcousticConnectRN-Swift-Cxx-Umbrella.hpp +1 -0
  35. package/nitrogen/generated/ios/c++/HybridAcousticConnectRNSpecSwift.hpp +2 -1
  36. package/nitrogen/generated/ios/swift/HybridAcousticConnectRNSpec.swift +1 -1
  37. package/nitrogen/generated/ios/swift/HybridAcousticConnectRNSpec_cxx.swift +2 -25
  38. package/nitrogen/generated/shared/c++/HybridAcousticConnectRNSpec.hpp +2 -1
  39. package/package.json +4 -7
  40. package/plugin/build/withConnectAndroidConfig.d.ts +2 -2
  41. package/plugin/build/withConnectAndroidConfig.js +2 -2
  42. package/plugin/build/withConnectIosSigning.d.ts +1 -1
  43. package/plugin/build/withConnectIosSigning.js +1 -1
  44. package/plugin/src/withConnectAndroidConfig.ts +2 -2
  45. package/plugin/src/withConnectIosSigning.ts +1 -1
  46. package/scripts/gradleParser.js +1 -1
  47. package/src/TLTRN.ts +125 -4
  48. package/src/components/Connect.tsx +150 -27
  49. package/src/index.ts +5 -0
  50. package/src/specs/react-native-acoustic-connect.nitro.ts +180 -10
  51. package/Examples/SampleUI/.bundle/config +0 -2
  52. package/Examples/SampleUI/.detoxrc.js +0 -83
  53. package/Examples/SampleUI/.eslintrc.js +0 -4
  54. package/Examples/SampleUI/.prettierrc.js +0 -7
  55. package/Examples/SampleUI/.watchmanconfig +0 -1
  56. package/Examples/SampleUI/App.js +0 -1
  57. package/Examples/SampleUI/Gemfile +0 -10
  58. package/Examples/SampleUI/Gemfile.lock +0 -121
  59. package/Examples/SampleUI/README.md +0 -79
  60. package/Examples/SampleUI/__tests__/App.test.tsx +0 -17
  61. package/Examples/SampleUI/android/app/build.gradle +0 -129
  62. package/Examples/SampleUI/android/app/debug.keystore +0 -0
  63. package/Examples/SampleUI/android/app/proguard-rules.pro +0 -10
  64. package/Examples/SampleUI/android/app/src/debug/AndroidManifest.xml +0 -9
  65. package/Examples/SampleUI/android/app/src/main/AndroidManifest.xml +0 -31
  66. package/Examples/SampleUI/android/app/src/main/java/com/sampleui/MainActivity.kt +0 -30
  67. package/Examples/SampleUI/android/app/src/main/java/com/sampleui/MainApplication.kt +0 -53
  68. package/Examples/SampleUI/android/app/src/main/res/drawable/rn_edit_text_material.xml +0 -37
  69. package/Examples/SampleUI/android/app/src/main/res/mipmap-hdpi/ic_launcher.png +0 -0
  70. package/Examples/SampleUI/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png +0 -0
  71. package/Examples/SampleUI/android/app/src/main/res/mipmap-mdpi/ic_launcher.png +0 -0
  72. package/Examples/SampleUI/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png +0 -0
  73. package/Examples/SampleUI/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png +0 -0
  74. package/Examples/SampleUI/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png +0 -0
  75. package/Examples/SampleUI/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png +0 -0
  76. package/Examples/SampleUI/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png +0 -0
  77. package/Examples/SampleUI/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png +0 -0
  78. package/Examples/SampleUI/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png +0 -0
  79. package/Examples/SampleUI/android/app/src/main/res/values/strings.xml +0 -3
  80. package/Examples/SampleUI/android/app/src/main/res/values/styles.xml +0 -9
  81. package/Examples/SampleUI/android/build.gradle +0 -21
  82. package/Examples/SampleUI/android/gradle/wrapper/gradle-wrapper.jar +0 -0
  83. package/Examples/SampleUI/android/gradle/wrapper/gradle-wrapper.properties +0 -7
  84. package/Examples/SampleUI/android/gradle.properties +0 -39
  85. package/Examples/SampleUI/android/gradlew +0 -252
  86. package/Examples/SampleUI/android/gradlew.bat +0 -94
  87. package/Examples/SampleUI/android/settings.gradle +0 -21
  88. package/Examples/SampleUI/app.json +0 -51
  89. package/Examples/SampleUI/assets/fonts/Abel-Regular.ttf +0 -0
  90. package/Examples/SampleUI/assets/fonts/NotoSans-Regular.ttf +0 -0
  91. package/Examples/SampleUI/assets/images/android-icon.png +0 -0
  92. package/Examples/SampleUI/assets/images/artist-1.jpg +0 -0
  93. package/Examples/SampleUI/assets/images/artist-2.jpg +0 -0
  94. package/Examples/SampleUI/assets/images/avatar.png +0 -0
  95. package/Examples/SampleUI/assets/images/beach.jpg +0 -0
  96. package/Examples/SampleUI/assets/images/bridge.jpg +0 -0
  97. package/Examples/SampleUI/assets/images/chameleon.jpg +0 -0
  98. package/Examples/SampleUI/assets/images/city.jpg +0 -0
  99. package/Examples/SampleUI/assets/images/email-icon.png +0 -0
  100. package/Examples/SampleUI/assets/images/favorite.png +0 -0
  101. package/Examples/SampleUI/assets/images/forest.jpg +0 -0
  102. package/Examples/SampleUI/assets/images/paper-icon.png +0 -0
  103. package/Examples/SampleUI/assets/images/players-2.jpg +0 -0
  104. package/Examples/SampleUI/assets/images/players.jpg +0 -0
  105. package/Examples/SampleUI/assets/images/restaurant-1.jpg +0 -0
  106. package/Examples/SampleUI/assets/images/restaurant-2.jpg +0 -0
  107. package/Examples/SampleUI/assets/images/song-1.jpg +0 -0
  108. package/Examples/SampleUI/assets/images/song-2.jpg +0 -0
  109. package/Examples/SampleUI/assets/images/splash.png +0 -0
  110. package/Examples/SampleUI/assets/images/strawberries.jpg +0 -0
  111. package/Examples/SampleUI/assets/images/wrecked-ship.jpg +0 -0
  112. package/Examples/SampleUI/assets/styles/fonts.css +0 -47
  113. package/Examples/SampleUI/babel.config.js +0 -22
  114. package/Examples/SampleUI/index.js +0 -9
  115. package/Examples/SampleUI/ios/.xcode.env +0 -11
  116. package/Examples/SampleUI/ios/Podfile +0 -71
  117. package/Examples/SampleUI/ios/Podfile.lock +0 -2276
  118. package/Examples/SampleUI/ios/SampleUI/AppDelegate.h +0 -7
  119. package/Examples/SampleUI/ios/SampleUI/AppDelegate.mm +0 -31
  120. package/Examples/SampleUI/ios/SampleUI/Images.xcassets/AppIcon.appiconset/Contents.json +0 -53
  121. package/Examples/SampleUI/ios/SampleUI/Images.xcassets/Contents.json +0 -6
  122. package/Examples/SampleUI/ios/SampleUI/Info.plist +0 -52
  123. package/Examples/SampleUI/ios/SampleUI/LaunchScreen.storyboard +0 -47
  124. package/Examples/SampleUI/ios/SampleUI/PrivacyInfo.xcprivacy +0 -48
  125. package/Examples/SampleUI/ios/SampleUI/main.m +0 -10
  126. package/Examples/SampleUI/ios/SampleUI.xcodeproj/project.pbxproj +0 -785
  127. package/Examples/SampleUI/ios/SampleUI.xcodeproj/xcshareddata/xcschemes/SampleUI.xcscheme +0 -105
  128. package/Examples/SampleUI/ios/SampleUI.xcworkspace/contents.xcworkspacedata +0 -10
  129. package/Examples/SampleUI/ios/SampleUITests/Info.plist +0 -24
  130. package/Examples/SampleUI/ios/SampleUITests/SampleUITests.m +0 -66
  131. package/Examples/SampleUI/jest.config.js +0 -3
  132. package/Examples/SampleUI/metro.config.js +0 -54
  133. package/Examples/SampleUI/package.json +0 -65
  134. package/Examples/SampleUI/scripts/integration-test-android.sh +0 -292
  135. package/Examples/SampleUI/src/DrawerItems.tsx +0 -322
  136. package/Examples/SampleUI/src/ExampleList.tsx +0 -175
  137. package/Examples/SampleUI/src/Examples/ActivityIndicatorExample.tsx +0 -73
  138. package/Examples/SampleUI/src/Examples/AnimatedFABExample/AnimatedFABExample.tsx +0 -220
  139. package/Examples/SampleUI/src/Examples/AnimatedFABExample/CustomFAB.tsx +0 -70
  140. package/Examples/SampleUI/src/Examples/AnimatedFABExample/CustomFABControls.tsx +0 -146
  141. package/Examples/SampleUI/src/Examples/AnimatedFABExample/index.ts +0 -1
  142. package/Examples/SampleUI/src/Examples/AppbarExample.tsx +0 -263
  143. package/Examples/SampleUI/src/Examples/AvatarExample.tsx +0 -76
  144. package/Examples/SampleUI/src/Examples/BadgeExample.tsx +0 -97
  145. package/Examples/SampleUI/src/Examples/BannerExample.tsx +0 -152
  146. package/Examples/SampleUI/src/Examples/BottomNavigationBarExample.tsx +0 -94
  147. package/Examples/SampleUI/src/Examples/BottomNavigationExample.tsx +0 -205
  148. package/Examples/SampleUI/src/Examples/ButtonExample.tsx +0 -405
  149. package/Examples/SampleUI/src/Examples/CardExample.tsx +0 -245
  150. package/Examples/SampleUI/src/Examples/CheckboxExample.tsx +0 -87
  151. package/Examples/SampleUI/src/Examples/CheckboxItemExample.tsx +0 -72
  152. package/Examples/SampleUI/src/Examples/ChipExample.tsx +0 -432
  153. package/Examples/SampleUI/src/Examples/DataTableExample.tsx +0 -128
  154. package/Examples/SampleUI/src/Examples/DialogExample.tsx +0 -217
  155. package/Examples/SampleUI/src/Examples/Dialogs/DialogTextComponent.tsx +0 -31
  156. package/Examples/SampleUI/src/Examples/Dialogs/DialogTrackingTest.tsx +0 -307
  157. package/Examples/SampleUI/src/Examples/Dialogs/DialogWithCustomColors.tsx +0 -57
  158. package/Examples/SampleUI/src/Examples/Dialogs/DialogWithDismissableBackButton.tsx +0 -38
  159. package/Examples/SampleUI/src/Examples/Dialogs/DialogWithIcon.tsx +0 -42
  160. package/Examples/SampleUI/src/Examples/Dialogs/DialogWithLoadingIndicator.tsx +0 -48
  161. package/Examples/SampleUI/src/Examples/Dialogs/DialogWithLongText.tsx +0 -81
  162. package/Examples/SampleUI/src/Examples/Dialogs/DialogWithRadioBtns.tsx +0 -111
  163. package/Examples/SampleUI/src/Examples/Dialogs/UndismissableDialog.tsx +0 -30
  164. package/Examples/SampleUI/src/Examples/Dialogs/index.tsx +0 -44
  165. package/Examples/SampleUI/src/Examples/DividerExample.tsx +0 -30
  166. package/Examples/SampleUI/src/Examples/FABExample.tsx +0 -226
  167. package/Examples/SampleUI/src/Examples/IconButtonExample.tsx +0 -230
  168. package/Examples/SampleUI/src/Examples/IconExample.tsx +0 -50
  169. package/Examples/SampleUI/src/Examples/ListAccordionExample.tsx +0 -65
  170. package/Examples/SampleUI/src/Examples/ListAccordionGroupExample.tsx +0 -80
  171. package/Examples/SampleUI/src/Examples/ListItemExample.tsx +0 -310
  172. package/Examples/SampleUI/src/Examples/ListSectionExample.tsx +0 -159
  173. package/Examples/SampleUI/src/Examples/MaterialBottomTabNavigatorExample.tsx +0 -87
  174. package/Examples/SampleUI/src/Examples/MenuExample.tsx +0 -211
  175. package/Examples/SampleUI/src/Examples/ProgressBarExample.tsx +0 -142
  176. package/Examples/SampleUI/src/Examples/RadioButtonExample.tsx +0 -104
  177. package/Examples/SampleUI/src/Examples/RadioButtonGroupExample.tsx +0 -67
  178. package/Examples/SampleUI/src/Examples/RadioButtonItemExample.tsx +0 -77
  179. package/Examples/SampleUI/src/Examples/SearchbarExample.tsx +0 -249
  180. package/Examples/SampleUI/src/Examples/SegmentedButtons/SegmentedButtonCustomColorCheck.tsx +0 -93
  181. package/Examples/SampleUI/src/Examples/SegmentedButtons/SegmentedButtonDefault.tsx +0 -49
  182. package/Examples/SampleUI/src/Examples/SegmentedButtons/SegmentedButtonDisabled.tsx +0 -47
  183. package/Examples/SampleUI/src/Examples/SegmentedButtons/SegmentedButtonMultiselect.tsx +0 -50
  184. package/Examples/SampleUI/src/Examples/SegmentedButtons/SegmentedButtonMultiselectIcons.tsx +0 -49
  185. package/Examples/SampleUI/src/Examples/SegmentedButtons/SegmentedButtonMultiselectRealCase.tsx +0 -114
  186. package/Examples/SampleUI/src/Examples/SegmentedButtons/SegmentedButtonOnlyIcons.tsx +0 -40
  187. package/Examples/SampleUI/src/Examples/SegmentedButtons/SegmentedButtonOnlyIconsWithCheck.tsx +0 -43
  188. package/Examples/SampleUI/src/Examples/SegmentedButtons/SegmentedButtonRealCase.tsx +0 -97
  189. package/Examples/SampleUI/src/Examples/SegmentedButtons/SegmentedButtonWithDensity.tsx +0 -47
  190. package/Examples/SampleUI/src/Examples/SegmentedButtons/SegmentedButtonWithSelectedCheck.tsx +0 -52
  191. package/Examples/SampleUI/src/Examples/SegmentedButtons/index.ts +0 -9
  192. package/Examples/SampleUI/src/Examples/SegmentedButtonsExample.tsx +0 -57
  193. package/Examples/SampleUI/src/Examples/SnackbarExample.tsx +0 -141
  194. package/Examples/SampleUI/src/Examples/SurfaceExample.tsx +0 -130
  195. package/Examples/SampleUI/src/Examples/SwitchExample.tsx +0 -105
  196. package/Examples/SampleUI/src/Examples/TeamDetails.tsx +0 -291
  197. package/Examples/SampleUI/src/Examples/TeamsList.tsx +0 -57
  198. package/Examples/SampleUI/src/Examples/TextExample.tsx +0 -132
  199. package/Examples/SampleUI/src/Examples/TextInputExample.tsx +0 -914
  200. package/Examples/SampleUI/src/Examples/ThemeExample.tsx +0 -41
  201. package/Examples/SampleUI/src/Examples/ThemingWithReactNavigation.tsx +0 -75
  202. package/Examples/SampleUI/src/Examples/ToggleButtonExample.tsx +0 -128
  203. package/Examples/SampleUI/src/Examples/TooltipExample.tsx +0 -191
  204. package/Examples/SampleUI/src/Examples/TouchableRippleExample.tsx +0 -37
  205. package/Examples/SampleUI/src/RootNavigator.tsx +0 -95
  206. package/Examples/SampleUI/src/ScreenWrapper.tsx +0 -67
  207. package/Examples/SampleUI/src/components/ActivityIndicator.tsx +0 -254
  208. package/Examples/SampleUI/src/components/Appbar/Appbar.tsx +0 -364
  209. package/Examples/SampleUI/src/components/Appbar/AppbarAction.tsx +0 -132
  210. package/Examples/SampleUI/src/components/Appbar/AppbarBackAction.tsx +0 -77
  211. package/Examples/SampleUI/src/components/Appbar/AppbarBackIcon.tsx +0 -52
  212. package/Examples/SampleUI/src/components/Appbar/AppbarContent.tsx +0 -249
  213. package/Examples/SampleUI/src/components/Appbar/AppbarHeader.tsx +0 -174
  214. package/Examples/SampleUI/src/components/Appbar/index.ts +0 -22
  215. package/Examples/SampleUI/src/components/Appbar/utils.ts +0 -188
  216. package/Examples/SampleUI/src/components/Avatar/Avatar.tsx +0 -8
  217. package/Examples/SampleUI/src/components/Avatar/AvatarIcon.tsx +0 -87
  218. package/Examples/SampleUI/src/components/Avatar/AvatarImage.tsx +0 -128
  219. package/Examples/SampleUI/src/components/Avatar/AvatarText.tsx +0 -127
  220. package/Examples/SampleUI/src/components/Badge.tsx +0 -138
  221. package/Examples/SampleUI/src/components/Banner.tsx +0 -302
  222. package/Examples/SampleUI/src/components/BottomNavigation/BottomNavigation.tsx +0 -643
  223. package/Examples/SampleUI/src/components/BottomNavigation/BottomNavigationBar.tsx +0 -1039
  224. package/Examples/SampleUI/src/components/BottomNavigation/BottomNavigationRouteScreen.tsx +0 -31
  225. package/Examples/SampleUI/src/components/BottomNavigation/utils.ts +0 -70
  226. package/Examples/SampleUI/src/components/Button/Button.tsx +0 -503
  227. package/Examples/SampleUI/src/components/Button/utils.tsx +0 -272
  228. package/Examples/SampleUI/src/components/Card/Card.tsx +0 -373
  229. package/Examples/SampleUI/src/components/Card/CardActions.tsx +0 -74
  230. package/Examples/SampleUI/src/components/Card/CardContent.tsx +0 -99
  231. package/Examples/SampleUI/src/components/Card/CardCover.tsx +0 -96
  232. package/Examples/SampleUI/src/components/Card/CardTitle.tsx +0 -236
  233. package/Examples/SampleUI/src/components/Card/utils.tsx +0 -110
  234. package/Examples/SampleUI/src/components/Checkbox/Checkbox.tsx +0 -78
  235. package/Examples/SampleUI/src/components/Checkbox/CheckboxAndroid.tsx +0 -180
  236. package/Examples/SampleUI/src/components/Checkbox/CheckboxIOS.tsx +0 -104
  237. package/Examples/SampleUI/src/components/Checkbox/CheckboxItem.tsx +0 -236
  238. package/Examples/SampleUI/src/components/Checkbox/index.ts +0 -19
  239. package/Examples/SampleUI/src/components/Checkbox/utils.ts +0 -183
  240. package/Examples/SampleUI/src/components/Chip/Chip.tsx +0 -513
  241. package/Examples/SampleUI/src/components/Chip/helpers.tsx +0 -322
  242. package/Examples/SampleUI/src/components/CrossFadeIcon.tsx +0 -140
  243. package/Examples/SampleUI/src/components/DataTable/DataTable.tsx +0 -138
  244. package/Examples/SampleUI/src/components/DataTable/DataTableCell.tsx +0 -132
  245. package/Examples/SampleUI/src/components/DataTable/DataTableHeader.tsx +0 -82
  246. package/Examples/SampleUI/src/components/DataTable/DataTablePagination.tsx +0 -407
  247. package/Examples/SampleUI/src/components/DataTable/DataTableRow.tsx +0 -107
  248. package/Examples/SampleUI/src/components/DataTable/DataTableTitle.tsx +0 -208
  249. package/Examples/SampleUI/src/components/Dialog/Dialog.tsx +0 -191
  250. package/Examples/SampleUI/src/components/Dialog/DialogActions.tsx +0 -94
  251. package/Examples/SampleUI/src/components/Dialog/DialogContent.tsx +0 -54
  252. package/Examples/SampleUI/src/components/Dialog/DialogIcon.tsx +0 -100
  253. package/Examples/SampleUI/src/components/Dialog/DialogScrollArea.tsx +0 -88
  254. package/Examples/SampleUI/src/components/Dialog/DialogTitle.tsx +0 -94
  255. package/Examples/SampleUI/src/components/Divider.tsx +0 -102
  256. package/Examples/SampleUI/src/components/Drawer/Drawer.tsx +0 -8
  257. package/Examples/SampleUI/src/components/Drawer/DrawerCollapsedItem.tsx +0 -282
  258. package/Examples/SampleUI/src/components/Drawer/DrawerItem.tsx +0 -209
  259. package/Examples/SampleUI/src/components/Drawer/DrawerSection.tsx +0 -138
  260. package/Examples/SampleUI/src/components/FAB/AnimatedFAB.tsx +0 -619
  261. package/Examples/SampleUI/src/components/FAB/FAB.tsx +0 -371
  262. package/Examples/SampleUI/src/components/FAB/FABGroup.tsx +0 -532
  263. package/Examples/SampleUI/src/components/FAB/index.ts +0 -13
  264. package/Examples/SampleUI/src/components/FAB/utils.ts +0 -474
  265. package/Examples/SampleUI/src/components/HelperText/HelperText.tsx +0 -168
  266. package/Examples/SampleUI/src/components/HelperText/utils.ts +0 -30
  267. package/Examples/SampleUI/src/components/Icon.tsx +0 -170
  268. package/Examples/SampleUI/src/components/IconButton/IconButton.tsx +0 -234
  269. package/Examples/SampleUI/src/components/IconButton/utils.ts +0 -190
  270. package/Examples/SampleUI/src/components/List/List.tsx +0 -20
  271. package/Examples/SampleUI/src/components/List/ListAccordion.tsx +0 -391
  272. package/Examples/SampleUI/src/components/List/ListAccordionGroup.tsx +0 -88
  273. package/Examples/SampleUI/src/components/List/ListIcon.tsx +0 -79
  274. package/Examples/SampleUI/src/components/List/ListImage.tsx +0 -89
  275. package/Examples/SampleUI/src/components/List/ListItem.tsx +0 -313
  276. package/Examples/SampleUI/src/components/List/ListSection.tsx +0 -87
  277. package/Examples/SampleUI/src/components/List/ListSubheader.tsx +0 -79
  278. package/Examples/SampleUI/src/components/List/utils.ts +0 -113
  279. package/Examples/SampleUI/src/components/MaterialCommunityIcon.tsx +0 -121
  280. package/Examples/SampleUI/src/components/Menu/Menu.tsx +0 -711
  281. package/Examples/SampleUI/src/components/Menu/MenuItem.tsx +0 -257
  282. package/Examples/SampleUI/src/components/Menu/utils.ts +0 -110
  283. package/Examples/SampleUI/src/components/Modal.tsx +0 -245
  284. package/Examples/SampleUI/src/components/Portal/Portal.tsx +0 -69
  285. package/Examples/SampleUI/src/components/Portal/PortalConsumer.tsx +0 -44
  286. package/Examples/SampleUI/src/components/Portal/PortalHost.tsx +0 -143
  287. package/Examples/SampleUI/src/components/Portal/PortalManager.tsx +0 -54
  288. package/Examples/SampleUI/src/components/ProgressBar.tsx +0 -292
  289. package/Examples/SampleUI/src/components/RadioButton/RadioButton.tsx +0 -86
  290. package/Examples/SampleUI/src/components/RadioButton/RadioButtonAndroid.tsx +0 -202
  291. package/Examples/SampleUI/src/components/RadioButton/RadioButtonGroup.tsx +0 -67
  292. package/Examples/SampleUI/src/components/RadioButton/RadioButtonIOS.tsx +0 -130
  293. package/Examples/SampleUI/src/components/RadioButton/RadioButtonItem.tsx +0 -268
  294. package/Examples/SampleUI/src/components/RadioButton/index.ts +0 -22
  295. package/Examples/SampleUI/src/components/RadioButton/utils.ts +0 -37
  296. package/Examples/SampleUI/src/components/Searchbar.tsx +0 -459
  297. package/Examples/SampleUI/src/components/SegmentedButtons/SegmentedButtonItem.tsx +0 -271
  298. package/Examples/SampleUI/src/components/SegmentedButtons/SegmentedButtons.tsx +0 -197
  299. package/Examples/SampleUI/src/components/SegmentedButtons/utils.ts +0 -179
  300. package/Examples/SampleUI/src/components/Snackbar.tsx +0 -430
  301. package/Examples/SampleUI/src/components/Surface.tsx +0 -376
  302. package/Examples/SampleUI/src/components/Switch/Switch.tsx +0 -108
  303. package/Examples/SampleUI/src/components/Switch/utils.ts +0 -113
  304. package/Examples/SampleUI/src/components/TextInput/Addons/Outline.tsx +0 -64
  305. package/Examples/SampleUI/src/components/TextInput/Addons/Underline.tsx +0 -78
  306. package/Examples/SampleUI/src/components/TextInput/Adornment/TextInputAdornment.tsx +0 -208
  307. package/Examples/SampleUI/src/components/TextInput/Adornment/TextInputAffix.tsx +0 -212
  308. package/Examples/SampleUI/src/components/TextInput/Adornment/TextInputIcon.tsx +0 -195
  309. package/Examples/SampleUI/src/components/TextInput/Adornment/enums.tsx +0 -12
  310. package/Examples/SampleUI/src/components/TextInput/Adornment/types.tsx +0 -11
  311. package/Examples/SampleUI/src/components/TextInput/Adornment/utils.ts +0 -48
  312. package/Examples/SampleUI/src/components/TextInput/Label/InputLabel.tsx +0 -217
  313. package/Examples/SampleUI/src/components/TextInput/Label/LabelBackground.tsx +0 -100
  314. package/Examples/SampleUI/src/components/TextInput/TextInput.tsx +0 -572
  315. package/Examples/SampleUI/src/components/TextInput/TextInputFlat.tsx +0 -475
  316. package/Examples/SampleUI/src/components/TextInput/TextInputOutlined.tsx +0 -450
  317. package/Examples/SampleUI/src/components/TextInput/constants.tsx +0 -48
  318. package/Examples/SampleUI/src/components/TextInput/helpers.tsx +0 -612
  319. package/Examples/SampleUI/src/components/TextInput/types.tsx +0 -155
  320. package/Examples/SampleUI/src/components/ToggleButton/ToggleButton.tsx +0 -187
  321. package/Examples/SampleUI/src/components/ToggleButton/ToggleButtonGroup.tsx +0 -72
  322. package/Examples/SampleUI/src/components/ToggleButton/ToggleButtonRow.tsx +0 -107
  323. package/Examples/SampleUI/src/components/ToggleButton/index.ts +0 -16
  324. package/Examples/SampleUI/src/components/ToggleButton/utils.ts +0 -26
  325. package/Examples/SampleUI/src/components/Tooltip/Tooltip.tsx +0 -249
  326. package/Examples/SampleUI/src/components/Tooltip/utils.ts +0 -129
  327. package/Examples/SampleUI/src/components/TouchableRipple/Pressable.tsx +0 -41
  328. package/Examples/SampleUI/src/components/TouchableRipple/TouchableRipple.native.tsx +0 -145
  329. package/Examples/SampleUI/src/components/TouchableRipple/TouchableRipple.tsx +0 -317
  330. package/Examples/SampleUI/src/components/TouchableRipple/utils.ts +0 -66
  331. package/Examples/SampleUI/src/components/Typography/AnimatedText.tsx +0 -107
  332. package/Examples/SampleUI/src/components/Typography/Text.tsx +0 -184
  333. package/Examples/SampleUI/src/components/Typography/types.tsx +0 -5
  334. package/Examples/SampleUI/src/components/Typography/v2/Caption.tsx +0 -50
  335. package/Examples/SampleUI/src/components/Typography/v2/Headline.tsx +0 -52
  336. package/Examples/SampleUI/src/components/Typography/v2/Paragraph.tsx +0 -49
  337. package/Examples/SampleUI/src/components/Typography/v2/StyledText.tsx +0 -56
  338. package/Examples/SampleUI/src/components/Typography/v2/Subheading.tsx +0 -50
  339. package/Examples/SampleUI/src/components/Typography/v2/Text.tsx +0 -62
  340. package/Examples/SampleUI/src/components/Typography/v2/Title.tsx +0 -49
  341. package/Examples/SampleUI/src/components/Typography/v2/index.ts +0 -5
  342. package/Examples/SampleUI/src/core/PaperProvider.tsx +0 -122
  343. package/Examples/SampleUI/src/core/SafeAreaProviderCompat.tsx +0 -65
  344. package/Examples/SampleUI/src/core/settings.tsx +0 -23
  345. package/Examples/SampleUI/src/core/theming.tsx +0 -170
  346. package/Examples/SampleUI/src/index.native.tsx +0 -285
  347. package/Examples/SampleUI/src/index.tsx +0 -226
  348. package/Examples/SampleUI/src/react-navigation/index.tsx +0 -19
  349. package/Examples/SampleUI/src/react-navigation/navigators/createMaterialBottomTabNavigator.tsx +0 -72
  350. package/Examples/SampleUI/src/react-navigation/types.tsx +0 -126
  351. package/Examples/SampleUI/src/react-navigation/views/MaterialBottomTabView.tsx +0 -140
  352. package/Examples/SampleUI/src/styles/__tests__/fonts.test.js +0 -290
  353. package/Examples/SampleUI/src/styles/fonts.tsx +0 -143
  354. package/Examples/SampleUI/src/styles/overlay.tsx +0 -70
  355. package/Examples/SampleUI/src/styles/shadow.tsx +0 -109
  356. package/Examples/SampleUI/src/styles/themes/index.ts +0 -4
  357. package/Examples/SampleUI/src/styles/themes/v2/DarkTheme.tsx +0 -30
  358. package/Examples/SampleUI/src/styles/themes/v2/LightTheme.tsx +0 -30
  359. package/Examples/SampleUI/src/styles/themes/v2/colors.tsx +0 -277
  360. package/Examples/SampleUI/src/styles/themes/v3/DarkTheme.tsx +0 -66
  361. package/Examples/SampleUI/src/styles/themes/v3/LightTheme.tsx +0 -69
  362. package/Examples/SampleUI/src/styles/themes/v3/tokens.tsx +0 -230
  363. package/Examples/SampleUI/src/utils/BackHandler/BackHandler.native.tsx +0 -3
  364. package/Examples/SampleUI/src/utils/BackHandler/BackHandler.tsx +0 -11
  365. package/Examples/SampleUI/src/utils/addEventListener.tsx +0 -56
  366. package/Examples/SampleUI/src/utils/forwardRef.tsx +0 -23
  367. package/Examples/SampleUI/src/utils/getContrastingColor.tsx +0 -15
  368. package/Examples/SampleUI/src/utils/hasTouchHandler.tsx +0 -23
  369. package/Examples/SampleUI/src/utils/roundLayoutSize.ts +0 -2
  370. package/Examples/SampleUI/src/utils/splitStyles.ts +0 -60
  371. package/Examples/SampleUI/src/utils/useAnimatedValue.tsx +0 -9
  372. package/Examples/SampleUI/src/utils/useAnimatedValueArray.tsx +0 -13
  373. package/Examples/SampleUI/src/utils/useIsKeyboardShown.tsx +0 -55
  374. package/Examples/SampleUI/src/utils/useLayout.tsx +0 -29
  375. package/Examples/SampleUI/src/utils/useLazyRef.tsx +0 -11
  376. package/Examples/SampleUI/tsconfig.json +0 -3
  377. package/Examples/SampleUI/utils/index.ts +0 -1426
  378. package/cli/__tests__/doctor.test.mjs +0 -88
@@ -1,391 +0,0 @@
1
- import * as React from 'react';
2
- import {
3
- ColorValue,
4
- GestureResponderEvent,
5
- I18nManager,
6
- NativeSyntheticEvent,
7
- StyleProp,
8
- StyleSheet,
9
- TextStyle,
10
- TextLayoutEventData,
11
- View,
12
- ViewProps,
13
- ViewStyle,
14
- PressableAndroidRippleConfig,
15
- } from 'react-native';
16
-
17
- import { ListAccordionGroupContext } from './ListAccordionGroup';
18
- import type { Style } from './utils';
19
- import { getAccordionColors, getLeftStyles } from './utils';
20
- import { useInternalTheme } from '../../core/theming';
21
- import type { ThemeProp } from '../../types';
22
- import MaterialCommunityIcon from '../MaterialCommunityIcon';
23
- import TouchableRipple from '../TouchableRipple/TouchableRipple';
24
- import Text from '../Typography/Text';
25
-
26
- export type Props = {
27
- /**
28
- * Title text for the list accordion.
29
- */
30
- title: React.ReactNode;
31
- /**
32
- * Description text for the list accordion.
33
- */
34
- description?: React.ReactNode;
35
- /**
36
- * Callback which returns a React element to display on the left side.
37
- */
38
- left?: (props: { color: string; style: Style }) => React.ReactNode;
39
- /**
40
- * Callback which returns a React element to display on the right side.
41
- */
42
- right?: (props: { isExpanded: boolean }) => React.ReactNode;
43
- /**
44
- * Whether the accordion is expanded
45
- * If this prop is provided, the accordion will behave as a "controlled component".
46
- * You'll need to update this prop when you want to toggle the component or on `onPress`.
47
- */
48
- expanded?: boolean;
49
- /**
50
- * Function to execute on press.
51
- */
52
- onPress?: (e: GestureResponderEvent) => void;
53
- /**
54
- * Function to execute on long press.
55
- */
56
- onLongPress?: (e: GestureResponderEvent) => void;
57
- /**
58
- * The number of milliseconds a user must touch the element before executing `onLongPress`.
59
- */
60
- delayLongPress?: number;
61
- /**
62
- * Content of the section.
63
- */
64
- children: React.ReactNode;
65
- /**
66
- * @optional
67
- */
68
- theme?: ThemeProp;
69
- /**
70
- * Type of background drawabale to display the feedback (Android).
71
- * https://reactnative.dev/docs/pressable#rippleconfig
72
- */
73
- background?: PressableAndroidRippleConfig;
74
- /**
75
- * Style that is passed to the wrapping TouchableRipple element.
76
- */
77
- style?: StyleProp<ViewStyle>;
78
- /**
79
- * Style that is passed to Title element.
80
- */
81
- titleStyle?: StyleProp<TextStyle>;
82
- /**
83
- * Style that is passed to Description element.
84
- */
85
- descriptionStyle?: StyleProp<TextStyle>;
86
- /**
87
- * Color of the ripple effect.
88
- */
89
- rippleColor?: ColorValue;
90
- /**
91
- * Truncate Title text such that the total number of lines does not
92
- * exceed this number.
93
- */
94
- titleNumberOfLines?: number;
95
- /**
96
- * Truncate Description text such that the total number of lines does not
97
- * exceed this number.
98
- */
99
- descriptionNumberOfLines?: number;
100
- /**
101
- * Specifies the largest possible scale a title font can reach.
102
- */
103
- titleMaxFontSizeMultiplier?: number;
104
- /**
105
- * Specifies the largest possible scale a description font can reach.
106
- */
107
- descriptionMaxFontSizeMultiplier?: number;
108
- /**
109
- * Id is used for distinguishing specific accordion when using List.AccordionGroup. Property is required when using List.AccordionGroup and has no impact on behavior when using standalone List.Accordion.
110
- */
111
- id?: string | number;
112
- /**
113
- * TestID used for testing purposes
114
- */
115
- testID?: string;
116
- /**
117
- * Accessibility label for the TouchableRipple. This is read by the screen reader when the user taps the touchable.
118
- */
119
- accessibilityLabel?: string;
120
- /**
121
- * `pointerEvents` passed to the `View` container
122
- */
123
- pointerEvents?: ViewProps['pointerEvents'];
124
- };
125
-
126
- /**
127
- * A component used to display an expandable list item.
128
- *
129
- * ## Usage
130
- * ```js
131
- * import * as React from 'react';
132
- * import { List } from 'react-native-paper';
133
- *
134
- * const MyComponent = () => {
135
- * const [expanded, setExpanded] = React.useState(true);
136
- *
137
- * const handlePress = () => setExpanded(!expanded);
138
- *
139
- * return (
140
- * <List.Section title="Accordions">
141
- * <List.Accordion
142
- * title="Uncontrolled Accordion"
143
- * left={props => <List.Icon {...props} icon="folder" />}>
144
- * <List.Item title="First item" />
145
- * <List.Item title="Second item" />
146
- * </List.Accordion>
147
- *
148
- * <List.Accordion
149
- * title="Controlled Accordion"
150
- * left={props => <List.Icon {...props} icon="folder" />}
151
- * expanded={expanded}
152
- * onPress={handlePress}>
153
- * <List.Item title="First item" />
154
- * <List.Item title="Second item" />
155
- * </List.Accordion>
156
- * </List.Section>
157
- * );
158
- * };
159
- *
160
- * export default MyComponent;
161
- * ```
162
- */
163
- const ListAccordion = ({
164
- left,
165
- right,
166
- title,
167
- description,
168
- children,
169
- theme: themeOverrides,
170
- titleStyle,
171
- descriptionStyle,
172
- titleNumberOfLines = 1,
173
- descriptionNumberOfLines = 2,
174
- rippleColor: customRippleColor,
175
- style,
176
- id,
177
- testID,
178
- background,
179
- onPress,
180
- onLongPress,
181
- delayLongPress,
182
- expanded: expandedProp,
183
- accessibilityLabel,
184
- pointerEvents = 'none',
185
- titleMaxFontSizeMultiplier,
186
- descriptionMaxFontSizeMultiplier,
187
- }: Props) => {
188
- const theme = useInternalTheme(themeOverrides);
189
- const [expanded, setExpanded] = React.useState<boolean>(
190
- expandedProp || false
191
- );
192
- const [alignToTop, setAlignToTop] = React.useState(false);
193
-
194
- const onDescriptionTextLayout = (
195
- event: NativeSyntheticEvent<TextLayoutEventData>
196
- ) => {
197
- if (!theme.isV3) {
198
- return;
199
- }
200
- const { nativeEvent } = event;
201
- setAlignToTop(nativeEvent.lines.length >= 2);
202
- };
203
-
204
- const handlePressAction = (e: GestureResponderEvent) => {
205
- onPress?.(e);
206
-
207
- if (expandedProp === undefined) {
208
- // Only update state of the `expanded` prop was not passed
209
- // If it was passed, the component will act as a controlled component
210
- setExpanded((expanded) => !expanded);
211
- }
212
- };
213
-
214
- const expandedInternal = expandedProp !== undefined ? expandedProp : expanded;
215
-
216
- const groupContext = React.useContext(ListAccordionGroupContext);
217
- if (groupContext !== null && (id === undefined || id === null || id === '')) {
218
- throw new Error(
219
- 'List.Accordion is used inside a List.AccordionGroup without specifying an id prop.'
220
- );
221
- }
222
- const isExpanded = groupContext
223
- ? groupContext.expandedId === id
224
- : expandedInternal;
225
-
226
- const { titleColor, descriptionColor, titleTextColor, rippleColor } =
227
- getAccordionColors({
228
- theme,
229
- isExpanded,
230
- customRippleColor,
231
- });
232
-
233
- const handlePress =
234
- groupContext && id !== undefined
235
- ? () => groupContext.onAccordionPress(id)
236
- : handlePressAction;
237
- return (
238
- <View>
239
- <View style={{ backgroundColor: theme?.colors?.background }}>
240
- <TouchableRipple
241
- style={[theme.isV3 ? styles.containerV3 : styles.container, style]}
242
- onPress={handlePress}
243
- onLongPress={onLongPress}
244
- delayLongPress={delayLongPress}
245
- rippleColor={rippleColor}
246
- accessibilityRole="button"
247
- accessibilityState={{ expanded: isExpanded }}
248
- accessibilityLabel={accessibilityLabel}
249
- testID={testID}
250
- theme={theme}
251
- background={background}
252
- borderless
253
- >
254
- <View
255
- style={theme.isV3 ? styles.rowV3 : styles.row}
256
- pointerEvents={pointerEvents}
257
- >
258
- {left
259
- ? left({
260
- color: isExpanded ? theme.colors?.primary : descriptionColor,
261
- style: getLeftStyles(alignToTop, description, theme.isV3),
262
- })
263
- : null}
264
- <View
265
- style={[theme.isV3 ? styles.itemV3 : styles.item, styles.content]}
266
- >
267
- <Text
268
- selectable={false}
269
- numberOfLines={titleNumberOfLines}
270
- style={[
271
- styles.title,
272
- {
273
- color: titleTextColor,
274
- },
275
- titleStyle,
276
- ]}
277
- maxFontSizeMultiplier={titleMaxFontSizeMultiplier}
278
- >
279
- {title}
280
- </Text>
281
- {description ? (
282
- <Text
283
- selectable={false}
284
- numberOfLines={descriptionNumberOfLines}
285
- style={[
286
- styles.description,
287
- {
288
- color: descriptionColor,
289
- },
290
- descriptionStyle,
291
- ]}
292
- onTextLayout={onDescriptionTextLayout}
293
- maxFontSizeMultiplier={descriptionMaxFontSizeMultiplier}
294
- >
295
- {description}
296
- </Text>
297
- ) : null}
298
- </View>
299
- <View
300
- style={[styles.item, description ? styles.multiline : undefined]}
301
- >
302
- {right ? (
303
- right({
304
- isExpanded: isExpanded,
305
- })
306
- ) : (
307
- <MaterialCommunityIcon
308
- name={isExpanded ? 'chevron-up' : 'chevron-down'}
309
- color={theme.isV3 ? descriptionColor : titleColor}
310
- size={24}
311
- direction={I18nManager.getConstants().isRTL ? 'rtl' : 'ltr'}
312
- />
313
- )}
314
- </View>
315
- </View>
316
- </TouchableRipple>
317
- </View>
318
-
319
- {isExpanded
320
- ? React.Children.map(children, (child) => {
321
- if (
322
- left &&
323
- React.isValidElement(child) &&
324
- !child.props.left &&
325
- !child.props.right
326
- ) {
327
- return React.cloneElement(child as React.ReactElement<any>, {
328
- style: [
329
- theme.isV3 ? styles.childV3 : styles.child,
330
- child.props.style,
331
- ],
332
- theme,
333
- });
334
- }
335
-
336
- return child;
337
- })
338
- : null}
339
- </View>
340
- );
341
- };
342
-
343
- ListAccordion.displayName = 'List.Accordion';
344
-
345
- const styles = StyleSheet.create({
346
- container: {
347
- padding: 8,
348
- },
349
- containerV3: {
350
- paddingVertical: 8,
351
- paddingRight: 24,
352
- },
353
- row: {
354
- flexDirection: 'row',
355
- alignItems: 'center',
356
- },
357
- rowV3: {
358
- flexDirection: 'row',
359
- marginVertical: 6,
360
- },
361
- multiline: {
362
- height: 40,
363
- alignItems: 'center',
364
- justifyContent: 'center',
365
- },
366
- title: {
367
- fontSize: 16,
368
- },
369
- description: {
370
- fontSize: 14,
371
- },
372
- item: {
373
- marginVertical: 6,
374
- paddingLeft: 8,
375
- },
376
- itemV3: {
377
- paddingLeft: 16,
378
- },
379
- child: {
380
- paddingLeft: 64,
381
- },
382
- childV3: {
383
- paddingLeft: 40,
384
- },
385
- content: {
386
- flex: 1,
387
- justifyContent: 'center',
388
- },
389
- });
390
-
391
- export default ListAccordion;
@@ -1,88 +0,0 @@
1
- import * as React from 'react';
2
-
3
- export type Props = {
4
- /**
5
- * Function to execute on selection change.
6
- */
7
- onAccordionPress?: (expandedId: string | number) => void;
8
- /**
9
- * Id of the currently expanded list accordion
10
- */
11
- expandedId?: string | number;
12
- /**
13
- * React elements containing list accordions
14
- */
15
- children: React.ReactNode;
16
- };
17
-
18
- export type ListAccordionGroupContextType = {
19
- expandedId: string | number | undefined;
20
- onAccordionPress: (expandedId: string | number) => void;
21
- } | null;
22
-
23
- export const ListAccordionGroupContext =
24
- React.createContext<ListAccordionGroupContextType>(null);
25
-
26
- /**
27
- * List.AccordionGroup allows to control a group of List Accordions. `id` prop for List.Accordion is required in order for group to work.
28
- * List.AccordionGroup can be a controlled or uncontrolled component. The example shows the uncontrolled version.
29
- * At most one Accordion can be expanded at a given time.
30
- *
31
- * ## Usage
32
- * ```js
33
- * import * as React from 'react';
34
- * import { View, Text } from 'react-native';
35
- * import { List } from 'react-native-paper';
36
- *
37
- * const MyComponent = () => (
38
- * <List.AccordionGroup>
39
- * <List.Accordion title="Accordion 1" id="1">
40
- * <List.Item title="Item 1" />
41
- * </List.Accordion>
42
- * <List.Accordion title="Accordion 2" id="2">
43
- * <List.Item title="Item 2" />
44
- * </List.Accordion>
45
- * <View>
46
- * <Text>
47
- * List.Accordion can be wrapped because implementation uses React.Context.
48
- * </Text>
49
- * <List.Accordion title="Accordion 3" id="3">
50
- * <List.Item title="Item 3" />
51
- * </List.Accordion>
52
- * </View>
53
- * </List.AccordionGroup>
54
- * );
55
- *
56
- * export default MyComponent;
57
- *```
58
- */
59
- const ListAccordionGroup = ({
60
- expandedId: expandedIdProp,
61
- onAccordionPress,
62
- children,
63
- }: Props) => {
64
- const [expandedId, setExpandedId] = React.useState<
65
- string | number | undefined
66
- >(undefined);
67
-
68
- const onAccordionPressDefault = (newExpandedId: string | number) => {
69
- setExpandedId((currentExpandedId) =>
70
- currentExpandedId === newExpandedId ? undefined : newExpandedId
71
- );
72
- };
73
-
74
- return (
75
- <ListAccordionGroupContext.Provider
76
- value={{
77
- expandedId: expandedIdProp || expandedId, // component can be controlled or uncontrolled
78
- onAccordionPress: onAccordionPress || onAccordionPressDefault,
79
- }}
80
- >
81
- {children}
82
- </ListAccordionGroupContext.Provider>
83
- );
84
- };
85
-
86
- ListAccordionGroup.displayName = 'List.AccordionGroup';
87
-
88
- export default ListAccordionGroup;
@@ -1,79 +0,0 @@
1
- import * as React from 'react';
2
- import { View, ViewStyle, StyleSheet, StyleProp } from 'react-native';
3
-
4
- import { useInternalTheme } from '../../core/theming';
5
- import type { ThemeProp } from '../../types';
6
- import Icon, { IconSource } from '../Icon';
7
-
8
- export type Props = {
9
- /**
10
- * Icon to show.
11
- */
12
- icon: IconSource;
13
- /**
14
- * Color for the icon.
15
- */
16
- color?: string;
17
- style?: StyleProp<ViewStyle>;
18
- /**
19
- * @optional
20
- */
21
- theme?: ThemeProp;
22
- };
23
-
24
- const ICON_SIZE = 24;
25
-
26
- /**
27
- * A component to show an icon in a list item.
28
- *
29
- * ## Usage
30
- * ```js
31
- * import * as React from 'react';
32
- * import { List, MD3Colors } from 'react-native-paper';
33
- *
34
- * const MyComponent = () => (
35
- * <>
36
- * <List.Icon color={MD3Colors.tertiary70} icon="folder" />
37
- * <List.Icon color={MD3Colors.tertiary70} icon="equal" />
38
- * <List.Icon color={MD3Colors.tertiary70} icon="calendar" />
39
- * </>
40
- * );
41
- *
42
- * export default MyComponent;
43
- * ```
44
- */
45
- const ListIcon = ({
46
- icon,
47
- color: iconColor,
48
- style,
49
- theme: themeOverrides,
50
- }: Props) => {
51
- const theme = useInternalTheme(themeOverrides);
52
-
53
- return (
54
- <View
55
- style={[theme.isV3 ? styles.itemV3 : styles.item, style]}
56
- pointerEvents="box-none"
57
- >
58
- <Icon source={icon} size={ICON_SIZE} color={iconColor} theme={theme} />
59
- </View>
60
- );
61
- };
62
-
63
- const styles = StyleSheet.create({
64
- item: {
65
- margin: 8,
66
- height: 40,
67
- width: 40,
68
- alignItems: 'center',
69
- justifyContent: 'center',
70
- },
71
- itemV3: {
72
- alignItems: 'center',
73
- justifyContent: 'center',
74
- },
75
- });
76
-
77
- ListIcon.displayName = 'List.Icon';
78
-
79
- export default ListIcon;
@@ -1,89 +0,0 @@
1
- import * as React from 'react';
2
- import {
3
- StyleSheet,
4
- StyleProp,
5
- Image,
6
- ImageSourcePropType,
7
- ImageStyle,
8
- } from 'react-native';
9
-
10
- import { useInternalTheme } from '../../core/theming';
11
- import type { ThemeProp } from '../../types';
12
-
13
- export type Props = {
14
- source: ImageSourcePropType;
15
- variant?: 'image' | 'video';
16
- style?: StyleProp<ImageStyle>;
17
- /**
18
- * @optional
19
- */
20
- theme?: ThemeProp;
21
- };
22
-
23
- /**
24
- * A component to show image in a list item.
25
- *
26
- * ## Usage
27
- * ```js
28
- * import * as React from 'react';
29
- * import { List, MD3Colors } from 'react-native-paper';
30
- *
31
- * const MyComponent = () => (
32
- * <>
33
- * <List.Image variant="image" source={{uri: 'https://www.someurl.com/apple'}} />
34
- * <List.Image variant="video" source={require('../../some-apple.png')} />
35
- * </>
36
- * );
37
- *
38
- * export default MyComponent;
39
- * ```
40
- */
41
- const ListImage = ({
42
- style,
43
- source,
44
- variant = 'image',
45
- theme: themeOverrides,
46
- }: Props) => {
47
- const theme = useInternalTheme(themeOverrides);
48
- const getStyles = () => {
49
- if (variant === 'video') {
50
- if (!theme.isV3) {
51
- return [style, styles.video];
52
- }
53
-
54
- return [style, styles.videoV3];
55
- }
56
-
57
- return [style, styles.image];
58
- };
59
-
60
- return (
61
- <Image
62
- style={getStyles()}
63
- source={source}
64
- accessibilityIgnoresInvertColors
65
- testID="list-image"
66
- />
67
- );
68
- };
69
-
70
- const styles = StyleSheet.create({
71
- image: {
72
- width: 56,
73
- height: 56,
74
- },
75
- video: {
76
- width: 100,
77
- height: 64,
78
- marginLeft: 0,
79
- },
80
- videoV3: {
81
- width: 114,
82
- height: 64,
83
- marginLeft: 0,
84
- },
85
- });
86
-
87
- ListImage.displayName = 'List.Image';
88
-
89
- export default ListImage;