react-native-acoustic-connect-beta 18.0.7 → 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.
Files changed (327) hide show
  1. package/Examples/SampleUI/.bundle/config +2 -0
  2. package/Examples/SampleUI/.eslintrc.js +4 -0
  3. package/Examples/SampleUI/.prettierrc.js +7 -0
  4. package/Examples/SampleUI/.watchmanconfig +1 -0
  5. package/Examples/SampleUI/App.js +1 -0
  6. package/Examples/SampleUI/Gemfile +10 -0
  7. package/Examples/SampleUI/Gemfile.lock +121 -0
  8. package/Examples/SampleUI/README.md +79 -0
  9. package/Examples/SampleUI/__tests__/App.test.tsx +17 -0
  10. package/Examples/SampleUI/android/app/build.gradle +124 -0
  11. package/Examples/SampleUI/android/app/debug.keystore +0 -0
  12. package/Examples/SampleUI/android/app/proguard-rules.pro +10 -0
  13. package/Examples/SampleUI/android/app/src/debug/AndroidManifest.xml +9 -0
  14. package/Examples/SampleUI/android/app/src/main/AndroidManifest.xml +26 -0
  15. package/Examples/SampleUI/android/app/src/main/java/com/sampleui/MainActivity.kt +23 -0
  16. package/Examples/SampleUI/android/app/src/main/java/com/sampleui/MainApplication.kt +53 -0
  17. package/Examples/SampleUI/android/app/src/main/res/drawable/rn_edit_text_material.xml +37 -0
  18. package/Examples/SampleUI/android/app/src/main/res/mipmap-hdpi/ic_launcher.png +0 -0
  19. package/Examples/SampleUI/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png +0 -0
  20. package/Examples/SampleUI/android/app/src/main/res/mipmap-mdpi/ic_launcher.png +0 -0
  21. package/Examples/SampleUI/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png +0 -0
  22. package/Examples/SampleUI/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png +0 -0
  23. package/Examples/SampleUI/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png +0 -0
  24. package/Examples/SampleUI/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png +0 -0
  25. package/Examples/SampleUI/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png +0 -0
  26. package/Examples/SampleUI/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png +0 -0
  27. package/Examples/SampleUI/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png +0 -0
  28. package/Examples/SampleUI/android/app/src/main/res/values/strings.xml +3 -0
  29. package/Examples/SampleUI/android/app/src/main/res/values/styles.xml +9 -0
  30. package/Examples/SampleUI/android/build.gradle +21 -0
  31. package/Examples/SampleUI/android/gradle/wrapper/gradle-wrapper.jar +0 -0
  32. package/Examples/SampleUI/android/gradle/wrapper/gradle-wrapper.properties +7 -0
  33. package/Examples/SampleUI/android/gradle.properties +39 -0
  34. package/Examples/SampleUI/android/gradlew +252 -0
  35. package/Examples/SampleUI/android/gradlew.bat +94 -0
  36. package/Examples/SampleUI/android/settings.gradle +21 -0
  37. package/Examples/SampleUI/app.json +51 -0
  38. package/Examples/SampleUI/assets/fonts/Abel-Regular.ttf +0 -0
  39. package/Examples/SampleUI/assets/fonts/NotoSans-Regular.ttf +0 -0
  40. package/Examples/SampleUI/assets/images/android-icon.png +0 -0
  41. package/Examples/SampleUI/assets/images/artist-1.jpg +0 -0
  42. package/Examples/SampleUI/assets/images/artist-2.jpg +0 -0
  43. package/Examples/SampleUI/assets/images/avatar.png +0 -0
  44. package/Examples/SampleUI/assets/images/beach.jpg +0 -0
  45. package/Examples/SampleUI/assets/images/bridge.jpg +0 -0
  46. package/Examples/SampleUI/assets/images/chameleon.jpg +0 -0
  47. package/Examples/SampleUI/assets/images/city.jpg +0 -0
  48. package/Examples/SampleUI/assets/images/email-icon.png +0 -0
  49. package/Examples/SampleUI/assets/images/favorite.png +0 -0
  50. package/Examples/SampleUI/assets/images/forest.jpg +0 -0
  51. package/Examples/SampleUI/assets/images/paper-icon.png +0 -0
  52. package/Examples/SampleUI/assets/images/players-2.jpg +0 -0
  53. package/Examples/SampleUI/assets/images/players.jpg +0 -0
  54. package/Examples/SampleUI/assets/images/restaurant-1.jpg +0 -0
  55. package/Examples/SampleUI/assets/images/restaurant-2.jpg +0 -0
  56. package/Examples/SampleUI/assets/images/song-1.jpg +0 -0
  57. package/Examples/SampleUI/assets/images/song-2.jpg +0 -0
  58. package/Examples/SampleUI/assets/images/splash.png +0 -0
  59. package/Examples/SampleUI/assets/images/strawberries.jpg +0 -0
  60. package/Examples/SampleUI/assets/images/wrecked-ship.jpg +0 -0
  61. package/Examples/SampleUI/assets/styles/fonts.css +47 -0
  62. package/Examples/SampleUI/babel.config.js +22 -0
  63. package/Examples/SampleUI/index.js +9 -0
  64. package/Examples/SampleUI/ios/.xcode.env +11 -0
  65. package/Examples/SampleUI/ios/Podfile +58 -0
  66. package/Examples/SampleUI/ios/SampleUI/AppDelegate.h +7 -0
  67. package/Examples/SampleUI/ios/SampleUI/AppDelegate.mm +31 -0
  68. package/Examples/SampleUI/ios/SampleUI/Images.xcassets/AppIcon.appiconset/Contents.json +53 -0
  69. package/Examples/SampleUI/ios/SampleUI/Images.xcassets/Contents.json +6 -0
  70. package/Examples/SampleUI/ios/SampleUI/Info.plist +52 -0
  71. package/Examples/SampleUI/ios/SampleUI/LaunchScreen.storyboard +47 -0
  72. package/Examples/SampleUI/ios/SampleUI/PrivacyInfo.xcprivacy +48 -0
  73. package/Examples/SampleUI/ios/SampleUI/main.m +10 -0
  74. package/Examples/SampleUI/ios/SampleUI.xcodeproj/project.pbxproj +785 -0
  75. package/Examples/SampleUI/ios/SampleUI.xcodeproj/xcshareddata/xcschemes/SampleUI.xcscheme +88 -0
  76. package/Examples/SampleUI/ios/SampleUI.xcworkspace/contents.xcworkspacedata +10 -0
  77. package/Examples/SampleUI/ios/SampleUITests/Info.plist +24 -0
  78. package/Examples/SampleUI/ios/SampleUITests/SampleUITests.m +66 -0
  79. package/Examples/SampleUI/jest.config.js +3 -0
  80. package/Examples/SampleUI/metro.config.js +53 -0
  81. package/Examples/SampleUI/package-lock.json +17033 -0
  82. package/Examples/SampleUI/package.json +62 -0
  83. package/Examples/SampleUI/src/DrawerItems.tsx +322 -0
  84. package/Examples/SampleUI/src/ExampleList.tsx +175 -0
  85. package/Examples/SampleUI/src/Examples/ActivityIndicatorExample.tsx +73 -0
  86. package/Examples/SampleUI/src/Examples/AnimatedFABExample/AnimatedFABExample.tsx +220 -0
  87. package/Examples/SampleUI/src/Examples/AnimatedFABExample/CustomFAB.tsx +70 -0
  88. package/Examples/SampleUI/src/Examples/AnimatedFABExample/CustomFABControls.tsx +146 -0
  89. package/Examples/SampleUI/src/Examples/AnimatedFABExample/index.ts +1 -0
  90. package/Examples/SampleUI/src/Examples/AppbarExample.tsx +263 -0
  91. package/Examples/SampleUI/src/Examples/AvatarExample.tsx +76 -0
  92. package/Examples/SampleUI/src/Examples/BadgeExample.tsx +97 -0
  93. package/Examples/SampleUI/src/Examples/BannerExample.tsx +152 -0
  94. package/Examples/SampleUI/src/Examples/BottomNavigationBarExample.tsx +94 -0
  95. package/Examples/SampleUI/src/Examples/BottomNavigationExample.tsx +205 -0
  96. package/Examples/SampleUI/src/Examples/ButtonExample.tsx +405 -0
  97. package/Examples/SampleUI/src/Examples/CardExample.tsx +245 -0
  98. package/Examples/SampleUI/src/Examples/CheckboxExample.tsx +87 -0
  99. package/Examples/SampleUI/src/Examples/CheckboxItemExample.tsx +72 -0
  100. package/Examples/SampleUI/src/Examples/ChipExample.tsx +432 -0
  101. package/Examples/SampleUI/src/Examples/DataTableExample.tsx +128 -0
  102. package/Examples/SampleUI/src/Examples/DialogExample.tsx +131 -0
  103. package/Examples/SampleUI/src/Examples/Dialogs/DialogTextComponent.tsx +31 -0
  104. package/Examples/SampleUI/src/Examples/Dialogs/DialogWithCustomColors.tsx +57 -0
  105. package/Examples/SampleUI/src/Examples/Dialogs/DialogWithDismissableBackButton.tsx +38 -0
  106. package/Examples/SampleUI/src/Examples/Dialogs/DialogWithIcon.tsx +42 -0
  107. package/Examples/SampleUI/src/Examples/Dialogs/DialogWithLoadingIndicator.tsx +48 -0
  108. package/Examples/SampleUI/src/Examples/Dialogs/DialogWithLongText.tsx +81 -0
  109. package/Examples/SampleUI/src/Examples/Dialogs/DialogWithRadioBtns.tsx +111 -0
  110. package/Examples/SampleUI/src/Examples/Dialogs/UndismissableDialog.tsx +30 -0
  111. package/Examples/SampleUI/src/Examples/Dialogs/index.tsx +7 -0
  112. package/Examples/SampleUI/src/Examples/DividerExample.tsx +30 -0
  113. package/Examples/SampleUI/src/Examples/FABExample.tsx +226 -0
  114. package/Examples/SampleUI/src/Examples/IconButtonExample.tsx +230 -0
  115. package/Examples/SampleUI/src/Examples/IconExample.tsx +50 -0
  116. package/Examples/SampleUI/src/Examples/ListAccordionExample.tsx +65 -0
  117. package/Examples/SampleUI/src/Examples/ListAccordionGroupExample.tsx +80 -0
  118. package/Examples/SampleUI/src/Examples/ListItemExample.tsx +310 -0
  119. package/Examples/SampleUI/src/Examples/ListSectionExample.tsx +159 -0
  120. package/Examples/SampleUI/src/Examples/MaterialBottomTabNavigatorExample.tsx +87 -0
  121. package/Examples/SampleUI/src/Examples/MenuExample.tsx +211 -0
  122. package/Examples/SampleUI/src/Examples/ProgressBarExample.tsx +142 -0
  123. package/Examples/SampleUI/src/Examples/RadioButtonExample.tsx +104 -0
  124. package/Examples/SampleUI/src/Examples/RadioButtonGroupExample.tsx +67 -0
  125. package/Examples/SampleUI/src/Examples/RadioButtonItemExample.tsx +77 -0
  126. package/Examples/SampleUI/src/Examples/SearchbarExample.tsx +249 -0
  127. package/Examples/SampleUI/src/Examples/SegmentedButtons/SegmentedButtonCustomColorCheck.tsx +93 -0
  128. package/Examples/SampleUI/src/Examples/SegmentedButtons/SegmentedButtonDefault.tsx +49 -0
  129. package/Examples/SampleUI/src/Examples/SegmentedButtons/SegmentedButtonDisabled.tsx +47 -0
  130. package/Examples/SampleUI/src/Examples/SegmentedButtons/SegmentedButtonMultiselect.tsx +50 -0
  131. package/Examples/SampleUI/src/Examples/SegmentedButtons/SegmentedButtonMultiselectIcons.tsx +49 -0
  132. package/Examples/SampleUI/src/Examples/SegmentedButtons/SegmentedButtonMultiselectRealCase.tsx +114 -0
  133. package/Examples/SampleUI/src/Examples/SegmentedButtons/SegmentedButtonOnlyIcons.tsx +40 -0
  134. package/Examples/SampleUI/src/Examples/SegmentedButtons/SegmentedButtonOnlyIconsWithCheck.tsx +43 -0
  135. package/Examples/SampleUI/src/Examples/SegmentedButtons/SegmentedButtonRealCase.tsx +97 -0
  136. package/Examples/SampleUI/src/Examples/SegmentedButtons/SegmentedButtonWithDensity.tsx +47 -0
  137. package/Examples/SampleUI/src/Examples/SegmentedButtons/SegmentedButtonWithSelectedCheck.tsx +52 -0
  138. package/Examples/SampleUI/src/Examples/SegmentedButtons/index.ts +9 -0
  139. package/Examples/SampleUI/src/Examples/SegmentedButtonsExample.tsx +57 -0
  140. package/Examples/SampleUI/src/Examples/SnackbarExample.tsx +141 -0
  141. package/Examples/SampleUI/src/Examples/SurfaceExample.tsx +130 -0
  142. package/Examples/SampleUI/src/Examples/SwitchExample.tsx +105 -0
  143. package/Examples/SampleUI/src/Examples/TeamDetails.tsx +291 -0
  144. package/Examples/SampleUI/src/Examples/TeamsList.tsx +57 -0
  145. package/Examples/SampleUI/src/Examples/TextExample.tsx +132 -0
  146. package/Examples/SampleUI/src/Examples/TextInputExample.tsx +914 -0
  147. package/Examples/SampleUI/src/Examples/ThemeExample.tsx +41 -0
  148. package/Examples/SampleUI/src/Examples/ThemingWithReactNavigation.tsx +75 -0
  149. package/Examples/SampleUI/src/Examples/ToggleButtonExample.tsx +128 -0
  150. package/Examples/SampleUI/src/Examples/TooltipExample.tsx +191 -0
  151. package/Examples/SampleUI/src/Examples/TouchableRippleExample.tsx +37 -0
  152. package/Examples/SampleUI/src/RootNavigator.tsx +86 -0
  153. package/Examples/SampleUI/src/ScreenWrapper.tsx +67 -0
  154. package/Examples/SampleUI/src/components/ActivityIndicator.tsx +254 -0
  155. package/Examples/SampleUI/src/components/Appbar/Appbar.tsx +364 -0
  156. package/Examples/SampleUI/src/components/Appbar/AppbarAction.tsx +132 -0
  157. package/Examples/SampleUI/src/components/Appbar/AppbarBackAction.tsx +77 -0
  158. package/Examples/SampleUI/src/components/Appbar/AppbarBackIcon.tsx +52 -0
  159. package/Examples/SampleUI/src/components/Appbar/AppbarContent.tsx +249 -0
  160. package/Examples/SampleUI/src/components/Appbar/AppbarHeader.tsx +174 -0
  161. package/Examples/SampleUI/src/components/Appbar/index.ts +22 -0
  162. package/Examples/SampleUI/src/components/Appbar/utils.ts +188 -0
  163. package/Examples/SampleUI/src/components/Avatar/Avatar.tsx +8 -0
  164. package/Examples/SampleUI/src/components/Avatar/AvatarIcon.tsx +87 -0
  165. package/Examples/SampleUI/src/components/Avatar/AvatarImage.tsx +128 -0
  166. package/Examples/SampleUI/src/components/Avatar/AvatarText.tsx +127 -0
  167. package/Examples/SampleUI/src/components/Badge.tsx +138 -0
  168. package/Examples/SampleUI/src/components/Banner.tsx +302 -0
  169. package/Examples/SampleUI/src/components/BottomNavigation/BottomNavigation.tsx +643 -0
  170. package/Examples/SampleUI/src/components/BottomNavigation/BottomNavigationBar.tsx +1039 -0
  171. package/Examples/SampleUI/src/components/BottomNavigation/BottomNavigationRouteScreen.tsx +31 -0
  172. package/Examples/SampleUI/src/components/BottomNavigation/utils.ts +70 -0
  173. package/Examples/SampleUI/src/components/Button/Button.tsx +503 -0
  174. package/Examples/SampleUI/src/components/Button/utils.tsx +272 -0
  175. package/Examples/SampleUI/src/components/Card/Card.tsx +373 -0
  176. package/Examples/SampleUI/src/components/Card/CardActions.tsx +74 -0
  177. package/Examples/SampleUI/src/components/Card/CardContent.tsx +99 -0
  178. package/Examples/SampleUI/src/components/Card/CardCover.tsx +96 -0
  179. package/Examples/SampleUI/src/components/Card/CardTitle.tsx +236 -0
  180. package/Examples/SampleUI/src/components/Card/utils.tsx +110 -0
  181. package/Examples/SampleUI/src/components/Checkbox/Checkbox.tsx +78 -0
  182. package/Examples/SampleUI/src/components/Checkbox/CheckboxAndroid.tsx +180 -0
  183. package/Examples/SampleUI/src/components/Checkbox/CheckboxIOS.tsx +104 -0
  184. package/Examples/SampleUI/src/components/Checkbox/CheckboxItem.tsx +236 -0
  185. package/Examples/SampleUI/src/components/Checkbox/index.ts +19 -0
  186. package/Examples/SampleUI/src/components/Checkbox/utils.ts +183 -0
  187. package/Examples/SampleUI/src/components/Chip/Chip.tsx +513 -0
  188. package/Examples/SampleUI/src/components/Chip/helpers.tsx +322 -0
  189. package/Examples/SampleUI/src/components/CrossFadeIcon.tsx +140 -0
  190. package/Examples/SampleUI/src/components/DataTable/DataTable.tsx +138 -0
  191. package/Examples/SampleUI/src/components/DataTable/DataTableCell.tsx +132 -0
  192. package/Examples/SampleUI/src/components/DataTable/DataTableHeader.tsx +82 -0
  193. package/Examples/SampleUI/src/components/DataTable/DataTablePagination.tsx +407 -0
  194. package/Examples/SampleUI/src/components/DataTable/DataTableRow.tsx +107 -0
  195. package/Examples/SampleUI/src/components/DataTable/DataTableTitle.tsx +208 -0
  196. package/Examples/SampleUI/src/components/Dialog/Dialog.tsx +191 -0
  197. package/Examples/SampleUI/src/components/Dialog/DialogActions.tsx +94 -0
  198. package/Examples/SampleUI/src/components/Dialog/DialogContent.tsx +54 -0
  199. package/Examples/SampleUI/src/components/Dialog/DialogIcon.tsx +100 -0
  200. package/Examples/SampleUI/src/components/Dialog/DialogScrollArea.tsx +88 -0
  201. package/Examples/SampleUI/src/components/Dialog/DialogTitle.tsx +94 -0
  202. package/Examples/SampleUI/src/components/Divider.tsx +102 -0
  203. package/Examples/SampleUI/src/components/Drawer/Drawer.tsx +8 -0
  204. package/Examples/SampleUI/src/components/Drawer/DrawerCollapsedItem.tsx +282 -0
  205. package/Examples/SampleUI/src/components/Drawer/DrawerItem.tsx +209 -0
  206. package/Examples/SampleUI/src/components/Drawer/DrawerSection.tsx +138 -0
  207. package/Examples/SampleUI/src/components/FAB/AnimatedFAB.tsx +619 -0
  208. package/Examples/SampleUI/src/components/FAB/FAB.tsx +371 -0
  209. package/Examples/SampleUI/src/components/FAB/FABGroup.tsx +532 -0
  210. package/Examples/SampleUI/src/components/FAB/index.ts +13 -0
  211. package/Examples/SampleUI/src/components/FAB/utils.ts +474 -0
  212. package/Examples/SampleUI/src/components/HelperText/HelperText.tsx +168 -0
  213. package/Examples/SampleUI/src/components/HelperText/utils.ts +30 -0
  214. package/Examples/SampleUI/src/components/Icon.tsx +170 -0
  215. package/Examples/SampleUI/src/components/IconButton/IconButton.tsx +234 -0
  216. package/Examples/SampleUI/src/components/IconButton/utils.ts +190 -0
  217. package/Examples/SampleUI/src/components/List/List.tsx +20 -0
  218. package/Examples/SampleUI/src/components/List/ListAccordion.tsx +391 -0
  219. package/Examples/SampleUI/src/components/List/ListAccordionGroup.tsx +88 -0
  220. package/Examples/SampleUI/src/components/List/ListIcon.tsx +79 -0
  221. package/Examples/SampleUI/src/components/List/ListImage.tsx +89 -0
  222. package/Examples/SampleUI/src/components/List/ListItem.tsx +313 -0
  223. package/Examples/SampleUI/src/components/List/ListSection.tsx +87 -0
  224. package/Examples/SampleUI/src/components/List/ListSubheader.tsx +79 -0
  225. package/Examples/SampleUI/src/components/List/utils.ts +113 -0
  226. package/Examples/SampleUI/src/components/MaterialCommunityIcon.tsx +121 -0
  227. package/Examples/SampleUI/src/components/Menu/Menu.tsx +711 -0
  228. package/Examples/SampleUI/src/components/Menu/MenuItem.tsx +257 -0
  229. package/Examples/SampleUI/src/components/Menu/utils.ts +110 -0
  230. package/Examples/SampleUI/src/components/Modal.tsx +245 -0
  231. package/Examples/SampleUI/src/components/Portal/Portal.tsx +69 -0
  232. package/Examples/SampleUI/src/components/Portal/PortalConsumer.tsx +44 -0
  233. package/Examples/SampleUI/src/components/Portal/PortalHost.tsx +143 -0
  234. package/Examples/SampleUI/src/components/Portal/PortalManager.tsx +54 -0
  235. package/Examples/SampleUI/src/components/ProgressBar.tsx +292 -0
  236. package/Examples/SampleUI/src/components/RadioButton/RadioButton.tsx +86 -0
  237. package/Examples/SampleUI/src/components/RadioButton/RadioButtonAndroid.tsx +202 -0
  238. package/Examples/SampleUI/src/components/RadioButton/RadioButtonGroup.tsx +67 -0
  239. package/Examples/SampleUI/src/components/RadioButton/RadioButtonIOS.tsx +130 -0
  240. package/Examples/SampleUI/src/components/RadioButton/RadioButtonItem.tsx +268 -0
  241. package/Examples/SampleUI/src/components/RadioButton/index.ts +22 -0
  242. package/Examples/SampleUI/src/components/RadioButton/utils.ts +37 -0
  243. package/Examples/SampleUI/src/components/Searchbar.tsx +459 -0
  244. package/Examples/SampleUI/src/components/SegmentedButtons/SegmentedButtonItem.tsx +271 -0
  245. package/Examples/SampleUI/src/components/SegmentedButtons/SegmentedButtons.tsx +197 -0
  246. package/Examples/SampleUI/src/components/SegmentedButtons/utils.ts +179 -0
  247. package/Examples/SampleUI/src/components/Snackbar.tsx +430 -0
  248. package/Examples/SampleUI/src/components/Surface.tsx +376 -0
  249. package/Examples/SampleUI/src/components/Switch/Switch.tsx +108 -0
  250. package/Examples/SampleUI/src/components/Switch/utils.ts +113 -0
  251. package/Examples/SampleUI/src/components/TextInput/Addons/Outline.tsx +64 -0
  252. package/Examples/SampleUI/src/components/TextInput/Addons/Underline.tsx +78 -0
  253. package/Examples/SampleUI/src/components/TextInput/Adornment/TextInputAdornment.tsx +208 -0
  254. package/Examples/SampleUI/src/components/TextInput/Adornment/TextInputAffix.tsx +212 -0
  255. package/Examples/SampleUI/src/components/TextInput/Adornment/TextInputIcon.tsx +195 -0
  256. package/Examples/SampleUI/src/components/TextInput/Adornment/enums.tsx +12 -0
  257. package/Examples/SampleUI/src/components/TextInput/Adornment/types.tsx +11 -0
  258. package/Examples/SampleUI/src/components/TextInput/Adornment/utils.ts +48 -0
  259. package/Examples/SampleUI/src/components/TextInput/Label/InputLabel.tsx +217 -0
  260. package/Examples/SampleUI/src/components/TextInput/Label/LabelBackground.tsx +100 -0
  261. package/Examples/SampleUI/src/components/TextInput/TextInput.tsx +572 -0
  262. package/Examples/SampleUI/src/components/TextInput/TextInputFlat.tsx +475 -0
  263. package/Examples/SampleUI/src/components/TextInput/TextInputOutlined.tsx +450 -0
  264. package/Examples/SampleUI/src/components/TextInput/constants.tsx +48 -0
  265. package/Examples/SampleUI/src/components/TextInput/helpers.tsx +612 -0
  266. package/Examples/SampleUI/src/components/TextInput/types.tsx +155 -0
  267. package/Examples/SampleUI/src/components/ToggleButton/ToggleButton.tsx +187 -0
  268. package/Examples/SampleUI/src/components/ToggleButton/ToggleButtonGroup.tsx +72 -0
  269. package/Examples/SampleUI/src/components/ToggleButton/ToggleButtonRow.tsx +107 -0
  270. package/Examples/SampleUI/src/components/ToggleButton/index.ts +16 -0
  271. package/Examples/SampleUI/src/components/ToggleButton/utils.ts +26 -0
  272. package/Examples/SampleUI/src/components/Tooltip/Tooltip.tsx +249 -0
  273. package/Examples/SampleUI/src/components/Tooltip/utils.ts +129 -0
  274. package/Examples/SampleUI/src/components/TouchableRipple/Pressable.tsx +41 -0
  275. package/Examples/SampleUI/src/components/TouchableRipple/TouchableRipple.native.tsx +145 -0
  276. package/Examples/SampleUI/src/components/TouchableRipple/TouchableRipple.tsx +317 -0
  277. package/Examples/SampleUI/src/components/TouchableRipple/utils.ts +66 -0
  278. package/Examples/SampleUI/src/components/Typography/AnimatedText.tsx +107 -0
  279. package/Examples/SampleUI/src/components/Typography/Text.tsx +184 -0
  280. package/Examples/SampleUI/src/components/Typography/types.tsx +5 -0
  281. package/Examples/SampleUI/src/components/Typography/v2/Caption.tsx +50 -0
  282. package/Examples/SampleUI/src/components/Typography/v2/Headline.tsx +52 -0
  283. package/Examples/SampleUI/src/components/Typography/v2/Paragraph.tsx +49 -0
  284. package/Examples/SampleUI/src/components/Typography/v2/StyledText.tsx +56 -0
  285. package/Examples/SampleUI/src/components/Typography/v2/Subheading.tsx +50 -0
  286. package/Examples/SampleUI/src/components/Typography/v2/Text.tsx +62 -0
  287. package/Examples/SampleUI/src/components/Typography/v2/Title.tsx +49 -0
  288. package/Examples/SampleUI/src/components/Typography/v2/index.ts +5 -0
  289. package/Examples/SampleUI/src/core/PaperProvider.tsx +122 -0
  290. package/Examples/SampleUI/src/core/SafeAreaProviderCompat.tsx +65 -0
  291. package/Examples/SampleUI/src/core/settings.tsx +23 -0
  292. package/Examples/SampleUI/src/core/theming.tsx +170 -0
  293. package/Examples/SampleUI/src/index.native.tsx +270 -0
  294. package/Examples/SampleUI/src/index.tsx +226 -0
  295. package/Examples/SampleUI/src/react-navigation/index.tsx +19 -0
  296. package/Examples/SampleUI/src/react-navigation/navigators/createMaterialBottomTabNavigator.tsx +72 -0
  297. package/Examples/SampleUI/src/react-navigation/types.tsx +126 -0
  298. package/Examples/SampleUI/src/react-navigation/views/MaterialBottomTabView.tsx +140 -0
  299. package/Examples/SampleUI/src/styles/__tests__/fonts.test.js +290 -0
  300. package/Examples/SampleUI/src/styles/fonts.tsx +143 -0
  301. package/Examples/SampleUI/src/styles/overlay.tsx +70 -0
  302. package/Examples/SampleUI/src/styles/shadow.tsx +109 -0
  303. package/Examples/SampleUI/src/styles/themes/index.ts +4 -0
  304. package/Examples/SampleUI/src/styles/themes/v2/DarkTheme.tsx +30 -0
  305. package/Examples/SampleUI/src/styles/themes/v2/LightTheme.tsx +30 -0
  306. package/Examples/SampleUI/src/styles/themes/v2/colors.tsx +277 -0
  307. package/Examples/SampleUI/src/styles/themes/v3/DarkTheme.tsx +66 -0
  308. package/Examples/SampleUI/src/styles/themes/v3/LightTheme.tsx +69 -0
  309. package/Examples/SampleUI/src/styles/themes/v3/tokens.tsx +230 -0
  310. package/Examples/SampleUI/src/utils/BackHandler/BackHandler.native.tsx +3 -0
  311. package/Examples/SampleUI/src/utils/BackHandler/BackHandler.tsx +11 -0
  312. package/Examples/SampleUI/src/utils/addEventListener.tsx +56 -0
  313. package/Examples/SampleUI/src/utils/forwardRef.tsx +23 -0
  314. package/Examples/SampleUI/src/utils/getContrastingColor.tsx +15 -0
  315. package/Examples/SampleUI/src/utils/hasTouchHandler.tsx +23 -0
  316. package/Examples/SampleUI/src/utils/roundLayoutSize.ts +2 -0
  317. package/Examples/SampleUI/src/utils/splitStyles.ts +60 -0
  318. package/Examples/SampleUI/src/utils/useAnimatedValue.tsx +9 -0
  319. package/Examples/SampleUI/src/utils/useAnimatedValueArray.tsx +13 -0
  320. package/Examples/SampleUI/src/utils/useIsKeyboardShown.tsx +55 -0
  321. package/Examples/SampleUI/src/utils/useLayout.tsx +29 -0
  322. package/Examples/SampleUI/src/utils/useLazyRef.tsx +11 -0
  323. package/Examples/SampleUI/tsconfig.json +3 -0
  324. package/Examples/SampleUI/utils/index.ts +1426 -0
  325. package/lib/typescript/jslib/TLTRN.d.ts +5 -5
  326. package/lib/typescript/jslib/TLTRN.d.ts.map +1 -1
  327. package/package.json +7 -2
