@admin-layout/gluestack-ui-mobile 11.0.4-alpha.0 → 11.2.1-alpha.1

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 (441) hide show
  1. package/CHANGELOG.md +2 -10
  2. package/lib/__tests__/prolayout-layout-feature.test.js +1 -1
  3. package/lib/__tests__/prolayout-layout-feature.test.js.map +1 -1
  4. package/lib/components/Fallback.js +12 -12
  5. package/lib/components/Fallback.js.map +1 -1
  6. package/lib/components/Layout/components/BasicLayout.js +2 -2
  7. package/lib/components/Layout/components/BasicLayout.js.map +1 -1
  8. package/lib/components/Layout/components/BottomTabBar.js +6 -6
  9. package/lib/components/Layout/components/BottomTabBar.js.map +1 -1
  10. package/lib/components/Layout/components/Drawer.js +17 -16
  11. package/lib/components/Layout/components/Drawer.js.map +1 -1
  12. package/lib/components/Layout/components/Header.js +15 -12
  13. package/lib/components/Layout/components/Header.js.map +1 -1
  14. package/lib/components/Layout/components/Sample.js +1 -1
  15. package/lib/components/Layout/components/Sample.js.map +1 -1
  16. package/lib/components/Layout/components/SettingDrawer/LayoutButton.js +9 -9
  17. package/lib/components/Layout/components/SettingDrawer/LayoutButton.js.map +1 -1
  18. package/lib/components/Layout/components/SettingDrawer/SettingDrawer.js +36 -37
  19. package/lib/components/Layout/components/SettingDrawer/SettingDrawer.js.map +1 -1
  20. package/lib/components/Layout/components/SettingDrawer/ThemeColorButton.js +2 -13
  21. package/lib/components/Layout/components/SettingDrawer/ThemeColorButton.js.map +1 -1
  22. package/lib/components/Layout/components/SideBar.js +10 -7
  23. package/lib/components/Layout/components/SideBar.js.map +1 -1
  24. package/lib/components/ToastAlert.d.ts +1 -1
  25. package/lib/components/ToastAlert.js +4 -4
  26. package/lib/components/ToastAlert.js.map +1 -1
  27. package/lib/components/UnAuthenticatedComponent.js +9 -9
  28. package/lib/components/UnAuthenticatedComponent.js.map +1 -1
  29. package/lib/components/WithConfiguration.d.ts +2 -2
  30. package/lib/components/WithConfiguration.js +2 -2
  31. package/lib/components/WithConfiguration.js.map +1 -1
  32. package/lib/components/WithPermission.js +1 -1
  33. package/lib/components/WithPermission.js.map +1 -1
  34. package/lib/components/WithPolicy.d.ts +2 -1
  35. package/lib/components/WithPolicy.js +2 -2
  36. package/lib/components/WithPolicy.js.map +1 -1
  37. package/lib/components/index.d.ts +0 -1
  38. package/lib/components/index.js +0 -1
  39. package/lib/components/index.js.map +1 -1
  40. package/lib/components/usePermissionAutoFetch.d.ts +7 -19
  41. package/lib/components/with-interactions-lifecycle-managed.js +11 -13
  42. package/lib/components/with-interactions-lifecycle-managed.js.map +1 -1
  43. package/lib/components/with-interactions-managed.js +3 -3
  44. package/lib/components/with-interactions-managed.js.map +1 -1
  45. package/lib/containers/layout/DrawerBottomNavigationConfig.d.ts +53 -47
  46. package/lib/containers/layout/DrawerConfig.d.ts +35 -31
  47. package/lib/containers/layout/ProLayout.js +2 -2
  48. package/lib/containers/layout/ProLayout.js.map +1 -1
  49. package/lib/containers/layout/module.js +1 -1
  50. package/lib/containers/layout/module.js.map +1 -1
  51. package/lib/index.d.ts +3 -0
  52. package/lib/index.js +5 -5
  53. package/lib/index.js.map +1 -1
  54. package/lib/redux/settings.d.ts +7 -9
  55. package/lib/utils/generateMobileNavigations.js +2 -26
  56. package/lib/utils/generateMobileNavigations.js.map +1 -1
  57. package/lib/utils/routeConfigKeyReplace.test.js +1 -1
  58. package/lib/utils/routeConfigKeyReplace.test.js.map +1 -1
  59. package/package.json +12 -37
  60. package/src/__tests__/prolayout-layout-feature.test.tsx +2 -2
  61. package/src/components/Fallback.tsx +58 -54
  62. package/src/components/Layout/components/BasicLayout.tsx +2 -2
  63. package/src/components/Layout/components/BottomTabBar.tsx +101 -92
  64. package/src/components/Layout/components/Drawer.tsx +28 -31
  65. package/src/components/Layout/components/Header.tsx +27 -26
  66. package/src/components/Layout/components/Sample.tsx +1 -1
  67. package/src/components/Layout/components/SettingDrawer/LayoutButton.tsx +29 -15
  68. package/src/components/Layout/components/SettingDrawer/SettingDrawer.tsx +57 -49
  69. package/src/components/Layout/components/SettingDrawer/ThemeColorButton.tsx +5 -14
  70. package/src/components/Layout/components/SideBar.tsx +17 -12
  71. package/src/components/ToastAlert.tsx +13 -13
  72. package/src/components/UnAuthenticatedComponent.tsx +27 -19
  73. package/src/components/WithConfiguration.tsx +4 -7
  74. package/src/components/WithPermission.tsx +1 -1
  75. package/src/components/WithPolicy.tsx +4 -3
  76. package/src/components/index.ts +0 -1
  77. package/src/components/with-interactions-lifecycle-managed.tsx +14 -13
  78. package/src/components/with-interactions-managed.tsx +7 -3
  79. package/src/containers/layout/ProLayout.tsx +3 -3
  80. package/src/containers/layout/module.ts +1 -1
  81. package/src/index.ts +7 -6
  82. package/src/utils/generateMobileNavigations.ts +1 -29
  83. package/src/utils/routeConfigKeyReplace.test.ts +4 -4
  84. package/tsconfig.json +10 -3
  85. package/lib/components/ui/IconSymbol.d.ts +0 -19
  86. package/lib/components/ui/IconSymbol.ios.d.ts +0 -10
  87. package/lib/components/ui/IconSymbol.ios.js +0 -12
  88. package/lib/components/ui/IconSymbol.ios.js.map +0 -1
  89. package/lib/components/ui/IconSymbol.js +0 -21
  90. package/lib/components/ui/IconSymbol.js.map +0 -1
  91. package/lib/components/ui/TabBarBackground.d.ts +0 -2
  92. package/lib/components/ui/TabBarBackground.ios.d.ts +0 -3
  93. package/lib/components/ui/TabBarBackground.ios.js +0 -20
  94. package/lib/components/ui/TabBarBackground.ios.js.map +0 -1
  95. package/lib/components/ui/TabBarBackground.js +0 -6
  96. package/lib/components/ui/TabBarBackground.js.map +0 -1
  97. package/lib/components/ui/accordion/index.d.ts +0 -193
  98. package/lib/components/ui/accordion/index.js +0 -177
  99. package/lib/components/ui/accordion/index.js.map +0 -1
  100. package/lib/components/ui/actionsheet/index.d.ts +0 -735
  101. package/lib/components/ui/actionsheet/index.js +0 -274
  102. package/lib/components/ui/actionsheet/index.js.map +0 -1
  103. package/lib/components/ui/alert/index.d.ts +0 -479
  104. package/lib/components/ui/alert/index.js +0 -153
  105. package/lib/components/ui/alert/index.js.map +0 -1
  106. package/lib/components/ui/alert-dialog/index.d.ts +0 -59
  107. package/lib/components/ui/alert-dialog/index.js +0 -137
  108. package/lib/components/ui/alert-dialog/index.js.map +0 -1
  109. package/lib/components/ui/avatar/index.d.ts +0 -144
  110. package/lib/components/ui/avatar/index.js +0 -99
  111. package/lib/components/ui/avatar/index.js.map +0 -1
  112. package/lib/components/ui/badge/index.d.ts +0 -386
  113. package/lib/components/ui/badge/index.js +0 -139
  114. package/lib/components/ui/badge/index.js.map +0 -1
  115. package/lib/components/ui/box/index.d.ts +0 -7
  116. package/lib/components/ui/box/index.js +0 -9
  117. package/lib/components/ui/box/index.js.map +0 -1
  118. package/lib/components/ui/box/index.web.d.ts +0 -6
  119. package/lib/components/ui/box/index.web.js +0 -8
  120. package/lib/components/ui/box/index.web.js.map +0 -1
  121. package/lib/components/ui/box/styles.d.ts +0 -1
  122. package/lib/components/ui/box/styles.js +0 -9
  123. package/lib/components/ui/box/styles.js.map +0 -1
  124. package/lib/components/ui/button/index.d.ts +0 -529
  125. package/lib/components/ui/button/index.js +0 -280
  126. package/lib/components/ui/button/index.js.map +0 -1
  127. package/lib/components/ui/card/index.d.ts +0 -129
  128. package/lib/components/ui/card/index.js +0 -9
  129. package/lib/components/ui/card/index.js.map +0 -1
  130. package/lib/components/ui/card/index.web.d.ts +0 -126
  131. package/lib/components/ui/card/index.web.js +0 -8
  132. package/lib/components/ui/card/index.web.js.map +0 -1
  133. package/lib/components/ui/card/styles.d.ts +0 -123
  134. package/lib/components/ui/card/styles.js +0 -20
  135. package/lib/components/ui/card/styles.js.map +0 -1
  136. package/lib/components/ui/center/index.d.ts +0 -5
  137. package/lib/components/ui/center/index.js +0 -9
  138. package/lib/components/ui/center/index.js.map +0 -1
  139. package/lib/components/ui/center/index.web.d.ts +0 -4
  140. package/lib/components/ui/center/index.web.js +0 -8
  141. package/lib/components/ui/center/index.web.js.map +0 -1
  142. package/lib/components/ui/center/styles.d.ts +0 -1
  143. package/lib/components/ui/center/styles.js +0 -7
  144. package/lib/components/ui/center/styles.js.map +0 -1
  145. package/lib/components/ui/checkbox/index.d.ts +0 -115
  146. package/lib/components/ui/checkbox/index.js +0 -127
  147. package/lib/components/ui/checkbox/index.js.map +0 -1
  148. package/lib/components/ui/divider/index.d.ts +0 -54
  149. package/lib/components/ui/divider/index.js +0 -22
  150. package/lib/components/ui/divider/index.js.map +0 -1
  151. package/lib/components/ui/drawer/index.d.ts +0 -207
  152. package/lib/components/ui/drawer/index.js +0 -198
  153. package/lib/components/ui/drawer/index.js.map +0 -1
  154. package/lib/components/ui/fab/index.d.ts +0 -520
  155. package/lib/components/ui/fab/index.js +0 -142
  156. package/lib/components/ui/fab/index.js.map +0 -1
  157. package/lib/components/ui/flat-list/index.d.ts +0 -1
  158. package/lib/components/ui/flat-list/index.js +0 -3
  159. package/lib/components/ui/flat-list/index.js.map +0 -1
  160. package/lib/components/ui/form-control/index.d.ts +0 -2072
  161. package/lib/components/ui/form-control/index.js +0 -290
  162. package/lib/components/ui/form-control/index.js.map +0 -1
  163. package/lib/components/ui/gluestack-ui-provider/config.d.ts +0 -4
  164. package/lib/components/ui/gluestack-ui-provider/config.js +0 -287
  165. package/lib/components/ui/gluestack-ui-provider/config.js.map +0 -1
  166. package/lib/components/ui/gluestack-ui-provider/index.d.ts +0 -8
  167. package/lib/components/ui/gluestack-ui-provider/index.js +0 -22
  168. package/lib/components/ui/gluestack-ui-provider/index.js.map +0 -1
  169. package/lib/components/ui/gluestack-ui-provider/index.web.d.ts +0 -7
  170. package/lib/components/ui/gluestack-ui-provider/index.web.js +0 -69
  171. package/lib/components/ui/gluestack-ui-provider/index.web.js.map +0 -1
  172. package/lib/components/ui/gluestack-ui-provider/script.d.ts +0 -1
  173. package/lib/components/ui/gluestack-ui-provider/script.js +0 -17
  174. package/lib/components/ui/gluestack-ui-provider/script.js.map +0 -1
  175. package/lib/components/ui/gluestack-ui-provider/types.d.ts +0 -1
  176. package/lib/components/ui/gluestack-ui-provider/types.js +0 -2
  177. package/lib/components/ui/gluestack-ui-provider/types.js.map +0 -1
  178. package/lib/components/ui/grid/index.d.ts +0 -27
  179. package/lib/components/ui/grid/index.js +0 -175
  180. package/lib/components/ui/grid/index.js.map +0 -1
  181. package/lib/components/ui/grid/index.web.d.ts +0 -23
  182. package/lib/components/ui/grid/index.web.js +0 -20
  183. package/lib/components/ui/grid/index.web.js.map +0 -1
  184. package/lib/components/ui/grid/styles.d.ts +0 -2
  185. package/lib/components/ui/grid/styles.js +0 -11
  186. package/lib/components/ui/grid/styles.js.map +0 -1
  187. package/lib/components/ui/heading/index.d.ts +0 -335
  188. package/lib/components/ui/heading/index.js +0 -135
  189. package/lib/components/ui/heading/index.js.map +0 -1
  190. package/lib/components/ui/heading/index.web.d.ts +0 -335
  191. package/lib/components/ui/heading/index.web.js +0 -113
  192. package/lib/components/ui/heading/index.web.js.map +0 -1
  193. package/lib/components/ui/heading/styles.d.ts +0 -330
  194. package/lib/components/ui/heading/styles.js +0 -43
  195. package/lib/components/ui/heading/styles.js.map +0 -1
  196. package/lib/components/ui/hstack/index.d.ts +0 -150
  197. package/lib/components/ui/hstack/index.js +0 -9
  198. package/lib/components/ui/hstack/index.js.map +0 -1
  199. package/lib/components/ui/hstack/index.web.d.ts +0 -148
  200. package/lib/components/ui/hstack/index.web.js +0 -8
  201. package/lib/components/ui/hstack/index.web.js.map +0 -1
  202. package/lib/components/ui/hstack/styles.d.ts +0 -145
  203. package/lib/components/ui/hstack/styles.js +0 -24
  204. package/lib/components/ui/hstack/styles.js.map +0 -1
  205. package/lib/components/ui/icon/index.d.ts +0 -364
  206. package/lib/components/ui/icon/index.js +0 -565
  207. package/lib/components/ui/icon/index.js.map +0 -1
  208. package/lib/components/ui/icon/index.web.d.ts +0 -489
  209. package/lib/components/ui/icon/index.web.js +0 -555
  210. package/lib/components/ui/icon/index.web.js.map +0 -1
  211. package/lib/components/ui/image/index.d.ts +0 -132
  212. package/lib/components/ui/image/index.js +0 -33
  213. package/lib/components/ui/image/index.js.map +0 -1
  214. package/lib/components/ui/image-background/index.d.ts +0 -3
  215. package/lib/components/ui/image-background/index.js +0 -11
  216. package/lib/components/ui/image-background/index.js.map +0 -1
  217. package/lib/components/ui/index.d.ts +0 -54
  218. package/lib/components/ui/index.js +0 -55
  219. package/lib/components/ui/index.js.map +0 -1
  220. package/lib/components/ui/input/index.d.ts +0 -262
  221. package/lib/components/ui/input/index.js +0 -121
  222. package/lib/components/ui/input/index.js.map +0 -1
  223. package/lib/components/ui/input-accessory-view/index.d.ts +0 -1
  224. package/lib/components/ui/input-accessory-view/index.js +0 -3
  225. package/lib/components/ui/input-accessory-view/index.js.map +0 -1
  226. package/lib/components/ui/keyboard-avoiding-view/index.d.ts +0 -1
  227. package/lib/components/ui/keyboard-avoiding-view/index.js +0 -3
  228. package/lib/components/ui/keyboard-avoiding-view/index.js.map +0 -1
  229. package/lib/components/ui/link/index.d.ts +0 -369
  230. package/lib/components/ui/link/index.js +0 -69
  231. package/lib/components/ui/link/index.js.map +0 -1
  232. package/lib/components/ui/menu/index.d.ts +0 -376
  233. package/lib/components/ui/menu/index.js +0 -120
  234. package/lib/components/ui/menu/index.js.map +0 -1
  235. package/lib/components/ui/modal/index.d.ts +0 -146
  236. package/lib/components/ui/modal/index.js +0 -137
  237. package/lib/components/ui/modal/index.js.map +0 -1
  238. package/lib/components/ui/popover/index.d.ts +0 -310
  239. package/lib/components/ui/popover/index.js +0 -172
  240. package/lib/components/ui/popover/index.js.map +0 -1
  241. package/lib/components/ui/portal/index.d.ts +0 -2
  242. package/lib/components/ui/portal/index.js +0 -9
  243. package/lib/components/ui/portal/index.js.map +0 -1
  244. package/lib/components/ui/pressable/index.d.ts +0 -13
  245. package/lib/components/ui/pressable/index.js +0 -20
  246. package/lib/components/ui/pressable/index.js.map +0 -1
  247. package/lib/components/ui/progress/index.d.ts +0 -174
  248. package/lib/components/ui/progress/index.js +0 -127
  249. package/lib/components/ui/progress/index.js.map +0 -1
  250. package/lib/components/ui/radio/index.d.ts +0 -160
  251. package/lib/components/ui/radio/index.js +0 -122
  252. package/lib/components/ui/radio/index.js.map +0 -1
  253. package/lib/components/ui/refresh-control/index.d.ts +0 -1
  254. package/lib/components/ui/refresh-control/index.js +0 -3
  255. package/lib/components/ui/refresh-control/index.js.map +0 -1
  256. package/lib/components/ui/safe-area-view/index.d.ts +0 -6
  257. package/lib/components/ui/safe-area-view/index.js +0 -9
  258. package/lib/components/ui/safe-area-view/index.js.map +0 -1
  259. package/lib/components/ui/safe-area-view/styles.d.ts +0 -1
  260. package/lib/components/ui/safe-area-view/styles.js +0 -9
  261. package/lib/components/ui/safe-area-view/styles.js.map +0 -1
  262. package/lib/components/ui/scroll-view/index.d.ts +0 -1
  263. package/lib/components/ui/scroll-view/index.js +0 -3
  264. package/lib/components/ui/scroll-view/index.js.map +0 -1
  265. package/lib/components/ui/section-list/index.d.ts +0 -1
  266. package/lib/components/ui/section-list/index.js +0 -3
  267. package/lib/components/ui/section-list/index.js.map +0 -1
  268. package/lib/components/ui/select/index.d.ts +0 -1708
  269. package/lib/components/ui/select/index.js +0 -155
  270. package/lib/components/ui/select/index.js.map +0 -1
  271. package/lib/components/ui/select/select-actionsheet.d.ts +0 -900
  272. package/lib/components/ui/select/select-actionsheet.js +0 -275
  273. package/lib/components/ui/select/select-actionsheet.js.map +0 -1
  274. package/lib/components/ui/skeleton/index.d.ts +0 -268
  275. package/lib/components/ui/skeleton/index.js +0 -63
  276. package/lib/components/ui/skeleton/index.js.map +0 -1
  277. package/lib/components/ui/skeleton/index.web.d.ts +0 -267
  278. package/lib/components/ui/skeleton/index.web.js +0 -37
  279. package/lib/components/ui/skeleton/index.web.js.map +0 -1
  280. package/lib/components/ui/skeleton/styles.d.ts +0 -257
  281. package/lib/components/ui/skeleton/styles.js +0 -35
  282. package/lib/components/ui/skeleton/styles.js.map +0 -1
  283. package/lib/components/ui/slider/index.d.ts +0 -211
  284. package/lib/components/ui/slider/index.js +0 -180
  285. package/lib/components/ui/slider/index.js.map +0 -1
  286. package/lib/components/ui/spinner/index.d.ts +0 -4
  287. package/lib/components/ui/spinner/index.js +0 -15
  288. package/lib/components/ui/spinner/index.js.map +0 -1
  289. package/lib/components/ui/status-bar/index.d.ts +0 -1
  290. package/lib/components/ui/status-bar/index.js +0 -3
  291. package/lib/components/ui/status-bar/index.js.map +0 -1
  292. package/lib/components/ui/switch/index.d.ts +0 -72
  293. package/lib/components/ui/switch/index.js +0 -25
  294. package/lib/components/ui/switch/index.js.map +0 -1
  295. package/lib/components/ui/table/index.d.ts +0 -17
  296. package/lib/components/ui/table/index.js +0 -96
  297. package/lib/components/ui/table/index.js.map +0 -1
  298. package/lib/components/ui/table/index.web.d.ts +0 -10
  299. package/lib/components/ui/table/index.web.js +0 -60
  300. package/lib/components/ui/table/index.web.js.map +0 -1
  301. package/lib/components/ui/table/styles.d.ts +0 -75
  302. package/lib/components/ui/table/styles.js +0 -36
  303. package/lib/components/ui/table/styles.js.map +0 -1
  304. package/lib/components/ui/text/index.d.ts +0 -358
  305. package/lib/components/ui/text/index.js +0 -19
  306. package/lib/components/ui/text/index.js.map +0 -1
  307. package/lib/components/ui/text/index.web.d.ts +0 -6
  308. package/lib/components/ui/text/index.web.js +0 -18
  309. package/lib/components/ui/text/index.web.js.map +0 -1
  310. package/lib/components/ui/text/styles.d.ts +0 -352
  311. package/lib/components/ui/text/styles.js +0 -45
  312. package/lib/components/ui/text/styles.js.map +0 -1
  313. package/lib/components/ui/textarea/index.d.ts +0 -129
  314. package/lib/components/ui/textarea/index.js +0 -52
  315. package/lib/components/ui/textarea/index.js.map +0 -1
  316. package/lib/components/ui/toast/index.d.ts +0 -527
  317. package/lib/components/ui/toast/index.js +0 -165
  318. package/lib/components/ui/toast/index.js.map +0 -1
  319. package/lib/components/ui/tooltip/index.d.ts +0 -391
  320. package/lib/components/ui/tooltip/index.js +0 -75
  321. package/lib/components/ui/tooltip/index.js.map +0 -1
  322. package/lib/components/ui/utils/use-break-point-value.d.ts +0 -14
  323. package/lib/components/ui/utils/use-break-point-value.js +0 -54
  324. package/lib/components/ui/utils/use-break-point-value.js.map +0 -1
  325. package/lib/components/ui/view/index.d.ts +0 -1
  326. package/lib/components/ui/view/index.js +0 -3
  327. package/lib/components/ui/view/index.js.map +0 -1
  328. package/lib/components/ui/virtualized-list/index.d.ts +0 -1
  329. package/lib/components/ui/virtualized-list/index.js +0 -3
  330. package/lib/components/ui/virtualized-list/index.js.map +0 -1
  331. package/lib/components/ui/vstack/index.d.ts +0 -149
  332. package/lib/components/ui/vstack/index.js +0 -9
  333. package/lib/components/ui/vstack/index.js.map +0 -1
  334. package/lib/components/ui/vstack/index.web.d.ts +0 -6
  335. package/lib/components/ui/vstack/index.web.js +0 -8
  336. package/lib/components/ui/vstack/index.web.js.map +0 -1
  337. package/lib/components/ui/vstack/styles.d.ts +0 -145
  338. package/lib/components/ui/vstack/styles.js +0 -24
  339. package/lib/components/ui/vstack/styles.js.map +0 -1
  340. package/lib/global.css +0 -3
  341. package/lib/gluestack-ui-base-config.d.ts +0 -8
  342. package/lib/gluestack-ui-base-config.js +0 -12
  343. package/lib/gluestack-ui-base-config.js.map +0 -1
  344. package/lib/nativewind-env.d.ts +0 -1
  345. package/lib/tailwind-base-config.d.ts +0 -194
  346. package/lib/tailwind-base-config.js +0 -197
  347. package/lib/tailwind-base-config.js.map +0 -1
  348. package/lib/tailwind.config.d.ts +0 -1
  349. package/lib/tailwind.config.js +0 -197
  350. package/lib/tailwind.config.js.map +0 -1
  351. package/src/components/ui/IconSymbol.ios.tsx +0 -33
  352. package/src/components/ui/IconSymbol.tsx +0 -40
  353. package/src/components/ui/TabBarBackground.ios.tsx +0 -23
  354. package/src/components/ui/TabBarBackground.tsx +0 -6
  355. package/src/components/ui/accordion/index.tsx +0 -304
  356. package/src/components/ui/actionsheet/index.tsx +0 -499
  357. package/src/components/ui/alert/index.tsx +0 -205
  358. package/src/components/ui/alert-dialog/index.tsx +0 -260
  359. package/src/components/ui/avatar/index.tsx +0 -162
  360. package/src/components/ui/badge/index.tsx +0 -188
  361. package/src/components/ui/box/index.tsx +0 -14
  362. package/src/components/ui/box/index.web.tsx +0 -13
  363. package/src/components/ui/box/styles.tsx +0 -10
  364. package/src/components/ui/button/index.tsx +0 -353
  365. package/src/components/ui/card/index.tsx +0 -16
  366. package/src/components/ui/card/index.web.tsx +0 -15
  367. package/src/components/ui/card/styles.tsx +0 -20
  368. package/src/components/ui/center/index.tsx +0 -14
  369. package/src/components/ui/center/index.web.tsx +0 -14
  370. package/src/components/ui/center/styles.tsx +0 -8
  371. package/src/components/ui/checkbox/index.tsx +0 -192
  372. package/src/components/ui/divider/index.tsx +0 -38
  373. package/src/components/ui/drawer/index.tsx +0 -311
  374. package/src/components/ui/fab/index.tsx +0 -190
  375. package/src/components/ui/flat-list/index.tsx +0 -2
  376. package/src/components/ui/form-control/index.tsx +0 -432
  377. package/src/components/ui/gluestack-ui-provider/config.ts +0 -309
  378. package/src/components/ui/gluestack-ui-provider/index.tsx +0 -38
  379. package/src/components/ui/gluestack-ui-provider/index.web.tsx +0 -88
  380. package/src/components/ui/gluestack-ui-provider/script.ts +0 -17
  381. package/src/components/ui/gluestack-ui-provider/types.ts +0 -1
  382. package/src/components/ui/grid/index.tsx +0 -284
  383. package/src/components/ui/grid/index.web.tsx +0 -61
  384. package/src/components/ui/grid/styles.tsx +0 -13
  385. package/src/components/ui/heading/index.tsx +0 -193
  386. package/src/components/ui/heading/index.web.tsx +0 -177
  387. package/src/components/ui/heading/styles.tsx +0 -43
  388. package/src/components/ui/hstack/index.tsx +0 -17
  389. package/src/components/ui/hstack/index.web.tsx +0 -15
  390. package/src/components/ui/hstack/styles.tsx +0 -25
  391. package/src/components/ui/icon/index.tsx +0 -1202
  392. package/src/components/ui/icon/index.web.tsx +0 -1190
  393. package/src/components/ui/image/index.tsx +0 -48
  394. package/src/components/ui/image-background/index.tsx +0 -21
  395. package/src/components/ui/index.ts +0 -54
  396. package/src/components/ui/input/index.tsx +0 -191
  397. package/src/components/ui/input-accessory-view/index.tsx +0 -2
  398. package/src/components/ui/keyboard-avoiding-view/index.tsx +0 -2
  399. package/src/components/ui/link/index.tsx +0 -92
  400. package/src/components/ui/menu/index.tsx +0 -179
  401. package/src/components/ui/modal/index.tsx +0 -244
  402. package/src/components/ui/popover/index.tsx +0 -309
  403. package/src/components/ui/portal/index.tsx +0 -12
  404. package/src/components/ui/pressable/index.tsx +0 -34
  405. package/src/components/ui/progress/index.tsx +0 -160
  406. package/src/components/ui/radio/index.tsx +0 -178
  407. package/src/components/ui/refresh-control/index.tsx +0 -2
  408. package/src/components/ui/safe-area-view/index.tsx +0 -22
  409. package/src/components/ui/safe-area-view/styles.tsx +0 -10
  410. package/src/components/ui/scroll-view/index.tsx +0 -2
  411. package/src/components/ui/section-list/index.tsx +0 -2
  412. package/src/components/ui/select/index.tsx +0 -251
  413. package/src/components/ui/select/select-actionsheet.tsx +0 -503
  414. package/src/components/ui/skeleton/index.tsx +0 -113
  415. package/src/components/ui/skeleton/index.web.tsx +0 -92
  416. package/src/components/ui/skeleton/styles.tsx +0 -35
  417. package/src/components/ui/slider/index.tsx +0 -239
  418. package/src/components/ui/spinner/index.tsx +0 -31
  419. package/src/components/ui/status-bar/index.tsx +0 -2
  420. package/src/components/ui/switch/index.tsx +0 -33
  421. package/src/components/ui/table/index.tsx +0 -171
  422. package/src/components/ui/table/index.web.tsx +0 -95
  423. package/src/components/ui/table/styles.tsx +0 -44
  424. package/src/components/ui/text/index.tsx +0 -53
  425. package/src/components/ui/text/index.web.tsx +0 -45
  426. package/src/components/ui/text/styles.tsx +0 -47
  427. package/src/components/ui/textarea/index.tsx +0 -83
  428. package/src/components/ui/toast/index.tsx +0 -218
  429. package/src/components/ui/tooltip/index.tsx +0 -104
  430. package/src/components/ui/utils/use-break-point-value.ts +0 -79
  431. package/src/components/ui/view/index.tsx +0 -2
  432. package/src/components/ui/virtualized-list/index.tsx +0 -2
  433. package/src/components/ui/vstack/index.tsx +0 -17
  434. package/src/components/ui/vstack/index.web.tsx +0 -16
  435. package/src/components/ui/vstack/styles.tsx +0 -25
  436. package/src/global.css +0 -3
  437. package/src/gluestack-ui-base-config.js +0 -12
  438. package/src/gluestack-ui.config.json +0 -10
  439. package/src/nativewind-env.d.ts +0 -1
  440. package/src/tailwind-base-config.js +0 -197
  441. package/src/tailwind.config.js +0 -198
