@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,137 +0,0 @@
1
- 'use client';
2
- import React from 'react';
3
- import { createModal } from '@gluestack-ui/modal';
4
- import { Pressable, View, ScrollView } from 'react-native';
5
- import { Motion, AnimatePresence, createMotionAnimatedComponent } from '@legendapp/motion';
6
- import { tva } from '@gluestack-ui/nativewind-utils/tva';
7
- import { withStyleContext, useStyleContext } from '@gluestack-ui/nativewind-utils/withStyleContext';
8
- import { cssInterop } from 'nativewind';
9
- const AnimatedPressable = createMotionAnimatedComponent(Pressable);
10
- const SCOPE = 'MODAL';
11
- const UIModal = createModal({
12
- Root: withStyleContext(View, SCOPE),
13
- Backdrop: AnimatedPressable,
14
- Content: Motion.View,
15
- Body: ScrollView,
16
- CloseButton: Pressable,
17
- Footer: View,
18
- Header: View,
19
- AnimatePresence: AnimatePresence,
20
- });
21
- cssInterop(AnimatedPressable, { className: 'style' });
22
- cssInterop(Motion.View, { className: 'style' });
23
- const modalStyle = tva({
24
- base: 'group/modal w-full h-full justify-center items-center web:pointer-events-none',
25
- variants: {
26
- size: {
27
- xs: '',
28
- sm: '',
29
- md: '',
30
- lg: '',
31
- full: '',
32
- },
33
- },
34
- });
35
- const modalBackdropStyle = tva({
36
- base: 'absolute left-0 top-0 right-0 bottom-0 bg-background-dark web:cursor-default',
37
- });
38
- const modalContentStyle = tva({
39
- base: 'bg-background-0 rounded-md overflow-hidden border border-outline-100 shadow-hard-2 p-6',
40
- parentVariants: {
41
- size: {
42
- xs: 'w-[60%] max-w-[360px]',
43
- sm: 'w-[70%] max-w-[420px]',
44
- md: 'w-[80%] max-w-[510px]',
45
- lg: 'w-[90%] max-w-[640px]',
46
- full: 'w-full',
47
- },
48
- },
49
- });
50
- const modalBodyStyle = tva({
51
- base: 'mt-2 mb-6',
52
- });
53
- const modalCloseButtonStyle = tva({
54
- base: 'group/modal-close-button z-10 rounded data-[focus-visible=true]:web:bg-background-100 web:outline-0 cursor-pointer',
55
- });
56
- const modalHeaderStyle = tva({
57
- base: 'justify-between items-center flex-row',
58
- });
59
- const modalFooterStyle = tva({
60
- base: 'flex-row justify-end items-center gap-2',
61
- });
62
- const Modal = React.forwardRef(({ className, size = 'md', ...props }, ref) => (React.createElement(UIModal, { ref: ref, ...props, pointerEvents: "box-none", className: modalStyle({ size, class: className }), context: { size } })));
63
- const ModalBackdrop = React.forwardRef(({ className, ...props }, ref) => {
64
- return (React.createElement(UIModal.Backdrop, { ref: ref, initial: {
65
- opacity: 0,
66
- }, animate: {
67
- opacity: 0.5,
68
- }, exit: {
69
- opacity: 0,
70
- }, transition: {
71
- type: 'spring',
72
- damping: 18,
73
- stiffness: 250,
74
- opacity: {
75
- type: 'timing',
76
- duration: 250,
77
- },
78
- }, ...props, className: modalBackdropStyle({
79
- class: className,
80
- }) }));
81
- });
82
- const ModalContent = React.forwardRef(({ className, size, ...props }, ref) => {
83
- const { size: parentSize } = useStyleContext(SCOPE);
84
- return (React.createElement(UIModal.Content, { ref: ref, initial: {
85
- opacity: 0,
86
- scale: 0.9,
87
- }, animate: {
88
- opacity: 1,
89
- scale: 1,
90
- }, exit: {
91
- opacity: 0,
92
- }, transition: {
93
- type: 'spring',
94
- damping: 18,
95
- stiffness: 250,
96
- opacity: {
97
- type: 'timing',
98
- duration: 250,
99
- },
100
- }, ...props, className: modalContentStyle({
101
- parentVariants: {
102
- size: parentSize,
103
- },
104
- size,
105
- class: className,
106
- }), pointerEvents: "auto" }));
107
- });
108
- const ModalHeader = React.forwardRef(({ className, ...props }, ref) => {
109
- return (React.createElement(UIModal.Header, { ref: ref, ...props, className: modalHeaderStyle({
110
- class: className,
111
- }) }));
112
- });
113
- const ModalBody = React.forwardRef(({ className, ...props }, ref) => {
114
- return (React.createElement(UIModal.Body, { ref: ref, ...props, className: modalBodyStyle({
115
- class: className,
116
- }) }));
117
- });
118
- const ModalFooter = React.forwardRef(({ className, ...props }, ref) => {
119
- return (React.createElement(UIModal.Footer, { ref: ref, ...props, className: modalFooterStyle({
120
- class: className,
121
- }) }));
122
- });
123
- const ModalCloseButton = React.forwardRef(({ className, ...props }, ref) => {
124
- return (React.createElement(UIModal.CloseButton, { ref: ref, ...props, className: modalCloseButtonStyle({
125
- class: className,
126
- }) }));
127
- });
128
- // Assign display names
129
- Modal.displayName = 'Modal';
130
- ModalBackdrop.displayName = 'ModalBackdrop';
131
- ModalContent.displayName = 'ModalContent';
132
- ModalHeader.displayName = 'ModalHeader';
133
- ModalBody.displayName = 'ModalBody';
134
- ModalFooter.displayName = 'ModalFooter';
135
- ModalCloseButton.displayName = 'ModalCloseButton';
136
- export { Modal, ModalBackdrop, ModalContent, ModalCloseButton, ModalHeader, ModalBody, ModalFooter };
137
- //# sourceMappingURL=index.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/components/ui/modal/index.tsx"],"names":[],"mappings":"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"}
@@ -1,310 +0,0 @@
1
- import React from 'react';
2
- import { View } from 'react-native';
3
- import type { VariantProps } from '@gluestack-ui/nativewind-utils';
4
- declare const UIPopover: import("@gluestack-ui/popover/lib/types").IPopoverComponentType<import("react-native").ViewProps & {
5
- context?: any;
6
- } & React.RefAttributes<typeof View>, 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>, 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>, import("react-native").ViewProps, import("react-native").ViewProps, import("react-native").ScrollViewProps, import("react-native").Animated.AnimatedProps<Omit<import("react-native").PressableProps & React.RefAttributes<View>, "ref"> & {
7
- ref?: React.Ref<View>;
8
- }> & 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>, import("react-native").PressableProps & React.RefAttributes<View>>;
9
- declare const popoverStyle: import("@gluestack-ui/nativewind-utils/types").TVReturnType<{
10
- size: {
11
- xs: string;
12
- sm: string;
13
- md: string;
14
- lg: string;
15
- full: string;
16
- };
17
- } | ({
18
- size: {
19
- xs: string;
20
- sm: string;
21
- md: string;
22
- lg: string;
23
- full: string;
24
- };
25
- } & {
26
- size: {
27
- xs: import("tailwind-merge").ClassNameValue | {
28
- base?: import("tailwind-merge").ClassNameValue;
29
- };
30
- sm: import("tailwind-merge").ClassNameValue | {
31
- base?: import("tailwind-merge").ClassNameValue;
32
- };
33
- md: import("tailwind-merge").ClassNameValue | {
34
- base?: import("tailwind-merge").ClassNameValue;
35
- };
36
- lg: import("tailwind-merge").ClassNameValue | {
37
- base?: import("tailwind-merge").ClassNameValue;
38
- };
39
- full: import("tailwind-merge").ClassNameValue | {
40
- base?: import("tailwind-merge").ClassNameValue;
41
- };
42
- };
43
- }), undefined, "group/popover w-full h-full justify-center items-center web:pointer-events-none", import("tailwind-variants/dist/config").TVConfig<{
44
- size: {
45
- xs: string;
46
- sm: string;
47
- md: string;
48
- lg: string;
49
- full: string;
50
- };
51
- }, {
52
- size: {
53
- xs: string;
54
- sm: string;
55
- md: string;
56
- lg: string;
57
- full: string;
58
- };
59
- }>, {
60
- size: {
61
- xs: string;
62
- sm: string;
63
- md: string;
64
- lg: string;
65
- full: string;
66
- };
67
- }, undefined, import("@gluestack-ui/nativewind-utils/types").TVReturnType<{
68
- size: {
69
- xs: string;
70
- sm: string;
71
- md: string;
72
- lg: string;
73
- full: string;
74
- };
75
- }, undefined, "group/popover w-full h-full justify-center items-center web:pointer-events-none", import("tailwind-variants/dist/config").TVConfig<{
76
- size: {
77
- xs: string;
78
- sm: string;
79
- md: string;
80
- lg: string;
81
- full: string;
82
- };
83
- }, {
84
- size: {
85
- xs: string;
86
- sm: string;
87
- md: string;
88
- lg: string;
89
- full: string;
90
- };
91
- }>, unknown, unknown, undefined>>;
92
- declare const popoverArrowStyle: import("@gluestack-ui/nativewind-utils/types").TVReturnType<{
93
- placement: {
94
- 'top left': string;
95
- top: string;
96
- 'top right': string;
97
- bottom: string;
98
- 'bottom left': string;
99
- 'bottom right': string;
100
- left: string;
101
- 'left top': string;
102
- 'left bottom': string;
103
- right: string;
104
- 'right top': string;
105
- 'right bottom': string;
106
- };
107
- } | ({
108
- placement: {
109
- 'top left': string;
110
- top: string;
111
- 'top right': string;
112
- bottom: string;
113
- 'bottom left': string;
114
- 'bottom right': string;
115
- left: string;
116
- 'left top': string;
117
- 'left bottom': string;
118
- right: string;
119
- 'right top': string;
120
- 'right bottom': string;
121
- };
122
- } & {
123
- placement: {
124
- 'top left': import("tailwind-merge").ClassNameValue | {
125
- base?: import("tailwind-merge").ClassNameValue;
126
- };
127
- top: import("tailwind-merge").ClassNameValue | {
128
- base?: import("tailwind-merge").ClassNameValue;
129
- };
130
- 'top right': import("tailwind-merge").ClassNameValue | {
131
- base?: import("tailwind-merge").ClassNameValue;
132
- };
133
- bottom: import("tailwind-merge").ClassNameValue | {
134
- base?: import("tailwind-merge").ClassNameValue;
135
- };
136
- 'bottom left': import("tailwind-merge").ClassNameValue | {
137
- base?: import("tailwind-merge").ClassNameValue;
138
- };
139
- 'bottom right': import("tailwind-merge").ClassNameValue | {
140
- base?: import("tailwind-merge").ClassNameValue;
141
- };
142
- left: import("tailwind-merge").ClassNameValue | {
143
- base?: import("tailwind-merge").ClassNameValue;
144
- };
145
- 'left top': import("tailwind-merge").ClassNameValue | {
146
- base?: import("tailwind-merge").ClassNameValue;
147
- };
148
- 'left bottom': import("tailwind-merge").ClassNameValue | {
149
- base?: import("tailwind-merge").ClassNameValue;
150
- };
151
- right: import("tailwind-merge").ClassNameValue | {
152
- base?: import("tailwind-merge").ClassNameValue;
153
- };
154
- 'right top': import("tailwind-merge").ClassNameValue | {
155
- base?: import("tailwind-merge").ClassNameValue;
156
- };
157
- 'right bottom': import("tailwind-merge").ClassNameValue | {
158
- base?: import("tailwind-merge").ClassNameValue;
159
- };
160
- };
161
- }), undefined, "bg-background-0 z-[1] border absolute overflow-hidden h-3.5 w-3.5 border-outline-100", import("tailwind-variants/dist/config").TVConfig<{
162
- placement: {
163
- 'top left': string;
164
- top: string;
165
- 'top right': string;
166
- bottom: string;
167
- 'bottom left': string;
168
- 'bottom right': string;
169
- left: string;
170
- 'left top': string;
171
- 'left bottom': string;
172
- right: string;
173
- 'right top': string;
174
- 'right bottom': string;
175
- };
176
- }, {
177
- placement: {
178
- 'top left': string;
179
- top: string;
180
- 'top right': string;
181
- bottom: string;
182
- 'bottom left': string;
183
- 'bottom right': string;
184
- left: string;
185
- 'left top': string;
186
- 'left bottom': string;
187
- right: string;
188
- 'right top': string;
189
- 'right bottom': string;
190
- };
191
- }>, {
192
- placement: {
193
- 'top left': string;
194
- top: string;
195
- 'top right': string;
196
- bottom: string;
197
- 'bottom left': string;
198
- 'bottom right': string;
199
- left: string;
200
- 'left top': string;
201
- 'left bottom': string;
202
- right: string;
203
- 'right top': string;
204
- 'right bottom': string;
205
- };
206
- }, undefined, import("@gluestack-ui/nativewind-utils/types").TVReturnType<{
207
- placement: {
208
- 'top left': string;
209
- top: string;
210
- 'top right': string;
211
- bottom: string;
212
- 'bottom left': string;
213
- 'bottom right': string;
214
- left: string;
215
- 'left top': string;
216
- 'left bottom': string;
217
- right: string;
218
- 'right top': string;
219
- 'right bottom': string;
220
- };
221
- }, undefined, "bg-background-0 z-[1] border absolute overflow-hidden h-3.5 w-3.5 border-outline-100", import("tailwind-variants/dist/config").TVConfig<{
222
- placement: {
223
- 'top left': string;
224
- top: string;
225
- 'top right': string;
226
- bottom: string;
227
- 'bottom left': string;
228
- 'bottom right': string;
229
- left: string;
230
- 'left top': string;
231
- 'left bottom': string;
232
- right: string;
233
- 'right top': string;
234
- 'right bottom': string;
235
- };
236
- }, {
237
- placement: {
238
- 'top left': string;
239
- top: string;
240
- 'top right': string;
241
- bottom: string;
242
- 'bottom left': string;
243
- 'bottom right': string;
244
- left: string;
245
- 'left top': string;
246
- 'left bottom': string;
247
- right: string;
248
- 'right top': string;
249
- 'right bottom': string;
250
- };
251
- }>, unknown, unknown, undefined>>;
252
- declare const popoverBackdropStyle: import("@gluestack-ui/nativewind-utils/types").TVReturnType<{} | {}, undefined, "absolute left-0 top-0 right-0 bottom-0 web:cursor-default", 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 web:cursor-default", import("tailwind-variants/dist/config").TVConfig<unknown, unknown>, unknown, unknown, undefined>>;
253
- declare const popoverCloseButtonStyle: import("@gluestack-ui/nativewind-utils/types").TVReturnType<{} | {}, undefined, "group/popover-close-button z-[1] rounded-sm data-[focus-visible=true]:web:bg-background-100 web:outline-0 web:cursor-pointer", import("tailwind-variants/dist/config").TVConfig<unknown, unknown>, unknown, undefined, import("@gluestack-ui/nativewind-utils/types").TVReturnType<unknown, undefined, "group/popover-close-button z-[1] rounded-sm data-[focus-visible=true]:web:bg-background-100 web:outline-0 web:cursor-pointer", import("tailwind-variants/dist/config").TVConfig<unknown, unknown>, unknown, unknown, undefined>>;
254
- declare const popoverContentStyle: import("@gluestack-ui/nativewind-utils/types").TVReturnType<{
255
- size: {
256
- xs: string;
257
- sm: string;
258
- md: string;
259
- lg: string;
260
- full: string;
261
- };
262
- } | ({} & {
263
- size: {
264
- xs: string;
265
- sm: string;
266
- md: string;
267
- lg: string;
268
- full: string;
269
- };
270
- }), undefined, "bg-background-0 rounded-lg overflow-hidden border border-outline-100 w-full", import("tailwind-variants/dist/config").TVConfig<unknown, unknown>, unknown, undefined, import("@gluestack-ui/nativewind-utils/types").TVReturnType<unknown, undefined, "bg-background-0 rounded-lg overflow-hidden border border-outline-100 w-full", import("tailwind-variants/dist/config").TVConfig<unknown, unknown>, unknown, unknown, undefined>>;
271
- declare const popoverHeaderStyle: import("@gluestack-ui/nativewind-utils/types").TVReturnType<{} | {}, undefined, "flex-row justify-between items-center", import("tailwind-variants/dist/config").TVConfig<unknown, unknown>, unknown, undefined, import("@gluestack-ui/nativewind-utils/types").TVReturnType<unknown, undefined, "flex-row justify-between items-center", import("tailwind-variants/dist/config").TVConfig<unknown, unknown>, unknown, unknown, undefined>>;
272
- declare const popoverBodyStyle: 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>>;
273
- declare const popoverFooterStyle: import("@gluestack-ui/nativewind-utils/types").TVReturnType<{} | {}, undefined, "flex-row justify-between items-center", import("tailwind-variants/dist/config").TVConfig<unknown, unknown>, unknown, undefined, import("@gluestack-ui/nativewind-utils/types").TVReturnType<unknown, undefined, "flex-row justify-between items-center", import("tailwind-variants/dist/config").TVConfig<unknown, unknown>, unknown, unknown, undefined>>;
274
- type IPopoverProps = React.ComponentProps<typeof UIPopover> & VariantProps<typeof popoverStyle> & {
275
- className?: string;
276
- };
277
- type IPopoverArrowProps = React.ComponentProps<typeof UIPopover.Arrow> & VariantProps<typeof popoverArrowStyle> & {
278
- className?: string;
279
- };
280
- type IPopoverContentProps = React.ComponentProps<typeof UIPopover.Content> & VariantProps<typeof popoverContentStyle> & {
281
- className?: string;
282
- };
283
- type IPopoverHeaderProps = React.ComponentProps<typeof UIPopover.Header> & VariantProps<typeof popoverHeaderStyle> & {
284
- className?: string;
285
- };
286
- type IPopoverFooterProps = React.ComponentProps<typeof UIPopover.Footer> & VariantProps<typeof popoverFooterStyle> & {
287
- className?: string;
288
- };
289
- type IPopoverBodyProps = React.ComponentProps<typeof UIPopover.Body> & VariantProps<typeof popoverBodyStyle> & {
290
- className?: string;
291
- };
292
- type IPopoverBackdropProps = React.ComponentProps<typeof UIPopover.Backdrop> & VariantProps<typeof popoverBackdropStyle> & {
293
- className?: string;
294
- };
295
- type IPopoverCloseButtonProps = React.ComponentProps<typeof UIPopover.CloseButton> & VariantProps<typeof popoverCloseButtonStyle> & {
296
- className?: string;
297
- };
298
- declare const Popover: React.ForwardRefExoticComponent<Omit<IPopoverProps, "ref"> & React.RefAttributes<import("react-native").ViewProps & {
299
- context?: any;
300
- } & React.RefAttributes<typeof View>>>;
301
- declare const PopoverContent: React.ForwardRefExoticComponent<Omit<IPopoverContentProps, "ref"> & React.RefAttributes<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>>>;
302
- declare const PopoverArrow: React.ForwardRefExoticComponent<Omit<IPopoverArrowProps, "ref"> & React.RefAttributes<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>>>;
303
- declare const PopoverBackdrop: React.ForwardRefExoticComponent<Omit<IPopoverBackdropProps, "ref"> & React.RefAttributes<import("react-native").Animated.AnimatedProps<Omit<import("react-native").PressableProps & React.RefAttributes<View>, "ref"> & {
304
- ref?: React.Ref<View>;
305
- }> & 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>>>;
306
- declare const PopoverBody: React.ForwardRefExoticComponent<Omit<IPopoverBodyProps, "ref"> & React.RefAttributes<import("react-native").ScrollViewProps>>;
307
- declare const PopoverCloseButton: React.ForwardRefExoticComponent<Omit<IPopoverCloseButtonProps, "ref"> & React.RefAttributes<import("react-native").PressableProps & React.RefAttributes<View>>>;
308
- declare const PopoverFooter: React.ForwardRefExoticComponent<Omit<IPopoverFooterProps, "ref"> & React.RefAttributes<import("react-native").ViewProps>>;
309
- declare const PopoverHeader: React.ForwardRefExoticComponent<Omit<IPopoverHeaderProps, "ref"> & React.RefAttributes<import("react-native").ViewProps>>;
310
- export { Popover, PopoverBackdrop, PopoverArrow, PopoverCloseButton, PopoverFooter, PopoverHeader, PopoverBody, PopoverContent, };
@@ -1,172 +0,0 @@
1
- 'use client';
2
- import React from 'react';
3
- import { View, Pressable, ScrollView } from 'react-native';
4
- import { Motion, createMotionAnimatedComponent, AnimatePresence } from '@legendapp/motion';
5
- import { createPopover } from '@gluestack-ui/popover';
6
- import { tva } from '@gluestack-ui/nativewind-utils/tva';
7
- import { withStyleContext, useStyleContext } from '@gluestack-ui/nativewind-utils/withStyleContext';
8
- import { cssInterop } from 'nativewind';
9
- const AnimatedPressable = createMotionAnimatedComponent(Pressable);
10
- const SCOPE = 'POPOVER';
11
- const UIPopover = createPopover({
12
- Root: withStyleContext(View, SCOPE),
13
- Arrow: Motion.View,
14
- Backdrop: AnimatedPressable,
15
- Body: ScrollView,
16
- CloseButton: Pressable,
17
- Content: Motion.View,
18
- Footer: View,
19
- Header: View,
20
- AnimatePresence: AnimatePresence,
21
- });
22
- cssInterop(Motion.View, { className: 'style' });
23
- cssInterop(AnimatedPressable, { className: 'style' });
24
- const popoverStyle = tva({
25
- base: 'group/popover w-full h-full justify-center items-center web:pointer-events-none',
26
- variants: {
27
- size: {
28
- xs: '',
29
- sm: '',
30
- md: '',
31
- lg: '',
32
- full: '',
33
- },
34
- },
35
- });
36
- const popoverArrowStyle = tva({
37
- base: 'bg-background-0 z-[1] border absolute overflow-hidden h-3.5 w-3.5 border-outline-100',
38
- variants: {
39
- placement: {
40
- 'top left': 'data-[flip=false]:border-t-0 data-[flip=false]:border-l-0 data-[flip=true]:border-b-0 data-[flip=true]:border-r-0',
41
- top: 'data-[flip=false]:border-t-0 data-[flip=false]:border-l-0 data-[flip=true]:border-b-0 data-[flip=true]:border-r-0',
42
- 'top right': 'data-[flip=false]:border-t-0 data-[flip=false]:border-l-0 data-[flip=true]:border-b-0 data-[flip=true]:border-r-0',
43
- bottom: 'data-[flip=false]:border-b-0 data-[flip=false]:border-r-0 data-[flip=true]:border-t-0 data-[flip=true]:border-l-0',
44
- 'bottom left': 'data-[flip=false]:border-b-0 data-[flip=false]:border-r-0 data-[flip=true]:border-t-0 data-[flip=true]:border-l-0',
45
- 'bottom right': 'data-[flip=false]:border-b-0 data-[flip=false]:border-r-0 data-[flip=true]:border-t-0 data-[flip=true]:border-l-0',
46
- left: 'data-[flip=false]:border-l-0 data-[flip=false]:border-b-0 data-[flip=true]:border-r-0 data-[flip=true]:border-t-0',
47
- 'left top': 'data-[flip=false]:border-l-0 data-[flip=false]:border-b-0 data-[flip=true]:border-r-0 data-[flip=true]:border-t-0',
48
- 'left bottom': 'data-[flip=false]:border-l-0 data-[flip=false]:border-b-0 data-[flip=true]:border-r-0 data-[flip=true]:border-t-0',
49
- right: 'data-[flip=false]:border-r-0 data-[flip=false]:border-t-0 data-[flip=true]:border-l-0 data-[flip=true]:border-b-0',
50
- 'right top': 'data-[flip=false]:border-r-0 data-[flip=false]:border-t-0 data-[flip=true]:border-l-0 data-[flip=true]:border-b-0',
51
- 'right bottom': 'data-[flip=false]:border-r-0 data-[flip=false]:border-t-0 data-[flip=true]:border-l-0 data-[flip=true]:border-b-0',
52
- },
53
- },
54
- });
55
- const popoverBackdropStyle = tva({
56
- base: 'absolute left-0 top-0 right-0 bottom-0 web:cursor-default',
57
- });
58
- const popoverCloseButtonStyle = tva({
59
- base: 'group/popover-close-button z-[1] rounded-sm data-[focus-visible=true]:web:bg-background-100 web:outline-0 web:cursor-pointer',
60
- });
61
- const popoverContentStyle = tva({
62
- base: 'bg-background-0 rounded-lg overflow-hidden border border-outline-100 w-full',
63
- parentVariants: {
64
- size: {
65
- xs: 'max-w-[360px] p-3.5',
66
- sm: 'max-w-[420px] p-4',
67
- md: 'max-w-[510px] p-[18px]',
68
- lg: 'max-w-[640px] p-5',
69
- full: 'p-6',
70
- },
71
- },
72
- });
73
- const popoverHeaderStyle = tva({
74
- base: 'flex-row justify-between items-center',
75
- });
76
- const popoverBodyStyle = tva({
77
- base: '',
78
- });
79
- const popoverFooterStyle = tva({
80
- base: 'flex-row justify-between items-center',
81
- });
82
- const Popover = React.forwardRef(({ className, size = 'md', placement = 'bottom', ...props }, ref) => {
83
- return (React.createElement(UIPopover, { ref: ref, placement: placement, ...props, className: popoverStyle({ size, class: className }), context: { size, placement }, pointerEvents: "box-none" }));
84
- });
85
- const PopoverContent = React.forwardRef(({ className, size, ...props }, ref) => {
86
- const { size: parentSize } = useStyleContext(SCOPE);
87
- return (React.createElement(UIPopover.Content, { ref: ref, transition: {
88
- type: 'spring',
89
- damping: 18,
90
- stiffness: 250,
91
- mass: 0.9,
92
- opacity: {
93
- type: 'timing',
94
- duration: 50,
95
- delay: 50,
96
- },
97
- }, ...props, className: popoverContentStyle({
98
- parentVariants: {
99
- size: parentSize,
100
- },
101
- size,
102
- class: className,
103
- }), pointerEvents: "auto" }));
104
- });
105
- const PopoverArrow = React.forwardRef(({ className, ...props }, ref) => {
106
- const { placement } = useStyleContext(SCOPE);
107
- return (React.createElement(UIPopover.Arrow, { ref: ref, transition: {
108
- type: 'spring',
109
- damping: 18,
110
- stiffness: 250,
111
- mass: 0.9,
112
- opacity: {
113
- type: 'timing',
114
- duration: 50,
115
- delay: 50,
116
- },
117
- }, ...props, className: popoverArrowStyle({
118
- class: className,
119
- placement,
120
- }) }));
121
- });
122
- const PopoverBackdrop = React.forwardRef(({ className, ...props }, ref) => {
123
- return (React.createElement(UIPopover.Backdrop, { ref: ref, ...props, initial: {
124
- opacity: 0,
125
- }, animate: {
126
- opacity: 0.1,
127
- }, exit: {
128
- opacity: 0,
129
- }, transition: {
130
- type: 'spring',
131
- damping: 18,
132
- stiffness: 450,
133
- mass: 0.9,
134
- opacity: {
135
- type: 'timing',
136
- duration: 50,
137
- delay: 50,
138
- },
139
- }, className: popoverBackdropStyle({
140
- class: className,
141
- }) }));
142
- });
143
- const PopoverBody = React.forwardRef(({ className, ...props }, ref) => {
144
- return (React.createElement(UIPopover.Body, { ref: ref, ...props, className: popoverBodyStyle({
145
- class: className,
146
- }) }));
147
- });
148
- const PopoverCloseButton = React.forwardRef(({ className, ...props }, ref) => {
149
- return (React.createElement(UIPopover.CloseButton, { ref: ref, ...props, className: popoverCloseButtonStyle({
150
- class: className,
151
- }) }));
152
- });
153
- const PopoverFooter = React.forwardRef(({ className, ...props }, ref) => {
154
- return (React.createElement(UIPopover.Footer, { ref: ref, ...props, className: popoverFooterStyle({
155
- class: className,
156
- }) }));
157
- });
158
- const PopoverHeader = React.forwardRef(({ className, ...props }, ref) => {
159
- return (React.createElement(UIPopover.Header, { ref: ref, ...props, className: popoverHeaderStyle({
160
- class: className,
161
- }) }));
162
- });
163
- Popover.displayName = 'Popover';
164
- PopoverArrow.displayName = 'PopoverArrow';
165
- PopoverBackdrop.displayName = 'PopoverBackdrop';
166
- PopoverContent.displayName = 'PopoverContent';
167
- PopoverHeader.displayName = 'PopoverHeader';
168
- PopoverFooter.displayName = 'PopoverFooter';
169
- PopoverBody.displayName = 'PopoverBody';
170
- PopoverCloseButton.displayName = 'PopoverCloseButton';
171
- export { Popover, PopoverBackdrop, PopoverArrow, PopoverCloseButton, PopoverFooter, PopoverHeader, PopoverBody, PopoverContent, };
172
- //# sourceMappingURL=index.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/components/ui/popover/index.tsx"],"names":[],"mappings":"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"}
@@ -1,2 +0,0 @@
1
- import React from 'react';
2
- export declare const Portal: React.ForwardRefExoticComponent<Omit<import("@gluestack-ui/overlay").IOverlayProps & React.RefAttributes<import("react-native").Modal>, "ref"> & React.RefAttributes<import("react-native").Modal>>;
@@ -1,9 +0,0 @@
1
- 'use client';
2
- import React from 'react';
3
- import { Overlay } from '@gluestack-ui/overlay';
4
- import { cssInterop } from 'nativewind';
5
- cssInterop(Overlay, { className: 'style' });
6
- export const Portal = React.forwardRef(({ ...props }, ref) => {
7
- return React.createElement(Overlay, { ...props, ref: ref });
8
- });
9
- //# sourceMappingURL=index.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/components/ui/portal/index.tsx"],"names":[],"mappings":"AAAA,YAAY,CAAC;AACb,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,EAAE,OAAO,EAAE,MAAM,uBAAuB,CAAC;AAChD,OAAO,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AAExC,UAAU,CAAC,OAAO,EAAE,EAAE,SAAS,EAAE,OAAO,EAAE,CAAC,CAAC;AAE5C,MAAM,CAAC,MAAM,MAAM,GAAG,KAAK,CAAC,UAAU,CAClC,CAAC,EAAE,GAAG,KAAK,EAAwC,EAAE,GAAG,EAAE,EAAE;IACxD,OAAO,oBAAC,OAAO,OAAK,KAAK,EAAE,GAAG,EAAE,GAAG,GAAI,CAAC;AAC5C,CAAC,CACJ,CAAC"}