@primer/components 0.0.0-2021111223235 → 0.0.0-2021111225614

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 (717) hide show
  1. package/CHANGELOG.md +938 -43
  2. package/README.md +16 -16
  3. package/codemods/__tests__/deprecateUtilityComponents.js +200 -0
  4. package/codemods/__tests__/removeSystemProps.js +225 -0
  5. package/codemods/deprecateUtilityComponents.js +111 -0
  6. package/codemods/lib/modifyProps.js +9 -7
  7. package/codemods/lib/prettify.js +1 -1
  8. package/codemods/lib/replaceImportSource.js +5 -5
  9. package/codemods/removeSystemProps.js +312 -0
  10. package/dist/browser.esm.js +1267 -853
  11. package/dist/browser.esm.js.map +1 -1
  12. package/dist/browser.umd.js +1304 -890
  13. package/dist/browser.umd.js.map +1 -1
  14. package/lib/ActionList/Divider.d.ts +9 -0
  15. package/lib/ActionList/Divider.js +40 -0
  16. package/lib/ActionList/Group.d.ts +28 -0
  17. package/lib/ActionList/Group.js +35 -0
  18. package/lib/ActionList/Header.d.ts +29 -0
  19. package/lib/ActionList/Header.js +51 -0
  20. package/lib/ActionList/Item.d.ts +98 -0
  21. package/lib/ActionList/Item.js +276 -0
  22. package/lib/ActionList/List.d.ts +88 -0
  23. package/lib/ActionList/List.js +199 -0
  24. package/lib/ActionList/index.d.ts +17 -0
  25. package/lib/ActionList/index.js +29 -0
  26. package/lib/ActionList2/Description.d.ts +12 -0
  27. package/lib/ActionList2/Description.js +57 -0
  28. package/lib/ActionList2/Divider.d.ts +6 -0
  29. package/lib/ActionList2/Divider.js +40 -0
  30. package/lib/ActionList2/Group.d.ts +37 -0
  31. package/lib/ActionList2/Group.js +106 -0
  32. package/lib/ActionList2/Item.d.ts +63 -0
  33. package/lib/ActionList2/Item.js +260 -0
  34. package/lib/ActionList2/LinkItem.d.ts +17 -0
  35. package/lib/ActionList2/LinkItem.js +57 -0
  36. package/lib/ActionList2/List.d.ts +26 -0
  37. package/lib/ActionList2/List.js +68 -0
  38. package/lib/ActionList2/MenuContext.d.ts +10 -0
  39. package/lib/ActionList2/MenuContext.js +15 -0
  40. package/lib/ActionList2/Selection.d.ts +5 -0
  41. package/lib/ActionList2/Selection.js +97 -0
  42. package/lib/ActionList2/Visuals.d.ts +9 -0
  43. package/lib/ActionList2/Visuals.js +90 -0
  44. package/lib/ActionList2/index.d.ts +35 -0
  45. package/lib/ActionList2/index.js +47 -0
  46. package/lib/ActionMenu.d.ts +40 -0
  47. package/lib/ActionMenu.js +103 -0
  48. package/lib/ActionMenu2.d.ts +310 -0
  49. package/lib/ActionMenu2.js +91 -0
  50. package/lib/AnchoredOverlay/AnchoredOverlay.d.ts +62 -0
  51. package/lib/AnchoredOverlay/AnchoredOverlay.js +124 -0
  52. package/lib/AnchoredOverlay/index.d.ts +2 -0
  53. package/lib/AnchoredOverlay/index.js +13 -0
  54. package/lib/Autocomplete/Autocomplete.d.ts +305 -0
  55. package/lib/Autocomplete/Autocomplete.js +145 -0
  56. package/lib/Autocomplete/AutocompleteContext.d.ts +17 -0
  57. package/lib/Autocomplete/AutocompleteContext.js +11 -0
  58. package/lib/Autocomplete/AutocompleteInput.d.ts +293 -0
  59. package/lib/Autocomplete/AutocompleteInput.js +157 -0
  60. package/lib/Autocomplete/AutocompleteMenu.d.ts +72 -0
  61. package/lib/Autocomplete/AutocompleteMenu.js +224 -0
  62. package/lib/Autocomplete/AutocompleteOverlay.d.ts +20 -0
  63. package/lib/Autocomplete/AutocompleteOverlay.js +80 -0
  64. package/lib/Autocomplete/index.d.ts +2 -0
  65. package/lib/Autocomplete/index.js +15 -0
  66. package/lib/Avatar.d.ts +14 -0
  67. package/lib/Avatar.js +1 -12
  68. package/lib/AvatarPair.d.ts +8 -0
  69. package/lib/AvatarPair.js +9 -16
  70. package/lib/AvatarStack.d.ts +8 -0
  71. package/lib/AvatarStack.js +12 -23
  72. package/lib/BaseStyles.d.ts +14 -0
  73. package/lib/BaseStyles.js +25 -31
  74. package/lib/BorderBox.d.ts +7 -0
  75. package/lib/BorderBox.js +5 -16
  76. package/lib/Box.d.ts +6 -0
  77. package/lib/Box.js +2 -15
  78. package/lib/BranchName.d.ts +5 -0
  79. package/lib/BranchName.js +1 -14
  80. package/lib/Breadcrumbs.d.ts +41 -0
  81. package/lib/Breadcrumbs.js +82 -0
  82. package/lib/Button/Button.d.ts +284 -0
  83. package/lib/Button/Button.js +3 -15
  84. package/lib/Button/ButtonBase.d.ts +9 -0
  85. package/lib/Button/ButtonBase.js +2 -25
  86. package/lib/Button/ButtonClose.d.ts +279 -0
  87. package/lib/Button/ButtonClose.js +9 -26
  88. package/lib/Button/ButtonDanger.d.ts +284 -0
  89. package/lib/Button/ButtonDanger.js +2 -14
  90. package/lib/Button/ButtonGroup.d.ts +4 -0
  91. package/lib/Button/ButtonGroup.js +2 -8
  92. package/lib/Button/ButtonInvisible.d.ts +284 -0
  93. package/lib/Button/ButtonInvisible.js +3 -15
  94. package/lib/Button/ButtonOutline.d.ts +284 -0
  95. package/lib/Button/ButtonOutline.js +2 -14
  96. package/lib/Button/ButtonPrimary.d.ts +284 -0
  97. package/lib/Button/ButtonPrimary.js +2 -14
  98. package/lib/Button/ButtonStyles.d.ts +2 -0
  99. package/lib/Button/ButtonTableList.d.ts +5 -0
  100. package/lib/Button/ButtonTableList.js +1 -15
  101. package/lib/Button/index.d.ts +16 -0
  102. package/lib/Caret.d.ts +21 -0
  103. package/lib/Caret.js +14 -17
  104. package/lib/Checkbox.d.ts +29 -0
  105. package/lib/Checkbox.js +64 -0
  106. package/lib/CircleBadge.d.ts +24 -0
  107. package/lib/CircleBadge.js +2 -20
  108. package/lib/CircleOcticon.d.ts +392 -0
  109. package/lib/CircleOcticon.js +9 -18
  110. package/lib/CounterLabel.d.ts +7 -0
  111. package/lib/CounterLabel.js +3 -17
  112. package/lib/Details.d.ts +5 -0
  113. package/lib/Details.js +1 -11
  114. package/lib/Dialog/ConfirmationDialog.d.ts +44 -0
  115. package/lib/Dialog/ConfirmationDialog.js +191 -0
  116. package/lib/Dialog/Dialog.d.ts +163 -0
  117. package/lib/Dialog/Dialog.js +311 -0
  118. package/lib/Dialog.d.ts +406 -0
  119. package/lib/Dialog.js +34 -49
  120. package/lib/Dropdown.d.ts +1113 -0
  121. package/lib/Dropdown.js +45 -60
  122. package/lib/DropdownMenu/DropdownButton.d.ts +280 -0
  123. package/lib/DropdownMenu/DropdownButton.js +33 -0
  124. package/lib/DropdownMenu/DropdownMenu.d.ts +43 -0
  125. package/lib/DropdownMenu/DropdownMenu.js +94 -0
  126. package/lib/DropdownMenu/index.d.ts +4 -0
  127. package/lib/DropdownMenu/index.js +21 -0
  128. package/lib/DropdownStyles.d.ts +3 -0
  129. package/lib/DropdownStyles.js +6 -6
  130. package/lib/FilterList.d.ts +283 -0
  131. package/lib/FilterList.js +2 -30
  132. package/lib/FilteredActionList/FilteredActionList.d.ts +16 -0
  133. package/lib/FilteredActionList/FilteredActionList.js +137 -0
  134. package/lib/FilteredActionList/index.d.ts +2 -0
  135. package/lib/FilteredActionList/index.js +13 -0
  136. package/lib/FilteredSearch.d.ts +5 -0
  137. package/lib/FilteredSearch.js +1 -12
  138. package/lib/Flash.d.ts +8 -0
  139. package/lib/Flash.js +35 -14
  140. package/lib/Flex.d.ts +7 -0
  141. package/lib/Flex.js +3 -5
  142. package/lib/FormGroup.d.ts +11 -0
  143. package/lib/FormGroup.js +2 -22
  144. package/lib/Grid.d.ts +7 -0
  145. package/lib/Grid.js +4 -9
  146. package/lib/Header.d.ts +23 -0
  147. package/lib/Header.js +7 -37
  148. package/lib/Heading.d.ts +5 -0
  149. package/lib/Heading.js +1 -13
  150. package/lib/Label.d.ts +10 -0
  151. package/lib/Label.js +5 -19
  152. package/lib/LabelGroup.d.ts +5 -0
  153. package/lib/LabelGroup.js +1 -9
  154. package/lib/Link.d.ts +9 -0
  155. package/lib/Link.js +2 -30
  156. package/lib/NewButton/button-counter.d.ts +6 -0
  157. package/lib/NewButton/button-counter.js +31 -0
  158. package/lib/NewButton/button.d.ts +13 -0
  159. package/lib/NewButton/button.js +308 -0
  160. package/lib/NewButton/index.d.ts +14 -0
  161. package/lib/NewButton/index.js +15 -0
  162. package/lib/NewButton/types.d.ts +32 -0
  163. package/lib/{utils → NewButton}/types.js +0 -0
  164. package/lib/Overlay.d.ts +66 -0
  165. package/lib/Overlay.js +184 -0
  166. package/lib/Pagehead.d.ts +5 -0
  167. package/lib/Pagehead.js +1 -13
  168. package/lib/Pagination/Pagination.d.ts +24 -0
  169. package/lib/Pagination/Pagination.js +14 -29
  170. package/lib/Pagination/index.d.ts +3 -0
  171. package/lib/Pagination/model.d.ts +26 -0
  172. package/lib/Pagination/model.js +1 -1
  173. package/lib/PointerBox.d.ts +11 -0
  174. package/lib/PointerBox.js +4 -13
  175. package/lib/Popover.d.ts +20 -0
  176. package/lib/Popover.js +5 -29
  177. package/lib/Portal/Portal.d.ts +25 -0
  178. package/lib/Portal/Portal.js +101 -0
  179. package/lib/Portal/index.d.ts +4 -0
  180. package/lib/Portal/index.js +17 -0
  181. package/lib/Position.d.ts +34 -0
  182. package/lib/Position.js +46 -46
  183. package/lib/ProgressBar.d.ts +26 -0
  184. package/lib/ProgressBar.js +8 -27
  185. package/lib/SelectMenu/SelectMenu.d.ts +1670 -0
  186. package/lib/SelectMenu/SelectMenu.js +32 -44
  187. package/lib/SelectMenu/SelectMenuContext.d.ts +8 -0
  188. package/lib/SelectMenu/SelectMenuContext.js +1 -1
  189. package/lib/SelectMenu/SelectMenuDivider.d.ts +5 -0
  190. package/lib/SelectMenu/SelectMenuDivider.js +6 -14
  191. package/lib/SelectMenu/SelectMenuFilter.d.ts +9 -0
  192. package/lib/SelectMenu/SelectMenuFilter.js +13 -21
  193. package/lib/SelectMenu/SelectMenuFooter.d.ts +5 -0
  194. package/lib/SelectMenu/SelectMenuFooter.js +6 -14
  195. package/lib/SelectMenu/SelectMenuHeader.d.ts +10 -0
  196. package/lib/SelectMenu/SelectMenuHeader.js +4 -17
  197. package/lib/SelectMenu/SelectMenuItem.d.ts +14 -0
  198. package/lib/SelectMenu/SelectMenuItem.js +13 -21
  199. package/lib/SelectMenu/SelectMenuList.d.ts +5 -0
  200. package/lib/SelectMenu/SelectMenuList.js +6 -14
  201. package/lib/SelectMenu/SelectMenuLoadingAnimation.d.ts +7 -0
  202. package/lib/SelectMenu/SelectMenuLoadingAnimation.js +6 -17
  203. package/lib/SelectMenu/SelectMenuModal.d.ts +14 -0
  204. package/lib/SelectMenu/SelectMenuModal.js +11 -23
  205. package/lib/SelectMenu/SelectMenuTab.d.ts +13 -0
  206. package/lib/SelectMenu/SelectMenuTab.js +16 -26
  207. package/lib/SelectMenu/SelectMenuTabPanel.d.ts +12 -0
  208. package/lib/SelectMenu/SelectMenuTabPanel.js +14 -25
  209. package/lib/SelectMenu/SelectMenuTabs.d.ts +10 -0
  210. package/lib/SelectMenu/SelectMenuTabs.js +10 -17
  211. package/lib/SelectMenu/hooks/useKeyboardNav.d.ts +2 -0
  212. package/lib/SelectMenu/hooks/useKeyboardNav.js +2 -0
  213. package/lib/SelectMenu/index.d.ts +2 -0
  214. package/lib/SelectMenu/index.js +7 -5
  215. package/lib/SelectPanel/SelectPanel.d.ts +25 -0
  216. package/lib/SelectPanel/SelectPanel.js +147 -0
  217. package/lib/SelectPanel/index.d.ts +2 -0
  218. package/lib/SelectPanel/index.js +13 -0
  219. package/lib/SideNav.d.ts +34 -0
  220. package/lib/SideNav.js +23 -41
  221. package/lib/Spinner.d.ts +16 -0
  222. package/lib/Spinner.js +58 -0
  223. package/lib/StateLabel.d.ts +15 -0
  224. package/lib/StateLabel.js +53 -23
  225. package/lib/StyledOcticon.d.ts +11 -0
  226. package/lib/StyledOcticon.js +1 -15
  227. package/lib/SubNav.d.ts +26 -0
  228. package/lib/SubNav.js +10 -41
  229. package/lib/TabNav.d.ts +19 -0
  230. package/lib/TabNav.js +15 -37
  231. package/lib/Text.d.ts +6 -0
  232. package/lib/Text.js +0 -12
  233. package/lib/TextInput.d.ts +14 -0
  234. package/lib/TextInput.js +25 -76
  235. package/lib/TextInputWithTokens.d.ts +328 -0
  236. package/lib/TextInputWithTokens.js +318 -0
  237. package/lib/ThemeProvider.d.ts +26 -0
  238. package/lib/ThemeProvider.js +193 -0
  239. package/lib/Timeline.d.ts +33 -0
  240. package/lib/Timeline.js +34 -87
  241. package/lib/Token/AvatarToken.d.ts +7 -0
  242. package/lib/Token/AvatarToken.js +64 -0
  243. package/lib/Token/IssueLabelToken.d.ts +14 -0
  244. package/lib/Token/IssueLabelToken.js +144 -0
  245. package/lib/Token/Token.d.ts +15 -0
  246. package/lib/Token/Token.js +105 -0
  247. package/lib/Token/TokenBase.d.ts +31 -0
  248. package/lib/Token/TokenBase.js +104 -0
  249. package/lib/Token/_RemoveTokenButton.d.ts +12 -0
  250. package/lib/Token/_RemoveTokenButton.js +90 -0
  251. package/lib/Token/_TokenTextContainer.d.ts +3 -0
  252. package/lib/Token/_TokenTextContainer.js +17 -0
  253. package/lib/Token/index.d.ts +3 -0
  254. package/lib/Token/index.js +31 -0
  255. package/lib/Tooltip.d.ts +17 -0
  256. package/lib/Tooltip.js +4 -21
  257. package/lib/Truncate.d.ts +10 -0
  258. package/lib/Truncate.js +2 -18
  259. package/lib/UnderlineNav.d.ts +24 -0
  260. package/lib/UnderlineNav.js +3 -29
  261. package/lib/_TextInputWrapper.d.ts +10 -0
  262. package/lib/_TextInputWrapper.js +51 -0
  263. package/lib/_UnstyledTextInput.d.ts +2 -0
  264. package/lib/_UnstyledTextInput.js +20 -0
  265. package/lib/behaviors/anchoredPosition.d.ts +89 -0
  266. package/lib/behaviors/anchoredPosition.js +316 -0
  267. package/lib/behaviors/focusTrap.d.ts +12 -0
  268. package/lib/behaviors/focusTrap.js +179 -0
  269. package/lib/behaviors/focusZone.d.ts +137 -0
  270. package/lib/behaviors/focusZone.js +578 -0
  271. package/lib/behaviors/scrollIntoViewingArea.d.ts +1 -0
  272. package/lib/behaviors/scrollIntoViewingArea.js +39 -0
  273. package/lib/constants.d.ts +20 -0
  274. package/lib/constants.js +11 -27
  275. package/lib/drafts.d.ts +9 -0
  276. package/lib/drafts.js +44 -0
  277. package/lib/hooks/index.d.ts +11 -0
  278. package/lib/hooks/index.js +61 -0
  279. package/lib/hooks/useAnchoredPosition.d.ts +20 -0
  280. package/lib/hooks/useAnchoredPosition.js +51 -0
  281. package/lib/hooks/useCombinedRefs.d.ts +10 -0
  282. package/lib/hooks/useCombinedRefs.js +47 -0
  283. package/lib/hooks/useDetails.d.ts +17 -0
  284. package/lib/hooks/useDialog.d.ts +16 -0
  285. package/lib/hooks/useDialog.js +21 -6
  286. package/lib/hooks/useFocusTrap.d.ts +32 -0
  287. package/lib/hooks/useFocusTrap.js +69 -0
  288. package/lib/hooks/useFocusZone.d.ts +23 -0
  289. package/lib/hooks/useFocusZone.js +53 -0
  290. package/lib/hooks/useOnEscapePress.d.ts +23 -0
  291. package/lib/hooks/useOnEscapePress.js +69 -0
  292. package/lib/hooks/useOnOutsideClick.d.ts +8 -0
  293. package/lib/hooks/useOnOutsideClick.js +90 -0
  294. package/lib/hooks/useOpenAndCloseFocus.d.ts +8 -0
  295. package/lib/hooks/useOpenAndCloseFocus.js +36 -0
  296. package/lib/hooks/useOverlay.d.ts +15 -0
  297. package/lib/hooks/useOverlay.js +43 -0
  298. package/lib/hooks/useProvidedRefOrCreate.d.ts +10 -0
  299. package/lib/hooks/useProvidedRefOrCreate.js +24 -0
  300. package/lib/hooks/useProvidedStateOrCreate.d.ts +10 -0
  301. package/lib/hooks/useProvidedStateOrCreate.js +27 -0
  302. package/lib/hooks/useRenderForcingRef.d.ts +8 -0
  303. package/lib/hooks/useRenderForcingRef.js +25 -0
  304. package/lib/hooks/useResizeObserver.d.ts +1 -0
  305. package/lib/hooks/useResizeObserver.js +20 -0
  306. package/lib/hooks/useSafeTimeout.d.ts +12 -0
  307. package/lib/hooks/useSafeTimeout.js +38 -0
  308. package/lib/hooks/useScrollFlash.d.ts +6 -0
  309. package/lib/hooks/useScrollFlash.js +29 -0
  310. package/lib/index.d.ts +120 -0
  311. package/lib/index.js +191 -7
  312. package/lib/polyfills/eventListenerSignal.d.ts +6 -0
  313. package/lib/polyfills/eventListenerSignal.js +64 -0
  314. package/lib/sx.d.ts +14 -0
  315. package/lib/sx.js +8 -5
  316. package/lib/theme-preval.d.ts +49 -0
  317. package/lib/theme-preval.js +3119 -357
  318. package/lib/theme.d.ts +80 -0
  319. package/lib/theme.js +5 -8
  320. package/lib/utils/create-slots.d.ts +17 -0
  321. package/lib/utils/create-slots.js +105 -0
  322. package/lib/utils/deprecate.d.ts +18 -0
  323. package/lib/utils/deprecate.js +6 -5
  324. package/lib/utils/isNumeric.d.ts +1 -0
  325. package/lib/utils/isNumeric.js +1 -0
  326. package/lib/utils/iterateFocusableElements.d.ts +42 -0
  327. package/lib/utils/iterateFocusableElements.js +113 -0
  328. package/lib/utils/ssr.d.ts +1 -0
  329. package/lib/utils/ssr.js +19 -0
  330. package/lib/utils/test-deprecations.d.ts +1 -0
  331. package/lib/utils/test-deprecations.js +2 -1
  332. package/lib/utils/test-helpers.d.ts +0 -0
  333. package/lib/utils/test-helpers.js +9 -0
  334. package/lib/utils/test-matchers.d.ts +1 -0
  335. package/lib/utils/test-matchers.js +6 -50
  336. package/lib/utils/testing.d.ts +545 -0
  337. package/lib/utils/testing.js +65 -49
  338. package/lib/utils/theme.d.ts +9 -0
  339. package/lib/utils/theme.js +68 -0
  340. package/lib/utils/types/AriaRole.d.ts +1 -0
  341. package/lib/utils/types/AriaRole.js +1 -0
  342. package/lib/utils/types/ComponentProps.d.ts +9 -0
  343. package/lib/utils/types/ComponentProps.js +1 -0
  344. package/lib/utils/types/Flatten.d.ts +4 -0
  345. package/lib/utils/types/Flatten.js +1 -0
  346. package/lib/utils/types/KeyPaths.d.ts +3 -0
  347. package/lib/utils/types/KeyPaths.js +1 -0
  348. package/lib/utils/types/MandateProps.d.ts +3 -0
  349. package/lib/utils/types/MandateProps.js +1 -0
  350. package/lib/utils/types/Merge.d.ts +19 -0
  351. package/lib/utils/types/Merge.js +1 -0
  352. package/lib/utils/types/index.d.ts +5 -0
  353. package/lib/utils/types/index.js +70 -0
  354. package/lib/utils/uniqueId.d.ts +1 -0
  355. package/lib/utils/uniqueId.js +12 -0
  356. package/lib/utils/use-force-update.d.ts +1 -0
  357. package/lib/utils/use-force-update.js +19 -0
  358. package/lib/utils/useIsomorphicLayoutEffect.d.ts +3 -0
  359. package/lib/utils/useIsomorphicLayoutEffect.js +12 -0
  360. package/lib/utils/userAgent.d.ts +1 -0
  361. package/lib/utils/userAgent.js +15 -0
  362. package/lib-esm/ActionList/Divider.d.ts +9 -0
  363. package/lib-esm/ActionList/Divider.js +23 -0
  364. package/lib-esm/ActionList/Group.d.ts +28 -0
  365. package/lib-esm/ActionList/Group.js +24 -0
  366. package/lib-esm/ActionList/Header.d.ts +29 -0
  367. package/lib-esm/ActionList/Header.js +33 -0
  368. package/lib-esm/ActionList/Item.d.ts +98 -0
  369. package/lib-esm/ActionList/Item.js +241 -0
  370. package/lib-esm/ActionList/List.d.ts +88 -0
  371. package/lib-esm/ActionList/List.js +181 -0
  372. package/lib-esm/ActionList/index.d.ts +17 -0
  373. package/lib-esm/ActionList/index.js +18 -0
  374. package/lib-esm/ActionList2/Description.d.ts +12 -0
  375. package/lib-esm/ActionList2/Description.js +41 -0
  376. package/lib-esm/ActionList2/Divider.d.ts +6 -0
  377. package/lib-esm/ActionList2/Divider.js +26 -0
  378. package/lib-esm/ActionList2/Group.d.ts +37 -0
  379. package/lib-esm/ActionList2/Group.js +87 -0
  380. package/lib-esm/ActionList2/Item.d.ts +63 -0
  381. package/lib-esm/ActionList2/Item.js +224 -0
  382. package/lib-esm/ActionList2/LinkItem.d.ts +17 -0
  383. package/lib-esm/ActionList2/LinkItem.js +43 -0
  384. package/lib-esm/ActionList2/List.d.ts +26 -0
  385. package/lib-esm/ActionList2/List.js +44 -0
  386. package/lib-esm/ActionList2/MenuContext.d.ts +10 -0
  387. package/lib-esm/ActionList2/MenuContext.js +3 -0
  388. package/lib-esm/ActionList2/Selection.d.ts +5 -0
  389. package/lib-esm/ActionList2/Selection.js +77 -0
  390. package/lib-esm/ActionList2/Visuals.d.ts +9 -0
  391. package/lib-esm/ActionList2/Visuals.js +68 -0
  392. package/lib-esm/ActionList2/index.d.ts +35 -0
  393. package/lib-esm/ActionList2/index.js +33 -0
  394. package/lib-esm/ActionMenu.d.ts +40 -0
  395. package/lib-esm/ActionMenu.js +82 -0
  396. package/lib-esm/ActionMenu2.d.ts +310 -0
  397. package/lib-esm/ActionMenu2.js +67 -0
  398. package/lib-esm/AnchoredOverlay/AnchoredOverlay.d.ts +62 -0
  399. package/lib-esm/AnchoredOverlay/AnchoredOverlay.js +104 -0
  400. package/lib-esm/AnchoredOverlay/index.d.ts +2 -0
  401. package/lib-esm/AnchoredOverlay/index.js +1 -0
  402. package/lib-esm/Autocomplete/Autocomplete.d.ts +305 -0
  403. package/lib-esm/Autocomplete/Autocomplete.js +123 -0
  404. package/lib-esm/Autocomplete/AutocompleteContext.d.ts +17 -0
  405. package/lib-esm/Autocomplete/AutocompleteContext.js +2 -0
  406. package/lib-esm/Autocomplete/AutocompleteInput.d.ts +293 -0
  407. package/lib-esm/Autocomplete/AutocompleteInput.js +138 -0
  408. package/lib-esm/Autocomplete/AutocompleteMenu.d.ts +72 -0
  409. package/lib-esm/Autocomplete/AutocompleteMenu.js +205 -0
  410. package/lib-esm/Autocomplete/AutocompleteOverlay.d.ts +20 -0
  411. package/lib-esm/Autocomplete/AutocompleteOverlay.js +62 -0
  412. package/lib-esm/Autocomplete/index.d.ts +2 -0
  413. package/lib-esm/Autocomplete/index.js +1 -0
  414. package/lib-esm/Avatar.d.ts +14 -0
  415. package/lib-esm/Avatar.js +2 -11
  416. package/lib-esm/AvatarPair.d.ts +8 -0
  417. package/lib-esm/AvatarPair.js +8 -14
  418. package/lib-esm/AvatarStack.d.ts +8 -0
  419. package/lib-esm/AvatarStack.js +12 -21
  420. package/lib-esm/BaseStyles.d.ts +14 -0
  421. package/lib-esm/BaseStyles.js +23 -26
  422. package/lib-esm/BorderBox.d.ts +7 -0
  423. package/lib-esm/BorderBox.js +6 -12
  424. package/lib-esm/Box.d.ts +6 -0
  425. package/lib-esm/Box.js +2 -13
  426. package/lib-esm/BranchName.d.ts +5 -0
  427. package/lib-esm/BranchName.js +2 -13
  428. package/lib-esm/Breadcrumbs.d.ts +41 -0
  429. package/lib-esm/Breadcrumbs.js +58 -0
  430. package/lib-esm/Button/Button.d.ts +284 -0
  431. package/lib-esm/Button/Button.js +3 -10
  432. package/lib-esm/Button/ButtonBase.d.ts +9 -0
  433. package/lib-esm/Button/ButtonBase.js +1 -19
  434. package/lib-esm/Button/ButtonClose.d.ts +279 -0
  435. package/lib-esm/Button/ButtonClose.js +5 -20
  436. package/lib-esm/Button/ButtonDanger.d.ts +284 -0
  437. package/lib-esm/Button/ButtonDanger.js +2 -9
  438. package/lib-esm/Button/ButtonGroup.d.ts +4 -0
  439. package/lib-esm/Button/ButtonGroup.js +2 -7
  440. package/lib-esm/Button/ButtonInvisible.d.ts +284 -0
  441. package/lib-esm/Button/ButtonInvisible.js +3 -10
  442. package/lib-esm/Button/ButtonOutline.d.ts +284 -0
  443. package/lib-esm/Button/ButtonOutline.js +2 -9
  444. package/lib-esm/Button/ButtonPrimary.d.ts +284 -0
  445. package/lib-esm/Button/ButtonPrimary.js +2 -9
  446. package/lib-esm/Button/ButtonStyles.d.ts +2 -0
  447. package/lib-esm/Button/ButtonTableList.d.ts +5 -0
  448. package/lib-esm/Button/ButtonTableList.js +2 -14
  449. package/lib-esm/Button/index.d.ts +16 -0
  450. package/lib-esm/Caret.d.ts +21 -0
  451. package/lib-esm/Caret.js +13 -16
  452. package/lib-esm/Checkbox.d.ts +29 -0
  453. package/lib-esm/Checkbox.js +44 -0
  454. package/lib-esm/CircleBadge.d.ts +24 -0
  455. package/lib-esm/CircleBadge.js +3 -19
  456. package/lib-esm/CircleOcticon.d.ts +392 -0
  457. package/lib-esm/CircleOcticon.js +9 -15
  458. package/lib-esm/CounterLabel.d.ts +7 -0
  459. package/lib-esm/CounterLabel.js +4 -16
  460. package/lib-esm/Details.d.ts +5 -0
  461. package/lib-esm/Details.js +1 -9
  462. package/lib-esm/Dialog/ConfirmationDialog.d.ts +44 -0
  463. package/lib-esm/Dialog/ConfirmationDialog.js +169 -0
  464. package/lib-esm/Dialog/Dialog.d.ts +163 -0
  465. package/lib-esm/Dialog/Dialog.js +275 -0
  466. package/lib-esm/Dialog.d.ts +406 -0
  467. package/lib-esm/Dialog.js +31 -46
  468. package/lib-esm/Dropdown.d.ts +1113 -0
  469. package/lib-esm/Dropdown.js +38 -58
  470. package/lib-esm/DropdownMenu/DropdownButton.d.ts +280 -0
  471. package/lib-esm/DropdownMenu/DropdownButton.js +18 -0
  472. package/lib-esm/DropdownMenu/DropdownMenu.d.ts +43 -0
  473. package/lib-esm/DropdownMenu/DropdownMenu.js +77 -0
  474. package/lib-esm/DropdownMenu/index.d.ts +4 -0
  475. package/lib-esm/DropdownMenu/index.js +2 -0
  476. package/lib-esm/DropdownStyles.d.ts +3 -0
  477. package/lib-esm/DropdownStyles.js +6 -6
  478. package/lib-esm/FilterList.d.ts +283 -0
  479. package/lib-esm/FilterList.js +3 -29
  480. package/lib-esm/FilteredActionList/FilteredActionList.d.ts +16 -0
  481. package/lib-esm/FilteredActionList/FilteredActionList.js +109 -0
  482. package/lib-esm/FilteredActionList/index.d.ts +2 -0
  483. package/lib-esm/FilteredActionList/index.js +1 -0
  484. package/lib-esm/FilteredSearch.d.ts +5 -0
  485. package/lib-esm/FilteredSearch.js +2 -11
  486. package/lib-esm/Flash.d.ts +8 -0
  487. package/lib-esm/Flash.js +36 -13
  488. package/lib-esm/Flex.d.ts +7 -0
  489. package/lib-esm/Flex.js +4 -4
  490. package/lib-esm/FormGroup.d.ts +11 -0
  491. package/lib-esm/FormGroup.js +3 -20
  492. package/lib-esm/Grid.d.ts +7 -0
  493. package/lib-esm/Grid.js +5 -7
  494. package/lib-esm/Header.d.ts +23 -0
  495. package/lib-esm/Header.js +6 -34
  496. package/lib-esm/Heading.d.ts +5 -0
  497. package/lib-esm/Heading.js +2 -12
  498. package/lib-esm/Label.d.ts +10 -0
  499. package/lib-esm/Label.js +3 -15
  500. package/lib-esm/LabelGroup.d.ts +5 -0
  501. package/lib-esm/LabelGroup.js +2 -9
  502. package/lib-esm/Link.d.ts +9 -0
  503. package/lib-esm/Link.js +2 -28
  504. package/lib-esm/NewButton/button-counter.d.ts +6 -0
  505. package/lib-esm/NewButton/button-counter.js +18 -0
  506. package/lib-esm/NewButton/button.d.ts +13 -0
  507. package/lib-esm/NewButton/button.js +287 -0
  508. package/lib-esm/NewButton/index.d.ts +14 -0
  509. package/lib-esm/NewButton/index.js +5 -0
  510. package/lib-esm/NewButton/types.d.ts +32 -0
  511. package/lib-esm/NewButton/types.js +1 -0
  512. package/lib-esm/Overlay.d.ts +66 -0
  513. package/lib-esm/Overlay.js +160 -0
  514. package/lib-esm/Pagehead.d.ts +5 -0
  515. package/lib-esm/Pagehead.js +2 -12
  516. package/lib-esm/Pagination/Pagination.d.ts +24 -0
  517. package/lib-esm/Pagination/Pagination.js +15 -28
  518. package/lib-esm/Pagination/index.d.ts +3 -0
  519. package/lib-esm/Pagination/model.d.ts +26 -0
  520. package/lib-esm/Pagination/model.js +1 -1
  521. package/lib-esm/PointerBox.d.ts +11 -0
  522. package/lib-esm/PointerBox.js +4 -11
  523. package/lib-esm/Popover.d.ts +20 -0
  524. package/lib-esm/Popover.js +5 -27
  525. package/lib-esm/Portal/Portal.d.ts +25 -0
  526. package/lib-esm/Portal/Portal.js +83 -0
  527. package/lib-esm/Portal/index.d.ts +4 -0
  528. package/lib-esm/Portal/index.js +3 -0
  529. package/lib-esm/Position.d.ts +34 -0
  530. package/lib-esm/Position.js +42 -37
  531. package/lib-esm/ProgressBar.d.ts +26 -0
  532. package/lib-esm/ProgressBar.js +9 -25
  533. package/lib-esm/SelectMenu/SelectMenu.d.ts +1670 -0
  534. package/lib-esm/SelectMenu/SelectMenu.js +27 -38
  535. package/lib-esm/SelectMenu/SelectMenuContext.d.ts +8 -0
  536. package/lib-esm/SelectMenu/SelectMenuContext.js +1 -1
  537. package/lib-esm/SelectMenu/SelectMenuDivider.d.ts +5 -0
  538. package/lib-esm/SelectMenu/SelectMenuDivider.js +4 -11
  539. package/lib-esm/SelectMenu/SelectMenuFilter.d.ts +9 -0
  540. package/lib-esm/SelectMenu/SelectMenuFilter.js +13 -19
  541. package/lib-esm/SelectMenu/SelectMenuFooter.d.ts +5 -0
  542. package/lib-esm/SelectMenu/SelectMenuFooter.js +4 -11
  543. package/lib-esm/SelectMenu/SelectMenuHeader.d.ts +10 -0
  544. package/lib-esm/SelectMenu/SelectMenuHeader.js +7 -18
  545. package/lib-esm/SelectMenu/SelectMenuItem.d.ts +14 -0
  546. package/lib-esm/SelectMenu/SelectMenuItem.js +11 -17
  547. package/lib-esm/SelectMenu/SelectMenuList.d.ts +5 -0
  548. package/lib-esm/SelectMenu/SelectMenuList.js +4 -11
  549. package/lib-esm/SelectMenu/SelectMenuLoadingAnimation.d.ts +7 -0
  550. package/lib-esm/SelectMenu/SelectMenuLoadingAnimation.js +7 -13
  551. package/lib-esm/SelectMenu/SelectMenuModal.d.ts +14 -0
  552. package/lib-esm/SelectMenu/SelectMenuModal.js +10 -20
  553. package/lib-esm/SelectMenu/SelectMenuTab.d.ts +13 -0
  554. package/lib-esm/SelectMenu/SelectMenuTab.js +13 -21
  555. package/lib-esm/SelectMenu/SelectMenuTabPanel.d.ts +12 -0
  556. package/lib-esm/SelectMenu/SelectMenuTabPanel.js +9 -19
  557. package/lib-esm/SelectMenu/SelectMenuTabs.d.ts +10 -0
  558. package/lib-esm/SelectMenu/SelectMenuTabs.js +8 -15
  559. package/lib-esm/SelectMenu/hooks/useKeyboardNav.d.ts +2 -0
  560. package/lib-esm/SelectMenu/hooks/useKeyboardNav.js +2 -0
  561. package/lib-esm/SelectMenu/index.d.ts +2 -0
  562. package/lib-esm/SelectMenu/index.js +1 -2
  563. package/lib-esm/SelectPanel/SelectPanel.d.ts +25 -0
  564. package/lib-esm/SelectPanel/SelectPanel.js +127 -0
  565. package/lib-esm/SelectPanel/index.d.ts +2 -0
  566. package/lib-esm/SelectPanel/index.js +1 -0
  567. package/lib-esm/SideNav.d.ts +34 -0
  568. package/lib-esm/SideNav.js +20 -36
  569. package/lib-esm/Spinner.d.ts +16 -0
  570. package/lib-esm/Spinner.js +45 -0
  571. package/lib-esm/StateLabel.d.ts +15 -0
  572. package/lib-esm/StateLabel.js +55 -23
  573. package/lib-esm/StyledOcticon.d.ts +11 -0
  574. package/lib-esm/StyledOcticon.js +1 -12
  575. package/lib-esm/SubNav.d.ts +26 -0
  576. package/lib-esm/SubNav.js +10 -38
  577. package/lib-esm/TabNav.d.ts +19 -0
  578. package/lib-esm/TabNav.js +13 -33
  579. package/lib-esm/Text.d.ts +6 -0
  580. package/lib-esm/Text.js +0 -10
  581. package/lib-esm/TextInput.d.ts +14 -0
  582. package/lib-esm/TextInput.js +24 -62
  583. package/lib-esm/TextInputWithTokens.d.ts +328 -0
  584. package/lib-esm/TextInputWithTokens.js +291 -0
  585. package/lib-esm/ThemeProvider.d.ts +26 -0
  586. package/lib-esm/ThemeProvider.js +161 -0
  587. package/lib-esm/Timeline.d.ts +33 -0
  588. package/lib-esm/Timeline.js +26 -81
  589. package/lib-esm/Token/AvatarToken.d.ts +7 -0
  590. package/lib-esm/Token/AvatarToken.js +43 -0
  591. package/lib-esm/Token/IssueLabelToken.d.ts +14 -0
  592. package/lib-esm/Token/IssueLabelToken.js +124 -0
  593. package/lib-esm/Token/Token.d.ts +15 -0
  594. package/lib-esm/Token/Token.js +84 -0
  595. package/lib-esm/Token/TokenBase.d.ts +31 -0
  596. package/lib-esm/Token/TokenBase.js +83 -0
  597. package/lib-esm/Token/_RemoveTokenButton.d.ts +12 -0
  598. package/lib-esm/Token/_RemoveTokenButton.js +69 -0
  599. package/lib-esm/Token/_TokenTextContainer.d.ts +3 -0
  600. package/lib-esm/Token/_TokenTextContainer.js +6 -0
  601. package/lib-esm/Token/index.d.ts +3 -0
  602. package/lib-esm/Token/index.js +3 -0
  603. package/lib-esm/Tooltip.d.ts +17 -0
  604. package/lib-esm/Tooltip.js +4 -19
  605. package/lib-esm/Truncate.d.ts +10 -0
  606. package/lib-esm/Truncate.js +2 -15
  607. package/lib-esm/UnderlineNav.d.ts +24 -0
  608. package/lib-esm/UnderlineNav.js +5 -28
  609. package/lib-esm/_TextInputWrapper.d.ts +10 -0
  610. package/lib-esm/_TextInputWrapper.js +31 -0
  611. package/lib-esm/_UnstyledTextInput.d.ts +2 -0
  612. package/lib-esm/_UnstyledTextInput.js +7 -0
  613. package/lib-esm/behaviors/anchoredPosition.d.ts +89 -0
  614. package/lib-esm/behaviors/anchoredPosition.js +309 -0
  615. package/lib-esm/behaviors/focusTrap.d.ts +12 -0
  616. package/lib-esm/behaviors/focusTrap.js +170 -0
  617. package/lib-esm/behaviors/focusZone.d.ts +137 -0
  618. package/lib-esm/behaviors/focusZone.js +560 -0
  619. package/lib-esm/behaviors/scrollIntoViewingArea.d.ts +1 -0
  620. package/lib-esm/behaviors/scrollIntoViewingArea.js +30 -0
  621. package/lib-esm/constants.d.ts +20 -0
  622. package/lib-esm/constants.js +9 -23
  623. package/lib-esm/drafts.d.ts +9 -0
  624. package/lib-esm/drafts.js +10 -0
  625. package/lib-esm/hooks/index.d.ts +11 -0
  626. package/lib-esm/hooks/index.js +7 -0
  627. package/lib-esm/hooks/useAnchoredPosition.d.ts +20 -0
  628. package/lib-esm/hooks/useAnchoredPosition.js +35 -0
  629. package/lib-esm/hooks/useCombinedRefs.d.ts +10 -0
  630. package/lib-esm/hooks/useCombinedRefs.js +37 -0
  631. package/lib-esm/hooks/useDetails.d.ts +17 -0
  632. package/lib-esm/hooks/useDialog.d.ts +16 -0
  633. package/lib-esm/hooks/useDialog.js +21 -6
  634. package/lib-esm/hooks/useFocusTrap.d.ts +32 -0
  635. package/lib-esm/hooks/useFocusTrap.js +54 -0
  636. package/lib-esm/hooks/useFocusZone.d.ts +23 -0
  637. package/lib-esm/hooks/useFocusZone.js +37 -0
  638. package/lib-esm/hooks/useOnEscapePress.d.ts +23 -0
  639. package/lib-esm/hooks/useOnEscapePress.js +59 -0
  640. package/lib-esm/hooks/useOnOutsideClick.d.ts +8 -0
  641. package/lib-esm/hooks/useOnOutsideClick.js +79 -0
  642. package/lib-esm/hooks/useOpenAndCloseFocus.d.ts +8 -0
  643. package/lib-esm/hooks/useOpenAndCloseFocus.js +27 -0
  644. package/lib-esm/hooks/useOverlay.d.ts +15 -0
  645. package/lib-esm/hooks/useOverlay.js +30 -0
  646. package/lib-esm/hooks/useProvidedRefOrCreate.d.ts +10 -0
  647. package/lib-esm/hooks/useProvidedRefOrCreate.js +14 -0
  648. package/lib-esm/hooks/useProvidedStateOrCreate.d.ts +10 -0
  649. package/lib-esm/hooks/useProvidedStateOrCreate.js +20 -0
  650. package/lib-esm/hooks/useRenderForcingRef.d.ts +8 -0
  651. package/lib-esm/hooks/useRenderForcingRef.js +18 -0
  652. package/lib-esm/hooks/useResizeObserver.d.ts +1 -0
  653. package/lib-esm/hooks/useResizeObserver.js +10 -0
  654. package/lib-esm/hooks/useSafeTimeout.d.ts +12 -0
  655. package/lib-esm/hooks/useSafeTimeout.js +31 -0
  656. package/lib-esm/hooks/useScrollFlash.d.ts +6 -0
  657. package/lib-esm/hooks/useScrollFlash.js +22 -0
  658. package/lib-esm/index.d.ts +120 -0
  659. package/lib-esm/index.js +29 -7
  660. package/lib-esm/polyfills/eventListenerSignal.d.ts +6 -0
  661. package/lib-esm/polyfills/eventListenerSignal.js +57 -0
  662. package/lib-esm/sx.d.ts +14 -0
  663. package/lib-esm/sx.js +3 -5
  664. package/lib-esm/theme-preval.d.ts +49 -0
  665. package/lib-esm/theme-preval.js +3119 -357
  666. package/lib-esm/theme.d.ts +80 -0
  667. package/lib-esm/theme.js +3 -8
  668. package/lib-esm/utils/create-slots.d.ts +17 -0
  669. package/lib-esm/utils/create-slots.js +84 -0
  670. package/lib-esm/utils/deprecate.d.ts +18 -0
  671. package/lib-esm/utils/deprecate.js +6 -5
  672. package/lib-esm/utils/isNumeric.d.ts +1 -0
  673. package/lib-esm/utils/isNumeric.js +1 -0
  674. package/lib-esm/utils/iterateFocusableElements.d.ts +42 -0
  675. package/lib-esm/utils/iterateFocusableElements.js +102 -0
  676. package/lib-esm/utils/ssr.d.ts +1 -0
  677. package/lib-esm/utils/ssr.js +1 -0
  678. package/lib-esm/utils/test-deprecations.d.ts +1 -0
  679. package/lib-esm/utils/test-deprecations.js +1 -1
  680. package/lib-esm/utils/{types.js → test-helpers.d.ts} +0 -0
  681. package/lib-esm/utils/test-helpers.js +7 -0
  682. package/lib-esm/utils/test-matchers.d.ts +1 -0
  683. package/lib-esm/utils/test-matchers.js +7 -49
  684. package/lib-esm/utils/testing.d.ts +545 -0
  685. package/lib-esm/utils/testing.js +60 -46
  686. package/lib-esm/utils/theme.d.ts +9 -0
  687. package/lib-esm/utils/theme.js +66 -0
  688. package/lib-esm/utils/types/AriaRole.d.ts +1 -0
  689. package/lib-esm/utils/types/AriaRole.js +1 -0
  690. package/lib-esm/utils/types/ComponentProps.d.ts +9 -0
  691. package/lib-esm/utils/types/ComponentProps.js +1 -0
  692. package/lib-esm/utils/types/Flatten.d.ts +4 -0
  693. package/lib-esm/utils/types/Flatten.js +1 -0
  694. package/lib-esm/utils/types/KeyPaths.d.ts +3 -0
  695. package/lib-esm/utils/types/KeyPaths.js +1 -0
  696. package/lib-esm/utils/types/MandateProps.d.ts +3 -0
  697. package/lib-esm/utils/types/MandateProps.js +1 -0
  698. package/lib-esm/utils/types/Merge.d.ts +19 -0
  699. package/lib-esm/utils/types/Merge.js +1 -0
  700. package/lib-esm/utils/types/index.d.ts +5 -0
  701. package/lib-esm/utils/types/index.js +5 -0
  702. package/lib-esm/utils/uniqueId.d.ts +1 -0
  703. package/lib-esm/utils/uniqueId.js +5 -0
  704. package/lib-esm/utils/use-force-update.d.ts +1 -0
  705. package/lib-esm/utils/use-force-update.js +6 -0
  706. package/lib-esm/utils/useIsomorphicLayoutEffect.d.ts +3 -0
  707. package/lib-esm/utils/useIsomorphicLayoutEffect.js +3 -0
  708. package/lib-esm/utils/userAgent.d.ts +1 -0
  709. package/lib-esm/utils/userAgent.js +8 -0
  710. package/package.json +114 -93
  711. package/index.d.ts +0 -828
  712. package/lib/Breadcrumb.js +0 -96
  713. package/lib/hooks/useMouseIntent.js +0 -58
  714. package/lib/stories/Button.stories.js +0 -100
  715. package/lib-esm/Breadcrumb.js +0 -70
  716. package/lib-esm/hooks/useMouseIntent.js +0 -50
  717. package/lib-esm/stories/Button.stories.js +0 -65