@@ -1,1708 +0,0 @@
1
- import React from 'react';
2
- import type { VariantProps } from '@gluestack-ui/nativewind-utils';
3
- import { View } from 'react-native';
4
- declare const selectStyle: import("@gluestack-ui/nativewind-utils/types").TVReturnType<{} | {}, undefined, "", import("tailwind-variants/dist/config").TVConfig<unknown, unknown>, unknown, undefined, import("@gluestack-ui/nativewind-utils/types").TVReturnType<unknown, undefined, "", import("tailwind-variants/dist/config").TVConfig<unknown, unknown>, unknown, unknown, undefined>>;
5
- declare const selectTriggerStyle: import("@gluestack-ui/nativewind-utils/types").TVReturnType<{
6
- size: {
7
- xl: string;
8
- lg: string;
9
- md: string;
10
- sm: string;
11
- };
12
- variant: {
13
- underlined: string;
14
- outline: string;
15
- rounded: string;
16
- };
17
- } | ({
18
- size: {
19
- xl: string;
20
- lg: string;
21
- md: string;
22
- sm: string;
23
- };
24
- variant: {
25
- underlined: string;
26
- outline: string;
27
- rounded: string;
28
- };
29
- } & {
30
- size: {
31
- xl: import("tailwind-merge").ClassNameValue | {
32
- base?: import("tailwind-merge").ClassNameValue;
33
- };
34
- lg: import("tailwind-merge").ClassNameValue | {
35
- base?: import("tailwind-merge").ClassNameValue;
36
- };
37
- md: import("tailwind-merge").ClassNameValue | {
38
- base?: import("tailwind-merge").ClassNameValue;
39
- };
40
- sm: import("tailwind-merge").ClassNameValue | {
41
- base?: import("tailwind-merge").ClassNameValue;
42
- };
43
- };
44
- variant: {
45
- underlined: import("tailwind-merge").ClassNameValue | {
46
- base?: import("tailwind-merge").ClassNameValue;
47
- };
48
- outline: import("tailwind-merge").ClassNameValue | {
49
- base?: import("tailwind-merge").ClassNameValue;
50
- };
51
- rounded: import("tailwind-merge").ClassNameValue | {
52
- base?: import("tailwind-merge").ClassNameValue;
53
- };
54
- };
55
- }), undefined, "border border-background-300 rounded flex-row items-center justify-between overflow-hidden data-[hover=true]:border-outline-400 data-[focus=true]:border-primary-700 data-[disabled=true]:opacity-40 data-[disabled=true]:data-[hover=true]:border-background-300", import("tailwind-variants/dist/config").TVConfig<{
56
- size: {
57
- xl: string;
58
- lg: string;
59
- md: string;
60
- sm: string;
61
- };
62
- variant: {
63
- underlined: string;
64
- outline: string;
65
- rounded: string;
66
- };
67
- }, {
68
- size: {
69
- xl: string;
70
- lg: string;
71
- md: string;
72
- sm: string;
73
- };
74
- variant: {
75
- underlined: string;
76
- outline: string;
77
- rounded: string;
78
- };
79
- }>, {
80
- size: {
81
- xl: string;
82
- lg: string;
83
- md: string;
84
- sm: string;
85
- };
86
- variant: {
87
- underlined: string;
88
- outline: string;
89
- rounded: string;
90
- };
91
- }, undefined, import("@gluestack-ui/nativewind-utils/types").TVReturnType<{
92
- size: {
93
- xl: string;
94
- lg: string;
95
- md: string;
96
- sm: string;
97
- };
98
- variant: {
99
- underlined: string;
100
- outline: string;
101
- rounded: string;
102
- };
103
- }, undefined, "border border-background-300 rounded flex-row items-center justify-between overflow-hidden data-[hover=true]:border-outline-400 data-[focus=true]:border-primary-700 data-[disabled=true]:opacity-40 data-[disabled=true]:data-[hover=true]:border-background-300", import("tailwind-variants/dist/config").TVConfig<{
104
- size: {
105
- xl: string;
106
- lg: string;
107
- md: string;
108
- sm: string;
109
- };
110
- variant: {
111
- underlined: string;
112
- outline: string;
113
- rounded: string;
114
- };
115
- }, {
116
- size: {
117
- xl: string;
118
- lg: string;
119
- md: string;
120
- sm: string;
121
- };
122
- variant: {
123
- underlined: string;
124
- outline: string;
125
- rounded: string;
126
- };
127
- }>, unknown, unknown, undefined>>;
128
- declare const selectInputStyle: import("@gluestack-ui/nativewind-utils/types").TVReturnType<{
129
- size: {
130
- xl: string;
131
- lg: string;
132
- md: string;
133
- sm: string;
134
- };
135
- variant: {
136
- underlined: string;
137
- outline: string;
138
- rounded: string;
139
- };
140
- } | ({} & {
141
- size: {
142
- xl: string;
143
- lg: string;
144
- md: string;
145
- sm: string;
146
- };
147
- variant: {
148
- underlined: string;
149
- outline: string;
150
- rounded: string;
151
- };
152
- }), undefined, "py-auto px-3 placeholder:text-typography-500 web:w-full h-full text-typography-900 pointer-events-none web:outline-none ios:leading-[0px]", import("tailwind-variants/dist/config").TVConfig<unknown, unknown>, unknown, undefined, import("@gluestack-ui/nativewind-utils/types").TVReturnType<unknown, undefined, "py-auto px-3 placeholder:text-typography-500 web:w-full h-full text-typography-900 pointer-events-none web:outline-none ios:leading-[0px]", import("tailwind-variants/dist/config").TVConfig<unknown, unknown>, unknown, unknown, undefined>>;
153
- declare const UISelect: import("@gluestack-ui/select/lib/types").ISelectComponentType<import("react-native").ViewProps, Omit<Omit<import("react-native").PressableProps & React.RefAttributes<View>, "ref"> & React.RefAttributes<View>, "ref"> & {
154
- context?: any;
155
- } & React.RefAttributes<React.ForwardRefExoticComponent<Omit<import("react-native").PressableProps & React.RefAttributes<View>, "ref"> & React.RefAttributes<View>>>, import("react-native").TextInputProps, import("@gluestack-ui/icon/lib/createIcon").IIconProps & (((import("@gluestack-ui/icon").IPrimitiveIcon & React.RefAttributes<import("@gluestack-ui/icon").Svg>) | {
156
- fill?: import("react-native").ColorValue;
157
- stroke?: import("react-native").ColorValue;
158
- }) & React.RefAttributes<(import("@gluestack-ui/icon").IPrimitiveIcon & React.RefAttributes<import("@gluestack-ui/icon").Svg>) | {
159
- fill?: import("react-native").ColorValue;
160
- stroke?: import("react-native").ColorValue;
161
- }>), Omit<VariantProps<import("@gluestack-ui/nativewind-utils/types").TVReturnType<{} | {}, undefined, "w-full h-full web:pointer-events-none", import("tailwind-variants/dist/config").TVConfig<unknown, unknown>, unknown, undefined, import("@gluestack-ui/nativewind-utils/types").TVReturnType<unknown, undefined, "w-full h-full web:pointer-events-none", import("tailwind-variants/dist/config").TVConfig<unknown, unknown>, unknown, unknown, undefined>>> & React.RefAttributes<import("react-native").ViewProps> & import("react-native").ViewProps & import("@gluestack-ui/actionsheet/lib/types").InterfaceActionsheetProps & {
162
- className?: string;
163
- }, "ref"> & React.RefAttributes<import("react-native").ViewProps>, Omit<VariantProps<import("@gluestack-ui/nativewind-utils/types").TVReturnType<{} | {}, undefined, "absolute left-0 top-0 right-0 bottom-0 bg-background-dark web:cursor-default web:pointer-events-auto", import("tailwind-variants/dist/config").TVConfig<unknown, unknown>, unknown, undefined, import("@gluestack-ui/nativewind-utils/types").TVReturnType<unknown, undefined, "absolute left-0 top-0 right-0 bottom-0 bg-background-dark web:cursor-default web:pointer-events-auto", import("tailwind-variants/dist/config").TVConfig<unknown, unknown>, unknown, unknown, undefined>>> & React.RefAttributes<import("react-native").Animated.AnimatedProps<Omit<import("react-native").PressableProps & React.RefAttributes<View>, "ref"> & {
164
- ref?: React.Ref<View>;
165
- }> & import("@legendapp/motion").MotionComponentProps<React.ForwardRefExoticComponent<import("react-native").PressableProps & React.RefAttributes<View>>, import("react-native").ViewStyle | ((state: import("react-native").PressableStateCallbackType) => import("react-native").StyleProp<import("react-native").ViewStyle>), unknown, unknown, unknown>> & Omit<import("react-native").Animated.AnimatedProps<Omit<import("react-native").PressableProps & React.RefAttributes<View>, "ref"> & {
166
- ref?: React.Ref<View>;
167
- }> & import("@legendapp/motion").MotionComponentProps<React.ForwardRefExoticComponent<import("react-native").PressableProps & React.RefAttributes<View>>, import("react-native").ViewStyle | ((state: import("react-native").PressableStateCallbackType) => import("react-native").StyleProp<import("react-native").ViewStyle>), unknown, unknown, unknown>, "ref"> & {
168
- className?: string;
169
- }, "ref"> & React.RefAttributes<import("react-native").Animated.AnimatedProps<Omit<import("react-native").PressableProps & React.RefAttributes<View>, "ref"> & {
170
- ref?: React.Ref<View>;
171
- }> & import("@legendapp/motion").MotionComponentProps<React.ForwardRefExoticComponent<import("react-native").PressableProps & React.RefAttributes<View>>, import("react-native").ViewStyle | ((state: import("react-native").PressableStateCallbackType) => import("react-native").StyleProp<import("react-native").ViewStyle>), unknown, unknown, unknown>>, Omit<VariantProps<import("@gluestack-ui/nativewind-utils/types").TVReturnType<{} | {}, undefined, "items-center rounded-tl-3xl rounded-tr-3xl p-2 bg-background-0 web:pointer-events-auto web:select-none shadow-lg", import("tailwind-variants/dist/config").TVConfig<unknown, unknown>, unknown, undefined, import("@gluestack-ui/nativewind-utils/types").TVReturnType<unknown, undefined, "items-center rounded-tl-3xl rounded-tr-3xl p-2 bg-background-0 web:pointer-events-auto web:select-none shadow-lg", import("tailwind-variants/dist/config").TVConfig<unknown, unknown>, unknown, unknown, undefined>>> & Omit<Omit<import("react-native").Animated.AnimatedProps<import("react-native").ViewProps & React.RefAttributes<View>> & import("@legendapp/motion").MotionComponentProps<typeof View, import("react-native").ViewStyle, unknown, unknown, unknown>, "ref"> & {
172
- context?: any;
173
- } & React.RefAttributes<(<TAnimate, TAnimateProps>(p: import("react-native").Animated.AnimatedProps<import("react-native").ViewProps & import("react").RefAttributes<import("react-native").View>> & import("@legendapp/motion").MotionComponentProps<typeof import("react-native").View, import("react-native").ViewStyle, TAnimate, TAnimateProps, unknown>, ref: import("react").Ref<import("react-native").View>) => import("react").ReactElement)> & import("@gluestack-ui/actionsheet/lib/types").InterfaceActionsheetContentProps, "ref"> & React.RefAttributes<Omit<import("react-native").Animated.AnimatedProps<import("react-native").ViewProps & React.RefAttributes<View>> & import("@legendapp/motion").MotionComponentProps<typeof View, import("react-native").ViewStyle, unknown, unknown, unknown>, "ref"> & {
174
- context?: any;
175
- } & React.RefAttributes<(<TAnimate, TAnimateProps>(p: import("react-native").Animated.AnimatedProps<import("react-native").ViewProps & import("react").RefAttributes<import("react-native").View>> & import("@legendapp/motion").MotionComponentProps<typeof import("react-native").View, import("react-native").ViewStyle, TAnimate, TAnimateProps, unknown>, ref: import("react").Ref<import("react-native").View>) => import("react").ReactElement)>> & {
176
- className?: string;
177
- } & {
178
- className?: string;
179
- }, "ref"> & React.RefAttributes<Omit<import("react-native").Animated.AnimatedProps<import("react-native").ViewProps & React.RefAttributes<View>> & import("@legendapp/motion").MotionComponentProps<typeof View, import("react-native").ViewStyle, unknown, unknown, unknown>, "ref"> & {
180
- context?: any;
181
- } & React.RefAttributes<(<TAnimate, TAnimateProps>(p: import("react-native").Animated.AnimatedProps<import("react-native").ViewProps & import("react").RefAttributes<import("react-native").View>> & import("@legendapp/motion").MotionComponentProps<typeof import("react-native").View, import("react-native").ViewStyle, TAnimate, TAnimateProps, unknown>, ref: import("react").Ref<import("react-native").View>) => import("react").ReactElement)>>, Omit<VariantProps<import("@gluestack-ui/nativewind-utils/types").TVReturnType<{} | {}, undefined, "w-16 h-1 bg-background-400 rounded-full", import("tailwind-variants/dist/config").TVConfig<unknown, unknown>, unknown, undefined, import("@gluestack-ui/nativewind-utils/types").TVReturnType<unknown, undefined, "w-16 h-1 bg-background-400 rounded-full", import("tailwind-variants/dist/config").TVConfig<unknown, unknown>, unknown, unknown, undefined>>> & React.RefAttributes<import("react-native").ViewProps> & import("react-native").ViewProps & {
182
- className?: string;
183
- }, "ref"> & React.RefAttributes<import("react-native").ViewProps>, Omit<VariantProps<import("@gluestack-ui/nativewind-utils/types").TVReturnType<{} | {}, undefined, "w-full py-1 items-center", import("tailwind-variants/dist/config").TVConfig<unknown, unknown>, unknown, undefined, import("@gluestack-ui/nativewind-utils/types").TVReturnType<unknown, undefined, "w-full py-1 items-center", import("tailwind-variants/dist/config").TVConfig<unknown, unknown>, unknown, unknown, undefined>>> & React.RefAttributes<import("react-native").ViewProps> & import("react-native").ViewProps & {
184
- className?: string;
185
- }, "ref"> & React.RefAttributes<import("react-native").ViewProps>, Omit<VariantProps<import("@gluestack-ui/nativewind-utils/types").TVReturnType<{} | {}, undefined, "w-full flex-row items-center p-3 rounded-sm data-[disabled=true]:opacity-40 data-[disabled=true]:web:pointer-events-auto data-[disabled=true]:web:cursor-not-allowed hover:bg-background-50 active:bg-background-100 data-[focus=true]:bg-background-100 web:data-[focus-visible=true]:bg-background-100 data-[checked=true]:bg-background-100", import("tailwind-variants/dist/config").TVConfig<unknown, unknown>, unknown, undefined, import("@gluestack-ui/nativewind-utils/types").TVReturnType<unknown, undefined, "w-full flex-row items-center p-3 rounded-sm data-[disabled=true]:opacity-40 data-[disabled=true]:web:pointer-events-auto data-[disabled=true]:web:cursor-not-allowed hover:bg-background-50 active:bg-background-100 data-[focus=true]:bg-background-100 web:data-[focus-visible=true]:bg-background-100 data-[checked=true]:bg-background-100", import("tailwind-variants/dist/config").TVConfig<unknown, unknown>, unknown, unknown, undefined>>> & Omit<Omit<import("react-native").PressableProps & React.RefAttributes<View>, "ref"> & {
186
- context?: any;
187
- } & React.RefAttributes<React.ForwardRefExoticComponent<import("react-native").PressableProps & React.RefAttributes<View>>> & import("@gluestack-ui/actionsheet/lib/types").InterfaceActionsheetItemProps, "ref"> & React.RefAttributes<Omit<import("react-native").PressableProps & React.RefAttributes<View>, "ref"> & {
188
- context?: any;
189
- } & React.RefAttributes<React.ForwardRefExoticComponent<import("react-native").PressableProps & React.RefAttributes<View>>>> & {
190
- className?: string;
191
- }, "ref"> & React.RefAttributes<Omit<import("react-native").PressableProps & React.RefAttributes<View>, "ref"> & {
192
- context?: any;
193
- } & React.RefAttributes<React.ForwardRefExoticComponent<import("react-native").PressableProps & React.RefAttributes<View>>>>, Omit<VariantProps<import("@gluestack-ui/nativewind-utils/types").TVReturnType<{
194
- isTruncated: {
195
- true: string;
196
- };
197
- bold: {
198
- true: string;
199
- };
200
- underline: {
201
- true: string;
202
- };
203
- strikeThrough: {
204
- true: string;
205
- };
206
- size: {
207
- '2xs': string;
208
- xs: string;
209
- sm: string;
210
- md: string;
211
- lg: string;
212
- xl: string;
213
- '2xl': string;
214
- '3xl': string;
215
- '4xl': string;
216
- '5xl': string;
217
- '6xl': string;
218
- };
219
- } | ({
220
- isTruncated: {
221
- true: string;
222
- };
223
- bold: {
224
- true: string;
225
- };
226
- underline: {
227
- true: string;
228
- };
229
- strikeThrough: {
230
- true: string;
231
- };
232
- size: {
233
- '2xs': string;
234
- xs: string;
235
- sm: string;
236
- md: string;
237
- lg: string;
238
- xl: string;
239
- '2xl': string;
240
- '3xl': string;
241
- '4xl': string;
242
- '5xl': string;
243
- '6xl': string;
244
- };
245
- } & {
246
- isTruncated: {
247
- true: import("tailwind-merge").ClassNameValue | {
248
- base?: import("tailwind-merge").ClassNameValue;
249
- };
250
- };
251
- bold: {
252
- true: import("tailwind-merge").ClassNameValue | {
253
- base?: import("tailwind-merge").ClassNameValue;
254
- };
255
- };
256
- underline: {
257
- true: import("tailwind-merge").ClassNameValue | {
258
- base?: import("tailwind-merge").ClassNameValue;
259
- };
260
- };
261
- strikeThrough: {
262
- true: import("tailwind-merge").ClassNameValue | {
263
- base?: import("tailwind-merge").ClassNameValue;
264
- };
265
- };
266
- size: {
267
- '2xs': import("tailwind-merge").ClassNameValue | {
268
- base?: import("tailwind-merge").ClassNameValue;
269
- };
270
- xs: import("tailwind-merge").ClassNameValue | {
271
- base?: import("tailwind-merge").ClassNameValue;
272
- };
273
- sm: import("tailwind-merge").ClassNameValue | {
274
- base?: import("tailwind-merge").ClassNameValue;
275
- };
276
- md: import("tailwind-merge").ClassNameValue | {
277
- base?: import("tailwind-merge").ClassNameValue;
278
- };
279
- lg: import("tailwind-merge").ClassNameValue | {
280
- base?: import("tailwind-merge").ClassNameValue;
281
- };
282
- xl: import("tailwind-merge").ClassNameValue | {
283
- base?: import("tailwind-merge").ClassNameValue;
284
- };
285
- '2xl': import("tailwind-merge").ClassNameValue | {
286
- base?: import("tailwind-merge").ClassNameValue;
287
- };
288
- '3xl': import("tailwind-merge").ClassNameValue | {
289
- base?: import("tailwind-merge").ClassNameValue;
290
- };
291
- '4xl': import("tailwind-merge").ClassNameValue | {
292
- base?: import("tailwind-merge").ClassNameValue;
293
- };
294
- '5xl': import("tailwind-merge").ClassNameValue | {
295
- base?: import("tailwind-merge").ClassNameValue;
296
- };
297
- '6xl': import("tailwind-merge").ClassNameValue | {
298
- base?: import("tailwind-merge").ClassNameValue;
299
- };
300
- };
301
- }), undefined, "text-typography-700 font-normal font-body tracking-md text-left mx-2", import("tailwind-variants/dist/config").TVConfig<{
302
- isTruncated: {
303
- true: string;
304
- };
305
- bold: {
306
- true: string;
307
- };
308
- underline: {
309
- true: string;
310
- };
311
- strikeThrough: {
312
- true: string;
313
- };
314
- size: {
315
- '2xs': string;
316
- xs: string;
317
- sm: string;
318
- md: string;
319
- lg: string;
320
- xl: string;
321
- '2xl': string;
322
- '3xl': string;
323
- '4xl': string;
324
- '5xl': string;
325
- '6xl': string;
326
- };
327
- }, {
328
- isTruncated: {
329
- true: string;
330
- };
331
- bold: {
332
- true: string;
333
- };
334
- underline: {
335
- true: string;
336
- };
337
- strikeThrough: {
338
- true: string;
339
- };
340
- size: {
341
- '2xs': string;
342
- xs: string;
343
- sm: string;
344
- md: string;
345
- lg: string;
346
- xl: string;
347
- '2xl': string;
348
- '3xl': string;
349
- '4xl': string;
350
- '5xl': string;
351
- '6xl': string;
352
- };
353
- }>, {
354
- isTruncated: {
355
- true: string;
356
- };
357
- bold: {
358
- true: string;
359
- };
360
- underline: {
361
- true: string;
362
- };
363
- strikeThrough: {
364
- true: string;
365
- };
366
- size: {
367
- '2xs': string;
368
- xs: string;
369
- sm: string;
370
- md: string;
371
- lg: string;
372
- xl: string;
373
- '2xl': string;
374
- '3xl': string;
375
- '4xl': string;
376
- '5xl': string;
377
- '6xl': string;
378
- };
379
- }, undefined, import("@gluestack-ui/nativewind-utils/types").TVReturnType<{
380
- isTruncated: {
381
- true: string;
382
- };
383
- bold: {
384
- true: string;
385
- };
386
- underline: {
387
- true: string;
388
- };
389
- strikeThrough: {
390
- true: string;
391
- };
392
- size: {
393
- '2xs': string;
394
- xs: string;
395
- sm: string;
396
- md: string;
397
- lg: string;
398
- xl: string;
399
- '2xl': string;
400
- '3xl': string;
401
- '4xl': string;
402
- '5xl': string;
403
- '6xl': string;
404
- };
405
- }, undefined, "text-typography-700 font-normal font-body tracking-md text-left mx-2", import("tailwind-variants/dist/config").TVConfig<{
406
- isTruncated: {
407
- true: string;
408
- };
409
- bold: {
410
- true: string;
411
- };
412
- underline: {
413
- true: string;
414
- };
415
- strikeThrough: {
416
- true: string;
417
- };
418
- size: {
419
- '2xs': string;
420
- xs: string;
421
- sm: string;
422
- md: string;
423
- lg: string;
424
- xl: string;
425
- '2xl': string;
426
- '3xl': string;
427
- '4xl': string;
428
- '5xl': string;
429
- '6xl': string;
430
- };
431
- }, {
432
- isTruncated: {
433
- true: string;
434
- };
435
- bold: {
436
- true: string;
437
- };
438
- underline: {
439
- true: string;
440
- };
441
- strikeThrough: {
442
- true: string;
443
- };
444
- size: {
445
- '2xs': string;
446
- xs: string;
447
- sm: string;
448
- md: string;
449
- lg: string;
450
- xl: string;
451
- '2xl': string;
452
- '3xl': string;
453
- '4xl': string;
454
- '5xl': string;
455
- '6xl': string;
456
- };
457
- }>, unknown, unknown, undefined>>> & React.RefAttributes<import("react-native").TextProps> & import("react-native").TextProps & {
458
- className?: string;
459
- }, "ref"> & React.RefAttributes<import("react-native").TextProps>, Omit<VariantProps<import("@gluestack-ui/nativewind-utils/types").TVReturnType<{} | {}, undefined, "w-full h-auto", import("tailwind-variants/dist/config").TVConfig<unknown, unknown>, unknown, undefined, import("@gluestack-ui/nativewind-utils/types").TVReturnType<unknown, undefined, "w-full h-auto", import("tailwind-variants/dist/config").TVConfig<unknown, unknown>, unknown, unknown, undefined>>> & React.RefAttributes<import("react-native").ScrollViewProps> & import("react-native").ScrollViewProps & {
460
- className?: string;
461
- }, "ref"> & React.RefAttributes<import("react-native").ScrollViewProps>, Omit<VariantProps<import("@gluestack-ui/nativewind-utils/types").TVReturnType<{} | {}, undefined, "w-full h-auto", import("tailwind-variants/dist/config").TVConfig<unknown, unknown>, unknown, undefined, import("@gluestack-ui/nativewind-utils/types").TVReturnType<unknown, undefined, "w-full h-auto", import("tailwind-variants/dist/config").TVConfig<unknown, unknown>, unknown, unknown, undefined>>> & React.RefAttributes<import("react-native").VirtualizedListProps<unknown>> & import("react-native").VirtualizedListProps<unknown> & {
462
- className?: string;
463
- }, "ref"> & React.RefAttributes<import("react-native").VirtualizedListProps<unknown>>, Omit<VariantProps<import("@gluestack-ui/nativewind-utils/types").TVReturnType<{} | {}, undefined, "w-full h-auto", import("tailwind-variants/dist/config").TVConfig<unknown, unknown>, unknown, undefined, import("@gluestack-ui/nativewind-utils/types").TVReturnType<unknown, undefined, "w-full h-auto", import("tailwind-variants/dist/config").TVConfig<unknown, unknown>, unknown, unknown, undefined>>> & React.RefAttributes<import("react-native").FlatListProps<unknown>> & import("react-native").FlatListProps<unknown> & {
464
- className?: string;
465
- }, "ref"> & React.RefAttributes<import("react-native").FlatListProps<unknown>>, Omit<VariantProps<import("@gluestack-ui/nativewind-utils/types").TVReturnType<{} | {}, undefined, "w-full h-auto", import("tailwind-variants/dist/config").TVConfig<unknown, unknown>, unknown, undefined, import("@gluestack-ui/nativewind-utils/types").TVReturnType<unknown, undefined, "w-full h-auto", import("tailwind-variants/dist/config").TVConfig<unknown, unknown>, unknown, unknown, undefined>>> & React.RefAttributes<import("react-native").SectionListProps<unknown, unknown>> & import("react-native").SectionListProps<unknown, unknown> & {
466
- className?: string;
467
- }, "ref"> & React.RefAttributes<import("react-native").SectionListProps<unknown, unknown>>, Omit<VariantProps<import("@gluestack-ui/nativewind-utils/types").TVReturnType<{
468
- isTruncated: {
469
- true: string;
470
- };
471
- bold: {
472
- true: string;
473
- };
474
- underline: {
475
- true: string;
476
- };
477
- strikeThrough: {
478
- true: string;
479
- };
480
- size: {
481
- '5xl': string;
482
- '4xl': string;
483
- '3xl': string;
484
- '2xl': string;
485
- xl: string;
486
- lg: string;
487
- md: string;
488
- sm: string;
489
- xs: string;
490
- };
491
- sub: {
492
- true: string;
493
- };
494
- italic: {
495
- true: string;
496
- };
497
- highlight: {
498
- true: string;
499
- };
500
- } | ({
501
- isTruncated: {
502
- true: string;
503
- };
504
- bold: {
505
- true: string;
506
- };
507
- underline: {
508
- true: string;
509
- };
510
- strikeThrough: {
511
- true: string;
512
- };
513
- size: {
514
- '5xl': string;
515
- '4xl': string;
516
- '3xl': string;
517
- '2xl': string;
518
- xl: string;
519
- lg: string;
520
- md: string;
521
- sm: string;
522
- xs: string;
523
- };
524
- sub: {
525
- true: string;
526
- };
527
- italic: {
528
- true: string;
529
- };
530
- highlight: {
531
- true: string;
532
- };
533
- } & {
534
- isTruncated: {
535
- true: import("tailwind-merge").ClassNameValue | {
536
- base?: import("tailwind-merge").ClassNameValue;
537
- };
538
- };
539
- bold: {
540
- true: import("tailwind-merge").ClassNameValue | {
541
- base?: import("tailwind-merge").ClassNameValue;
542
- };
543
- };
544
- underline: {
545
- true: import("tailwind-merge").ClassNameValue | {
546
- base?: import("tailwind-merge").ClassNameValue;
547
- };
548
- };
549
- strikeThrough: {
550
- true: import("tailwind-merge").ClassNameValue | {
551
- base?: import("tailwind-merge").ClassNameValue;
552
- };
553
- };
554
- size: {
555
- '5xl': import("tailwind-merge").ClassNameValue | {
556
- base?: import("tailwind-merge").ClassNameValue;
557
- };
558
- '4xl': import("tailwind-merge").ClassNameValue | {
559
- base?: import("tailwind-merge").ClassNameValue;
560
- };
561
- '3xl': import("tailwind-merge").ClassNameValue | {
562
- base?: import("tailwind-merge").ClassNameValue;
563
- };
564
- '2xl': import("tailwind-merge").ClassNameValue | {
565
- base?: import("tailwind-merge").ClassNameValue;
566
- };
567
- xl: import("tailwind-merge").ClassNameValue | {
568
- base?: import("tailwind-merge").ClassNameValue;
569
- };
570
- lg: import("tailwind-merge").ClassNameValue | {
571
- base?: import("tailwind-merge").ClassNameValue;
572
- };
573
- md: import("tailwind-merge").ClassNameValue | {
574
- base?: import("tailwind-merge").ClassNameValue;
575
- };
576
- sm: import("tailwind-merge").ClassNameValue | {
577
- base?: import("tailwind-merge").ClassNameValue;
578
- };
579
- xs: import("tailwind-merge").ClassNameValue | {
580
- base?: import("tailwind-merge").ClassNameValue;
581
- };
582
- };
583
- sub: {
584
- true: import("tailwind-merge").ClassNameValue | {
585
- base?: import("tailwind-merge").ClassNameValue;
586
- };
587
- };
588
- italic: {
589
- true: import("tailwind-merge").ClassNameValue | {
590
- base?: import("tailwind-merge").ClassNameValue;
591
- };
592
- };
593
- highlight: {
594
- true: import("tailwind-merge").ClassNameValue | {
595
- base?: import("tailwind-merge").ClassNameValue;
596
- };
597
- };
598
- }), undefined, "leading-5 font-bold font-heading my-0 text-typography-500 p-3 uppercase", import("tailwind-variants/dist/config").TVConfig<{
599
- isTruncated: {
600
- true: string;
601
- };
602
- bold: {
603
- true: string;
604
- };
605
- underline: {
606
- true: string;
607
- };
608
- strikeThrough: {
609
- true: string;
610
- };
611
- size: {
612
- '5xl': string;
613
- '4xl': string;
614
- '3xl': string;
615
- '2xl': string;
616
- xl: string;
617
- lg: string;
618
- md: string;
619
- sm: string;
620
- xs: string;
621
- };
622
- sub: {
623
- true: string;
624
- };
625
- italic: {
626
- true: string;
627
- };
628
- highlight: {
629
- true: string;
630
- };
631
- }, {
632
- isTruncated: {
633
- true: string;
634
- };
635
- bold: {
636
- true: string;
637
- };
638
- underline: {
639
- true: string;
640
- };
641
- strikeThrough: {
642
- true: string;
643
- };
644
- size: {
645
- '5xl': string;
646
- '4xl': string;
647
- '3xl': string;
648
- '2xl': string;
649
- xl: string;
650
- lg: string;
651
- md: string;
652
- sm: string;
653
- xs: string;
654
- };
655
- sub: {
656
- true: string;
657
- };
658
- italic: {
659
- true: string;
660
- };
661
- highlight: {
662
- true: string;
663
- };
664
- }>, {
665
- isTruncated: {
666
- true: string;
667
- };
668
- bold: {
669
- true: string;
670
- };
671
- underline: {
672
- true: string;
673
- };
674
- strikeThrough: {
675
- true: string;
676
- };
677
- size: {
678
- '5xl': string;
679
- '4xl': string;
680
- '3xl': string;
681
- '2xl': string;
682
- xl: string;
683
- lg: string;
684
- md: string;
685
- sm: string;
686
- xs: string;
687
- };
688
- sub: {
689
- true: string;
690
- };
691
- italic: {
692
- true: string;
693
- };
694
- highlight: {
695
- true: string;
696
- };
697
- }, undefined, import("@gluestack-ui/nativewind-utils/types").TVReturnType<{
698
- isTruncated: {
699
- true: string;
700
- };
701
- bold: {
702
- true: string;
703
- };
704
- underline: {
705
- true: string;
706
- };
707
- strikeThrough: {
708
- true: string;
709
- };
710
- size: {
711
- '5xl': string;
712
- '4xl': string;
713
- '3xl': string;
714
- '2xl': string;
715
- xl: string;
716
- lg: string;
717
- md: string;
718
- sm: string;
719
- xs: string;
720
- };
721
- sub: {
722
- true: string;
723
- };
724
- italic: {
725
- true: string;
726
- };
727
- highlight: {
728
- true: string;
729
- };
730
- }, undefined, "leading-5 font-bold font-heading my-0 text-typography-500 p-3 uppercase", import("tailwind-variants/dist/config").TVConfig<{
731
- isTruncated: {
732
- true: string;
733
- };
734
- bold: {
735
- true: string;
736
- };
737
- underline: {
738
- true: string;
739
- };
740
- strikeThrough: {
741
- true: string;
742
- };
743
- size: {
744
- '5xl': string;
745
- '4xl': string;
746
- '3xl': string;
747
- '2xl': string;
748
- xl: string;
749
- lg: string;
750
- md: string;
751
- sm: string;
752
- xs: string;
753
- };
754
- sub: {
755
- true: string;
756
- };
757
- italic: {
758
- true: string;
759
- };
760
- highlight: {
761
- true: string;
762
- };
763
- }, {
764
- isTruncated: {
765
- true: string;
766
- };
767
- bold: {
768
- true: string;
769
- };
770
- underline: {
771
- true: string;
772
- };
773
- strikeThrough: {
774
- true: string;
775
- };
776
- size: {
777
- '5xl': string;
778
- '4xl': string;
779
- '3xl': string;
780
- '2xl': string;
781
- xl: string;
782
- lg: string;
783
- md: string;
784
- sm: string;
785
- xs: string;
786
- };
787
- sub: {
788
- true: string;
789
- };
790
- italic: {
791
- true: string;
792
- };
793
- highlight: {
794
- true: string;
795
- };
796
- }>, unknown, unknown, undefined>>> & React.RefAttributes<import("@expo/html-elements/build/primitives/Text").TextProps> & Omit<import("@expo/html-elements/build/primitives/Text").TextProps, "ref"> & {
797
- className?: string;
798
- }, "ref"> & React.RefAttributes<import("@expo/html-elements/build/primitives/Text").TextProps>>;
799
- type ISelectProps = VariantProps<typeof selectStyle> & React.ComponentProps<typeof UISelect> & {
800
- className?: string;
801
- };
802
- declare const Select: React.ForwardRefExoticComponent<Omit<ISelectProps, "ref"> & React.RefAttributes<import("react-native").ViewProps>>;
803
- type ISelectTriggerProps = VariantProps<typeof selectTriggerStyle> & React.ComponentProps<typeof UISelect.Trigger> & {
804
- className?: string;
805
- };
806
- declare const SelectTrigger: React.ForwardRefExoticComponent<Omit<ISelectTriggerProps, "ref"> & React.RefAttributes<Omit<Omit<import("react-native").PressableProps & React.RefAttributes<View>, "ref"> & React.RefAttributes<View>, "ref"> & {
807
- context?: any;
808
- } & React.RefAttributes<React.ForwardRefExoticComponent<Omit<import("react-native").PressableProps & React.RefAttributes<View>, "ref"> & React.RefAttributes<View>>>>>;
809
- type ISelectInputProps = VariantProps<typeof selectInputStyle> & React.ComponentProps<typeof UISelect.Input> & {
810
- className?: string;
811
- };
812
- declare const SelectInput: React.ForwardRefExoticComponent<Omit<ISelectInputProps, "ref"> & React.RefAttributes<import("react-native").TextInputProps>>;
813
- declare const SelectIcon: React.ForwardRefExoticComponent<(Omit<VariantProps<import("@gluestack-ui/nativewind-utils/types").TVReturnType<{
814
- size: {
815
- '2xs': string;
816
- xs: string;
817
- sm: string;
818
- md: string;
819
- lg: string;
820
- xl: string;
821
- };
822
- } | ({} & {
823
- size: {
824
- '2xs': string;
825
- xs: string;
826
- sm: string;
827
- md: string;
828
- lg: string;
829
- xl: string;
830
- };
831
- }), undefined, "text-background-500 fill-none", import("tailwind-variants/dist/config").TVConfig<unknown, unknown>, unknown, undefined, import("@gluestack-ui/nativewind-utils/types").TVReturnType<unknown, undefined, "text-background-500 fill-none", import("tailwind-variants/dist/config").TVConfig<unknown, unknown>, unknown, unknown, undefined>>> & Omit<import("@gluestack-ui/icon/lib/createIcon").IIconProps & import("@gluestack-ui/icon").IPrimitiveIcon & React.RefAttributes<import("@gluestack-ui/icon").Svg> & React.RefAttributes<(import("@gluestack-ui/icon").IPrimitiveIcon & React.RefAttributes<import("@gluestack-ui/icon").Svg>) | {
832
- fill?: import("react-native").ColorValue;
833
- stroke?: import("react-native").ColorValue;
834
- }>, "ref"> & React.RefAttributes<import("@gluestack-ui/icon/lib/createIcon").IIconProps & (((import("@gluestack-ui/icon").IPrimitiveIcon & React.RefAttributes<import("@gluestack-ui/icon").Svg>) | {
835
- fill?: import("react-native").ColorValue;
836
- stroke?: import("react-native").ColorValue;
837
- }) & React.RefAttributes<(import("@gluestack-ui/icon").IPrimitiveIcon & React.RefAttributes<import("@gluestack-ui/icon").Svg>) | {
838
- fill?: import("react-native").ColorValue;
839
- stroke?: import("react-native").ColorValue;
840
- }>)> & {
841
- className?: string;
842
- }, "ref"> | Omit<VariantProps<import("@gluestack-ui/nativewind-utils/types").TVReturnType<{
843
- size: {
844
- '2xs': string;
845
- xs: string;
846
- sm: string;
847
- md: string;
848
- lg: string;
849
- xl: string;
850
- };
851
- } | ({} & {
852
- size: {
853
- '2xs': string;
854
- xs: string;
855
- sm: string;
856
- md: string;
857
- lg: string;
858
- xl: string;
859
- };
860
- }), undefined, "text-background-500 fill-none", import("tailwind-variants/dist/config").TVConfig<unknown, unknown>, unknown, undefined, import("@gluestack-ui/nativewind-utils/types").TVReturnType<unknown, undefined, "text-background-500 fill-none", import("tailwind-variants/dist/config").TVConfig<unknown, unknown>, unknown, unknown, undefined>>> & Omit<import("@gluestack-ui/icon/lib/createIcon").IIconProps & {
861
- fill?: import("react-native").ColorValue;
862
- stroke?: import("react-native").ColorValue;
863
- } & React.RefAttributes<(import("@gluestack-ui/icon").IPrimitiveIcon & React.RefAttributes<import("@gluestack-ui/icon").Svg>) | {
864
- fill?: import("react-native").ColorValue;
865
- stroke?: import("react-native").ColorValue;
866
- }>, "ref"> & React.RefAttributes<import("@gluestack-ui/icon/lib/createIcon").IIconProps & (((import("@gluestack-ui/icon").IPrimitiveIcon & React.RefAttributes<import("@gluestack-ui/icon").Svg>) | {
867
- fill?: import("react-native").ColorValue;
868
- stroke?: import("react-native").ColorValue;
869
- }) & React.RefAttributes<(import("@gluestack-ui/icon").IPrimitiveIcon & React.RefAttributes<import("@gluestack-ui/icon").Svg>) | {
870
- fill?: import("react-native").ColorValue;
871
- stroke?: import("react-native").ColorValue;
872
- }>)> & {
873
- className?: string;
874
- }, "ref">) & React.RefAttributes<import("@gluestack-ui/icon/lib/createIcon").IIconProps & (((import("@gluestack-ui/icon").IPrimitiveIcon & React.RefAttributes<import("@gluestack-ui/icon").Svg>) | {
875
- fill?: import("react-native").ColorValue;
876
- stroke?: import("react-native").ColorValue;
877
- }) & React.RefAttributes<(import("@gluestack-ui/icon").IPrimitiveIcon & React.RefAttributes<import("@gluestack-ui/icon").Svg>) | {
878
- fill?: import("react-native").ColorValue;
879
- stroke?: import("react-native").ColorValue;
880
- }>)>>;
881
- declare const SelectPortal: React.ForwardRefExoticComponent<Omit<Omit<VariantProps<import("@gluestack-ui/nativewind-utils/types").TVReturnType<{} | {}, undefined, "w-full h-full web:pointer-events-none", import("tailwind-variants/dist/config").TVConfig<unknown, unknown>, unknown, undefined, import("@gluestack-ui/nativewind-utils/types").TVReturnType<unknown, undefined, "w-full h-full web:pointer-events-none", import("tailwind-variants/dist/config").TVConfig<unknown, unknown>, unknown, unknown, undefined>>> & React.RefAttributes<import("react-native").ViewProps> & import("react-native").ViewProps & import("@gluestack-ui/actionsheet/lib/types").InterfaceActionsheetProps & {
882
- className?: string;
883
- }, "ref"> & React.RefAttributes<import("react-native").ViewProps>, "ref"> & React.RefAttributes<Omit<VariantProps<import("@gluestack-ui/nativewind-utils/types").TVReturnType<{} | {}, undefined, "w-full h-full web:pointer-events-none", import("tailwind-variants/dist/config").TVConfig<unknown, unknown>, unknown, undefined, import("@gluestack-ui/nativewind-utils/types").TVReturnType<unknown, undefined, "w-full h-full web:pointer-events-none", import("tailwind-variants/dist/config").TVConfig<unknown, unknown>, unknown, unknown, undefined>>> & React.RefAttributes<import("react-native").ViewProps> & import("react-native").ViewProps & import("@gluestack-ui/actionsheet/lib/types").InterfaceActionsheetProps & {
884
- className?: string;
885
- }, "ref"> & React.RefAttributes<import("react-native").ViewProps>>>;
886
- declare const SelectBackdrop: React.ForwardRefExoticComponent<Omit<Omit<VariantProps<import("@gluestack-ui/nativewind-utils/types").TVReturnType<{} | {}, undefined, "absolute left-0 top-0 right-0 bottom-0 bg-background-dark web:cursor-default web:pointer-events-auto", import("tailwind-variants/dist/config").TVConfig<unknown, unknown>, unknown, undefined, import("@gluestack-ui/nativewind-utils/types").TVReturnType<unknown, undefined, "absolute left-0 top-0 right-0 bottom-0 bg-background-dark web:cursor-default web:pointer-events-auto", import("tailwind-variants/dist/config").TVConfig<unknown, unknown>, unknown, unknown, undefined>>> & React.RefAttributes<import("react-native").Animated.AnimatedProps<Omit<import("react-native").PressableProps & React.RefAttributes<View>, "ref"> & {
887
- ref?: React.Ref<View>;
888
- }> & import("@legendapp/motion").MotionComponentProps<React.ForwardRefExoticComponent<import("react-native").PressableProps & React.RefAttributes<View>>, import("react-native").ViewStyle | ((state: import("react-native").PressableStateCallbackType) => import("react-native").StyleProp<import("react-native").ViewStyle>), unknown, unknown, unknown>> & Omit<import("react-native").Animated.AnimatedProps<Omit<import("react-native").PressableProps & React.RefAttributes<View>, "ref"> & {
889
- ref?: React.Ref<View>;
890
- }> & import("@legendapp/motion").MotionComponentProps<React.ForwardRefExoticComponent<import("react-native").PressableProps & React.RefAttributes<View>>, import("react-native").ViewStyle | ((state: import("react-native").PressableStateCallbackType) => import("react-native").StyleProp<import("react-native").ViewStyle>), unknown, unknown, unknown>, "ref"> & {
891
- className?: string;
892
- }, "ref"> & React.RefAttributes<import("react-native").Animated.AnimatedProps<Omit<import("react-native").PressableProps & React.RefAttributes<View>, "ref"> & {
893
- ref?: React.Ref<View>;
894
- }> & import("@legendapp/motion").MotionComponentProps<React.ForwardRefExoticComponent<import("react-native").PressableProps & React.RefAttributes<View>>, import("react-native").ViewStyle | ((state: import("react-native").PressableStateCallbackType) => import("react-native").StyleProp<import("react-native").ViewStyle>), unknown, unknown, unknown>>, "ref"> & React.RefAttributes<Omit<VariantProps<import("@gluestack-ui/nativewind-utils/types").TVReturnType<{} | {}, undefined, "absolute left-0 top-0 right-0 bottom-0 bg-background-dark web:cursor-default web:pointer-events-auto", import("tailwind-variants/dist/config").TVConfig<unknown, unknown>, unknown, undefined, import("@gluestack-ui/nativewind-utils/types").TVReturnType<unknown, undefined, "absolute left-0 top-0 right-0 bottom-0 bg-background-dark web:cursor-default web:pointer-events-auto", import("tailwind-variants/dist/config").TVConfig<unknown, unknown>, unknown, unknown, undefined>>> & React.RefAttributes<import("react-native").Animated.AnimatedProps<Omit<import("react-native").PressableProps & React.RefAttributes<View>, "ref"> & {
895
- ref?: React.Ref<View>;
896
- }> & import("@legendapp/motion").MotionComponentProps<React.ForwardRefExoticComponent<import("react-native").PressableProps & React.RefAttributes<View>>, import("react-native").ViewStyle | ((state: import("react-native").PressableStateCallbackType) => import("react-native").StyleProp<import("react-native").ViewStyle>), unknown, unknown, unknown>> & Omit<import("react-native").Animated.AnimatedProps<Omit<import("react-native").PressableProps & React.RefAttributes<View>, "ref"> & {
897
- ref?: React.Ref<View>;
898
- }> & import("@legendapp/motion").MotionComponentProps<React.ForwardRefExoticComponent<import("react-native").PressableProps & React.RefAttributes<View>>, import("react-native").ViewStyle | ((state: import("react-native").PressableStateCallbackType) => import("react-native").StyleProp<import("react-native").ViewStyle>), unknown, unknown, unknown>, "ref"> & {
899
- className?: string;
900
- }, "ref"> & React.RefAttributes<import("react-native").Animated.AnimatedProps<Omit<import("react-native").PressableProps & React.RefAttributes<View>, "ref"> & {
901
- ref?: React.Ref<View>;
902
- }> & import("@legendapp/motion").MotionComponentProps<React.ForwardRefExoticComponent<import("react-native").PressableProps & React.RefAttributes<View>>, import("react-native").ViewStyle | ((state: import("react-native").PressableStateCallbackType) => import("react-native").StyleProp<import("react-native").ViewStyle>), unknown, unknown, unknown>>>>;
903
- declare const SelectContent: React.ForwardRefExoticComponent<Omit<Omit<VariantProps<import("@gluestack-ui/nativewind-utils/types").TVReturnType<{} | {}, undefined, "items-center rounded-tl-3xl rounded-tr-3xl p-2 bg-background-0 web:pointer-events-auto web:select-none shadow-lg", import("tailwind-variants/dist/config").TVConfig<unknown, unknown>, unknown, undefined, import("@gluestack-ui/nativewind-utils/types").TVReturnType<unknown, undefined, "items-center rounded-tl-3xl rounded-tr-3xl p-2 bg-background-0 web:pointer-events-auto web:select-none shadow-lg", import("tailwind-variants/dist/config").TVConfig<unknown, unknown>, unknown, unknown, undefined>>> & Omit<Omit<import("react-native").Animated.AnimatedProps<import("react-native").ViewProps & React.RefAttributes<View>> & import("@legendapp/motion").MotionComponentProps<typeof View, import("react-native").ViewStyle, unknown, unknown, unknown>, "ref"> & {
904
- context?: any;
905
- } & React.RefAttributes<(<TAnimate, TAnimateProps>(p: import("react-native").Animated.AnimatedProps<import("react-native").ViewProps & import("react").RefAttributes<import("react-native").View>> & import("@legendapp/motion").MotionComponentProps<typeof import("react-native").View, import("react-native").ViewStyle, TAnimate, TAnimateProps, unknown>, ref: import("react").Ref<import("react-native").View>) => import("react").ReactElement)> & import("@gluestack-ui/actionsheet/lib/types").InterfaceActionsheetContentProps, "ref"> & React.RefAttributes<Omit<import("react-native").Animated.AnimatedProps<import("react-native").ViewProps & React.RefAttributes<View>> & import("@legendapp/motion").MotionComponentProps<typeof View, import("react-native").ViewStyle, unknown, unknown, unknown>, "ref"> & {
906
- context?: any;
907
- } & React.RefAttributes<(<TAnimate, TAnimateProps>(p: import("react-native").Animated.AnimatedProps<import("react-native").ViewProps & import("react").RefAttributes<import("react-native").View>> & import("@legendapp/motion").MotionComponentProps<typeof import("react-native").View, import("react-native").ViewStyle, TAnimate, TAnimateProps, unknown>, ref: import("react").Ref<import("react-native").View>) => import("react").ReactElement)>> & {
908
- className?: string;
909
- } & {
910
- className?: string;
911
- }, "ref"> & React.RefAttributes<Omit<import("react-native").Animated.AnimatedProps<import("react-native").ViewProps & React.RefAttributes<View>> & import("@legendapp/motion").MotionComponentProps<typeof View, import("react-native").ViewStyle, unknown, unknown, unknown>, "ref"> & {
912
- context?: any;
913
- } & React.RefAttributes<(<TAnimate, TAnimateProps>(p: import("react-native").Animated.AnimatedProps<import("react-native").ViewProps & import("react").RefAttributes<import("react-native").View>> & import("@legendapp/motion").MotionComponentProps<typeof import("react-native").View, import("react-native").ViewStyle, TAnimate, TAnimateProps, unknown>, ref: import("react").Ref<import("react-native").View>) => import("react").ReactElement)>>, "ref"> & React.RefAttributes<Omit<VariantProps<import("@gluestack-ui/nativewind-utils/types").TVReturnType<{} | {}, undefined, "items-center rounded-tl-3xl rounded-tr-3xl p-2 bg-background-0 web:pointer-events-auto web:select-none shadow-lg", import("tailwind-variants/dist/config").TVConfig<unknown, unknown>, unknown, undefined, import("@gluestack-ui/nativewind-utils/types").TVReturnType<unknown, undefined, "items-center rounded-tl-3xl rounded-tr-3xl p-2 bg-background-0 web:pointer-events-auto web:select-none shadow-lg", import("tailwind-variants/dist/config").TVConfig<unknown, unknown>, unknown, unknown, undefined>>> & Omit<Omit<import("react-native").Animated.AnimatedProps<import("react-native").ViewProps & React.RefAttributes<View>> & import("@legendapp/motion").MotionComponentProps<typeof View, import("react-native").ViewStyle, unknown, unknown, unknown>, "ref"> & {
914
- context?: any;
915
- } & React.RefAttributes<(<TAnimate, TAnimateProps>(p: import("react-native").Animated.AnimatedProps<import("react-native").ViewProps & import("react").RefAttributes<import("react-native").View>> & import("@legendapp/motion").MotionComponentProps<typeof import("react-native").View, import("react-native").ViewStyle, TAnimate, TAnimateProps, unknown>, ref: import("react").Ref<import("react-native").View>) => import("react").ReactElement)> & import("@gluestack-ui/actionsheet/lib/types").InterfaceActionsheetContentProps, "ref"> & React.RefAttributes<Omit<import("react-native").Animated.AnimatedProps<import("react-native").ViewProps & React.RefAttributes<View>> & import("@legendapp/motion").MotionComponentProps<typeof View, import("react-native").ViewStyle, unknown, unknown, unknown>, "ref"> & {
916
- context?: any;
917
- } & React.RefAttributes<(<TAnimate, TAnimateProps>(p: import("react-native").Animated.AnimatedProps<import("react-native").ViewProps & import("react").RefAttributes<import("react-native").View>> & import("@legendapp/motion").MotionComponentProps<typeof import("react-native").View, import("react-native").ViewStyle, TAnimate, TAnimateProps, unknown>, ref: import("react").Ref<import("react-native").View>) => import("react").ReactElement)>> & {
918
- className?: string;
919
- } & {
920
- className?: string;
921
- }, "ref"> & React.RefAttributes<Omit<import("react-native").Animated.AnimatedProps<import("react-native").ViewProps & React.RefAttributes<View>> & import("@legendapp/motion").MotionComponentProps<typeof View, import("react-native").ViewStyle, unknown, unknown, unknown>, "ref"> & {
922
- context?: any;
923
- } & React.RefAttributes<(<TAnimate, TAnimateProps>(p: import("react-native").Animated.AnimatedProps<import("react-native").ViewProps & import("react").RefAttributes<import("react-native").View>> & import("@legendapp/motion").MotionComponentProps<typeof import("react-native").View, import("react-native").ViewStyle, TAnimate, TAnimateProps, unknown>, ref: import("react").Ref<import("react-native").View>) => import("react").ReactElement)>>>>;
924
- declare const SelectDragIndicator: React.ForwardRefExoticComponent<Omit<Omit<VariantProps<import("@gluestack-ui/nativewind-utils/types").TVReturnType<{} | {}, undefined, "w-16 h-1 bg-background-400 rounded-full", import("tailwind-variants/dist/config").TVConfig<unknown, unknown>, unknown, undefined, import("@gluestack-ui/nativewind-utils/types").TVReturnType<unknown, undefined, "w-16 h-1 bg-background-400 rounded-full", import("tailwind-variants/dist/config").TVConfig<unknown, unknown>, unknown, unknown, undefined>>> & React.RefAttributes<import("react-native").ViewProps> & import("react-native").ViewProps & {
925
- className?: string;
926
- }, "ref"> & React.RefAttributes<import("react-native").ViewProps>, "ref"> & React.RefAttributes<Omit<VariantProps<import("@gluestack-ui/nativewind-utils/types").TVReturnType<{} | {}, undefined, "w-16 h-1 bg-background-400 rounded-full", import("tailwind-variants/dist/config").TVConfig<unknown, unknown>, unknown, undefined, import("@gluestack-ui/nativewind-utils/types").TVReturnType<unknown, undefined, "w-16 h-1 bg-background-400 rounded-full", import("tailwind-variants/dist/config").TVConfig<unknown, unknown>, unknown, unknown, undefined>>> & React.RefAttributes<import("react-native").ViewProps> & import("react-native").ViewProps & {
927
- className?: string;
928
- }, "ref"> & React.RefAttributes<import("react-native").ViewProps>>>;
929
- declare const SelectDragIndicatorWrapper: React.ForwardRefExoticComponent<Omit<Omit<VariantProps<import("@gluestack-ui/nativewind-utils/types").TVReturnType<{} | {}, undefined, "w-full py-1 items-center", import("tailwind-variants/dist/config").TVConfig<unknown, unknown>, unknown, undefined, import("@gluestack-ui/nativewind-utils/types").TVReturnType<unknown, undefined, "w-full py-1 items-center", import("tailwind-variants/dist/config").TVConfig<unknown, unknown>, unknown, unknown, undefined>>> & React.RefAttributes<import("react-native").ViewProps> & import("react-native").ViewProps & {
930
- className?: string;
931
- }, "ref"> & React.RefAttributes<import("react-native").ViewProps>, "ref"> & React.RefAttributes<Omit<VariantProps<import("@gluestack-ui/nativewind-utils/types").TVReturnType<{} | {}, undefined, "w-full py-1 items-center", import("tailwind-variants/dist/config").TVConfig<unknown, unknown>, unknown, undefined, import("@gluestack-ui/nativewind-utils/types").TVReturnType<unknown, undefined, "w-full py-1 items-center", import("tailwind-variants/dist/config").TVConfig<unknown, unknown>, unknown, unknown, undefined>>> & React.RefAttributes<import("react-native").ViewProps> & import("react-native").ViewProps & {
932
- className?: string;
933
- }, "ref"> & React.RefAttributes<import("react-native").ViewProps>>>;
934
- declare const SelectItem: React.ForwardRefExoticComponent<import("@gluestack-ui/select/lib/types").ISelectItemProps & Omit<Omit<VariantProps<import("@gluestack-ui/nativewind-utils/types").TVReturnType<{} | {}, undefined, "w-full flex-row items-center p-3 rounded-sm data-[disabled=true]:opacity-40 data-[disabled=true]:web:pointer-events-auto data-[disabled=true]:web:cursor-not-allowed hover:bg-background-50 active:bg-background-100 data-[focus=true]:bg-background-100 web:data-[focus-visible=true]:bg-background-100 data-[checked=true]:bg-background-100", import("tailwind-variants/dist/config").TVConfig<unknown, unknown>, unknown, undefined, import("@gluestack-ui/nativewind-utils/types").TVReturnType<unknown, undefined, "w-full flex-row items-center p-3 rounded-sm data-[disabled=true]:opacity-40 data-[disabled=true]:web:pointer-events-auto data-[disabled=true]:web:cursor-not-allowed hover:bg-background-50 active:bg-background-100 data-[focus=true]:bg-background-100 web:data-[focus-visible=true]:bg-background-100 data-[checked=true]:bg-background-100", import("tailwind-variants/dist/config").TVConfig<unknown, unknown>, unknown, unknown, undefined>>> & Omit<Omit<import("react-native").PressableProps & React.RefAttributes<View>, "ref"> & {
935
- context?: any;
936
- } & React.RefAttributes<React.ForwardRefExoticComponent<import("react-native").PressableProps & React.RefAttributes<View>>> & import("@gluestack-ui/actionsheet/lib/types").InterfaceActionsheetItemProps, "ref"> & React.RefAttributes<Omit<import("react-native").PressableProps & React.RefAttributes<View>, "ref"> & {
937
- context?: any;
938
- } & React.RefAttributes<React.ForwardRefExoticComponent<import("react-native").PressableProps & React.RefAttributes<View>>>> & {
939
- className?: string;
940
- }, "ref"> & React.RefAttributes<Omit<import("react-native").PressableProps & React.RefAttributes<View>, "ref"> & {
941
- context?: any;
942
- } & React.RefAttributes<React.ForwardRefExoticComponent<import("react-native").PressableProps & React.RefAttributes<View>>>>, "ref"> & React.RefAttributes<Omit<VariantProps<import("@gluestack-ui/nativewind-utils/types").TVReturnType<{} | {}, undefined, "w-full flex-row items-center p-3 rounded-sm data-[disabled=true]:opacity-40 data-[disabled=true]:web:pointer-events-auto data-[disabled=true]:web:cursor-not-allowed hover:bg-background-50 active:bg-background-100 data-[focus=true]:bg-background-100 web:data-[focus-visible=true]:bg-background-100 data-[checked=true]:bg-background-100", import("tailwind-variants/dist/config").TVConfig<unknown, unknown>, unknown, undefined, import("@gluestack-ui/nativewind-utils/types").TVReturnType<unknown, undefined, "w-full flex-row items-center p-3 rounded-sm data-[disabled=true]:opacity-40 data-[disabled=true]:web:pointer-events-auto data-[disabled=true]:web:cursor-not-allowed hover:bg-background-50 active:bg-background-100 data-[focus=true]:bg-background-100 web:data-[focus-visible=true]:bg-background-100 data-[checked=true]:bg-background-100", import("tailwind-variants/dist/config").TVConfig<unknown, unknown>, unknown, unknown, undefined>>> & Omit<Omit<import("react-native").PressableProps & React.RefAttributes<View>, "ref"> & {
943
- context?: any;
944
- } & React.RefAttributes<React.ForwardRefExoticComponent<import("react-native").PressableProps & React.RefAttributes<View>>> & import("@gluestack-ui/actionsheet/lib/types").InterfaceActionsheetItemProps, "ref"> & React.RefAttributes<Omit<import("react-native").PressableProps & React.RefAttributes<View>, "ref"> & {
945
- context?: any;
946
- } & React.RefAttributes<React.ForwardRefExoticComponent<import("react-native").PressableProps & React.RefAttributes<View>>>> & {
947
- className?: string;
948
- }, "ref"> & React.RefAttributes<Omit<import("react-native").PressableProps & React.RefAttributes<View>, "ref"> & {
949
- context?: any;
950
- } & React.RefAttributes<React.ForwardRefExoticComponent<import("react-native").PressableProps & React.RefAttributes<View>>>>> & {
951
- textStyle?: {
952
- bold?: boolean;
953
- key?: React.Key | null | undefined;
954
- underline?: boolean;
955
- style?: import("react-native").StyleProp<import("react-native").TextStyle> | undefined;
956
- accessible?: boolean | undefined;
957
- size?: "sm" | "md" | "lg" | "xl" | "2xl" | "2xs" | "xs" | "5xl" | "4xl" | "3xl" | "6xl";
958
- allowFontScaling?: boolean | undefined;
959
- children?: React.ReactNode | undefined;
960
- ellipsizeMode?: "head" | "middle" | "tail" | "clip" | undefined;
961
- id?: string | undefined;
962
- lineBreakMode?: "head" | "middle" | "tail" | "clip" | undefined;
963
- numberOfLines?: number | undefined;
964
- onLayout?: ((event: import("react-native").LayoutChangeEvent) => void) | undefined;
965
- onTextLayout?: ((event: import("react-native").NativeSyntheticEvent<import("react-native").TextLayoutEventData>) => void) | undefined;
966
- onPress?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
967
- onPressIn?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
968
- onPressOut?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
969
- onLongPress?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
970
- testID?: string | undefined;
971
- nativeID?: string | undefined;
972
- maxFontSizeMultiplier?: number | null | undefined;
973
- minimumFontScale?: number | undefined;
974
- className?: string;
975
- cssInterop?: boolean;
976
- adjustsFontSizeToFit?: boolean | undefined;
977
- dynamicTypeRamp?: "caption2" | "caption1" | "footnote" | "subheadline" | "callout" | "body" | "headline" | "title3" | "title2" | "title1" | "largeTitle" | undefined;
978
- suppressHighlighting?: boolean | undefined;
979
- lineBreakStrategyIOS?: "none" | "standard" | "hangul-word" | "push-out" | undefined;
980
- disabled?: boolean | undefined;
981
- selectable?: boolean | undefined;
982
- selectionColor?: import("react-native").ColorValue | undefined;
983
- textBreakStrategy?: "simple" | "highQuality" | "balanced" | undefined;
984
- dataDetectorType?: null | "phoneNumber" | "link" | "email" | "none" | "all" | undefined;
985
- android_hyphenationFrequency?: "normal" | "none" | "full" | undefined;
986
- accessibilityActions?: ReadonlyArray<import("react-native").AccessibilityActionInfo> | undefined;
987
- accessibilityLabel?: string | undefined;
988
- 'aria-label'?: string | undefined;
989
- accessibilityRole?: import("react-native").AccessibilityRole | undefined;
990
- accessibilityState?: import("react-native").AccessibilityState | undefined;
991
- 'aria-busy'?: boolean | undefined;
992
- 'aria-checked'?: boolean | "mixed" | undefined;
993
- 'aria-disabled'?: boolean | undefined;
994
- 'aria-expanded'?: boolean | undefined;
995
- 'aria-selected'?: boolean | undefined;
996
- accessibilityHint?: string | undefined;
997
- accessibilityValue?: import("react-native").AccessibilityValue | undefined;
998
- 'aria-valuemax'?: import("react-native").AccessibilityValue["max"] | undefined;
999
- 'aria-valuemin'?: import("react-native").AccessibilityValue["min"] | undefined;
1000
- 'aria-valuenow'?: import("react-native").AccessibilityValue["now"] | undefined;
1001
- 'aria-valuetext'?: import("react-native").AccessibilityValue["text"] | undefined;
1002
- onAccessibilityAction?: ((event: import("react-native").AccessibilityActionEvent) => void) | undefined;
1003
- importantForAccessibility?: ("auto" | "yes" | "no" | "no-hide-descendants") | undefined;
1004
- 'aria-hidden'?: boolean | undefined;
1005
- 'aria-modal'?: boolean | undefined;
1006
- role?: import("react-native").Role | undefined;
1007
- accessibilityLabelledBy?: string | string[] | undefined;
1008
- 'aria-labelledby'?: string | undefined;
1009
- accessibilityLiveRegion?: "none" | "polite" | "assertive" | undefined;
1010
- 'aria-live'?: ("polite" | "assertive" | "off") | undefined;
1011
- accessibilityElementsHidden?: boolean | undefined;
1012
- accessibilityViewIsModal?: boolean | undefined;
1013
- onAccessibilityEscape?: (() => void) | undefined;
1014
- onAccessibilityTap?: (() => void) | undefined;
1015
- onMagicTap?: (() => void) | undefined;
1016
- accessibilityIgnoresInvertColors?: boolean | undefined;
1017
- accessibilityLanguage?: string | undefined;
1018
- accessibilityShowsLargeContentViewer?: boolean | undefined;
1019
- accessibilityLargeContentTitle?: string | undefined;
1020
- isTruncated?: boolean;
1021
- strikeThrough?: boolean;
1022
- ref?: React.LegacyRef<import("react-native").TextProps>;
1023
- };
1024
- }>;
1025
- declare const SelectScrollView: React.ForwardRefExoticComponent<Omit<Omit<VariantProps<import("@gluestack-ui/nativewind-utils/types").TVReturnType<{} | {}, undefined, "w-full h-auto", import("tailwind-variants/dist/config").TVConfig<unknown, unknown>, unknown, undefined, import("@gluestack-ui/nativewind-utils/types").TVReturnType<unknown, undefined, "w-full h-auto", import("tailwind-variants/dist/config").TVConfig<unknown, unknown>, unknown, unknown, undefined>>> & React.RefAttributes<import("react-native").ScrollViewProps> & import("react-native").ScrollViewProps & {
1026
- className?: string;
1027
- }, "ref"> & React.RefAttributes<import("react-native").ScrollViewProps>, "ref"> & React.RefAttributes<Omit<VariantProps<import("@gluestack-ui/nativewind-utils/types").TVReturnType<{} | {}, undefined, "w-full h-auto", import("tailwind-variants/dist/config").TVConfig<unknown, unknown>, unknown, undefined, import("@gluestack-ui/nativewind-utils/types").TVReturnType<unknown, undefined, "w-full h-auto", import("tailwind-variants/dist/config").TVConfig<unknown, unknown>, unknown, unknown, undefined>>> & React.RefAttributes<import("react-native").ScrollViewProps> & import("react-native").ScrollViewProps & {
1028
- className?: string;
1029
- }, "ref"> & React.RefAttributes<import("react-native").ScrollViewProps>>>;
1030
- declare const SelectVirtualizedList: React.ForwardRefExoticComponent<Omit<Omit<VariantProps<import("@gluestack-ui/nativewind-utils/types").TVReturnType<{} | {}, undefined, "w-full h-auto", import("tailwind-variants/dist/config").TVConfig<unknown, unknown>, unknown, undefined, import("@gluestack-ui/nativewind-utils/types").TVReturnType<unknown, undefined, "w-full h-auto", import("tailwind-variants/dist/config").TVConfig<unknown, unknown>, unknown, unknown, undefined>>> & React.RefAttributes<import("react-native").VirtualizedListProps<unknown>> & import("react-native").VirtualizedListProps<unknown> & {
1031
- className?: string;
1032
- }, "ref"> & React.RefAttributes<import("react-native").VirtualizedListProps<unknown>>, "ref"> & React.RefAttributes<Omit<VariantProps<import("@gluestack-ui/nativewind-utils/types").TVReturnType<{} | {}, undefined, "w-full h-auto", import("tailwind-variants/dist/config").TVConfig<unknown, unknown>, unknown, undefined, import("@gluestack-ui/nativewind-utils/types").TVReturnType<unknown, undefined, "w-full h-auto", import("tailwind-variants/dist/config").TVConfig<unknown, unknown>, unknown, unknown, undefined>>> & React.RefAttributes<import("react-native").VirtualizedListProps<unknown>> & import("react-native").VirtualizedListProps<unknown> & {
1033
- className?: string;
1034
- }, "ref"> & React.RefAttributes<import("react-native").VirtualizedListProps<unknown>>>>;
1035
- declare const SelectFlatList: React.ForwardRefExoticComponent<Omit<Omit<VariantProps<import("@gluestack-ui/nativewind-utils/types").TVReturnType<{} | {}, undefined, "w-full h-auto", import("tailwind-variants/dist/config").TVConfig<unknown, unknown>, unknown, undefined, import("@gluestack-ui/nativewind-utils/types").TVReturnType<unknown, undefined, "w-full h-auto", import("tailwind-variants/dist/config").TVConfig<unknown, unknown>, unknown, unknown, undefined>>> & React.RefAttributes<import("react-native").FlatListProps<unknown>> & import("react-native").FlatListProps<unknown> & {
1036
- className?: string;
1037
- }, "ref"> & React.RefAttributes<import("react-native").FlatListProps<unknown>>, "ref"> & React.RefAttributes<Omit<VariantProps<import("@gluestack-ui/nativewind-utils/types").TVReturnType<{} | {}, undefined, "w-full h-auto", import("tailwind-variants/dist/config").TVConfig<unknown, unknown>, unknown, undefined, import("@gluestack-ui/nativewind-utils/types").TVReturnType<unknown, undefined, "w-full h-auto", import("tailwind-variants/dist/config").TVConfig<unknown, unknown>, unknown, unknown, undefined>>> & React.RefAttributes<import("react-native").FlatListProps<unknown>> & import("react-native").FlatListProps<unknown> & {
1038
- className?: string;
1039
- }, "ref"> & React.RefAttributes<import("react-native").FlatListProps<unknown>>>>;
1040
- declare const SelectSectionList: React.ForwardRefExoticComponent<Omit<Omit<VariantProps<import("@gluestack-ui/nativewind-utils/types").TVReturnType<{} | {}, undefined, "w-full h-auto", import("tailwind-variants/dist/config").TVConfig<unknown, unknown>, unknown, undefined, import("@gluestack-ui/nativewind-utils/types").TVReturnType<unknown, undefined, "w-full h-auto", import("tailwind-variants/dist/config").TVConfig<unknown, unknown>, unknown, unknown, undefined>>> & React.RefAttributes<import("react-native").SectionListProps<unknown, unknown>> & import("react-native").SectionListProps<unknown, unknown> & {
1041
- className?: string;
1042
- }, "ref"> & React.RefAttributes<import("react-native").SectionListProps<unknown, unknown>>, "ref"> & React.RefAttributes<Omit<VariantProps<import("@gluestack-ui/nativewind-utils/types").TVReturnType<{} | {}, undefined, "w-full h-auto", import("tailwind-variants/dist/config").TVConfig<unknown, unknown>, unknown, undefined, import("@gluestack-ui/nativewind-utils/types").TVReturnType<unknown, undefined, "w-full h-auto", import("tailwind-variants/dist/config").TVConfig<unknown, unknown>, unknown, unknown, undefined>>> & React.RefAttributes<import("react-native").SectionListProps<unknown, unknown>> & import("react-native").SectionListProps<unknown, unknown> & {
1043
- className?: string;
1044
- }, "ref"> & React.RefAttributes<import("react-native").SectionListProps<unknown, unknown>>>>;
1045
- declare const SelectSectionHeaderText: React.ForwardRefExoticComponent<Omit<Omit<VariantProps<import("@gluestack-ui/nativewind-utils/types").TVReturnType<{
1046
- isTruncated: {
1047
- true: string;
1048
- };
1049
- bold: {
1050
- true: string;
1051
- };
1052
- underline: {
1053
- true: string;
1054
- };
1055
- strikeThrough: {
1056
- true: string;
1057
- };
1058
- size: {
1059
- '5xl': string;
1060
- '4xl': string;
1061
- '3xl': string;
1062
- '2xl': string;
1063
- xl: string;
1064
- lg: string;
1065
- md: string;
1066
- sm: string;
1067
- xs: string;
1068
- };
1069
- sub: {
1070
- true: string;
1071
- };
1072
- italic: {
1073
- true: string;
1074
- };
1075
- highlight: {
1076
- true: string;
1077
- };
1078
- } | ({
1079
- isTruncated: {
1080
- true: string;
1081
- };
1082
- bold: {
1083
- true: string;
1084
- };
1085
- underline: {
1086
- true: string;
1087
- };
1088
- strikeThrough: {
1089
- true: string;
1090
- };
1091
- size: {
1092
- '5xl': string;
1093
- '4xl': string;
1094
- '3xl': string;
1095
- '2xl': string;
1096
- xl: string;
1097
- lg: string;
1098
- md: string;
1099
- sm: string;
1100
- xs: string;
1101
- };
1102
- sub: {
1103
- true: string;
1104
- };
1105
- italic: {
1106
- true: string;
1107
- };
1108
- highlight: {
1109
- true: string;
1110
- };
1111
- } & {
1112
- isTruncated: {
1113
- true: import("tailwind-merge").ClassNameValue | {
1114
- base?: import("tailwind-merge").ClassNameValue;
1115
- };
1116
- };
1117
- bold: {
1118
- true: import("tailwind-merge").ClassNameValue | {
1119
- base?: import("tailwind-merge").ClassNameValue;
1120
- };
1121
- };
1122
- underline: {
1123
- true: import("tailwind-merge").ClassNameValue | {
1124
- base?: import("tailwind-merge").ClassNameValue;
1125
- };
1126
- };
1127
- strikeThrough: {
1128
- true: import("tailwind-merge").ClassNameValue | {
1129
- base?: import("tailwind-merge").ClassNameValue;
1130
- };
1131
- };
1132
- size: {
1133
- '5xl': import("tailwind-merge").ClassNameValue | {
1134
- base?: import("tailwind-merge").ClassNameValue;
1135
- };
1136
- '4xl': import("tailwind-merge").ClassNameValue | {
1137
- base?: import("tailwind-merge").ClassNameValue;
1138
- };
1139
- '3xl': import("tailwind-merge").ClassNameValue | {
1140
- base?: import("tailwind-merge").ClassNameValue;
1141
- };
1142
- '2xl': import("tailwind-merge").ClassNameValue | {
1143
- base?: import("tailwind-merge").ClassNameValue;
1144
- };
1145
- xl: import("tailwind-merge").ClassNameValue | {
1146
- base?: import("tailwind-merge").ClassNameValue;
1147
- };
1148
- lg: import("tailwind-merge").ClassNameValue | {
1149
- base?: import("tailwind-merge").ClassNameValue;
1150
- };
1151
- md: import("tailwind-merge").ClassNameValue | {
1152
- base?: import("tailwind-merge").ClassNameValue;
1153
- };
1154
- sm: import("tailwind-merge").ClassNameValue | {
1155
- base?: import("tailwind-merge").ClassNameValue;
1156
- };
1157
- xs: import("tailwind-merge").ClassNameValue | {
1158
- base?: import("tailwind-merge").ClassNameValue;
1159
- };
1160
- };
1161
- sub: {
1162
- true: import("tailwind-merge").ClassNameValue | {
1163
- base?: import("tailwind-merge").ClassNameValue;
1164
- };
1165
- };
1166
- italic: {
1167
- true: import("tailwind-merge").ClassNameValue | {
1168
- base?: import("tailwind-merge").ClassNameValue;
1169
- };
1170
- };
1171
- highlight: {
1172
- true: import("tailwind-merge").ClassNameValue | {
1173
- base?: import("tailwind-merge").ClassNameValue;
1174
- };
1175
- };
1176
- }), undefined, "leading-5 font-bold font-heading my-0 text-typography-500 p-3 uppercase", import("tailwind-variants/dist/config").TVConfig<{
1177
- isTruncated: {
1178
- true: string;
1179
- };
1180
- bold: {
1181
- true: string;
1182
- };
1183
- underline: {
1184
- true: string;
1185
- };
1186
- strikeThrough: {
1187
- true: string;
1188
- };
1189
- size: {
1190
- '5xl': string;
1191
- '4xl': string;
1192
- '3xl': string;
1193
- '2xl': string;
1194
- xl: string;
1195
- lg: string;
1196
- md: string;
1197
- sm: string;
1198
- xs: string;
1199
- };
1200
- sub: {
1201
- true: string;
1202
- };
1203
- italic: {
1204
- true: string;
1205
- };
1206
- highlight: {
1207
- true: string;
1208
- };
1209
- }, {
1210
- isTruncated: {
1211
- true: string;
1212
- };
1213
- bold: {
1214
- true: string;
1215
- };
1216
- underline: {
1217
- true: string;
1218
- };
1219
- strikeThrough: {
1220
- true: string;
1221
- };
1222
- size: {
1223
- '5xl': string;
1224
- '4xl': string;
1225
- '3xl': string;
1226
- '2xl': string;
1227
- xl: string;
1228
- lg: string;
1229
- md: string;
1230
- sm: string;
1231
- xs: string;
1232
- };
1233
- sub: {
1234
- true: string;
1235
- };
1236
- italic: {
1237
- true: string;
1238
- };
1239
- highlight: {
1240
- true: string;
1241
- };
1242
- }>, {
1243
- isTruncated: {
1244
- true: string;
1245
- };
1246
- bold: {
1247
- true: string;
1248
- };
1249
- underline: {
1250
- true: string;
1251
- };
1252
- strikeThrough: {
1253
- true: string;
1254
- };
1255
- size: {
1256
- '5xl': string;
1257
- '4xl': string;
1258
- '3xl': string;
1259
- '2xl': string;
1260
- xl: string;
1261
- lg: string;
1262
- md: string;
1263
- sm: string;
1264
- xs: string;
1265
- };
1266
- sub: {
1267
- true: string;
1268
- };
1269
- italic: {
1270
- true: string;
1271
- };
1272
- highlight: {
1273
- true: string;
1274
- };
1275
- }, undefined, import("@gluestack-ui/nativewind-utils/types").TVReturnType<{
1276
- isTruncated: {
1277
- true: string;
1278
- };
1279
- bold: {
1280
- true: string;
1281
- };
1282
- underline: {
1283
- true: string;
1284
- };
1285
- strikeThrough: {
1286
- true: string;
1287
- };
1288
- size: {
1289
- '5xl': string;
1290
- '4xl': string;
1291
- '3xl': string;
1292
- '2xl': string;
1293
- xl: string;
1294
- lg: string;
1295
- md: string;
1296
- sm: string;
1297
- xs: string;
1298
- };
1299
- sub: {
1300
- true: string;
1301
- };
1302
- italic: {
1303
- true: string;
1304
- };
1305
- highlight: {
1306
- true: string;
1307
- };
1308
- }, undefined, "leading-5 font-bold font-heading my-0 text-typography-500 p-3 uppercase", import("tailwind-variants/dist/config").TVConfig<{
1309
- isTruncated: {
1310
- true: string;
1311
- };
1312
- bold: {
1313
- true: string;
1314
- };
1315
- underline: {
1316
- true: string;
1317
- };
1318
- strikeThrough: {
1319
- true: string;
1320
- };
1321
- size: {
1322
- '5xl': string;
1323
- '4xl': string;
1324
- '3xl': string;
1325
- '2xl': string;
1326
- xl: string;
1327
- lg: string;
1328
- md: string;
1329
- sm: string;
1330
- xs: string;
1331
- };
1332
- sub: {
1333
- true: string;
1334
- };
1335
- italic: {
1336
- true: string;
1337
- };
1338
- highlight: {
1339
- true: string;
1340
- };
1341
- }, {
1342
- isTruncated: {
1343
- true: string;
1344
- };
1345
- bold: {
1346
- true: string;
1347
- };
1348
- underline: {
1349
- true: string;
1350
- };
1351
- strikeThrough: {
1352
- true: string;
1353
- };
1354
- size: {
1355
- '5xl': string;
1356
- '4xl': string;
1357
- '3xl': string;
1358
- '2xl': string;
1359
- xl: string;
1360
- lg: string;
1361
- md: string;
1362
- sm: string;
1363
- xs: string;
1364
- };
1365
- sub: {
1366
- true: string;
1367
- };
1368
- italic: {
1369
- true: string;
1370
- };
1371
- highlight: {
1372
- true: string;
1373
- };
1374
- }>, unknown, unknown, undefined>>> & React.RefAttributes<import("@expo/html-elements/build/primitives/Text").TextProps> & Omit<import("@expo/html-elements/build/primitives/Text").TextProps, "ref"> & {
1375
- className?: string;
1376
- }, "ref"> & React.RefAttributes<import("@expo/html-elements/build/primitives/Text").TextProps>, "ref"> & React.RefAttributes<Omit<VariantProps<import("@gluestack-ui/nativewind-utils/types").TVReturnType<{
1377
- isTruncated: {
1378
- true: string;
1379
- };
1380
- bold: {
1381
- true: string;
1382
- };
1383
- underline: {
1384
- true: string;
1385
- };
1386
- strikeThrough: {
1387
- true: string;
1388
- };
1389
- size: {
1390
- '5xl': string;
1391
- '4xl': string;
1392
- '3xl': string;
1393
- '2xl': string;
1394
- xl: string;
1395
- lg: string;
1396
- md: string;
1397
- sm: string;
1398
- xs: string;
1399
- };
1400
- sub: {
1401
- true: string;
1402
- };
1403
- italic: {
1404
- true: string;
1405
- };
1406
- highlight: {
1407
- true: string;
1408
- };
1409
- } | ({
1410
- isTruncated: {
1411
- true: string;
1412
- };
1413
- bold: {
1414
- true: string;
1415
- };
1416
- underline: {
1417
- true: string;
1418
- };
1419
- strikeThrough: {
1420
- true: string;
1421
- };
1422
- size: {
1423
- '5xl': string;
1424
- '4xl': string;
1425
- '3xl': string;
1426
- '2xl': string;
1427
- xl: string;
1428
- lg: string;
1429
- md: string;
1430
- sm: string;
1431
- xs: string;
1432
- };
1433
- sub: {
1434
- true: string;
1435
- };
1436
- italic: {
1437
- true: string;
1438
- };
1439
- highlight: {
1440
- true: string;
1441
- };
1442
- } & {
1443
- isTruncated: {
1444
- true: import("tailwind-merge").ClassNameValue | {
1445
- base?: import("tailwind-merge").ClassNameValue;
1446
- };
1447
- };
1448
- bold: {
1449
- true: import("tailwind-merge").ClassNameValue | {
1450
- base?: import("tailwind-merge").ClassNameValue;
1451
- };
1452
- };
1453
- underline: {
1454
- true: import("tailwind-merge").ClassNameValue | {
1455
- base?: import("tailwind-merge").ClassNameValue;
1456
- };
1457
- };
1458
- strikeThrough: {
1459
- true: import("tailwind-merge").ClassNameValue | {
1460
- base?: import("tailwind-merge").ClassNameValue;
1461
- };
1462
- };
1463
- size: {
1464
- '5xl': import("tailwind-merge").ClassNameValue | {
1465
- base?: import("tailwind-merge").ClassNameValue;
1466
- };
1467
- '4xl': import("tailwind-merge").ClassNameValue | {
1468
- base?: import("tailwind-merge").ClassNameValue;
1469
- };
1470
- '3xl': import("tailwind-merge").ClassNameValue | {
1471
- base?: import("tailwind-merge").ClassNameValue;
1472
- };
1473
- '2xl': import("tailwind-merge").ClassNameValue | {
1474
- base?: import("tailwind-merge").ClassNameValue;
1475
- };
1476
- xl: import("tailwind-merge").ClassNameValue | {
1477
- base?: import("tailwind-merge").ClassNameValue;
1478
- };
1479
- lg: import("tailwind-merge").ClassNameValue | {
1480
- base?: import("tailwind-merge").ClassNameValue;
1481
- };
1482
- md: import("tailwind-merge").ClassNameValue | {
1483
- base?: import("tailwind-merge").ClassNameValue;
1484
- };
1485
- sm: import("tailwind-merge").ClassNameValue | {
1486
- base?: import("tailwind-merge").ClassNameValue;
1487
- };
1488
- xs: import("tailwind-merge").ClassNameValue | {
1489
- base?: import("tailwind-merge").ClassNameValue;
1490
- };
1491
- };
1492
- sub: {
1493
- true: import("tailwind-merge").ClassNameValue | {
1494
- base?: import("tailwind-merge").ClassNameValue;
1495
- };
1496
- };
1497
- italic: {
1498
- true: import("tailwind-merge").ClassNameValue | {
1499
- base?: import("tailwind-merge").ClassNameValue;
1500
- };
1501
- };
1502
- highlight: {
1503
- true: import("tailwind-merge").ClassNameValue | {
1504
- base?: import("tailwind-merge").ClassNameValue;
1505
- };
1506
- };
1507
- }), undefined, "leading-5 font-bold font-heading my-0 text-typography-500 p-3 uppercase", import("tailwind-variants/dist/config").TVConfig<{
1508
- isTruncated: {
1509
- true: string;
1510
- };
1511
- bold: {
1512
- true: string;
1513
- };
1514
- underline: {
1515
- true: string;
1516
- };
1517
- strikeThrough: {
1518
- true: string;
1519
- };
1520
- size: {
1521
- '5xl': string;
1522
- '4xl': string;
1523
- '3xl': string;
1524
- '2xl': string;
1525
- xl: string;
1526
- lg: string;
1527
- md: string;
1528
- sm: string;
1529
- xs: string;
1530
- };
1531
- sub: {
1532
- true: string;
1533
- };
1534
- italic: {
1535
- true: string;
1536
- };
1537
- highlight: {
1538
- true: string;
1539
- };
1540
- }, {
1541
- isTruncated: {
1542
- true: string;
1543
- };
1544
- bold: {
1545
- true: string;
1546
- };
1547
- underline: {
1548
- true: string;
1549
- };
1550
- strikeThrough: {
1551
- true: string;
1552
- };
1553
- size: {
1554
- '5xl': string;
1555
- '4xl': string;
1556
- '3xl': string;
1557
- '2xl': string;
1558
- xl: string;
1559
- lg: string;
1560
- md: string;
1561
- sm: string;
1562
- xs: string;
1563
- };
1564
- sub: {
1565
- true: string;
1566
- };
1567
- italic: {
1568
- true: string;
1569
- };
1570
- highlight: {
1571
- true: string;
1572
- };
1573
- }>, {
1574
- isTruncated: {
1575
- true: string;
1576
- };
1577
- bold: {
1578
- true: string;
1579
- };
1580
- underline: {
1581
- true: string;
1582
- };
1583
- strikeThrough: {
1584
- true: string;
1585
- };
1586
- size: {
1587
- '5xl': string;
1588
- '4xl': string;
1589
- '3xl': string;
1590
- '2xl': string;
1591
- xl: string;
1592
- lg: string;
1593
- md: string;
1594
- sm: string;
1595
- xs: string;
1596
- };
1597
- sub: {
1598
- true: string;
1599
- };
1600
- italic: {
1601
- true: string;
1602
- };
1603
- highlight: {
1604
- true: string;
1605
- };
1606
- }, undefined, import("@gluestack-ui/nativewind-utils/types").TVReturnType<{
1607
- isTruncated: {
1608
- true: string;
1609
- };
1610
- bold: {
1611
- true: string;
1612
- };
1613
- underline: {
1614
- true: string;
1615
- };
1616
- strikeThrough: {
1617
- true: string;
1618
- };
1619
- size: {
1620
- '5xl': string;
1621
- '4xl': string;
1622
- '3xl': string;
1623
- '2xl': string;
1624
- xl: string;
1625
- lg: string;
1626
- md: string;
1627
- sm: string;
1628
- xs: string;
1629
- };
1630
- sub: {
1631
- true: string;
1632
- };
1633
- italic: {
1634
- true: string;
1635
- };
1636
- highlight: {
1637
- true: string;
1638
- };
1639
- }, undefined, "leading-5 font-bold font-heading my-0 text-typography-500 p-3 uppercase", import("tailwind-variants/dist/config").TVConfig<{
1640
- isTruncated: {
1641
- true: string;
1642
- };
1643
- bold: {
1644
- true: string;
1645
- };
1646
- underline: {
1647
- true: string;
1648
- };
1649
- strikeThrough: {
1650
- true: string;
1651
- };
1652
- size: {
1653
- '5xl': string;
1654
- '4xl': string;
1655
- '3xl': string;
1656
- '2xl': string;
1657
- xl: string;
1658
- lg: string;
1659
- md: string;
1660
- sm: string;
1661
- xs: string;
1662
- };
1663
- sub: {
1664
- true: string;
1665
- };
1666
- italic: {
1667
- true: string;
1668
- };
1669
- highlight: {
1670
- true: string;
1671
- };
1672
- }, {
1673
- isTruncated: {
1674
- true: string;
1675
- };
1676
- bold: {
1677
- true: string;
1678
- };
1679
- underline: {
1680
- true: string;
1681
- };
1682
- strikeThrough: {
1683
- true: string;
1684
- };
1685
- size: {
1686
- '5xl': string;
1687
- '4xl': string;
1688
- '3xl': string;
1689
- '2xl': string;
1690
- xl: string;
1691
- lg: string;
1692
- md: string;
1693
- sm: string;
1694
- xs: string;
1695
- };
1696
- sub: {
1697
- true: string;
1698
- };
1699
- italic: {
1700
- true: string;
1701
- };
1702
- highlight: {
1703
- true: string;
1704
- };
1705
- }>, unknown, unknown, undefined>>> & React.RefAttributes<import("@expo/html-elements/build/primitives/Text").TextProps> & Omit<import("@expo/html-elements/build/primitives/Text").TextProps, "ref"> & {
1706
- className?: string;
1707
- }, "ref"> & React.RefAttributes<import("@expo/html-elements/build/primitives/Text").TextProps>>>;
1708
- export { Select, SelectTrigger, SelectInput, SelectIcon, SelectPortal, SelectBackdrop, SelectContent, SelectDragIndicator, SelectDragIndicatorWrapper, SelectItem, SelectScrollView, SelectVirtualizedList, SelectFlatList, SelectSectionList, SelectSectionHeaderText, };