@oxyhq/bloom 0.6.24 → 0.7.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 (423) hide show
  1. package/lib/commonjs/alert-dialog/AlertDialog.js +109 -0
  2. package/lib/commonjs/alert-dialog/AlertDialog.js.map +1 -0
  3. package/lib/commonjs/alert-dialog/AlertDialogHost.js +50 -0
  4. package/lib/commonjs/alert-dialog/AlertDialogHost.js.map +1 -0
  5. package/lib/commonjs/alert-dialog/confirm-store.js +80 -0
  6. package/lib/commonjs/alert-dialog/confirm-store.js.map +1 -0
  7. package/lib/commonjs/alert-dialog/index.js +19 -0
  8. package/lib/commonjs/alert-dialog/index.js.map +1 -0
  9. package/lib/commonjs/alert-dialog/index.web.js +19 -0
  10. package/lib/commonjs/alert-dialog/index.web.js.map +1 -0
  11. package/lib/commonjs/alert-dialog/types.js +6 -0
  12. package/lib/commonjs/alert-dialog/types.js.map +1 -0
  13. package/lib/commonjs/combobox/Combobox.js +227 -0
  14. package/lib/commonjs/combobox/Combobox.js.map +1 -0
  15. package/lib/commonjs/combobox/index.js +11 -0
  16. package/lib/commonjs/combobox/index.js.map +1 -0
  17. package/lib/commonjs/combobox/index.web.js +11 -0
  18. package/lib/commonjs/combobox/index.web.js.map +1 -0
  19. package/lib/commonjs/combobox/types.js +6 -0
  20. package/lib/commonjs/combobox/types.js.map +1 -0
  21. package/lib/commonjs/command/Command.js +256 -0
  22. package/lib/commonjs/command/Command.js.map +1 -0
  23. package/lib/commonjs/command/index.js +10 -0
  24. package/lib/commonjs/command/index.js.map +1 -0
  25. package/lib/commonjs/command/index.web.js +10 -0
  26. package/lib/commonjs/command/index.web.js.map +1 -0
  27. package/lib/commonjs/command/types.js +6 -0
  28. package/lib/commonjs/command/types.js.map +1 -0
  29. package/lib/commonjs/field/Field.js +68 -0
  30. package/lib/commonjs/field/Field.js.map +1 -0
  31. package/lib/commonjs/field/index.js +13 -0
  32. package/lib/commonjs/field/index.js.map +1 -0
  33. package/lib/commonjs/field/types.js +6 -0
  34. package/lib/commonjs/field/types.js.map +1 -0
  35. package/lib/commonjs/index.js +117 -25
  36. package/lib/commonjs/index.js.map +1 -1
  37. package/lib/commonjs/index.web.js +117 -25
  38. package/lib/commonjs/index.web.js.map +1 -1
  39. package/lib/commonjs/input-group/InputGroup.js +172 -0
  40. package/lib/commonjs/input-group/InputGroup.js.map +1 -0
  41. package/lib/commonjs/input-group/index.js +19 -0
  42. package/lib/commonjs/input-group/index.js.map +1 -0
  43. package/lib/commonjs/input-group/types.js +6 -0
  44. package/lib/commonjs/input-group/types.js.map +1 -0
  45. package/lib/commonjs/item/Item.js +172 -0
  46. package/lib/commonjs/item/Item.js.map +1 -0
  47. package/lib/commonjs/item/index.js +13 -0
  48. package/lib/commonjs/item/index.js.map +1 -0
  49. package/lib/commonjs/item/types.js +6 -0
  50. package/lib/commonjs/item/types.js.map +1 -0
  51. package/lib/commonjs/kbd/Kbd.js +79 -0
  52. package/lib/commonjs/kbd/Kbd.js.map +1 -0
  53. package/lib/commonjs/kbd/index.js +13 -0
  54. package/lib/commonjs/kbd/index.js.map +1 -0
  55. package/lib/commonjs/kbd/types.js +6 -0
  56. package/lib/commonjs/kbd/types.js.map +1 -0
  57. package/lib/commonjs/label/Label.js +60 -0
  58. package/lib/commonjs/label/Label.js.map +1 -0
  59. package/lib/commonjs/label/index.js +13 -0
  60. package/lib/commonjs/label/index.js.map +1 -0
  61. package/lib/commonjs/label/types.js +6 -0
  62. package/lib/commonjs/label/types.js.map +1 -0
  63. package/lib/commonjs/popover/context.js +18 -0
  64. package/lib/commonjs/popover/context.js.map +1 -0
  65. package/lib/commonjs/popover/index.js +111 -0
  66. package/lib/commonjs/popover/index.js.map +1 -0
  67. package/lib/commonjs/popover/index.web.js +286 -0
  68. package/lib/commonjs/popover/index.web.js.map +1 -0
  69. package/lib/commonjs/popover/types.js +6 -0
  70. package/lib/commonjs/popover/types.js.map +1 -0
  71. package/lib/commonjs/react-native-css.d.js +2 -0
  72. package/lib/commonjs/react-native-css.d.js.map +1 -0
  73. package/lib/commonjs/slider/Slider.js +255 -0
  74. package/lib/commonjs/slider/Slider.js.map +1 -0
  75. package/lib/commonjs/slider/index.js +13 -0
  76. package/lib/commonjs/slider/index.js.map +1 -0
  77. package/lib/commonjs/slider/types.js +6 -0
  78. package/lib/commonjs/slider/types.js.map +1 -0
  79. package/lib/commonjs/theme/BloomThemeProvider.js +39 -7
  80. package/lib/commonjs/theme/BloomThemeProvider.js.map +1 -1
  81. package/lib/commonjs/theme/color-presets.js +118 -118
  82. package/lib/commonjs/theme/color-presets.js.map +1 -1
  83. package/lib/commonjs/theme/color-scope/index.js +28 -6
  84. package/lib/commonjs/theme/color-scope/index.js.map +1 -1
  85. package/lib/commonjs/theme/color-scope/style-builder.js +35 -0
  86. package/lib/commonjs/theme/color-scope/style-builder.js.map +1 -1
  87. package/lib/commonjs/theme/native-root-vars.js +105 -0
  88. package/lib/commonjs/theme/native-root-vars.js.map +1 -0
  89. package/lib/commonjs/theme/native-root-vars.web.js +27 -0
  90. package/lib/commonjs/theme/native-root-vars.web.js.map +1 -0
  91. package/lib/commonjs/theme/preset-vars.js +4 -1
  92. package/lib/commonjs/theme/preset-vars.js.map +1 -1
  93. package/lib/module/alert-dialog/AlertDialog.js +104 -0
  94. package/lib/module/alert-dialog/AlertDialog.js.map +1 -0
  95. package/lib/module/alert-dialog/AlertDialogHost.js +45 -0
  96. package/lib/module/alert-dialog/AlertDialogHost.js.map +1 -0
  97. package/lib/module/alert-dialog/confirm-store.js +73 -0
  98. package/lib/module/alert-dialog/confirm-store.js.map +1 -0
  99. package/lib/module/alert-dialog/index.js +9 -0
  100. package/lib/module/alert-dialog/index.js.map +1 -0
  101. package/lib/module/alert-dialog/index.web.js +9 -0
  102. package/lib/module/alert-dialog/index.web.js.map +1 -0
  103. package/lib/module/alert-dialog/types.js +4 -0
  104. package/lib/module/alert-dialog/types.js.map +1 -0
  105. package/lib/module/combobox/Combobox.js +222 -0
  106. package/lib/module/combobox/Combobox.js.map +1 -0
  107. package/lib/module/combobox/index.js +6 -0
  108. package/lib/module/combobox/index.js.map +1 -0
  109. package/lib/module/combobox/index.web.js +6 -0
  110. package/lib/module/combobox/index.web.js.map +1 -0
  111. package/lib/module/combobox/types.js +4 -0
  112. package/lib/module/combobox/types.js.map +1 -0
  113. package/lib/module/command/Command.js +251 -0
  114. package/lib/module/command/Command.js.map +1 -0
  115. package/lib/module/command/index.js +6 -0
  116. package/lib/module/command/index.js.map +1 -0
  117. package/lib/module/command/index.web.js +6 -0
  118. package/lib/module/command/index.web.js.map +1 -0
  119. package/lib/module/command/types.js +4 -0
  120. package/lib/module/command/types.js.map +1 -0
  121. package/lib/module/field/Field.js +63 -0
  122. package/lib/module/field/Field.js.map +1 -0
  123. package/lib/module/field/index.js +4 -0
  124. package/lib/module/field/index.js.map +1 -0
  125. package/lib/module/field/types.js +4 -0
  126. package/lib/module/field/types.js.map +1 -0
  127. package/lib/module/index.js +10 -3
  128. package/lib/module/index.js.map +1 -1
  129. package/lib/module/index.web.js +10 -3
  130. package/lib/module/index.web.js.map +1 -1
  131. package/lib/module/input-group/InputGroup.js +167 -0
  132. package/lib/module/input-group/InputGroup.js.map +1 -0
  133. package/lib/module/input-group/index.js +4 -0
  134. package/lib/module/input-group/index.js.map +1 -0
  135. package/lib/module/input-group/types.js +4 -0
  136. package/lib/module/input-group/types.js.map +1 -0
  137. package/lib/module/item/Item.js +167 -0
  138. package/lib/module/item/Item.js.map +1 -0
  139. package/lib/module/item/index.js +4 -0
  140. package/lib/module/item/index.js.map +1 -0
  141. package/lib/module/item/types.js +4 -0
  142. package/lib/module/item/types.js.map +1 -0
  143. package/lib/module/kbd/Kbd.js +74 -0
  144. package/lib/module/kbd/Kbd.js.map +1 -0
  145. package/lib/module/kbd/index.js +4 -0
  146. package/lib/module/kbd/index.js.map +1 -0
  147. package/lib/module/kbd/types.js +4 -0
  148. package/lib/module/kbd/types.js.map +1 -0
  149. package/lib/module/label/Label.js +55 -0
  150. package/lib/module/label/Label.js.map +1 -0
  151. package/lib/module/label/index.js +4 -0
  152. package/lib/module/label/index.js.map +1 -0
  153. package/lib/module/label/types.js +4 -0
  154. package/lib/module/label/types.js.map +1 -0
  155. package/lib/module/popover/context.js +13 -0
  156. package/lib/module/popover/context.js.map +1 -0
  157. package/lib/module/popover/index.js +95 -0
  158. package/lib/module/popover/index.js.map +1 -0
  159. package/lib/module/popover/index.web.js +274 -0
  160. package/lib/module/popover/index.web.js.map +1 -0
  161. package/lib/module/popover/types.js +4 -0
  162. package/lib/module/popover/types.js.map +1 -0
  163. package/lib/module/react-native-css.d.js +2 -0
  164. package/lib/module/react-native-css.d.js.map +1 -0
  165. package/lib/module/slider/Slider.js +250 -0
  166. package/lib/module/slider/Slider.js.map +1 -0
  167. package/lib/module/slider/index.js +4 -0
  168. package/lib/module/slider/index.js.map +1 -0
  169. package/lib/module/slider/types.js +4 -0
  170. package/lib/module/slider/types.js.map +1 -0
  171. package/lib/module/theme/BloomThemeProvider.js +40 -8
  172. package/lib/module/theme/BloomThemeProvider.js.map +1 -1
  173. package/lib/module/theme/color-presets.js +118 -118
  174. package/lib/module/theme/color-presets.js.map +1 -1
  175. package/lib/module/theme/color-scope/index.js +29 -7
  176. package/lib/module/theme/color-scope/index.js.map +1 -1
  177. package/lib/module/theme/color-scope/style-builder.js +35 -0
  178. package/lib/module/theme/color-scope/style-builder.js.map +1 -1
  179. package/lib/module/theme/native-root-vars.js +101 -0
  180. package/lib/module/theme/native-root-vars.js.map +1 -0
  181. package/lib/module/theme/native-root-vars.web.js +23 -0
  182. package/lib/module/theme/native-root-vars.web.js.map +1 -0
  183. package/lib/module/theme/preset-vars.js +4 -1
  184. package/lib/module/theme/preset-vars.js.map +1 -1
  185. package/lib/typescript/commonjs/alert-dialog/AlertDialog.d.ts +21 -0
  186. package/lib/typescript/commonjs/alert-dialog/AlertDialog.d.ts.map +1 -0
  187. package/lib/typescript/commonjs/alert-dialog/AlertDialogHost.d.ts +15 -0
  188. package/lib/typescript/commonjs/alert-dialog/AlertDialogHost.d.ts.map +1 -0
  189. package/lib/typescript/commonjs/alert-dialog/confirm-store.d.ts +31 -0
  190. package/lib/typescript/commonjs/alert-dialog/confirm-store.d.ts.map +1 -0
  191. package/lib/typescript/commonjs/alert-dialog/index.d.ts +8 -0
  192. package/lib/typescript/commonjs/alert-dialog/index.d.ts.map +1 -0
  193. package/lib/typescript/commonjs/alert-dialog/index.web.d.ts +8 -0
  194. package/lib/typescript/commonjs/alert-dialog/index.web.d.ts.map +1 -0
  195. package/lib/typescript/commonjs/alert-dialog/types.d.ts +44 -0
  196. package/lib/typescript/commonjs/alert-dialog/types.d.ts.map +1 -0
  197. package/lib/typescript/commonjs/combobox/Combobox.d.ts +33 -0
  198. package/lib/typescript/commonjs/combobox/Combobox.d.ts.map +1 -0
  199. package/lib/typescript/commonjs/combobox/index.d.ts +6 -0
  200. package/lib/typescript/commonjs/combobox/index.d.ts.map +1 -0
  201. package/lib/typescript/commonjs/combobox/index.web.d.ts +6 -0
  202. package/lib/typescript/commonjs/combobox/index.web.d.ts.map +1 -0
  203. package/lib/typescript/commonjs/combobox/types.d.ts +40 -0
  204. package/lib/typescript/commonjs/combobox/types.d.ts.map +1 -0
  205. package/lib/typescript/commonjs/command/Command.d.ts +22 -0
  206. package/lib/typescript/commonjs/command/Command.d.ts.map +1 -0
  207. package/lib/typescript/commonjs/command/index.d.ts +6 -0
  208. package/lib/typescript/commonjs/command/index.d.ts.map +1 -0
  209. package/lib/typescript/commonjs/command/index.web.d.ts +6 -0
  210. package/lib/typescript/commonjs/command/index.web.d.ts.map +1 -0
  211. package/lib/typescript/commonjs/command/types.d.ts +46 -0
  212. package/lib/typescript/commonjs/command/types.d.ts.map +1 -0
  213. package/lib/typescript/commonjs/field/Field.d.ts +4 -0
  214. package/lib/typescript/commonjs/field/Field.d.ts.map +1 -0
  215. package/lib/typescript/commonjs/field/index.d.ts +3 -0
  216. package/lib/typescript/commonjs/field/index.d.ts.map +1 -0
  217. package/lib/typescript/commonjs/field/types.d.ts +26 -0
  218. package/lib/typescript/commonjs/field/types.d.ts.map +1 -0
  219. package/lib/typescript/commonjs/icons/common.d.ts +8 -8
  220. package/lib/typescript/commonjs/index.d.ts +19 -0
  221. package/lib/typescript/commonjs/index.d.ts.map +1 -1
  222. package/lib/typescript/commonjs/index.web.d.ts +19 -0
  223. package/lib/typescript/commonjs/index.web.d.ts.map +1 -1
  224. package/lib/typescript/commonjs/input-group/InputGroup.d.ts +9 -0
  225. package/lib/typescript/commonjs/input-group/InputGroup.d.ts.map +1 -0
  226. package/lib/typescript/commonjs/input-group/index.d.ts +3 -0
  227. package/lib/typescript/commonjs/input-group/index.d.ts.map +1 -0
  228. package/lib/typescript/commonjs/input-group/types.d.ts +35 -0
  229. package/lib/typescript/commonjs/input-group/types.d.ts.map +1 -0
  230. package/lib/typescript/commonjs/item/Item.d.ts +4 -0
  231. package/lib/typescript/commonjs/item/Item.d.ts.map +1 -0
  232. package/lib/typescript/commonjs/item/index.d.ts +3 -0
  233. package/lib/typescript/commonjs/item/index.d.ts.map +1 -0
  234. package/lib/typescript/commonjs/item/types.d.ts +45 -0
  235. package/lib/typescript/commonjs/item/types.d.ts.map +1 -0
  236. package/lib/typescript/commonjs/kbd/Kbd.d.ts +4 -0
  237. package/lib/typescript/commonjs/kbd/Kbd.d.ts.map +1 -0
  238. package/lib/typescript/commonjs/kbd/index.d.ts +3 -0
  239. package/lib/typescript/commonjs/kbd/index.d.ts.map +1 -0
  240. package/lib/typescript/commonjs/kbd/types.d.ts +13 -0
  241. package/lib/typescript/commonjs/kbd/types.d.ts.map +1 -0
  242. package/lib/typescript/commonjs/label/Label.d.ts +4 -0
  243. package/lib/typescript/commonjs/label/Label.d.ts.map +1 -0
  244. package/lib/typescript/commonjs/label/index.d.ts +3 -0
  245. package/lib/typescript/commonjs/label/index.d.ts.map +1 -0
  246. package/lib/typescript/commonjs/label/types.d.ts +27 -0
  247. package/lib/typescript/commonjs/label/types.d.ts.map +1 -0
  248. package/lib/typescript/commonjs/popover/context.d.ts +15 -0
  249. package/lib/typescript/commonjs/popover/context.d.ts.map +1 -0
  250. package/lib/typescript/commonjs/popover/index.d.ts +14 -0
  251. package/lib/typescript/commonjs/popover/index.d.ts.map +1 -0
  252. package/lib/typescript/commonjs/popover/index.web.d.ts +14 -0
  253. package/lib/typescript/commonjs/popover/index.web.d.ts.map +1 -0
  254. package/lib/typescript/commonjs/popover/types.d.ts +54 -0
  255. package/lib/typescript/commonjs/popover/types.d.ts.map +1 -0
  256. package/lib/typescript/commonjs/slider/Slider.d.ts +4 -0
  257. package/lib/typescript/commonjs/slider/Slider.d.ts.map +1 -0
  258. package/lib/typescript/commonjs/slider/index.d.ts +3 -0
  259. package/lib/typescript/commonjs/slider/index.d.ts.map +1 -0
  260. package/lib/typescript/commonjs/slider/types.d.ts +30 -0
  261. package/lib/typescript/commonjs/slider/types.d.ts.map +1 -0
  262. package/lib/typescript/commonjs/theme/BloomThemeProvider.d.ts.map +1 -1
  263. package/lib/typescript/commonjs/theme/color-scope/index.d.ts +9 -2
  264. package/lib/typescript/commonjs/theme/color-scope/index.d.ts.map +1 -1
  265. package/lib/typescript/commonjs/theme/color-scope/style-builder.d.ts +32 -0
  266. package/lib/typescript/commonjs/theme/color-scope/style-builder.d.ts.map +1 -1
  267. package/lib/typescript/commonjs/theme/native-root-vars.d.ts +89 -0
  268. package/lib/typescript/commonjs/theme/native-root-vars.d.ts.map +1 -0
  269. package/lib/typescript/commonjs/theme/native-root-vars.web.d.ts +20 -0
  270. package/lib/typescript/commonjs/theme/native-root-vars.web.d.ts.map +1 -0
  271. package/lib/typescript/commonjs/theme/preset-vars.d.ts.map +1 -1
  272. package/lib/typescript/module/alert-dialog/AlertDialog.d.ts +21 -0
  273. package/lib/typescript/module/alert-dialog/AlertDialog.d.ts.map +1 -0
  274. package/lib/typescript/module/alert-dialog/AlertDialogHost.d.ts +15 -0
  275. package/lib/typescript/module/alert-dialog/AlertDialogHost.d.ts.map +1 -0
  276. package/lib/typescript/module/alert-dialog/confirm-store.d.ts +31 -0
  277. package/lib/typescript/module/alert-dialog/confirm-store.d.ts.map +1 -0
  278. package/lib/typescript/module/alert-dialog/index.d.ts +8 -0
  279. package/lib/typescript/module/alert-dialog/index.d.ts.map +1 -0
  280. package/lib/typescript/module/alert-dialog/index.web.d.ts +8 -0
  281. package/lib/typescript/module/alert-dialog/index.web.d.ts.map +1 -0
  282. package/lib/typescript/module/alert-dialog/types.d.ts +44 -0
  283. package/lib/typescript/module/alert-dialog/types.d.ts.map +1 -0
  284. package/lib/typescript/module/combobox/Combobox.d.ts +33 -0
  285. package/lib/typescript/module/combobox/Combobox.d.ts.map +1 -0
  286. package/lib/typescript/module/combobox/index.d.ts +6 -0
  287. package/lib/typescript/module/combobox/index.d.ts.map +1 -0
  288. package/lib/typescript/module/combobox/index.web.d.ts +6 -0
  289. package/lib/typescript/module/combobox/index.web.d.ts.map +1 -0
  290. package/lib/typescript/module/combobox/types.d.ts +40 -0
  291. package/lib/typescript/module/combobox/types.d.ts.map +1 -0
  292. package/lib/typescript/module/command/Command.d.ts +22 -0
  293. package/lib/typescript/module/command/Command.d.ts.map +1 -0
  294. package/lib/typescript/module/command/index.d.ts +6 -0
  295. package/lib/typescript/module/command/index.d.ts.map +1 -0
  296. package/lib/typescript/module/command/index.web.d.ts +6 -0
  297. package/lib/typescript/module/command/index.web.d.ts.map +1 -0
  298. package/lib/typescript/module/command/types.d.ts +46 -0
  299. package/lib/typescript/module/command/types.d.ts.map +1 -0
  300. package/lib/typescript/module/field/Field.d.ts +4 -0
  301. package/lib/typescript/module/field/Field.d.ts.map +1 -0
  302. package/lib/typescript/module/field/index.d.ts +3 -0
  303. package/lib/typescript/module/field/index.d.ts.map +1 -0
  304. package/lib/typescript/module/field/types.d.ts +26 -0
  305. package/lib/typescript/module/field/types.d.ts.map +1 -0
  306. package/lib/typescript/module/icons/common.d.ts +8 -8
  307. package/lib/typescript/module/index.d.ts +19 -0
  308. package/lib/typescript/module/index.d.ts.map +1 -1
  309. package/lib/typescript/module/index.web.d.ts +19 -0
  310. package/lib/typescript/module/index.web.d.ts.map +1 -1
  311. package/lib/typescript/module/input-group/InputGroup.d.ts +9 -0
  312. package/lib/typescript/module/input-group/InputGroup.d.ts.map +1 -0
  313. package/lib/typescript/module/input-group/index.d.ts +3 -0
  314. package/lib/typescript/module/input-group/index.d.ts.map +1 -0
  315. package/lib/typescript/module/input-group/types.d.ts +35 -0
  316. package/lib/typescript/module/input-group/types.d.ts.map +1 -0
  317. package/lib/typescript/module/item/Item.d.ts +4 -0
  318. package/lib/typescript/module/item/Item.d.ts.map +1 -0
  319. package/lib/typescript/module/item/index.d.ts +3 -0
  320. package/lib/typescript/module/item/index.d.ts.map +1 -0
  321. package/lib/typescript/module/item/types.d.ts +45 -0
  322. package/lib/typescript/module/item/types.d.ts.map +1 -0
  323. package/lib/typescript/module/kbd/Kbd.d.ts +4 -0
  324. package/lib/typescript/module/kbd/Kbd.d.ts.map +1 -0
  325. package/lib/typescript/module/kbd/index.d.ts +3 -0
  326. package/lib/typescript/module/kbd/index.d.ts.map +1 -0
  327. package/lib/typescript/module/kbd/types.d.ts +13 -0
  328. package/lib/typescript/module/kbd/types.d.ts.map +1 -0
  329. package/lib/typescript/module/label/Label.d.ts +4 -0
  330. package/lib/typescript/module/label/Label.d.ts.map +1 -0
  331. package/lib/typescript/module/label/index.d.ts +3 -0
  332. package/lib/typescript/module/label/index.d.ts.map +1 -0
  333. package/lib/typescript/module/label/types.d.ts +27 -0
  334. package/lib/typescript/module/label/types.d.ts.map +1 -0
  335. package/lib/typescript/module/popover/context.d.ts +15 -0
  336. package/lib/typescript/module/popover/context.d.ts.map +1 -0
  337. package/lib/typescript/module/popover/index.d.ts +14 -0
  338. package/lib/typescript/module/popover/index.d.ts.map +1 -0
  339. package/lib/typescript/module/popover/index.web.d.ts +14 -0
  340. package/lib/typescript/module/popover/index.web.d.ts.map +1 -0
  341. package/lib/typescript/module/popover/types.d.ts +54 -0
  342. package/lib/typescript/module/popover/types.d.ts.map +1 -0
  343. package/lib/typescript/module/slider/Slider.d.ts +4 -0
  344. package/lib/typescript/module/slider/Slider.d.ts.map +1 -0
  345. package/lib/typescript/module/slider/index.d.ts +3 -0
  346. package/lib/typescript/module/slider/index.d.ts.map +1 -0
  347. package/lib/typescript/module/slider/types.d.ts +30 -0
  348. package/lib/typescript/module/slider/types.d.ts.map +1 -0
  349. package/lib/typescript/module/theme/BloomThemeProvider.d.ts.map +1 -1
  350. package/lib/typescript/module/theme/color-scope/index.d.ts +9 -2
  351. package/lib/typescript/module/theme/color-scope/index.d.ts.map +1 -1
  352. package/lib/typescript/module/theme/color-scope/style-builder.d.ts +32 -0
  353. package/lib/typescript/module/theme/color-scope/style-builder.d.ts.map +1 -1
  354. package/lib/typescript/module/theme/native-root-vars.d.ts +89 -0
  355. package/lib/typescript/module/theme/native-root-vars.d.ts.map +1 -0
  356. package/lib/typescript/module/theme/native-root-vars.web.d.ts +20 -0
  357. package/lib/typescript/module/theme/native-root-vars.web.d.ts.map +1 -0
  358. package/lib/typescript/module/theme/preset-vars.d.ts.map +1 -1
  359. package/package.json +141 -1
  360. package/src/__tests__/Field.test.tsx +55 -0
  361. package/src/__tests__/InputGroup.test.tsx +44 -0
  362. package/src/__tests__/Item.test.tsx +73 -0
  363. package/src/__tests__/Kbd.test.tsx +27 -0
  364. package/src/__tests__/Label.test.tsx +30 -0
  365. package/src/__tests__/Slider.test.tsx +38 -0
  366. package/src/__tests__/confirm-store.test.ts +58 -0
  367. package/src/__tests__/native-root-vars.test.ts +125 -0
  368. package/src/alert-dialog/AlertDialog.stories.tsx +61 -0
  369. package/src/alert-dialog/AlertDialog.tsx +120 -0
  370. package/src/alert-dialog/AlertDialogHost.tsx +51 -0
  371. package/src/alert-dialog/confirm-store.ts +77 -0
  372. package/src/alert-dialog/index.ts +13 -0
  373. package/src/alert-dialog/index.web.ts +13 -0
  374. package/src/alert-dialog/types.ts +46 -0
  375. package/src/combobox/Combobox.stories.tsx +40 -0
  376. package/src/combobox/Combobox.tsx +274 -0
  377. package/src/combobox/index.ts +6 -0
  378. package/src/combobox/index.web.ts +6 -0
  379. package/src/combobox/types.ts +41 -0
  380. package/src/command/Command.stories.tsx +60 -0
  381. package/src/command/Command.tsx +276 -0
  382. package/src/command/index.ts +6 -0
  383. package/src/command/index.web.ts +6 -0
  384. package/src/command/types.ts +47 -0
  385. package/src/field/Field.stories.tsx +54 -0
  386. package/src/field/Field.tsx +77 -0
  387. package/src/field/index.ts +2 -0
  388. package/src/field/types.ts +26 -0
  389. package/src/index.ts +23 -0
  390. package/src/index.web.ts +23 -0
  391. package/src/input-group/InputGroup.stories.tsx +65 -0
  392. package/src/input-group/InputGroup.tsx +184 -0
  393. package/src/input-group/index.ts +2 -0
  394. package/src/input-group/types.ts +36 -0
  395. package/src/item/Item.stories.tsx +43 -0
  396. package/src/item/Item.tsx +180 -0
  397. package/src/item/index.ts +2 -0
  398. package/src/item/types.ts +45 -0
  399. package/src/kbd/Kbd.stories.tsx +36 -0
  400. package/src/kbd/Kbd.tsx +76 -0
  401. package/src/kbd/index.ts +2 -0
  402. package/src/kbd/types.ts +13 -0
  403. package/src/label/Label.stories.tsx +32 -0
  404. package/src/label/Label.tsx +64 -0
  405. package/src/label/index.ts +2 -0
  406. package/src/label/types.ts +27 -0
  407. package/src/popover/Popover.stories.tsx +61 -0
  408. package/src/popover/context.ts +26 -0
  409. package/src/popover/index.tsx +104 -0
  410. package/src/popover/index.web.tsx +325 -0
  411. package/src/popover/types.ts +60 -0
  412. package/src/react-native-css.d.ts +69 -0
  413. package/src/slider/Slider.stories.tsx +46 -0
  414. package/src/slider/Slider.tsx +275 -0
  415. package/src/slider/index.ts +2 -0
  416. package/src/slider/types.ts +30 -0
  417. package/src/theme/BloomThemeProvider.tsx +32 -6
  418. package/src/theme/color-presets.ts +118 -118
  419. package/src/theme/color-scope/index.tsx +30 -8
  420. package/src/theme/color-scope/style-builder.ts +40 -0
  421. package/src/theme/native-root-vars.ts +102 -0
  422. package/src/theme/native-root-vars.web.ts +22 -0
  423. package/src/theme/preset-vars.ts +4 -1