@@ -0,0 +1,9 @@
1
+ /// <reference types="react" />
2
+ export declare const StyledDivider: import("styled-components").StyledComponent<"div", any, {}, never>;
3
+ /**
4
+ * Visually separates `Item`s or `Group`s in an `ActionList`.
5
+ */
6
+ export declare function Divider(): JSX.Element;
7
+ export declare namespace Divider {
8
+ var renderItem: typeof Divider;
9
+ }
@@ -0,0 +1,40 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.Divider = Divider;
7
+ exports.StyledDivider = void 0;
8
+
9
+ var _react = _interopRequireDefault(require("react"));
10
+
11
+ var _styledComponents = _interopRequireDefault(require("styled-components"));
12
+
13
+ var _constants = require("../constants");
14
+
15
+ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
16
+
17
+ const StyledDivider = _styledComponents.default.div.withConfig({
18
+ displayName: "Divider__StyledDivider",
19
+ componentId: "sc-42656i-0"
20
+ })(["height:1px;background:", ";margin-top:calc(", " - 1px);margin-bottom:", ";"], (0, _constants.get)('colors.border.muted'), (0, _constants.get)('space.2'), (0, _constants.get)('space.2'));
21
+ /**
22
+ * Visually separates `Item`s or `Group`s in an `ActionList`.
23
+ */
24
+
25
+
26
+ exports.StyledDivider = StyledDivider;
27
+
28
+ function Divider() {
29
+ return /*#__PURE__*/_react.default.createElement(StyledDivider, null);
30
+ }
31
+
32
+ Divider.displayName = "Divider";
33
+
34
+ /**
35
+ * `Divider` fulfills the `ItemPropsWithCustomRenderer` contract,
36
+ * so it can be used inline in an `ActionList`’s `items` prop.
37
+ * In other words, `items={[ActionList.Divider]}` is supported as a concise
38
+ * alternative to `items={[{renderItem: () => <ActionList.Divider />}]}`.
39
+ */
40
+ Divider.renderItem = Divider;
@@ -0,0 +1,28 @@
1
+ import React from 'react';
2
+ import { SxProp } from '../sx';
3
+ import { HeaderProps } from './Header';
4
+ /**
5
+ * Contract for props passed to the `Group` component.
6
+ */
7
+ export interface GroupProps extends React.ComponentPropsWithoutRef<'div'>, SxProp {
8
+ /**
9
+ * Props for a `Header` to render in the `Group`.
10
+ */
11
+ header?: HeaderProps;
12
+ /**
13
+ * The id of the group.
14
+ */
15
+ groupId?: string;
16
+ /**
17
+ * `Items` to render in the `Group`.
18
+ */
19
+ items?: JSX.Element[];
20
+ /**
21
+ * Whether to display a divider above each `Item` in this `Group` when it does not follow a `Header` or `Divider`.
22
+ */
23
+ showItemDividers?: boolean;
24
+ }
25
+ /**
26
+ * Collects related `Items` in an `ActionList`.
27
+ */
28
+ export declare function Group({ header, items, ...props }: GroupProps): JSX.Element;
@@ -0,0 +1,35 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.Group = Group;
7
+
8
+ var _react = _interopRequireDefault(require("react"));
9
+
10
+ var _styledComponents = _interopRequireDefault(require("styled-components"));
11
+
12
+ var _sx = _interopRequireDefault(require("../sx"));
13
+
14
+ var _Header = require("./Header");
15
+
16
+ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
17
+
18
+ const StyledGroup = _styledComponents.default.div.withConfig({
19
+ displayName: "Group__StyledGroup",
20
+ componentId: "sc-10w5bj9-0"
21
+ })(["", ""], _sx.default);
22
+ /**
23
+ * Collects related `Items` in an `ActionList`.
24
+ */
25
+
26
+
27
+ function Group({
28
+ header,
29
+ items,
30
+ ...props
31
+ }) {
32
+ return /*#__PURE__*/_react.default.createElement(StyledGroup, props, header && /*#__PURE__*/_react.default.createElement(_Header.Header, header), items);
33
+ }
34
+
35
+ Group.displayName = "Group";
@@ -0,0 +1,29 @@
1
+ import React from 'react';
2
+ import { SxProp } from '../sx';
3
+ /**
4
+ * Contract for props passed to the `Header` component.
5
+ */
6
+ export interface HeaderProps extends React.ComponentPropsWithoutRef<'div'>, SxProp {
7
+ /**
8
+ * Style variations. Usage is discretionary.
9
+ *
10
+ * - `"filled"` - Superimposed on a background, offset from nearby content
11
+ * - `"subtle"` - Relatively less offset from nearby content
12
+ */
13
+ variant?: 'subtle' | 'filled';
14
+ /**
15
+ * Primary text which names a `Group`.
16
+ */
17
+ title: string;
18
+ /**
19
+ * Secondary text which provides additional information about a `Group`.
20
+ */
21
+ auxiliaryText?: string;
22
+ }
23
+ export declare const StyledHeader: import("styled-components").StyledComponent<"div", any, {
24
+ variant: HeaderProps['variant'];
25
+ } & SxProp, never>;
26
+ /**
27
+ * Displays the name and description of a `Group`.
28
+ */
29
+ export declare function Header({ variant, title, auxiliaryText, children: _children, ...props }: HeaderProps): JSX.Element;
@@ -0,0 +1,51 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.Header = Header;
7
+ exports.StyledHeader = void 0;
8
+
9
+ var _react = _interopRequireDefault(require("react"));
10
+
11
+ var _styledComponents = _interopRequireWildcard(require("styled-components"));
12
+
13
+ var _constants = require("../constants");
14
+
15
+ var _sx = _interopRequireDefault(require("../sx"));
16
+
17
+ function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function (nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
18
+
19
+ function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || typeof obj !== "object" && typeof obj !== "function") { return { default: obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj.default = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
20
+
21
+ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
22
+
23
+ function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
24
+
25
+ const StyledHeader = _styledComponents.default.div.withConfig({
26
+ displayName: "Header__StyledHeader",
27
+ componentId: "qmofje-0"
28
+ })(["{}padding:6px ", ";font-size:", ";font-weight:", ";color:", ";", " ", ""], (0, _constants.get)('space.3'), (0, _constants.get)('fontSizes.0'), (0, _constants.get)('fontWeights.bold'), (0, _constants.get)('colors.fg.muted'), ({
29
+ variant
30
+ }) => variant === 'filled' && (0, _styledComponents.css)(["background:", ";margin:", " 0;border-top:1px solid ", ";border-bottom:1px solid ", ";&:first-child{margin-top:0;}"], (0, _constants.get)('colors.canvas.subtle'), (0, _constants.get)('space.2'), (0, _constants.get)('colors.neutral.muted'), (0, _constants.get)('colors.neutral.muted')), _sx.default);
31
+ /**
32
+ * Displays the name and description of a `Group`.
33
+ */
34
+
35
+
36
+ exports.StyledHeader = StyledHeader;
37
+
38
+ function Header({
39
+ variant = 'subtle',
40
+ title,
41
+ auxiliaryText,
42
+ children: _children,
43
+ ...props
44
+ }) {
45
+ return /*#__PURE__*/_react.default.createElement(StyledHeader, _extends({
46
+ role: "heading",
47
+ variant: variant
48
+ }, props), title, auxiliaryText && /*#__PURE__*/_react.default.createElement("span", null, auxiliaryText));
49
+ }
50
+
51
+ Header.displayName = "Header";
@@ -0,0 +1,98 @@
1
+ import { IconProps } from '@primer/octicons-react';
2
+ import React from 'react';
3
+ import { SxProp } from '../sx';
4
+ import { ItemInput } from './List';
5
+ import { ForwardRefComponent as PolymorphicForwardRefComponent } from '@radix-ui/react-polymorphic';
6
+ import { AriaRole } from '../utils/types';
7
+ /**
8
+ * Contract for props passed to the `Item` component.
9
+ */
10
+ export interface ItemProps extends SxProp {
11
+ /**
12
+ * Primary text which names an `Item`.
13
+ */
14
+ text?: string;
15
+ /**
16
+ * Secondary text which provides additional information about an `Item`.
17
+ */
18
+ description?: string;
19
+ /**
20
+ * Secondary text style variations. Usage is discretionary.
21
+ *
22
+ * - `"inline"` - Secondary text is positioned beside primary text.
23
+ * - `"block"` - Secondary text is positioned below primary text.
24
+ */
25
+ descriptionVariant?: 'inline' | 'block';
26
+ /**
27
+ * Icon (or similar) positioned before `Item` text.
28
+ */
29
+ leadingVisual?: React.FunctionComponent<IconProps>;
30
+ /**
31
+ * @deprecated Use `trailingVisual` instead
32
+ * Icon (or similar) positioned after `Item` text.
33
+ */
34
+ trailingIcon?: React.FunctionComponent<IconProps>;
35
+ /**
36
+ * @deprecated Use `trailingVisual` instead
37
+ * Text positioned after `Item` text and optional trailing icon.
38
+ */
39
+ trailingText?: string;
40
+ /**
41
+ * Icon or text positioned after `Item` text.
42
+ */
43
+ trailingVisual?: React.ReactNode;
44
+ /**
45
+ * Style variations associated with various `Item` types.
46
+ *
47
+ * - `"default"` - An action `Item`.
48
+ * - `"danger"` - A destructive action `Item`.
49
+ */
50
+ variant?: 'default' | 'danger';
51
+ /**
52
+ * Whether to display a divider above the `Item` when it does not follow a `Header` or `Divider`.
53
+ */
54
+ showDivider?: boolean;
55
+ /**
56
+ * For `Item`s which can be selected, whether the `Item` is currently selected.
57
+ */
58
+ selected?: boolean;
59
+ /**
60
+ * For `Item`s which can be selected, whether `multiple` `Item`s or a `single` `Item` can be selected
61
+ */
62
+ selectionVariant?: 'single' | 'multiple';
63
+ /**
64
+ * Designates the group that an item belongs to.
65
+ */
66
+ groupId?: string;
67
+ /**
68
+ * Items that are disabled can not be clicked, selected, or navigated through.
69
+ */
70
+ disabled?: boolean;
71
+ /**
72
+ * Callback that will trigger both on click selection and keyboard selection.
73
+ */
74
+ onAction?: (item: ItemProps, event: React.MouseEvent<HTMLDivElement> | React.KeyboardEvent<HTMLDivElement>) => void;
75
+ /**
76
+ * An id associated with this item. Should be unique between items
77
+ */
78
+ id?: number | string;
79
+ /**
80
+ * Node to be included inside the item before the text.
81
+ */
82
+ children?: React.ReactNode;
83
+ /**
84
+ * The ARIA role describing the function of `List` component. `option` is a common value.
85
+ */
86
+ role?: AriaRole;
87
+ /**
88
+ * An item to pass back in the `onAction` callback, meant as
89
+ */
90
+ item?: ItemInput;
91
+ }
92
+ export declare const TextContainer: import("styled-components").StyledComponent<"span", any, {
93
+ dangerouslySetInnerHtml?: React.DOMAttributes<HTMLDivElement>['dangerouslySetInnerHTML'];
94
+ }, never>;
95
+ /**
96
+ * An actionable or selectable `Item` with an optional icon and description.
97
+ */
98
+ export declare const Item: PolymorphicForwardRefComponent<"div", ItemProps>;
@@ -0,0 +1,276 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.Item = exports.TextContainer = void 0;
7
+
8
+ var _octiconsReact = require("@primer/octicons-react");
9
+
10
+ var _react = _interopRequireWildcard(require("react"));
11
+
12
+ var _constants = require("../constants");
13
+
14
+ var _sx = _interopRequireDefault(require("../sx"));
15
+
16
+ var _Truncate = _interopRequireDefault(require("../Truncate"));
17
+
18
+ var _styledComponents = _interopRequireDefault(require("styled-components"));
19
+
20
+ var _Header = require("./Header");
21
+
22
+ var _Divider = require("./Divider");
23
+
24
+ var _ThemeProvider = require("../ThemeProvider");
25
+
26
+ var _focusZone = require("../behaviors/focusZone");
27
+
28
+ var _ssr = require("@react-aria/ssr");
29
+
30
+ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
31
+
32
+ function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function (nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
33
+
34
+ function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || typeof obj !== "object" && typeof obj !== "function") { return { default: obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj.default = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
35
+
36
+ function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
37
+
38
+ const getItemVariant = (variant = 'default', disabled) => {
39
+ if (disabled) {
40
+ return {
41
+ color: (0, _constants.get)('colors.primer.fg.disabled'),
42
+ iconColor: (0, _constants.get)('colors.primer.fg.disabled'),
43
+ annotationColor: (0, _constants.get)('colors.primer.fg.disabled'),
44
+ hoverCursor: 'default'
45
+ };
46
+ }
47
+
48
+ switch (variant) {
49
+ case 'danger':
50
+ return {
51
+ color: (0, _constants.get)('colors.danger.fg'),
52
+ iconColor: (0, _constants.get)('colors.danger.fg'),
53
+ annotationColor: (0, _constants.get)('colors.fg.muted'),
54
+ hoverCursor: 'pointer',
55
+ hoverBg: (0, _constants.get)('colors.actionListItem.danger.hoverBg'),
56
+ focusBg: (0, _constants.get)('colors.actionListItem.danger.activeBg'),
57
+ hoverText: (0, _constants.get)('colors.actionListItem.danger.hoverText')
58
+ };
59
+
60
+ default:
61
+ return {
62
+ color: (0, _constants.get)('colors.fg.default'),
63
+ iconColor: (0, _constants.get)('colors.fg.muted'),
64
+ annotationColor: (0, _constants.get)('colors.fg.muted'),
65
+ hoverCursor: 'pointer',
66
+ hoverBg: (0, _constants.get)('colors.actionListItem.default.hoverBg'),
67
+ focusBg: (0, _constants.get)('colors.actionListItem.default.activeBg')
68
+ };
69
+ }
70
+ };
71
+
72
+ const DividedContent = _styledComponents.default.div.withConfig({
73
+ displayName: "Item__DividedContent",
74
+ componentId: "jqpvy8-0"
75
+ })(["display:flex;min-width:0;position:relative;flex-grow:1;"]);
76
+
77
+ const MainContent = _styledComponents.default.div.withConfig({
78
+ displayName: "Item__MainContent",
79
+ componentId: "jqpvy8-1"
80
+ })(["align-items:baseline;display:flex;min-width:0;flex-direction:var(--main-content-flex-direction);flex-grow:1;"]);
81
+
82
+ const StyledItem = _styledComponents.default.div.withConfig({
83
+ displayName: "Item__StyledItem",
84
+ componentId: "jqpvy8-2"
85
+ })(["padding:6px ", ";display:flex;border-radius:", ";color:", ";transition:background 33.333ms linear;text-decoration:none;@media (hover:hover) and (pointer:fine){:hover{background:var( --item-hover-bg-override,", " );color:", ";cursor:", ";}}:not(:first-of-type):not(", " + &):not(", " + &){margin-top:", ";", "::before{content:' ';display:block;position:absolute;width:100%;top:-7px;border:0 solid ", ";border-top-width:", ";}}&:hover ", "::before,:hover + * ", "::before{border-color:var(--item-hover-divider-border-color-override,transparent) !important;}&:focus ", "::before,:focus + * ", "::before,&[", "] ", "::before,[", "] + & ", "::before{border-color:transparent !important;}&[", "='", "']{background:", ";}&[", "='", "']{background:", ";}&:focus{background:", ";outline:none;}&:active{background:", ";}", ""], (0, _constants.get)('space.2'), (0, _constants.get)('radii.2'), ({
86
+ variant,
87
+ item
88
+ }) => getItemVariant(variant, item === null || item === void 0 ? void 0 : item.disabled).color, ({
89
+ variant,
90
+ item
91
+ }) => getItemVariant(variant, item === null || item === void 0 ? void 0 : item.disabled).hoverBg, ({
92
+ variant,
93
+ item
94
+ }) => getItemVariant(variant, item === null || item === void 0 ? void 0 : item.disabled).hoverText, ({
95
+ variant,
96
+ item
97
+ }) => getItemVariant(variant, item === null || item === void 0 ? void 0 : item.disabled).hoverCursor, _Divider.StyledDivider, _Header.StyledHeader, ({
98
+ showDivider
99
+ }) => showDivider ? `1px` : '0', DividedContent, (0, _constants.get)('colors.border.muted'), ({
100
+ showDivider
101
+ }) => showDivider ? `1px` : '0', DividedContent, DividedContent, DividedContent, DividedContent, _focusZone.isActiveDescendantAttribute, DividedContent, _focusZone.isActiveDescendantAttribute, DividedContent, _focusZone.isActiveDescendantAttribute, _focusZone.activeDescendantActivatedDirectly, ({
102
+ variant,
103
+ item
104
+ }) => getItemVariant(variant, item === null || item === void 0 ? void 0 : item.disabled).focusBg, _focusZone.isActiveDescendantAttribute, _focusZone.activeDescendantActivatedIndirectly, ({
105
+ variant,
106
+ item
107
+ }) => getItemVariant(variant, item === null || item === void 0 ? void 0 : item.disabled).hoverBg, ({
108
+ variant,
109
+ item
110
+ }) => getItemVariant(variant, item === null || item === void 0 ? void 0 : item.disabled).focusBg, ({
111
+ variant,
112
+ item
113
+ }) => getItemVariant(variant, item === null || item === void 0 ? void 0 : item.disabled).focusBg, _sx.default);
114
+
115
+ const TextContainer = _styledComponents.default.span.withConfig({
116
+ displayName: "Item__TextContainer",
117
+ componentId: "jqpvy8-3"
118
+ })([""]);
119
+
120
+ exports.TextContainer = TextContainer;
121
+
122
+ const BaseVisualContainer = _styledComponents.default.div.withConfig({
123
+ displayName: "Item__BaseVisualContainer",
124
+ componentId: "jqpvy8-4"
125
+ })(["height:20px;width:", ";margin-right:", ";display:flex;justify-content:center;align-items:center;flex-shrink:0;"], (0, _constants.get)('space.3'), (0, _constants.get)('space.2'));
126
+
127
+ const ColoredVisualContainer = (0, _styledComponents.default)(BaseVisualContainer).withConfig({
128
+ displayName: "Item__ColoredVisualContainer",
129
+ componentId: "jqpvy8-5"
130
+ })(["svg{fill:", ";font-size:", ";}"], ({
131
+ variant,
132
+ disabled
133
+ }) => getItemVariant(variant, disabled).iconColor, (0, _constants.get)('fontSizes.0'));
134
+ const LeadingVisualContainer = (0, _styledComponents.default)(ColoredVisualContainer).withConfig({
135
+ displayName: "Item__LeadingVisualContainer",
136
+ componentId: "jqpvy8-6"
137
+ })(["display:flex;flex-direction:column;justify-content:center;"]);
138
+ const TrailingContent = (0, _styledComponents.default)(ColoredVisualContainer).withConfig({
139
+ displayName: "Item__TrailingContent",
140
+ componentId: "jqpvy8-7"
141
+ })(["color:", "};margin-left:", ";margin-right:0;width:auto;div:nth-child(2){margin-left:", ";}"], ({
142
+ variant,
143
+ disabled
144
+ }) => getItemVariant(variant, disabled).annotationColor, (0, _constants.get)('space.2'), (0, _constants.get)('space.2'));
145
+
146
+ const DescriptionContainer = _styledComponents.default.span.withConfig({
147
+ displayName: "Item__DescriptionContainer",
148
+ componentId: "jqpvy8-8"
149
+ })(["color:", ";font-size:", ";line-height:16px;margin-left:var(--description-container-margin-left);min-width:0;flex-grow:1;flex-basis:var(--description-container-flex-basis);"], (0, _constants.get)('colors.fg.muted'), (0, _constants.get)('fontSizes.0'));
150
+
151
+ const MultiSelectIcon = _styledComponents.default.svg.withConfig({
152
+ displayName: "Item__MultiSelectIcon",
153
+ componentId: "jqpvy8-9"
154
+ })(["rect{fill:", ";stroke:", ";shape-rendering:auto;}path{fill:", ";boxshadow:", ";opacity:", ";}"], ({
155
+ selected
156
+ }) => selected ? (0, _constants.get)('colors.accent.fg') : (0, _constants.get)('colors.canvas.default'), ({
157
+ selected
158
+ }) => selected ? (0, _constants.get)('colors.accent.fg') : (0, _constants.get)('colors.border.default'), (0, _constants.get)('colors.fg.onEmphasis'), (0, _constants.get)('shadow.small'), ({
159
+ selected
160
+ }) => selected ? 1 : 0);
161
+ /**
162
+ * An actionable or selectable `Item` with an optional icon and description.
163
+ */
164
+
165
+
166
+ const Item = /*#__PURE__*/_react.default.forwardRef((itemProps, ref) => {
167
+ const {
168
+ as: Component,
169
+ text,
170
+ description,
171
+ descriptionVariant = 'inline',
172
+ selected,
173
+ selectionVariant,
174
+ leadingVisual: LeadingVisual,
175
+ trailingIcon: TrailingIcon,
176
+ trailingVisual: TrailingVisual,
177
+ trailingText,
178
+ variant = 'default',
179
+ showDivider,
180
+ disabled,
181
+ onAction,
182
+ onKeyPress,
183
+ children,
184
+ onClick,
185
+ id,
186
+ ...props
187
+ } = itemProps;
188
+ const labelId = (0, _ssr.useSSRSafeId)();
189
+ const descriptionId = (0, _ssr.useSSRSafeId)();
190
+ const keyPressHandler = (0, _react.useCallback)(event => {
191
+ if (disabled) {
192
+ return;
193
+ }
194
+
195
+ onKeyPress === null || onKeyPress === void 0 ? void 0 : onKeyPress(event);
196
+
197
+ if (!event.defaultPrevented && [' ', 'Enter'].includes(event.key)) {
198
+ onAction === null || onAction === void 0 ? void 0 : onAction(itemProps, event);
199
+ }
200
+ }, [onAction, disabled, itemProps, onKeyPress]);
201
+ const clickHandler = (0, _react.useCallback)(event => {
202
+ if (disabled) {
203
+ return;
204
+ }
205
+
206
+ onClick === null || onClick === void 0 ? void 0 : onClick(event);
207
+
208
+ if (!event.defaultPrevented) {
209
+ onAction === null || onAction === void 0 ? void 0 : onAction(itemProps, event);
210
+ }
211
+ }, [onAction, disabled, itemProps, onClick]);
212
+ const {
213
+ theme
214
+ } = (0, _ThemeProvider.useTheme)();
215
+ return /*#__PURE__*/_react.default.createElement(StyledItem, _extends({
216
+ ref: ref,
217
+ as: Component,
218
+ tabIndex: disabled ? undefined : -1,
219
+ variant: variant,
220
+ showDivider: showDivider,
221
+ "aria-selected": selected,
222
+ "aria-labelledby": text ? labelId : undefined,
223
+ "aria-describedby": description ? descriptionId : undefined
224
+ }, props, {
225
+ "data-id": id,
226
+ onKeyPress: keyPressHandler,
227
+ onClick: clickHandler
228
+ }), !!selected === selected && /*#__PURE__*/_react.default.createElement(BaseVisualContainer, null, selectionVariant === 'multiple' ? /*#__PURE__*/_react.default.createElement(_react.default.Fragment, null, /*#__PURE__*/_react.default.createElement(MultiSelectIcon, {
229
+ selected: selected,
230
+ width: "16",
231
+ height: "16",
232
+ viewBox: "0 0 16 16",
233
+ xmlns: "http://www.w3.org/2000/svg",
234
+ "aria-hidden": "true"
235
+ }, /*#__PURE__*/_react.default.createElement("rect", {
236
+ x: "2",
237
+ y: "2",
238
+ width: "12",
239
+ height: "12",
240
+ rx: "4"
241
+ }), /*#__PURE__*/_react.default.createElement("path", {
242
+ fillRule: "evenodd",
243
+ strokeWidth: "0",
244
+ d: "M4.03231 8.69862C3.84775 8.20646 4.49385 7.77554 4.95539 7.77554C5.41693 7.77554 6.80154 9.85246 6.80154 9.85246C6.80154 9.85246 10.2631 4.314 10.4938 4.08323C10.7246 3.85246 11.8785 4.08323 11.4169 5.00631C11.0081 5.82388 7.26308 11.4678 7.26308 11.4678C7.26308 11.4678 6.80154 12.1602 6.34 11.4678C5.87846 10.7755 4.21687 9.19077 4.03231 8.69862Z"
245
+ }))) : selected && /*#__PURE__*/_react.default.createElement(_octiconsReact.CheckIcon, {
246
+ fill: theme === null || theme === void 0 ? void 0 : theme.colors.fg.default
247
+ })), LeadingVisual && /*#__PURE__*/_react.default.createElement(LeadingVisualContainer, {
248
+ variant: variant,
249
+ disabled: disabled
250
+ }, /*#__PURE__*/_react.default.createElement(LeadingVisual, null)), /*#__PURE__*/_react.default.createElement(DividedContent, null, /*#__PURE__*/_react.default.createElement(MainContent, {
251
+ style: {
252
+ '--main-content-flex-direction': descriptionVariant === 'inline' ? 'row' : 'column'
253
+ }
254
+ }, children, text ? /*#__PURE__*/_react.default.createElement(TextContainer, {
255
+ id: labelId
256
+ }, text) : null, description ? /*#__PURE__*/_react.default.createElement(DescriptionContainer, {
257
+ id: descriptionId,
258
+ style: {
259
+ '--description-container-margin-left': descriptionVariant === 'inline' ? (0, _constants.get)('space.2')(theme) : 0,
260
+ '--description-container-flex-basis': descriptionVariant === 'inline' ? 0 : 'auto'
261
+ }
262
+ }, descriptionVariant === 'block' ? description : /*#__PURE__*/_react.default.createElement(_Truncate.default, {
263
+ title: description,
264
+ inline: true,
265
+ maxWidth: "100%"
266
+ }, description)) : null), TrailingVisual ? /*#__PURE__*/_react.default.createElement(TrailingContent, {
267
+ variant: variant,
268
+ disabled: disabled
269
+ }, typeof TrailingVisual === 'function' ? /*#__PURE__*/_react.default.createElement(TrailingVisual, null) : TrailingVisual) : TrailingIcon || trailingText ? /*#__PURE__*/_react.default.createElement(TrailingContent, {
270
+ variant: variant,
271
+ disabled: disabled
272
+ }, trailingText, TrailingIcon && /*#__PURE__*/_react.default.createElement(TrailingIcon, null)) : null));
273
+ });
274
+
275
+ exports.Item = Item;
276
+ Item.displayName = 'ActionList.Item';
@@ -0,0 +1,88 @@
1
+ import React, { Key } from 'react';
2
+ import type { AriaRole } from '../utils/types';
3
+ import { Group, GroupProps } from './Group';
4
+ import { ItemProps } from './Item';
5
+ import { Merge } from '../utils/types/Merge';
6
+ declare type RenderItemFn = (props: ItemProps) => React.ReactElement;
7
+ export declare type ItemInput = Merge<React.ComponentPropsWithoutRef<'div'>, ItemProps> | ((Partial<ItemProps> & {
8
+ renderItem: RenderItemFn;
9
+ }) & {
10
+ key?: Key;
11
+ });
12
+ /**
13
+ * Contract for props passed to the `List` component.
14
+ */
15
+ export interface ListPropsBase {
16
+ /**
17
+ * A collection of `Item` props and `Item`-level custom `Item` renderers.
18
+ */
19
+ items: ItemInput[];
20
+ /**
21
+ * The ARIA role describing the function of `List` component. `listbox` is a common value.
22
+ */
23
+ role?: AriaRole;
24
+ /**
25
+ * id to attach to the base DOM node of the list
26
+ */
27
+ id?: string;
28
+ /**
29
+ * A `List`-level custom `Item` renderer. Every `Item` within this `List`
30
+ * without a `Group`-level or `Item`-level custom `Item` renderer will be
31
+ * rendered using this function component.
32
+ */
33
+ renderItem?: RenderItemFn;
34
+ /**
35
+ * A `List`-level custom `Group` renderer. Every `Group` within this `List`
36
+ * without a `Group`-level custom `Item` renderer will be rendered using
37
+ * this function component.
38
+ */
39
+ renderGroup?: typeof Group;
40
+ /**
41
+ * Style variations. Usage is discretionary.
42
+ *
43
+ * - `"inset"` - `List` children are offset (vertically and horizontally) from `List`’s edges
44
+ * - `"full"` - `List` children are flush (vertically and horizontally) with `List` edges
45
+ */
46
+ variant?: 'inset' | 'full';
47
+ /**
48
+ * For `Item`s which can be selected, whether `multiple` `Item`s or a `single` `Item` can be selected
49
+ */
50
+ selectionVariant?: 'single' | 'multiple';
51
+ /**
52
+ * Whether to display a divider above each `Item` in this `List` when it does not follow a `Header` or `Divider`.
53
+ */
54
+ showItemDividers?: boolean;
55
+ }
56
+ /**
57
+ * Contract for props passed to the `List` component, when its `Item`s are collected in `Group`s.
58
+ */
59
+ export interface GroupedListProps extends ListPropsBase {
60
+ /**
61
+ * A collection of `Group` props (except `items`), plus a unique group identifier
62
+ * and `Group`-level custom `Item` or `Group` renderers.
63
+ */
64
+ groupMetadata: ((Omit<GroupProps, 'items'> | Omit<Partial<GroupProps> & {
65
+ renderItem?: RenderItemFn;
66
+ renderGroup?: typeof Group;
67
+ }, 'items'>) & {
68
+ groupId: string;
69
+ })[];
70
+ /**
71
+ * A collection of `Item` props, plus associated group identifiers
72
+ * and `Item`-level custom `Item` renderers.
73
+ */
74
+ items: ((ItemProps | (Partial<ItemProps> & {
75
+ renderItem: RenderItemFn;
76
+ })) & {
77
+ groupId: string;
78
+ })[];
79
+ }
80
+ /**
81
+ * Contract for props passed to the `List` component.
82
+ */
83
+ export declare type ListProps = ListPropsBase | GroupedListProps;
84
+ /**
85
+ * Lists `Item`s, either grouped or ungrouped, with a `Divider` between each `Group`.
86
+ */
87
+ export declare const List: React.ForwardRefExoticComponent<ListProps & React.RefAttributes<HTMLDivElement>>;
88
+ export {};