@base-ui/react 1.0.0-rc.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 (2647) hide show
  1. package/CHANGELOG.md +1708 -0
  2. package/LICENSE +21 -0
  3. package/README.md +48 -0
  4. package/accordion/header/AccordionHeader.d.ts +14 -0
  5. package/accordion/header/AccordionHeader.js +36 -0
  6. package/accordion/header/AccordionHeaderDataAttributes.d.ts +15 -0
  7. package/accordion/header/AccordionHeaderDataAttributes.js +22 -0
  8. package/accordion/index.d.ts +6 -0
  9. package/accordion/index.js +9 -0
  10. package/accordion/index.parts.d.ts +5 -0
  11. package/accordion/index.parts.js +40 -0
  12. package/accordion/item/AccordionItem.d.ts +45 -0
  13. package/accordion/item/AccordionItem.js +111 -0
  14. package/accordion/item/AccordionItemContext.d.ts +10 -0
  15. package/accordion/item/AccordionItemContext.js +21 -0
  16. package/accordion/item/AccordionItemDataAttributes.d.ts +15 -0
  17. package/accordion/item/AccordionItemDataAttributes.js +22 -0
  18. package/accordion/item/stateAttributesMapping.d.ts +3 -0
  19. package/accordion/item/stateAttributesMapping.js +19 -0
  20. package/accordion/panel/AccordionPanel.d.ts +20 -0
  21. package/accordion/panel/AccordionPanel.js +149 -0
  22. package/accordion/panel/AccordionPanelCssVars.d.ts +12 -0
  23. package/accordion/panel/AccordionPanelCssVars.js +19 -0
  24. package/accordion/panel/AccordionPanelDataAttributes.d.ts +27 -0
  25. package/accordion/panel/AccordionPanelDataAttributes.js +35 -0
  26. package/accordion/root/AccordionRoot.d.ts +83 -0
  27. package/accordion/root/AccordionRoot.js +132 -0
  28. package/accordion/root/AccordionRootContext.d.ts +18 -0
  29. package/accordion/root/AccordionRootContext.js +21 -0
  30. package/accordion/root/AccordionRootDataAttributes.d.ts +10 -0
  31. package/accordion/root/AccordionRootDataAttributes.js +17 -0
  32. package/accordion/trigger/AccordionTrigger.d.ts +14 -0
  33. package/accordion/trigger/AccordionTrigger.js +170 -0
  34. package/accordion/trigger/AccordionTriggerDataAttributes.d.ts +10 -0
  35. package/accordion/trigger/AccordionTriggerDataAttributes.js +17 -0
  36. package/alert-dialog/handle.d.ts +2 -0
  37. package/alert-dialog/handle.js +15 -0
  38. package/alert-dialog/index.d.ts +2 -0
  39. package/alert-dialog/index.js +9 -0
  40. package/alert-dialog/index.parts.d.ts +11 -0
  41. package/alert-dialog/index.parts.js +82 -0
  42. package/alert-dialog/root/AlertDialogRoot.d.ts +42 -0
  43. package/alert-dialog/root/AlertDialogRoot.js +67 -0
  44. package/autocomplete/index.d.ts +18 -0
  45. package/autocomplete/index.js +9 -0
  46. package/autocomplete/index.parts.d.ts +21 -0
  47. package/autocomplete/index.parts.js +152 -0
  48. package/autocomplete/root/AutocompleteRoot.d.ts +116 -0
  49. package/autocomplete/root/AutocompleteRoot.js +111 -0
  50. package/autocomplete/value/AutocompleteValue.d.ts +16 -0
  51. package/autocomplete/value/AutocompleteValue.js +34 -0
  52. package/avatar/fallback/AvatarFallback.d.ts +19 -0
  53. package/avatar/fallback/AvatarFallback.js +50 -0
  54. package/avatar/image/AvatarImage.d.ts +20 -0
  55. package/avatar/image/AvatarImage.js +57 -0
  56. package/avatar/image/useImageLoadingStatus.d.ts +11 -0
  57. package/avatar/image/useImageLoadingStatus.js +43 -0
  58. package/avatar/index.d.ts +4 -0
  59. package/avatar/index.js +9 -0
  60. package/avatar/index.parts.d.ts +3 -0
  61. package/avatar/index.parts.js +26 -0
  62. package/avatar/root/AvatarRoot.d.ts +18 -0
  63. package/avatar/root/AvatarRoot.js +45 -0
  64. package/avatar/root/AvatarRootContext.d.ts +8 -0
  65. package/avatar/root/AvatarRootContext.js +21 -0
  66. package/avatar/root/stateAttributesMapping.d.ts +3 -0
  67. package/avatar/root/stateAttributesMapping.js +9 -0
  68. package/button/Button.d.ts +39 -0
  69. package/button/Button.js +45 -0
  70. package/button/ButtonDataAttributes.d.ts +6 -0
  71. package/button/ButtonDataAttributes.js +13 -0
  72. package/button/index.d.ts +2 -0
  73. package/button/index.js +12 -0
  74. package/checkbox/index.d.ts +3 -0
  75. package/checkbox/index.js +9 -0
  76. package/checkbox/index.parts.d.ts +2 -0
  77. package/checkbox/index.parts.js +19 -0
  78. package/checkbox/indicator/CheckboxIndicator.d.ts +25 -0
  79. package/checkbox/indicator/CheckboxIndicator.js +69 -0
  80. package/checkbox/indicator/CheckboxIndicatorDataAttributes.d.ts +54 -0
  81. package/checkbox/indicator/CheckboxIndicatorDataAttributes.js +62 -0
  82. package/checkbox/root/CheckboxRoot.d.ts +112 -0
  83. package/checkbox/root/CheckboxRoot.js +276 -0
  84. package/checkbox/root/CheckboxRootContext.d.ts +5 -0
  85. package/checkbox/root/CheckboxRootContext.js +21 -0
  86. package/checkbox/root/CheckboxRootDataAttributes.d.ts +46 -0
  87. package/checkbox/root/CheckboxRootDataAttributes.js +53 -0
  88. package/checkbox/utils/useStateAttributesMapping.d.ts +3 -0
  89. package/checkbox/utils/useStateAttributesMapping.js +30 -0
  90. package/checkbox-group/CheckboxGroup.d.ts +53 -0
  91. package/checkbox-group/CheckboxGroup.js +137 -0
  92. package/checkbox-group/CheckboxGroupContext.d.ts +18 -0
  93. package/checkbox-group/CheckboxGroupContext.js +21 -0
  94. package/checkbox-group/CheckboxGroupDataAttributes.d.ts +6 -0
  95. package/checkbox-group/CheckboxGroupDataAttributes.js +13 -0
  96. package/checkbox-group/index.d.ts +2 -0
  97. package/checkbox-group/index.js +12 -0
  98. package/checkbox-group/index.parts.d.ts +1 -0
  99. package/checkbox-group/index.parts.js +12 -0
  100. package/checkbox-group/useCheckboxGroupParent.d.ts +29 -0
  101. package/checkbox-group/useCheckboxGroupParent.js +84 -0
  102. package/collapsible/index.d.ts +4 -0
  103. package/collapsible/index.js +9 -0
  104. package/collapsible/index.parts.d.ts +3 -0
  105. package/collapsible/index.parts.js +26 -0
  106. package/collapsible/panel/CollapsiblePanel.d.ts +35 -0
  107. package/collapsible/panel/CollapsiblePanel.js +138 -0
  108. package/collapsible/panel/CollapsiblePanelCssVars.d.ts +12 -0
  109. package/collapsible/panel/CollapsiblePanelCssVars.js +19 -0
  110. package/collapsible/panel/CollapsiblePanelDataAttributes.d.ts +18 -0
  111. package/collapsible/panel/CollapsiblePanelDataAttributes.js +26 -0
  112. package/collapsible/panel/useCollapsiblePanel.d.ts +62 -0
  113. package/collapsible/panel/useCollapsiblePanel.js +350 -0
  114. package/collapsible/root/CollapsibleRoot.d.ts +45 -0
  115. package/collapsible/root/CollapsibleRoot.js +60 -0
  116. package/collapsible/root/CollapsibleRootContext.d.ts +11 -0
  117. package/collapsible/root/CollapsibleRootContext.js +21 -0
  118. package/collapsible/root/stateAttributesMapping.d.ts +3 -0
  119. package/collapsible/root/stateAttributesMapping.js +12 -0
  120. package/collapsible/root/useCollapsibleRoot.d.ts +79 -0
  121. package/collapsible/root/useCollapsibleRoot.js +118 -0
  122. package/collapsible/trigger/CollapsibleTrigger.d.ts +14 -0
  123. package/collapsible/trigger/CollapsibleTrigger.js +64 -0
  124. package/collapsible/trigger/CollapsibleTriggerDataAttributes.d.ts +6 -0
  125. package/collapsible/trigger/CollapsibleTriggerDataAttributes.js +13 -0
  126. package/combobox/arrow/ComboboxArrow.d.ts +22 -0
  127. package/combobox/arrow/ComboboxArrow.js +52 -0
  128. package/combobox/arrow/ComboboxArrowDataAttributes.d.ts +24 -0
  129. package/combobox/arrow/ComboboxArrowDataAttributes.js +32 -0
  130. package/combobox/backdrop/ComboboxBackdrop.d.ts +20 -0
  131. package/combobox/backdrop/ComboboxBackdrop.js +53 -0
  132. package/combobox/backdrop/ComboboxBackdropDataAttributes.d.ts +18 -0
  133. package/combobox/backdrop/ComboboxBackdropDataAttributes.js +26 -0
  134. package/combobox/chip/ComboboxChip.d.ts +18 -0
  135. package/combobox/chip/ComboboxChip.js +125 -0
  136. package/combobox/chip/ComboboxChipContext.d.ts +6 -0
  137. package/combobox/chip/ComboboxChipContext.js +20 -0
  138. package/combobox/chip-remove/ComboboxChipRemove.d.ts +18 -0
  139. package/combobox/chip-remove/ComboboxChipRemove.js +109 -0
  140. package/combobox/chips/ComboboxChips.d.ts +13 -0
  141. package/combobox/chips/ComboboxChips.js +51 -0
  142. package/combobox/chips/ComboboxChipsContext.d.ts +8 -0
  143. package/combobox/chips/ComboboxChipsContext.js +14 -0
  144. package/combobox/clear/ComboboxClear.d.ts +35 -0
  145. package/combobox/clear/ComboboxClear.js +127 -0
  146. package/combobox/clear/ComboboxClearDataAtributes.d.ts +18 -0
  147. package/combobox/clear/ComboboxClearDataAtributes.js +26 -0
  148. package/combobox/collection/ComboboxCollection.d.ts +14 -0
  149. package/combobox/collection/ComboboxCollection.js +34 -0
  150. package/combobox/collection/GroupCollectionContext.d.ts +14 -0
  151. package/combobox/collection/GroupCollectionContext.js +29 -0
  152. package/combobox/empty/ComboboxEmpty.d.ts +15 -0
  153. package/combobox/empty/ComboboxEmpty.js +40 -0
  154. package/combobox/group/ComboboxGroup.d.ts +19 -0
  155. package/combobox/group/ComboboxGroup.js +50 -0
  156. package/combobox/group/ComboboxGroupContext.d.ts +12 -0
  157. package/combobox/group/ComboboxGroupContext.js +20 -0
  158. package/combobox/group-label/ComboboxGroupLabel.d.ts +13 -0
  159. package/combobox/group-label/ComboboxGroupLabel.js +43 -0
  160. package/combobox/icon/ComboboxIcon.d.ts +13 -0
  161. package/combobox/icon/ComboboxIcon.js +30 -0
  162. package/combobox/index.d.ts +25 -0
  163. package/combobox/index.js +9 -0
  164. package/combobox/index.parts.d.ts +25 -0
  165. package/combobox/index.parts.js +180 -0
  166. package/combobox/input/ComboboxInput.d.ts +38 -0
  167. package/combobox/input/ComboboxInput.js +362 -0
  168. package/combobox/input/ComboboxInputDataAttributes.d.ts +55 -0
  169. package/combobox/input/ComboboxInputDataAttributes.js +63 -0
  170. package/combobox/item/ComboboxItem.d.ts +47 -0
  171. package/combobox/item/ComboboxItem.js +178 -0
  172. package/combobox/item/ComboboxItemContext.d.ts +7 -0
  173. package/combobox/item/ComboboxItemContext.js +20 -0
  174. package/combobox/item/ComboboxtemDataAttributes.d.ts +14 -0
  175. package/combobox/item/ComboboxtemDataAttributes.js +21 -0
  176. package/combobox/item-indicator/ComboboxItemIndicator.d.ts +24 -0
  177. package/combobox/item-indicator/ComboboxItemIndicator.js +79 -0
  178. package/combobox/list/ComboboxList.d.ts +20 -0
  179. package/combobox/list/ComboboxList.js +118 -0
  180. package/combobox/popup/ComboboxPopup.d.ts +44 -0
  181. package/combobox/popup/ComboboxPopup.js +106 -0
  182. package/combobox/popup/ComboboxPopupDataAttributes.d.ts +37 -0
  183. package/combobox/popup/ComboboxPopupDataAttributes.js +45 -0
  184. package/combobox/portal/ComboboxPortal.d.ts +21 -0
  185. package/combobox/portal/ComboboxPortal.js +41 -0
  186. package/combobox/portal/ComboboxPortalContext.d.ts +3 -0
  187. package/combobox/portal/ComboboxPortalContext.js +20 -0
  188. package/combobox/positioner/ComboboxPositioner.d.ts +23 -0
  189. package/combobox/positioner/ComboboxPositioner.js +130 -0
  190. package/combobox/positioner/ComboboxPositionerContext.d.ts +14 -0
  191. package/combobox/positioner/ComboboxPositionerContext.js +21 -0
  192. package/combobox/positioner/ComboboxPositionerCssVars.d.ts +27 -0
  193. package/combobox/positioner/ComboboxPositionerCssVars.js +34 -0
  194. package/combobox/positioner/ComboboxPositionerDataAttributes.d.ts +28 -0
  195. package/combobox/positioner/ComboboxPositionerDataAttributes.js +36 -0
  196. package/combobox/root/AriaCombobox.d.ts +237 -0
  197. package/combobox/root/AriaCombobox.js +1030 -0
  198. package/combobox/root/ComboboxRoot.d.ts +98 -0
  199. package/combobox/root/ComboboxRoot.js +33 -0
  200. package/combobox/root/ComboboxRootContext.d.ts +15 -0
  201. package/combobox/root/ComboboxRootContext.js +48 -0
  202. package/combobox/root/utils/constants.d.ts +5 -0
  203. package/combobox/root/utils/constants.js +11 -0
  204. package/combobox/root/utils/index.d.ts +13 -0
  205. package/combobox/root/utils/index.js +46 -0
  206. package/combobox/root/utils/useFilter.d.ts +33 -0
  207. package/combobox/root/utils/useFilter.js +94 -0
  208. package/combobox/row/ComboboxRow.d.ts +14 -0
  209. package/combobox/row/ComboboxRow.js +35 -0
  210. package/combobox/row/ComboboxRowContext.d.ts +3 -0
  211. package/combobox/row/ComboboxRowContext.js +14 -0
  212. package/combobox/status/ComboboxStatus.d.ts +14 -0
  213. package/combobox/status/ComboboxStatus.js +31 -0
  214. package/combobox/store.d.ts +128 -0
  215. package/combobox/store.js +66 -0
  216. package/combobox/trigger/ComboboxTrigger.d.ts +29 -0
  217. package/combobox/trigger/ComboboxTrigger.js +211 -0
  218. package/combobox/trigger/ComboboxTriggerDataAttributes.d.ts +46 -0
  219. package/combobox/trigger/ComboboxTriggerDataAttributes.js +54 -0
  220. package/combobox/value/ComboboxValue.d.ts +16 -0
  221. package/combobox/value/ComboboxValue.js +40 -0
  222. package/composite/composite.d.ts +27 -0
  223. package/composite/composite.js +174 -0
  224. package/composite/constants.d.ts +1 -0
  225. package/composite/constants.js +7 -0
  226. package/composite/item/CompositeItem.d.ts +19 -0
  227. package/composite/item/CompositeItem.js +38 -0
  228. package/composite/item/useCompositeItem.d.ts +9 -0
  229. package/composite/item/useCompositeItem.js +47 -0
  230. package/composite/list/CompositeList.d.ts +26 -0
  231. package/composite/list/CompositeList.js +159 -0
  232. package/composite/list/CompositeListContext.d.ts +11 -0
  233. package/composite/list/CompositeListContext.js +27 -0
  234. package/composite/list/useCompositeListItem.d.ts +24 -0
  235. package/composite/list/useCompositeListItem.js +85 -0
  236. package/composite/root/CompositeRoot.d.ts +33 -0
  237. package/composite/root/CompositeRoot.js +91 -0
  238. package/composite/root/CompositeRootContext.d.ts +16 -0
  239. package/composite/root/CompositeRootContext.js +21 -0
  240. package/composite/root/useCompositeRoot.d.ts +48 -0
  241. package/composite/root/useCompositeRoot.js +221 -0
  242. package/context-menu/index.d.ts +18 -0
  243. package/context-menu/index.js +9 -0
  244. package/context-menu/index.parts.d.ts +18 -0
  245. package/context-menu/index.parts.js +131 -0
  246. package/context-menu/root/ContextMenuRoot.d.ts +25 -0
  247. package/context-menu/root/ContextMenuRoot.js +59 -0
  248. package/context-menu/root/ContextMenuRootContext.d.ts +23 -0
  249. package/context-menu/root/ContextMenuRootContext.js +20 -0
  250. package/context-menu/trigger/ContextMenuTrigger.d.ts +20 -0
  251. package/context-menu/trigger/ContextMenuTrigger.js +164 -0
  252. package/context-menu/trigger/ContextMenuTriggerDataAttributes.d.ts +10 -0
  253. package/context-menu/trigger/ContextMenuTriggerDataAttributes.js +18 -0
  254. package/dialog/backdrop/DialogBackdrop.d.ts +28 -0
  255. package/dialog/backdrop/DialogBackdrop.js +58 -0
  256. package/dialog/backdrop/DialogBackdropDataAttributes.d.ts +18 -0
  257. package/dialog/backdrop/DialogBackdropDataAttributes.js +26 -0
  258. package/dialog/close/DialogClose.d.ts +20 -0
  259. package/dialog/close/DialogClose.js +56 -0
  260. package/dialog/close/DialogCloseDataAttributes.d.ts +6 -0
  261. package/dialog/close/DialogCloseDataAttributes.js +13 -0
  262. package/dialog/description/DialogDescription.d.ts +15 -0
  263. package/dialog/description/DialogDescription.js +38 -0
  264. package/dialog/index.d.ts +10 -0
  265. package/dialog/index.js +9 -0
  266. package/dialog/index.parts.d.ts +10 -0
  267. package/dialog/index.parts.js +81 -0
  268. package/dialog/popup/DialogPopup.d.ts +52 -0
  269. package/dialog/popup/DialogPopup.js +121 -0
  270. package/dialog/popup/DialogPopupCssVars.d.ts +7 -0
  271. package/dialog/popup/DialogPopupCssVars.js +14 -0
  272. package/dialog/popup/DialogPopupDataAttributes.d.ts +26 -0
  273. package/dialog/popup/DialogPopupDataAttributes.js +34 -0
  274. package/dialog/portal/DialogPortal.d.ts +27 -0
  275. package/dialog/portal/DialogPortal.js +49 -0
  276. package/dialog/portal/DialogPortalContext.d.ts +3 -0
  277. package/dialog/portal/DialogPortalContext.js +20 -0
  278. package/dialog/root/DialogRoot.d.ts +90 -0
  279. package/dialog/root/DialogRoot.js +72 -0
  280. package/dialog/root/DialogRootContext.d.ts +8 -0
  281. package/dialog/root/DialogRootContext.js +21 -0
  282. package/dialog/root/useDialogRoot.d.ts +17 -0
  283. package/dialog/root/useDialogRoot.js +138 -0
  284. package/dialog/store/DialogHandle.d.ts +40 -0
  285. package/dialog/store/DialogHandle.js +74 -0
  286. package/dialog/store/DialogStore.d.ts +54 -0
  287. package/dialog/store/DialogStore.js +84 -0
  288. package/dialog/title/DialogTitle.d.ts +15 -0
  289. package/dialog/title/DialogTitle.js +38 -0
  290. package/dialog/trigger/DialogTrigger.d.ts +43 -0
  291. package/dialog/trigger/DialogTrigger.js +78 -0
  292. package/dialog/trigger/DialogTriggerDataAttributes.d.ts +10 -0
  293. package/dialog/trigger/DialogTriggerDataAttributes.js +18 -0
  294. package/dialog/viewport/DialogViewport.d.ts +30 -0
  295. package/dialog/viewport/DialogViewport.js +73 -0
  296. package/dialog/viewport/DialogViewportDataAttributes.d.ts +26 -0
  297. package/dialog/viewport/DialogViewportDataAttributes.js +34 -0
  298. package/direction-provider/DirectionContext.d.ts +10 -0
  299. package/direction-provider/DirectionContext.js +19 -0
  300. package/direction-provider/DirectionProvider.d.ts +19 -0
  301. package/direction-provider/DirectionProvider.js +29 -0
  302. package/direction-provider/index.d.ts +2 -0
  303. package/direction-provider/index.js +18 -0
  304. package/direction-provider/index.parts.d.ts +3 -0
  305. package/direction-provider/index.parts.js +19 -0
  306. package/esm/accordion/header/AccordionHeader.d.ts +14 -0
  307. package/esm/accordion/header/AccordionHeader.js +31 -0
  308. package/esm/accordion/header/AccordionHeaderDataAttributes.d.ts +15 -0
  309. package/esm/accordion/header/AccordionHeaderDataAttributes.js +16 -0
  310. package/esm/accordion/index.d.ts +6 -0
  311. package/esm/accordion/index.js +1 -0
  312. package/esm/accordion/index.parts.d.ts +5 -0
  313. package/esm/accordion/index.parts.js +5 -0
  314. package/esm/accordion/item/AccordionItem.d.ts +45 -0
  315. package/esm/accordion/item/AccordionItem.js +105 -0
  316. package/esm/accordion/item/AccordionItemContext.d.ts +10 -0
  317. package/esm/accordion/item/AccordionItemContext.js +13 -0
  318. package/esm/accordion/item/AccordionItemDataAttributes.d.ts +15 -0
  319. package/esm/accordion/item/AccordionItemDataAttributes.js +16 -0
  320. package/esm/accordion/item/stateAttributesMapping.d.ts +3 -0
  321. package/esm/accordion/item/stateAttributesMapping.js +13 -0
  322. package/esm/accordion/panel/AccordionPanel.d.ts +20 -0
  323. package/esm/accordion/panel/AccordionPanel.js +143 -0
  324. package/esm/accordion/panel/AccordionPanelCssVars.d.ts +12 -0
  325. package/esm/accordion/panel/AccordionPanelCssVars.js +13 -0
  326. package/esm/accordion/panel/AccordionPanelDataAttributes.d.ts +27 -0
  327. package/esm/accordion/panel/AccordionPanelDataAttributes.js +29 -0
  328. package/esm/accordion/root/AccordionRoot.d.ts +83 -0
  329. package/esm/accordion/root/AccordionRoot.js +126 -0
  330. package/esm/accordion/root/AccordionRootContext.d.ts +18 -0
  331. package/esm/accordion/root/AccordionRootContext.js +13 -0
  332. package/esm/accordion/root/AccordionRootDataAttributes.d.ts +10 -0
  333. package/esm/accordion/root/AccordionRootDataAttributes.js +11 -0
  334. package/esm/accordion/trigger/AccordionTrigger.d.ts +14 -0
  335. package/esm/accordion/trigger/AccordionTrigger.js +164 -0
  336. package/esm/accordion/trigger/AccordionTriggerDataAttributes.d.ts +10 -0
  337. package/esm/accordion/trigger/AccordionTriggerDataAttributes.js +11 -0
  338. package/esm/alert-dialog/handle.d.ts +2 -0
  339. package/esm/alert-dialog/handle.js +9 -0
  340. package/esm/alert-dialog/index.d.ts +2 -0
  341. package/esm/alert-dialog/index.js +1 -0
  342. package/esm/alert-dialog/index.parts.d.ts +11 -0
  343. package/esm/alert-dialog/index.parts.js +11 -0
  344. package/esm/alert-dialog/root/AlertDialogRoot.d.ts +42 -0
  345. package/esm/alert-dialog/root/AlertDialogRoot.js +61 -0
  346. package/esm/autocomplete/index.d.ts +18 -0
  347. package/esm/autocomplete/index.js +1 -0
  348. package/esm/autocomplete/index.parts.d.ts +21 -0
  349. package/esm/autocomplete/index.parts.js +21 -0
  350. package/esm/autocomplete/root/AutocompleteRoot.d.ts +116 -0
  351. package/esm/autocomplete/root/AutocompleteRoot.js +105 -0
  352. package/esm/autocomplete/value/AutocompleteValue.d.ts +16 -0
  353. package/esm/autocomplete/value/AutocompleteValue.js +29 -0
  354. package/esm/avatar/fallback/AvatarFallback.d.ts +19 -0
  355. package/esm/avatar/fallback/AvatarFallback.js +45 -0
  356. package/esm/avatar/image/AvatarImage.d.ts +20 -0
  357. package/esm/avatar/image/AvatarImage.js +52 -0
  358. package/esm/avatar/image/useImageLoadingStatus.d.ts +11 -0
  359. package/esm/avatar/image/useImageLoadingStatus.js +37 -0
  360. package/esm/avatar/index.d.ts +4 -0
  361. package/esm/avatar/index.js +1 -0
  362. package/esm/avatar/index.parts.d.ts +3 -0
  363. package/esm/avatar/index.parts.js +3 -0
  364. package/esm/avatar/root/AvatarRoot.d.ts +18 -0
  365. package/esm/avatar/root/AvatarRoot.js +40 -0
  366. package/esm/avatar/root/AvatarRootContext.d.ts +8 -0
  367. package/esm/avatar/root/AvatarRootContext.js +13 -0
  368. package/esm/avatar/root/stateAttributesMapping.d.ts +3 -0
  369. package/esm/avatar/root/stateAttributesMapping.js +3 -0
  370. package/esm/button/Button.d.ts +39 -0
  371. package/esm/button/Button.js +39 -0
  372. package/esm/button/ButtonDataAttributes.d.ts +6 -0
  373. package/esm/button/ButtonDataAttributes.js +7 -0
  374. package/esm/button/index.d.ts +2 -0
  375. package/esm/button/index.js +1 -0
  376. package/esm/checkbox/index.d.ts +3 -0
  377. package/esm/checkbox/index.js +1 -0
  378. package/esm/checkbox/index.parts.d.ts +2 -0
  379. package/esm/checkbox/index.parts.js +2 -0
  380. package/esm/checkbox/indicator/CheckboxIndicator.d.ts +25 -0
  381. package/esm/checkbox/indicator/CheckboxIndicator.js +64 -0
  382. package/esm/checkbox/indicator/CheckboxIndicatorDataAttributes.d.ts +54 -0
  383. package/esm/checkbox/indicator/CheckboxIndicatorDataAttributes.js +56 -0
  384. package/esm/checkbox/root/CheckboxRoot.d.ts +112 -0
  385. package/esm/checkbox/root/CheckboxRoot.js +270 -0
  386. package/esm/checkbox/root/CheckboxRootContext.d.ts +5 -0
  387. package/esm/checkbox/root/CheckboxRootContext.js +13 -0
  388. package/esm/checkbox/root/CheckboxRootDataAttributes.d.ts +46 -0
  389. package/esm/checkbox/root/CheckboxRootDataAttributes.js +47 -0
  390. package/esm/checkbox/utils/useStateAttributesMapping.d.ts +3 -0
  391. package/esm/checkbox/utils/useStateAttributesMapping.js +24 -0
  392. package/esm/checkbox-group/CheckboxGroup.d.ts +53 -0
  393. package/esm/checkbox-group/CheckboxGroup.js +132 -0
  394. package/esm/checkbox-group/CheckboxGroupContext.d.ts +18 -0
  395. package/esm/checkbox-group/CheckboxGroupContext.js +13 -0
  396. package/esm/checkbox-group/CheckboxGroupDataAttributes.d.ts +6 -0
  397. package/esm/checkbox-group/CheckboxGroupDataAttributes.js +7 -0
  398. package/esm/checkbox-group/index.d.ts +2 -0
  399. package/esm/checkbox-group/index.js +1 -0
  400. package/esm/checkbox-group/index.parts.d.ts +1 -0
  401. package/esm/checkbox-group/index.parts.js +1 -0
  402. package/esm/checkbox-group/useCheckboxGroupParent.d.ts +29 -0
  403. package/esm/checkbox-group/useCheckboxGroupParent.js +78 -0
  404. package/esm/collapsible/index.d.ts +4 -0
  405. package/esm/collapsible/index.js +1 -0
  406. package/esm/collapsible/index.parts.d.ts +3 -0
  407. package/esm/collapsible/index.parts.js +3 -0
  408. package/esm/collapsible/panel/CollapsiblePanel.d.ts +35 -0
  409. package/esm/collapsible/panel/CollapsiblePanel.js +132 -0
  410. package/esm/collapsible/panel/CollapsiblePanelCssVars.d.ts +12 -0
  411. package/esm/collapsible/panel/CollapsiblePanelCssVars.js +13 -0
  412. package/esm/collapsible/panel/CollapsiblePanelDataAttributes.d.ts +18 -0
  413. package/esm/collapsible/panel/CollapsiblePanelDataAttributes.js +20 -0
  414. package/esm/collapsible/panel/useCollapsiblePanel.d.ts +62 -0
  415. package/esm/collapsible/panel/useCollapsiblePanel.js +344 -0
  416. package/esm/collapsible/root/CollapsibleRoot.d.ts +45 -0
  417. package/esm/collapsible/root/CollapsibleRoot.js +54 -0
  418. package/esm/collapsible/root/CollapsibleRootContext.d.ts +11 -0
  419. package/esm/collapsible/root/CollapsibleRootContext.js +13 -0
  420. package/esm/collapsible/root/stateAttributesMapping.d.ts +3 -0
  421. package/esm/collapsible/root/stateAttributesMapping.js +6 -0
  422. package/esm/collapsible/root/useCollapsibleRoot.d.ts +79 -0
  423. package/esm/collapsible/root/useCollapsibleRoot.js +112 -0
  424. package/esm/collapsible/trigger/CollapsibleTrigger.d.ts +14 -0
  425. package/esm/collapsible/trigger/CollapsibleTrigger.js +58 -0
  426. package/esm/collapsible/trigger/CollapsibleTriggerDataAttributes.d.ts +6 -0
  427. package/esm/collapsible/trigger/CollapsibleTriggerDataAttributes.js +7 -0
  428. package/esm/combobox/arrow/ComboboxArrow.d.ts +22 -0
  429. package/esm/combobox/arrow/ComboboxArrow.js +47 -0
  430. package/esm/combobox/arrow/ComboboxArrowDataAttributes.d.ts +24 -0
  431. package/esm/combobox/arrow/ComboboxArrowDataAttributes.js +26 -0
  432. package/esm/combobox/backdrop/ComboboxBackdrop.d.ts +20 -0
  433. package/esm/combobox/backdrop/ComboboxBackdrop.js +47 -0
  434. package/esm/combobox/backdrop/ComboboxBackdropDataAttributes.d.ts +18 -0
  435. package/esm/combobox/backdrop/ComboboxBackdropDataAttributes.js +20 -0
  436. package/esm/combobox/chip/ComboboxChip.d.ts +18 -0
  437. package/esm/combobox/chip/ComboboxChip.js +120 -0
  438. package/esm/combobox/chip/ComboboxChipContext.d.ts +6 -0
  439. package/esm/combobox/chip/ComboboxChipContext.js +11 -0
  440. package/esm/combobox/chip-remove/ComboboxChipRemove.d.ts +18 -0
  441. package/esm/combobox/chip-remove/ComboboxChipRemove.js +104 -0
  442. package/esm/combobox/chips/ComboboxChips.d.ts +13 -0
  443. package/esm/combobox/chips/ComboboxChips.js +46 -0
  444. package/esm/combobox/chips/ComboboxChipsContext.d.ts +8 -0
  445. package/esm/combobox/chips/ComboboxChipsContext.js +6 -0
  446. package/esm/combobox/clear/ComboboxClear.d.ts +35 -0
  447. package/esm/combobox/clear/ComboboxClear.js +121 -0
  448. package/esm/combobox/clear/ComboboxClearDataAtributes.d.ts +18 -0
  449. package/esm/combobox/clear/ComboboxClearDataAtributes.js +20 -0
  450. package/esm/combobox/collection/ComboboxCollection.d.ts +14 -0
  451. package/esm/combobox/collection/ComboboxCollection.js +29 -0
  452. package/esm/combobox/collection/GroupCollectionContext.d.ts +14 -0
  453. package/esm/combobox/collection/GroupCollectionContext.js +22 -0
  454. package/esm/combobox/empty/ComboboxEmpty.d.ts +15 -0
  455. package/esm/combobox/empty/ComboboxEmpty.js +35 -0
  456. package/esm/combobox/group/ComboboxGroup.d.ts +19 -0
  457. package/esm/combobox/group/ComboboxGroup.js +45 -0
  458. package/esm/combobox/group/ComboboxGroupContext.d.ts +12 -0
  459. package/esm/combobox/group/ComboboxGroupContext.js +11 -0
  460. package/esm/combobox/group-label/ComboboxGroupLabel.d.ts +13 -0
  461. package/esm/combobox/group-label/ComboboxGroupLabel.js +38 -0
  462. package/esm/combobox/icon/ComboboxIcon.d.ts +13 -0
  463. package/esm/combobox/icon/ComboboxIcon.js +25 -0
  464. package/esm/combobox/index.d.ts +25 -0
  465. package/esm/combobox/index.js +1 -0
  466. package/esm/combobox/index.parts.d.ts +25 -0
  467. package/esm/combobox/index.parts.js +25 -0
  468. package/esm/combobox/input/ComboboxInput.d.ts +38 -0
  469. package/esm/combobox/input/ComboboxInput.js +356 -0
  470. package/esm/combobox/input/ComboboxInputDataAttributes.d.ts +55 -0
  471. package/esm/combobox/input/ComboboxInputDataAttributes.js +57 -0
  472. package/esm/combobox/item/ComboboxItem.d.ts +47 -0
  473. package/esm/combobox/item/ComboboxItem.js +173 -0
  474. package/esm/combobox/item/ComboboxItemContext.d.ts +7 -0
  475. package/esm/combobox/item/ComboboxItemContext.js +11 -0
  476. package/esm/combobox/item/ComboboxtemDataAttributes.d.ts +14 -0
  477. package/esm/combobox/item/ComboboxtemDataAttributes.js +15 -0
  478. package/esm/combobox/item-indicator/ComboboxItemIndicator.d.ts +24 -0
  479. package/esm/combobox/item-indicator/ComboboxItemIndicator.js +74 -0
  480. package/esm/combobox/list/ComboboxList.d.ts +20 -0
  481. package/esm/combobox/list/ComboboxList.js +113 -0
  482. package/esm/combobox/popup/ComboboxPopup.d.ts +44 -0
  483. package/esm/combobox/popup/ComboboxPopup.js +100 -0
  484. package/esm/combobox/popup/ComboboxPopupDataAttributes.d.ts +37 -0
  485. package/esm/combobox/popup/ComboboxPopupDataAttributes.js +39 -0
  486. package/esm/combobox/portal/ComboboxPortal.d.ts +21 -0
  487. package/esm/combobox/portal/ComboboxPortal.js +36 -0
  488. package/esm/combobox/portal/ComboboxPortalContext.d.ts +3 -0
  489. package/esm/combobox/portal/ComboboxPortalContext.js +11 -0
  490. package/esm/combobox/positioner/ComboboxPositioner.d.ts +23 -0
  491. package/esm/combobox/positioner/ComboboxPositioner.js +125 -0
  492. package/esm/combobox/positioner/ComboboxPositionerContext.d.ts +14 -0
  493. package/esm/combobox/positioner/ComboboxPositionerContext.js +13 -0
  494. package/esm/combobox/positioner/ComboboxPositionerCssVars.d.ts +27 -0
  495. package/esm/combobox/positioner/ComboboxPositionerCssVars.js +28 -0
  496. package/esm/combobox/positioner/ComboboxPositionerDataAttributes.d.ts +28 -0
  497. package/esm/combobox/positioner/ComboboxPositionerDataAttributes.js +30 -0
  498. package/esm/combobox/root/AriaCombobox.d.ts +237 -0
  499. package/esm/combobox/root/AriaCombobox.js +1024 -0
  500. package/esm/combobox/root/ComboboxRoot.d.ts +98 -0
  501. package/esm/combobox/root/ComboboxRoot.js +28 -0
  502. package/esm/combobox/root/ComboboxRootContext.d.ts +15 -0
  503. package/esm/combobox/root/ComboboxRootContext.js +36 -0
  504. package/esm/combobox/root/utils/constants.d.ts +5 -0
  505. package/esm/combobox/root/utils/constants.js +5 -0
  506. package/esm/combobox/root/utils/index.d.ts +13 -0
  507. package/esm/combobox/root/utils/index.js +39 -0
  508. package/esm/combobox/root/utils/useFilter.d.ts +33 -0
  509. package/esm/combobox/root/utils/useFilter.js +87 -0
  510. package/esm/combobox/row/ComboboxRow.d.ts +14 -0
  511. package/esm/combobox/row/ComboboxRow.js +30 -0
  512. package/esm/combobox/row/ComboboxRowContext.d.ts +3 -0
  513. package/esm/combobox/row/ComboboxRowContext.js +6 -0
  514. package/esm/combobox/status/ComboboxStatus.d.ts +14 -0
  515. package/esm/combobox/status/ComboboxStatus.js +26 -0
  516. package/esm/combobox/store.d.ts +128 -0
  517. package/esm/combobox/store.js +60 -0
  518. package/esm/combobox/trigger/ComboboxTrigger.d.ts +29 -0
  519. package/esm/combobox/trigger/ComboboxTrigger.js +205 -0
  520. package/esm/combobox/trigger/ComboboxTriggerDataAttributes.d.ts +46 -0
  521. package/esm/combobox/trigger/ComboboxTriggerDataAttributes.js +48 -0
  522. package/esm/combobox/value/ComboboxValue.d.ts +16 -0
  523. package/esm/combobox/value/ComboboxValue.js +35 -0
  524. package/esm/composite/composite.d.ts +27 -0
  525. package/esm/composite/composite.js +106 -0
  526. package/esm/composite/constants.d.ts +1 -0
  527. package/esm/composite/constants.js +1 -0
  528. package/esm/composite/item/CompositeItem.d.ts +19 -0
  529. package/esm/composite/item/CompositeItem.js +33 -0
  530. package/esm/composite/item/useCompositeItem.d.ts +9 -0
  531. package/esm/composite/item/useCompositeItem.js +41 -0
  532. package/esm/composite/list/CompositeList.d.ts +26 -0
  533. package/esm/composite/list/CompositeList.js +153 -0
  534. package/esm/composite/list/CompositeListContext.d.ts +11 -0
  535. package/esm/composite/list/CompositeListContext.js +20 -0
  536. package/esm/composite/list/useCompositeListItem.d.ts +24 -0
  537. package/esm/composite/list/useCompositeListItem.js +79 -0
  538. package/esm/composite/root/CompositeRoot.d.ts +33 -0
  539. package/esm/composite/root/CompositeRoot.js +85 -0
  540. package/esm/composite/root/CompositeRootContext.d.ts +16 -0
  541. package/esm/composite/root/CompositeRootContext.js +13 -0
  542. package/esm/composite/root/useCompositeRoot.d.ts +48 -0
  543. package/esm/composite/root/useCompositeRoot.js +215 -0
  544. package/esm/context-menu/index.d.ts +18 -0
  545. package/esm/context-menu/index.js +1 -0
  546. package/esm/context-menu/index.parts.d.ts +18 -0
  547. package/esm/context-menu/index.parts.js +18 -0
  548. package/esm/context-menu/root/ContextMenuRoot.d.ts +25 -0
  549. package/esm/context-menu/root/ContextMenuRoot.js +53 -0
  550. package/esm/context-menu/root/ContextMenuRootContext.d.ts +23 -0
  551. package/esm/context-menu/root/ContextMenuRootContext.js +11 -0
  552. package/esm/context-menu/trigger/ContextMenuTrigger.d.ts +20 -0
  553. package/esm/context-menu/trigger/ContextMenuTrigger.js +158 -0
  554. package/esm/context-menu/trigger/ContextMenuTriggerDataAttributes.d.ts +10 -0
  555. package/esm/context-menu/trigger/ContextMenuTriggerDataAttributes.js +12 -0
  556. package/esm/dialog/backdrop/DialogBackdrop.d.ts +28 -0
  557. package/esm/dialog/backdrop/DialogBackdrop.js +52 -0
  558. package/esm/dialog/backdrop/DialogBackdropDataAttributes.d.ts +18 -0
  559. package/esm/dialog/backdrop/DialogBackdropDataAttributes.js +20 -0
  560. package/esm/dialog/close/DialogClose.d.ts +20 -0
  561. package/esm/dialog/close/DialogClose.js +51 -0
  562. package/esm/dialog/close/DialogCloseDataAttributes.d.ts +6 -0
  563. package/esm/dialog/close/DialogCloseDataAttributes.js +7 -0
  564. package/esm/dialog/description/DialogDescription.d.ts +15 -0
  565. package/esm/dialog/description/DialogDescription.js +32 -0
  566. package/esm/dialog/index.d.ts +10 -0
  567. package/esm/dialog/index.js +1 -0
  568. package/esm/dialog/index.parts.d.ts +10 -0
  569. package/esm/dialog/index.parts.js +10 -0
  570. package/esm/dialog/popup/DialogPopup.d.ts +52 -0
  571. package/esm/dialog/popup/DialogPopup.js +115 -0
  572. package/esm/dialog/popup/DialogPopupCssVars.d.ts +7 -0
  573. package/esm/dialog/popup/DialogPopupCssVars.js +8 -0
  574. package/esm/dialog/popup/DialogPopupDataAttributes.d.ts +26 -0
  575. package/esm/dialog/popup/DialogPopupDataAttributes.js +28 -0
  576. package/esm/dialog/portal/DialogPortal.d.ts +27 -0
  577. package/esm/dialog/portal/DialogPortal.js +44 -0
  578. package/esm/dialog/portal/DialogPortalContext.d.ts +3 -0
  579. package/esm/dialog/portal/DialogPortalContext.js +11 -0
  580. package/esm/dialog/root/DialogRoot.d.ts +90 -0
  581. package/esm/dialog/root/DialogRoot.js +66 -0
  582. package/esm/dialog/root/DialogRootContext.d.ts +8 -0
  583. package/esm/dialog/root/DialogRootContext.js +13 -0
  584. package/esm/dialog/root/useDialogRoot.d.ts +17 -0
  585. package/esm/dialog/root/useDialogRoot.js +132 -0
  586. package/esm/dialog/store/DialogHandle.d.ts +40 -0
  587. package/esm/dialog/store/DialogHandle.js +67 -0
  588. package/esm/dialog/store/DialogStore.d.ts +54 -0
  589. package/esm/dialog/store/DialogStore.js +76 -0
  590. package/esm/dialog/title/DialogTitle.d.ts +15 -0
  591. package/esm/dialog/title/DialogTitle.js +32 -0
  592. package/esm/dialog/trigger/DialogTrigger.d.ts +43 -0
  593. package/esm/dialog/trigger/DialogTrigger.js +72 -0
  594. package/esm/dialog/trigger/DialogTriggerDataAttributes.d.ts +10 -0
  595. package/esm/dialog/trigger/DialogTriggerDataAttributes.js +12 -0
  596. package/esm/dialog/viewport/DialogViewport.d.ts +30 -0
  597. package/esm/dialog/viewport/DialogViewport.js +67 -0
  598. package/esm/dialog/viewport/DialogViewportDataAttributes.d.ts +26 -0
  599. package/esm/dialog/viewport/DialogViewportDataAttributes.js +28 -0
  600. package/esm/direction-provider/DirectionContext.d.ts +10 -0
  601. package/esm/direction-provider/DirectionContext.js +12 -0
  602. package/esm/direction-provider/DirectionProvider.d.ts +19 -0
  603. package/esm/direction-provider/DirectionProvider.js +24 -0
  604. package/esm/direction-provider/index.d.ts +2 -0
  605. package/esm/direction-provider/index.js +1 -0
  606. package/esm/direction-provider/index.parts.d.ts +3 -0
  607. package/esm/direction-provider/index.parts.js +2 -0
  608. package/esm/field/control/FieldControl.d.ts +32 -0
  609. package/esm/field/control/FieldControl.js +134 -0
  610. package/esm/field/control/FieldControlDataAttributes.d.ts +30 -0
  611. package/esm/field/control/FieldControlDataAttributes.js +31 -0
  612. package/esm/field/description/FieldDescription.d.ts +16 -0
  613. package/esm/field/description/FieldDescription.js +48 -0
  614. package/esm/field/description/FieldDescriptionDataAttributes.d.ts +30 -0
  615. package/esm/field/description/FieldDescriptionDataAttributes.js +31 -0
  616. package/esm/field/error/FieldError.d.ts +24 -0
  617. package/esm/field/error/FieldError.js +72 -0
  618. package/esm/field/error/FieldErrorDataAttributes.d.ts +30 -0
  619. package/esm/field/error/FieldErrorDataAttributes.js +31 -0
  620. package/esm/field/index.d.ts +7 -0
  621. package/esm/field/index.js +1 -0
  622. package/esm/field/index.parts.d.ts +8 -0
  623. package/esm/field/index.parts.js +7 -0
  624. package/esm/field/item/FieldItem.d.ts +22 -0
  625. package/esm/field/item/FieldItem.js +53 -0
  626. package/esm/field/item/FieldItemContext.d.ts +6 -0
  627. package/esm/field/item/FieldItemContext.js +9 -0
  628. package/esm/field/label/FieldLabel.d.ts +16 -0
  629. package/esm/field/label/FieldLabel.js +63 -0
  630. package/esm/field/label/FieldLabelDataAttributes.d.ts +30 -0
  631. package/esm/field/label/FieldLabelDataAttributes.js +31 -0
  632. package/esm/field/root/FieldRoot.d.ts +94 -0
  633. package/esm/field/root/FieldRoot.js +141 -0
  634. package/esm/field/root/FieldRootContext.d.ts +28 -0
  635. package/esm/field/root/FieldRootContext.js +59 -0
  636. package/esm/field/root/FieldRootDataAttributes.d.ts +30 -0
  637. package/esm/field/root/FieldRootDataAttributes.js +31 -0
  638. package/esm/field/root/useFieldValidation.d.ts +22 -0
  639. package/esm/field/root/useFieldValidation.js +239 -0
  640. package/esm/field/useField.d.ts +14 -0
  641. package/esm/field/useField.js +69 -0
  642. package/esm/field/utils/constants.d.ts +16 -0
  643. package/esm/field/utils/constants.js +29 -0
  644. package/esm/field/utils/getCombinedFieldValidityData.d.ts +24 -0
  645. package/esm/field/utils/getCombinedFieldValidityData.js +13 -0
  646. package/esm/field/validity/FieldValidity.d.ts +30 -0
  647. package/esm/field/validity/FieldValidity.js +32 -0
  648. package/esm/fieldset/index.d.ts +3 -0
  649. package/esm/fieldset/index.js +1 -0
  650. package/esm/fieldset/index.parts.d.ts +2 -0
  651. package/esm/fieldset/index.parts.js +2 -0
  652. package/esm/fieldset/legend/FieldsetLegend.d.ts +20 -0
  653. package/esm/fieldset/legend/FieldsetLegend.js +44 -0
  654. package/esm/fieldset/root/FieldsetRoot.d.ts +20 -0
  655. package/esm/fieldset/root/FieldsetRoot.js +42 -0
  656. package/esm/fieldset/root/FieldsetRootContext.d.ts +9 -0
  657. package/esm/fieldset/root/FieldsetRootContext.js +17 -0
  658. package/esm/floating-ui-react/components/FloatingDelayGroup.d.ts +60 -0
  659. package/esm/floating-ui-react/components/FloatingDelayGroup.js +162 -0
  660. package/esm/floating-ui-react/components/FloatingFocusManager.d.ts +105 -0
  661. package/esm/floating-ui-react/components/FloatingFocusManager.js +592 -0
  662. package/esm/floating-ui-react/components/FloatingPortal.d.ts +54 -0
  663. package/esm/floating-ui-react/components/FloatingPortal.js +195 -0
  664. package/esm/floating-ui-react/components/FloatingRootStore.d.ts +52 -0
  665. package/esm/floating-ui-react/components/FloatingRootStore.js +61 -0
  666. package/esm/floating-ui-react/components/FloatingTree.d.ts +43 -0
  667. package/esm/floating-ui-react/components/FloatingTree.js +91 -0
  668. package/esm/floating-ui-react/components/FloatingTreeStore.d.ts +11 -0
  669. package/esm/floating-ui-react/components/FloatingTreeStore.js +21 -0
  670. package/esm/floating-ui-react/hooks/useClick.d.ts +43 -0
  671. package/esm/floating-ui-react/hooks/useClick.js +110 -0
  672. package/esm/floating-ui-react/hooks/useClientPoint.d.ts +32 -0
  673. package/esm/floating-ui-react/hooks/useClientPoint.js +181 -0
  674. package/esm/floating-ui-react/hooks/useDismiss.d.ts +88 -0
  675. package/esm/floating-ui-react/hooks/useDismiss.js +431 -0
  676. package/esm/floating-ui-react/hooks/useFloating.d.ts +6 -0
  677. package/esm/floating-ui-react/hooks/useFloating.js +115 -0
  678. package/esm/floating-ui-react/hooks/useFloatingRootContext.d.ts +18 -0
  679. package/esm/floating-ui-react/hooks/useFloatingRootContext.js +52 -0
  680. package/esm/floating-ui-react/hooks/useFocus.d.ts +21 -0
  681. package/esm/floating-ui-react/hooks/useFocus.js +142 -0
  682. package/esm/floating-ui-react/hooks/useHover.d.ts +66 -0
  683. package/esm/floating-ui-react/hooks/useHover.js +414 -0
  684. package/esm/floating-ui-react/hooks/useHoverFloatingInteraction.d.ts +25 -0
  685. package/esm/floating-ui-react/hooks/useHoverFloatingInteraction.js +181 -0
  686. package/esm/floating-ui-react/hooks/useHoverInteractionSharedState.d.ts +18 -0
  687. package/esm/floating-ui-react/hooks/useHoverInteractionSharedState.js +39 -0
  688. package/esm/floating-ui-react/hooks/useHoverReferenceInteraction.d.ts +19 -0
  689. package/esm/floating-ui-react/hooks/useHoverReferenceInteraction.js +283 -0
  690. package/esm/floating-ui-react/hooks/useInteractions.d.ts +20 -0
  691. package/esm/floating-ui-react/hooks/useInteractions.js +88 -0
  692. package/esm/floating-ui-react/hooks/useListNavigation.d.ts +156 -0
  693. package/esm/floating-ui-react/hooks/useListNavigation.js +593 -0
  694. package/esm/floating-ui-react/hooks/useRole.d.ts +23 -0
  695. package/esm/floating-ui-react/hooks/useRole.js +114 -0
  696. package/esm/floating-ui-react/hooks/useSyncedFloatingRootContext.d.ts +21 -0
  697. package/esm/floating-ui-react/hooks/useSyncedFloatingRootContext.js +52 -0
  698. package/esm/floating-ui-react/hooks/useTypeahead.d.ts +55 -0
  699. package/esm/floating-ui-react/hooks/useTypeahead.js +123 -0
  700. package/esm/floating-ui-react/index.d.ts +22 -0
  701. package/esm/floating-ui-react/index.js +21 -0
  702. package/esm/floating-ui-react/middleware/arrow.d.ts +31 -0
  703. package/esm/floating-ui-react/middleware/arrow.js +94 -0
  704. package/esm/floating-ui-react/safePolygon.d.ts +12 -0
  705. package/esm/floating-ui-react/safePolygon.js +217 -0
  706. package/esm/floating-ui-react/types.d.ts +122 -0
  707. package/esm/floating-ui-react/types.js +2 -0
  708. package/esm/floating-ui-react/utils/composite.d.ts +48 -0
  709. package/esm/floating-ui-react/utils/composite.js +349 -0
  710. package/esm/floating-ui-react/utils/constants.d.ts +8 -0
  711. package/esm/floating-ui-react/utils/constants.js +8 -0
  712. package/esm/floating-ui-react/utils/createAttribute.d.ts +1 -0
  713. package/esm/floating-ui-react/utils/createAttribute.js +3 -0
  714. package/esm/floating-ui-react/utils/createEventEmitter.d.ts +2 -0
  715. package/esm/floating-ui-react/utils/createEventEmitter.js +17 -0
  716. package/esm/floating-ui-react/utils/element.d.ts +10 -0
  717. package/esm/floating-ui-react/utils/element.js +93 -0
  718. package/esm/floating-ui-react/utils/enqueueFocus.d.ts +8 -0
  719. package/esm/floating-ui-react/utils/enqueueFocus.js +19 -0
  720. package/esm/floating-ui-react/utils/event.d.ts +6 -0
  721. package/esm/floating-ui-react/utils/event.js +42 -0
  722. package/esm/floating-ui-react/utils/getEmptyRootContext.d.ts +2 -0
  723. package/esm/floating-ui-react/utils/getEmptyRootContext.js +14 -0
  724. package/esm/floating-ui-react/utils/markOthers.d.ts +4 -0
  725. package/esm/floating-ui-react/utils/markOthers.js +121 -0
  726. package/esm/floating-ui-react/utils/nodes.d.ts +4 -0
  727. package/esm/floating-ui-react/utils/nodes.js +34 -0
  728. package/esm/floating-ui-react/utils/tabbable.d.ts +12 -0
  729. package/esm/floating-ui-react/utils/tabbable.js +74 -0
  730. package/esm/floating-ui-react/utils.d.ts +5 -0
  731. package/esm/floating-ui-react/utils.js +5 -0
  732. package/esm/form/Form.d.ts +52 -0
  733. package/esm/form/Form.js +112 -0
  734. package/esm/form/FormContext.d.ts +21 -0
  735. package/esm/form/FormContext.js +21 -0
  736. package/esm/form/index.d.ts +2 -0
  737. package/esm/form/index.js +1 -0
  738. package/esm/global.d.ts +8 -0
  739. package/esm/index.d.ts +40 -0
  740. package/esm/index.js +46 -0
  741. package/esm/input/Input.d.ts +26 -0
  742. package/esm/input/Input.js +19 -0
  743. package/esm/input/InputDataAttributes.d.ts +30 -0
  744. package/esm/input/InputDataAttributes.js +31 -0
  745. package/esm/input/index.d.ts +2 -0
  746. package/esm/input/index.js +1 -0
  747. package/esm/labelable-provider/LabelableContext.d.ts +27 -0
  748. package/esm/labelable-provider/LabelableContext.js +21 -0
  749. package/esm/labelable-provider/LabelableProvider.d.ts +12 -0
  750. package/esm/labelable-provider/LabelableProvider.js +39 -0
  751. package/esm/labelable-provider/index.d.ts +1 -0
  752. package/esm/labelable-provider/index.js +1 -0
  753. package/esm/labelable-provider/useLabelableId.d.ts +18 -0
  754. package/esm/labelable-provider/useLabelableId.js +40 -0
  755. package/esm/menu/arrow/MenuArrow.d.ts +24 -0
  756. package/esm/menu/arrow/MenuArrow.js +49 -0
  757. package/esm/menu/arrow/MenuArrowDataAttributes.d.ts +24 -0
  758. package/esm/menu/arrow/MenuArrowDataAttributes.js +26 -0
  759. package/esm/menu/backdrop/MenuBackdrop.d.ts +22 -0
  760. package/esm/menu/backdrop/MenuBackdrop.js +54 -0
  761. package/esm/menu/backdrop/MenuBackdropDataAttributes.d.ts +18 -0
  762. package/esm/menu/backdrop/MenuBackdropDataAttributes.js +20 -0
  763. package/esm/menu/checkbox-item/MenuCheckboxItem.d.ts +73 -0
  764. package/esm/menu/checkbox-item/MenuCheckboxItem.js +97 -0
  765. package/esm/menu/checkbox-item/MenuCheckboxItemContext.d.ts +8 -0
  766. package/esm/menu/checkbox-item/MenuCheckboxItemContext.js +11 -0
  767. package/esm/menu/checkbox-item/MenuCheckboxItemDataAttributes.d.ts +18 -0
  768. package/esm/menu/checkbox-item/MenuCheckboxItemDataAttributes.js +19 -0
  769. package/esm/menu/checkbox-item-indicator/MenuCheckboxItemIndicator.d.ts +33 -0
  770. package/esm/menu/checkbox-item-indicator/MenuCheckboxItemIndicator.js +56 -0
  771. package/esm/menu/checkbox-item-indicator/MenuCheckboxItemIndicatorDataAttributes.d.ts +22 -0
  772. package/esm/menu/checkbox-item-indicator/MenuCheckboxItemIndicatorDataAttributes.js +24 -0
  773. package/esm/menu/group/MenuGroup.d.ts +20 -0
  774. package/esm/menu/group/MenuGroup.js +37 -0
  775. package/esm/menu/group/MenuGroupContext.d.ts +6 -0
  776. package/esm/menu/group/MenuGroupContext.js +11 -0
  777. package/esm/menu/group-label/MenuGroupLabel.d.ts +15 -0
  778. package/esm/menu/group-label/MenuGroupLabel.js +41 -0
  779. package/esm/menu/index.d.ts +18 -0
  780. package/esm/menu/index.js +1 -0
  781. package/esm/menu/index.parts.d.ts +19 -0
  782. package/esm/menu/index.parts.js +19 -0
  783. package/esm/menu/item/MenuItem.d.ts +48 -0
  784. package/esm/menu/item/MenuItem.js +61 -0
  785. package/esm/menu/item/MenuItemDataAttributes.d.ts +10 -0
  786. package/esm/menu/item/MenuItemDataAttributes.js +11 -0
  787. package/esm/menu/item/useMenuItem.d.ts +65 -0
  788. package/esm/menu/item/useMenuItem.js +96 -0
  789. package/esm/menu/popup/MenuPopup.d.ts +43 -0
  790. package/esm/menu/popup/MenuPopup.js +120 -0
  791. package/esm/menu/popup/MenuPopupDataAttributes.d.ts +33 -0
  792. package/esm/menu/popup/MenuPopupDataAttributes.js +35 -0
  793. package/esm/menu/portal/MenuPortal.d.ts +23 -0
  794. package/esm/menu/portal/MenuPortal.js +37 -0
  795. package/esm/menu/portal/MenuPortalContext.d.ts +3 -0
  796. package/esm/menu/portal/MenuPortalContext.js +11 -0
  797. package/esm/menu/positioner/MenuPositioner.d.ts +25 -0
  798. package/esm/menu/positioner/MenuPositioner.js +229 -0
  799. package/esm/menu/positioner/MenuPositionerContext.d.ts +19 -0
  800. package/esm/menu/positioner/MenuPositionerContext.js +13 -0
  801. package/esm/menu/positioner/MenuPositionerCssVars.d.ts +27 -0
  802. package/esm/menu/positioner/MenuPositionerCssVars.js +28 -0
  803. package/esm/menu/positioner/MenuPositionerDataAttributes.d.ts +24 -0
  804. package/esm/menu/positioner/MenuPositionerDataAttributes.js +26 -0
  805. package/esm/menu/radio-group/MenuRadioGroup.d.ts +49 -0
  806. package/esm/menu/radio-group/MenuRadioGroup.js +60 -0
  807. package/esm/menu/radio-group/MenuRadioGroupContext.d.ts +9 -0
  808. package/esm/menu/radio-group/MenuRadioGroupContext.js +11 -0
  809. package/esm/menu/radio-item/MenuRadioItem.d.ts +56 -0
  810. package/esm/menu/radio-item/MenuRadioItem.js +93 -0
  811. package/esm/menu/radio-item/MenuRadioItemContext.d.ts +8 -0
  812. package/esm/menu/radio-item/MenuRadioItemContext.js +11 -0
  813. package/esm/menu/radio-item/MenuRadioItemDataAttributes.d.ts +18 -0
  814. package/esm/menu/radio-item/MenuRadioItemDataAttributes.js +19 -0
  815. package/esm/menu/radio-item-indicator/MenuRadioItemIndicator.d.ts +33 -0
  816. package/esm/menu/radio-item-indicator/MenuRadioItemIndicator.js +56 -0
  817. package/esm/menu/radio-item-indicator/MenuRadioItemIndicatorDataAttributes.d.ts +22 -0
  818. package/esm/menu/radio-item-indicator/MenuRadioItemIndicatorDataAttributes.js +24 -0
  819. package/esm/menu/root/MenuRoot.d.ts +133 -0
  820. package/esm/menu/root/MenuRoot.js +431 -0
  821. package/esm/menu/root/MenuRootContext.d.ts +10 -0
  822. package/esm/menu/root/MenuRootContext.js +13 -0
  823. package/esm/menu/store/MenuHandle.d.ts +28 -0
  824. package/esm/menu/store/MenuHandle.js +48 -0
  825. package/esm/menu/store/MenuStore.d.ts +75 -0
  826. package/esm/menu/store/MenuStore.js +133 -0
  827. package/esm/menu/submenu-root/MenuSubmenuRoot.d.ts +30 -0
  828. package/esm/menu/submenu-root/MenuSubmenuRoot.js +27 -0
  829. package/esm/menu/submenu-root/MenuSubmenuRootContext.d.ts +7 -0
  830. package/esm/menu/submenu-root/MenuSubmenuRootContext.js +6 -0
  831. package/esm/menu/submenu-trigger/MenuSubmenuTrigger.d.ts +62 -0
  832. package/esm/menu/submenu-trigger/MenuSubmenuTrigger.js +135 -0
  833. package/esm/menu/submenu-trigger/MenuSubmenuTriggerDataAttributes.d.ts +14 -0
  834. package/esm/menu/submenu-trigger/MenuSubmenuTriggerDataAttributes.js +16 -0
  835. package/esm/menu/trigger/MenuTrigger.d.ts +58 -0
  836. package/esm/menu/trigger/MenuTrigger.js +309 -0
  837. package/esm/menu/trigger/MenuTriggerDataAttributes.d.ts +10 -0
  838. package/esm/menu/trigger/MenuTriggerDataAttributes.js +12 -0
  839. package/esm/menu/utils/findRootOwnerId.d.ts +1 -0
  840. package/esm/menu/utils/findRootOwnerId.js +10 -0
  841. package/esm/menu/utils/stateAttributesMapping.d.ts +4 -0
  842. package/esm/menu/utils/stateAttributesMapping.js +15 -0
  843. package/esm/menu/utils/types.d.ts +7 -0
  844. package/esm/menu/utils/types.js +1 -0
  845. package/esm/menubar/Menubar.d.ts +50 -0
  846. package/esm/menubar/Menubar.js +118 -0
  847. package/esm/menubar/MenubarContext.d.ts +16 -0
  848. package/esm/menubar/MenubarContext.js +13 -0
  849. package/esm/menubar/MenubarDataAttributes.d.ts +12 -0
  850. package/esm/menubar/MenubarDataAttributes.js +13 -0
  851. package/esm/menubar/index.d.ts +2 -0
  852. package/esm/menubar/index.js +1 -0
  853. package/esm/merge-props/index.d.ts +1 -0
  854. package/esm/merge-props/index.js +1 -0
  855. package/esm/merge-props/mergeProps.d.ts +35 -0
  856. package/esm/merge-props/mergeProps.js +162 -0
  857. package/esm/meter/index.d.ts +6 -0
  858. package/esm/meter/index.js +1 -0
  859. package/esm/meter/index.parts.d.ts +5 -0
  860. package/esm/meter/index.parts.js +5 -0
  861. package/esm/meter/indicator/MeterIndicator.d.ts +14 -0
  862. package/esm/meter/indicator/MeterIndicator.js +33 -0
  863. package/esm/meter/label/MeterLabel.d.ts +14 -0
  864. package/esm/meter/label/MeterLabel.js +37 -0
  865. package/esm/meter/root/MeterRoot.d.ts +47 -0
  866. package/esm/meter/root/MeterRoot.js +67 -0
  867. package/esm/meter/root/MeterRootContext.d.ts +10 -0
  868. package/esm/meter/root/MeterRootContext.js +13 -0
  869. package/esm/meter/track/MeterTrack.d.ts +14 -0
  870. package/esm/meter/track/MeterTrack.js +23 -0
  871. package/esm/meter/value/MeterValue.d.ts +16 -0
  872. package/esm/meter/value/MeterValue.js +32 -0
  873. package/esm/navigation-menu/arrow/NavigationMenuArrow.d.ts +24 -0
  874. package/esm/navigation-menu/arrow/NavigationMenuArrow.js +48 -0
  875. package/esm/navigation-menu/arrow/NavigationMenuArrowDataAttributes.d.ts +24 -0
  876. package/esm/navigation-menu/arrow/NavigationMenuArrowDataAttributes.js +26 -0
  877. package/esm/navigation-menu/backdrop/NavigationMenuBackdrop.d.ts +25 -0
  878. package/esm/navigation-menu/backdrop/NavigationMenuBackdrop.js +49 -0
  879. package/esm/navigation-menu/backdrop/NavigationMenuBackdropDataAttributes.d.ts +18 -0
  880. package/esm/navigation-menu/backdrop/NavigationMenuBackdropDataAttributes.js +20 -0
  881. package/esm/navigation-menu/content/NavigationMenuContent.d.ts +30 -0
  882. package/esm/navigation-menu/content/NavigationMenuContent.js +121 -0
  883. package/esm/navigation-menu/content/NavigationMenuContentDataAttributes.d.ts +22 -0
  884. package/esm/navigation-menu/content/NavigationMenuContentDataAttributes.js +24 -0
  885. package/esm/navigation-menu/icon/NavigationMenuIcon.d.ts +19 -0
  886. package/esm/navigation-menu/icon/NavigationMenuIcon.js +42 -0
  887. package/esm/navigation-menu/index.d.ts +14 -0
  888. package/esm/navigation-menu/index.js +1 -0
  889. package/esm/navigation-menu/index.parts.d.ts +13 -0
  890. package/esm/navigation-menu/index.parts.js +13 -0
  891. package/esm/navigation-menu/item/NavigationMenuItem.d.ts +22 -0
  892. package/esm/navigation-menu/item/NavigationMenuItem.js +36 -0
  893. package/esm/navigation-menu/item/NavigationMenuItemContext.d.ts +6 -0
  894. package/esm/navigation-menu/item/NavigationMenuItemContext.js +11 -0
  895. package/esm/navigation-menu/link/NavigationMenuLinikDataAttributes.d.ts +6 -0
  896. package/esm/navigation-menu/link/NavigationMenuLinikDataAttributes.js +7 -0
  897. package/esm/navigation-menu/link/NavigationMenuLink.d.ts +31 -0
  898. package/esm/navigation-menu/link/NavigationMenuLink.js +68 -0
  899. package/esm/navigation-menu/list/NavigationMenuDismissContext.d.ts +4 -0
  900. package/esm/navigation-menu/list/NavigationMenuDismissContext.js +6 -0
  901. package/esm/navigation-menu/list/NavigationMenuList.d.ts +20 -0
  902. package/esm/navigation-menu/list/NavigationMenuList.js +94 -0
  903. package/esm/navigation-menu/popup/NavigationMenuPopup.d.ts +25 -0
  904. package/esm/navigation-menu/popup/NavigationMenuPopup.js +71 -0
  905. package/esm/navigation-menu/popup/NavigationMenuPopupCssVars.d.ts +12 -0
  906. package/esm/navigation-menu/popup/NavigationMenuPopupCssVars.js +13 -0
  907. package/esm/navigation-menu/popup/NavigationMenuPopupDataAttributes.d.ts +28 -0
  908. package/esm/navigation-menu/popup/NavigationMenuPopupDataAttributes.js +30 -0
  909. package/esm/navigation-menu/portal/NavigationMenuPortal.d.ts +27 -0
  910. package/esm/navigation-menu/portal/NavigationMenuPortal.js +36 -0
  911. package/esm/navigation-menu/portal/NavigationMenuPortalContext.d.ts +3 -0
  912. package/esm/navigation-menu/portal/NavigationMenuPortalContext.js +11 -0
  913. package/esm/navigation-menu/positioner/NavigationMenuPositioner.d.ts +28 -0
  914. package/esm/navigation-menu/positioner/NavigationMenuPositioner.js +159 -0
  915. package/esm/navigation-menu/positioner/NavigationMenuPositionerContext.d.ts +6 -0
  916. package/esm/navigation-menu/positioner/NavigationMenuPositionerContext.js +13 -0
  917. package/esm/navigation-menu/positioner/NavigationMenuPositionerCssVars.d.ts +37 -0
  918. package/esm/navigation-menu/positioner/NavigationMenuPositionerCssVars.js +38 -0
  919. package/esm/navigation-menu/positioner/NavigationPositionerDataAttributes.d.ts +28 -0
  920. package/esm/navigation-menu/positioner/NavigationPositionerDataAttributes.js +30 -0
  921. package/esm/navigation-menu/root/NavigationMenuRoot.d.ts +77 -0
  922. package/esm/navigation-menu/root/NavigationMenuRoot.js +214 -0
  923. package/esm/navigation-menu/root/NavigationMenuRootContext.d.ts +42 -0
  924. package/esm/navigation-menu/root/NavigationMenuRootContext.js +20 -0
  925. package/esm/navigation-menu/trigger/NavigationMenuTrigger.d.ts +21 -0
  926. package/esm/navigation-menu/trigger/NavigationMenuTrigger.js +407 -0
  927. package/esm/navigation-menu/trigger/NavigationMenuTriggerDataAttributes.d.ts +10 -0
  928. package/esm/navigation-menu/trigger/NavigationMenuTriggerDataAttributes.js +12 -0
  929. package/esm/navigation-menu/utils/constants.d.ts +3 -0
  930. package/esm/navigation-menu/utils/constants.js +3 -0
  931. package/esm/navigation-menu/utils/isOutsideMenuEvent.d.ts +17 -0
  932. package/esm/navigation-menu/utils/isOutsideMenuEvent.js +24 -0
  933. package/esm/navigation-menu/utils/setFixedSize.d.ts +1 -0
  934. package/esm/navigation-menu/utils/setFixedSize.js +11 -0
  935. package/esm/navigation-menu/viewport/NavigationMenuViewport.d.ts +15 -0
  936. package/esm/navigation-menu/viewport/NavigationMenuViewport.js +115 -0
  937. package/esm/number-field/decrement/NumberFieldDecrement.d.ts +16 -0
  938. package/esm/number-field/decrement/NumberFieldDecrement.js +94 -0
  939. package/esm/number-field/decrement/NumberFieldDecrementDataAttributes.d.ts +42 -0
  940. package/esm/number-field/decrement/NumberFieldDecrementDataAttributes.js +43 -0
  941. package/esm/number-field/group/NumberFieldGroup.d.ts +16 -0
  942. package/esm/number-field/group/NumberFieldGroup.js +33 -0
  943. package/esm/number-field/group/NumberFieldGroupDataAttributes.d.ts +42 -0
  944. package/esm/number-field/group/NumberFieldGroupDataAttributes.js +43 -0
  945. package/esm/number-field/increment/NumberFieldIncrement.d.ts +16 -0
  946. package/esm/number-field/increment/NumberFieldIncrement.js +94 -0
  947. package/esm/number-field/increment/NumberFieldIncrementDataAttributes.d.ts +42 -0
  948. package/esm/number-field/increment/NumberFieldIncrementDataAttributes.js +43 -0
  949. package/esm/number-field/index.d.ts +8 -0
  950. package/esm/number-field/index.js +1 -0
  951. package/esm/number-field/index.parts.d.ts +7 -0
  952. package/esm/number-field/index.parts.js +7 -0
  953. package/esm/number-field/input/NumberFieldInput.d.ts +22 -0
  954. package/esm/number-field/input/NumberFieldInput.js +332 -0
  955. package/esm/number-field/input/NumberFieldInputDataAttributes.d.ts +42 -0
  956. package/esm/number-field/input/NumberFieldInputDataAttributes.js +43 -0
  957. package/esm/number-field/root/NumberFieldRoot.d.ts +161 -0
  958. package/esm/number-field/root/NumberFieldRoot.js +430 -0
  959. package/esm/number-field/root/NumberFieldRootContext.d.ts +44 -0
  960. package/esm/number-field/root/NumberFieldRootContext.js +13 -0
  961. package/esm/number-field/root/NumberFieldRootDataAttributes.d.ts +42 -0
  962. package/esm/number-field/root/NumberFieldRootDataAttributes.js +43 -0
  963. package/esm/number-field/root/useNumberFieldButton.d.ts +38 -0
  964. package/esm/number-field/root/useNumberFieldButton.js +186 -0
  965. package/esm/number-field/scrub-area/NumberFieldScrubArea.d.ts +33 -0
  966. package/esm/number-field/scrub-area/NumberFieldScrubArea.js +260 -0
  967. package/esm/number-field/scrub-area/NumberFieldScrubAreaContext.d.ts +13 -0
  968. package/esm/number-field/scrub-area/NumberFieldScrubAreaContext.js +11 -0
  969. package/esm/number-field/scrub-area/NumberFieldScrubAreaDataAttributes.d.ts +42 -0
  970. package/esm/number-field/scrub-area/NumberFieldScrubAreaDataAttributes.js +43 -0
  971. package/esm/number-field/scrub-area-cursor/NumberFieldScrubAreaCursor.d.ts +19 -0
  972. package/esm/number-field/scrub-area-cursor/NumberFieldScrubAreaCursor.js +55 -0
  973. package/esm/number-field/scrub-area-cursor/NumberFieldScrubAreaCursorDataAttributes.d.ts +42 -0
  974. package/esm/number-field/scrub-area-cursor/NumberFieldScrubAreaCursorDataAttributes.js +43 -0
  975. package/esm/number-field/utils/constants.d.ts +6 -0
  976. package/esm/number-field/utils/constants.js +6 -0
  977. package/esm/number-field/utils/getViewportRect.d.ts +6 -0
  978. package/esm/number-field/utils/getViewportRect.js +30 -0
  979. package/esm/number-field/utils/parse.d.ts +31 -0
  980. package/esm/number-field/utils/parse.js +216 -0
  981. package/esm/number-field/utils/stateAttributesMapping.d.ts +3 -0
  982. package/esm/number-field/utils/stateAttributesMapping.js +4 -0
  983. package/esm/number-field/utils/subscribeToVisualViewportResize.d.ts +1 -0
  984. package/esm/number-field/utils/subscribeToVisualViewportResize.js +20 -0
  985. package/esm/number-field/utils/types.d.ts +15 -0
  986. package/esm/number-field/utils/types.js +1 -0
  987. package/esm/number-field/utils/validate.d.ts +18 -0
  988. package/esm/number-field/utils/validate.js +73 -0
  989. package/esm/package.json +1 -0
  990. package/esm/popover/arrow/PopoverArrow.d.ts +24 -0
  991. package/esm/popover/arrow/PopoverArrow.js +49 -0
  992. package/esm/popover/arrow/PopoverArrowDataAttributes.d.ts +24 -0
  993. package/esm/popover/arrow/PopoverArrowDataAttributes.js +26 -0
  994. package/esm/popover/backdrop/PopoverBackdrop.d.ts +22 -0
  995. package/esm/popover/backdrop/PopoverBackdrop.js +53 -0
  996. package/esm/popover/backdrop/PopoverBackdropDataAttributes.d.ts +18 -0
  997. package/esm/popover/backdrop/PopoverBackdropDataAttributes.js +20 -0
  998. package/esm/popover/close/PopoverClose.d.ts +15 -0
  999. package/esm/popover/close/PopoverClose.js +45 -0
  1000. package/esm/popover/description/PopoverDescription.d.ts +15 -0
  1001. package/esm/popover/description/PopoverDescription.js +39 -0
  1002. package/esm/popover/index.d.ts +12 -0
  1003. package/esm/popover/index.js +1 -0
  1004. package/esm/popover/index.parts.d.ts +12 -0
  1005. package/esm/popover/index.parts.js +12 -0
  1006. package/esm/popover/popup/PopoverPopup.d.ts +47 -0
  1007. package/esm/popover/popup/PopoverPopup.js +148 -0
  1008. package/esm/popover/popup/PopoverPopupCssVars.d.ts +10 -0
  1009. package/esm/popover/popup/PopoverPopupCssVars.js +11 -0
  1010. package/esm/popover/popup/PopoverPopupDataAttributes.d.ts +33 -0
  1011. package/esm/popover/popup/PopoverPopupDataAttributes.js +35 -0
  1012. package/esm/popover/portal/PopoverPortal.d.ts +23 -0
  1013. package/esm/popover/portal/PopoverPortal.js +38 -0
  1014. package/esm/popover/portal/PopoverPortalContext.d.ts +3 -0
  1015. package/esm/popover/portal/PopoverPortalContext.js +11 -0
  1016. package/esm/popover/positioner/PopoverPositioner.d.ts +28 -0
  1017. package/esm/popover/positioner/PopoverPositioner.js +148 -0
  1018. package/esm/popover/positioner/PopoverPositionerContext.d.ts +13 -0
  1019. package/esm/popover/positioner/PopoverPositionerContext.js +13 -0
  1020. package/esm/popover/positioner/PopoverPositionerCssVars.d.ts +37 -0
  1021. package/esm/popover/positioner/PopoverPositionerCssVars.js +38 -0
  1022. package/esm/popover/positioner/PopoverPositionerDataAttributes.d.ts +24 -0
  1023. package/esm/popover/positioner/PopoverPositionerDataAttributes.js +26 -0
  1024. package/esm/popover/root/PopoverRoot.d.ts +86 -0
  1025. package/esm/popover/root/PopoverRoot.js +139 -0
  1026. package/esm/popover/root/PopoverRootContext.d.ts +8 -0
  1027. package/esm/popover/root/PopoverRootContext.js +13 -0
  1028. package/esm/popover/store/PopoverHandle.d.ts +28 -0
  1029. package/esm/popover/store/PopoverHandle.js +49 -0
  1030. package/esm/popover/store/PopoverStore.d.ts +62 -0
  1031. package/esm/popover/store/PopoverStore.js +125 -0
  1032. package/esm/popover/title/PopoverTitle.d.ts +15 -0
  1033. package/esm/popover/title/PopoverTitle.js +39 -0
  1034. package/esm/popover/trigger/PopoverTrigger.d.ts +69 -0
  1035. package/esm/popover/trigger/PopoverTrigger.js +158 -0
  1036. package/esm/popover/trigger/PopoverTriggerDataAttributes.d.ts +10 -0
  1037. package/esm/popover/trigger/PopoverTriggerDataAttributes.js +12 -0
  1038. package/esm/popover/utils/constants.d.ts +1 -0
  1039. package/esm/popover/utils/constants.js +1 -0
  1040. package/esm/popover/viewport/PopoverViewport.d.ts +22 -0
  1041. package/esm/popover/viewport/PopoverViewport.js +221 -0
  1042. package/esm/popover/viewport/PopoverViewportCssVars.d.ts +14 -0
  1043. package/esm/popover/viewport/PopoverViewportCssVars.js +15 -0
  1044. package/esm/popover/viewport/PopoverViewportDataAttributes.d.ts +21 -0
  1045. package/esm/popover/viewport/PopoverViewportDataAttributes.js +22 -0
  1046. package/esm/preview-card/arrow/PreviewCardArrow.d.ts +24 -0
  1047. package/esm/preview-card/arrow/PreviewCardArrow.js +48 -0
  1048. package/esm/preview-card/arrow/PreviewCardArrowDataAttributes.d.ts +24 -0
  1049. package/esm/preview-card/arrow/PreviewCardArrowDataAttributes.js +26 -0
  1050. package/esm/preview-card/backdrop/PreviewCardBackdrop.d.ts +22 -0
  1051. package/esm/preview-card/backdrop/PreviewCardBackdrop.js +50 -0
  1052. package/esm/preview-card/backdrop/PreviewCardBackdropDataAttributes.d.ts +18 -0
  1053. package/esm/preview-card/backdrop/PreviewCardBackdropDataAttributes.js +20 -0
  1054. package/esm/preview-card/index.d.ts +8 -0
  1055. package/esm/preview-card/index.js +1 -0
  1056. package/esm/preview-card/index.parts.d.ts +7 -0
  1057. package/esm/preview-card/index.parts.js +7 -0
  1058. package/esm/preview-card/popup/PreviewCardPopup.d.ts +25 -0
  1059. package/esm/preview-card/popup/PreviewCardPopup.js +62 -0
  1060. package/esm/preview-card/popup/PreviewCardPopupDataAttributes.d.ts +28 -0
  1061. package/esm/preview-card/popup/PreviewCardPopupDataAttributes.js +30 -0
  1062. package/esm/preview-card/portal/PreviewCardPortal.d.ts +23 -0
  1063. package/esm/preview-card/portal/PreviewCardPortal.js +36 -0
  1064. package/esm/preview-card/portal/PreviewCardPortalContext.d.ts +3 -0
  1065. package/esm/preview-card/portal/PreviewCardPortalContext.js +11 -0
  1066. package/esm/preview-card/positioner/PreviewCardPositioner.d.ts +24 -0
  1067. package/esm/preview-card/positioner/PreviewCardPositioner.js +99 -0
  1068. package/esm/preview-card/positioner/PreviewCardPositionerContext.d.ts +11 -0
  1069. package/esm/preview-card/positioner/PreviewCardPositionerContext.js +13 -0
  1070. package/esm/preview-card/positioner/PreviewCardPositionerCssVars.d.ts +27 -0
  1071. package/esm/preview-card/positioner/PreviewCardPositionerCssVars.js +28 -0
  1072. package/esm/preview-card/positioner/PreviewCardPositionerDataAttributes.d.ts +24 -0
  1073. package/esm/preview-card/positioner/PreviewCardPositionerDataAttributes.js +26 -0
  1074. package/esm/preview-card/root/PreviewCardContext.d.ts +27 -0
  1075. package/esm/preview-card/root/PreviewCardContext.js +13 -0
  1076. package/esm/preview-card/root/PreviewCardRoot.d.ts +52 -0
  1077. package/esm/preview-card/root/PreviewCardRoot.js +142 -0
  1078. package/esm/preview-card/trigger/PreviewCardTrigger.d.ts +31 -0
  1079. package/esm/preview-card/trigger/PreviewCardTrigger.js +46 -0
  1080. package/esm/preview-card/trigger/PreviewCardTriggerDataAttributes.d.ts +6 -0
  1081. package/esm/preview-card/trigger/PreviewCardTriggerDataAttributes.js +8 -0
  1082. package/esm/preview-card/utils/constants.d.ts +2 -0
  1083. package/esm/preview-card/utils/constants.js +2 -0
  1084. package/esm/progress/index.d.ts +6 -0
  1085. package/esm/progress/index.js +1 -0
  1086. package/esm/progress/index.parts.d.ts +6 -0
  1087. package/esm/progress/index.parts.js +5 -0
  1088. package/esm/progress/indicator/ProgressIndicator.d.ts +14 -0
  1089. package/esm/progress/indicator/ProgressIndicator.js +47 -0
  1090. package/esm/progress/indicator/ProgressIndicatorDataAttributes.d.ts +14 -0
  1091. package/esm/progress/indicator/ProgressIndicatorDataAttributes.js +15 -0
  1092. package/esm/progress/label/ProgressLabel.d.ts +14 -0
  1093. package/esm/progress/label/ProgressLabel.js +41 -0
  1094. package/esm/progress/label/ProgressLabelDataAttributes.d.ts +14 -0
  1095. package/esm/progress/label/ProgressLabelDataAttributes.js +15 -0
  1096. package/esm/progress/root/ProgressRoot.d.ts +51 -0
  1097. package/esm/progress/root/ProgressRoot.js +84 -0
  1098. package/esm/progress/root/ProgressRootContext.d.ts +28 -0
  1099. package/esm/progress/root/ProgressRootContext.js +16 -0
  1100. package/esm/progress/root/ProgressRootDataAttributes.d.ts +14 -0
  1101. package/esm/progress/root/ProgressRootDataAttributes.js +15 -0
  1102. package/esm/progress/root/stateAttributesMapping.d.ts +3 -0
  1103. package/esm/progress/root/stateAttributesMapping.js +21 -0
  1104. package/esm/progress/track/ProgressTrack.d.ts +14 -0
  1105. package/esm/progress/track/ProgressTrack.js +30 -0
  1106. package/esm/progress/track/ProgressTrackDataAttributes.d.ts +14 -0
  1107. package/esm/progress/track/ProgressTrackDataAttributes.js +15 -0
  1108. package/esm/progress/value/ProgressValue.d.ts +16 -0
  1109. package/esm/progress/value/ProgressValue.js +38 -0
  1110. package/esm/progress/value/ProgressValueDataAttributes.d.ts +14 -0
  1111. package/esm/progress/value/ProgressValueDataAttributes.js +15 -0
  1112. package/esm/radio/index.d.ts +3 -0
  1113. package/esm/radio/index.js +1 -0
  1114. package/esm/radio/index.parts.d.ts +2 -0
  1115. package/esm/radio/index.parts.js +2 -0
  1116. package/esm/radio/indicator/RadioIndicator.d.ts +28 -0
  1117. package/esm/radio/indicator/RadioIndicator.js +56 -0
  1118. package/esm/radio/indicator/RadioIndicatorDataAttributes.d.ts +46 -0
  1119. package/esm/radio/indicator/RadioIndicatorDataAttributes.js +47 -0
  1120. package/esm/radio/root/RadioRoot.d.ts +36 -0
  1121. package/esm/radio/root/RadioRoot.js +188 -0
  1122. package/esm/radio/root/RadioRootContext.d.ts +9 -0
  1123. package/esm/radio/root/RadioRootContext.js +13 -0
  1124. package/esm/radio/root/RadioRootDataAttributes.d.ts +46 -0
  1125. package/esm/radio/root/RadioRootDataAttributes.js +47 -0
  1126. package/esm/radio/utils/stateAttributesMapping.d.ts +6 -0
  1127. package/esm/radio/utils/stateAttributesMapping.js +17 -0
  1128. package/esm/radio-group/RadioGroup.d.ts +67 -0
  1129. package/esm/radio-group/RadioGroup.js +200 -0
  1130. package/esm/radio-group/RadioGroupContext.d.ts +19 -0
  1131. package/esm/radio-group/RadioGroupContext.js +20 -0
  1132. package/esm/radio-group/RadioGroupDataAttributes.d.ts +6 -0
  1133. package/esm/radio-group/RadioGroupDataAttributes.js +7 -0
  1134. package/esm/radio-group/index.d.ts +2 -0
  1135. package/esm/radio-group/index.js +1 -0
  1136. package/esm/scroll-area/constants.d.ts +2 -0
  1137. package/esm/scroll-area/constants.js +2 -0
  1138. package/esm/scroll-area/content/ScrollAreaContent.d.ts +16 -0
  1139. package/esm/scroll-area/content/ScrollAreaContent.js +53 -0
  1140. package/esm/scroll-area/corner/ScrollAreaCorner.d.ts +15 -0
  1141. package/esm/scroll-area/corner/ScrollAreaCorner.js +41 -0
  1142. package/esm/scroll-area/index.d.ts +7 -0
  1143. package/esm/scroll-area/index.js +1 -0
  1144. package/esm/scroll-area/index.parts.d.ts +6 -0
  1145. package/esm/scroll-area/index.parts.js +6 -0
  1146. package/esm/scroll-area/root/ScrollAreaRoot.d.ts +42 -0
  1147. package/esm/scroll-area/root/ScrollAreaRoot.js +252 -0
  1148. package/esm/scroll-area/root/ScrollAreaRootContext.d.ts +73 -0
  1149. package/esm/scroll-area/root/ScrollAreaRootContext.js +11 -0
  1150. package/esm/scroll-area/root/ScrollAreaRootCssVars.d.ts +12 -0
  1151. package/esm/scroll-area/root/ScrollAreaRootCssVars.js +13 -0
  1152. package/esm/scroll-area/root/ScrollAreaRootDataAttributes.d.ts +26 -0
  1153. package/esm/scroll-area/root/ScrollAreaRootDataAttributes.js +27 -0
  1154. package/esm/scroll-area/root/stateAttributes.d.ts +3 -0
  1155. package/esm/scroll-area/root/stateAttributes.js +22 -0
  1156. package/esm/scroll-area/scrollbar/ScrollAreaScrollbar.d.ts +34 -0
  1157. package/esm/scroll-area/scrollbar/ScrollAreaScrollbar.js +193 -0
  1158. package/esm/scroll-area/scrollbar/ScrollAreaScrollbarContext.d.ts +6 -0
  1159. package/esm/scroll-area/scrollbar/ScrollAreaScrollbarContext.js +11 -0
  1160. package/esm/scroll-area/scrollbar/ScrollAreaScrollbarCssVars.d.ts +12 -0
  1161. package/esm/scroll-area/scrollbar/ScrollAreaScrollbarCssVars.js +13 -0
  1162. package/esm/scroll-area/scrollbar/ScrollAreaScrollbarDataAttributes.d.ts +39 -0
  1163. package/esm/scroll-area/scrollbar/ScrollAreaScrollbarDataAttributes.js +40 -0
  1164. package/esm/scroll-area/thumb/ScrollAreaThumb.d.ts +17 -0
  1165. package/esm/scroll-area/thumb/ScrollAreaThumb.js +63 -0
  1166. package/esm/scroll-area/thumb/ScrollAreaThumbDataAttributes.d.ts +7 -0
  1167. package/esm/scroll-area/thumb/ScrollAreaThumbDataAttributes.js +8 -0
  1168. package/esm/scroll-area/utils/getOffset.d.ts +1 -0
  1169. package/esm/scroll-area/utils/getOffset.js +14 -0
  1170. package/esm/scroll-area/utils/onVisible.d.ts +4 -0
  1171. package/esm/scroll-area/utils/onVisible.js +20 -0
  1172. package/esm/scroll-area/viewport/ScrollAreaViewport.d.ts +16 -0
  1173. package/esm/scroll-area/viewport/ScrollAreaViewport.js +335 -0
  1174. package/esm/scroll-area/viewport/ScrollAreaViewportContext.d.ts +6 -0
  1175. package/esm/scroll-area/viewport/ScrollAreaViewportContext.js +11 -0
  1176. package/esm/scroll-area/viewport/ScrollAreaViewportCssVars.d.ts +22 -0
  1177. package/esm/scroll-area/viewport/ScrollAreaViewportCssVars.js +23 -0
  1178. package/esm/scroll-area/viewport/ScrollAreaViewportDataAttributes.d.ts +26 -0
  1179. package/esm/scroll-area/viewport/ScrollAreaViewportDataAttributes.js +27 -0
  1180. package/esm/select/arrow/SelectArrow.d.ts +24 -0
  1181. package/esm/select/arrow/SelectArrow.js +60 -0
  1182. package/esm/select/arrow/SelectArrowDataAttributes.d.ts +24 -0
  1183. package/esm/select/arrow/SelectArrowDataAttributes.js +26 -0
  1184. package/esm/select/backdrop/SelectBackdrop.d.ts +19 -0
  1185. package/esm/select/backdrop/SelectBackdrop.js +52 -0
  1186. package/esm/select/backdrop/SelectBackdropDataAttributes.d.ts +18 -0
  1187. package/esm/select/backdrop/SelectBackdropDataAttributes.js +20 -0
  1188. package/esm/select/group/SelectGroup.d.ts +15 -0
  1189. package/esm/select/group/SelectGroup.js +37 -0
  1190. package/esm/select/group/SelectGroupContext.d.ts +7 -0
  1191. package/esm/select/group/SelectGroupContext.js +11 -0
  1192. package/esm/select/group-label/SelectGroupLabel.d.ts +15 -0
  1193. package/esm/select/group-label/SelectGroupLabel.js +37 -0
  1194. package/esm/select/icon/SelectIcon.d.ts +20 -0
  1195. package/esm/select/icon/SelectIcon.js +40 -0
  1196. package/esm/select/icon/SelectIconDataAttributes.d.ts +6 -0
  1197. package/esm/select/icon/SelectIconDataAttributes.js +8 -0
  1198. package/esm/select/index.d.ts +18 -0
  1199. package/esm/select/index.js +1 -0
  1200. package/esm/select/index.parts.d.ts +18 -0
  1201. package/esm/select/index.parts.js +18 -0
  1202. package/esm/select/item/SelectItem.d.ts +46 -0
  1203. package/esm/select/item/SelectItem.js +213 -0
  1204. package/esm/select/item/SelectItemContext.d.ts +10 -0
  1205. package/esm/select/item/SelectItemContext.js +11 -0
  1206. package/esm/select/item/SelectItemDataAttributes.d.ts +14 -0
  1207. package/esm/select/item/SelectItemDataAttributes.js +15 -0
  1208. package/esm/select/item-indicator/SelectItemIndicator.d.ts +23 -0
  1209. package/esm/select/item-indicator/SelectItemIndicator.js +76 -0
  1210. package/esm/select/item-text/SelectItemText.d.ts +15 -0
  1211. package/esm/select/item-text/SelectItemText.js +44 -0
  1212. package/esm/select/list/SelectList.d.ts +15 -0
  1213. package/esm/select/list/SelectList.js +56 -0
  1214. package/esm/select/popup/SelectPopup.d.ts +24 -0
  1215. package/esm/select/popup/SelectPopup.js +357 -0
  1216. package/esm/select/popup/SelectPopupDataAttributes.d.ts +28 -0
  1217. package/esm/select/popup/SelectPopupDataAttributes.js +30 -0
  1218. package/esm/select/popup/utils.d.ts +7 -0
  1219. package/esm/select/popup/utils.js +11 -0
  1220. package/esm/select/portal/SelectPortal.d.ts +17 -0
  1221. package/esm/select/portal/SelectPortal.js +36 -0
  1222. package/esm/select/portal/SelectPortalContext.d.ts +3 -0
  1223. package/esm/select/portal/SelectPortalContext.js +11 -0
  1224. package/esm/select/positioner/SelectPositioner.d.ts +27 -0
  1225. package/esm/select/positioner/SelectPositioner.js +209 -0
  1226. package/esm/select/positioner/SelectPositionerContext.d.ts +11 -0
  1227. package/esm/select/positioner/SelectPositionerContext.js +11 -0
  1228. package/esm/select/positioner/SelectPositionerCssVars.d.ts +27 -0
  1229. package/esm/select/positioner/SelectPositionerCssVars.js +28 -0
  1230. package/esm/select/positioner/SelectPositionerDataAttributes.d.ts +24 -0
  1231. package/esm/select/positioner/SelectPositionerDataAttributes.js +26 -0
  1232. package/esm/select/root/SelectRoot.d.ts +146 -0
  1233. package/esm/select/root/SelectRoot.js +455 -0
  1234. package/esm/select/root/SelectRootContext.d.ts +45 -0
  1235. package/esm/select/root/SelectRootContext.js +20 -0
  1236. package/esm/select/scroll-arrow/SelectScrollArrow.d.ts +26 -0
  1237. package/esm/select/scroll-arrow/SelectScrollArrow.js +180 -0
  1238. package/esm/select/scroll-down-arrow/SelectScrollDownArrow.d.ts +21 -0
  1239. package/esm/select/scroll-down-arrow/SelectScrollDownArrow.js +19 -0
  1240. package/esm/select/scroll-down-arrow/SelectScrollDownArrowDataAttributes.d.ts +24 -0
  1241. package/esm/select/scroll-down-arrow/SelectScrollDownArrowDataAttributes.js +26 -0
  1242. package/esm/select/scroll-up-arrow/SelectScrollUpArrow.d.ts +21 -0
  1243. package/esm/select/scroll-up-arrow/SelectScrollUpArrow.js +19 -0
  1244. package/esm/select/scroll-up-arrow/SelectScrollUpArrowDataAttributes.d.ts +24 -0
  1245. package/esm/select/scroll-up-arrow/SelectScrollUpArrowDataAttributes.js +26 -0
  1246. package/esm/select/store.d.ts +65 -0
  1247. package/esm/select/store.js +57 -0
  1248. package/esm/select/trigger/SelectTrigger.d.ts +27 -0
  1249. package/esm/select/trigger/SelectTrigger.js +201 -0
  1250. package/esm/select/trigger/SelectTriggerDataAttributes.d.ts +50 -0
  1251. package/esm/select/trigger/SelectTriggerDataAttributes.js +52 -0
  1252. package/esm/select/value/SelectValue.d.ts +31 -0
  1253. package/esm/select/value/SelectValue.js +49 -0
  1254. package/esm/select/value/SelectValueDataAttributes.d.ts +6 -0
  1255. package/esm/select/value/SelectValueDataAttributes.js +7 -0
  1256. package/esm/separator/Separator.d.ts +26 -0
  1257. package/esm/separator/Separator.js +32 -0
  1258. package/esm/separator/index.d.ts +2 -0
  1259. package/esm/separator/index.js +1 -0
  1260. package/esm/slider/control/SliderControl.d.ts +15 -0
  1261. package/esm/slider/control/SliderControl.js +404 -0
  1262. package/esm/slider/control/SliderControlDataAttributes.d.ts +43 -0
  1263. package/esm/slider/control/SliderControlDataAttributes.js +44 -0
  1264. package/esm/slider/index.d.ts +7 -0
  1265. package/esm/slider/index.js +1 -0
  1266. package/esm/slider/index.parts.d.ts +6 -0
  1267. package/esm/slider/index.parts.js +6 -0
  1268. package/esm/slider/indicator/SliderIndicator.d.ts +14 -0
  1269. package/esm/slider/indicator/SliderIndicator.js +88 -0
  1270. package/esm/slider/indicator/SliderIndicatorDataAttributes.d.ts +43 -0
  1271. package/esm/slider/indicator/SliderIndicatorDataAttributes.js +44 -0
  1272. package/esm/slider/root/SliderRoot.d.ts +178 -0
  1273. package/esm/slider/root/SliderRoot.js +298 -0
  1274. package/esm/slider/root/SliderRootContext.d.ts +89 -0
  1275. package/esm/slider/root/SliderRootContext.js +13 -0
  1276. package/esm/slider/root/SliderRootDataAttributes.d.ts +43 -0
  1277. package/esm/slider/root/SliderRootDataAttributes.js +44 -0
  1278. package/esm/slider/root/stateAttributesMapping.d.ts +3 -0
  1279. package/esm/slider/root/stateAttributesMapping.js +8 -0
  1280. package/esm/slider/thumb/SliderThumb.d.ts +65 -0
  1281. package/esm/slider/thumb/SliderThumb.js +336 -0
  1282. package/esm/slider/thumb/SliderThumbDataAttributes.d.ts +47 -0
  1283. package/esm/slider/thumb/SliderThumbDataAttributes.js +48 -0
  1284. package/esm/slider/thumb/prehydrationScript.min.d.ts +1 -0
  1285. package/esm/slider/thumb/prehydrationScript.min.js +5 -0
  1286. package/esm/slider/track/SliderTrack.d.ts +14 -0
  1287. package/esm/slider/track/SliderTrack.js +35 -0
  1288. package/esm/slider/track/SliderTrackDataAttributes.d.ts +43 -0
  1289. package/esm/slider/track/SliderTrackDataAttributes.js +44 -0
  1290. package/esm/slider/utils/asc.d.ts +1 -0
  1291. package/esm/slider/utils/asc.js +3 -0
  1292. package/esm/slider/utils/getMidpoint.d.ts +2 -0
  1293. package/esm/slider/utils/getMidpoint.js +7 -0
  1294. package/esm/slider/utils/getPushedThumbValues.d.ts +25 -0
  1295. package/esm/slider/utils/getPushedThumbValues.js +50 -0
  1296. package/esm/slider/utils/getSliderValue.d.ts +1 -0
  1297. package/esm/slider/utils/getSliderValue.js +12 -0
  1298. package/esm/slider/utils/replaceArrayItemAtIndex.d.ts +1 -0
  1299. package/esm/slider/utils/replaceArrayItemAtIndex.js +6 -0
  1300. package/esm/slider/utils/resolveThumbCollision.d.ts +30 -0
  1301. package/esm/slider/utils/resolveThumbCollision.js +128 -0
  1302. package/esm/slider/utils/roundValueToStep.d.ts +1 -0
  1303. package/esm/slider/utils/roundValueToStep.js +15 -0
  1304. package/esm/slider/utils/test-utils.d.ts +16 -0
  1305. package/esm/slider/utils/test-utils.js +23 -0
  1306. package/esm/slider/utils/validateMinimumDistance.d.ts +1 -0
  1307. package/esm/slider/utils/validateMinimumDistance.js +13 -0
  1308. package/esm/slider/utils/valueArrayToPercentages.d.ts +1 -0
  1309. package/esm/slider/utils/valueArrayToPercentages.js +9 -0
  1310. package/esm/slider/value/SliderValue.d.ts +16 -0
  1311. package/esm/slider/value/SliderValue.js +66 -0
  1312. package/esm/slider/value/SliderValueDataAttributes.d.ts +43 -0
  1313. package/esm/slider/value/SliderValueDataAttributes.js +44 -0
  1314. package/esm/switch/index.d.ts +3 -0
  1315. package/esm/switch/index.js +1 -0
  1316. package/esm/switch/index.parts.d.ts +2 -0
  1317. package/esm/switch/index.parts.js +2 -0
  1318. package/esm/switch/root/SwitchRoot.d.ts +89 -0
  1319. package/esm/switch/root/SwitchRoot.js +197 -0
  1320. package/esm/switch/root/SwitchRootContext.d.ts +5 -0
  1321. package/esm/switch/root/SwitchRootContext.js +11 -0
  1322. package/esm/switch/root/SwitchRootDataAttributes.d.ts +46 -0
  1323. package/esm/switch/root/SwitchRootDataAttributes.js +47 -0
  1324. package/esm/switch/stateAttributesMapping.d.ts +3 -0
  1325. package/esm/switch/stateAttributesMapping.js +15 -0
  1326. package/esm/switch/thumb/SwitchThumb.d.ts +16 -0
  1327. package/esm/switch/thumb/SwitchThumb.js +36 -0
  1328. package/esm/switch/thumb/SwitchThumbDataAttributes.d.ts +46 -0
  1329. package/esm/switch/thumb/SwitchThumbDataAttributes.js +47 -0
  1330. package/esm/tabs/index.d.ts +6 -0
  1331. package/esm/tabs/index.js +1 -0
  1332. package/esm/tabs/index.parts.d.ts +5 -0
  1333. package/esm/tabs/index.parts.js +5 -0
  1334. package/esm/tabs/indicator/TabsIndicator.d.ts +28 -0
  1335. package/esm/tabs/indicator/TabsIndicator.js +152 -0
  1336. package/esm/tabs/indicator/TabsIndicatorCssVars.d.ts +32 -0
  1337. package/esm/tabs/indicator/TabsIndicatorCssVars.js +33 -0
  1338. package/esm/tabs/indicator/TabsIndicatorDataAttributes.d.ts +12 -0
  1339. package/esm/tabs/indicator/TabsIndicatorDataAttributes.js +13 -0
  1340. package/esm/tabs/indicator/prehydrationScript.min.d.ts +1 -0
  1341. package/esm/tabs/indicator/prehydrationScript.min.js +5 -0
  1342. package/esm/tabs/list/TabsList.d.ts +29 -0
  1343. package/esm/tabs/list/TabsList.js +159 -0
  1344. package/esm/tabs/list/TabsListContext.d.ts +11 -0
  1345. package/esm/tabs/list/TabsListContext.js +13 -0
  1346. package/esm/tabs/list/TabsListDataAttributes.d.ts +12 -0
  1347. package/esm/tabs/list/TabsListDataAttributes.js +13 -0
  1348. package/esm/tabs/panel/TabsPanel.d.ts +34 -0
  1349. package/esm/tabs/panel/TabsPanel.js +83 -0
  1350. package/esm/tabs/panel/TabsPanelDataAttributes.d.ts +20 -0
  1351. package/esm/tabs/panel/TabsPanelDataAttributes.js +21 -0
  1352. package/esm/tabs/root/TabsRoot.d.ts +50 -0
  1353. package/esm/tabs/root/TabsRoot.js +176 -0
  1354. package/esm/tabs/root/TabsRootContext.d.ts +45 -0
  1355. package/esm/tabs/root/TabsRootContext.js +16 -0
  1356. package/esm/tabs/root/TabsRootDataAttributes.d.ts +12 -0
  1357. package/esm/tabs/root/TabsRootDataAttributes.js +13 -0
  1358. package/esm/tabs/root/stateAttributesMapping.d.ts +3 -0
  1359. package/esm/tabs/root/stateAttributesMapping.js +6 -0
  1360. package/esm/tabs/tab/TabsTab.d.ts +60 -0
  1361. package/esm/tabs/tab/TabsTab.js +172 -0
  1362. package/esm/tabs/tab/TabsTabDataAttributes.d.ts +20 -0
  1363. package/esm/tabs/tab/TabsTabDataAttributes.js +21 -0
  1364. package/esm/toast/action/ToastAction.d.ts +20 -0
  1365. package/esm/toast/action/ToastAction.js +49 -0
  1366. package/esm/toast/action/ToastActionDataAttributes.d.ts +7 -0
  1367. package/esm/toast/action/ToastActionDataAttributes.js +8 -0
  1368. package/esm/toast/arrow/ToastArrow.d.ts +20 -0
  1369. package/esm/toast/arrow/ToastArrow.js +41 -0
  1370. package/esm/toast/arrow/ToastArrowDataAttributes.d.ts +16 -0
  1371. package/esm/toast/arrow/ToastArrowDataAttributes.js +17 -0
  1372. package/esm/toast/close/ToastClose.d.ts +20 -0
  1373. package/esm/toast/close/ToastClose.js +59 -0
  1374. package/esm/toast/close/ToastCloseDataAttributes.d.ts +7 -0
  1375. package/esm/toast/close/ToastCloseDataAttributes.js +8 -0
  1376. package/esm/toast/content/ToastContent.d.ts +24 -0
  1377. package/esm/toast/content/ToastContent.js +60 -0
  1378. package/esm/toast/content/ToastContentDataAttributes.d.ts +12 -0
  1379. package/esm/toast/content/ToastContentDataAttributes.js +13 -0
  1380. package/esm/toast/createToastManager.d.ts +16 -0
  1381. package/esm/toast/createToastManager.js +67 -0
  1382. package/esm/toast/description/ToastDescription.d.ts +21 -0
  1383. package/esm/toast/description/ToastDescription.js +59 -0
  1384. package/esm/toast/description/ToastDescriptionDataAttributes.d.ts +7 -0
  1385. package/esm/toast/description/ToastDescriptionDataAttributes.js +8 -0
  1386. package/esm/toast/index.d.ts +14 -0
  1387. package/esm/toast/index.js +1 -0
  1388. package/esm/toast/index.parts.d.ts +13 -0
  1389. package/esm/toast/index.parts.js +13 -0
  1390. package/esm/toast/portal/ToastPortal.d.ts +16 -0
  1391. package/esm/toast/portal/ToastPortal.js +12 -0
  1392. package/esm/toast/positioner/ToastPositioner.d.ts +36 -0
  1393. package/esm/toast/positioner/ToastPositioner.js +110 -0
  1394. package/esm/toast/positioner/ToastPositionerContext.d.ts +11 -0
  1395. package/esm/toast/positioner/ToastPositionerContext.js +13 -0
  1396. package/esm/toast/positioner/ToastPositionerCssVars.d.ts +27 -0
  1397. package/esm/toast/positioner/ToastPositionerCssVars.js +28 -0
  1398. package/esm/toast/positioner/ToastPositionerDataAttributes.d.ts +16 -0
  1399. package/esm/toast/positioner/ToastPositionerDataAttributes.js +18 -0
  1400. package/esm/toast/provider/ToastProvider.d.ts +30 -0
  1401. package/esm/toast/provider/ToastProvider.js +295 -0
  1402. package/esm/toast/provider/ToastProviderContext.d.ts +26 -0
  1403. package/esm/toast/provider/ToastProviderContext.js +11 -0
  1404. package/esm/toast/root/ToastRoot.d.ts +41 -0
  1405. package/esm/toast/root/ToastRoot.js +519 -0
  1406. package/esm/toast/root/ToastRootContext.d.ts +18 -0
  1407. package/esm/toast/root/ToastRootContext.js +11 -0
  1408. package/esm/toast/root/ToastRootCssVars.d.ts +27 -0
  1409. package/esm/toast/root/ToastRootCssVars.js +28 -0
  1410. package/esm/toast/root/ToastRootDataAttributes.d.ts +35 -0
  1411. package/esm/toast/root/ToastRootDataAttributes.js +36 -0
  1412. package/esm/toast/title/ToastTitle.d.ts +20 -0
  1413. package/esm/toast/title/ToastTitle.js +58 -0
  1414. package/esm/toast/title/ToastTitleDataAttributes.d.ts +7 -0
  1415. package/esm/toast/title/ToastTitleDataAttributes.js +8 -0
  1416. package/esm/toast/useToastManager.d.ts +97 -0
  1417. package/esm/toast/useToastManager.js +28 -0
  1418. package/esm/toast/utils/focusVisible.d.ts +1 -0
  1419. package/esm/toast/utils/focusVisible.js +1 -0
  1420. package/esm/toast/utils/resolvePromiseOptions.d.ts +2 -0
  1421. package/esm/toast/utils/resolvePromiseOptions.js +14 -0
  1422. package/esm/toast/utils/test-utils.d.ts +8 -0
  1423. package/esm/toast/utils/test-utils.js +45 -0
  1424. package/esm/toast/viewport/ToastViewport.d.ts +20 -0
  1425. package/esm/toast/viewport/ToastViewport.js +266 -0
  1426. package/esm/toast/viewport/ToastViewportContext.d.ts +6 -0
  1427. package/esm/toast/viewport/ToastViewportContext.js +11 -0
  1428. package/esm/toast/viewport/ToastViewportCssVars.d.ts +7 -0
  1429. package/esm/toast/viewport/ToastViewportCssVars.js +8 -0
  1430. package/esm/toast/viewport/ToastViewportDataAttributes.d.ts +7 -0
  1431. package/esm/toast/viewport/ToastViewportDataAttributes.js +8 -0
  1432. package/esm/toggle/Toggle.d.ts +56 -0
  1433. package/esm/toggle/Toggle.js +98 -0
  1434. package/esm/toggle/ToggleDataAttributes.d.ts +6 -0
  1435. package/esm/toggle/ToggleDataAttributes.js +7 -0
  1436. package/esm/toggle/index.d.ts +2 -0
  1437. package/esm/toggle/index.js +1 -0
  1438. package/esm/toggle-group/ToggleGroup.d.ts +65 -0
  1439. package/esm/toggle-group/ToggleGroup.js +109 -0
  1440. package/esm/toggle-group/ToggleGroupContext.d.ts +12 -0
  1441. package/esm/toggle-group/ToggleGroupContext.js +13 -0
  1442. package/esm/toggle-group/ToggleGroupDataAttributes.d.ts +15 -0
  1443. package/esm/toggle-group/ToggleGroupDataAttributes.js +16 -0
  1444. package/esm/toggle-group/index.d.ts +2 -0
  1445. package/esm/toggle-group/index.js +1 -0
  1446. package/esm/toolbar/button/ToolbarButton.d.ts +30 -0
  1447. package/esm/toolbar/button/ToolbarButton.js +63 -0
  1448. package/esm/toolbar/button/ToolbarButtonDataAttributes.d.ts +15 -0
  1449. package/esm/toolbar/button/ToolbarButtonDataAttributes.js +16 -0
  1450. package/esm/toolbar/group/ToolbarGroup.d.ts +20 -0
  1451. package/esm/toolbar/group/ToolbarGroup.js +46 -0
  1452. package/esm/toolbar/group/ToolbarGroupContext.d.ts +7 -0
  1453. package/esm/toolbar/group/ToolbarGroupContext.js +11 -0
  1454. package/esm/toolbar/group/ToolbarGroupDataAttributes.d.ts +11 -0
  1455. package/esm/toolbar/group/ToolbarGroupDataAttributes.js +12 -0
  1456. package/esm/toolbar/index.d.ts +8 -0
  1457. package/esm/toolbar/index.js +1 -0
  1458. package/esm/toolbar/index.parts.d.ts +7 -0
  1459. package/esm/toolbar/index.parts.js +6 -0
  1460. package/esm/toolbar/input/ToolbarInput.d.ts +31 -0
  1461. package/esm/toolbar/input/ToolbarInput.js +74 -0
  1462. package/esm/toolbar/input/ToolbarInputDataAttributes.d.ts +15 -0
  1463. package/esm/toolbar/input/ToolbarInputDataAttributes.js +16 -0
  1464. package/esm/toolbar/link/ToolbarLink.d.ts +18 -0
  1465. package/esm/toolbar/link/ToolbarLink.js +41 -0
  1466. package/esm/toolbar/link/ToolbarLinkDataAttributes.d.ts +7 -0
  1467. package/esm/toolbar/link/ToolbarLinkDataAttributes.js +8 -0
  1468. package/esm/toolbar/root/ToolbarRoot.d.ts +37 -0
  1469. package/esm/toolbar/root/ToolbarRoot.js +61 -0
  1470. package/esm/toolbar/root/ToolbarRootContext.d.ts +12 -0
  1471. package/esm/toolbar/root/ToolbarRootContext.js +13 -0
  1472. package/esm/toolbar/root/ToolbarRootDataAttributes.d.ts +11 -0
  1473. package/esm/toolbar/root/ToolbarRootDataAttributes.js +12 -0
  1474. package/esm/toolbar/separator/ToolbarSeparator.d.ts +14 -0
  1475. package/esm/toolbar/separator/ToolbarSeparator.js +25 -0
  1476. package/esm/toolbar/separator/ToolbarSeparatorDataAttributes.d.ts +7 -0
  1477. package/esm/toolbar/separator/ToolbarSeparatorDataAttributes.js +8 -0
  1478. package/esm/tooltip/arrow/TooltipArrow.d.ts +24 -0
  1479. package/esm/tooltip/arrow/TooltipArrow.js +49 -0
  1480. package/esm/tooltip/arrow/TooltipArrowDataAttributes.d.ts +29 -0
  1481. package/esm/tooltip/arrow/TooltipArrowDataAttributes.js +31 -0
  1482. package/esm/tooltip/index.d.ts +8 -0
  1483. package/esm/tooltip/index.js +1 -0
  1484. package/esm/tooltip/index.parts.d.ts +9 -0
  1485. package/esm/tooltip/index.parts.js +9 -0
  1486. package/esm/tooltip/popup/TooltipPopup.d.ts +26 -0
  1487. package/esm/tooltip/popup/TooltipPopup.js +100 -0
  1488. package/esm/tooltip/popup/TooltipPopupDataAttributes.d.ts +33 -0
  1489. package/esm/tooltip/popup/TooltipPopupDataAttributes.js +35 -0
  1490. package/esm/tooltip/portal/TooltipPortal.d.ts +23 -0
  1491. package/esm/tooltip/portal/TooltipPortal.js +35 -0
  1492. package/esm/tooltip/portal/TooltipPortalContext.d.ts +3 -0
  1493. package/esm/tooltip/portal/TooltipPortalContext.js +11 -0
  1494. package/esm/tooltip/positioner/TooltipPositioner.d.ts +35 -0
  1495. package/esm/tooltip/positioner/TooltipPositioner.js +104 -0
  1496. package/esm/tooltip/positioner/TooltipPositionerContext.d.ts +12 -0
  1497. package/esm/tooltip/positioner/TooltipPositionerContext.js +13 -0
  1498. package/esm/tooltip/positioner/TooltipPositionerCssVars.d.ts +27 -0
  1499. package/esm/tooltip/positioner/TooltipPositionerCssVars.js +28 -0
  1500. package/esm/tooltip/positioner/TooltipPositionerDataAttributes.d.ts +24 -0
  1501. package/esm/tooltip/positioner/TooltipPositionerDataAttributes.js +26 -0
  1502. package/esm/tooltip/provider/TooltipProvider.d.ts +28 -0
  1503. package/esm/tooltip/provider/TooltipProvider.js +37 -0
  1504. package/esm/tooltip/provider/TooltipProviderContext.d.ts +7 -0
  1505. package/esm/tooltip/provider/TooltipProviderContext.js +6 -0
  1506. package/esm/tooltip/root/TooltipRoot.d.ts +94 -0
  1507. package/esm/tooltip/root/TooltipRoot.js +138 -0
  1508. package/esm/tooltip/root/TooltipRootContext.d.ts +6 -0
  1509. package/esm/tooltip/root/TooltipRootContext.js +13 -0
  1510. package/esm/tooltip/store/TooltipHandle.d.ts +33 -0
  1511. package/esm/tooltip/store/TooltipHandle.js +55 -0
  1512. package/esm/tooltip/store/TooltipStore.d.ts +46 -0
  1513. package/esm/tooltip/store/TooltipStore.js +103 -0
  1514. package/esm/tooltip/trigger/TooltipTrigger.d.ts +43 -0
  1515. package/esm/tooltip/trigger/TooltipTrigger.js +109 -0
  1516. package/esm/tooltip/trigger/TooltipTriggerDataAttributes.d.ts +6 -0
  1517. package/esm/tooltip/trigger/TooltipTriggerDataAttributes.js +8 -0
  1518. package/esm/tooltip/utils/constants.d.ts +1 -0
  1519. package/esm/tooltip/utils/constants.js +1 -0
  1520. package/esm/tooltip/viewport/TooltipViewport.d.ts +22 -0
  1521. package/esm/tooltip/viewport/TooltipViewport.js +221 -0
  1522. package/esm/tooltip/viewport/TooltipViewportCssVars.d.ts +14 -0
  1523. package/esm/tooltip/viewport/TooltipViewportCssVars.js +15 -0
  1524. package/esm/tooltip/viewport/TooltipViewportDataAttributes.d.ts +26 -0
  1525. package/esm/tooltip/viewport/TooltipViewportDataAttributes.js +27 -0
  1526. package/esm/types/index.d.ts +1 -0
  1527. package/esm/types/index.js +1 -0
  1528. package/esm/unstable-use-media-query/index.d.ts +31 -0
  1529. package/esm/unstable-use-media-query/index.js +50 -0
  1530. package/esm/use-button/index.d.ts +1 -0
  1531. package/esm/use-button/index.js +1 -0
  1532. package/esm/use-button/useButton.d.ts +37 -0
  1533. package/esm/use-button/useButton.js +147 -0
  1534. package/esm/use-render/index.d.ts +1 -0
  1535. package/esm/use-render/index.js +1 -0
  1536. package/esm/use-render/useRender.d.ts +68 -0
  1537. package/esm/use-render/useRender.js +9 -0
  1538. package/esm/utils/FloatingPortalLite.d.ts +12 -0
  1539. package/esm/utils/FloatingPortalLite.js +37 -0
  1540. package/esm/utils/FocusGuard.d.ts +5 -0
  1541. package/esm/utils/FocusGuard.js +36 -0
  1542. package/esm/utils/InternalBackdrop.d.ts +15 -0
  1543. package/esm/utils/InternalBackdrop.js +45 -0
  1544. package/esm/utils/adaptiveOriginMiddleware.d.ts +6 -0
  1545. package/esm/utils/adaptiveOriginMiddleware.js +74 -0
  1546. package/esm/utils/areArraysEqual.d.ts +3 -0
  1547. package/esm/utils/areArraysEqual.js +3 -0
  1548. package/esm/utils/clamp.d.ts +1 -0
  1549. package/esm/utils/clamp.js +3 -0
  1550. package/esm/utils/collapsibleOpenStateMapping.d.ts +11 -0
  1551. package/esm/utils/collapsibleOpenStateMapping.js +26 -0
  1552. package/esm/utils/constants.d.ts +30 -0
  1553. package/esm/utils/constants.js +38 -0
  1554. package/esm/utils/createBaseUIEventDetails.d.ts +92 -0
  1555. package/esm/utils/createBaseUIEventDetails.js +52 -0
  1556. package/esm/utils/formatNumber.d.ts +4 -0
  1557. package/esm/utils/formatNumber.js +26 -0
  1558. package/esm/utils/getCssDimensions.d.ts +2 -0
  1559. package/esm/utils/getCssDimensions.js +21 -0
  1560. package/esm/utils/getDisabledMountTransitionStyles.d.ts +4 -0
  1561. package/esm/utils/getDisabledMountTransitionStyles.js +4 -0
  1562. package/esm/utils/getPseudoElementBounds.d.ts +8 -0
  1563. package/esm/utils/getPseudoElementBounds.js +34 -0
  1564. package/esm/utils/getStateAttributesProps.d.ts +2 -0
  1565. package/esm/utils/getStateAttributesProps.js +21 -0
  1566. package/esm/utils/hideMiddleware.d.ts +2 -0
  1567. package/esm/utils/hideMiddleware.js +19 -0
  1568. package/esm/utils/interactions/useFocusWithDelay.d.ts +9 -0
  1569. package/esm/utils/interactions/useFocusWithDelay.js +81 -0
  1570. package/esm/utils/itemEquality.d.ts +6 -0
  1571. package/esm/utils/itemEquality.js +32 -0
  1572. package/esm/utils/noop.d.ts +1 -0
  1573. package/esm/utils/noop.js +1 -0
  1574. package/esm/utils/popupStateMapping.d.ts +53 -0
  1575. package/esm/utils/popupStateMapping.js +81 -0
  1576. package/esm/utils/popups/index.d.ts +3 -0
  1577. package/esm/utils/popups/index.js +3 -0
  1578. package/esm/utils/popups/popupStoreUtils.d.ts +50 -0
  1579. package/esm/utils/popups/popupStoreUtils.js +140 -0
  1580. package/esm/utils/popups/popupTriggerMap.d.ts +30 -0
  1581. package/esm/utils/popups/popupTriggerMap.js +74 -0
  1582. package/esm/utils/popups/store.d.ts +106 -0
  1583. package/esm/utils/popups/store.js +51 -0
  1584. package/esm/utils/reason-parts.d.ts +30 -0
  1585. package/esm/utils/reason-parts.js +30 -0
  1586. package/esm/utils/reasons.d.ts +4 -0
  1587. package/esm/utils/reasons.js +2 -0
  1588. package/esm/utils/resolveClassName.d.ts +8 -0
  1589. package/esm/utils/resolveClassName.js +10 -0
  1590. package/esm/utils/resolveRef.d.ts +5 -0
  1591. package/esm/utils/resolveRef.js +10 -0
  1592. package/esm/utils/resolveStyle.d.ts +8 -0
  1593. package/esm/utils/resolveStyle.js +10 -0
  1594. package/esm/utils/resolveValueLabel.d.ts +17 -0
  1595. package/esm/utils/resolveValueLabel.js +82 -0
  1596. package/esm/utils/serializeValue.d.ts +1 -0
  1597. package/esm/utils/serializeValue.js +13 -0
  1598. package/esm/utils/stateAttributesMapping.d.ts +14 -0
  1599. package/esm/utils/stateAttributesMapping.js +28 -0
  1600. package/esm/utils/styles.d.ts +4 -0
  1601. package/esm/utils/styles.js +10 -0
  1602. package/esm/utils/types.d.ts +76 -0
  1603. package/esm/utils/types.js +1 -0
  1604. package/esm/utils/useAnchorPositioning.d.ts +204 -0
  1605. package/esm/utils/useAnchorPositioning.js +385 -0
  1606. package/esm/utils/useAnimationsFinished.d.ts +10 -0
  1607. package/esm/utils/useAnimationsFinished.js +69 -0
  1608. package/esm/utils/useBaseUiId.d.ts +6 -0
  1609. package/esm/utils/useBaseUiId.js +12 -0
  1610. package/esm/utils/useFocusableWhenDisabled.d.ts +40 -0
  1611. package/esm/utils/useFocusableWhenDisabled.js +43 -0
  1612. package/esm/utils/useMixedToggleClickHander.d.ts +24 -0
  1613. package/esm/utils/useMixedToggleClickHander.js +40 -0
  1614. package/esm/utils/useOpenChangeComplete.d.ts +27 -0
  1615. package/esm/utils/useOpenChangeComplete.js +31 -0
  1616. package/esm/utils/useOpenInteractionType.d.ts +15 -0
  1617. package/esm/utils/useOpenInteractionType.js +34 -0
  1618. package/esm/utils/usePopupAutoResize.d.ts +36 -0
  1619. package/esm/utils/usePopupAutoResize.js +144 -0
  1620. package/esm/utils/useRenderElement.d.ts +62 -0
  1621. package/esm/utils/useRenderElement.js +110 -0
  1622. package/esm/utils/useTransitionStatus.d.ts +12 -0
  1623. package/esm/utils/useTransitionStatus.js +67 -0
  1624. package/esm/utils/useValueChanged.d.ts +1 -0
  1625. package/esm/utils/useValueChanged.js +16 -0
  1626. package/esm/utils/valueToPercent.d.ts +1 -0
  1627. package/esm/utils/valueToPercent.js +3 -0
  1628. package/field/control/FieldControl.d.ts +32 -0
  1629. package/field/control/FieldControl.js +140 -0
  1630. package/field/control/FieldControlDataAttributes.d.ts +30 -0
  1631. package/field/control/FieldControlDataAttributes.js +37 -0
  1632. package/field/description/FieldDescription.d.ts +16 -0
  1633. package/field/description/FieldDescription.js +53 -0
  1634. package/field/description/FieldDescriptionDataAttributes.d.ts +30 -0
  1635. package/field/description/FieldDescriptionDataAttributes.js +37 -0
  1636. package/field/error/FieldError.d.ts +24 -0
  1637. package/field/error/FieldError.js +77 -0
  1638. package/field/error/FieldErrorDataAttributes.d.ts +30 -0
  1639. package/field/error/FieldErrorDataAttributes.js +37 -0
  1640. package/field/index.d.ts +7 -0
  1641. package/field/index.js +9 -0
  1642. package/field/index.parts.d.ts +8 -0
  1643. package/field/index.parts.js +54 -0
  1644. package/field/item/FieldItem.d.ts +22 -0
  1645. package/field/item/FieldItem.js +58 -0
  1646. package/field/item/FieldItemContext.d.ts +6 -0
  1647. package/field/item/FieldItemContext.js +17 -0
  1648. package/field/label/FieldLabel.d.ts +16 -0
  1649. package/field/label/FieldLabel.js +68 -0
  1650. package/field/label/FieldLabelDataAttributes.d.ts +30 -0
  1651. package/field/label/FieldLabelDataAttributes.js +37 -0
  1652. package/field/root/FieldRoot.d.ts +94 -0
  1653. package/field/root/FieldRoot.js +145 -0
  1654. package/field/root/FieldRootContext.d.ts +28 -0
  1655. package/field/root/FieldRootContext.js +67 -0
  1656. package/field/root/FieldRootDataAttributes.d.ts +30 -0
  1657. package/field/root/FieldRootDataAttributes.js +37 -0
  1658. package/field/root/useFieldValidation.d.ts +22 -0
  1659. package/field/root/useFieldValidation.js +245 -0
  1660. package/field/useField.d.ts +14 -0
  1661. package/field/useField.js +76 -0
  1662. package/field/utils/constants.d.ts +16 -0
  1663. package/field/utils/constants.js +35 -0
  1664. package/field/utils/getCombinedFieldValidityData.d.ts +24 -0
  1665. package/field/utils/getCombinedFieldValidityData.js +19 -0
  1666. package/field/validity/FieldValidity.d.ts +30 -0
  1667. package/field/validity/FieldValidity.js +38 -0
  1668. package/fieldset/index.d.ts +3 -0
  1669. package/fieldset/index.js +9 -0
  1670. package/fieldset/index.parts.d.ts +2 -0
  1671. package/fieldset/index.parts.js +19 -0
  1672. package/fieldset/legend/FieldsetLegend.d.ts +20 -0
  1673. package/fieldset/legend/FieldsetLegend.js +50 -0
  1674. package/fieldset/root/FieldsetRoot.d.ts +20 -0
  1675. package/fieldset/root/FieldsetRoot.js +47 -0
  1676. package/fieldset/root/FieldsetRootContext.d.ts +9 -0
  1677. package/fieldset/root/FieldsetRootContext.js +25 -0
  1678. package/floating-ui-react/components/FloatingDelayGroup.d.ts +60 -0
  1679. package/floating-ui-react/components/FloatingDelayGroup.js +169 -0
  1680. package/floating-ui-react/components/FloatingFocusManager.d.ts +105 -0
  1681. package/floating-ui-react/components/FloatingFocusManager.js +598 -0
  1682. package/floating-ui-react/components/FloatingPortal.d.ts +54 -0
  1683. package/floating-ui-react/components/FloatingPortal.js +204 -0
  1684. package/floating-ui-react/components/FloatingRootStore.d.ts +52 -0
  1685. package/floating-ui-react/components/FloatingRootStore.js +68 -0
  1686. package/floating-ui-react/components/FloatingTree.d.ts +43 -0
  1687. package/floating-ui-react/components/FloatingTree.js +102 -0
  1688. package/floating-ui-react/components/FloatingTreeStore.d.ts +11 -0
  1689. package/floating-ui-react/components/FloatingTreeStore.js +27 -0
  1690. package/floating-ui-react/hooks/useClick.d.ts +43 -0
  1691. package/floating-ui-react/hooks/useClick.js +116 -0
  1692. package/floating-ui-react/hooks/useClientPoint.d.ts +32 -0
  1693. package/floating-ui-react/hooks/useClientPoint.js +188 -0
  1694. package/floating-ui-react/hooks/useDismiss.d.ts +88 -0
  1695. package/floating-ui-react/hooks/useDismiss.js +438 -0
  1696. package/floating-ui-react/hooks/useFloating.d.ts +6 -0
  1697. package/floating-ui-react/hooks/useFloating.js +122 -0
  1698. package/floating-ui-react/hooks/useFloatingRootContext.d.ts +18 -0
  1699. package/floating-ui-react/hooks/useFloatingRootContext.js +58 -0
  1700. package/floating-ui-react/hooks/useFocus.d.ts +21 -0
  1701. package/floating-ui-react/hooks/useFocus.js +149 -0
  1702. package/floating-ui-react/hooks/useHover.d.ts +66 -0
  1703. package/floating-ui-react/hooks/useHover.js +422 -0
  1704. package/floating-ui-react/hooks/useHoverFloatingInteraction.d.ts +25 -0
  1705. package/floating-ui-react/hooks/useHoverFloatingInteraction.js +189 -0
  1706. package/floating-ui-react/hooks/useHoverInteractionSharedState.d.ts +18 -0
  1707. package/floating-ui-react/hooks/useHoverInteractionSharedState.js +48 -0
  1708. package/floating-ui-react/hooks/useHoverReferenceInteraction.d.ts +19 -0
  1709. package/floating-ui-react/hooks/useHoverReferenceInteraction.js +290 -0
  1710. package/floating-ui-react/hooks/useInteractions.d.ts +20 -0
  1711. package/floating-ui-react/hooks/useInteractions.js +95 -0
  1712. package/floating-ui-react/hooks/useListNavigation.d.ts +156 -0
  1713. package/floating-ui-react/hooks/useListNavigation.js +601 -0
  1714. package/floating-ui-react/hooks/useRole.d.ts +23 -0
  1715. package/floating-ui-react/hooks/useRole.js +121 -0
  1716. package/floating-ui-react/hooks/useSyncedFloatingRootContext.d.ts +21 -0
  1717. package/floating-ui-react/hooks/useSyncedFloatingRootContext.js +58 -0
  1718. package/floating-ui-react/hooks/useTypeahead.d.ts +55 -0
  1719. package/floating-ui-react/hooks/useTypeahead.js +130 -0
  1720. package/floating-ui-react/index.d.ts +22 -0
  1721. package/floating-ui-react/index.js +266 -0
  1722. package/floating-ui-react/middleware/arrow.d.ts +31 -0
  1723. package/floating-ui-react/middleware/arrow.js +102 -0
  1724. package/floating-ui-react/safePolygon.d.ts +12 -0
  1725. package/floating-ui-react/safePolygon.js +222 -0
  1726. package/floating-ui-react/types.d.ts +122 -0
  1727. package/floating-ui-react/types.js +118 -0
  1728. package/floating-ui-react/utils/composite.d.ts +48 -0
  1729. package/floating-ui-react/utils/composite.js +365 -0
  1730. package/floating-ui-react/utils/constants.d.ts +8 -0
  1731. package/floating-ui-react/utils/constants.js +14 -0
  1732. package/floating-ui-react/utils/createAttribute.d.ts +1 -0
  1733. package/floating-ui-react/utils/createAttribute.js +9 -0
  1734. package/floating-ui-react/utils/createEventEmitter.d.ts +2 -0
  1735. package/floating-ui-react/utils/createEventEmitter.js +23 -0
  1736. package/floating-ui-react/utils/element.d.ts +10 -0
  1737. package/floating-ui-react/utils/element.js +108 -0
  1738. package/floating-ui-react/utils/enqueueFocus.d.ts +8 -0
  1739. package/floating-ui-react/utils/enqueueFocus.js +25 -0
  1740. package/floating-ui-react/utils/event.d.ts +6 -0
  1741. package/floating-ui-react/utils/event.js +53 -0
  1742. package/floating-ui-react/utils/getEmptyRootContext.d.ts +2 -0
  1743. package/floating-ui-react/utils/getEmptyRootContext.js +20 -0
  1744. package/floating-ui-react/utils/markOthers.d.ts +4 -0
  1745. package/floating-ui-react/utils/markOthers.js +130 -0
  1746. package/floating-ui-react/utils/nodes.d.ts +4 -0
  1747. package/floating-ui-react/utils/nodes.js +42 -0
  1748. package/floating-ui-react/utils/tabbable.d.ts +12 -0
  1749. package/floating-ui-react/utils/tabbable.js +88 -0
  1750. package/floating-ui-react/utils.d.ts +5 -0
  1751. package/floating-ui-react/utils.js +60 -0
  1752. package/form/Form.d.ts +52 -0
  1753. package/form/Form.js +117 -0
  1754. package/form/FormContext.d.ts +21 -0
  1755. package/form/FormContext.js +28 -0
  1756. package/form/index.d.ts +2 -0
  1757. package/form/index.js +12 -0
  1758. package/global.d.ts +8 -0
  1759. package/index.d.ts +40 -0
  1760. package/index.js +441 -0
  1761. package/input/Input.d.ts +26 -0
  1762. package/input/Input.js +24 -0
  1763. package/input/InputDataAttributes.d.ts +30 -0
  1764. package/input/InputDataAttributes.js +37 -0
  1765. package/input/index.d.ts +2 -0
  1766. package/input/index.js +12 -0
  1767. package/labelable-provider/LabelableContext.d.ts +27 -0
  1768. package/labelable-provider/LabelableContext.js +28 -0
  1769. package/labelable-provider/LabelableProvider.d.ts +12 -0
  1770. package/labelable-provider/LabelableProvider.js +44 -0
  1771. package/labelable-provider/index.d.ts +1 -0
  1772. package/labelable-provider/index.js +16 -0
  1773. package/labelable-provider/useLabelableId.d.ts +18 -0
  1774. package/labelable-provider/useLabelableId.js +45 -0
  1775. package/menu/arrow/MenuArrow.d.ts +24 -0
  1776. package/menu/arrow/MenuArrow.js +54 -0
  1777. package/menu/arrow/MenuArrowDataAttributes.d.ts +24 -0
  1778. package/menu/arrow/MenuArrowDataAttributes.js +32 -0
  1779. package/menu/backdrop/MenuBackdrop.d.ts +22 -0
  1780. package/menu/backdrop/MenuBackdrop.js +60 -0
  1781. package/menu/backdrop/MenuBackdropDataAttributes.d.ts +18 -0
  1782. package/menu/backdrop/MenuBackdropDataAttributes.js +26 -0
  1783. package/menu/checkbox-item/MenuCheckboxItem.d.ts +73 -0
  1784. package/menu/checkbox-item/MenuCheckboxItem.js +103 -0
  1785. package/menu/checkbox-item/MenuCheckboxItemContext.d.ts +8 -0
  1786. package/menu/checkbox-item/MenuCheckboxItemContext.js +20 -0
  1787. package/menu/checkbox-item/MenuCheckboxItemDataAttributes.d.ts +18 -0
  1788. package/menu/checkbox-item/MenuCheckboxItemDataAttributes.js +25 -0
  1789. package/menu/checkbox-item-indicator/MenuCheckboxItemIndicator.d.ts +33 -0
  1790. package/menu/checkbox-item-indicator/MenuCheckboxItemIndicator.js +61 -0
  1791. package/menu/checkbox-item-indicator/MenuCheckboxItemIndicatorDataAttributes.d.ts +22 -0
  1792. package/menu/checkbox-item-indicator/MenuCheckboxItemIndicatorDataAttributes.js +30 -0
  1793. package/menu/group/MenuGroup.d.ts +20 -0
  1794. package/menu/group/MenuGroup.js +42 -0
  1795. package/menu/group/MenuGroupContext.d.ts +6 -0
  1796. package/menu/group/MenuGroupContext.js +20 -0
  1797. package/menu/group-label/MenuGroupLabel.d.ts +15 -0
  1798. package/menu/group-label/MenuGroupLabel.js +46 -0
  1799. package/menu/index.d.ts +18 -0
  1800. package/menu/index.js +9 -0
  1801. package/menu/index.parts.d.ts +19 -0
  1802. package/menu/index.parts.js +144 -0
  1803. package/menu/item/MenuItem.d.ts +48 -0
  1804. package/menu/item/MenuItem.js +66 -0
  1805. package/menu/item/MenuItemDataAttributes.d.ts +10 -0
  1806. package/menu/item/MenuItemDataAttributes.js +17 -0
  1807. package/menu/item/useMenuItem.d.ts +65 -0
  1808. package/menu/item/useMenuItem.js +103 -0
  1809. package/menu/popup/MenuPopup.d.ts +43 -0
  1810. package/menu/popup/MenuPopup.js +126 -0
  1811. package/menu/popup/MenuPopupDataAttributes.d.ts +33 -0
  1812. package/menu/popup/MenuPopupDataAttributes.js +41 -0
  1813. package/menu/portal/MenuPortal.d.ts +23 -0
  1814. package/menu/portal/MenuPortal.js +42 -0
  1815. package/menu/portal/MenuPortalContext.d.ts +3 -0
  1816. package/menu/portal/MenuPortalContext.js +20 -0
  1817. package/menu/positioner/MenuPositioner.d.ts +25 -0
  1818. package/menu/positioner/MenuPositioner.js +235 -0
  1819. package/menu/positioner/MenuPositionerContext.d.ts +19 -0
  1820. package/menu/positioner/MenuPositionerContext.js +21 -0
  1821. package/menu/positioner/MenuPositionerCssVars.d.ts +27 -0
  1822. package/menu/positioner/MenuPositionerCssVars.js +34 -0
  1823. package/menu/positioner/MenuPositionerDataAttributes.d.ts +24 -0
  1824. package/menu/positioner/MenuPositionerDataAttributes.js +32 -0
  1825. package/menu/radio-group/MenuRadioGroup.d.ts +49 -0
  1826. package/menu/radio-group/MenuRadioGroup.js +66 -0
  1827. package/menu/radio-group/MenuRadioGroupContext.d.ts +9 -0
  1828. package/menu/radio-group/MenuRadioGroupContext.js +20 -0
  1829. package/menu/radio-item/MenuRadioItem.d.ts +56 -0
  1830. package/menu/radio-item/MenuRadioItem.js +98 -0
  1831. package/menu/radio-item/MenuRadioItemContext.d.ts +8 -0
  1832. package/menu/radio-item/MenuRadioItemContext.js +20 -0
  1833. package/menu/radio-item/MenuRadioItemDataAttributes.d.ts +18 -0
  1834. package/menu/radio-item/MenuRadioItemDataAttributes.js +25 -0
  1835. package/menu/radio-item-indicator/MenuRadioItemIndicator.d.ts +33 -0
  1836. package/menu/radio-item-indicator/MenuRadioItemIndicator.js +61 -0
  1837. package/menu/radio-item-indicator/MenuRadioItemIndicatorDataAttributes.d.ts +22 -0
  1838. package/menu/radio-item-indicator/MenuRadioItemIndicatorDataAttributes.js +30 -0
  1839. package/menu/root/MenuRoot.d.ts +133 -0
  1840. package/menu/root/MenuRoot.js +436 -0
  1841. package/menu/root/MenuRootContext.d.ts +10 -0
  1842. package/menu/root/MenuRootContext.js +21 -0
  1843. package/menu/store/MenuHandle.d.ts +28 -0
  1844. package/menu/store/MenuHandle.js +57 -0
  1845. package/menu/store/MenuStore.d.ts +75 -0
  1846. package/menu/store/MenuStore.js +141 -0
  1847. package/menu/submenu-root/MenuSubmenuRoot.d.ts +30 -0
  1848. package/menu/submenu-root/MenuSubmenuRoot.js +37 -0
  1849. package/menu/submenu-root/MenuSubmenuRootContext.d.ts +7 -0
  1850. package/menu/submenu-root/MenuSubmenuRootContext.js +14 -0
  1851. package/menu/submenu-trigger/MenuSubmenuTrigger.d.ts +62 -0
  1852. package/menu/submenu-trigger/MenuSubmenuTrigger.js +141 -0
  1853. package/menu/submenu-trigger/MenuSubmenuTriggerDataAttributes.d.ts +14 -0
  1854. package/menu/submenu-trigger/MenuSubmenuTriggerDataAttributes.js +22 -0
  1855. package/menu/trigger/MenuTrigger.d.ts +58 -0
  1856. package/menu/trigger/MenuTrigger.js +316 -0
  1857. package/menu/trigger/MenuTriggerDataAttributes.d.ts +10 -0
  1858. package/menu/trigger/MenuTriggerDataAttributes.js +18 -0
  1859. package/menu/utils/findRootOwnerId.d.ts +1 -0
  1860. package/menu/utils/findRootOwnerId.js +16 -0
  1861. package/menu/utils/stateAttributesMapping.d.ts +4 -0
  1862. package/menu/utils/stateAttributesMapping.js +21 -0
  1863. package/menu/utils/types.d.ts +7 -0
  1864. package/menu/utils/types.js +5 -0
  1865. package/menubar/Menubar.d.ts +50 -0
  1866. package/menubar/Menubar.js +124 -0
  1867. package/menubar/MenubarContext.d.ts +16 -0
  1868. package/menubar/MenubarContext.js +21 -0
  1869. package/menubar/MenubarDataAttributes.d.ts +12 -0
  1870. package/menubar/MenubarDataAttributes.js +19 -0
  1871. package/menubar/index.d.ts +2 -0
  1872. package/menubar/index.js +12 -0
  1873. package/merge-props/index.d.ts +1 -0
  1874. package/merge-props/index.js +16 -0
  1875. package/merge-props/mergeProps.d.ts +35 -0
  1876. package/merge-props/mergeProps.js +171 -0
  1877. package/meter/index.d.ts +6 -0
  1878. package/meter/index.js +9 -0
  1879. package/meter/index.parts.d.ts +5 -0
  1880. package/meter/index.parts.js +40 -0
  1881. package/meter/indicator/MeterIndicator.d.ts +14 -0
  1882. package/meter/indicator/MeterIndicator.js +38 -0
  1883. package/meter/label/MeterLabel.d.ts +14 -0
  1884. package/meter/label/MeterLabel.js +42 -0
  1885. package/meter/root/MeterRoot.d.ts +47 -0
  1886. package/meter/root/MeterRoot.js +73 -0
  1887. package/meter/root/MeterRootContext.d.ts +10 -0
  1888. package/meter/root/MeterRootContext.js +21 -0
  1889. package/meter/track/MeterTrack.d.ts +14 -0
  1890. package/meter/track/MeterTrack.js +28 -0
  1891. package/meter/value/MeterValue.d.ts +16 -0
  1892. package/meter/value/MeterValue.js +37 -0
  1893. package/navigation-menu/arrow/NavigationMenuArrow.d.ts +24 -0
  1894. package/navigation-menu/arrow/NavigationMenuArrow.js +53 -0
  1895. package/navigation-menu/arrow/NavigationMenuArrowDataAttributes.d.ts +24 -0
  1896. package/navigation-menu/arrow/NavigationMenuArrowDataAttributes.js +32 -0
  1897. package/navigation-menu/backdrop/NavigationMenuBackdrop.d.ts +25 -0
  1898. package/navigation-menu/backdrop/NavigationMenuBackdrop.js +55 -0
  1899. package/navigation-menu/backdrop/NavigationMenuBackdropDataAttributes.d.ts +18 -0
  1900. package/navigation-menu/backdrop/NavigationMenuBackdropDataAttributes.js +26 -0
  1901. package/navigation-menu/content/NavigationMenuContent.d.ts +30 -0
  1902. package/navigation-menu/content/NavigationMenuContent.js +127 -0
  1903. package/navigation-menu/content/NavigationMenuContentDataAttributes.d.ts +22 -0
  1904. package/navigation-menu/content/NavigationMenuContentDataAttributes.js +30 -0
  1905. package/navigation-menu/icon/NavigationMenuIcon.d.ts +19 -0
  1906. package/navigation-menu/icon/NavigationMenuIcon.js +47 -0
  1907. package/navigation-menu/index.d.ts +14 -0
  1908. package/navigation-menu/index.js +9 -0
  1909. package/navigation-menu/index.parts.d.ts +13 -0
  1910. package/navigation-menu/index.parts.js +96 -0
  1911. package/navigation-menu/item/NavigationMenuItem.d.ts +22 -0
  1912. package/navigation-menu/item/NavigationMenuItem.js +41 -0
  1913. package/navigation-menu/item/NavigationMenuItemContext.d.ts +6 -0
  1914. package/navigation-menu/item/NavigationMenuItemContext.js +20 -0
  1915. package/navigation-menu/link/NavigationMenuLinikDataAttributes.d.ts +6 -0
  1916. package/navigation-menu/link/NavigationMenuLinikDataAttributes.js +13 -0
  1917. package/navigation-menu/link/NavigationMenuLink.d.ts +31 -0
  1918. package/navigation-menu/link/NavigationMenuLink.js +73 -0
  1919. package/navigation-menu/list/NavigationMenuDismissContext.d.ts +4 -0
  1920. package/navigation-menu/list/NavigationMenuDismissContext.js +14 -0
  1921. package/navigation-menu/list/NavigationMenuList.d.ts +20 -0
  1922. package/navigation-menu/list/NavigationMenuList.js +99 -0
  1923. package/navigation-menu/popup/NavigationMenuPopup.d.ts +25 -0
  1924. package/navigation-menu/popup/NavigationMenuPopup.js +77 -0
  1925. package/navigation-menu/popup/NavigationMenuPopupCssVars.d.ts +12 -0
  1926. package/navigation-menu/popup/NavigationMenuPopupCssVars.js +19 -0
  1927. package/navigation-menu/popup/NavigationMenuPopupDataAttributes.d.ts +28 -0
  1928. package/navigation-menu/popup/NavigationMenuPopupDataAttributes.js +36 -0
  1929. package/navigation-menu/portal/NavigationMenuPortal.d.ts +27 -0
  1930. package/navigation-menu/portal/NavigationMenuPortal.js +41 -0
  1931. package/navigation-menu/portal/NavigationMenuPortalContext.d.ts +3 -0
  1932. package/navigation-menu/portal/NavigationMenuPortalContext.js +20 -0
  1933. package/navigation-menu/positioner/NavigationMenuPositioner.d.ts +28 -0
  1934. package/navigation-menu/positioner/NavigationMenuPositioner.js +165 -0
  1935. package/navigation-menu/positioner/NavigationMenuPositionerContext.d.ts +6 -0
  1936. package/navigation-menu/positioner/NavigationMenuPositionerContext.js +21 -0
  1937. package/navigation-menu/positioner/NavigationMenuPositionerCssVars.d.ts +37 -0
  1938. package/navigation-menu/positioner/NavigationMenuPositionerCssVars.js +44 -0
  1939. package/navigation-menu/positioner/NavigationPositionerDataAttributes.d.ts +28 -0
  1940. package/navigation-menu/positioner/NavigationPositionerDataAttributes.js +36 -0
  1941. package/navigation-menu/root/NavigationMenuRoot.d.ts +77 -0
  1942. package/navigation-menu/root/NavigationMenuRoot.js +220 -0
  1943. package/navigation-menu/root/NavigationMenuRootContext.d.ts +42 -0
  1944. package/navigation-menu/root/NavigationMenuRootContext.js +29 -0
  1945. package/navigation-menu/trigger/NavigationMenuTrigger.d.ts +21 -0
  1946. package/navigation-menu/trigger/NavigationMenuTrigger.js +413 -0
  1947. package/navigation-menu/trigger/NavigationMenuTriggerDataAttributes.d.ts +10 -0
  1948. package/navigation-menu/trigger/NavigationMenuTriggerDataAttributes.js +18 -0
  1949. package/navigation-menu/utils/constants.d.ts +3 -0
  1950. package/navigation-menu/utils/constants.js +9 -0
  1951. package/navigation-menu/utils/isOutsideMenuEvent.d.ts +17 -0
  1952. package/navigation-menu/utils/isOutsideMenuEvent.js +30 -0
  1953. package/navigation-menu/utils/setFixedSize.d.ts +1 -0
  1954. package/navigation-menu/utils/setFixedSize.js +17 -0
  1955. package/navigation-menu/viewport/NavigationMenuViewport.d.ts +15 -0
  1956. package/navigation-menu/viewport/NavigationMenuViewport.js +121 -0
  1957. package/number-field/decrement/NumberFieldDecrement.d.ts +16 -0
  1958. package/number-field/decrement/NumberFieldDecrement.js +99 -0
  1959. package/number-field/decrement/NumberFieldDecrementDataAttributes.d.ts +42 -0
  1960. package/number-field/decrement/NumberFieldDecrementDataAttributes.js +49 -0
  1961. package/number-field/group/NumberFieldGroup.d.ts +16 -0
  1962. package/number-field/group/NumberFieldGroup.js +38 -0
  1963. package/number-field/group/NumberFieldGroupDataAttributes.d.ts +42 -0
  1964. package/number-field/group/NumberFieldGroupDataAttributes.js +49 -0
  1965. package/number-field/increment/NumberFieldIncrement.d.ts +16 -0
  1966. package/number-field/increment/NumberFieldIncrement.js +99 -0
  1967. package/number-field/increment/NumberFieldIncrementDataAttributes.d.ts +42 -0
  1968. package/number-field/increment/NumberFieldIncrementDataAttributes.js +49 -0
  1969. package/number-field/index.d.ts +8 -0
  1970. package/number-field/index.js +9 -0
  1971. package/number-field/index.parts.d.ts +7 -0
  1972. package/number-field/index.parts.js +54 -0
  1973. package/number-field/input/NumberFieldInput.d.ts +22 -0
  1974. package/number-field/input/NumberFieldInput.js +338 -0
  1975. package/number-field/input/NumberFieldInputDataAttributes.d.ts +42 -0
  1976. package/number-field/input/NumberFieldInputDataAttributes.js +49 -0
  1977. package/number-field/root/NumberFieldRoot.d.ts +161 -0
  1978. package/number-field/root/NumberFieldRoot.js +435 -0
  1979. package/number-field/root/NumberFieldRootContext.d.ts +44 -0
  1980. package/number-field/root/NumberFieldRootContext.js +21 -0
  1981. package/number-field/root/NumberFieldRootDataAttributes.d.ts +42 -0
  1982. package/number-field/root/NumberFieldRootDataAttributes.js +49 -0
  1983. package/number-field/root/useNumberFieldButton.d.ts +38 -0
  1984. package/number-field/root/useNumberFieldButton.js +192 -0
  1985. package/number-field/scrub-area/NumberFieldScrubArea.d.ts +33 -0
  1986. package/number-field/scrub-area/NumberFieldScrubArea.js +265 -0
  1987. package/number-field/scrub-area/NumberFieldScrubAreaContext.d.ts +13 -0
  1988. package/number-field/scrub-area/NumberFieldScrubAreaContext.js +20 -0
  1989. package/number-field/scrub-area/NumberFieldScrubAreaDataAttributes.d.ts +42 -0
  1990. package/number-field/scrub-area/NumberFieldScrubAreaDataAttributes.js +49 -0
  1991. package/number-field/scrub-area-cursor/NumberFieldScrubAreaCursor.d.ts +19 -0
  1992. package/number-field/scrub-area-cursor/NumberFieldScrubAreaCursor.js +60 -0
  1993. package/number-field/scrub-area-cursor/NumberFieldScrubAreaCursorDataAttributes.d.ts +42 -0
  1994. package/number-field/scrub-area-cursor/NumberFieldScrubAreaCursorDataAttributes.js +49 -0
  1995. package/number-field/utils/constants.d.ts +6 -0
  1996. package/number-field/utils/constants.js +12 -0
  1997. package/number-field/utils/getViewportRect.d.ts +6 -0
  1998. package/number-field/utils/getViewportRect.js +35 -0
  1999. package/number-field/utils/parse.d.ts +31 -0
  2000. package/number-field/utils/parse.js +224 -0
  2001. package/number-field/utils/stateAttributesMapping.d.ts +3 -0
  2002. package/number-field/utils/stateAttributesMapping.js +10 -0
  2003. package/number-field/utils/subscribeToVisualViewportResize.d.ts +1 -0
  2004. package/number-field/utils/subscribeToVisualViewportResize.js +25 -0
  2005. package/number-field/utils/types.d.ts +15 -0
  2006. package/number-field/utils/types.js +5 -0
  2007. package/number-field/utils/validate.d.ts +18 -0
  2008. package/number-field/utils/validate.js +80 -0
  2009. package/package.json +480 -0
  2010. package/popover/arrow/PopoverArrow.d.ts +24 -0
  2011. package/popover/arrow/PopoverArrow.js +54 -0
  2012. package/popover/arrow/PopoverArrowDataAttributes.d.ts +24 -0
  2013. package/popover/arrow/PopoverArrowDataAttributes.js +32 -0
  2014. package/popover/backdrop/PopoverBackdrop.d.ts +22 -0
  2015. package/popover/backdrop/PopoverBackdrop.js +59 -0
  2016. package/popover/backdrop/PopoverBackdropDataAttributes.d.ts +18 -0
  2017. package/popover/backdrop/PopoverBackdropDataAttributes.js +26 -0
  2018. package/popover/close/PopoverClose.d.ts +15 -0
  2019. package/popover/close/PopoverClose.js +50 -0
  2020. package/popover/description/PopoverDescription.d.ts +15 -0
  2021. package/popover/description/PopoverDescription.js +44 -0
  2022. package/popover/index.d.ts +12 -0
  2023. package/popover/index.js +9 -0
  2024. package/popover/index.parts.d.ts +12 -0
  2025. package/popover/index.parts.js +95 -0
  2026. package/popover/popup/PopoverPopup.d.ts +47 -0
  2027. package/popover/popup/PopoverPopup.js +154 -0
  2028. package/popover/popup/PopoverPopupCssVars.d.ts +10 -0
  2029. package/popover/popup/PopoverPopupCssVars.js +17 -0
  2030. package/popover/popup/PopoverPopupDataAttributes.d.ts +33 -0
  2031. package/popover/popup/PopoverPopupDataAttributes.js +41 -0
  2032. package/popover/portal/PopoverPortal.d.ts +23 -0
  2033. package/popover/portal/PopoverPortal.js +43 -0
  2034. package/popover/portal/PopoverPortalContext.d.ts +3 -0
  2035. package/popover/portal/PopoverPortalContext.js +20 -0
  2036. package/popover/positioner/PopoverPositioner.d.ts +28 -0
  2037. package/popover/positioner/PopoverPositioner.js +153 -0
  2038. package/popover/positioner/PopoverPositionerContext.d.ts +13 -0
  2039. package/popover/positioner/PopoverPositionerContext.js +21 -0
  2040. package/popover/positioner/PopoverPositionerCssVars.d.ts +37 -0
  2041. package/popover/positioner/PopoverPositionerCssVars.js +44 -0
  2042. package/popover/positioner/PopoverPositionerDataAttributes.d.ts +24 -0
  2043. package/popover/positioner/PopoverPositionerDataAttributes.js +32 -0
  2044. package/popover/root/PopoverRoot.d.ts +86 -0
  2045. package/popover/root/PopoverRoot.js +145 -0
  2046. package/popover/root/PopoverRootContext.d.ts +8 -0
  2047. package/popover/root/PopoverRootContext.js +21 -0
  2048. package/popover/store/PopoverHandle.d.ts +28 -0
  2049. package/popover/store/PopoverHandle.js +58 -0
  2050. package/popover/store/PopoverStore.d.ts +62 -0
  2051. package/popover/store/PopoverStore.js +134 -0
  2052. package/popover/title/PopoverTitle.d.ts +15 -0
  2053. package/popover/title/PopoverTitle.js +44 -0
  2054. package/popover/trigger/PopoverTrigger.d.ts +69 -0
  2055. package/popover/trigger/PopoverTrigger.js +164 -0
  2056. package/popover/trigger/PopoverTriggerDataAttributes.d.ts +10 -0
  2057. package/popover/trigger/PopoverTriggerDataAttributes.js +18 -0
  2058. package/popover/utils/constants.d.ts +1 -0
  2059. package/popover/utils/constants.js +7 -0
  2060. package/popover/viewport/PopoverViewport.d.ts +22 -0
  2061. package/popover/viewport/PopoverViewport.js +227 -0
  2062. package/popover/viewport/PopoverViewportCssVars.d.ts +14 -0
  2063. package/popover/viewport/PopoverViewportCssVars.js +21 -0
  2064. package/popover/viewport/PopoverViewportDataAttributes.d.ts +21 -0
  2065. package/popover/viewport/PopoverViewportDataAttributes.js +28 -0
  2066. package/preview-card/arrow/PreviewCardArrow.d.ts +24 -0
  2067. package/preview-card/arrow/PreviewCardArrow.js +53 -0
  2068. package/preview-card/arrow/PreviewCardArrowDataAttributes.d.ts +24 -0
  2069. package/preview-card/arrow/PreviewCardArrowDataAttributes.js +32 -0
  2070. package/preview-card/backdrop/PreviewCardBackdrop.d.ts +22 -0
  2071. package/preview-card/backdrop/PreviewCardBackdrop.js +56 -0
  2072. package/preview-card/backdrop/PreviewCardBackdropDataAttributes.d.ts +18 -0
  2073. package/preview-card/backdrop/PreviewCardBackdropDataAttributes.js +26 -0
  2074. package/preview-card/index.d.ts +8 -0
  2075. package/preview-card/index.js +9 -0
  2076. package/preview-card/index.parts.d.ts +7 -0
  2077. package/preview-card/index.parts.js +54 -0
  2078. package/preview-card/popup/PreviewCardPopup.d.ts +25 -0
  2079. package/preview-card/popup/PreviewCardPopup.js +68 -0
  2080. package/preview-card/popup/PreviewCardPopupDataAttributes.d.ts +28 -0
  2081. package/preview-card/popup/PreviewCardPopupDataAttributes.js +36 -0
  2082. package/preview-card/portal/PreviewCardPortal.d.ts +23 -0
  2083. package/preview-card/portal/PreviewCardPortal.js +41 -0
  2084. package/preview-card/portal/PreviewCardPortalContext.d.ts +3 -0
  2085. package/preview-card/portal/PreviewCardPortalContext.js +20 -0
  2086. package/preview-card/positioner/PreviewCardPositioner.d.ts +24 -0
  2087. package/preview-card/positioner/PreviewCardPositioner.js +104 -0
  2088. package/preview-card/positioner/PreviewCardPositionerContext.d.ts +11 -0
  2089. package/preview-card/positioner/PreviewCardPositionerContext.js +21 -0
  2090. package/preview-card/positioner/PreviewCardPositionerCssVars.d.ts +27 -0
  2091. package/preview-card/positioner/PreviewCardPositionerCssVars.js +34 -0
  2092. package/preview-card/positioner/PreviewCardPositionerDataAttributes.d.ts +24 -0
  2093. package/preview-card/positioner/PreviewCardPositionerDataAttributes.js +32 -0
  2094. package/preview-card/root/PreviewCardContext.d.ts +27 -0
  2095. package/preview-card/root/PreviewCardContext.js +21 -0
  2096. package/preview-card/root/PreviewCardRoot.d.ts +52 -0
  2097. package/preview-card/root/PreviewCardRoot.js +147 -0
  2098. package/preview-card/trigger/PreviewCardTrigger.d.ts +31 -0
  2099. package/preview-card/trigger/PreviewCardTrigger.js +51 -0
  2100. package/preview-card/trigger/PreviewCardTriggerDataAttributes.d.ts +6 -0
  2101. package/preview-card/trigger/PreviewCardTriggerDataAttributes.js +14 -0
  2102. package/preview-card/utils/constants.d.ts +2 -0
  2103. package/preview-card/utils/constants.js +8 -0
  2104. package/progress/index.d.ts +6 -0
  2105. package/progress/index.js +9 -0
  2106. package/progress/index.parts.d.ts +6 -0
  2107. package/progress/index.parts.js +40 -0
  2108. package/progress/indicator/ProgressIndicator.d.ts +14 -0
  2109. package/progress/indicator/ProgressIndicator.js +53 -0
  2110. package/progress/indicator/ProgressIndicatorDataAttributes.d.ts +14 -0
  2111. package/progress/indicator/ProgressIndicatorDataAttributes.js +21 -0
  2112. package/progress/label/ProgressLabel.d.ts +14 -0
  2113. package/progress/label/ProgressLabel.js +47 -0
  2114. package/progress/label/ProgressLabelDataAttributes.d.ts +14 -0
  2115. package/progress/label/ProgressLabelDataAttributes.js +21 -0
  2116. package/progress/root/ProgressRoot.d.ts +51 -0
  2117. package/progress/root/ProgressRoot.js +90 -0
  2118. package/progress/root/ProgressRootContext.d.ts +28 -0
  2119. package/progress/root/ProgressRootContext.js +24 -0
  2120. package/progress/root/ProgressRootDataAttributes.d.ts +14 -0
  2121. package/progress/root/ProgressRootDataAttributes.js +21 -0
  2122. package/progress/root/stateAttributesMapping.d.ts +3 -0
  2123. package/progress/root/stateAttributesMapping.js +27 -0
  2124. package/progress/track/ProgressTrack.d.ts +14 -0
  2125. package/progress/track/ProgressTrack.js +36 -0
  2126. package/progress/track/ProgressTrackDataAttributes.d.ts +14 -0
  2127. package/progress/track/ProgressTrackDataAttributes.js +21 -0
  2128. package/progress/value/ProgressValue.d.ts +16 -0
  2129. package/progress/value/ProgressValue.js +44 -0
  2130. package/progress/value/ProgressValueDataAttributes.d.ts +14 -0
  2131. package/progress/value/ProgressValueDataAttributes.js +21 -0
  2132. package/radio/index.d.ts +3 -0
  2133. package/radio/index.js +9 -0
  2134. package/radio/index.parts.d.ts +2 -0
  2135. package/radio/index.parts.js +19 -0
  2136. package/radio/indicator/RadioIndicator.d.ts +28 -0
  2137. package/radio/indicator/RadioIndicator.js +61 -0
  2138. package/radio/indicator/RadioIndicatorDataAttributes.d.ts +46 -0
  2139. package/radio/indicator/RadioIndicatorDataAttributes.js +53 -0
  2140. package/radio/root/RadioRoot.d.ts +36 -0
  2141. package/radio/root/RadioRoot.js +193 -0
  2142. package/radio/root/RadioRootContext.d.ts +9 -0
  2143. package/radio/root/RadioRootContext.js +21 -0
  2144. package/radio/root/RadioRootDataAttributes.d.ts +46 -0
  2145. package/radio/root/RadioRootDataAttributes.js +53 -0
  2146. package/radio/utils/stateAttributesMapping.d.ts +6 -0
  2147. package/radio/utils/stateAttributesMapping.js +23 -0
  2148. package/radio-group/RadioGroup.d.ts +67 -0
  2149. package/radio-group/RadioGroup.js +206 -0
  2150. package/radio-group/RadioGroupContext.d.ts +19 -0
  2151. package/radio-group/RadioGroupContext.js +27 -0
  2152. package/radio-group/RadioGroupDataAttributes.d.ts +6 -0
  2153. package/radio-group/RadioGroupDataAttributes.js +13 -0
  2154. package/radio-group/index.d.ts +2 -0
  2155. package/radio-group/index.js +12 -0
  2156. package/scroll-area/constants.d.ts +2 -0
  2157. package/scroll-area/constants.js +8 -0
  2158. package/scroll-area/content/ScrollAreaContent.d.ts +16 -0
  2159. package/scroll-area/content/ScrollAreaContent.js +59 -0
  2160. package/scroll-area/corner/ScrollAreaCorner.d.ts +15 -0
  2161. package/scroll-area/corner/ScrollAreaCorner.js +46 -0
  2162. package/scroll-area/index.d.ts +7 -0
  2163. package/scroll-area/index.js +9 -0
  2164. package/scroll-area/index.parts.d.ts +6 -0
  2165. package/scroll-area/index.parts.js +47 -0
  2166. package/scroll-area/root/ScrollAreaRoot.d.ts +42 -0
  2167. package/scroll-area/root/ScrollAreaRoot.js +258 -0
  2168. package/scroll-area/root/ScrollAreaRootContext.d.ts +73 -0
  2169. package/scroll-area/root/ScrollAreaRootContext.js +20 -0
  2170. package/scroll-area/root/ScrollAreaRootCssVars.d.ts +12 -0
  2171. package/scroll-area/root/ScrollAreaRootCssVars.js +19 -0
  2172. package/scroll-area/root/ScrollAreaRootDataAttributes.d.ts +26 -0
  2173. package/scroll-area/root/ScrollAreaRootDataAttributes.js +33 -0
  2174. package/scroll-area/root/stateAttributes.d.ts +3 -0
  2175. package/scroll-area/root/stateAttributes.js +28 -0
  2176. package/scroll-area/scrollbar/ScrollAreaScrollbar.d.ts +34 -0
  2177. package/scroll-area/scrollbar/ScrollAreaScrollbar.js +199 -0
  2178. package/scroll-area/scrollbar/ScrollAreaScrollbarContext.d.ts +6 -0
  2179. package/scroll-area/scrollbar/ScrollAreaScrollbarContext.js +20 -0
  2180. package/scroll-area/scrollbar/ScrollAreaScrollbarCssVars.d.ts +12 -0
  2181. package/scroll-area/scrollbar/ScrollAreaScrollbarCssVars.js +19 -0
  2182. package/scroll-area/scrollbar/ScrollAreaScrollbarDataAttributes.d.ts +39 -0
  2183. package/scroll-area/scrollbar/ScrollAreaScrollbarDataAttributes.js +46 -0
  2184. package/scroll-area/thumb/ScrollAreaThumb.d.ts +17 -0
  2185. package/scroll-area/thumb/ScrollAreaThumb.js +68 -0
  2186. package/scroll-area/thumb/ScrollAreaThumbDataAttributes.d.ts +7 -0
  2187. package/scroll-area/thumb/ScrollAreaThumbDataAttributes.js +14 -0
  2188. package/scroll-area/utils/getOffset.d.ts +1 -0
  2189. package/scroll-area/utils/getOffset.js +20 -0
  2190. package/scroll-area/utils/onVisible.d.ts +4 -0
  2191. package/scroll-area/utils/onVisible.js +26 -0
  2192. package/scroll-area/viewport/ScrollAreaViewport.d.ts +16 -0
  2193. package/scroll-area/viewport/ScrollAreaViewport.js +340 -0
  2194. package/scroll-area/viewport/ScrollAreaViewportContext.d.ts +6 -0
  2195. package/scroll-area/viewport/ScrollAreaViewportContext.js +20 -0
  2196. package/scroll-area/viewport/ScrollAreaViewportCssVars.d.ts +22 -0
  2197. package/scroll-area/viewport/ScrollAreaViewportCssVars.js +29 -0
  2198. package/scroll-area/viewport/ScrollAreaViewportDataAttributes.d.ts +26 -0
  2199. package/scroll-area/viewport/ScrollAreaViewportDataAttributes.js +33 -0
  2200. package/select/arrow/SelectArrow.d.ts +24 -0
  2201. package/select/arrow/SelectArrow.js +66 -0
  2202. package/select/arrow/SelectArrowDataAttributes.d.ts +24 -0
  2203. package/select/arrow/SelectArrowDataAttributes.js +32 -0
  2204. package/select/backdrop/SelectBackdrop.d.ts +19 -0
  2205. package/select/backdrop/SelectBackdrop.js +58 -0
  2206. package/select/backdrop/SelectBackdropDataAttributes.d.ts +18 -0
  2207. package/select/backdrop/SelectBackdropDataAttributes.js +26 -0
  2208. package/select/group/SelectGroup.d.ts +15 -0
  2209. package/select/group/SelectGroup.js +42 -0
  2210. package/select/group/SelectGroupContext.d.ts +7 -0
  2211. package/select/group/SelectGroupContext.js +20 -0
  2212. package/select/group-label/SelectGroupLabel.d.ts +15 -0
  2213. package/select/group-label/SelectGroupLabel.js +42 -0
  2214. package/select/icon/SelectIcon.d.ts +20 -0
  2215. package/select/icon/SelectIcon.js +45 -0
  2216. package/select/icon/SelectIconDataAttributes.d.ts +6 -0
  2217. package/select/icon/SelectIconDataAttributes.js +14 -0
  2218. package/select/index.d.ts +18 -0
  2219. package/select/index.js +9 -0
  2220. package/select/index.parts.d.ts +18 -0
  2221. package/select/index.parts.js +131 -0
  2222. package/select/item/SelectItem.d.ts +46 -0
  2223. package/select/item/SelectItem.js +218 -0
  2224. package/select/item/SelectItemContext.d.ts +10 -0
  2225. package/select/item/SelectItemContext.js +20 -0
  2226. package/select/item/SelectItemDataAttributes.d.ts +14 -0
  2227. package/select/item/SelectItemDataAttributes.js +21 -0
  2228. package/select/item-indicator/SelectItemIndicator.d.ts +23 -0
  2229. package/select/item-indicator/SelectItemIndicator.js +81 -0
  2230. package/select/item-text/SelectItemText.d.ts +15 -0
  2231. package/select/item-text/SelectItemText.js +49 -0
  2232. package/select/list/SelectList.d.ts +15 -0
  2233. package/select/list/SelectList.js +61 -0
  2234. package/select/popup/SelectPopup.d.ts +24 -0
  2235. package/select/popup/SelectPopup.js +363 -0
  2236. package/select/popup/SelectPopupDataAttributes.d.ts +28 -0
  2237. package/select/popup/SelectPopupDataAttributes.js +36 -0
  2238. package/select/popup/utils.d.ts +7 -0
  2239. package/select/popup/utils.js +18 -0
  2240. package/select/portal/SelectPortal.d.ts +17 -0
  2241. package/select/portal/SelectPortal.js +41 -0
  2242. package/select/portal/SelectPortalContext.d.ts +3 -0
  2243. package/select/portal/SelectPortalContext.js +20 -0
  2244. package/select/positioner/SelectPositioner.d.ts +27 -0
  2245. package/select/positioner/SelectPositioner.js +215 -0
  2246. package/select/positioner/SelectPositionerContext.d.ts +11 -0
  2247. package/select/positioner/SelectPositionerContext.js +20 -0
  2248. package/select/positioner/SelectPositionerCssVars.d.ts +27 -0
  2249. package/select/positioner/SelectPositionerCssVars.js +34 -0
  2250. package/select/positioner/SelectPositionerDataAttributes.d.ts +24 -0
  2251. package/select/positioner/SelectPositionerDataAttributes.js +32 -0
  2252. package/select/root/SelectRoot.d.ts +146 -0
  2253. package/select/root/SelectRoot.js +460 -0
  2254. package/select/root/SelectRootContext.d.ts +45 -0
  2255. package/select/root/SelectRootContext.js +30 -0
  2256. package/select/scroll-arrow/SelectScrollArrow.d.ts +26 -0
  2257. package/select/scroll-arrow/SelectScrollArrow.js +185 -0
  2258. package/select/scroll-down-arrow/SelectScrollDownArrow.d.ts +21 -0
  2259. package/select/scroll-down-arrow/SelectScrollDownArrow.js +25 -0
  2260. package/select/scroll-down-arrow/SelectScrollDownArrowDataAttributes.d.ts +24 -0
  2261. package/select/scroll-down-arrow/SelectScrollDownArrowDataAttributes.js +32 -0
  2262. package/select/scroll-up-arrow/SelectScrollUpArrow.d.ts +21 -0
  2263. package/select/scroll-up-arrow/SelectScrollUpArrow.js +25 -0
  2264. package/select/scroll-up-arrow/SelectScrollUpArrowDataAttributes.d.ts +24 -0
  2265. package/select/scroll-up-arrow/SelectScrollUpArrowDataAttributes.js +32 -0
  2266. package/select/store.d.ts +65 -0
  2267. package/select/store.js +63 -0
  2268. package/select/trigger/SelectTrigger.d.ts +27 -0
  2269. package/select/trigger/SelectTrigger.js +207 -0
  2270. package/select/trigger/SelectTriggerDataAttributes.d.ts +50 -0
  2271. package/select/trigger/SelectTriggerDataAttributes.js +58 -0
  2272. package/select/value/SelectValue.d.ts +31 -0
  2273. package/select/value/SelectValue.js +55 -0
  2274. package/select/value/SelectValueDataAttributes.d.ts +6 -0
  2275. package/select/value/SelectValueDataAttributes.js +13 -0
  2276. package/separator/Separator.d.ts +26 -0
  2277. package/separator/Separator.js +37 -0
  2278. package/separator/index.d.ts +2 -0
  2279. package/separator/index.js +12 -0
  2280. package/slider/control/SliderControl.d.ts +15 -0
  2281. package/slider/control/SliderControl.js +410 -0
  2282. package/slider/control/SliderControlDataAttributes.d.ts +43 -0
  2283. package/slider/control/SliderControlDataAttributes.js +50 -0
  2284. package/slider/index.d.ts +7 -0
  2285. package/slider/index.js +9 -0
  2286. package/slider/index.parts.d.ts +6 -0
  2287. package/slider/index.parts.js +47 -0
  2288. package/slider/indicator/SliderIndicator.d.ts +14 -0
  2289. package/slider/indicator/SliderIndicator.js +94 -0
  2290. package/slider/indicator/SliderIndicatorDataAttributes.d.ts +43 -0
  2291. package/slider/indicator/SliderIndicatorDataAttributes.js +50 -0
  2292. package/slider/root/SliderRoot.d.ts +178 -0
  2293. package/slider/root/SliderRoot.js +304 -0
  2294. package/slider/root/SliderRootContext.d.ts +89 -0
  2295. package/slider/root/SliderRootContext.js +21 -0
  2296. package/slider/root/SliderRootDataAttributes.d.ts +43 -0
  2297. package/slider/root/SliderRootDataAttributes.js +50 -0
  2298. package/slider/root/stateAttributesMapping.d.ts +3 -0
  2299. package/slider/root/stateAttributesMapping.js +14 -0
  2300. package/slider/thumb/SliderThumb.d.ts +65 -0
  2301. package/slider/thumb/SliderThumb.js +342 -0
  2302. package/slider/thumb/SliderThumbDataAttributes.d.ts +47 -0
  2303. package/slider/thumb/SliderThumbDataAttributes.js +54 -0
  2304. package/slider/thumb/prehydrationScript.min.d.ts +1 -0
  2305. package/slider/thumb/prehydrationScript.min.js +11 -0
  2306. package/slider/track/SliderTrack.d.ts +14 -0
  2307. package/slider/track/SliderTrack.js +40 -0
  2308. package/slider/track/SliderTrackDataAttributes.d.ts +43 -0
  2309. package/slider/track/SliderTrackDataAttributes.js +50 -0
  2310. package/slider/utils/asc.d.ts +1 -0
  2311. package/slider/utils/asc.js +9 -0
  2312. package/slider/utils/getMidpoint.d.ts +2 -0
  2313. package/slider/utils/getMidpoint.js +13 -0
  2314. package/slider/utils/getPushedThumbValues.d.ts +25 -0
  2315. package/slider/utils/getPushedThumbValues.js +56 -0
  2316. package/slider/utils/getSliderValue.d.ts +1 -0
  2317. package/slider/utils/getSliderValue.js +18 -0
  2318. package/slider/utils/replaceArrayItemAtIndex.d.ts +1 -0
  2319. package/slider/utils/replaceArrayItemAtIndex.js +12 -0
  2320. package/slider/utils/resolveThumbCollision.d.ts +30 -0
  2321. package/slider/utils/resolveThumbCollision.js +134 -0
  2322. package/slider/utils/roundValueToStep.d.ts +1 -0
  2323. package/slider/utils/roundValueToStep.js +21 -0
  2324. package/slider/utils/test-utils.d.ts +16 -0
  2325. package/slider/utils/test-utils.js +30 -0
  2326. package/slider/utils/validateMinimumDistance.d.ts +1 -0
  2327. package/slider/utils/validateMinimumDistance.js +19 -0
  2328. package/slider/utils/valueArrayToPercentages.d.ts +1 -0
  2329. package/slider/utils/valueArrayToPercentages.js +15 -0
  2330. package/slider/value/SliderValue.d.ts +16 -0
  2331. package/slider/value/SliderValue.js +72 -0
  2332. package/slider/value/SliderValueDataAttributes.d.ts +43 -0
  2333. package/slider/value/SliderValueDataAttributes.js +50 -0
  2334. package/switch/index.d.ts +3 -0
  2335. package/switch/index.js +9 -0
  2336. package/switch/index.parts.d.ts +2 -0
  2337. package/switch/index.parts.js +19 -0
  2338. package/switch/root/SwitchRoot.d.ts +89 -0
  2339. package/switch/root/SwitchRoot.js +202 -0
  2340. package/switch/root/SwitchRootContext.d.ts +5 -0
  2341. package/switch/root/SwitchRootContext.js +20 -0
  2342. package/switch/root/SwitchRootDataAttributes.d.ts +46 -0
  2343. package/switch/root/SwitchRootDataAttributes.js +53 -0
  2344. package/switch/stateAttributesMapping.d.ts +3 -0
  2345. package/switch/stateAttributesMapping.js +21 -0
  2346. package/switch/thumb/SwitchThumb.d.ts +16 -0
  2347. package/switch/thumb/SwitchThumb.js +41 -0
  2348. package/switch/thumb/SwitchThumbDataAttributes.d.ts +46 -0
  2349. package/switch/thumb/SwitchThumbDataAttributes.js +53 -0
  2350. package/tabs/index.d.ts +6 -0
  2351. package/tabs/index.js +9 -0
  2352. package/tabs/index.parts.d.ts +5 -0
  2353. package/tabs/index.parts.js +40 -0
  2354. package/tabs/indicator/TabsIndicator.d.ts +28 -0
  2355. package/tabs/indicator/TabsIndicator.js +158 -0
  2356. package/tabs/indicator/TabsIndicatorCssVars.d.ts +32 -0
  2357. package/tabs/indicator/TabsIndicatorCssVars.js +39 -0
  2358. package/tabs/indicator/TabsIndicatorDataAttributes.d.ts +12 -0
  2359. package/tabs/indicator/TabsIndicatorDataAttributes.js +19 -0
  2360. package/tabs/indicator/prehydrationScript.min.d.ts +1 -0
  2361. package/tabs/indicator/prehydrationScript.min.js +11 -0
  2362. package/tabs/list/TabsList.d.ts +29 -0
  2363. package/tabs/list/TabsList.js +164 -0
  2364. package/tabs/list/TabsListContext.d.ts +11 -0
  2365. package/tabs/list/TabsListContext.js +21 -0
  2366. package/tabs/list/TabsListDataAttributes.d.ts +12 -0
  2367. package/tabs/list/TabsListDataAttributes.js +19 -0
  2368. package/tabs/panel/TabsPanel.d.ts +34 -0
  2369. package/tabs/panel/TabsPanel.js +88 -0
  2370. package/tabs/panel/TabsPanelDataAttributes.d.ts +20 -0
  2371. package/tabs/panel/TabsPanelDataAttributes.js +27 -0
  2372. package/tabs/root/TabsRoot.d.ts +50 -0
  2373. package/tabs/root/TabsRoot.js +182 -0
  2374. package/tabs/root/TabsRootContext.d.ts +45 -0
  2375. package/tabs/root/TabsRootContext.js +24 -0
  2376. package/tabs/root/TabsRootDataAttributes.d.ts +12 -0
  2377. package/tabs/root/TabsRootDataAttributes.js +19 -0
  2378. package/tabs/root/stateAttributesMapping.d.ts +3 -0
  2379. package/tabs/root/stateAttributesMapping.js +12 -0
  2380. package/tabs/tab/TabsTab.d.ts +60 -0
  2381. package/tabs/tab/TabsTab.js +177 -0
  2382. package/tabs/tab/TabsTabDataAttributes.d.ts +20 -0
  2383. package/tabs/tab/TabsTabDataAttributes.js +27 -0
  2384. package/toast/action/ToastAction.d.ts +20 -0
  2385. package/toast/action/ToastAction.js +54 -0
  2386. package/toast/action/ToastActionDataAttributes.d.ts +7 -0
  2387. package/toast/action/ToastActionDataAttributes.js +14 -0
  2388. package/toast/arrow/ToastArrow.d.ts +20 -0
  2389. package/toast/arrow/ToastArrow.js +46 -0
  2390. package/toast/arrow/ToastArrowDataAttributes.d.ts +16 -0
  2391. package/toast/arrow/ToastArrowDataAttributes.js +23 -0
  2392. package/toast/close/ToastClose.d.ts +20 -0
  2393. package/toast/close/ToastClose.js +64 -0
  2394. package/toast/close/ToastCloseDataAttributes.d.ts +7 -0
  2395. package/toast/close/ToastCloseDataAttributes.js +14 -0
  2396. package/toast/content/ToastContent.d.ts +24 -0
  2397. package/toast/content/ToastContent.js +65 -0
  2398. package/toast/content/ToastContentDataAttributes.d.ts +12 -0
  2399. package/toast/content/ToastContentDataAttributes.js +19 -0
  2400. package/toast/createToastManager.d.ts +16 -0
  2401. package/toast/createToastManager.js +73 -0
  2402. package/toast/description/ToastDescription.d.ts +21 -0
  2403. package/toast/description/ToastDescription.js +64 -0
  2404. package/toast/description/ToastDescriptionDataAttributes.d.ts +7 -0
  2405. package/toast/description/ToastDescriptionDataAttributes.js +14 -0
  2406. package/toast/index.d.ts +14 -0
  2407. package/toast/index.js +9 -0
  2408. package/toast/index.parts.d.ts +13 -0
  2409. package/toast/index.parts.js +96 -0
  2410. package/toast/portal/ToastPortal.d.ts +16 -0
  2411. package/toast/portal/ToastPortal.js +16 -0
  2412. package/toast/positioner/ToastPositioner.d.ts +36 -0
  2413. package/toast/positioner/ToastPositioner.js +115 -0
  2414. package/toast/positioner/ToastPositionerContext.d.ts +11 -0
  2415. package/toast/positioner/ToastPositionerContext.js +21 -0
  2416. package/toast/positioner/ToastPositionerCssVars.d.ts +27 -0
  2417. package/toast/positioner/ToastPositionerCssVars.js +34 -0
  2418. package/toast/positioner/ToastPositionerDataAttributes.d.ts +16 -0
  2419. package/toast/positioner/ToastPositionerDataAttributes.js +24 -0
  2420. package/toast/provider/ToastProvider.d.ts +30 -0
  2421. package/toast/provider/ToastProvider.js +301 -0
  2422. package/toast/provider/ToastProviderContext.d.ts +26 -0
  2423. package/toast/provider/ToastProviderContext.js +20 -0
  2424. package/toast/root/ToastRoot.d.ts +41 -0
  2425. package/toast/root/ToastRoot.js +525 -0
  2426. package/toast/root/ToastRootContext.d.ts +18 -0
  2427. package/toast/root/ToastRootContext.js +20 -0
  2428. package/toast/root/ToastRootCssVars.d.ts +27 -0
  2429. package/toast/root/ToastRootCssVars.js +34 -0
  2430. package/toast/root/ToastRootDataAttributes.d.ts +35 -0
  2431. package/toast/root/ToastRootDataAttributes.js +42 -0
  2432. package/toast/title/ToastTitle.d.ts +20 -0
  2433. package/toast/title/ToastTitle.js +63 -0
  2434. package/toast/title/ToastTitleDataAttributes.d.ts +7 -0
  2435. package/toast/title/ToastTitleDataAttributes.js +14 -0
  2436. package/toast/useToastManager.d.ts +97 -0
  2437. package/toast/useToastManager.js +35 -0
  2438. package/toast/utils/focusVisible.d.ts +1 -0
  2439. package/toast/utils/focusVisible.js +12 -0
  2440. package/toast/utils/resolvePromiseOptions.d.ts +2 -0
  2441. package/toast/utils/resolvePromiseOptions.js +20 -0
  2442. package/toast/utils/test-utils.d.ts +8 -0
  2443. package/toast/utils/test-utils.js +51 -0
  2444. package/toast/viewport/ToastViewport.d.ts +20 -0
  2445. package/toast/viewport/ToastViewport.js +271 -0
  2446. package/toast/viewport/ToastViewportContext.d.ts +6 -0
  2447. package/toast/viewport/ToastViewportContext.js +20 -0
  2448. package/toast/viewport/ToastViewportCssVars.d.ts +7 -0
  2449. package/toast/viewport/ToastViewportCssVars.js +14 -0
  2450. package/toast/viewport/ToastViewportDataAttributes.d.ts +7 -0
  2451. package/toast/viewport/ToastViewportDataAttributes.js +14 -0
  2452. package/toggle/Toggle.d.ts +56 -0
  2453. package/toggle/Toggle.js +103 -0
  2454. package/toggle/ToggleDataAttributes.d.ts +6 -0
  2455. package/toggle/ToggleDataAttributes.js +13 -0
  2456. package/toggle/index.d.ts +2 -0
  2457. package/toggle/index.js +12 -0
  2458. package/toggle-group/ToggleGroup.d.ts +65 -0
  2459. package/toggle-group/ToggleGroup.js +115 -0
  2460. package/toggle-group/ToggleGroupContext.d.ts +12 -0
  2461. package/toggle-group/ToggleGroupContext.js +21 -0
  2462. package/toggle-group/ToggleGroupDataAttributes.d.ts +15 -0
  2463. package/toggle-group/ToggleGroupDataAttributes.js +22 -0
  2464. package/toggle-group/index.d.ts +2 -0
  2465. package/toggle-group/index.js +12 -0
  2466. package/toolbar/button/ToolbarButton.d.ts +30 -0
  2467. package/toolbar/button/ToolbarButton.js +68 -0
  2468. package/toolbar/button/ToolbarButtonDataAttributes.d.ts +15 -0
  2469. package/toolbar/button/ToolbarButtonDataAttributes.js +22 -0
  2470. package/toolbar/group/ToolbarGroup.d.ts +20 -0
  2471. package/toolbar/group/ToolbarGroup.js +51 -0
  2472. package/toolbar/group/ToolbarGroupContext.d.ts +7 -0
  2473. package/toolbar/group/ToolbarGroupContext.js +20 -0
  2474. package/toolbar/group/ToolbarGroupDataAttributes.d.ts +11 -0
  2475. package/toolbar/group/ToolbarGroupDataAttributes.js +18 -0
  2476. package/toolbar/index.d.ts +8 -0
  2477. package/toolbar/index.js +9 -0
  2478. package/toolbar/index.parts.d.ts +7 -0
  2479. package/toolbar/index.parts.js +47 -0
  2480. package/toolbar/input/ToolbarInput.d.ts +31 -0
  2481. package/toolbar/input/ToolbarInput.js +79 -0
  2482. package/toolbar/input/ToolbarInputDataAttributes.d.ts +15 -0
  2483. package/toolbar/input/ToolbarInputDataAttributes.js +22 -0
  2484. package/toolbar/link/ToolbarLink.d.ts +18 -0
  2485. package/toolbar/link/ToolbarLink.js +47 -0
  2486. package/toolbar/link/ToolbarLinkDataAttributes.d.ts +7 -0
  2487. package/toolbar/link/ToolbarLinkDataAttributes.js +14 -0
  2488. package/toolbar/root/ToolbarRoot.d.ts +37 -0
  2489. package/toolbar/root/ToolbarRoot.js +66 -0
  2490. package/toolbar/root/ToolbarRootContext.d.ts +12 -0
  2491. package/toolbar/root/ToolbarRootContext.js +21 -0
  2492. package/toolbar/root/ToolbarRootDataAttributes.d.ts +11 -0
  2493. package/toolbar/root/ToolbarRootDataAttributes.js +18 -0
  2494. package/toolbar/separator/ToolbarSeparator.d.ts +14 -0
  2495. package/toolbar/separator/ToolbarSeparator.js +31 -0
  2496. package/toolbar/separator/ToolbarSeparatorDataAttributes.d.ts +7 -0
  2497. package/toolbar/separator/ToolbarSeparatorDataAttributes.js +14 -0
  2498. package/tooltip/arrow/TooltipArrow.d.ts +24 -0
  2499. package/tooltip/arrow/TooltipArrow.js +54 -0
  2500. package/tooltip/arrow/TooltipArrowDataAttributes.d.ts +29 -0
  2501. package/tooltip/arrow/TooltipArrowDataAttributes.js +37 -0
  2502. package/tooltip/index.d.ts +8 -0
  2503. package/tooltip/index.js +9 -0
  2504. package/tooltip/index.parts.d.ts +9 -0
  2505. package/tooltip/index.parts.js +74 -0
  2506. package/tooltip/popup/TooltipPopup.d.ts +26 -0
  2507. package/tooltip/popup/TooltipPopup.js +106 -0
  2508. package/tooltip/popup/TooltipPopupDataAttributes.d.ts +33 -0
  2509. package/tooltip/popup/TooltipPopupDataAttributes.js +41 -0
  2510. package/tooltip/portal/TooltipPortal.d.ts +23 -0
  2511. package/tooltip/portal/TooltipPortal.js +40 -0
  2512. package/tooltip/portal/TooltipPortalContext.d.ts +3 -0
  2513. package/tooltip/portal/TooltipPortalContext.js +20 -0
  2514. package/tooltip/positioner/TooltipPositioner.d.ts +35 -0
  2515. package/tooltip/positioner/TooltipPositioner.js +109 -0
  2516. package/tooltip/positioner/TooltipPositionerContext.d.ts +12 -0
  2517. package/tooltip/positioner/TooltipPositionerContext.js +21 -0
  2518. package/tooltip/positioner/TooltipPositionerCssVars.d.ts +27 -0
  2519. package/tooltip/positioner/TooltipPositionerCssVars.js +34 -0
  2520. package/tooltip/positioner/TooltipPositionerDataAttributes.d.ts +24 -0
  2521. package/tooltip/positioner/TooltipPositionerDataAttributes.js +32 -0
  2522. package/tooltip/provider/TooltipProvider.d.ts +28 -0
  2523. package/tooltip/provider/TooltipProvider.js +42 -0
  2524. package/tooltip/provider/TooltipProviderContext.d.ts +7 -0
  2525. package/tooltip/provider/TooltipProviderContext.js +14 -0
  2526. package/tooltip/root/TooltipRoot.d.ts +94 -0
  2527. package/tooltip/root/TooltipRoot.js +143 -0
  2528. package/tooltip/root/TooltipRootContext.d.ts +6 -0
  2529. package/tooltip/root/TooltipRootContext.js +21 -0
  2530. package/tooltip/store/TooltipHandle.d.ts +33 -0
  2531. package/tooltip/store/TooltipHandle.js +63 -0
  2532. package/tooltip/store/TooltipStore.d.ts +46 -0
  2533. package/tooltip/store/TooltipStore.js +111 -0
  2534. package/tooltip/trigger/TooltipTrigger.d.ts +43 -0
  2535. package/tooltip/trigger/TooltipTrigger.js +115 -0
  2536. package/tooltip/trigger/TooltipTriggerDataAttributes.d.ts +6 -0
  2537. package/tooltip/trigger/TooltipTriggerDataAttributes.js +14 -0
  2538. package/tooltip/utils/constants.d.ts +1 -0
  2539. package/tooltip/utils/constants.js +7 -0
  2540. package/tooltip/viewport/TooltipViewport.d.ts +22 -0
  2541. package/tooltip/viewport/TooltipViewport.js +227 -0
  2542. package/tooltip/viewport/TooltipViewportCssVars.d.ts +14 -0
  2543. package/tooltip/viewport/TooltipViewportCssVars.js +21 -0
  2544. package/tooltip/viewport/TooltipViewportDataAttributes.d.ts +26 -0
  2545. package/tooltip/viewport/TooltipViewportDataAttributes.js +33 -0
  2546. package/types/index.d.ts +1 -0
  2547. package/types/index.js +5 -0
  2548. package/unstable-use-media-query/index.d.ts +31 -0
  2549. package/unstable-use-media-query/index.js +57 -0
  2550. package/use-button/index.d.ts +1 -0
  2551. package/use-button/index.js +12 -0
  2552. package/use-button/useButton.d.ts +37 -0
  2553. package/use-button/useButton.js +153 -0
  2554. package/use-render/index.d.ts +1 -0
  2555. package/use-render/index.js +16 -0
  2556. package/use-render/useRender.d.ts +68 -0
  2557. package/use-render/useRender.js +15 -0
  2558. package/utils/FloatingPortalLite.d.ts +12 -0
  2559. package/utils/FloatingPortalLite.js +42 -0
  2560. package/utils/FocusGuard.d.ts +5 -0
  2561. package/utils/FocusGuard.js +41 -0
  2562. package/utils/InternalBackdrop.d.ts +15 -0
  2563. package/utils/InternalBackdrop.js +51 -0
  2564. package/utils/adaptiveOriginMiddleware.d.ts +6 -0
  2565. package/utils/adaptiveOriginMiddleware.js +80 -0
  2566. package/utils/areArraysEqual.d.ts +3 -0
  2567. package/utils/areArraysEqual.js +9 -0
  2568. package/utils/clamp.d.ts +1 -0
  2569. package/utils/clamp.js +9 -0
  2570. package/utils/collapsibleOpenStateMapping.d.ts +11 -0
  2571. package/utils/collapsibleOpenStateMapping.js +32 -0
  2572. package/utils/constants.d.ts +30 -0
  2573. package/utils/constants.js +57 -0
  2574. package/utils/createBaseUIEventDetails.d.ts +92 -0
  2575. package/utils/createBaseUIEventDetails.js +58 -0
  2576. package/utils/formatNumber.d.ts +4 -0
  2577. package/utils/formatNumber.js +35 -0
  2578. package/utils/getCssDimensions.d.ts +2 -0
  2579. package/utils/getCssDimensions.js +27 -0
  2580. package/utils/getDisabledMountTransitionStyles.d.ts +4 -0
  2581. package/utils/getDisabledMountTransitionStyles.js +10 -0
  2582. package/utils/getPseudoElementBounds.d.ts +8 -0
  2583. package/utils/getPseudoElementBounds.js +40 -0
  2584. package/utils/getStateAttributesProps.d.ts +2 -0
  2585. package/utils/getStateAttributesProps.js +27 -0
  2586. package/utils/hideMiddleware.d.ts +2 -0
  2587. package/utils/hideMiddleware.js +25 -0
  2588. package/utils/interactions/useFocusWithDelay.d.ts +9 -0
  2589. package/utils/interactions/useFocusWithDelay.js +87 -0
  2590. package/utils/itemEquality.d.ts +6 -0
  2591. package/utils/itemEquality.js +43 -0
  2592. package/utils/noop.d.ts +1 -0
  2593. package/utils/noop.js +12 -0
  2594. package/utils/popupStateMapping.d.ts +53 -0
  2595. package/utils/popupStateMapping.js +87 -0
  2596. package/utils/popups/index.d.ts +3 -0
  2597. package/utils/popups/index.js +38 -0
  2598. package/utils/popups/popupStoreUtils.d.ts +50 -0
  2599. package/utils/popups/popupStoreUtils.js +150 -0
  2600. package/utils/popups/popupTriggerMap.d.ts +30 -0
  2601. package/utils/popups/popupTriggerMap.js +82 -0
  2602. package/utils/popups/store.d.ts +106 -0
  2603. package/utils/popups/store.js +57 -0
  2604. package/utils/reason-parts.d.ts +30 -0
  2605. package/utils/reason-parts.js +36 -0
  2606. package/utils/reasons.d.ts +4 -0
  2607. package/utils/reasons.js +9 -0
  2608. package/utils/resolveClassName.d.ts +8 -0
  2609. package/utils/resolveClassName.js +16 -0
  2610. package/utils/resolveRef.d.ts +5 -0
  2611. package/utils/resolveRef.js +16 -0
  2612. package/utils/resolveStyle.d.ts +8 -0
  2613. package/utils/resolveStyle.js +16 -0
  2614. package/utils/resolveValueLabel.d.ts +17 -0
  2615. package/utils/resolveValueLabel.js +91 -0
  2616. package/utils/serializeValue.d.ts +1 -0
  2617. package/utils/serializeValue.js +19 -0
  2618. package/utils/stateAttributesMapping.d.ts +14 -0
  2619. package/utils/stateAttributesMapping.js +34 -0
  2620. package/utils/styles.d.ts +4 -0
  2621. package/utils/styles.js +16 -0
  2622. package/utils/types.d.ts +76 -0
  2623. package/utils/types.js +5 -0
  2624. package/utils/useAnchorPositioning.d.ts +204 -0
  2625. package/utils/useAnchorPositioning.js +391 -0
  2626. package/utils/useAnimationsFinished.d.ts +10 -0
  2627. package/utils/useAnimationsFinished.js +74 -0
  2628. package/utils/useBaseUiId.d.ts +6 -0
  2629. package/utils/useBaseUiId.js +16 -0
  2630. package/utils/useFocusableWhenDisabled.d.ts +40 -0
  2631. package/utils/useFocusableWhenDisabled.js +49 -0
  2632. package/utils/useMixedToggleClickHander.d.ts +24 -0
  2633. package/utils/useMixedToggleClickHander.js +46 -0
  2634. package/utils/useOpenChangeComplete.d.ts +27 -0
  2635. package/utils/useOpenChangeComplete.js +36 -0
  2636. package/utils/useOpenInteractionType.d.ts +15 -0
  2637. package/utils/useOpenInteractionType.js +39 -0
  2638. package/utils/usePopupAutoResize.d.ts +36 -0
  2639. package/utils/usePopupAutoResize.js +151 -0
  2640. package/utils/useRenderElement.d.ts +62 -0
  2641. package/utils/useRenderElement.js +118 -0
  2642. package/utils/useTransitionStatus.d.ts +12 -0
  2643. package/utils/useTransitionStatus.js +73 -0
  2644. package/utils/useValueChanged.d.ts +1 -0
  2645. package/utils/useValueChanged.js +23 -0
  2646. package/utils/valueToPercent.d.ts +1 -0
  2647. package/utils/valueToPercent.js +9 -0
