@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,900 +0,0 @@
1
- import { View } from 'react-native';
2
- import type { VariantProps } from '@gluestack-ui/nativewind-utils';
3
- import React from 'react';
4
- export declare const UIActionsheet: import("@gluestack-ui/actionsheet/lib/types").IActionsheetComponentType<import("react-native").ViewProps, import("react-native").Animated.AnimatedProps<Omit<import("react-native").PressableProps & React.RefAttributes<View>, "ref"> & {
5
- ref?: React.Ref<View>;
6
- }> & 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").PressableProps & React.RefAttributes<View>, "ref"> & {
7
- context?: any;
8
- } & React.RefAttributes<React.ForwardRefExoticComponent<import("react-native").PressableProps & React.RefAttributes<View>>>, import("react-native").TextProps, import("react-native").ViewProps, import("react-native").ViewProps, 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"> & {
9
- context?: any;
10
- } & 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("react-native").ScrollViewProps, import("react-native").VirtualizedListProps<unknown>, import("react-native").FlatListProps<unknown>, import("react-native").SectionListProps<unknown, unknown>, import("@expo/html-elements/build/primitives/Text").TextProps, import("@gluestack-ui/icon/lib/createIcon").IIconProps & (((import("@gluestack-ui/icon").IPrimitiveIcon & React.RefAttributes<import("@gluestack-ui/icon").Svg>) | {
11
- fill?: import("react-native").ColorValue;
12
- stroke?: import("react-native").ColorValue;
13
- }) & React.RefAttributes<(import("@gluestack-ui/icon").IPrimitiveIcon & React.RefAttributes<import("@gluestack-ui/icon").Svg>) | {
14
- fill?: import("react-native").ColorValue;
15
- stroke?: import("react-native").ColorValue;
16
- }>)>;
17
- declare const actionsheetStyle: 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>>;
18
- declare const actionsheetItemStyle: 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>>;
19
- declare const actionsheetItemTextStyle: import("@gluestack-ui/nativewind-utils/types").TVReturnType<{
20
- isTruncated: {
21
- true: string;
22
- };
23
- bold: {
24
- true: string;
25
- };
26
- underline: {
27
- true: string;
28
- };
29
- strikeThrough: {
30
- true: string;
31
- };
32
- size: {
33
- '2xs': string;
34
- xs: string;
35
- sm: string;
36
- md: string;
37
- lg: string;
38
- xl: string;
39
- '2xl': string;
40
- '3xl': string;
41
- '4xl': string;
42
- '5xl': string;
43
- '6xl': string;
44
- };
45
- } | ({
46
- isTruncated: {
47
- true: string;
48
- };
49
- bold: {
50
- true: string;
51
- };
52
- underline: {
53
- true: string;
54
- };
55
- strikeThrough: {
56
- true: string;
57
- };
58
- size: {
59
- '2xs': string;
60
- xs: string;
61
- sm: string;
62
- md: string;
63
- lg: string;
64
- xl: string;
65
- '2xl': string;
66
- '3xl': string;
67
- '4xl': string;
68
- '5xl': string;
69
- '6xl': string;
70
- };
71
- } & {
72
- isTruncated: {
73
- true: import("tailwind-merge").ClassNameValue | {
74
- base?: import("tailwind-merge").ClassNameValue;
75
- };
76
- };
77
- bold: {
78
- true: import("tailwind-merge").ClassNameValue | {
79
- base?: import("tailwind-merge").ClassNameValue;
80
- };
81
- };
82
- underline: {
83
- true: import("tailwind-merge").ClassNameValue | {
84
- base?: import("tailwind-merge").ClassNameValue;
85
- };
86
- };
87
- strikeThrough: {
88
- true: import("tailwind-merge").ClassNameValue | {
89
- base?: import("tailwind-merge").ClassNameValue;
90
- };
91
- };
92
- size: {
93
- '2xs': import("tailwind-merge").ClassNameValue | {
94
- base?: import("tailwind-merge").ClassNameValue;
95
- };
96
- xs: import("tailwind-merge").ClassNameValue | {
97
- base?: import("tailwind-merge").ClassNameValue;
98
- };
99
- sm: import("tailwind-merge").ClassNameValue | {
100
- base?: import("tailwind-merge").ClassNameValue;
101
- };
102
- md: import("tailwind-merge").ClassNameValue | {
103
- base?: import("tailwind-merge").ClassNameValue;
104
- };
105
- lg: import("tailwind-merge").ClassNameValue | {
106
- base?: import("tailwind-merge").ClassNameValue;
107
- };
108
- xl: import("tailwind-merge").ClassNameValue | {
109
- base?: import("tailwind-merge").ClassNameValue;
110
- };
111
- '2xl': import("tailwind-merge").ClassNameValue | {
112
- base?: import("tailwind-merge").ClassNameValue;
113
- };
114
- '3xl': import("tailwind-merge").ClassNameValue | {
115
- base?: import("tailwind-merge").ClassNameValue;
116
- };
117
- '4xl': import("tailwind-merge").ClassNameValue | {
118
- base?: import("tailwind-merge").ClassNameValue;
119
- };
120
- '5xl': import("tailwind-merge").ClassNameValue | {
121
- base?: import("tailwind-merge").ClassNameValue;
122
- };
123
- '6xl': import("tailwind-merge").ClassNameValue | {
124
- base?: import("tailwind-merge").ClassNameValue;
125
- };
126
- };
127
- }), undefined, "text-typography-700 font-normal font-body tracking-md text-left mx-2", import("tailwind-variants/dist/config").TVConfig<{
128
- isTruncated: {
129
- true: string;
130
- };
131
- bold: {
132
- true: string;
133
- };
134
- underline: {
135
- true: string;
136
- };
137
- strikeThrough: {
138
- true: string;
139
- };
140
- size: {
141
- '2xs': string;
142
- xs: string;
143
- sm: string;
144
- md: string;
145
- lg: string;
146
- xl: string;
147
- '2xl': string;
148
- '3xl': string;
149
- '4xl': string;
150
- '5xl': string;
151
- '6xl': string;
152
- };
153
- }, {
154
- isTruncated: {
155
- true: string;
156
- };
157
- bold: {
158
- true: string;
159
- };
160
- underline: {
161
- true: string;
162
- };
163
- strikeThrough: {
164
- true: string;
165
- };
166
- size: {
167
- '2xs': string;
168
- xs: string;
169
- sm: string;
170
- md: string;
171
- lg: string;
172
- xl: string;
173
- '2xl': string;
174
- '3xl': string;
175
- '4xl': string;
176
- '5xl': string;
177
- '6xl': string;
178
- };
179
- }>, {
180
- isTruncated: {
181
- true: string;
182
- };
183
- bold: {
184
- true: string;
185
- };
186
- underline: {
187
- true: string;
188
- };
189
- strikeThrough: {
190
- true: string;
191
- };
192
- size: {
193
- '2xs': string;
194
- xs: string;
195
- sm: string;
196
- md: string;
197
- lg: string;
198
- xl: string;
199
- '2xl': string;
200
- '3xl': string;
201
- '4xl': string;
202
- '5xl': string;
203
- '6xl': string;
204
- };
205
- }, undefined, import("@gluestack-ui/nativewind-utils/types").TVReturnType<{
206
- isTruncated: {
207
- true: string;
208
- };
209
- bold: {
210
- true: string;
211
- };
212
- underline: {
213
- true: string;
214
- };
215
- strikeThrough: {
216
- true: string;
217
- };
218
- size: {
219
- '2xs': string;
220
- xs: string;
221
- sm: string;
222
- md: string;
223
- lg: string;
224
- xl: string;
225
- '2xl': string;
226
- '3xl': string;
227
- '4xl': string;
228
- '5xl': string;
229
- '6xl': string;
230
- };
231
- }, undefined, "text-typography-700 font-normal font-body tracking-md text-left mx-2", import("tailwind-variants/dist/config").TVConfig<{
232
- isTruncated: {
233
- true: string;
234
- };
235
- bold: {
236
- true: string;
237
- };
238
- underline: {
239
- true: string;
240
- };
241
- strikeThrough: {
242
- true: string;
243
- };
244
- size: {
245
- '2xs': string;
246
- xs: string;
247
- sm: string;
248
- md: string;
249
- lg: string;
250
- xl: string;
251
- '2xl': string;
252
- '3xl': string;
253
- '4xl': string;
254
- '5xl': string;
255
- '6xl': string;
256
- };
257
- }, {
258
- isTruncated: {
259
- true: string;
260
- };
261
- bold: {
262
- true: string;
263
- };
264
- underline: {
265
- true: string;
266
- };
267
- strikeThrough: {
268
- true: string;
269
- };
270
- size: {
271
- '2xs': string;
272
- xs: string;
273
- sm: string;
274
- md: string;
275
- lg: string;
276
- xl: string;
277
- '2xl': string;
278
- '3xl': string;
279
- '4xl': string;
280
- '5xl': string;
281
- '6xl': string;
282
- };
283
- }>, unknown, unknown, undefined>>;
284
- declare const actionsheetDragIndicatorStyle: 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>>;
285
- declare const actionsheetDragIndicatorWrapperStyle: 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>>;
286
- declare const actionsheetBackdropStyle: 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>>;
287
- declare const actionsheetScrollViewStyle: 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>>;
288
- declare const actionsheetVirtualizedListStyle: 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>>;
289
- declare const actionsheetFlatListStyle: 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>>;
290
- declare const actionsheetSectionListStyle: 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>>;
291
- declare const actionsheetSectionHeaderTextStyle: import("@gluestack-ui/nativewind-utils/types").TVReturnType<{
292
- isTruncated: {
293
- true: string;
294
- };
295
- bold: {
296
- true: string;
297
- };
298
- underline: {
299
- true: string;
300
- };
301
- strikeThrough: {
302
- true: string;
303
- };
304
- size: {
305
- '5xl': string;
306
- '4xl': string;
307
- '3xl': string;
308
- '2xl': string;
309
- xl: string;
310
- lg: string;
311
- md: string;
312
- sm: string;
313
- xs: string;
314
- };
315
- sub: {
316
- true: string;
317
- };
318
- italic: {
319
- true: string;
320
- };
321
- highlight: {
322
- true: string;
323
- };
324
- } | ({
325
- isTruncated: {
326
- true: string;
327
- };
328
- bold: {
329
- true: string;
330
- };
331
- underline: {
332
- true: string;
333
- };
334
- strikeThrough: {
335
- true: string;
336
- };
337
- size: {
338
- '5xl': string;
339
- '4xl': string;
340
- '3xl': string;
341
- '2xl': string;
342
- xl: string;
343
- lg: string;
344
- md: string;
345
- sm: string;
346
- xs: string;
347
- };
348
- sub: {
349
- true: string;
350
- };
351
- italic: {
352
- true: string;
353
- };
354
- highlight: {
355
- true: string;
356
- };
357
- } & {
358
- isTruncated: {
359
- true: import("tailwind-merge").ClassNameValue | {
360
- base?: import("tailwind-merge").ClassNameValue;
361
- };
362
- };
363
- bold: {
364
- true: import("tailwind-merge").ClassNameValue | {
365
- base?: import("tailwind-merge").ClassNameValue;
366
- };
367
- };
368
- underline: {
369
- true: import("tailwind-merge").ClassNameValue | {
370
- base?: import("tailwind-merge").ClassNameValue;
371
- };
372
- };
373
- strikeThrough: {
374
- true: import("tailwind-merge").ClassNameValue | {
375
- base?: import("tailwind-merge").ClassNameValue;
376
- };
377
- };
378
- size: {
379
- '5xl': import("tailwind-merge").ClassNameValue | {
380
- base?: import("tailwind-merge").ClassNameValue;
381
- };
382
- '4xl': import("tailwind-merge").ClassNameValue | {
383
- base?: import("tailwind-merge").ClassNameValue;
384
- };
385
- '3xl': import("tailwind-merge").ClassNameValue | {
386
- base?: import("tailwind-merge").ClassNameValue;
387
- };
388
- '2xl': import("tailwind-merge").ClassNameValue | {
389
- base?: import("tailwind-merge").ClassNameValue;
390
- };
391
- xl: import("tailwind-merge").ClassNameValue | {
392
- base?: import("tailwind-merge").ClassNameValue;
393
- };
394
- lg: import("tailwind-merge").ClassNameValue | {
395
- base?: import("tailwind-merge").ClassNameValue;
396
- };
397
- md: import("tailwind-merge").ClassNameValue | {
398
- base?: import("tailwind-merge").ClassNameValue;
399
- };
400
- sm: import("tailwind-merge").ClassNameValue | {
401
- base?: import("tailwind-merge").ClassNameValue;
402
- };
403
- xs: import("tailwind-merge").ClassNameValue | {
404
- base?: import("tailwind-merge").ClassNameValue;
405
- };
406
- };
407
- sub: {
408
- true: import("tailwind-merge").ClassNameValue | {
409
- base?: import("tailwind-merge").ClassNameValue;
410
- };
411
- };
412
- italic: {
413
- true: import("tailwind-merge").ClassNameValue | {
414
- base?: import("tailwind-merge").ClassNameValue;
415
- };
416
- };
417
- highlight: {
418
- true: import("tailwind-merge").ClassNameValue | {
419
- base?: import("tailwind-merge").ClassNameValue;
420
- };
421
- };
422
- }), undefined, "leading-5 font-bold font-heading my-0 text-typography-500 p-3 uppercase", import("tailwind-variants/dist/config").TVConfig<{
423
- isTruncated: {
424
- true: string;
425
- };
426
- bold: {
427
- true: string;
428
- };
429
- underline: {
430
- true: string;
431
- };
432
- strikeThrough: {
433
- true: string;
434
- };
435
- size: {
436
- '5xl': string;
437
- '4xl': string;
438
- '3xl': string;
439
- '2xl': string;
440
- xl: string;
441
- lg: string;
442
- md: string;
443
- sm: string;
444
- xs: string;
445
- };
446
- sub: {
447
- true: string;
448
- };
449
- italic: {
450
- true: string;
451
- };
452
- highlight: {
453
- true: string;
454
- };
455
- }, {
456
- isTruncated: {
457
- true: string;
458
- };
459
- bold: {
460
- true: string;
461
- };
462
- underline: {
463
- true: string;
464
- };
465
- strikeThrough: {
466
- true: string;
467
- };
468
- size: {
469
- '5xl': string;
470
- '4xl': string;
471
- '3xl': string;
472
- '2xl': string;
473
- xl: string;
474
- lg: string;
475
- md: string;
476
- sm: string;
477
- xs: string;
478
- };
479
- sub: {
480
- true: string;
481
- };
482
- italic: {
483
- true: string;
484
- };
485
- highlight: {
486
- true: string;
487
- };
488
- }>, {
489
- isTruncated: {
490
- true: string;
491
- };
492
- bold: {
493
- true: string;
494
- };
495
- underline: {
496
- true: string;
497
- };
498
- strikeThrough: {
499
- true: string;
500
- };
501
- size: {
502
- '5xl': string;
503
- '4xl': string;
504
- '3xl': string;
505
- '2xl': string;
506
- xl: string;
507
- lg: string;
508
- md: string;
509
- sm: string;
510
- xs: string;
511
- };
512
- sub: {
513
- true: string;
514
- };
515
- italic: {
516
- true: string;
517
- };
518
- highlight: {
519
- true: string;
520
- };
521
- }, undefined, import("@gluestack-ui/nativewind-utils/types").TVReturnType<{
522
- isTruncated: {
523
- true: string;
524
- };
525
- bold: {
526
- true: string;
527
- };
528
- underline: {
529
- true: string;
530
- };
531
- strikeThrough: {
532
- true: string;
533
- };
534
- size: {
535
- '5xl': string;
536
- '4xl': string;
537
- '3xl': string;
538
- '2xl': string;
539
- xl: string;
540
- lg: string;
541
- md: string;
542
- sm: string;
543
- xs: string;
544
- };
545
- sub: {
546
- true: string;
547
- };
548
- italic: {
549
- true: string;
550
- };
551
- highlight: {
552
- true: string;
553
- };
554
- }, undefined, "leading-5 font-bold font-heading my-0 text-typography-500 p-3 uppercase", import("tailwind-variants/dist/config").TVConfig<{
555
- isTruncated: {
556
- true: string;
557
- };
558
- bold: {
559
- true: string;
560
- };
561
- underline: {
562
- true: string;
563
- };
564
- strikeThrough: {
565
- true: string;
566
- };
567
- size: {
568
- '5xl': string;
569
- '4xl': string;
570
- '3xl': string;
571
- '2xl': string;
572
- xl: string;
573
- lg: string;
574
- md: string;
575
- sm: string;
576
- xs: string;
577
- };
578
- sub: {
579
- true: string;
580
- };
581
- italic: {
582
- true: string;
583
- };
584
- highlight: {
585
- true: string;
586
- };
587
- }, {
588
- isTruncated: {
589
- true: string;
590
- };
591
- bold: {
592
- true: string;
593
- };
594
- underline: {
595
- true: string;
596
- };
597
- strikeThrough: {
598
- true: string;
599
- };
600
- size: {
601
- '5xl': string;
602
- '4xl': string;
603
- '3xl': string;
604
- '2xl': string;
605
- xl: string;
606
- lg: string;
607
- md: string;
608
- sm: string;
609
- xs: string;
610
- };
611
- sub: {
612
- true: string;
613
- };
614
- italic: {
615
- true: string;
616
- };
617
- highlight: {
618
- true: string;
619
- };
620
- }>, unknown, unknown, undefined>>;
621
- type IActionsheetProps = VariantProps<typeof actionsheetStyle> & React.ComponentProps<typeof UIActionsheet> & {
622
- className?: string;
623
- };
624
- type IActionsheetItemProps = VariantProps<typeof actionsheetItemStyle> & React.ComponentProps<typeof UIActionsheet.Item> & {
625
- className?: string;
626
- };
627
- type IActionsheetItemTextProps = VariantProps<typeof actionsheetItemTextStyle> & React.ComponentProps<typeof UIActionsheet.ItemText> & {
628
- className?: string;
629
- };
630
- type IActionsheetDragIndicatorProps = VariantProps<typeof actionsheetDragIndicatorStyle> & React.ComponentProps<typeof UIActionsheet.DragIndicator> & {
631
- className?: string;
632
- };
633
- type IActionsheetDragIndicatorWrapperProps = VariantProps<typeof actionsheetDragIndicatorWrapperStyle> & React.ComponentProps<typeof UIActionsheet.DragIndicatorWrapper> & {
634
- className?: string;
635
- };
636
- type IActionsheetBackdropProps = VariantProps<typeof actionsheetBackdropStyle> & React.ComponentProps<typeof UIActionsheet.Backdrop> & {
637
- className?: string;
638
- };
639
- type IActionsheetScrollViewProps = VariantProps<typeof actionsheetScrollViewStyle> & React.ComponentProps<typeof UIActionsheet.ScrollView> & {
640
- className?: string;
641
- };
642
- type IActionsheetVirtualizedListProps = VariantProps<typeof actionsheetVirtualizedListStyle> & React.ComponentProps<typeof UIActionsheet.VirtualizedList> & {
643
- className?: string;
644
- };
645
- type IActionsheetFlatListProps = VariantProps<typeof actionsheetFlatListStyle> & React.ComponentProps<typeof UIActionsheet.FlatList> & {
646
- className?: string;
647
- };
648
- type IActionsheetSectionListProps = VariantProps<typeof actionsheetSectionListStyle> & React.ComponentProps<typeof UIActionsheet.SectionList> & {
649
- className?: string;
650
- };
651
- type IActionsheetSectionHeaderTextProps = VariantProps<typeof actionsheetSectionHeaderTextStyle> & React.ComponentProps<typeof UIActionsheet.SectionHeaderText> & {
652
- className?: string;
653
- };
654
- declare const Actionsheet: React.ForwardRefExoticComponent<Omit<IActionsheetProps, "ref"> & React.RefAttributes<import("react-native").ViewProps>>;
655
- declare const ActionsheetContent: React.ForwardRefExoticComponent<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"> & {
656
- context?: any;
657
- } & 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"> & {
658
- context?: any;
659
- } & 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)>> & {
660
- className?: string;
661
- } & {
662
- className?: string;
663
- }, "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"> & {
664
- context?: any;
665
- } & 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)>>>;
666
- declare const ActionsheetItem: React.ForwardRefExoticComponent<Omit<IActionsheetItemProps, "ref"> & React.RefAttributes<Omit<import("react-native").PressableProps & React.RefAttributes<View>, "ref"> & {
667
- context?: any;
668
- } & React.RefAttributes<React.ForwardRefExoticComponent<import("react-native").PressableProps & React.RefAttributes<View>>>>>;
669
- declare const ActionsheetItemText: React.ForwardRefExoticComponent<Omit<IActionsheetItemTextProps, "ref"> & React.RefAttributes<import("react-native").TextProps>>;
670
- declare const ActionsheetDragIndicator: React.ForwardRefExoticComponent<Omit<IActionsheetDragIndicatorProps, "ref"> & React.RefAttributes<import("react-native").ViewProps>>;
671
- declare const ActionsheetDragIndicatorWrapper: React.ForwardRefExoticComponent<Omit<IActionsheetDragIndicatorWrapperProps, "ref"> & React.RefAttributes<import("react-native").ViewProps>>;
672
- declare const ActionsheetBackdrop: React.ForwardRefExoticComponent<Omit<IActionsheetBackdropProps, "ref"> & React.RefAttributes<import("react-native").Animated.AnimatedProps<Omit<import("react-native").PressableProps & React.RefAttributes<View>, "ref"> & {
673
- ref?: React.Ref<View>;
674
- }> & 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>>>;
675
- declare const ActionsheetScrollView: React.ForwardRefExoticComponent<Omit<IActionsheetScrollViewProps, "ref"> & React.RefAttributes<import("react-native").ScrollViewProps>>;
676
- declare const ActionsheetVirtualizedList: React.ForwardRefExoticComponent<Omit<IActionsheetVirtualizedListProps, "ref"> & React.RefAttributes<import("react-native").VirtualizedListProps<unknown>>>;
677
- declare const ActionsheetFlatList: React.ForwardRefExoticComponent<Omit<IActionsheetFlatListProps, "ref"> & React.RefAttributes<import("react-native").FlatListProps<unknown>>>;
678
- declare const ActionsheetSectionList: React.ForwardRefExoticComponent<Omit<IActionsheetSectionListProps, "ref"> & React.RefAttributes<import("react-native").SectionListProps<unknown, unknown>>>;
679
- declare const ActionsheetSectionHeaderText: React.ForwardRefExoticComponent<Omit<IActionsheetSectionHeaderTextProps, "ref"> & React.RefAttributes<import("@expo/html-elements/build/primitives/Text").TextProps>>;
680
- declare const ActionsheetIcon: React.ForwardRefExoticComponent<(Omit<VariantProps<import("@gluestack-ui/nativewind-utils/types").TVReturnType<{
681
- size: {
682
- '2xs': string;
683
- xs: string;
684
- sm: string;
685
- md: string;
686
- lg: string;
687
- xl: string;
688
- };
689
- } | ({
690
- size: {
691
- '2xs': string;
692
- xs: string;
693
- sm: string;
694
- md: string;
695
- lg: string;
696
- xl: string;
697
- };
698
- } & {
699
- size: {
700
- '2xs': import("tailwind-merge").ClassNameValue | {
701
- base?: import("tailwind-merge").ClassNameValue;
702
- };
703
- xs: import("tailwind-merge").ClassNameValue | {
704
- base?: import("tailwind-merge").ClassNameValue;
705
- };
706
- sm: import("tailwind-merge").ClassNameValue | {
707
- base?: import("tailwind-merge").ClassNameValue;
708
- };
709
- md: import("tailwind-merge").ClassNameValue | {
710
- base?: import("tailwind-merge").ClassNameValue;
711
- };
712
- lg: import("tailwind-merge").ClassNameValue | {
713
- base?: import("tailwind-merge").ClassNameValue;
714
- };
715
- xl: import("tailwind-merge").ClassNameValue | {
716
- base?: import("tailwind-merge").ClassNameValue;
717
- };
718
- };
719
- }), undefined, "text-typography-900", import("tailwind-variants/dist/config").TVConfig<{
720
- size: {
721
- '2xs': string;
722
- xs: string;
723
- sm: string;
724
- md: string;
725
- lg: string;
726
- xl: string;
727
- };
728
- }, {
729
- size: {
730
- '2xs': string;
731
- xs: string;
732
- sm: string;
733
- md: string;
734
- lg: string;
735
- xl: string;
736
- };
737
- }>, {
738
- size: {
739
- '2xs': string;
740
- xs: string;
741
- sm: string;
742
- md: string;
743
- lg: string;
744
- xl: string;
745
- };
746
- }, undefined, import("@gluestack-ui/nativewind-utils/types").TVReturnType<{
747
- size: {
748
- '2xs': string;
749
- xs: string;
750
- sm: string;
751
- md: string;
752
- lg: string;
753
- xl: string;
754
- };
755
- }, undefined, "text-typography-900", import("tailwind-variants/dist/config").TVConfig<{
756
- size: {
757
- '2xs': string;
758
- xs: string;
759
- sm: string;
760
- md: string;
761
- lg: string;
762
- xl: string;
763
- };
764
- }, {
765
- size: {
766
- '2xs': string;
767
- xs: string;
768
- sm: string;
769
- md: string;
770
- lg: string;
771
- xl: string;
772
- };
773
- }>, unknown, unknown, undefined>>> & React.RefAttributes<import("@gluestack-ui/icon/lib/createIcon").IIconProps & (((import("@gluestack-ui/icon").IPrimitiveIcon & React.RefAttributes<import("@gluestack-ui/icon").Svg>) | {
774
- fill?: import("react-native").ColorValue;
775
- stroke?: import("react-native").ColorValue;
776
- }) & React.RefAttributes<(import("@gluestack-ui/icon").IPrimitiveIcon & React.RefAttributes<import("@gluestack-ui/icon").Svg>) | {
777
- fill?: import("react-native").ColorValue;
778
- stroke?: import("react-native").ColorValue;
779
- }>)> & 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>) | {
780
- fill?: import("react-native").ColorValue;
781
- stroke?: import("react-native").ColorValue;
782
- }>, "ref"> & {
783
- className?: string;
784
- as?: React.ElementType;
785
- }, "ref"> | Omit<VariantProps<import("@gluestack-ui/nativewind-utils/types").TVReturnType<{
786
- size: {
787
- '2xs': string;
788
- xs: string;
789
- sm: string;
790
- md: string;
791
- lg: string;
792
- xl: string;
793
- };
794
- } | ({
795
- size: {
796
- '2xs': string;
797
- xs: string;
798
- sm: string;
799
- md: string;
800
- lg: string;
801
- xl: string;
802
- };
803
- } & {
804
- size: {
805
- '2xs': import("tailwind-merge").ClassNameValue | {
806
- base?: import("tailwind-merge").ClassNameValue;
807
- };
808
- xs: import("tailwind-merge").ClassNameValue | {
809
- base?: import("tailwind-merge").ClassNameValue;
810
- };
811
- sm: import("tailwind-merge").ClassNameValue | {
812
- base?: import("tailwind-merge").ClassNameValue;
813
- };
814
- md: import("tailwind-merge").ClassNameValue | {
815
- base?: import("tailwind-merge").ClassNameValue;
816
- };
817
- lg: import("tailwind-merge").ClassNameValue | {
818
- base?: import("tailwind-merge").ClassNameValue;
819
- };
820
- xl: import("tailwind-merge").ClassNameValue | {
821
- base?: import("tailwind-merge").ClassNameValue;
822
- };
823
- };
824
- }), undefined, "text-typography-900", import("tailwind-variants/dist/config").TVConfig<{
825
- size: {
826
- '2xs': string;
827
- xs: string;
828
- sm: string;
829
- md: string;
830
- lg: string;
831
- xl: string;
832
- };
833
- }, {
834
- size: {
835
- '2xs': string;
836
- xs: string;
837
- sm: string;
838
- md: string;
839
- lg: string;
840
- xl: string;
841
- };
842
- }>, {
843
- size: {
844
- '2xs': string;
845
- xs: string;
846
- sm: string;
847
- md: string;
848
- lg: string;
849
- xl: string;
850
- };
851
- }, undefined, import("@gluestack-ui/nativewind-utils/types").TVReturnType<{
852
- size: {
853
- '2xs': string;
854
- xs: string;
855
- sm: string;
856
- md: string;
857
- lg: string;
858
- xl: string;
859
- };
860
- }, undefined, "text-typography-900", import("tailwind-variants/dist/config").TVConfig<{
861
- size: {
862
- '2xs': string;
863
- xs: string;
864
- sm: string;
865
- md: string;
866
- lg: string;
867
- xl: string;
868
- };
869
- }, {
870
- size: {
871
- '2xs': string;
872
- xs: string;
873
- sm: string;
874
- md: string;
875
- lg: string;
876
- xl: string;
877
- };
878
- }>, unknown, unknown, undefined>>> & React.RefAttributes<import("@gluestack-ui/icon/lib/createIcon").IIconProps & (((import("@gluestack-ui/icon").IPrimitiveIcon & React.RefAttributes<import("@gluestack-ui/icon").Svg>) | {
879
- fill?: import("react-native").ColorValue;
880
- stroke?: import("react-native").ColorValue;
881
- }) & React.RefAttributes<(import("@gluestack-ui/icon").IPrimitiveIcon & React.RefAttributes<import("@gluestack-ui/icon").Svg>) | {
882
- fill?: import("react-native").ColorValue;
883
- stroke?: import("react-native").ColorValue;
884
- }>)> & Omit<import("@gluestack-ui/icon/lib/createIcon").IIconProps & {
885
- fill?: import("react-native").ColorValue;
886
- stroke?: import("react-native").ColorValue;
887
- } & React.RefAttributes<(import("@gluestack-ui/icon").IPrimitiveIcon & React.RefAttributes<import("@gluestack-ui/icon").Svg>) | {
888
- fill?: import("react-native").ColorValue;
889
- stroke?: import("react-native").ColorValue;
890
- }>, "ref"> & {
891
- className?: string;
892
- as?: React.ElementType;
893
- }, "ref">) & React.RefAttributes<import("@gluestack-ui/icon/lib/createIcon").IIconProps & (((import("@gluestack-ui/icon").IPrimitiveIcon & React.RefAttributes<import("@gluestack-ui/icon").Svg>) | {
894
- fill?: import("react-native").ColorValue;
895
- stroke?: import("react-native").ColorValue;
896
- }) & React.RefAttributes<(import("@gluestack-ui/icon").IPrimitiveIcon & React.RefAttributes<import("@gluestack-ui/icon").Svg>) | {
897
- fill?: import("react-native").ColorValue;
898
- stroke?: import("react-native").ColorValue;
899
- }>)>>;
900
- export { Actionsheet, ActionsheetContent, ActionsheetItem, ActionsheetItemText, ActionsheetDragIndicator, ActionsheetDragIndicatorWrapper, ActionsheetBackdrop, ActionsheetScrollView, ActionsheetVirtualizedList, ActionsheetFlatList, ActionsheetSectionList, ActionsheetSectionHeaderText, ActionsheetIcon, };