@@ -0,0 +1,612 @@
1
+ import { Platform } from 'react-native';
2
+
3
+ import color from 'color';
4
+
5
+ import { AdornmentSide, AdornmentType } from './Adornment/enums';
6
+ import type { AdornmentConfig } from './Adornment/types';
7
+ import {
8
+ MIN_WIDTH,
9
+ ADORNMENT_SIZE,
10
+ MD2_ADORNMENT_OFFSET,
11
+ MD2_AFFIX_OFFSET,
12
+ MD2_FLAT_INPUT_OFFSET,
13
+ MD2_ICON_OFFSET,
14
+ MD2_INPUT_PADDING_HORIZONTAL,
15
+ MD2_LABEL_PADDING_HORIZONTAL,
16
+ MD2_LABEL_PADDING_TOP,
17
+ MD2_MIN_HEIGHT,
18
+ MD2_OUTLINED_INPUT_OFFSET,
19
+ MD3_ADORNMENT_OFFSET,
20
+ MD3_AFFIX_OFFSET,
21
+ MD3_FLAT_INPUT_OFFSET,
22
+ MD3_ICON_OFFSET,
23
+ MD3_INPUT_PADDING_HORIZONTAL,
24
+ MD3_LABEL_PADDING_HORIZONTAL,
25
+ MD3_LABEL_PADDING_TOP,
26
+ MD3_MIN_HEIGHT,
27
+ MD3_OUTLINED_INPUT_OFFSET,
28
+ } from './constants';
29
+ import type { TextInputLabelProp } from './types';
30
+ import type { InternalTheme } from '../../types';
31
+
32
+ type PaddingProps = {
33
+ height: number | null;
34
+ labelHalfHeight: number;
35
+ multiline: boolean | null;
36
+ dense: boolean | null;
37
+ topPosition: number;
38
+ fontSize: number;
39
+ lineHeight?: number;
40
+ label?: TextInputLabelProp | null;
41
+ scale: number;
42
+ offset: number;
43
+ isAndroid: boolean;
44
+ styles: { paddingTop: number; paddingBottom: number };
45
+ };
46
+
47
+ type AdjProps = PaddingProps & {
48
+ pad: number;
49
+ };
50
+
51
+ export type Padding = { paddingTop: number; paddingBottom: number };
52
+
53
+ export const calculateLabelTopPosition = (
54
+ labelHeight: number,
55
+ height: number = 0,
56
+ optionalPadding: number = 0
57
+ ): number => {
58
+ const customHeight = height > 0 ? height : 0;
59
+
60
+ return Math.floor((customHeight - labelHeight) / 2 + optionalPadding);
61
+ };
62
+
63
+ export const calculateInputHeight = (
64
+ labelHeight: number,
65
+ height: any = 0,
66
+ minHeight: number
67
+ ): number => {
68
+ const finalHeight = height > 0 ? height : labelHeight;
69
+
70
+ if (height > 0) return height;
71
+ return finalHeight < minHeight ? minHeight : finalHeight;
72
+ };
73
+
74
+ export const calculatePadding = (props: PaddingProps): number => {
75
+ const { height, multiline = false } = props;
76
+
77
+ let result = 0;
78
+
79
+ if (multiline) {
80
+ if (height && multiline) {
81
+ result = calculateTextAreaPadding(props);
82
+ } else {
83
+ result = calculateInputPadding(props);
84
+ }
85
+ }
86
+
87
+ return Math.max(0, result);
88
+ };
89
+
90
+ const calculateTextAreaPadding = (props: PaddingProps) => {
91
+ const { dense } = props;
92
+
93
+ return dense ? 10 : 20;
94
+ };
95
+
96
+ const calculateInputPadding = ({
97
+ topPosition,
98
+ fontSize,
99
+ multiline,
100
+ scale,
101
+ dense,
102
+ offset,
103
+ isAndroid,
104
+ }: PaddingProps): number => {
105
+ const refFontSize = scale * fontSize;
106
+ let result = Math.floor(topPosition / 2);
107
+
108
+ result =
109
+ result +
110
+ Math.floor((refFontSize - fontSize) / 2) -
111
+ (scale < 1 ? offset / 2 : 0);
112
+
113
+ if (multiline && isAndroid)
114
+ result = Math.min(dense ? offset / 2 : offset, result);
115
+
116
+ return result;
117
+ };
118
+
119
+ export const adjustPaddingOut = ({
120
+ pad,
121
+ multiline,
122
+ label,
123
+ scale,
124
+ height,
125
+ fontSize,
126
+ lineHeight,
127
+ dense,
128
+ offset,
129
+ isAndroid,
130
+ }: AdjProps): Padding => {
131
+ const fontHeight = lineHeight ?? fontSize;
132
+ const refFontHeight = scale * fontSize;
133
+ let result = pad;
134
+
135
+ if (!isAndroid && height && !multiline) {
136
+ return {
137
+ paddingTop: Math.max(0, (height - fontHeight) / 2),
138
+ paddingBottom: Math.max(0, (height - fontHeight) / 2),
139
+ };
140
+ }
141
+ if (!isAndroid && multiline) {
142
+ if (dense) {
143
+ if (label) {
144
+ result += scale < 1 ? Math.min(offset, (refFontHeight / 2) * scale) : 0;
145
+ } else {
146
+ result += 0;
147
+ }
148
+ }
149
+ if (!dense) {
150
+ if (label) {
151
+ result +=
152
+ scale < 1
153
+ ? Math.min(offset, refFontHeight * scale)
154
+ : Math.min(offset / 2, refFontHeight * scale);
155
+ } else {
156
+ result += scale < 1 ? Math.min(offset / 2, refFontHeight * scale) : 0;
157
+ }
158
+ }
159
+ result = Math.floor(result);
160
+ }
161
+ return { paddingTop: result, paddingBottom: result };
162
+ };
163
+
164
+ export const adjustPaddingFlat = ({
165
+ pad,
166
+ scale,
167
+ multiline,
168
+ label,
169
+ height,
170
+ offset,
171
+ dense,
172
+ fontSize,
173
+ isAndroid,
174
+ styles,
175
+ }: AdjProps): Padding => {
176
+ let result = pad;
177
+ let topResult = result;
178
+ let bottomResult = result;
179
+ const { paddingTop, paddingBottom } = styles;
180
+ const refFontSize = scale * fontSize;
181
+
182
+ if (!multiline) {
183
+ // do not modify padding if input is not multiline
184
+ if (label) {
185
+ // return const style for flat input with label
186
+ return { paddingTop, paddingBottom };
187
+ }
188
+ // return pad for flat input without label
189
+ return { paddingTop: result, paddingBottom: result };
190
+ }
191
+
192
+ if (label) {
193
+ // add paddings passed from styles
194
+ topResult = paddingTop;
195
+ bottomResult = paddingBottom;
196
+
197
+ // adjust top padding for iOS
198
+ if (!isAndroid) {
199
+ if (dense) {
200
+ topResult +=
201
+ scale < 1
202
+ ? Math.min(result, refFontSize * scale) - result / 2
203
+ : Math.min(result, refFontSize * scale) - result / 2;
204
+ }
205
+ if (!dense) {
206
+ topResult +=
207
+ scale < 1
208
+ ? Math.min(offset / 2, refFontSize * scale)
209
+ : Math.min(result, refFontSize * scale) - offset / 2;
210
+ }
211
+ }
212
+ topResult = Math.floor(topResult);
213
+ } else {
214
+ if (height) {
215
+ // center text when height is passed
216
+ return {
217
+ paddingTop: Math.max(0, (height - fontSize) / 2),
218
+ paddingBottom: Math.max(0, (height - fontSize) / 2),
219
+ };
220
+ }
221
+ // adjust paddings for iOS if no label
222
+ if (!isAndroid) {
223
+ if (dense) {
224
+ result +=
225
+ scale < 1
226
+ ? Math.min(offset / 2, (fontSize / 2) * scale)
227
+ : Math.min(offset / 2, scale);
228
+ }
229
+ if (!dense) {
230
+ result +=
231
+ scale < 1
232
+ ? Math.min(offset, fontSize * scale)
233
+ : Math.min(fontSize, (offset / 2) * scale);
234
+ }
235
+
236
+ result = Math.floor(result);
237
+ topResult = result;
238
+ bottomResult = result;
239
+ }
240
+ }
241
+
242
+ return {
243
+ paddingTop: Math.max(0, topResult),
244
+ paddingBottom: Math.max(0, bottomResult),
245
+ };
246
+ };
247
+
248
+ export function calculateFlatAffixTopPosition({
249
+ height,
250
+ paddingTop,
251
+ paddingBottom,
252
+ affixHeight,
253
+ }: {
254
+ height: number;
255
+ paddingTop: number;
256
+ paddingBottom: number;
257
+ affixHeight: number;
258
+ }): number {
259
+ const inputHeightWithoutPadding = height - paddingTop - paddingBottom;
260
+
261
+ const halfOfTheInputHeightDecreasedByAffixHeight =
262
+ (inputHeightWithoutPadding - affixHeight) / 2;
263
+
264
+ return paddingTop + halfOfTheInputHeightDecreasedByAffixHeight;
265
+ }
266
+
267
+ export function calculateOutlinedIconAndAffixTopPosition({
268
+ height,
269
+ affixHeight,
270
+ labelYOffset,
271
+ }: {
272
+ height: number;
273
+ affixHeight: number;
274
+ labelYOffset: number;
275
+ }): number {
276
+ return (height - affixHeight + labelYOffset) / 2;
277
+ }
278
+
279
+ export const calculateFlatInputHorizontalPadding = ({
280
+ adornmentConfig,
281
+ isV3,
282
+ }: {
283
+ adornmentConfig: AdornmentConfig[];
284
+ isV3?: boolean;
285
+ }) => {
286
+ const { LABEL_PADDING_HORIZONTAL, ADORNMENT_OFFSET, FLAT_INPUT_OFFSET } =
287
+ getConstants(isV3);
288
+
289
+ let paddingLeft = LABEL_PADDING_HORIZONTAL;
290
+ let paddingRight = LABEL_PADDING_HORIZONTAL;
291
+
292
+ adornmentConfig.forEach(({ type, side }) => {
293
+ if (type === AdornmentType.Icon && side === AdornmentSide.Left) {
294
+ paddingLeft = ADORNMENT_SIZE + ADORNMENT_OFFSET + FLAT_INPUT_OFFSET;
295
+ } else if (side === AdornmentSide.Right) {
296
+ if (type === AdornmentType.Affix) {
297
+ paddingRight = ADORNMENT_SIZE + ADORNMENT_OFFSET + FLAT_INPUT_OFFSET;
298
+ } else if (type === AdornmentType.Icon) {
299
+ paddingRight = ADORNMENT_SIZE + ADORNMENT_OFFSET + FLAT_INPUT_OFFSET;
300
+ }
301
+ }
302
+ });
303
+
304
+ return { paddingLeft, paddingRight };
305
+ };
306
+
307
+ type BaseProps = {
308
+ theme: InternalTheme;
309
+ disabled?: boolean;
310
+ };
311
+
312
+ type Mode = 'flat' | 'outlined';
313
+
314
+ const getInputTextColor = ({
315
+ theme,
316
+ textColor,
317
+ disabled,
318
+ }: BaseProps & { textColor?: string }) => {
319
+ if (textColor) {
320
+ return textColor;
321
+ }
322
+
323
+ if (theme.isV3) {
324
+ if (disabled) {
325
+ return theme.colors.onSurfaceDisabled;
326
+ }
327
+
328
+ return theme.colors.onSurface;
329
+ }
330
+
331
+ if (disabled) {
332
+ return color(theme.colors.text).alpha(0.54).rgb().string();
333
+ }
334
+
335
+ return theme.colors.text;
336
+ };
337
+
338
+ const getActiveColor = ({
339
+ theme,
340
+ disabled,
341
+ error,
342
+ activeUnderlineColor,
343
+ activeOutlineColor,
344
+ mode,
345
+ }: BaseProps & {
346
+ error?: boolean;
347
+ activeUnderlineColor?: string;
348
+ activeOutlineColor?: string;
349
+ mode?: Mode;
350
+ }) => {
351
+ const isFlat = mode === 'flat';
352
+ const modeColor = isFlat ? activeUnderlineColor : activeOutlineColor;
353
+
354
+ if (error) {
355
+ return theme.colors.error;
356
+ }
357
+
358
+ if (modeColor) {
359
+ return modeColor;
360
+ }
361
+
362
+ if (disabled) {
363
+ if (theme.isV3) {
364
+ return theme.colors.onSurfaceDisabled;
365
+ }
366
+
367
+ return color(theme.colors.text).alpha(0.54).rgb().string();
368
+ }
369
+
370
+ return theme.colors.primary;
371
+ };
372
+
373
+ const getPlaceholderColor = ({ theme, disabled }: BaseProps) => {
374
+ if (theme.isV3) {
375
+ if (disabled) {
376
+ return theme.colors.onSurfaceDisabled;
377
+ }
378
+
379
+ return theme.colors.onSurfaceVariant;
380
+ }
381
+
382
+ if (disabled) {
383
+ return theme.colors.disabled;
384
+ }
385
+
386
+ return theme.colors.placeholder;
387
+ };
388
+
389
+ const getSelectionColor = ({
390
+ activeColor,
391
+ customSelectionColor,
392
+ }: {
393
+ activeColor: string;
394
+ customSelectionColor?: string;
395
+ }) => {
396
+ if (typeof customSelectionColor !== 'undefined') {
397
+ return customSelectionColor;
398
+ }
399
+
400
+ if (Platform.OS === 'android') {
401
+ return color(activeColor).alpha(0.54).rgb().string();
402
+ }
403
+
404
+ return activeColor;
405
+ };
406
+
407
+ const getFlatBackgroundColor = ({ theme, disabled }: BaseProps) => {
408
+ if (theme.isV3) {
409
+ if (disabled) {
410
+ return color(theme.colors.onSurface).alpha(0.04).rgb().string();
411
+ } else {
412
+ return theme.colors.surfaceVariant;
413
+ }
414
+ }
415
+
416
+ if (disabled) {
417
+ return undefined;
418
+ }
419
+
420
+ return theme.dark
421
+ ? color(theme.colors?.background).lighten(0.24).rgb().string()
422
+ : color(theme.colors?.background).darken(0.06).rgb().string();
423
+ };
424
+
425
+ const getFlatUnderlineColor = ({
426
+ theme,
427
+ disabled,
428
+ underlineColor,
429
+ }: BaseProps & { underlineColor?: string }) => {
430
+ if (!disabled && underlineColor) {
431
+ return underlineColor;
432
+ }
433
+
434
+ if (theme.isV3) {
435
+ if (disabled) {
436
+ return theme.colors.onSurfaceDisabled;
437
+ }
438
+
439
+ return theme.colors.onSurfaceVariant;
440
+ }
441
+
442
+ if (disabled) {
443
+ return 'transparent';
444
+ }
445
+
446
+ return theme.colors.disabled;
447
+ };
448
+
449
+ const getOutlinedOutlineInputColor = ({
450
+ theme,
451
+ disabled,
452
+ customOutlineColor,
453
+ }: BaseProps & { customOutlineColor?: string }) => {
454
+ const isTransparent = color(customOutlineColor).alpha() === 0;
455
+
456
+ if (!disabled && customOutlineColor) {
457
+ return customOutlineColor;
458
+ }
459
+
460
+ if (theme.isV3) {
461
+ if (disabled) {
462
+ if (theme.dark) {
463
+ return 'transparent';
464
+ }
465
+ return theme.colors.surfaceDisabled;
466
+ }
467
+
468
+ return theme.colors.outline;
469
+ }
470
+
471
+ if (disabled) {
472
+ if (isTransparent) {
473
+ return customOutlineColor;
474
+ }
475
+ return theme.colors.disabled;
476
+ }
477
+ return theme.colors.placeholder;
478
+ };
479
+
480
+ export const getFlatInputColors = ({
481
+ underlineColor,
482
+ activeUnderlineColor,
483
+ customSelectionColor,
484
+ textColor,
485
+ disabled,
486
+ error,
487
+ theme,
488
+ }: {
489
+ underlineColor?: string;
490
+ activeUnderlineColor?: string;
491
+ customSelectionColor?: string;
492
+ textColor?: string;
493
+ disabled?: boolean;
494
+ error?: boolean;
495
+ theme: InternalTheme;
496
+ }) => {
497
+ const baseFlatColorProps = { theme, disabled };
498
+ const activeColor = getActiveColor({
499
+ ...baseFlatColorProps,
500
+ error,
501
+ activeUnderlineColor,
502
+ mode: 'flat',
503
+ });
504
+
505
+ return {
506
+ inputTextColor: getInputTextColor({
507
+ ...baseFlatColorProps,
508
+ textColor,
509
+ }),
510
+ activeColor,
511
+ underlineColorCustom: getFlatUnderlineColor({
512
+ ...baseFlatColorProps,
513
+ underlineColor,
514
+ }),
515
+ placeholderColor: getPlaceholderColor(baseFlatColorProps),
516
+ selectionColor: getSelectionColor({ activeColor, customSelectionColor }),
517
+ errorColor: theme.colors.error,
518
+ backgroundColor: getFlatBackgroundColor(baseFlatColorProps),
519
+ };
520
+ };
521
+
522
+ export const getOutlinedInputColors = ({
523
+ activeOutlineColor,
524
+ customOutlineColor,
525
+ customSelectionColor,
526
+ textColor,
527
+ disabled,
528
+ error,
529
+ theme,
530
+ }: {
531
+ activeOutlineColor?: string;
532
+ customOutlineColor?: string;
533
+ customSelectionColor?: string;
534
+ textColor?: string;
535
+ disabled?: boolean;
536
+ error?: boolean;
537
+ theme: InternalTheme;
538
+ }) => {
539
+ const baseOutlinedColorProps = { theme, disabled };
540
+ const activeColor = getActiveColor({
541
+ ...baseOutlinedColorProps,
542
+ error,
543
+ activeOutlineColor,
544
+ mode: 'outlined',
545
+ });
546
+
547
+ return {
548
+ inputTextColor: getInputTextColor({
549
+ ...baseOutlinedColorProps,
550
+ textColor,
551
+ }),
552
+ activeColor,
553
+ outlineColor: getOutlinedOutlineInputColor({
554
+ ...baseOutlinedColorProps,
555
+ customOutlineColor,
556
+ }),
557
+ placeholderColor: getPlaceholderColor(baseOutlinedColorProps),
558
+ selectionColor: getSelectionColor({ activeColor, customSelectionColor }),
559
+ errorColor: theme.colors.error,
560
+ };
561
+ };
562
+
563
+ export const getConstants = (isV3?: boolean) => {
564
+ // Text input affix
565
+ let AFFIX_OFFSET;
566
+ // Text input icon
567
+ let ICON_OFFSET;
568
+ //Text input flat
569
+ let LABEL_PADDING_TOP;
570
+ let LABEL_PADDING_HORIZONTAL;
571
+ let FLAT_INPUT_OFFSET;
572
+ let MIN_HEIGHT;
573
+ // Text input outlined;
574
+ let INPUT_PADDING_HORIZONTAL;
575
+ let ADORNMENT_OFFSET;
576
+ let OUTLINED_INPUT_OFFSET;
577
+
578
+ if (isV3) {
579
+ AFFIX_OFFSET = MD3_AFFIX_OFFSET;
580
+ ICON_OFFSET = MD3_ICON_OFFSET;
581
+ LABEL_PADDING_TOP = MD3_LABEL_PADDING_TOP;
582
+ LABEL_PADDING_HORIZONTAL = MD3_LABEL_PADDING_HORIZONTAL;
583
+ FLAT_INPUT_OFFSET = MD3_FLAT_INPUT_OFFSET;
584
+ MIN_HEIGHT = MD3_MIN_HEIGHT;
585
+ INPUT_PADDING_HORIZONTAL = MD3_INPUT_PADDING_HORIZONTAL;
586
+ ADORNMENT_OFFSET = MD3_ADORNMENT_OFFSET;
587
+ OUTLINED_INPUT_OFFSET = MD3_OUTLINED_INPUT_OFFSET;
588
+ } else {
589
+ AFFIX_OFFSET = MD2_AFFIX_OFFSET;
590
+ ICON_OFFSET = MD2_ICON_OFFSET;
591
+ LABEL_PADDING_TOP = MD2_LABEL_PADDING_TOP;
592
+ LABEL_PADDING_HORIZONTAL = MD2_LABEL_PADDING_HORIZONTAL;
593
+ FLAT_INPUT_OFFSET = MD2_FLAT_INPUT_OFFSET;
594
+ MIN_HEIGHT = MD2_MIN_HEIGHT;
595
+ INPUT_PADDING_HORIZONTAL = MD2_INPUT_PADDING_HORIZONTAL;
596
+ ADORNMENT_OFFSET = MD2_ADORNMENT_OFFSET;
597
+ OUTLINED_INPUT_OFFSET = MD2_OUTLINED_INPUT_OFFSET;
598
+ }
599
+
600
+ return {
601
+ AFFIX_OFFSET,
602
+ ICON_OFFSET,
603
+ LABEL_PADDING_TOP,
604
+ LABEL_PADDING_HORIZONTAL,
605
+ FLAT_INPUT_OFFSET,
606
+ MIN_HEIGHT,
607
+ INPUT_PADDING_HORIZONTAL,
608
+ ADORNMENT_OFFSET,
609
+ OUTLINED_INPUT_OFFSET,
610
+ MIN_WIDTH,
611
+ };
612
+ };