package/CHANGELOG.md ADDED
@@ -0,0 +1,1708 @@
1
+ # Versions
2
+
3
+ ## v1.0.0-rc.1
4
+
5
+ _Dec 11, 2025_
6
+
7
+ ### General Changes
8
+
9
+ - **Breaking change:** Rename packages to use the `@base-ui` org.<br />
10
+ The package name has changed from `@base-ui-components/react` to `@base-ui/react`.
11
+ (#3462) by @mnajdova
12
+
13
+ ### Combobox
14
+
15
+ - Respect `itemToStringValue` for `onFormSubmit` (#3441) by @atomiks
16
+ - Add `null` as an option for the value prop (#3488) by @mnajdova
17
+
18
+ ### Menu
19
+
20
+ - Fix submenu opens with 0 delay (#3459) by @atomiks
21
+ - Fix focus not returning to trigger on <kbd>Esc</kbd> while pointer rests on popup (#3482) by @atomiks
22
+ - Fix always `null` open method (#3486) by @atomiks
23
+ - Allow side axis fallback for submenus by default (#3470) by @atomiks
24
+
25
+ ### Navigation Menu
26
+
27
+ - Fix mount transitions on `Positioner` in Firefox (#3424) by @atomiks
28
+
29
+ ### Number Field
30
+
31
+ - Fix multiple scrub area support (#3471) by @atomiks
32
+
33
+ ### Popover
34
+
35
+ - Fix mount transitions on `Positioner` in Firefox (#3424) by @atomiks
36
+ - Fix skipped viewport transitions (#3453) by @atomiks
37
+
38
+ ### Select
39
+
40
+ - Respect `itemToStringValue` for `onFormSubmit` (#3441) by @atomiks
41
+ - Add `null` as an option for the value prop (#3488) by @mnajdova
42
+
43
+ ### Tabs
44
+
45
+ - Fix indicator positioning in transformed containers (#3439) by @atomiks
46
+ - Do not initially select a disabled tab (#3475) by @michaldudak
47
+
48
+ ### Toast
49
+
50
+ - Fix `flushSync` dev error when toast is added (#3443) by @atomiks
51
+ - Fix `<Toast.Close>;` emitting `aria-hidden` warning on click (#3469) by @atomiks
52
+
53
+ ### Toggle Group
54
+
55
+ - More permissive towards falsy toggle values (#3477) by @mj12albert
56
+
57
+ ### Tooltip
58
+
59
+ - Fix mount transitions on `Positioner` in Firefox (#3424) by @atomiks
60
+ - Fix ignored "modal" setting in Popovers experiment (#3474) by @michaldudak
61
+ - Fix shared tooltip closing with trigger gaps (#3452) by @atomiks
62
+ - Fix skipped viewport transitions (#3453) by @atomiks
63
+
64
+ All contributors of this release in alphabetical order: @atomiks, @LukasTy, @michaldudak, @mj12albert, @mnajdova, @oliviertassinari, @pondorasti, @romgrk, @ZeeshanTamboli
65
+
66
+ ## v1.0.0-rc.0
67
+
68
+ _Dec 4, 2025_
69
+
70
+ ### General changes
71
+
72
+ - Fix missing `'use client'` directives (#3408) by @atomiks
73
+
74
+ ### Autocomplete
75
+
76
+ - Fix `keepHighlight` focus sync (#3399) by @atomiks
77
+
78
+ ### Checkbox
79
+
80
+ - **Breaking change:** Match native unchecked state in form submission.<br />
81
+ The Checkbox will not submit the `"off"` value with a form when unchecked anymore, unless the new `uncheckedValue` prop is set.
82
+ (#3406) by @atomiks
83
+
84
+ ### Collapsible
85
+
86
+ - Remove `render={null}` (#3407) by @mj12albert
87
+
88
+ ### Combobox
89
+
90
+ - **Breaking change:** Removed the `keepHighlight` prop (#3377) by @atomiks
91
+
92
+ ### Dialog
93
+
94
+ - Close when pressing focusable element outside (#3380) by @atomiks
95
+ - Fix closing after pointer lock exit in Firefox (#3379) by @atomiks
96
+
97
+ ### Menu
98
+
99
+ - Add `highlightItemOnHover` prop (#3377) by @atomiks
100
+ - Do not import client components from MenuStore (#3409) by @michaldudak
101
+
102
+ ### Number Field
103
+
104
+ - Ensure hidden input participates in form validation (#3374) by @atomiks
105
+ - Improve symbol replacement logic (#3376) by @atomiks
106
+ - Fix fractional step snapping (#3375) by @atomiks
107
+ - Fix parsing numbers with Swiss locale (#3361) by @michaldudak
108
+ - Fix pointer lock release when soft clicking in Firefox (#3378) by @atomiks
109
+
110
+ ### Popover
111
+
112
+ - Close when pressing focusable element outside (#3380) by @atomiks
113
+ - Fix modal backdrop on touch (#3383) by @atomiks
114
+ - Fix popover glitching when flipped (#3364) by @michaldudak
115
+
116
+ ### Select
117
+
118
+ - Add `highlightItemOnHover` prop (#3377) by @atomiks
119
+
120
+ ### Switch
121
+
122
+ - **Breaking change:** Match native off state in form submission.<br />
123
+ The Switch will not submit the `"off"` value with a form when unchecked anymore, unless the new `uncheckedValue` prop is set.
124
+ (#3406) by @atomiks
125
+
126
+ ### Tabs
127
+
128
+ - **Breaking change:** Fix Panel `keepMounted` behavior.<br />
129
+ The `value` prop is now required on `<Tabs.Tab>` and `<Tabs.Panel>` parts.
130
+ (#3372) by @atomiks
131
+
132
+ ### Toast
133
+
134
+ - Recalculate content height when layout size is fixed (#3359) by @atomiks
135
+ - Fix multiple swipe directions on same axis (#3392) by @mj12albert
136
+
137
+ ### Tooltip
138
+
139
+ - Improve contained triggers performance (#3385) by @michaldudak
140
+
141
+ All contributors of this release in alphabetical order: @atomiks, @michaldudak, @mj12albert, @oliviertassinari, @pondorasti, @romgrk
142
+
143
+ ## v1.0.0-beta.7
144
+
145
+ _Nov 27, 2025_
146
+
147
+ ### General changes
148
+
149
+ - Fix error about `props.ref` access in React &lt;=18 (#3257) by @atomiks
150
+ - Prefer non-adaptive anchoring position in `<Positioner>` components and fix `autoFocus` scroll jumps (#3250) by @atomiks
151
+ - Make popups' `data-anchor-hidden` state attribute check for anchor presence in layout (#3267) by @atomiks
152
+ - Prevent popups from sticking after hover when pressing `&lt;a&gt;` tags inside them (#3318) by @atomiks
153
+ - Improve performance when detached triggers are used (#3277)
154
+ - Fix iOS VoiceOver voice control accessibility in non-modal popups (#3340)
155
+
156
+ ### Alert Dialog
157
+
158
+ - Fix trigger registration loop (#3249) by @atomiks
159
+ - Fix focus restoration when focused element is hidden with CSS (#3313)
160
+
161
+ ### Checkbox Group
162
+
163
+ - Fix `aria-describedby` on checkbox group (#3269) by @mj12albert
164
+
165
+ ### Combobox
166
+
167
+ - Revert overload types to ensure typed wrappers work correctly (#3254) by @atomiks
168
+ - Fix ignored `filteredItems` instances (#3272) by @atomiks
169
+ - Fix loop when passing `undefined` to `items` prop (#3348)
170
+
171
+ ### Context Menu
172
+
173
+ - Block mouseup at initial cursor point (#3274) by @atomiks
174
+
175
+ ### Dialog
176
+
177
+ - Fix trigger registration loop (#3249) by @atomiks
178
+ - Fix focus restoration when focused element is hidden with CSS (#3313)
179
+
180
+ ### Form
181
+
182
+ - Fix cast `ref` type (#3324) by @mj12albert
183
+
184
+ ### Menu
185
+
186
+ - Fix trigger registration loop (#3249) by @atomiks
187
+ - Do not pass `key` to the rendered element (#3255) by @michaldudak
188
+ - Fix nested dialog from closing on <kbd>Shift+Tab</kbd> (#3346)
189
+
190
+ ### Navigation Menu
191
+
192
+ - Fix Safari 18 issue where `<Positioner>` width may be set to 0 on hover (#3309) by @EmilNordling
193
+ - Ensure submenu triggers participate in composite list (#3344) by @atomiks
194
+
195
+ ### Number Field
196
+
197
+ - Fix literal space handling with symbols (#3334) by @atomiks
198
+
199
+ ### Popover
200
+
201
+ - Fix trigger registration loop (#3249) by @atomiks
202
+ - Do not pass `key` to the rendered element (#3255) by @michaldudak
203
+ - Fix focus restoration when focused element is hidden with CSS (#3313)
204
+
205
+ ### Select
206
+
207
+ - Revert overload types to ensure typed wrappers work correctly (#3254) by @atomiks
208
+
209
+ ### Slider
210
+
211
+ - Fix extra `onValueCommitted` calls (#3312) by @mj12albert
212
+ - Fix cast `ref` type (#3324) by @mj12albert
213
+
214
+ ### Tooltip
215
+
216
+ - Fix trigger registration loop (#3249) by @atomiks
217
+
218
+ All contributors of this release in alphabetical order: @atomiks, @brijeshb42, @Copilot, @EmilNordling, @michaldudak, @mj12albert, @oliviertassinari, @ZeeshanTamboli
219
+
220
+ ## v1.0.0-beta.6
221
+
222
+ _Nov 17, 2025_
223
+
224
+ This is a hotfix release with the following changes:
225
+
226
+ - Fix for rendering of Alert Dialog, Dialog, Menu, Popover, and Tooltip in React Server Components (#3241) by @michaldudak
227
+ - Fix of the types of the refs in the Checkbox, Switch and Radio components (#3246) by @mnajdova
228
+ - Fix of the value type error with mergeProps (#3247) by @atomiks
229
+
230
+ ## v1.0.0-beta.5
231
+
232
+ _Nov 17, 2025_
233
+
234
+ ### General changes
235
+
236
+ - **Breaking change:** Replace `trackAnchor` with `disableAnchorTracking`.<br />
237
+ If you were using `trackAnchor={false}`, be sure to update your usage to `disableAnchorTracking` instead.
238
+ (#3188) by @mnajdova
239
+ - **Breaking change:** Rename `loop` to `loopFocus` (#3186) by @mnajdova
240
+ - Fix type portability (#2912) by @atomiks
241
+ - Accept a function for the `style` prop (#3038) by @mnajdova
242
+ - Create portal elements inside React (#2889) by @atomiks
243
+ - Avoid applying `hidden` attribute to indicator elements when they specify `keepMounted` and are invisible (#3228) by @atomiks
244
+ - Fix crash in Next.js 16 when accessing `render.props.ref` (#3231) by @atomiks
245
+
246
+ ### Accordion
247
+
248
+ - **Breaking change:** Change `multiple` prop to be false by default and add a demo (#3141) by @mnajdova
249
+ - Fix flaky exit transition (#3101) by @atomiks
250
+
251
+ ### Alert Dialog
252
+
253
+ - Fix `initialFocus` as function being called on close (#2949) by @atomiks
254
+ - Support detached triggers (#2974) by @michaldudak
255
+ - Place `overflow: hidden` on `<body>` for overlay scrollbars by default. Avoids sticky elements shifting if `<body>` has an `overflow` style specified. (#3083) by @atomiks
256
+ - Add `<AlertDialog.Viewport>` part (#2808) by @atomiks
257
+
258
+ ### Autocomplete
259
+
260
+ - **Breaking change:** Refactor `alwaysSubmitOnEnter` to `submitOnItemClick` prop.<br />
261
+ If you were using `alwaysSubmitOnEnter`, be sure to update your usage to `submitOnItemClick` instead.
262
+ (#3018) by @atomiks
263
+ - Prevent blocking filtering while composing text on Android (#2944) by @atomiks
264
+ - Add empty state to `List.State` (#2934) by @atomiks
265
+ - Fix `initialFocus` as function being called on close (#2949) by @atomiks
266
+ - Add `role="combobox"` to `<Autocomplete.Trigger>` if `<Autocomplete.Input>` is inside Popup (#2973) by @atomiks
267
+ - Fix stale `onItemHighlighted` data when filtering with `autoHighlight` (#2829) by @atomiks
268
+ - Add empty and side styling attributes on `<Autocomplete.Input>` (#2926) by @atomiks
269
+ - Fix `<Autocomplete.Value>` component return type for React 17 (#3050) by @atomiks
270
+ - Support `autoHighlight: "always"`, and add `keepHighlight`, `highlightItemOnHover` props (#2976) by @atomiks
271
+ - Keep focus on input when pressing list element (#3092) by @atomiks
272
+ - Allow <kbd>Esc</kbd> to bubble if `<Autocomplete.Empty>` is not used (#2935) by @atomiks
273
+ - Add `dialog` role to popup when input is inside (#3213) by @atomiks
274
+
275
+ ### Button
276
+
277
+ - New `<Button>` component (#2363) by @atomiks
278
+
279
+ ### Checkbox
280
+
281
+ - **Breaking change:** Render root as `<span>` instead of `<button>`
282
+ (#3205) by @mj12albert
283
+
284
+ ### Collapsible
285
+
286
+ - Fix `starting-style` state (#2985) by @atomiks
287
+
288
+ ### Combobox
289
+
290
+ - Take into account `isItemEqualToValue` when selecting an option in multiple mode (#2893) by @epr3
291
+ - Move `CompositeList` to `List` component to make `Input` work with composites (#2883) by @chuganzy
292
+ - Fix `onValueChange` type inference when `value` is unspecified (#2897) by @atomiks
293
+ - Fix `required` form submission with multiple values (#2925) by @atomiks
294
+ - Fix <kbd>Home</kbd>/<kbd>End</kbd> Input scroll in Chrome/Safari (#2928) by @atomiks
295
+ - Prevent blocking filtering while composing text on Android (#2944) by @atomiks
296
+ - Add empty state to `List.State` (#2934) by @atomiks
297
+ - Fix `initialFocus` as function being called on close (#2949) by @atomiks
298
+ - Add `role="combobox"` to `<Combobox.Trigger>` if `<Combobox.Input>` is inside Popup (#2973) by @atomiks
299
+ - Fix `Field` control ref when input is inside popup (#2971) by @atomiks
300
+ - Fix stale `onItemHighlighted` data when filtering with `autoHighlight` (#2829) by @atomiks
301
+ - Add empty and side styling attributes on `<Combobox.Input>` (#2926) by @atomiks
302
+ - Fix `<Combobox.Value>` component return type for React 17 (#3050) by @atomiks
303
+ - Fix input value derivation on `value` and `items` prop updates (#3067) by @atomiks
304
+ - Support `autoHighlight: "always"`, and add `keepHighlight`, `highlightItemOnHover` props (#2976) by @atomiks
305
+ - Keep focus on input when pressing list element (#3092) by @atomiks
306
+ - Fix support of dialog + combobox pattern (#3049) by @atomiks
307
+ - Support drag-to-select (#3167) by @atomiks
308
+ - Allow <kbd>Esc</kbd> to bubble if `<Combobox.Empty>` is not used (#2935) by @atomiks
309
+ - Fix stuck filtering with differing stringifiers (#3201) by @atomiks
310
+ - Add `dialog` role to popup when input is inside (#3213) by @atomiks
311
+
312
+ ### Context Menu
313
+
314
+ - Add `open` state to `<ContextMenu.Trigger>` (#3195) by @atomiks
315
+ - Fix ignored `anchor` prop on `<ContextMenu.Positioner>` (#3202) by @atomiks
316
+
317
+ ### Dialog
318
+
319
+ - **Breaking change:** Replace `dismissible` with `disablePointerDismissal`.<br />
320
+ If you were using `dismissible={false}`, replace it with `disablePointerDismissal`.
321
+ (#3190) by @mnajdova
322
+ - Fix `initialFocus` as function being called on close (#2949) by @atomiks
323
+ - Support detached triggers (#2974) by @michaldudak
324
+ - Place `overflow: hidden` on `<body>` for overlay scrollbars by default. Avoids sticky elements shifting if `<body>` has an `overflow` style specified. (#3083) by @atomiks
325
+ - Add `<Dialog.Viewport>` part and scrollable demos on docs (#2808) by @atomiks
326
+
327
+ ### Field
328
+
329
+ - **Breaking change:** Add `onSubmit` validation mode and make it the default over `onBlur`.<br />
330
+ Fields that use non-`required` attribute validation no longer validate the control on blur. Instead, validation first occurs `onSubmit`, and afterwards revalidation occurs `onChange`.
331
+ (#3013) by @mj12albert
332
+ - Add `dirty` and `touched` props (#2950) by @mj12albert
333
+ - New `<Field.Item>` part (#2810) by @mj12albert
334
+ - Fix `validationMode="onChange"` not clearing custom error state (#3048) by @mj12albert
335
+ - Fix external `onChange` validation mode errors (#3137) by @atomiks
336
+
337
+ ### Form
338
+
339
+ - **Breaking change:** The `onClearErrors` prop has been removed.<br />
340
+ Errors from the `errors` prop are always cleared when the value changes.
341
+ (#3136) by @mj12albert
342
+ - Add `onSubmit` validation mode.<br />
343
+ Additionally, `validationMode` can be set on `<Form>`.
344
+ (#3013) by @mj12albert
345
+ - Add `onFormSubmit` callback (#3131) by @mj12albert
346
+
347
+ ### Menu
348
+
349
+ - **Breaking change:** Support detached triggers.<br />
350
+ `openOnHover`, `delay`, and `closeDelay` props have been moved from `<Menu.Root>` to `<Menu.Trigger>`.<br />
351
+ Additionally, menus now must have at least one `<Menu.Trigger>` element.
352
+ (#3170) by @michaldudak
353
+ - Ignore disabled item on initial focusing (#2604) by @mnajdova
354
+ - Fix stealing focus from dialogs on close (#2920) by @atomiks
355
+ - Place `overflow: hidden` on `<body>` for overlay scrollbars by default. Avoids sticky elements shifting if `<body>` has an `overflow` style specified. (#3083) by @atomiks
356
+
357
+ ### Navigation Menu
358
+
359
+ - Fix nested popup dismiss actions (#2978) by @atomiks
360
+ - Fix error on React 17 (#3204) by @atomiks
361
+
362
+ ### Number Field
363
+
364
+ - Granular change reasons (#3132) by @atomiks
365
+
366
+ ### Popover
367
+
368
+ - **Breaking change:** Support detached triggers and multiple triggers per popover.<br />
369
+ `openOnHover`, `delay`, and `closeDelay` props have been moved from `<Popover.Root>` to `<Popover.Trigger>`.
370
+ (#2336) by @michaldudak
371
+ - Fix `initialFocus` as function being called on close (#2949) by @atomiks
372
+ - Fix swiping or scrolling on nested popup dismissing popover on touch (#3011) by @atomiks
373
+ - Place `overflow: hidden` on `<body>` for overlay scrollbars by default. Avoids sticky elements shifting if `<body>` has an `overflow` style specified. (#3083) by @atomiks
374
+
375
+ ### Preview Card
376
+
377
+ - **Breaking change:** Move delay props to trigger.<br />
378
+ If you were using `delay` or `closeDelay` props, be sure to move them to from `<PreviewCard.Root>` to the `<PreviewCard.Trigger>` component.
379
+ (#3182) by @atomiks
380
+
381
+ ### Radio Group
382
+
383
+ - **Breaking change:** Render root as `<span>` instead of `<button>`
384
+ (#3205) by @mj12albert
385
+
386
+ ### Scroll Area
387
+
388
+ - **Breaking change:** Improve CSS vars performance.<br />
389
+ The CSS variables are now on the `<ScrollArea.Viewport>` part, not `<ScrollArea.Root>`, and inheritance is disabled for all child elements (or pseudo-elements). Children must manually opt in using `--scroll-area-[variable-name]: inherit`.
390
+ (#3156) by @atomiks
391
+
392
+ ### Select
393
+
394
+ - **Breaking change:** Make the trigger native button by default.<br />
395
+ The trigger now renders a `<button>` element, be sure to adjust your code if necessary.
396
+ (#3177) by @mnajdova
397
+ - Add `open` state type on `Select.Icon` interface (#2919) by @komkanit
398
+ - Fix `onValueChange` type inference when `value` is unspecified (#2897) by @atomiks
399
+ - Fix `required` form submission with multiple values (#2925) by @atomiks
400
+ - Avoid re-rendering on popup height expansion (#2972) by @atomiks
401
+ - Place `overflow: hidden` on `<body>` for overlay scrollbars by default. Avoids sticky elements shifting if `<body>` has an `overflow` style specified. (#3083) by @atomiks
402
+ - Add `data-placeholder` attribute (#2737) by @seongminn
403
+
404
+ ### Slider
405
+
406
+ - **Breaking change:** Add `thumbCollisionBehavior` prop.<br />
407
+ In range sliders, moving a thumb with a pointer will now push other thumbs it collides with to avoid blocking drag movements by default (the default value is `push`).<br />
408
+ The value `swap` was also added, which allows thumbs to be dragged past each other when they collide.<br />
409
+ Lastly, the value `none` is the same as the previous behavior, where thumbs can't be dragged past one another.<br />
410
+ Keyboard interactions always use `none` behavior.
411
+ (#2856) by @atomiks
412
+ - Granular change reasons (#3132) by @atomiks
413
+
414
+ ### Switch
415
+
416
+ - **Breaking change:** Render root as `<span>` instead of `<button>`
417
+ (#3205) by @mj12albert
418
+
419
+ ### Tabs
420
+
421
+ - **Breaking change:** Fix selected/active state naming consistency.<br />
422
+ - Renamed `[data-selected]` to `[data-active]` in `<Tabs.Tab>`
423
+ - Removed `[data-highlighted]` (`:focus-visible` was already the recommendation in styles)
424
+ - `selectedTabPosition`/`selectedTabSize` are now `activeTabPosition`/`activeTabSize` in `Tabs.Indicator.State`
425
+ (#3024) by @atomiks
426
+ - **Breaking change:** Change `activateOnFocus` to false.<br />
427
+ If you need your Tabs to activate on focus, be sure to add `activateOnFocus` prop.
428
+ (#3176) by @mnajdova
429
+ - Fix Next.js 16 error from `Math.random` id generation (#3051) by @atomiks
430
+ - Fix indicator sizing and offsets (#3214) by @atomiks
431
+
432
+ ### Toast
433
+
434
+ - Allow `React.ReactNode` for `title`/`description` properties (#2929) by @atomiks
435
+ - Add ability to anchor to an element (#3096) by @atomiks
436
+
437
+ ### Toolbar
438
+
439
+ - **Breaking change:** The `cols` prop has been removed.<br />
440
+ This prop was not supposed to be exposed.
441
+ (#3133) by @mj12albert
442
+
443
+ ### Tooltip
444
+
445
+ - **Breaking change:** Support detached triggers.<br />
446
+ `delay` and `closeDelay` props have been moved from `<Tooltip.Root>` to `<Tooltip.Trigger>`.
447
+ (#3071) by @michaldudak
448
+ - **Breaking change:** Change `hoverable` to `disableHoverablePopup`.<br />
449
+ In case you need to disable the hoverable popup behavior, be sure to add the `disableHoverablePopup` prop.
450
+ (#3178) by @mnajdova
451
+ - Fix `data-instant` ending transition of same tooltip (#2962) by @atomiks
452
+
453
+ All contributors of this release in alphabetical order: @atomiks, @brianle1301, @brijeshb42, @chuganzy, @dav-is, @epr3, @fredericoo, @Janpot, @komkanit, @LukasTy, @michaldudak, @mj12albert, @mnajdova, @oliviertassinari, @romgrk, @seongminn, @sukvvon, @ZeeshanTamboli
454
+
455
+ ## v1.0.0-beta.4
456
+
457
+ _Oct 1, 2025_
458
+
459
+ ### General changes
460
+
461
+ - **Breaking change:** Generic event details.
462
+ The main exported type is now `BaseUIChangeEventDetails` (with a paired `BaseUIGenericEventDetails`), not `BaseUIEventDetails`.
463
+ (#2796) by @atomiks
464
+ - Update `disabled` prop of buttons when ref changes (#2756) by @chuganzy
465
+ - Refine event details (#2698) by @atomiks
466
+
467
+ ### Accordion
468
+
469
+ - **Breaking change:** Use `useId` instead of composite index as fallback value.
470
+ Accordion items must have an explicit `value` set in order to be initially open. Inferring the value by their DOM index is no longer supported.
471
+ (#2664) by @mj12albert
472
+ - **Breaking change:** Rename `openMultiple` prop to `multiple`
473
+ (#2764) by @LukasTy
474
+
475
+ ### Autocomplete
476
+
477
+ - **Breaking change:** Rename `cols` to `grid` prop.
478
+ Specify `grid={true}` instead of `cols={number}` - the columns are automatically inferred from `Autocomplete.Row`
479
+ (#2683) by @atomiks
480
+ - Fix duplicate `onOpenChange` calls and pass correct DOM `event`.
481
+ (#2682) by @atomiks
482
+ - Fix controlled input value updates (#2707) by @atomiks
483
+ - Fix input focus on close when clicking trigger (#2723) by @atomiks
484
+ - Add `alwaysSubmitOnEnter` prop and allow form submission on <kbd>Enter</kbd> if no item is highlighted by default (#2700) by @atomiks
485
+ - Use `ReadonlyArray` type for `items` (#2819) by @atomiks
486
+
487
+ ### Collapsible
488
+
489
+ - Fix CollapsiblePanel type to use its own state (#2697) by @chuganzy
490
+ - Respect user's CSS `display` property on panel (#2772) by @mj12albert
491
+
492
+ ### Combobox
493
+
494
+ - **Breaking change**: `onItemHighlighted` now has a `reason` property instead of `type` to be consistent with the `eventDetails` API. (#2796) by @atomiks
495
+ - **Breaking change:** Rename `cols` to `grid` prop.
496
+ Specify `grid={true}` instead of `cols={number}` - the columns are automatically inferred from `Combobox.Row`
497
+ (#2683) by @atomiks
498
+ - Fix duplicate `onOpenChange` calls and pass correct DOM `event`.
499
+ (#2682) by @atomiks
500
+ - Fix initial closed typeahead (#2665) by @atomiks
501
+ - Support `autoHighlight` prop (#2668) by @atomiks
502
+ - Set default input value based on `value` prop (#2680) by @atomiks
503
+ - Fix controlled input value updates (#2707) by @atomiks
504
+ - Fix input focus on close when clicking trigger. Fixes a jump to the bottom of the page in Safari (#2723) by @atomiks
505
+ - Fix unexpected close with multiple selection and input inside popup (#2771) by @atomiks
506
+ - Allow form submission on <kbd>Enter</kbd> if no item is highlighted by default (#2700) by @atomiks
507
+ - Avoid refiltering with ending transition in multiple selection mode (#2681) by @atomiks
508
+ - Support object values with `isItemEqualToValue` prop (#2704) by @atomiks
509
+ - Use `ReadonlyArray` type for `items` (#2819) by @atomiks
510
+ - Fix misleading `item-press` reason in `onInputValueChange` (#2830) by @atomiks
511
+ - Clear single-select value on input clear (#2860) by @atomiks
512
+ - Fix `focusout` of input not closing popup under certain conditions (#2864)
513
+
514
+ ### Context Menu
515
+
516
+ - Ensure submenus close when parents close (#2768) by @atomiks
517
+ - Fix `onClick` firing twice on first click of item (#2849) by @atomiks
518
+
519
+ ### Menu
520
+
521
+ - Ensure submenus close when parents close (#2768) by @atomiks
522
+ - Allow non-nested portals across differing popup trees (#2818) by @atomiks
523
+
524
+ ### Menubar
525
+
526
+ - Fix Menubar not disabling child Menus (#2736) by @aarongarciah
527
+ - Ensure submenus close when parents close (#2768) by @atomiks
528
+ - Fix `CompositeList` not updating item order on reordering (#2675) by @chuganzy
529
+
530
+ ### Navigation Menu
531
+
532
+ - Make link close on click configurable (#2740) by @atomiks
533
+ - Fix focus returning to trigger without animations (#2779) by @atomiks
534
+ - Fix `CompositeList` not updating item order on reordering (#2675) by @chuganzy
535
+
536
+ ### Number Field
537
+
538
+ - Fix stuck virtual cursor after mouse tap (#2720) by @atomiks
539
+ - Improve parsing logic (#2725) by @atomiks
540
+ - Align value changes with `Slider`. An `onValueCommitted` callback has been added. (#2726) by @atomiks
541
+
542
+ ### Popover
543
+
544
+ - Allow non-nested portals across differing popup trees (#2818) by @atomiks
545
+
546
+ ### Scroll Area
547
+
548
+ - Add overflow presence state attributes and CSS variables (#2478) by @atomiks
549
+ - Fix RTL horizontal scrollbar on Safari (#2776) by @atomiks
550
+ - Fix thumb size flicker (#2778) by @atomiks
551
+
552
+ ### Select
553
+
554
+ - **Breaking change:** Add `Select.List` component. It is now possible for `Select.ScrollArrow` to show when in fallback (`alignItemWithTrigger` deactivated). As a result, if you want the scroll arrows to be hidden in this mode like before, change the styles to default to `display: none` on `.ScrollArrow`, and `display: block` when `[data-side="none"]`. (#2596) by @atomiks
555
+ - Block opening the popup when provided `readOnly` (#2717) by @seongminn
556
+ - Add `open` state for `Select.Icon` and fix `ref` type (#2714) by @seongminn
557
+ - Support object values with `isItemEqualToValue` prop (#2704) by @atomiks
558
+ - Use `ReadonlyArray` type for `items` (#2819) by @atomiks
559
+
560
+ ### Slider
561
+
562
+ - **Breaking change:** `onValueChange` has `activeThumbIndex` as part of the `eventDetails` object as a second parameter, not third. (#2796) by @atomiks
563
+ - **Breaking change:** Remove redundant hidden inputs.
564
+ The `inputRef` prop is moved from `Root` to `Thumb`.
565
+ (#2631) by @mj12albert
566
+ - Fix pointer tracking bugs (#2688) by @mj12albert
567
+ - Fix input attributes (#2728) by @mj12albert
568
+ - Add `thumbAlignment` prop (#2540) by @mj12albert
569
+
570
+ ### Switch
571
+
572
+ - Fix duplicate `name` attribute (#2763) by @mj12albert
573
+
574
+ ### Toast
575
+
576
+ - **Breaking change:** Support variable height stacking.
577
+ Toasts that have varying heights no longer force a `data-expanded` expanded state on the viewport. CSS should be amended to ensure larger toasts don't overflow a small toast stacked at the front. See this [diff](https://github.com/mui/base-ui/pull/2742/files#diff-e378460dafb74fe0c90ef960ad0ef1c38d68d74b63815520bb437f9041361917) for new styles, along with general improvements to stacking styles.
578
+ (#2742) by @atomiks
579
+ - Reduce stickiness of expanded state (#2770) by @atomiks
580
+ - Ensure toast is frozen at its current visual transform while swiping (#2769) by @atomiks
581
+
582
+ ### Toggle Group
583
+
584
+ - **Breaking change:** Rename `toggleMultiple` prop to `multiple`.
585
+ (#2764) by @LukasTy
586
+
587
+ ### Toolbar
588
+
589
+ - Fix `CompositeList` not updating item order on reordering (#2675) by @chuganzy
590
+
591
+ ### useRender
592
+
593
+ - Add div as a `defaultTagName` (#2692) by @mnajdova
594
+
595
+ All contributors of this release in alphabetical order: @aarongarciah, @atomiks, @brijeshb42, @chuganzy, @Copilot, @Janpot, @LukasTy, @martenbjork, @michaldudak, @mj12albert, @mnajdova, @oliviertassinari, @seongminn, @sukvvon, @vladmoroz
596
+
597
+ ## v1.0.0-beta.3
598
+
599
+ _Sep 3, 2025_
600
+
601
+ ### General changes
602
+
603
+ - **Breaking change:** Base UI event details.
604
+ Custom event callbacks provide BaseUIEventDetails object as their second parameter.
605
+ This object contains the source event, reason and methods to customize the behavior (where applicable).
606
+ For example, `onOpenChange(open, event, reason)` becomes `onOpenChange(open, eventDetails)`, where `eventDetails` contains `event` and `reason` properties.
607
+ ```diff
608
+ -onOpenChange: (open, event, reason) => {
609
+ +onOpenChange: (open, eventDetails) => {
610
+ - if (reason === 'escape-key') {
611
+ + if (eventDetails.reason === 'escape-key') {
612
+ // ...
613
+ }
614
+ }
615
+ ```
616
+ (#2382) by @atomiks
617
+
618
+ ### Alert Dialog
619
+
620
+ - **Breaking change:** Support `initialFocus` and `finalFocus` functions.
621
+ The `initialFocus` and `finalFocus` props can be functions that return DOM elements to focus.
622
+ This is a new feature for `finalFocus` and a breaking change for `initialFocus` as the element must be returned directly (not as a ref).
623
+ (#2536) by @atomiks
624
+
625
+ ### Autocomplete
626
+
627
+ - New Autocomplete component (#2105) by @atomiks
628
+
629
+ ### Checkbox
630
+
631
+ - Fix missing validity attributes when wrapped in `Field` (#2572) by @Copilot
632
+
633
+ ### Combobox
634
+
635
+ - New Combobox component (#2105) by @atomiks
636
+
637
+ ### Context Menu
638
+
639
+ - Fix default offsets when `align="center"` or `side` differs (#2601) by @atomiks
640
+
641
+ ### Dialog
642
+
643
+ - **Breaking change:** Support `initialFocus` and `finalFocus` functions.
644
+ The `initialFocus` and `finalFocus` props can be functions that return DOM elements to focus.
645
+ This is a new feature for `finalFocus` and a breaking change for `initialFocus` as the element must be returned directly (not as a ref).
646
+ (#2536) by @atomiks
647
+ - Restore focus to popup when focused element is removed (#2479) by @atomiks
648
+
649
+ ### Field
650
+
651
+ - Prevent defaultValue reset on focus for uncontrolled inputs (#2543) by @ingokpp
652
+ - Allow `onValueChange` to fire when `defaultValue`/`value` are not set (#2600) by @atomiks
653
+
654
+ ### Input
655
+
656
+ - Allow `onValueChange` to fire when `defaultValue`/`value` are not set (#2600) by @atomiks
657
+
658
+ ### Menu
659
+
660
+ - **Breaking change:** Fix `closeParentOnEsc` default value.
661
+ The default value of `closeParentOnEsc` in Menu.SubmenuRoot is now false.
662
+ When the <kbd>Esc</kbd> key is pressed in a Submenu, the Submenu closes, and the focus correctly moves to the SubmenuTrigger.
663
+ (#2493) by @seongminn
664
+ - **Breaking change:** Support `initialFocus` and `finalFocus` functions.
665
+ The `initialFocus` and `finalFocus` props can be functions that return DOM elements to focus.
666
+ This is a new feature for `finalFocus` and a breaking change for `initialFocus` as the element must be returned directly (not as a ref).
667
+ (#2536) by @atomiks
668
+ - Fix menu not opening when inside context menu trigger (#2506) by @baptisteArno
669
+ - Fix `transform-origin` variable calculation when Positioner `sideOffset` is a function (#2511) by @atomiks
670
+ - Fix submenu events (#2483) by @atomiks
671
+ - Fix `limitShift` offset based on arrow size (#2571) by @atomiks
672
+
673
+ ### Navigation Menu
674
+
675
+ - **Breaking change:** Semantic element structure and `active` page prop.
676
+ `NavigationMenu.List` renders `<ul>` and `NavigationMenu.Item` renders `<li>` by default.
677
+ (#2526) by @atomiks
678
+ - Unshare `AbortController` instance (#2441) by @tomokinat
679
+ - Close on link click by default (#2535) by @atomiks
680
+
681
+ ### Number Field
682
+
683
+ - Fix duplicate `onValueChange` calls (#2591) by @atomiks
684
+
685
+ ### Popover
686
+
687
+ - **Breaking change:** Support `initialFocus` and `finalFocus` functions.
688
+ The `initialFocus` and `finalFocus` props can be functions that return DOM elements to focus.
689
+ This is a new feature for `finalFocus` and a breaking change for `initialFocus` as the element must be returned directly (not as a ref).
690
+ (#2536) by @atomiks
691
+ - Fix outside click after right clicking in popup (#2508) by @baptisteArno
692
+ - Fix unexpected close when nested inside two popovers (#2481) by @atomiks
693
+ - Fix `transform-origin` variable calculation when Positioner `sideOffset` is a function (#2511) by @atomiks
694
+ - Restore focus to popup when focused element is removed (#2479) by @atomiks
695
+ - Fix `limitShift` offset based on arrow size (#2571) by @atomiks
696
+
697
+ ### Preview Card
698
+
699
+ - Fix `transform-origin` variable calculation when Positioner `sideOffset` is a function (#2511) by @atomiks
700
+ - Fix `limitShift` offset based on arrow size (#2571) by @atomiks
701
+
702
+ ### Radio Group
703
+
704
+ - Return null in form data when no option selected (#2473) by @ingokpp
705
+
706
+ ### Scroll Area
707
+
708
+ - Prevent pointer events from sibling portals triggering hover (#2542) by @KenanYusuf
709
+
710
+ ### Select
711
+
712
+ - Fix stale `items` prop (#2397) by @atomiks
713
+ - Fix unexpected close when nested inside two popovers (#2481) by @atomiks
714
+ - Fix `onValueChange` type inference (#2372) by @atomiks
715
+ - Fix `transform-origin` variable calculation when Positioner `sideOffset` is a function (#2511) by @atomiks
716
+ - Reset state when selected item is removed (#2577) by @atomiks
717
+ - Fix `data-highlighted` and DOM focus item desync (#2569) by @atomiks
718
+ - Fix item click with `defaultOpen` prop (#2570) by @atomiks
719
+ - Fix scroll arrows not propagating scroll fully to start/end of list (#2523) by @atomiks
720
+ - Fix `limitShift` offset based on arrow size (#2571) by @atomiks
721
+
722
+ ### Slider
723
+
724
+ - **Breaking change:** Instead of the thumb div, the `input type="range"` element receives focus. Focus styles that were targeting the thumb, should be updated.
725
+ For example `.Thumb:focus-visible` should be replaced with `.Thumb:has(:focus-visible)`.
726
+ The `tabIndex` prop is moved from Root to Thumb where it gets forwarded to the input.
727
+ The thumb's `render` prop no longer contains the third `inputProps` argument; the input element is instead merged with children.
728
+ (#2578) by @mj12albert
729
+ - Reduce bundle size (#2551) by @oliviertassinari
730
+ - Fix thumb `:focus-visible` with mixed keyboard and pointer modality (#2584) by @mj12albert
731
+ - Add `index` prop to `Slider.Thumb` (#2593) by @mj12albert
732
+
733
+ ### Tabs
734
+
735
+ - Fix tab size rounding (#2488) by @atomiks
736
+ - Fix highlight sync when focus is inside list (#2487) by @atomiks
737
+
738
+ ### Tooltip
739
+
740
+ - Fix `transform-origin` variable calculation when Positioner `sideOffset` is a function (#2511) by @atomiks
741
+ - Fix `limitShift` offset based on arrow size (#2571) by @atomiks
742
+
743
+ ### useRender
744
+
745
+ - Add support for data-\* attributes (#2524) by @Raghuboi
746
+ - Add `defaultTagName` parameter (#2527) by @atomiks
747
+
748
+ All contributors of this release in alphabetical order: @atomiks, @baptisteArno, @brijeshb42, @Copilot, @ingokpp, @Janpot, @KenanYusuf, @LukasTy, @michaldudak, @mirka, @mj12albert, @mnajdova, @oliviertassinari, @Powerplex, @Raghuboi, @seongminn, @tomokinat
749
+
750
+ ## v1.0.0-beta.2
751
+
752
+ _Jul 30, 2025_
753
+
754
+ ### General changes
755
+
756
+ - Fix navigator checks and ensure safe platform retrieval (#2273) by @mo36924
757
+ - Prevent `Space` key default on keydown (#2295) by @atomiks
758
+ - Check for `performance` existence on server (#2316) by @atomiks
759
+
760
+ ### Accordion
761
+
762
+ - Destructure `render` prop (#2280) by @atomiks
763
+ - Fix keyboard interactions with elements in the panel (#2321) by @mj12albert
764
+ - Fix open transitions in Safari/Firefox (#2327) by @atomiks
765
+
766
+ ### Alert Dialog
767
+
768
+ - Support `ShadowRoot` containers (#2236) by @atomiks
769
+ - Add `forceRender` prop to `Backdrop` part (#2037) by @atomiks
770
+ - Improve outside press behavior with touch input (#2334) by @atomiks
771
+
772
+ ### Checkbox
773
+
774
+ - Fix focusing form controls with `inputRef` (#2252) by @mj12albert
775
+
776
+ ### Collapsible
777
+
778
+ - Destructure render prop (#2323) by @atomiks
779
+ - Fix open transitions in Safari/Firefox (#2327) by @atomiks
780
+
781
+ ### Dialog
782
+
783
+ - Support `ShadowRoot` containers (#2236) by @atomiks
784
+ - Add `forceRender` prop to `Backdrop` part (#2037) by @atomiks
785
+ - Improve outside press behavior with touch input (#2334) by @atomiks
786
+ - Use `click` event for outside press dismissal (#2275) by @atomiks
787
+
788
+ ### Field
789
+
790
+ - Deregister fields from `Form` when unmounting (#2231) by @mj12albert
791
+
792
+ ### Form
793
+
794
+ - Deregister fields from `Form` when unmounting (#2231) by @mj12albert
795
+
796
+ ### Menu
797
+
798
+ - Support `ShadowRoot` containers (#2236) by @atomiks
799
+ - Avoid double `useRenderElement` passes (#2256) by @atomiks
800
+ - Improve outside press behavior with touch input (#2334) by @atomiks
801
+ - Close submenus when focus is lost by shift-tabbing (#2290) by @michaldudak
802
+
803
+ ### Menubar
804
+
805
+ - Fix triggers role (#2317) by @atomiks
806
+
807
+ ### Meter
808
+
809
+ - Fix ARIA attributes and update docs (#2267) by @mj12albert
810
+
811
+ ### Navigation Menu
812
+
813
+ - **Breaking change:** Support inlined nesting.
814
+ Ensure the popup's `width` is set to `var(--popup-width)` unconditionally (without the media query) on the `.Popup` class.
815
+ (#2269) by @atomiks
816
+ - Avoid double `useRenderElement` passes (#2256) by @atomiks
817
+ - Add `useButton` integration to `Trigger` (#2296) by @atomiks
818
+ - Fix popup size transitions on iOS (#2387) by @atomiks
819
+
820
+ ### Number Field
821
+
822
+ - Remove `invalid` prop (#2315) by @atomiks
823
+ - Fix button disabled state only including root disabled state (#2268) by @mj12albert
824
+
825
+ ### Popover
826
+
827
+ - Support `ShadowRoot` containers (#2236) by @atomiks
828
+ - Remove ancestor nodes from inside elements for outside press detection (#2339) by @atomiks
829
+ - Improve outside press behavior with touch input (#2334) by @atomiks
830
+ - Use `click` event for outside press dismissal (#2275) by @atomiks
831
+
832
+ ### Preview Card
833
+
834
+ - Support `ShadowRoot` containers (#2236) by @atomiks
835
+
836
+ ### Progress
837
+
838
+ - Fix ARIA attributes and update docs (#2267) by @mj12albert
839
+
840
+ ### Radio Group
841
+
842
+ - Add aria-required attribute (#2227) by @cgatian
843
+ - Extend state with `FieldRoot.State` (#2251) by @mj12albert
844
+ - Fix focusing form controls with `inputRef` (#2252) by @mj12albert
845
+ - Avoid double `useRenderElement` passes (#2256) by @atomiks
846
+
847
+ ### Scroll Area
848
+
849
+ - Disable `user-select` on scrollbar and non-main button interactions (#2338) by @atomiks
850
+
851
+ ### Select
852
+
853
+ - Support `ShadowRoot` containers (#2236) by @atomiks
854
+ - Add `value` and `readOnly` to `Select.Trigger` state (#2237) by @atomiks
855
+ - Add `multiple` prop (#2173) by @atomiks
856
+ - Allow typeahead while open for `multiple` mode (#2274) by @atomiks
857
+ - Ensure positionerElement is available in document mouseup (#2276) by @atomiks
858
+ - Fix `alignItemWithTrigger` fallback scroll jump (#2241) by @atomiks
859
+ - Support conditional `multiple` prop in types (#2369) by @atomiks
860
+ - Fix multiple ARIA behavior on touch (#2333) by @atomiks
861
+ - Improve outside press behavior with touch input (#2334) by @atomiks
862
+
863
+ ### Slider
864
+
865
+ - Fix focusing form controls with `inputRef` (#2252) by @mj12albert
866
+
867
+ ### Toast
868
+
869
+ - Fix `promise` method timeout option handling (#2294) by @atomiks
870
+ - Make `Toast.Viewport` an announce container (#2246) by @atomiks
871
+
872
+ ### Toggle
873
+
874
+ - Avoid double `useRenderElement` passes (#2256) by @atomiks
875
+
876
+ ### Toggle Group
877
+
878
+ - Avoid double `useRenderElement` passes (#2256) by @atomiks
879
+
880
+ ### Toolbar
881
+
882
+ - Avoid double `useRenderElement` passes (#2256) by @atomiks
883
+
884
+ ### Tooltip
885
+
886
+ - Support `ShadowRoot` containers (#2236) by @atomiks
887
+ - Memoize leftover object in tooltip (#2250) by @sai6855
888
+ - Fix error when combining `defaultOpen` and `disabled` (#2374) by @atomiks
889
+
890
+ All contributors of this release in alphabetical order: @aelfannir, @atomiks, @brijeshb42, @cgatian, @Janpot, @michaldudak, @mj12albert, @mo36924, @romgrk, @sai6855
891
+
892
+ ## v1.0.0-beta.1
893
+
894
+ _Jul 1, 2025_
895
+
896
+ ### General changes
897
+
898
+ - Make error messages consistent (#2049) by @michaldudak
899
+ - Do not overwrite event handler when `undefined` is passed explicitly (#2151) by @michaldudak
900
+
901
+ ### Accordion
902
+
903
+ - Allow content to resize naturally (#2043) by @atomiks
904
+ - Fix transition status mapping (#2169) by @atomiks
905
+ - Fix `aria-controls` reference (#2170) by @atomiks
906
+ - Fix test warning about mixed animation types (#2180) by @atomiks
907
+
908
+ ### Checkbox
909
+
910
+ - **Breaking change:** Support implicit `Field.Label`.
911
+ If `Field.Label` encloses Switch/Checkbox/Radio, the `htmlFor`/`id` attributes are no longer explicitly set to associate them.
912
+ (#2036) by @mj12albert
913
+ - Refactor to `useRenderElement` (#2053) by @mj12albert
914
+ - Always set `id` on the `<input>` element (#2115) by @mj12albert
915
+
916
+ ### Checkbox Group
917
+
918
+ - Fix `onCheckedChange` not running when parent checkbox is present (#2155) by @mj12albert
919
+
920
+ ### Collapsible
921
+
922
+ - Allow content to resize naturally (#2043) by @atomiks
923
+ - Fix `aria-controls` reference (#2170) by @atomiks
924
+ - Fix test warning about mixed animation types (#2180) by @atomiks
925
+
926
+ ### Context Menu
927
+
928
+ - **Breaking change:** Add `SubmenuRoot` part.
929
+ Nested menus should be defined with `Menu.SubmenuRoot` instead of `Menu.Root` to to avoid ambiguity.
930
+ (#2042) by @atomiks
931
+ - Fix CheckboxItemIndicator export (#2009) by @aarongarciah
932
+
933
+ ### Dialog
934
+
935
+ - Fix popup prop merging (#2119) by @atomiks
936
+
937
+ ### Field
938
+
939
+ - **Breaking change:** Support implicit `Field.Label`.
940
+ If `Field.Label` encloses Switch/Checkbox/Radio, the `htmlFor`/`id` attributes are no longer explicitly set to associate them.
941
+ (#2036) by @mj12albert
942
+ - Enable custom validation based on other form values (#1941) by @mj12albert
943
+ - Fix `onValueChange` `value` type (#2112) by @atomiks
944
+ - Fix `Field.Label` focusing trigger (#2118) by @atomiks
945
+ - Fix slider field label (#2154) by @mj12albert
946
+
947
+ ### Fieldset
948
+
949
+ - Refactor to `useRenderElement` (#2053) by @mj12albert
950
+
951
+ ### Form
952
+
953
+ - Enable custom validation based on other form values (#1941) by @mj12albert
954
+
955
+ ### Input
956
+
957
+ - Fix `onValueChange` `value` type (#2112) by @atomiks
958
+
959
+ ### Menu
960
+
961
+ - **Breaking change:** Add `SubmenuRoot` part.
962
+ Nested menus should be defined with `Menu.SubmenuRoot` instead of `Menu.Root` to to avoid ambiguity.
963
+ (#2042) by @atomiks
964
+ - Unset `role` from Trigger (#2047) by @atomiks
965
+ - Emit `close` event on `cancel-open` (#2067) by @atomiks
966
+ - Fix close toggle when rendering non-native button (#2071) by @atomiks
967
+ - Add `highlighted` to item `State` (#2079) by @atomiks
968
+ - Remove highlighted effect (#2162) by @atomiks
969
+ - Cut out internal backdrop to allow interacting with triggers (#2141) by @michaldudak
970
+ - Fix active index sync on hover (#2163) by @atomiks
971
+ - Fix focus returning to root when submenus have exit transitions (#2163) by @atomiks
972
+
973
+ ### Menubar
974
+
975
+ - Fix `closeOnClick: false` not working in nested menus (#2094) by @michaldudak
976
+
977
+ ### Navigation Menu
978
+
979
+ - Handle layout resize while open (#2070) by @atomiks
980
+ - Fix positioner height when opening menu using the keyboard arrows (#2060) by @juliomerisio
981
+
982
+ ### Number Field
983
+
984
+ - Ensure `onValueChange` is called with already-formatted parsed value (#1905) by @atomiks
985
+ - Fix revalidation on change (#2174) by @atomiks
986
+
987
+ ### Popover
988
+
989
+ - Fix close toggle when rendering non-native button (#2071) by @atomiks
990
+ - Cut out internal backdrop to allow interacting with triggers (#2141) by @michaldudak
991
+
992
+ ### Radio Group
993
+
994
+ - **Breaking change:** Support implicit `Field.Label`.
995
+ If `Field.Label` encloses Radio, the `htmlFor`/`id` attributes are no longer explicitly set to associate them.
996
+ (#2036) by @mj12albert
997
+ - Refactor to `useRenderElement` (#2053) by @mj12albert
998
+
999
+ ### Scroll Area
1000
+
1001
+ - Ignore `data-scrolling` during programmatic scroll (#1908) by @atomiks
1002
+
1003
+ ### Select
1004
+
1005
+ - **Breaking change:** Print raw value in `Select.Value`.
1006
+ `<Select.Value>` now prints the raw value by default unless an `items` prop is specified on `Select.Root`.
1007
+ See https://base-ui.com/react/components/select#formatting-the-value for more information.
1008
+ (#2087) by @atomiks
1009
+ - Performance: avoid re-renders (#1961) by @romgrk
1010
+ - Fix close toggle when rendering non-native button (#2071) by @atomiks
1011
+ - Fix `Field.Label` focusing trigger (#2118) by @atomiks
1012
+ - Fix programmatic value changes and autofill handling (#2084) by @atomiks
1013
+ - Add `highlighted` to item `State` (#2079) by @atomiks
1014
+ - Cut out internal backdrop to allow interacting with triggers (#2141) by @michaldudak
1015
+ - Pass `value` as state (#2153) by @atomiks
1016
+ - Extend `FieldRoot.State` type (#2192) by @atomiks
1017
+
1018
+ ### Slider
1019
+
1020
+ - Use pointer capture when dragging (#2059) by @mj12albert
1021
+ - Fix slider field label (#2154) by @mj12albert
1022
+
1023
+ ### Switch
1024
+
1025
+ - **Breaking change:** Support implicit `Field.Label`.
1026
+ If `Field.Label` encloses Switch, the `htmlFor`/`id` attributes are no longer explicitly set to associate them.
1027
+ (#2036) by @mj12albert
1028
+
1029
+ ### Tabs
1030
+
1031
+ - Fix indicator positioning when TabsList overflows (#2093) by @mj12albert
1032
+ - Fix focus going out of sync when selected value is changed externally (#2107) by @atomiks
1033
+ - Remove highlighted state (#2164) by @atomiks
1034
+
1035
+ ### Toolbar
1036
+
1037
+ - Set `disabled` attr on toolbar button when `focusableWhenDisabled={false}` (#2176) by @mj12albert
1038
+
1039
+ ### useRender
1040
+
1041
+ - Make useRender RSC-friendly (#2134) by @michaldudak
1042
+
1043
+ All contributors of this release in alphabetical order: @aarongarciah, @atomiks, @bernardobelchior, @brijeshb42, @Janpot, @juliomerisio, @lesha1201, @michaldudak, @mj12albert, @oliviertassinari, @romgrk
1044
+
1045
+ ## v1.0.0-beta.0
1046
+
1047
+ _May 29, 2025_
1048
+
1049
+ ### General changes
1050
+
1051
+ - Remove proptypes (#1760) by @michaldudak
1052
+ - Unify component export patterns (#1478) by @michaldudak
1053
+ - Default `tabIndex` to `0` on `<button>` parts (#1939) by @atomiks
1054
+
1055
+ ### Accordion
1056
+
1057
+ - Stop event propagation to allow composite components to be used within popups (#1871) by @atomiks
1058
+
1059
+ ### Alert Dialog
1060
+
1061
+ - **Breaking change:** Refine `OpenChangeReason`. `hover` is now `trigger-hover`; `click` is now `trigger-press`; `focus` is now `trigger-focus`.
1062
+ (#1782) by @atomiks
1063
+ - Use basic scroll lock on iOS
1064
+ (#1890) by @atomiks
1065
+
1066
+ ### Checkbox
1067
+
1068
+ - Set `aria-required`, use `useButton` (#1777) by @mj12albert
1069
+
1070
+ ### Checkbox Group
1071
+
1072
+ - **Breaking change:** Enable submitting checkbox group value as one field.
1073
+ For parent checkboxes, use `value` instead of `name` on each `Checkbox.Root` part to link as the values.
1074
+ (#1948) by @mj12albert
1075
+ - Fix `validate` fn incorrectly running twice (#1959) by @mj12albert
1076
+
1077
+ ### Context Menu
1078
+
1079
+ - New `ContextMenu` component (#1665) by @atomiks
1080
+
1081
+ ### Dialog
1082
+
1083
+ - **Breaking change:** Refine `OpenChangeReason`. `hover` is now `trigger-hover`; `click` is now `trigger-press`; `focus` is now `trigger-focus`.
1084
+ (#1782) by @atomiks
1085
+ - Use basic scroll lock on iOS
1086
+ (#1890) by @atomiks
1087
+
1088
+ ### Field
1089
+
1090
+ - **Breaking change:** Consolidate `Field.Error` `forceShow` into `match` prop.
1091
+ Use `match={true}` (or implicit boolean) instead of `forceShow`.
1092
+ (#1919) by @atomiks
1093
+ - Improve `Label` logic that prevents text selection on double click (#1784) by @atomiks
1094
+ - Fix validation inconsistency (#1779) by @atomiks
1095
+ - Fix integration of Base UI components (#1755) by @atomiks
1096
+ - Set `valueMissing` to false if only error and not dirtied (#1810) by @atomiks
1097
+ - `validate` with latest value on blur (#1850) by @atomiks
1098
+ - Revalidate only `required` on change (#1840) by @atomiks
1099
+ - Run validate function after native validations (#1926) by @mj12albert
1100
+ - Fix `validate` fn incorrectly running twice (#1959) by @mj12albert
1101
+ - Integrate range sliders with Form and Field (#1929) by @mj12albert
1102
+
1103
+ ### Form
1104
+
1105
+ - Fix integration of Base UI components (#1755) by @atomiks
1106
+ - Select inputs on focus (#1858) by @atomiks
1107
+ - Exclude number formatting from form value (#1957) by @mj12albert
1108
+ - Integrate range sliders with Form and Field (#1929) by @mj12albert
1109
+
1110
+ ### Input
1111
+
1112
+ - Fix `Input.Props` type (#1915) by @mj12albert
1113
+ - Extend `Field.Control.State` (#1954) by @atomiks
1114
+
1115
+ ### Menu
1116
+
1117
+ - **Breaking change:** Refine `OpenChangeReason`. `hover` is now `trigger-hover`; `click` is now `trigger-press`; `focus` is now `trigger-focus`.
1118
+ (#1782) by @atomiks
1119
+ - Fix function dependency handling (#1787) by @atomiks
1120
+ - Add missing `'use client'` to `RadioGroup` part (#1851) by @atomiks
1121
+ - Ensure `null` items are removed from composite lists (#1847) by @atomiks
1122
+ - Avoid `:focus-visible` style appearing (#1846) by @atomiks
1123
+ - Better handle dynamic and non-string items (#1861) by @atomiks
1124
+ - Add `collisionAvoidance` prop (#1849) by @atomiks
1125
+ - Add `finalFocus` and `closeDelay` props (#1918) by @atomiks
1126
+ - Use basic scroll lock on iOS
1127
+ (#1890) by @atomiks
1128
+
1129
+ ### Menubar
1130
+
1131
+ - New `Menubar` component (#1684) by @michaldudak
1132
+
1133
+ ### Navigation Menu
1134
+
1135
+ - New `NavigationMenu` component (#1741) by @atomiks
1136
+
1137
+ ### Number Field
1138
+
1139
+ - `validate` with latest value on blur (#1850) by @atomiks
1140
+ - Move scrubbing logic to `ScrubArea` component (#1859) by @atomiks
1141
+ - Remove floating point errors when `snapOnStep` is disabled (#1857) by @atomiks
1142
+ - Stop event propagation to allow composite components to be used within popups (#1871) by @atomiks
1143
+ - Exclude number formatting from form value (#1957) by @mj12albert
1144
+
1145
+ ### Popover
1146
+
1147
+ - **Breaking change:** Refine `OpenChangeReason`. `hover` is now `trigger-hover`; `click` is now `trigger-press`; `focus` is now `trigger-focus`.
1148
+ (#1782) by @atomiks
1149
+ - Fix function dependency handling (#1787) by @atomiks
1150
+ - Avoid prop getters when merging props (#1852) by @atomiks
1151
+ - Add `collisionAvoidance` prop (#1849) by @atomiks
1152
+ - Fix nested `openOnHover` (#1938) by @atomiks
1153
+ - Use basic scroll lock on iOS
1154
+ (#1890) by @atomiks
1155
+
1156
+ ### Preview Card
1157
+
1158
+ - **Breaking change:** Refine `OpenChangeReason`. `hover` is now `trigger-hover`; `click` is now `trigger-press`; `focus` is now `trigger-focus`.
1159
+ (#1782) by @atomiks
1160
+ - Fix function dependency handling (#1787) by @atomiks
1161
+ - Add `collisionAvoidance` prop (#1849) by @atomiks
1162
+
1163
+ ### Radio Group
1164
+
1165
+ - Fix composite focus of initially selected radio item (#1753) by @atomiks
1166
+ - Add `inputRef` props (#1683) by @atomiks
1167
+ - Stop event propagation to allow composite components to be used within popups (#1871) by @atomiks
1168
+
1169
+ ### Select
1170
+
1171
+ - **Breaking change:** Move item anchoring prop to `Positioner`.
1172
+ Use `<Select.Positioner alignItemWithTrigger={false}>` instead of `<Select.Root alignItemToTrigger={false}>` (note the `With` instead of `To`).
1173
+ (#1713) by @atomiks
1174
+ - **Breaking change:** Defer mounting until typeahead is needed.
1175
+ The `placeholder` prop is now required. Previously, only SSR needed it to prevent a hydration flash, but client-side rendering now also requires it.
1176
+ (#1906) by @atomiks
1177
+ - **Breaking change:** Refine `OpenChangeReason`. `hover` is now `trigger-hover`; `click` is now `trigger-press`; `focus` is now `trigger-focus`.
1178
+ (#1782) by @atomiks
1179
+ - Fix function dependency handling (#1787) by @atomiks
1180
+ - Add `inputRef` props (#1683) by @atomiks
1181
+ - Refactor to `useRenderElement` (#1797) by @atomiks
1182
+ - Ensure `null` items are removed from composite lists (#1847) by @atomiks
1183
+ - Fix `id` prop forwarding to hidden input (#1862) by @atomiks
1184
+ - Avoid `:focus-visible` style appearing (#1846) by @atomiks
1185
+ - Fix `transitionStatus` mapping on `ItemIndicator` (#1925) by @atomiks
1186
+ - Better handle dynamic and non-string items (#1861) by @atomiks
1187
+ - Use `Select.ItemText` ref to grab default text content (#1943) by @atomiks
1188
+ - Add `collisionAvoidance` prop (#1849) by @atomiks
1189
+ - Use basic scroll lock on iOS
1190
+ (#1890) by @atomiks
1191
+
1192
+ ### Slider
1193
+
1194
+ - **Breaking change:** Drop `inputId` prop from Thumb.
1195
+ (#1914) by @mj12albert
1196
+ - Position thumb based on value instead of pointer location when dragging (#1750) by @DarthSim
1197
+ - Use `useRenderElement` (#1772) by @mj12albert
1198
+ - Add `inputRef` props (#1683) by @atomiks
1199
+ - Add `locale` prop (#1796) by @mj12albert
1200
+ - Stop event propagation to allow composite components to be used within popups (#1871) by @atomiks
1201
+ - set `data-dragging` on touchstart and pointerdown (#1874) by @mj12albert
1202
+ - Integrate range sliders with Form and Field (#1929) by @mj12albert
1203
+
1204
+ ### Toast
1205
+
1206
+ - **Breaking change:** Add `Portal` part.
1207
+ Place `<Toast.Viewport>` inside of `<Toast.Portal>`.
1208
+ (#1962) by @atomiks
1209
+ - **Breaking change:** Avoid removing limited toasts from the DOM.
1210
+ The `[data-limited]` styles in the demos were updated to handle limited toasts remaining in the DOM. They should now be a standalone style as `&[data-limited] { opacity: 0 }`.
1211
+ (#1953) by @atomiks
1212
+ - Fix swipe jump on iOS (#1785) by @atomiks
1213
+
1214
+ ### Toggle
1215
+
1216
+ - Stop event propagation to allow composite components to be used within popups (#1871) by @atomiks
1217
+
1218
+ ### Toolbar
1219
+
1220
+ - Stop event propagation to allow composite components to be used within popups (#1871) by @atomiks
1221
+
1222
+ ### Tooltip
1223
+
1224
+ - **Breaking change:** Refine `OpenChangeReason`. `hover` is now `trigger-hover`; `click` is now `trigger-press`; `focus` is now `trigger-focus`.
1225
+ (#1782) by @atomiks
1226
+ - Fix function dependency handling (#1787) by @atomiks
1227
+ - Avoid prop getters when merging props (#1852) by @atomiks
1228
+ - Remove `trackCursorAxis` type from `Positioner` (#1895) by @atomiks
1229
+ - Apply `pointer-events: none` to `Positioner` when not hoverable (#1917) by @atomiks
1230
+ - Add `collisionAvoidance` prop (#1849) by @atomiks
1231
+
1232
+ ### useRender
1233
+
1234
+ - **Breaking change:** Performance/refactor: `useRender`. An object with a `renderElement` property is no longer returned; instead, the hook returns the element directly (`const element = useRender(...)`). The `refs` option was also renamed to `ref`.
1235
+ (#1934) by @romgrk
1236
+ - Skip most of useRenderElement logic when unnecessary (#1967) by @michaldudak
1237
+
1238
+ All contributors of this release in alphabetical order: @aarongarciah, @atomiks, @brijeshb42, @DarthSim, @flaviendelangle, @Janpot, @JCQuintas, @michaldudak, @mj12albert, @oliviertassinari, @romgrk, @Yonava, @ZeeshanTamboli
1239
+
1240
+ ## v1.0.0-alpha.8
1241
+
1242
+ _Apr 17, 2025_
1243
+
1244
+ ### Accordion
1245
+
1246
+ - Recalculate panel dimensions on layout resize (#1704) @atomiks
1247
+ - Rework animations and transitions (#1601) @mj12albert
1248
+
1249
+ ### AlertDialog
1250
+
1251
+ - **Breaking change:** Rename `data-has-nested-dialogs` to `data-nested-dialog-open` (#1686) @mj12albert
1252
+ - Fix `onOpenChange` types for `event`/`reason` passing (#1721) @atomiks
1253
+ - Use consistent `inert` attr and map `[data-popup-open]` back to `open` (#1650) @atomiks
1254
+ - Fix text selection & right-clicks (#1702) @mj12albert
1255
+
1256
+ ### CheckboxGroup
1257
+
1258
+ - Parent checkbox/nested demos (#1610) @atomiks
1259
+
1260
+ ### Collapsible
1261
+
1262
+ - Fix ForwardedRef type of CollapsiblePanel (#1595) @megos
1263
+ - Recalculate panel dimensions on layout resize (#1704) @atomiks
1264
+ - Rework animations and transitions (#1601) @mj12albert
1265
+
1266
+ ### Dialog
1267
+
1268
+ - **Breaking change:** Rename `data-has-nested-dialogs` to `data-nested-dialog-open` (#1686) @mj12albert
1269
+ - **Breaking change:** Add new `trap-focus` value to `modal` prop.
1270
+ Dialogs with `modal=false` no longer trap focus.
1271
+ (#1571) @atomiks
1272
+ - Fix `onOpenChange` types for `event`/`reason` passing (#1721) @atomiks
1273
+ - Use consistent `inert` attr and map `[data-popup-open]` back to `open` (#1650) @atomiks
1274
+ - Fix text selection & right-clicks (#1702) @mj12albert
1275
+ - Allow document to slide input into view on iOS when keyboard opens (#1735) @atomiks
1276
+
1277
+ ### Field
1278
+
1279
+ - Fix forwarding of `name` and `disabled` props (#1616) @atomiks
1280
+
1281
+ ### Menu
1282
+
1283
+ - Add missing item data attributes docs (#1691) @atomiks
1284
+ - Fix `inert` prop compatibility in React <19 (#1618) @sebinsua
1285
+ - Fix stuck highlight on submenu trigger when submenu opens with keyboard (#1698) @atomiks
1286
+ - Fix `onOpenChange` types for `event`/`reason` passing (#1721) @atomiks
1287
+ - Use consistent `inert` attr and map `[data-popup-open]` back to `open` (#1650) @atomiks
1288
+ - Fix text selection & right-clicks (#1702) @mj12albert
1289
+
1290
+ ### Meter
1291
+
1292
+ - New Meter component (#1435) @mj12albert
1293
+
1294
+ ### NumberField
1295
+
1296
+ - Correct percentage parse handling (#1676) @atomiks
1297
+ - New `snapOnStep` prop (#1560) @atomiks
1298
+
1299
+ ### Popover
1300
+
1301
+ - **Breaking change:** Add new `trap-focus` value to `modal` prop (#1571) @atomiks
1302
+ - Fix `inert` prop compatibility in React <19 (#1618) @sebinsua
1303
+ - Fix `onOpenChange` types for `event`/`reason` passing (#1721) @atomiks
1304
+ - Use consistent `inert` attr and map `[data-popup-open]` back to `open` (#1650) @atomiks
1305
+ - Fix text selection & right-clicks (#1702) @mj12albert
1306
+
1307
+ ### Progress
1308
+
1309
+ - **Breaking change:** Add `Progress.Label` and `locale` prop.
1310
+ The `getAriaLabel` prop was removed as `Progress.Label` should be used to provide an accessible name.
1311
+ (#1666) @mj12albert
1312
+
1313
+ ### Radio
1314
+
1315
+ - Fix value forwarding and null handling (#1697) @atomiks
1316
+
1317
+ ### ScrollArea
1318
+
1319
+ - **Breaking change:** Add `Content` part.
1320
+ It is now required to include the `ScrollArea.Content` within `ScrollArea.Viewport` part when the content is horizontally scrollable.
1321
+ (#1607) @atomiks
1322
+ - Handle visibility change and nesting (#1598) @atomiks
1323
+ - Correct thumb sizing with scrollbar margins (#1606) @atomiks
1324
+
1325
+ ### Select
1326
+
1327
+ - **Breaking change:** Improve item highlight performance.
1328
+ The highlighted state is now removed. It's not possible to customize the `data-highlighted` attribute anymore.
1329
+ (#1570) @atomiks
1330
+ - Avoid double commit on value change (#1597) @atomiks
1331
+ - Reset `selectedIndex` when set to `null` (#1596) @atomiks
1332
+ - Add missing item data attributes docs (#1691) @atomiks
1333
+ - Fix `onOpenChange` types for `event`/`reason` passing (#1721) @atomiks
1334
+ - Use consistent `inert` attr and map `[data-popup-open]` back to `open` (#1650) @atomiks
1335
+ - Fix text selection & right-clicks (#1702) @mj12albert
1336
+
1337
+ ### Slider
1338
+
1339
+ - Correct thumb positioning when control has padding (#1661) @mj12albert
1340
+ - Prevent range slider thumbs from being dragged past each other (#1612) @mj12albert
1341
+ - Fix incorrect CSS position on vertical slider indicator (#1599) @ZeeshanTamboli
1342
+ - Fix overlapping slider thumbs stuck at min or max (#1732) @mj12albert
1343
+
1344
+ ### Toast
1345
+
1346
+ - New Toast component (#1467) @atomiks
1347
+
1348
+ ### Tooltip
1349
+
1350
+ - Avoid re-rendering unrelated consumers (#1677) @atomiks
1351
+ - Add `disabled` prop (#1682) @atomiks
1352
+ - Fix `onOpenChange` types for `event`/`reason` passing (#1721) @atomiks
1353
+ - Use consistent `inert` attr and map `[data-popup-open]` back to `open` (#1650) @atomiks
1354
+ - Fix text selection & right-clicks (#1702) @mj12albert
1355
+
1356
+ All contributors of this release in alphabetical order: @atomiks, @megos, @michaldudak, @mj12albert, @oliviertassinari, @sebinsua, @ZeeshanTamboli
1357
+
1358
+ ## v1.0.0-alpha.7
1359
+
1360
+ _Mar 20, 2025_
1361
+
1362
+ ### Accordion
1363
+
1364
+ - Fix `aria-labelledby` on accordion panel (#1544) @mj12albert
1365
+
1366
+ ### AlertDialog
1367
+
1368
+ - Fix selection on outside press on Firefox with modal prop (#1573) @atomiks
1369
+ - Fix non-interactive button disabled state (#1473) @mj12albert
1370
+ - `actionsRef` prop (#1236) @atomiks
1371
+
1372
+ ### Avatar
1373
+
1374
+ - Support cross origin in useImageLoadingStatus (#1433) @ISnackable
1375
+ - Add missing Avatar export (#1428) @Gomah
1376
+
1377
+ ### Collapsible
1378
+
1379
+ - Update props destructuring to fix Trigger disabled state (#1469) @huijiewei
1380
+
1381
+ ### Dialog
1382
+
1383
+ - Fix selection on outside press on Firefox with modal prop (#1573) @atomiks
1384
+ - Fix non-interactive button disabled state (#1473) @mj12albert
1385
+ - `actionsRef` prop (#1236) @atomiks
1386
+
1387
+ ### Field
1388
+
1389
+ - Fix `FieldControl` [data-filled] not reacting to external value changes (#1565) @atomiks
1390
+
1391
+ ### Menu
1392
+
1393
+ - Ensure submenu triggers respond to clicks when `openOnHover=false` (#1583) @atomiks
1394
+ - Ensure `stickIfOpen` is reset to `true` correctly (#1548) @atomiks
1395
+ - Fix selection on outside press on Firefox with modal prop (#1573) @atomiks
1396
+ - Reset `hoverEnabled` state on close (#1461) @atomiks
1397
+ - Fix prop merging issues (#1445) @michaldudak
1398
+ - Set `pointer-events: none` style on backdrops when hoverable (#1351) @atomiks
1399
+ - `actionsRef` prop (#1236) @atomiks
1400
+
1401
+ ### NumberField
1402
+
1403
+ - Fix ScrubArea on Safari (#1584) @atomiks
1404
+ - Fix `large/smallStep` getting stuck (#1578) @atomiks
1405
+ - Fix parse of numbers with spaces as thousands separators (#1577) @michaldudak
1406
+ - Prevent virtual cursor overlapping native one (#1491) @atomiks
1407
+ - Fix disabled state on increment/decrement buttons (#1462) @mj12albert
1408
+ - Correct virtual cursor rendering (#1484) @atomiks
1409
+ - Add `locale` prop (#1488) @atomiks
1410
+ - Improve virtual cursor perf (#1485) @atomiks
1411
+
1412
+ ### Popover
1413
+
1414
+ - Ensure `stickIfOpen` is reset to `true` correctly (#1548) @atomiks
1415
+ - Fix selection on outside press on Firefox with modal prop (#1573) @atomiks
1416
+ - Set `pointer-events: none` style on backdrops when hoverable (#1351) @atomiks
1417
+ - Fix non-interactive button disabled state (#1473) @mj12albert
1418
+ - `modal` prop (#1459) @atomiks
1419
+ - `actionsRef` prop (#1236) @atomiks
1420
+
1421
+ ### PreviewCard
1422
+
1423
+ - Set `pointer-events: none` style on backdrops when hoverable (#1351) @atomiks
1424
+ - `actionsRef` prop (#1236) @atomiks
1425
+
1426
+ ### RadioGroup
1427
+
1428
+ - Fix `Form`/`Field` validation integration (#1448) @atomiks
1429
+ - Handle modifier keys (#1529) @mj12albert
1430
+
1431
+ ### Select
1432
+
1433
+ - Fix selection on outside press on Firefox with modal prop (#1573) @atomiks
1434
+ - Improve `ScrollArrow` behavior (#1564) @atomiks
1435
+ - Ensure switching controlled value to `null` updates `Select.Value` label (#1561) @atomiks
1436
+ - Pass `value` as second argument to function children `Select.Value` (#1562) @atomiks
1437
+ - Fix focus jump while hovering while navigating with keyboard (#1563) @atomiks
1438
+ - Fix disabled state changing (#1526) @mj12albert
1439
+ - `actionsRef` prop (#1236) @atomiks
1440
+
1441
+ ### Slider
1442
+
1443
+ - Fix thumb positioning when controlled value violates min/max/step (#1541) @mj12albert
1444
+ - Warn when `min` is not less than `max` (#1475) @mj12albert
1445
+ - Narrow the type of `value` in callbacks (#1241) @seloner
1446
+
1447
+ ### Tabs
1448
+
1449
+ - Fix keyboard navigation involving disabled Tabs (#1449) @mj12albert
1450
+ - Handle modifier keys (#1529) @mj12albert
1451
+
1452
+ ### Toolbar
1453
+
1454
+ - Add Toolbar components (#1349) @mj12albert
1455
+
1456
+ ### Tooltip
1457
+
1458
+ - `actionsRef` prop (#1236) @atomiks
1459
+ - Fix `Provider` `delay=0` not being respected (#1416) @atomiks
1460
+
1461
+ ### useRender
1462
+
1463
+ - Add public hook (#1418) @mnajdova
1464
+ - Refine docs and APIs (#1551) @atomiks
1465
+
1466
+ ### Docs
1467
+
1468
+ - Fix CSS issues (#1585) @atomiks
1469
+ - Clean up old experiments (#1572) @mj12albert
1470
+ - Fix SEO site name description (#1520) @oliviertassinari
1471
+ - Fix `actionsRef` propTypes (#1460) @atomiks
1472
+ - Tooltip guidelines (#1356) @atomiks
1473
+ - Update the release instructions (#1444) @michaldudak
1474
+ - Mention Progress.Value in API reference (#1429) @aarongarciah
1475
+ - Update release instructions (#1417) @michaldudak
1476
+
1477
+ ### Core
1478
+
1479
+ - [code-infra] Polish VS Code DX (#1238) @oliviertassinari
1480
+ - [code-infra] Fix build:types not copying on some setups (#1482) @Janpot
1481
+ - [Composite] Derive sorted map state (#1489) @atomiks
1482
+ - Update release docs and scripts (#1245) @oliviertassinari
1483
+ - Export namespaces consistently (#1472) @michaldudak
1484
+ - Make `mergeReactProps` work with non-native event handlers (#1440) @michaldudak
1485
+ - Remove babel-plugin-istanbul (#1409) @michaldudak
1486
+ - Fix stylelint violations (#1422) @michaldudak
1487
+ - Misc cleaning (#1579) @atomiks
1488
+ - [mergeProps] Convert as a top level import and export publicly (#1535) @mnajdova
1489
+ - [test] Fix wrong env skip (#1490) @atomiks
1490
+ - [test] Fix PreviewCard test flake (#1487) @atomiks
1491
+ - [test] Extract common popup tests (#1358) @michaldudak
1492
+ - [test] Verify root exports (#1431) @michaldudak
1493
+ - [test] Fix flaky browser tests (#1371) @atomiks
1494
+ - [test] Update vitest to ^3 (#1453) @michaldudak
1495
+ - [test] Skip flaky FieldRoot tests in real browsers (#1446) @michaldudak
1496
+ - [useMergedRefs] Support ref cleanup functions (#1553) @atomiks
1497
+ - [utils] Change order of args in `mergeReactProps` (#1533) @mnajdova
1498
+
1499
+ ## v1.0.0-alpha.6
1500
+
1501
+ _Feb 6, 2025_
1502
+
1503
+ ### AlertDialog
1504
+
1505
+ - `onOpenChangeComplete` prop (#1305) @atomiks
1506
+ - Fix jump with `scroll-behavior` style (#1343) @atomiks
1507
+
1508
+ ### Avatar
1509
+
1510
+ - Add Avatar component (#1210) @acomanescu
1511
+
1512
+ ### Checkbox
1513
+
1514
+ - Avoid applying `hidden` attr when `keepMounted=true` for indicators (#1329) @onehanddev
1515
+
1516
+ ### Dialog
1517
+
1518
+ - Remove `modal={open}` state (#1352) @atomiks
1519
+ - Support multiple non-nested modal backdrops (#1327) @atomiks
1520
+ - Fix missing `id`s on Title and Description (#1326) @mj12albert
1521
+ - `onOpenChangeComplete` prop (#1305) @atomiks
1522
+ - Fix jump with `scroll-behavior` style (#1343) @atomiks
1523
+
1524
+ ### Field
1525
+
1526
+ - Respect `validationMode` (#1053) @atomiks
1527
+ - Add `filled` and `focused` style hooks (#1341) @atomiks
1528
+
1529
+ ### Form
1530
+
1531
+ - Fix focusing of invalid field controls on errors prop change (#1364) @atomiks
1532
+
1533
+ ### Menu
1534
+
1535
+ - Avoid applying `hidden` attr when `keepMounted=true` for indicators (#1329) @onehanddev
1536
+ - Support submenus with `openOnHover` prop (#1338) @atomiks
1537
+ - Fix iPad detection when applying scroll lock (#1342) @mj12albert
1538
+ - `onOpenChangeComplete` prop (#1305) @atomiks
1539
+ - Fix jump with `scroll-behavior` style (#1343) @atomiks
1540
+ - Add `OffsetFunction` for `sideOffset` and `alignOffset` (#1223) @atomiks
1541
+ - Ensure `keepMounted` is a private param on `Positioner` (#1410) @atomiks
1542
+
1543
+ ### Popover
1544
+
1545
+ - `onOpenChangeComplete` prop (#1305) @atomiks
1546
+ - Add `OffsetFunction` for `sideOffset` and `alignOffset` (#1223) @atomiks
1547
+ - Ensure `keepMounted` is a private param on `Positioner` (#1410) @atomiks
1548
+
1549
+ ### PreviewCard
1550
+
1551
+ - `onOpenChangeComplete` prop (#1305) @atomiks
1552
+ - Add `OffsetFunction` for `sideOffset` and `alignOffset` (#1223) @atomiks
1553
+ - Ensure `keepMounted` is a private param on `Positioner` (#1410) @atomiks
1554
+
1555
+ ### Progress
1556
+
1557
+ - Add `format` prop and `Value` component (#1355) @mj12albert
1558
+
1559
+ ### Radio
1560
+
1561
+ - Avoid applying `hidden` attr when `keepMounted=true` for indicators (#1329) @onehanddev
1562
+
1563
+ ### Select
1564
+
1565
+ - `onOpenChangeComplete` prop (#1305) @atomiks
1566
+ - Fix jump with `scroll-behavior` style (#1343) @atomiks
1567
+ - Add `OffsetFunction` for `sideOffset` and `alignOffset` (#1223) @atomiks
1568
+ - Ensure `keepMounted` is a private param on `Positioner` (#1410) @atomiks
1569
+
1570
+ ### Slider
1571
+
1572
+ - Fix thumb positioning (#1411) @mj12albert
1573
+
1574
+ ### Tabs
1575
+
1576
+ - Fix being able to activate a disabled tab (#1359) @michaldudak
1577
+ - Fix tabs activating incorrectly on non-primary button clicks (#1318) @mj12albert
1578
+
1579
+ ### Tooltip
1580
+
1581
+ - `onOpenChangeComplete` prop (#1305) @atomiks
1582
+ - Add `OffsetFunction` for `sideOffset` and `alignOffset` (#1223) @atomiks
1583
+ - Ensure `keepMounted` is a private param on `Positioner` (#1410) @atomiks
1584
+
1585
+ ## v1.0.0-alpha.5
1586
+
1587
+ _Jan 10, 2025_
1588
+
1589
+ ### AlertDialog
1590
+
1591
+ - **Breaking change:** Require `Portal` part.
1592
+ The AlertDialog must explicitly include the Portal part wrapping the Popup.
1593
+ The `keepMounted` prop was removed from the Popup.
1594
+ It's only present on the Portal part.
1595
+ [#1222](https://github.com/mui/base-ui/pull/1222) @atomiks
1596
+ - Don't call `onNestedDialogOpen` when unmounting a closed nested dialog [#1280](https://github.com/mui/base-ui/pull/1280) @mj12albert
1597
+ - Fix the nesting of different dialogs [#1167](https://github.com/mui/base-ui/pull/1167) @mnajdova
1598
+ - Remove `useFloating` call from the Popup [#1300](https://github.com/mui/base-ui/pull/1300) @michaldudak
1599
+ - Set `pointer-events` on `InternalBackdrop` based on `open` state [#1221](https://github.com/mui/base-ui/pull/1221) @atomiks
1600
+ - Use internal backdrop for pointer modality [#1161](https://github.com/mui/base-ui/pull/1161) @atomiks
1601
+
1602
+ ### Dialog
1603
+
1604
+ - **Breaking change:** Require `Portal` part.
1605
+ The Dialog must explicitly include the Portal part wrapping the Popup.
1606
+ The `keepMounted` prop was removed from the Popup.
1607
+ It's only present on the Portal part.
1608
+ [#1222](https://github.com/mui/base-ui/pull/1222) @atomiks
1609
+ - Don't call `onNestedDialogOpen` when unmounting a closed nested dialog [#1280](https://github.com/mui/base-ui/pull/1280) @mj12albert
1610
+ - Fix the nesting of different dialogs [#1167](https://github.com/mui/base-ui/pull/1167) @mnajdova
1611
+ - Remove `useFloating` call from the Popup [#1300](https://github.com/mui/base-ui/pull/1300) @michaldudak
1612
+ - Set `pointer-events` on `InternalBackdrop` based on `open` state [#1221](https://github.com/mui/base-ui/pull/1221) @atomiks
1613
+ - Use internal backdrop for pointer modality [#1161](https://github.com/mui/base-ui/pull/1161) @atomiks
1614
+
1615
+ ### Menu
1616
+
1617
+ - **Breaking change:** Require `Portal` part.
1618
+ The Menu must explicitly include the Portal part wrapping the Positioner.
1619
+ The `keepMounted` prop was removed from the Positioner.
1620
+ It's only present on the Portal part.
1621
+ [#1222](https://github.com/mui/base-ui/pull/1222) @atomiks
1622
+ - Apply `aria-hidden` to `Arrow` parts [#1196](https://github.com/mui/base-ui/pull/1196) @atomiks
1623
+ - Fix `focusableWhenDisabled` components [#1313](https://github.com/mui/base-ui/pull/1313) @mj12albert
1624
+ - Fix `openOnHover` issues [#1191](https://github.com/mui/base-ui/pull/1191) @atomiks
1625
+ - Fix closing the menu when clicking on checkboxitem/radioitem [#1301](https://github.com/mui/base-ui/pull/1301) @michaldudak
1626
+ - Fix Enter key preventDefault when rendering links [#1251](https://github.com/mui/base-ui/pull/1251) @mj12albert
1627
+ - Handle pseudo-element bounds in mouseup detection [#1250](https://github.com/mui/base-ui/pull/1250) @atomiks
1628
+ - Set `pointer-events` on `InternalBackdrop` based on `open` state [#1221](https://github.com/mui/base-ui/pull/1221) @atomiks
1629
+ - Use internal backdrop for pointer modality [#1161](https://github.com/mui/base-ui/pull/1161) @atomiks
1630
+
1631
+ ### NumberField
1632
+
1633
+ - Correctly handle quick touches [#1294](https://github.com/mui/base-ui/pull/1294) @atomiks
1634
+
1635
+ ### Popover
1636
+
1637
+ - **Breaking change:** Require `Portal` part.
1638
+ The Popover must explicitly include the Portal part wrapping the Positioner.
1639
+ The `keepMounted` prop was removed from the Positioner.
1640
+ It's only present on the Portal part.
1641
+ [#1222](https://github.com/mui/base-ui/pull/1222) @atomiks
1642
+ - Apply `aria-hidden` to `Arrow` parts [#1196](https://github.com/mui/base-ui/pull/1196) @atomiks
1643
+ - Fix PopoverTrigger and TooltipTrigger prop types [#1209](https://github.com/mui/base-ui/pull/1209) @mnajdova
1644
+
1645
+ ### PreviewCard
1646
+
1647
+ - **Breaking change:** Require `Portal` part.
1648
+ The PreviewCard must explicitly include the Portal part wrapping the Positioner.
1649
+ The `keepMounted` prop was removed from the Positioner.
1650
+ It's only present on the Portal part.
1651
+ [#1222](https://github.com/mui/base-ui/pull/1222) @atomiks
1652
+ - Apply `aria-hidden` to `Arrow` parts [#1196](https://github.com/mui/base-ui/pull/1196) @atomiks
1653
+ - Use `FloatingPortalLite` [#1278](https://github.com/mui/base-ui/pull/1278) @atomiks
1654
+
1655
+ ### Progress
1656
+
1657
+ - Set zero width when value is zero [#1204](https://github.com/mui/base-ui/pull/1204) @mj12albert
1658
+
1659
+ ### ScrollArea
1660
+
1661
+ - Differentiate `x`/`y` orientation `data-scrolling` [#1188](https://github.com/mui/base-ui/pull/1188) @atomiks
1662
+ - Read `DirectionProvider` and use logical positioning CSS props [#1194](https://github.com/mui/base-ui/pull/1194) @mj12albert
1663
+
1664
+ ### Select
1665
+
1666
+ - **Breaking change:** Require `Portal` part.
1667
+ The Select must explicitly include the Portal part wrapping the Positioner.
1668
+ The `keepMounted` prop was removed from the Positioner.
1669
+ It's only present on the Portal part.
1670
+ [#1222](https://github.com/mui/base-ui/pull/1222) @atomiks
1671
+ - Allow `id` to be passed to trigger [#1174](https://github.com/mui/base-ui/pull/1174) @atomiks
1672
+ - Fallback to standard positioning when pinch-zoomed in Safari [#1139](https://github.com/mui/base-ui/pull/1139) @atomiks
1673
+ - Fix `focusableWhenDisabled` components [#1313](https://github.com/mui/base-ui/pull/1313) @mj12albert
1674
+ - Fix highlight flash on Safari [#1233](https://github.com/mui/base-ui/pull/1233) @atomiks
1675
+ - Handle pseudo-element bounds in mouseup detection [#1250](https://github.com/mui/base-ui/pull/1250) @atomiks
1676
+ - Use internal backdrop for pointer modality [#1161](https://github.com/mui/base-ui/pull/1161) @atomiks
1677
+
1678
+ ### Separator
1679
+
1680
+ - Support vertical orientation [#1304](https://github.com/mui/base-ui/pull/1304) @mj12albert
1681
+
1682
+ ### Slider
1683
+
1684
+ - Ensure `onValueCommitted` is called with the same value as latest `onValueChange` [#1296](https://github.com/mui/base-ui/pull/1296) @mj12albert
1685
+ - Replace internal map with `Composite` metadata [#1082](https://github.com/mui/base-ui/pull/1082) @mj12albert
1686
+ - Set `position: relative` on range slider indicator [#1175](https://github.com/mui/base-ui/pull/1175) @mj12albert
1687
+ - Use un-rounded values to position thumbs [#1219](https://github.com/mui/base-ui/pull/1219) @mj12albert
1688
+
1689
+ ### Tabs
1690
+
1691
+ - Expose width/height state in tabs indicator [#1288](https://github.com/mui/base-ui/pull/1288) @aarongarciah
1692
+
1693
+ ### Tooltip
1694
+
1695
+ - **Breaking change:** Require `Portal` part.
1696
+ The Tooltip must explicitly include the Portal part wrapping the Positioner.
1697
+ The `keepMounted` prop was removed from the Positioner.
1698
+ It's only present on the Portal part.
1699
+ [#1222](https://github.com/mui/base-ui/pull/1222) @atomiks
1700
+ - Apply `aria-hidden` to `Arrow` parts [#1196](https://github.com/mui/base-ui/pull/1196) @atomiks
1701
+ - Fix PopoverTrigger and TooltipTrigger prop types [#1209](https://github.com/mui/base-ui/pull/1209) @mnajdova
1702
+ - Use `FloatingPortalLite` [#1278](https://github.com/mui/base-ui/pull/1278) @atomiks
1703
+
1704
+ ## v1.0.0-alpha.4
1705
+
1706
+ _Dec 17, 2024_
1707
+
1708
+ Public alpha launch 🐣 Merry Xmas! 🎁