@@ -0,0 +1,109 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.createAlertDialog = createAlertDialog;
7
+ var _react = _interopRequireWildcard(require("react"));
8
+ var _reactNative = require("react-native");
9
+ var _index = require("../button/index.js");
10
+ var _useTheme = require("../theme/use-theme.js");
11
+ var _index2 = require("../typography/index.js");
12
+ var _tokens = require("../styles/tokens.js");
13
+ var _jsxRuntime = require("react/jsx-runtime");
14
+ function _interopRequireWildcard(e, t) { if ("function" == typeof WeakMap) var r = new WeakMap(), n = new WeakMap(); return (_interopRequireWildcard = function (e, t) { if (!t && e && e.__esModule) return e; var o, i, f = { __proto__: null, default: e }; if (null === e || "object" != typeof e && "function" != typeof e) return f; if (o = t ? n : r) { if (o.has(e)) return o.get(e); o.set(e, f); } for (const t in e) "default" !== t && {}.hasOwnProperty.call(e, t) && ((i = (o = Object.defineProperty) && Object.getOwnPropertyDescriptor(e, t)) && (i.get || i.set) ? o(f, t, i) : f[t] = e[t]); return f; })(e, t); }
15
+ /**
16
+ * Build the `AlertDialog` component bound to a platform `CenteredDialog`.
17
+ *
18
+ * `CenteredDialog` is platform-forked (native RN `Modal` vs pure-DOM web
19
+ * overlay), and this repo never relies on implicit `.web` resolution — the
20
+ * platform entry files (`index.ts` / `index.web.ts`) inject the correct
21
+ * `CenteredDialog` here. The body below is single-source, no duplication.
22
+ *
23
+ * `AlertDialog` is a thin wrapper over `CenteredDialog` that lays out a title,
24
+ * description and a confirm/cancel action row. Reach for the imperative
25
+ * `confirm()` helper + `<AlertDialogHost />` to trigger a confirm from an
26
+ * event handler without owning visible state.
27
+ */
28
+ function createAlertDialog(CenteredDialog) {
29
+ const AlertDialogComponent = function AlertDialog({
30
+ visible,
31
+ onClose,
32
+ title,
33
+ description,
34
+ confirmLabel = 'Confirm',
35
+ cancelLabel = 'Cancel',
36
+ onConfirm,
37
+ onCancel,
38
+ destructive = false,
39
+ hideCancel = false,
40
+ dismissible = false,
41
+ cardStyle,
42
+ testID
43
+ }) {
44
+ const theme = (0, _useTheme.useTheme)();
45
+ const handleCancel = (0, _react.useCallback)(() => {
46
+ onCancel?.();
47
+ onClose();
48
+ }, [onCancel, onClose]);
49
+ const handleConfirm = (0, _react.useCallback)(() => {
50
+ onConfirm?.();
51
+ onClose();
52
+ }, [onConfirm, onClose]);
53
+ return /*#__PURE__*/(0, _jsxRuntime.jsx)(CenteredDialog, {
54
+ visible: visible,
55
+ onClose: dismissible ? onClose : () => {},
56
+ dismissible: dismissible,
57
+ title: title,
58
+ showClose: false,
59
+ accessibilityLabel: title,
60
+ cardStyle: cardStyle,
61
+ testID: testID,
62
+ footer: /*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNative.View, {
63
+ style: styles.actions,
64
+ children: [!hideCancel ? /*#__PURE__*/(0, _jsxRuntime.jsx)(_index.Button, {
65
+ variant: "secondary",
66
+ size: "medium",
67
+ onPress: handleCancel,
68
+ style: styles.action,
69
+ accessibilityLabel: cancelLabel,
70
+ children: cancelLabel
71
+ }) : null, /*#__PURE__*/(0, _jsxRuntime.jsx)(_index.Button, {
72
+ variant: "primary",
73
+ size: "medium",
74
+ onPress: handleConfirm,
75
+ style: [styles.action, destructive && {
76
+ backgroundColor: theme.colors.negative
77
+ }],
78
+ textStyle: destructive ? {
79
+ color: theme.colors.negativeForeground
80
+ } : undefined,
81
+ accessibilityLabel: confirmLabel,
82
+ children: confirmLabel
83
+ })]
84
+ }),
85
+ children: description ? /*#__PURE__*/(0, _jsxRuntime.jsx)(_index2.Text, {
86
+ style: {
87
+ fontSize: _tokens.fontSize.md,
88
+ lineHeight: _tokens.fontSize.md * 1.4,
89
+ color: theme.colors.textSecondary
90
+ },
91
+ children: description
92
+ }) : null
93
+ });
94
+ };
95
+ const AlertDialog = /*#__PURE__*/(0, _react.memo)(AlertDialogComponent);
96
+ AlertDialog.displayName = 'AlertDialog';
97
+ return AlertDialog;
98
+ }
99
+ const styles = _reactNative.StyleSheet.create({
100
+ actions: {
101
+ flexDirection: 'row',
102
+ justifyContent: 'flex-end',
103
+ gap: _tokens.space.sm
104
+ },
105
+ action: {
106
+ minWidth: 96
107
+ }
108
+ });
109
+ //# sourceMappingURL=AlertDialog.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":["_react","_interopRequireWildcard","require","_reactNative","_index","_useTheme","_index2","_tokens","_jsxRuntime","e","t","WeakMap","r","n","__esModule","o","i","f","__proto__","default","has","get","set","hasOwnProperty","call","Object","defineProperty","getOwnPropertyDescriptor","createAlertDialog","CenteredDialog","AlertDialogComponent","AlertDialog","visible","onClose","title","description","confirmLabel","cancelLabel","onConfirm","onCancel","destructive","hideCancel","dismissible","cardStyle","testID","theme","useTheme","handleCancel","useCallback","handleConfirm","jsx","showClose","accessibilityLabel","footer","jsxs","View","style","styles","actions","children","Button","variant","size","onPress","action","backgroundColor","colors","negative","textStyle","color","negativeForeground","undefined","Text","fontSize","md","lineHeight","textSecondary","memo","displayName","StyleSheet","create","flexDirection","justifyContent","gap","space","sm","minWidth"],"sourceRoot":"../../../src","sources":["alert-dialog/AlertDialog.tsx"],"mappings":"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","ignoreList":[]}
@@ -0,0 +1,50 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.createAlertDialogHost = createAlertDialogHost;
7
+ var _react = _interopRequireWildcard(require("react"));
8
+ var _confirmStore = require("./confirm-store.js");
9
+ var _jsxRuntime = require("react/jsx-runtime");
10
+ function _interopRequireWildcard(e, t) { if ("function" == typeof WeakMap) var r = new WeakMap(), n = new WeakMap(); return (_interopRequireWildcard = function (e, t) { if (!t && e && e.__esModule) return e; var o, i, f = { __proto__: null, default: e }; if (null === e || "object" != typeof e && "function" != typeof e) return f; if (o = t ? n : r) { if (o.has(e)) return o.get(e); o.set(e, f); } for (const t in e) "default" !== t && {}.hasOwnProperty.call(e, t) && ((i = (o = Object.defineProperty) && Object.getOwnPropertyDescriptor(e, t)) && (i.get || i.set) ? o(f, t, i) : f[t] = e[t]); return f; })(e, t); }
11
+ /**
12
+ * Build the `<AlertDialogHost />` bound to a platform `AlertDialog`. The
13
+ * platform entry files (`index.ts` / `index.web.ts`) inject the correct one.
14
+ *
15
+ * The host mounts the imperative `confirm()` UI. Wrap your app root once
16
+ * (after `BloomThemeProvider`) and you can call `confirm()` from anywhere —
17
+ * including before the host mounts (entries are queued and drained on
18
+ * subscribe). Confirms present one at a time in FIFO order.
19
+ */
20
+ function createAlertDialogHost(AlertDialog) {
21
+ function ConfirmHost({
22
+ entry
23
+ }) {
24
+ return /*#__PURE__*/(0, _jsxRuntime.jsx)(AlertDialog, {
25
+ visible: true,
26
+ title: entry.title,
27
+ description: entry.description,
28
+ confirmLabel: entry.confirmLabel,
29
+ cancelLabel: entry.cancelLabel,
30
+ destructive: entry.destructive,
31
+ hideCancel: entry.hideCancel,
32
+ dismissible: entry.dismissible,
33
+ onConfirm: () => (0, _confirmStore.resolveConfirm)(entry.id, true),
34
+ onCancel: () => (0, _confirmStore.resolveConfirm)(entry.id, false),
35
+ onClose: () => (0, _confirmStore.resolveConfirm)(entry.id, false)
36
+ });
37
+ }
38
+ function AlertDialogHost() {
39
+ const [queue, setQueue] = (0, _react.useState)([]);
40
+ (0, _react.useEffect)(() => (0, _confirmStore.subscribeConfirms)(setQueue), []);
41
+ const head = queue[0];
42
+ if (!head) return null;
43
+ return /*#__PURE__*/(0, _jsxRuntime.jsx)(ConfirmHost, {
44
+ entry: head
45
+ }, head.id);
46
+ }
47
+ AlertDialogHost.displayName = 'AlertDialogHost';
48
+ return AlertDialogHost;
49
+ }
50
+ //# sourceMappingURL=AlertDialogHost.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":["_react","_interopRequireWildcard","require","_confirmStore","_jsxRuntime","e","t","WeakMap","r","n","__esModule","o","i","f","__proto__","default","has","get","set","hasOwnProperty","call","Object","defineProperty","getOwnPropertyDescriptor","createAlertDialogHost","AlertDialog","ConfirmHost","entry","jsx","visible","title","description","confirmLabel","cancelLabel","destructive","hideCancel","dismissible","onConfirm","resolveConfirm","id","onCancel","onClose","AlertDialogHost","queue","setQueue","useState","useEffect","subscribeConfirms","head","displayName"],"sourceRoot":"../../../src","sources":["alert-dialog/AlertDialogHost.tsx"],"mappings":";;;;;;AAAA,IAAAA,MAAA,GAAAC,uBAAA,CAAAC,OAAA;AAEA,IAAAC,aAAA,GAAAD,OAAA;AAIyB,IAAAE,WAAA,GAAAF,OAAA;AAAA,SAAAD,wBAAAI,CAAA,EAAAC,CAAA,6BAAAC,OAAA,MAAAC,CAAA,OAAAD,OAAA,IAAAE,CAAA,OAAAF,OAAA,YAAAN,uBAAA,YAAAA,CAAAI,CAAA,EAAAC,CAAA,SAAAA,CAAA,IAAAD,CAAA,IAAAA,CAAA,CAAAK,UAAA,SAAAL,CAAA,MAAAM,CAAA,EAAAC,CAAA,EAAAC,CAAA,KAAAC,SAAA,QAAAC,OAAA,EAAAV,CAAA,iBAAAA,CAAA,uBAAAA,CAAA,yBAAAA,CAAA,SAAAQ,CAAA,MAAAF,CAAA,GAAAL,CAAA,GAAAG,CAAA,GAAAD,CAAA,QAAAG,CAAA,CAAAK,GAAA,CAAAX,CAAA,UAAAM,CAAA,CAAAM,GAAA,CAAAZ,CAAA,GAAAM,CAAA,CAAAO,GAAA,CAAAb,CAAA,EAAAQ,CAAA,gBAAAP,CAAA,IAAAD,CAAA,gBAAAC,CAAA,OAAAa,cAAA,CAAAC,IAAA,CAAAf,CAAA,EAAAC,CAAA,OAAAM,CAAA,IAAAD,CAAA,GAAAU,MAAA,CAAAC,cAAA,KAAAD,MAAA,CAAAE,wBAAA,CAAAlB,CAAA,EAAAC,CAAA,OAAAM,CAAA,CAAAK,GAAA,IAAAL,CAAA,CAAAM,GAAA,IAAAP,CAAA,CAAAE,CAAA,EAAAP,CAAA,EAAAM,CAAA,IAAAC,CAAA,CAAAP,CAAA,IAAAD,CAAA,CAAAC,CAAA,WAAAO,CAAA,KAAAR,CAAA,EAAAC,CAAA;AAGzB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACO,SAASkB,qBAAqBA,CAACC,WAA4B,EAAE;EAClE,SAASC,WAAWA,CAAC;IAAEC;EAA+B,CAAC,EAAE;IACvD,oBACE,IAAAvB,WAAA,CAAAwB,GAAA,EAACH,WAAW;MACVI,OAAO;MACPC,KAAK,EAAEH,KAAK,CAACG,KAAM;MACnBC,WAAW,EAAEJ,KAAK,CAACI,WAAY;MAC/BC,YAAY,EAAEL,KAAK,CAACK,YAAa;MACjCC,WAAW,EAAEN,KAAK,CAACM,WAAY;MAC/BC,WAAW,EAAEP,KAAK,CAACO,WAAY;MAC/BC,UAAU,EAAER,KAAK,CAACQ,UAAW;MAC7BC,WAAW,EAAET,KAAK,CAACS,WAAY;MAC/BC,SAAS,EAAEA,CAAA,KAAM,IAAAC,4BAAc,EAACX,KAAK,CAACY,EAAE,EAAE,IAAI,CAAE;MAChDC,QAAQ,EAAEA,CAAA,KAAM,IAAAF,4BAAc,EAACX,KAAK,CAACY,EAAE,EAAE,KAAK,CAAE;MAChDE,OAAO,EAAEA,CAAA,KAAM,IAAAH,4BAAc,EAACX,KAAK,CAACY,EAAE,EAAE,KAAK;IAAE,CAChD,CAAC;EAEN;EAEA,SAASG,eAAeA,CAAA,EAAG;IACzB,MAAM,CAACC,KAAK,EAAEC,QAAQ,CAAC,GAAG,IAAAC,eAAQ,EAA0B,EAAE,CAAC;IAE/D,IAAAC,gBAAS,EAAC,MAAM,IAAAC,+BAAiB,EAACH,QAAQ,CAAC,EAAE,EAAE,CAAC;IAEhD,MAAMI,IAAI,GAAGL,KAAK,CAAC,CAAC,CAAC;IACrB,IAAI,CAACK,IAAI,EAAE,OAAO,IAAI;IAEtB,oBAAO,IAAA5C,WAAA,CAAAwB,GAAA,EAACF,WAAW;MAAeC,KAAK,EAAEqB;IAAK,GAArBA,IAAI,CAACT,EAAkB,CAAC;EACnD;EACAG,eAAe,CAACO,WAAW,GAAG,iBAAiB;EAE/C,OAAOP,eAAe;AACxB","ignoreList":[]}
@@ -0,0 +1,80 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.confirm = confirm;
7
+ exports.getConfirmQueue = getConfirmQueue;
8
+ exports.resolveConfirm = resolveConfirm;
9
+ exports.subscribeConfirms = subscribeConfirms;
10
+ /**
11
+ * Imperative confirm store.
12
+ *
13
+ * Mirrors the `dialog/alert-store` pattern: a module-scope queue + a single
14
+ * subscriber (the `<AlertDialogHost />` mounted in the app tree). `confirm()`
15
+ * enqueues an entry and resolves a promise with the user's choice. Entries
16
+ * enqueued before the host mounts drain on subscribe — no lost confirms.
17
+ */
18
+
19
+ let idCounter = 0;
20
+ function genId() {
21
+ idCounter += 1;
22
+ return `bloom-confirm-${idCounter}`;
23
+ }
24
+ let queue = [];
25
+ let listener = null;
26
+ function emit() {
27
+ if (listener) listener(queue);
28
+ }
29
+
30
+ /**
31
+ * Show a Bloom confirm dialog and resolve with the user's choice.
32
+ *
33
+ * ```ts
34
+ * const ok = await confirm({
35
+ * title: 'Delete app?',
36
+ * description: 'This cannot be undone.',
37
+ * confirmLabel: 'Delete',
38
+ * destructive: true,
39
+ * });
40
+ * if (ok) await doDelete();
41
+ * ```
42
+ */
43
+ function confirm(options) {
44
+ return new Promise(resolve => {
45
+ const id = genId();
46
+ queue = [...queue, {
47
+ ...options,
48
+ id,
49
+ resolve
50
+ }];
51
+ emit();
52
+ });
53
+ }
54
+
55
+ /** Resolve and remove an entry. Called by the host on confirm/cancel/dismiss. */
56
+ function resolveConfirm(id, confirmed) {
57
+ const entry = queue.find(e => e.id === id);
58
+ if (!entry) return;
59
+ queue = queue.filter(e => e.id !== id);
60
+ entry.resolve(confirmed);
61
+ emit();
62
+ }
63
+
64
+ /**
65
+ * Subscribe to queue changes (single-subscriber model; latest wins). Delivers
66
+ * the current queue synchronously so a freshly mounted host catches up.
67
+ */
68
+ function subscribeConfirms(fn) {
69
+ listener = fn;
70
+ fn(queue);
71
+ return () => {
72
+ if (listener === fn) listener = null;
73
+ };
74
+ }
75
+
76
+ /** Inspect the current queue. Used by tests. */
77
+ function getConfirmQueue() {
78
+ return queue;
79
+ }
80
+ //# sourceMappingURL=confirm-store.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":["idCounter","genId","queue","listener","emit","confirm","options","Promise","resolve","id","resolveConfirm","confirmed","entry","find","e","filter","subscribeConfirms","fn","getConfirmQueue"],"sourceRoot":"../../../src","sources":["alert-dialog/confirm-store.ts"],"mappings":";;;;;;;;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA,IAAIA,SAAS,GAAG,CAAC;AACjB,SAASC,KAAKA,CAAA,EAAW;EACvBD,SAAS,IAAI,CAAC;EACd,OAAO,iBAAiBA,SAAS,EAAE;AACrC;AASA,IAAIE,KAAqB,GAAG,EAAE;AAC9B,IAAIC,QAAyB,GAAG,IAAI;AAEpC,SAASC,IAAIA,CAAA,EAAS;EACpB,IAAID,QAAQ,EAAEA,QAAQ,CAACD,KAAK,CAAC;AAC/B;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACO,SAASG,OAAOA,CAACC,OAAuB,EAAoB;EACjE,OAAO,IAAIC,OAAO,CAAWC,OAAO,IAAK;IACvC,MAAMC,EAAE,GAAGR,KAAK,CAAC,CAAC;IAClBC,KAAK,GAAG,CAAC,GAAGA,KAAK,EAAE;MAAE,GAAGI,OAAO;MAAEG,EAAE;MAAED;IAAQ,CAAC,CAAC;IAC/CJ,IAAI,CAAC,CAAC;EACR,CAAC,CAAC;AACJ;;AAEA;AACO,SAASM,cAAcA,CAACD,EAAU,EAAEE,SAAkB,EAAQ;EACnE,MAAMC,KAAK,GAAGV,KAAK,CAACW,IAAI,CAAEC,CAAC,IAAKA,CAAC,CAACL,EAAE,KAAKA,EAAE,CAAC;EAC5C,IAAI,CAACG,KAAK,EAAE;EACZV,KAAK,GAAGA,KAAK,CAACa,MAAM,CAAED,CAAC,IAAKA,CAAC,CAACL,EAAE,KAAKA,EAAE,CAAC;EACxCG,KAAK,CAACJ,OAAO,CAACG,SAAS,CAAC;EACxBP,IAAI,CAAC,CAAC;AACR;;AAEA;AACA;AACA;AACA;AACO,SAASY,iBAAiBA,CAACC,EAAY,EAAc;EAC1Dd,QAAQ,GAAGc,EAAE;EACbA,EAAE,CAACf,KAAK,CAAC;EACT,OAAO,MAAM;IACX,IAAIC,QAAQ,KAAKc,EAAE,EAAEd,QAAQ,GAAG,IAAI;EACtC,CAAC;AACH;;AAEA;AACO,SAASe,eAAeA,CAAA,EAA4B;EACzD,OAAOhB,KAAK;AACd","ignoreList":[]}
@@ -0,0 +1,19 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.AlertDialogHost = exports.AlertDialog = void 0;
7
+ Object.defineProperty(exports, "confirm", {
8
+ enumerable: true,
9
+ get: function () {
10
+ return _confirmStore.confirm;
11
+ }
12
+ });
13
+ var _index = require("../dialog/index");
14
+ var _AlertDialog = require("./AlertDialog.js");
15
+ var _AlertDialogHost = require("./AlertDialogHost.js");
16
+ var _confirmStore = require("./confirm-store.js");
17
+ const AlertDialog = exports.AlertDialog = (0, _AlertDialog.createAlertDialog)(_index.CenteredDialog);
18
+ const AlertDialogHost = exports.AlertDialogHost = (0, _AlertDialogHost.createAlertDialogHost)(AlertDialog);
19
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":["_index","require","_AlertDialog","_AlertDialogHost","_confirmStore","AlertDialog","exports","createAlertDialog","CenteredDialog","AlertDialogHost","createAlertDialogHost"],"sourceRoot":"../../../src","sources":["alert-dialog/index.ts"],"mappings":";;;;;;;;;;;;AAAA,IAAAA,MAAA,GAAAC,OAAA;AACA,IAAAC,YAAA,GAAAD,OAAA;AACA,IAAAE,gBAAA,GAAAF,OAAA;AAKA,IAAAG,aAAA,GAAAH,OAAA;AAHO,MAAMI,WAAW,GAAAC,OAAA,CAAAD,WAAA,GAAG,IAAAE,8BAAiB,EAACC,qBAAc,CAAC;AACrD,MAAMC,eAAe,GAAAH,OAAA,CAAAG,eAAA,GAAG,IAAAC,sCAAqB,EAACL,WAAW,CAAC","ignoreList":[]}
@@ -0,0 +1,19 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.AlertDialogHost = exports.AlertDialog = void 0;
7
+ Object.defineProperty(exports, "confirm", {
8
+ enumerable: true,
9
+ get: function () {
10
+ return _confirmStore.confirm;
11
+ }
12
+ });
13
+ var _indexWeb = require("../dialog/index.web.js");
14
+ var _AlertDialog = require("./AlertDialog.js");
15
+ var _AlertDialogHost = require("./AlertDialogHost.js");
16
+ var _confirmStore = require("./confirm-store.js");
17
+ const AlertDialog = exports.AlertDialog = (0, _AlertDialog.createAlertDialog)(_indexWeb.CenteredDialog);
18
+ const AlertDialogHost = exports.AlertDialogHost = (0, _AlertDialogHost.createAlertDialogHost)(AlertDialog);
19
+ //# sourceMappingURL=index.web.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":["_indexWeb","require","_AlertDialog","_AlertDialogHost","_confirmStore","AlertDialog","exports","createAlertDialog","CenteredDialog","AlertDialogHost","createAlertDialogHost"],"sourceRoot":"../../../src","sources":["alert-dialog/index.web.ts"],"mappings":";;;;;;;;;;;;AAAA,IAAAA,SAAA,GAAAC,OAAA;AACA,IAAAC,YAAA,GAAAD,OAAA;AACA,IAAAE,gBAAA,GAAAF,OAAA;AAKA,IAAAG,aAAA,GAAAH,OAAA;AAHO,MAAMI,WAAW,GAAAC,OAAA,CAAAD,WAAA,GAAG,IAAAE,8BAAiB,EAACC,wBAAc,CAAC;AACrD,MAAMC,eAAe,GAAAH,OAAA,CAAAG,eAAA,GAAG,IAAAC,sCAAqB,EAACL,WAAW,CAAC","ignoreList":[]}
@@ -0,0 +1,6 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ //# sourceMappingURL=types.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":[],"sourceRoot":"../../../src","sources":["alert-dialog/types.ts"],"mappings":"","ignoreList":[]}
@@ -0,0 +1,227 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.createCombobox = createCombobox;
7
+ var _react = _interopRequireWildcard(require("react"));
8
+ var _reactNative = require("react-native");
9
+ var _useTheme = require("../theme/use-theme.js");
10
+ var _useControllableState = require("../hooks/useControllableState.js");
11
+ var _index = require("../typography/index.js");
12
+ var _index2 = require("../item/index.js");
13
+ var _index3 = require("../search-input/index.js");
14
+ var _tokens = require("../styles/tokens.js");
15
+ var _Chevron = require("../icons/Chevron.js");
16
+ var _Check = require("../icons/Check.js");
17
+ var _jsxRuntime = require("react/jsx-runtime");
18
+ function _interopRequireWildcard(e, t) { if ("function" == typeof WeakMap) var r = new WeakMap(), n = new WeakMap(); return (_interopRequireWildcard = function (e, t) { if (!t && e && e.__esModule) return e; var o, i, f = { __proto__: null, default: e }; if (null === e || "object" != typeof e && "function" != typeof e) return f; if (o = t ? n : r) { if (o.has(e)) return o.get(e); o.set(e, f); } for (const t in e) "default" !== t && {}.hasOwnProperty.call(e, t) && ((i = (o = Object.defineProperty) && Object.getOwnPropertyDescriptor(e, t)) && (i.get || i.set) ? o(f, t, i) : f[t] = e[t]); return f; })(e, t); }
19
+ /**
20
+ * Structural shape of the `Popover` module, satisfied by both the native and
21
+ * web platform forks. Defined explicitly (rather than `typeof import(...)`) so
22
+ * the slightly different render-return types between forks (web `Content` may
23
+ * return `null`) don't make the modules mutually unassignable.
24
+ */
25
+
26
+ function defaultFilter(option, query) {
27
+ const q = query.trim().toLowerCase();
28
+ if (!q) return true;
29
+ return option.label.toLowerCase().includes(q) || (option.description?.toLowerCase().includes(q) ?? false);
30
+ }
31
+
32
+ /**
33
+ * Build the `Combobox` bound to a platform `Popover` module. The platform
34
+ * entry files (`index.ts` / `index.web.ts`) inject the correct one (native
35
+ * bottom sheet vs web anchored panel) — this repo never relies on implicit
36
+ * `.web` resolution. The combobox logic is single-source.
37
+ *
38
+ * `Combobox` is a filterable autocomplete select that delegates its overlay to
39
+ * Bloom's `Popover` and composes `SearchInput` + `Item`. The trigger + panel
40
+ * read the overlay control from `Popover` context (via an inner component) so
41
+ * selecting an option reliably closes the overlay on every platform.
42
+ */
43
+ function createCombobox(Popover) {
44
+ function ComboboxInner({
45
+ options,
46
+ value,
47
+ onValueChange,
48
+ placeholder,
49
+ label,
50
+ emptyText,
51
+ filter,
52
+ query: queryProp,
53
+ onQueryChange,
54
+ disabled,
55
+ maxListHeight
56
+ }) {
57
+ const theme = (0, _useTheme.useTheme)();
58
+ const {
59
+ control
60
+ } = Popover.usePopoverContext();
61
+ const searchRef = (0, _react.useRef)(null);
62
+ const [query, setQuery] = (0, _useControllableState.useControllableState)({
63
+ value: queryProp,
64
+ defaultValue: '',
65
+ onChange: onQueryChange
66
+ });
67
+ const selectedOption = (0, _react.useMemo)(() => options.find(o => o.value === value) ?? null, [options, value]);
68
+ const filtered = (0, _react.useMemo)(() => options.filter(o => filter(o, query)), [options, filter, query]);
69
+ const handleSelect = (0, _react.useCallback)(option => {
70
+ if (option.disabled) return;
71
+ onValueChange(option.value);
72
+ setQuery('');
73
+ control.close();
74
+ }, [onValueChange, setQuery, control]);
75
+ const accessibleLabel = label ?? placeholder;
76
+ return /*#__PURE__*/(0, _jsxRuntime.jsxs)(_jsxRuntime.Fragment, {
77
+ children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(Popover.Trigger, {
78
+ label: accessibleLabel,
79
+ children: ({
80
+ props
81
+ }) => /*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNative.Pressable, {
82
+ ...props,
83
+ disabled: disabled,
84
+ onPress: () => {
85
+ if (disabled) return;
86
+ props.onPress();
87
+ if (_reactNative.Platform.OS === 'web') {
88
+ requestAnimationFrame(() => searchRef.current?.focus());
89
+ }
90
+ },
91
+ accessibilityState: {
92
+ disabled: disabled ?? false
93
+ },
94
+ style: [styles.trigger, {
95
+ backgroundColor: theme.colors.contrast50,
96
+ borderColor: theme.colors.borderLight
97
+ }, disabled && styles.disabled],
98
+ children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(_index.Text, {
99
+ numberOfLines: 1,
100
+ style: [styles.triggerText, {
101
+ color: selectedOption ? theme.colors.text : theme.colors.textSecondary
102
+ }],
103
+ children: selectedOption ? selectedOption.label : placeholder
104
+ }), /*#__PURE__*/(0, _jsxRuntime.jsx)(_Chevron.ChevronTopBottom_Stroke2_Corner0_Rounded, {
105
+ size: "xs",
106
+ fill: theme.colors.textSecondary
107
+ })]
108
+ })
109
+ }), /*#__PURE__*/(0, _jsxRuntime.jsxs)(Popover.Content, {
110
+ label: accessibleLabel,
111
+ placement: "bottom-start",
112
+ minWidth: 240,
113
+ children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.View, {
114
+ style: styles.searchWrap,
115
+ children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_index3.SearchInput, {
116
+ ref: searchRef,
117
+ label: label ?? 'Search',
118
+ value: query,
119
+ onChangeText: setQuery,
120
+ onClearText: () => setQuery(''),
121
+ autoFocus: _reactNative.Platform.OS !== 'web'
122
+ })
123
+ }), filtered.length === 0 ? /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.View, {
124
+ style: styles.empty,
125
+ children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_index.Text, {
126
+ style: {
127
+ color: theme.colors.textSecondary,
128
+ fontSize: _tokens.fontSize.sm
129
+ },
130
+ children: emptyText
131
+ })
132
+ }) : /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.ScrollView, {
133
+ style: {
134
+ maxHeight: maxListHeight
135
+ },
136
+ keyboardShouldPersistTaps: "handled",
137
+ showsVerticalScrollIndicator: false,
138
+ children: filtered.map(option => {
139
+ const isSelected = option.value === value;
140
+ return /*#__PURE__*/(0, _jsxRuntime.jsx)(_index2.Item, {
141
+ title: option.label,
142
+ subtitle: option.description,
143
+ density: "compact",
144
+ disabled: option.disabled,
145
+ selected: isSelected,
146
+ role: "option",
147
+ onPress: () => handleSelect(option),
148
+ trailing: isSelected ? /*#__PURE__*/(0, _jsxRuntime.jsx)(_Check.Check_Stroke2_Corner0_Rounded, {
149
+ size: "sm",
150
+ fill: theme.colors.primary
151
+ }) : null
152
+ }, String(option.value));
153
+ })
154
+ })]
155
+ })]
156
+ });
157
+ }
158
+ function Combobox({
159
+ options,
160
+ value,
161
+ onValueChange,
162
+ placeholder = 'Select…',
163
+ label,
164
+ emptyText = 'No results',
165
+ filter = defaultFilter,
166
+ query,
167
+ onQueryChange,
168
+ disabled = false,
169
+ maxListHeight = 280,
170
+ style,
171
+ testID
172
+ }) {
173
+ return /*#__PURE__*/(0, _jsxRuntime.jsx)(Popover.Root, {
174
+ children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.View, {
175
+ style: style,
176
+ testID: testID,
177
+ children: /*#__PURE__*/(0, _jsxRuntime.jsx)(ComboboxInner, {
178
+ options: options,
179
+ value: value,
180
+ onValueChange: onValueChange,
181
+ placeholder: placeholder,
182
+ label: label,
183
+ emptyText: emptyText,
184
+ filter: filter,
185
+ query: query,
186
+ onQueryChange: onQueryChange,
187
+ disabled: disabled,
188
+ maxListHeight: maxListHeight
189
+ })
190
+ })
191
+ });
192
+ }
193
+ Combobox.displayName = 'Combobox';
194
+ return Combobox;
195
+ }
196
+ const styles = _reactNative.StyleSheet.create({
197
+ trigger: {
198
+ flexDirection: 'row',
199
+ alignItems: 'center',
200
+ justifyContent: 'space-between',
201
+ gap: _tokens.space.sm,
202
+ paddingVertical: _tokens.space.sm,
203
+ paddingHorizontal: _tokens.space.md,
204
+ borderRadius: _tokens.borderRadius.sm,
205
+ borderWidth: 1,
206
+ minHeight: 44,
207
+ width: '100%'
208
+ },
209
+ triggerText: {
210
+ flex: 1,
211
+ fontSize: _tokens.fontSize.md
212
+ },
213
+ disabled: {
214
+ opacity: 0.5
215
+ },
216
+ searchWrap: {
217
+ paddingHorizontal: _tokens.space.sm,
218
+ paddingTop: _tokens.space.sm,
219
+ paddingBottom: _tokens.space.xs
220
+ },
221
+ empty: {
222
+ paddingHorizontal: _tokens.space.lg,
223
+ paddingVertical: _tokens.space.lg,
224
+ alignItems: 'center'
225
+ }
226
+ });
227
+ //# sourceMappingURL=Combobox.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":["_react","_interopRequireWildcard","require","_reactNative","_useTheme","_useControllableState","_index","_index2","_index3","_tokens","_Chevron","_Check","_jsxRuntime","e","t","WeakMap","r","n","__esModule","o","i","f","__proto__","default","has","get","set","hasOwnProperty","call","Object","defineProperty","getOwnPropertyDescriptor","defaultFilter","option","query","q","trim","toLowerCase","label","includes","description","createCombobox","Popover","ComboboxInner","options","value","onValueChange","placeholder","emptyText","filter","queryProp","onQueryChange","disabled","maxListHeight","theme","useTheme","control","usePopoverContext","searchRef","useRef","setQuery","useControllableState","defaultValue","onChange","selectedOption","useMemo","find","filtered","handleSelect","useCallback","close","accessibleLabel","jsxs","Fragment","children","jsx","Trigger","props","Pressable","onPress","Platform","OS","requestAnimationFrame","current","focus","accessibilityState","style","styles","trigger","backgroundColor","colors","contrast50","borderColor","borderLight","Text","numberOfLines","triggerText","color","text","textSecondary","ChevronTopBottom_Stroke2_Corner0_Rounded","size","fill","Content","placement","minWidth","View","searchWrap","SearchInput","ref","onChangeText","onClearText","autoFocus","length","empty","fontSize","sm","ScrollView","maxHeight","keyboardShouldPersistTaps","showsVerticalScrollIndicator","map","isSelected","Item","title","subtitle","density","selected","role","trailing","Check_Stroke2_Corner0_Rounded","primary","String","Combobox","testID","Root","displayName","StyleSheet","create","flexDirection","alignItems","justifyContent","gap","space","paddingVertical","paddingHorizontal","md","borderRadius","borderWidth","minHeight","width","flex","opacity","paddingTop","paddingBottom","xs","lg"],"sourceRoot":"../../../src","sources":["combobox/Combobox.tsx"],"mappings":"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","ignoreList":[]}
@@ -0,0 +1,11 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.Combobox = void 0;
7
+ var Popover = _interopRequireWildcard(require("../popover/index"));
8
+ var _Combobox = require("./Combobox.js");
9
+ function _interopRequireWildcard(e, t) { if ("function" == typeof WeakMap) var r = new WeakMap(), n = new WeakMap(); return (_interopRequireWildcard = function (e, t) { if (!t && e && e.__esModule) return e; var o, i, f = { __proto__: null, default: e }; if (null === e || "object" != typeof e && "function" != typeof e) return f; if (o = t ? n : r) { if (o.has(e)) return o.get(e); o.set(e, f); } for (const t in e) "default" !== t && {}.hasOwnProperty.call(e, t) && ((i = (o = Object.defineProperty) && Object.getOwnPropertyDescriptor(e, t)) && (i.get || i.set) ? o(f, t, i) : f[t] = e[t]); return f; })(e, t); }
10
+ const Combobox = exports.Combobox = (0, _Combobox.createCombobox)(Popover);
11
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":["Popover","_interopRequireWildcard","require","_Combobox","e","t","WeakMap","r","n","__esModule","o","i","f","__proto__","default","has","get","set","hasOwnProperty","call","Object","defineProperty","getOwnPropertyDescriptor","Combobox","exports","createCombobox"],"sourceRoot":"../../../src","sources":["combobox/index.ts"],"mappings":";;;;;;AAAA,IAAAA,OAAA,GAAAC,uBAAA,CAAAC,OAAA;AACA,IAAAC,SAAA,GAAAD,OAAA;AAA4C,SAAAD,wBAAAG,CAAA,EAAAC,CAAA,6BAAAC,OAAA,MAAAC,CAAA,OAAAD,OAAA,IAAAE,CAAA,OAAAF,OAAA,YAAAL,uBAAA,YAAAA,CAAAG,CAAA,EAAAC,CAAA,SAAAA,CAAA,IAAAD,CAAA,IAAAA,CAAA,CAAAK,UAAA,SAAAL,CAAA,MAAAM,CAAA,EAAAC,CAAA,EAAAC,CAAA,KAAAC,SAAA,QAAAC,OAAA,EAAAV,CAAA,iBAAAA,CAAA,uBAAAA,CAAA,yBAAAA,CAAA,SAAAQ,CAAA,MAAAF,CAAA,GAAAL,CAAA,GAAAG,CAAA,GAAAD,CAAA,QAAAG,CAAA,CAAAK,GAAA,CAAAX,CAAA,UAAAM,CAAA,CAAAM,GAAA,CAAAZ,CAAA,GAAAM,CAAA,CAAAO,GAAA,CAAAb,CAAA,EAAAQ,CAAA,gBAAAP,CAAA,IAAAD,CAAA,gBAAAC,CAAA,OAAAa,cAAA,CAAAC,IAAA,CAAAf,CAAA,EAAAC,CAAA,OAAAM,CAAA,IAAAD,CAAA,GAAAU,MAAA,CAAAC,cAAA,KAAAD,MAAA,CAAAE,wBAAA,CAAAlB,CAAA,EAAAC,CAAA,OAAAM,CAAA,CAAAK,GAAA,IAAAL,CAAA,CAAAM,GAAA,IAAAP,CAAA,CAAAE,CAAA,EAAAP,CAAA,EAAAM,CAAA,IAAAC,CAAA,CAAAP,CAAA,IAAAD,CAAA,CAAAC,CAAA,WAAAO,CAAA,KAAAR,CAAA,EAAAC,CAAA;AAErC,MAAMkB,QAAQ,GAAAC,OAAA,CAAAD,QAAA,GAAG,IAAAE,wBAAc,EAACzB,OAAO,CAAC","ignoreList":[]}
@@ -0,0 +1,11 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.Combobox = void 0;
7
+ var Popover = _interopRequireWildcard(require("../popover/index.web.js"));
8
+ var _Combobox = require("./Combobox.js");
9
+ function _interopRequireWildcard(e, t) { if ("function" == typeof WeakMap) var r = new WeakMap(), n = new WeakMap(); return (_interopRequireWildcard = function (e, t) { if (!t && e && e.__esModule) return e; var o, i, f = { __proto__: null, default: e }; if (null === e || "object" != typeof e && "function" != typeof e) return f; if (o = t ? n : r) { if (o.has(e)) return o.get(e); o.set(e, f); } for (const t in e) "default" !== t && {}.hasOwnProperty.call(e, t) && ((i = (o = Object.defineProperty) && Object.getOwnPropertyDescriptor(e, t)) && (i.get || i.set) ? o(f, t, i) : f[t] = e[t]); return f; })(e, t); }
10
+ const Combobox = exports.Combobox = (0, _Combobox.createCombobox)(Popover);
11
+ //# sourceMappingURL=index.web.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":["Popover","_interopRequireWildcard","require","_Combobox","e","t","WeakMap","r","n","__esModule","o","i","f","__proto__","default","has","get","set","hasOwnProperty","call","Object","defineProperty","getOwnPropertyDescriptor","Combobox","exports","createCombobox"],"sourceRoot":"../../../src","sources":["combobox/index.web.ts"],"mappings":";;;;;;AAAA,IAAAA,OAAA,GAAAC,uBAAA,CAAAC,OAAA;AACA,IAAAC,SAAA,GAAAD,OAAA;AAA4C,SAAAD,wBAAAG,CAAA,EAAAC,CAAA,6BAAAC,OAAA,MAAAC,CAAA,OAAAD,OAAA,IAAAE,CAAA,OAAAF,OAAA,YAAAL,uBAAA,YAAAA,CAAAG,CAAA,EAAAC,CAAA,SAAAA,CAAA,IAAAD,CAAA,IAAAA,CAAA,CAAAK,UAAA,SAAAL,CAAA,MAAAM,CAAA,EAAAC,CAAA,EAAAC,CAAA,KAAAC,SAAA,QAAAC,OAAA,EAAAV,CAAA,iBAAAA,CAAA,uBAAAA,CAAA,yBAAAA,CAAA,SAAAQ,CAAA,MAAAF,CAAA,GAAAL,CAAA,GAAAG,CAAA,GAAAD,CAAA,QAAAG,CAAA,CAAAK,GAAA,CAAAX,CAAA,UAAAM,CAAA,CAAAM,GAAA,CAAAZ,CAAA,GAAAM,CAAA,CAAAO,GAAA,CAAAb,CAAA,EAAAQ,CAAA,gBAAAP,CAAA,IAAAD,CAAA,gBAAAC,CAAA,OAAAa,cAAA,CAAAC,IAAA,CAAAf,CAAA,EAAAC,CAAA,OAAAM,CAAA,IAAAD,CAAA,GAAAU,MAAA,CAAAC,cAAA,KAAAD,MAAA,CAAAE,wBAAA,CAAAlB,CAAA,EAAAC,CAAA,OAAAM,CAAA,CAAAK,GAAA,IAAAL,CAAA,CAAAM,GAAA,IAAAP,CAAA,CAAAE,CAAA,EAAAP,CAAA,EAAAM,CAAA,IAAAC,CAAA,CAAAP,CAAA,IAAAD,CAAA,CAAAC,CAAA,WAAAO,CAAA,KAAAR,CAAA,EAAAC,CAAA;AAErC,MAAMkB,QAAQ,GAAAC,OAAA,CAAAD,QAAA,GAAG,IAAAE,wBAAc,EAACzB,OAAO,CAAC","ignoreList":[]}
@@ -0,0 +1,6 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ //# sourceMappingURL=types.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":[],"sourceRoot":"../../../src","sources":["combobox/types.ts"],"mappings":"","ignoreList":[]}