@primer/components 0.0.0-20211030163410 → 0.0.0-20211030175556

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 (318) hide show
  1. package/CHANGELOG.md +2 -28
  2. package/dist/browser.esm.js +591 -602
  3. package/dist/browser.esm.js.map +1 -1
  4. package/dist/browser.umd.js +200 -211
  5. package/dist/browser.umd.js.map +1 -1
  6. package/lib/ActionList/Divider.jsx +29 -0
  7. package/lib/ActionList/Group.jsx +23 -0
  8. package/lib/ActionList/Header.jsx +66 -0
  9. package/lib/ActionList/Item.js +3 -3
  10. package/lib/ActionList/Item.jsx +288 -0
  11. package/lib/ActionList/List.jsx +138 -0
  12. package/lib/ActionList/index.js +12 -23
  13. package/lib/ActionList2/Description.jsx +29 -0
  14. package/lib/ActionList2/Divider.jsx +22 -0
  15. package/lib/ActionList2/Group.jsx +54 -0
  16. package/lib/ActionList2/Header.d.ts +26 -0
  17. package/lib/ActionList2/Header.js +55 -0
  18. package/lib/ActionList2/Header.jsx +36 -0
  19. package/lib/ActionList2/Item.js +1 -3
  20. package/lib/ActionList2/Item.jsx +174 -0
  21. package/lib/ActionList2/LinkItem.jsx +28 -0
  22. package/lib/ActionList2/List.js +2 -1
  23. package/lib/ActionList2/List.jsx +41 -0
  24. package/lib/ActionList2/Selection.js +1 -3
  25. package/lib/ActionList2/Selection.jsx +50 -0
  26. package/lib/ActionList2/Visuals.jsx +48 -0
  27. package/lib/ActionList2/index.js +23 -41
  28. package/lib/ActionMenu.jsx +73 -0
  29. package/lib/AnchoredOverlay/AnchoredOverlay.jsx +100 -0
  30. package/lib/AnchoredOverlay/index.js +4 -12
  31. package/lib/Autocomplete/Autocomplete.d.ts +0 -1
  32. package/lib/Autocomplete/Autocomplete.jsx +100 -0
  33. package/lib/Autocomplete/AutocompleteContext.jsx +5 -0
  34. package/lib/Autocomplete/AutocompleteInput.d.ts +0 -1
  35. package/lib/Autocomplete/AutocompleteInput.jsx +113 -0
  36. package/lib/Autocomplete/AutocompleteMenu.js +13 -6
  37. package/lib/Autocomplete/AutocompleteMenu.jsx +190 -0
  38. package/lib/Autocomplete/AutocompleteOverlay.jsx +55 -0
  39. package/lib/Autocomplete/index.js +7 -14
  40. package/lib/Avatar.jsx +34 -0
  41. package/lib/AvatarPair.jsx +29 -0
  42. package/lib/AvatarStack.jsx +151 -0
  43. package/lib/BaseStyles.jsx +65 -0
  44. package/lib/BorderBox.jsx +18 -0
  45. package/lib/Box.jsx +10 -0
  46. package/lib/BranchName.jsx +20 -0
  47. package/lib/Breadcrumbs.jsx +71 -0
  48. package/lib/Button/Button.d.ts +0 -1
  49. package/lib/Button/Button.jsx +40 -0
  50. package/lib/Button/ButtonBase.jsx +33 -0
  51. package/lib/Button/ButtonClose.d.ts +1 -2
  52. package/lib/Button/ButtonClose.jsx +53 -0
  53. package/lib/Button/ButtonDanger.d.ts +0 -1
  54. package/lib/Button/ButtonDanger.jsx +43 -0
  55. package/lib/Button/ButtonGroup.jsx +55 -0
  56. package/lib/Button/ButtonInvisible.d.ts +0 -1
  57. package/lib/Button/ButtonInvisible.jsx +32 -0
  58. package/lib/Button/ButtonOutline.d.ts +0 -1
  59. package/lib/Button/ButtonOutline.jsx +43 -0
  60. package/lib/Button/ButtonPrimary.d.ts +0 -1
  61. package/lib/Button/ButtonPrimary.jsx +42 -0
  62. package/lib/Button/ButtonStyles.jsx +37 -0
  63. package/lib/Button/ButtonTableList.jsx +46 -0
  64. package/lib/Button/index.js +21 -70
  65. package/lib/Caret.jsx +93 -0
  66. package/lib/CircleBadge.jsx +42 -0
  67. package/lib/CircleOcticon.d.ts +0 -1
  68. package/lib/CircleOcticon.jsx +21 -0
  69. package/lib/CounterLabel.jsx +43 -0
  70. package/lib/Details.jsx +21 -0
  71. package/lib/Dialog/ConfirmationDialog.jsx +146 -0
  72. package/lib/Dialog/Dialog.jsx +279 -0
  73. package/lib/Dialog.d.ts +2 -3
  74. package/lib/Dialog.jsx +129 -0
  75. package/lib/Dropdown.d.ts +0 -4
  76. package/lib/Dropdown.jsx +131 -0
  77. package/lib/DropdownMenu/DropdownButton.d.ts +1 -2
  78. package/lib/DropdownMenu/DropdownButton.jsx +14 -0
  79. package/lib/DropdownMenu/DropdownMenu.jsx +70 -0
  80. package/lib/DropdownMenu/index.js +6 -20
  81. package/lib/DropdownStyles.js +18 -26
  82. package/lib/FilterList.d.ts +0 -1
  83. package/lib/FilterList.jsx +59 -0
  84. package/lib/FilteredActionList/FilteredActionList.jsx +100 -0
  85. package/lib/FilteredActionList/index.js +4 -12
  86. package/lib/FilteredSearch.jsx +28 -0
  87. package/lib/Flash.jsx +69 -0
  88. package/lib/Flex.jsx +15 -0
  89. package/lib/FormGroup.jsx +22 -0
  90. package/lib/Grid.jsx +15 -0
  91. package/lib/Header.jsx +83 -0
  92. package/lib/Heading.jsx +21 -0
  93. package/lib/Label.jsx +82 -0
  94. package/lib/LabelGroup.jsx +18 -0
  95. package/lib/Link.jsx +36 -0
  96. package/lib/NewButton/button-counter.jsx +14 -0
  97. package/lib/NewButton/button.jsx +279 -0
  98. package/lib/NewButton/index.js +5 -12
  99. package/lib/NewButton/types.js +2 -1
  100. package/lib/Overlay.d.ts +3 -5
  101. package/lib/Overlay.jsx +154 -0
  102. package/lib/Pagehead.jsx +17 -0
  103. package/lib/Pagination/Pagination.jsx +161 -0
  104. package/lib/Pagination/index.js +6 -12
  105. package/lib/Pagination/model.jsx +174 -0
  106. package/lib/PointerBox.jsx +25 -0
  107. package/lib/Popover.jsx +202 -0
  108. package/lib/Portal/Portal.jsx +79 -0
  109. package/lib/Portal/index.js +5 -16
  110. package/lib/Position.d.ts +4 -4
  111. package/lib/Position.jsx +46 -0
  112. package/lib/ProgressBar.jsx +39 -0
  113. package/lib/SelectMenu/SelectMenu.d.ts +4 -10
  114. package/lib/SelectMenu/SelectMenu.jsx +112 -0
  115. package/lib/SelectMenu/SelectMenuContext.jsx +5 -0
  116. package/lib/SelectMenu/SelectMenuDivider.jsx +42 -0
  117. package/lib/SelectMenu/SelectMenuFilter.jsx +58 -0
  118. package/lib/SelectMenu/SelectMenuFooter.jsx +45 -0
  119. package/lib/SelectMenu/SelectMenuHeader.jsx +42 -0
  120. package/lib/SelectMenu/SelectMenuItem.d.ts +1 -1
  121. package/lib/SelectMenu/SelectMenuItem.jsx +142 -0
  122. package/lib/SelectMenu/SelectMenuList.jsx +59 -0
  123. package/lib/SelectMenu/SelectMenuLoadingAnimation.jsx +22 -0
  124. package/lib/SelectMenu/SelectMenuModal.d.ts +1 -1
  125. package/lib/SelectMenu/SelectMenuModal.jsx +118 -0
  126. package/lib/SelectMenu/SelectMenuTab.jsx +92 -0
  127. package/lib/SelectMenu/SelectMenuTabPanel.jsx +42 -0
  128. package/lib/SelectMenu/SelectMenuTabs.jsx +57 -0
  129. package/lib/SelectMenu/hooks/useKeyboardNav.js +80 -96
  130. package/lib/SelectMenu/index.js +7 -14
  131. package/lib/SelectPanel/SelectPanel.jsx +105 -0
  132. package/lib/SelectPanel/index.js +4 -12
  133. package/lib/SideNav.jsx +173 -0
  134. package/lib/Spinner.jsx +35 -0
  135. package/lib/StateLabel.jsx +93 -0
  136. package/lib/StyledOcticon.jsx +18 -0
  137. package/lib/SubNav.jsx +101 -0
  138. package/lib/TabNav.jsx +58 -0
  139. package/lib/Text.jsx +14 -0
  140. package/lib/TextInput.jsx +23 -0
  141. package/lib/TextInputWithTokens.d.ts +0 -1
  142. package/lib/TextInputWithTokens.jsx +218 -0
  143. package/lib/ThemeProvider.jsx +130 -0
  144. package/lib/Timeline.jsx +123 -0
  145. package/lib/Token/AvatarToken.d.ts +1 -1
  146. package/lib/Token/AvatarToken.jsx +54 -0
  147. package/lib/Token/IssueLabelToken.d.ts +1 -1
  148. package/lib/Token/IssueLabelToken.jsx +125 -0
  149. package/lib/Token/Token.d.ts +1 -1
  150. package/lib/Token/Token.jsx +103 -0
  151. package/lib/Token/TokenBase.jsx +88 -0
  152. package/lib/Token/_RemoveTokenButton.jsx +108 -0
  153. package/lib/Token/_TokenTextContainer.jsx +49 -0
  154. package/lib/Token/index.js +11 -30
  155. package/lib/Tooltip.jsx +246 -0
  156. package/lib/Truncate.jsx +24 -0
  157. package/lib/UnderlineNav.jsx +88 -0
  158. package/lib/_TextInputWrapper.jsx +120 -0
  159. package/lib/_UnstyledTextInput.jsx +22 -0
  160. package/lib/behaviors/anchoredPosition.js +205 -234
  161. package/lib/behaviors/focusTrap.js +121 -157
  162. package/lib/behaviors/focusZone.js +434 -509
  163. package/lib/behaviors/scrollIntoViewingArea.js +18 -35
  164. package/lib/constants.js +39 -43
  165. package/lib/drafts.js +20 -30
  166. package/lib/hooks/index.js +16 -60
  167. package/lib/hooks/useAnchoredPosition.js +32 -40
  168. package/lib/hooks/useCombinedRefs.js +32 -36
  169. package/lib/hooks/useDetails.jsx +39 -0
  170. package/lib/hooks/useDialog.js +72 -96
  171. package/lib/hooks/useFocusTrap.js +43 -60
  172. package/lib/hooks/useFocusZone.js +54 -50
  173. package/lib/hooks/useOnEscapePress.js +25 -36
  174. package/lib/hooks/useOnOutsideClick.jsx +61 -0
  175. package/lib/hooks/useOpenAndCloseFocus.js +22 -34
  176. package/lib/hooks/useOverlay.jsx +15 -0
  177. package/lib/hooks/useProvidedRefOrCreate.js +10 -14
  178. package/lib/hooks/useProvidedStateOrCreate.js +13 -16
  179. package/lib/hooks/useRenderForcingRef.js +13 -17
  180. package/lib/hooks/useResizeObserver.js +15 -18
  181. package/lib/hooks/useSafeTimeout.js +22 -30
  182. package/lib/hooks/useScrollFlash.js +16 -23
  183. package/lib/index.d.ts +0 -5
  184. package/lib/index.js +163 -676
  185. package/lib/polyfills/eventListenerSignal.js +37 -45
  186. package/lib/sx.js +10 -22
  187. package/lib/theme-preval.js +64 -3169
  188. package/lib/theme.js +3 -12
  189. package/lib/utils/create-slots.jsx +65 -0
  190. package/lib/utils/deprecate.jsx +59 -0
  191. package/lib/utils/isNumeric.jsx +7 -0
  192. package/lib/utils/iterateFocusableElements.js +63 -85
  193. package/lib/utils/ssr.jsx +6 -0
  194. package/lib/utils/test-deprecations.jsx +20 -0
  195. package/lib/utils/test-helpers.jsx +8 -0
  196. package/lib/utils/test-matchers.jsx +100 -0
  197. package/lib/utils/testing.d.ts +1 -2
  198. package/lib/utils/testing.js +0 -29
  199. package/lib/utils/testing.jsx +206 -0
  200. package/lib/utils/theme.js +33 -47
  201. package/lib/utils/types/AriaRole.js +2 -1
  202. package/lib/utils/types/ComponentProps.js +2 -1
  203. package/lib/utils/types/Flatten.js +2 -1
  204. package/lib/utils/types/KeyPaths.js +2 -1
  205. package/lib/utils/types/MandateProps.js +16 -1
  206. package/lib/utils/types/Merge.js +2 -1
  207. package/lib/utils/types/index.js +16 -69
  208. package/lib/utils/uniqueId.js +5 -8
  209. package/lib/utils/use-force-update.js +8 -14
  210. package/lib/utils/useIsomorphicLayoutEffect.js +8 -11
  211. package/lib/utils/userAgent.js +8 -12
  212. package/lib-esm/ActionList/Item.js +3 -3
  213. package/lib-esm/ActionList2/Header.d.ts +26 -0
  214. package/lib-esm/ActionList2/Header.js +44 -0
  215. package/lib-esm/ActionList2/Item.js +1 -3
  216. package/lib-esm/ActionList2/List.js +2 -1
  217. package/lib-esm/ActionList2/Selection.js +1 -3
  218. package/lib-esm/Autocomplete/Autocomplete.d.ts +0 -1
  219. package/lib-esm/Autocomplete/AutocompleteInput.d.ts +0 -1
  220. package/lib-esm/Autocomplete/AutocompleteMenu.js +13 -3
  221. package/lib-esm/Button/Button.d.ts +0 -1
  222. package/lib-esm/Button/ButtonClose.d.ts +1 -2
  223. package/lib-esm/Button/ButtonDanger.d.ts +0 -1
  224. package/lib-esm/Button/ButtonInvisible.d.ts +0 -1
  225. package/lib-esm/Button/ButtonOutline.d.ts +0 -1
  226. package/lib-esm/Button/ButtonPrimary.d.ts +0 -1
  227. package/lib-esm/CircleOcticon.d.ts +0 -1
  228. package/lib-esm/Dialog.d.ts +2 -3
  229. package/lib-esm/Dropdown.d.ts +0 -4
  230. package/lib-esm/DropdownMenu/DropdownButton.d.ts +1 -2
  231. package/lib-esm/FilterList.d.ts +0 -1
  232. package/lib-esm/Overlay.d.ts +3 -5
  233. package/lib-esm/Position.d.ts +4 -4
  234. package/lib-esm/SelectMenu/SelectMenu.d.ts +4 -10
  235. package/lib-esm/SelectMenu/SelectMenuItem.d.ts +1 -1
  236. package/lib-esm/SelectMenu/SelectMenuModal.d.ts +1 -1
  237. package/lib-esm/TextInputWithTokens.d.ts +0 -1
  238. package/lib-esm/Token/AvatarToken.d.ts +1 -1
  239. package/lib-esm/Token/IssueLabelToken.d.ts +1 -1
  240. package/lib-esm/Token/Token.d.ts +1 -1
  241. package/lib-esm/index.d.ts +0 -5
  242. package/lib-esm/index.js +0 -4
  243. package/lib-esm/theme-preval.js +0 -446
  244. package/lib-esm/utils/testing.d.ts +1 -2
  245. package/lib-esm/utils/testing.js +0 -24
  246. package/package.json +6 -5
  247. package/lib/Checkbox.d.ts +0 -29
  248. package/lib/Checkbox.js +0 -64
  249. package/lib/CheckboxInputField.d.ts +0 -11
  250. package/lib/CheckboxInputField.js +0 -74
  251. package/lib/RadioInputField.d.ts +0 -9
  252. package/lib/RadioInputField.js +0 -83
  253. package/lib/TextInputField.d.ts +0 -581
  254. package/lib/TextInputField.js +0 -66
  255. package/lib/_InputCaption.d.ts +0 -6
  256. package/lib/_InputCaption.js +0 -23
  257. package/lib/_InputField/InputField.d.ts +0 -39
  258. package/lib/_InputField/InputField.js +0 -90
  259. package/lib/_InputField/InputFieldCaption.d.ts +0 -3
  260. package/lib/_InputField/InputFieldCaption.js +0 -28
  261. package/lib/_InputField/InputFieldLabel.d.ts +0 -9
  262. package/lib/_InputField/InputFieldLabel.js +0 -34
  263. package/lib/_InputField/InputFieldValidation.d.ts +0 -6
  264. package/lib/_InputField/InputFieldValidation.js +0 -17
  265. package/lib/_InputField/ToggleInputField.d.ts +0 -13
  266. package/lib/_InputField/ToggleInputField.js +0 -71
  267. package/lib/_InputField/ToggleInputLeadingVisual.d.ts +0 -3
  268. package/lib/_InputField/ToggleInputLeadingVisual.js +0 -22
  269. package/lib/_InputField/ValidationAnimationContainer.d.ts +0 -6
  270. package/lib/_InputField/ValidationAnimationContainer.js +0 -48
  271. package/lib/_InputField/index.d.ts +0 -1
  272. package/lib/_InputField/index.js +0 -15
  273. package/lib/_InputField/slots.d.ts +0 -13
  274. package/lib/_InputField/slots.js +0 -17
  275. package/lib/_InputLabel.d.ts +0 -8
  276. package/lib/_InputLabel.js +0 -44
  277. package/lib/_InputValidation.d.ts +0 -8
  278. package/lib/_InputValidation.js +0 -56
  279. package/lib/_VisuallyHidden.d.ts +0 -6
  280. package/lib/_VisuallyHidden.js +0 -39
  281. package/lib/utils/types/FormValidationStatus.d.ts +0 -1
  282. package/lib/utils/types/FormValidationStatus.js +0 -1
  283. package/lib-esm/Checkbox.d.ts +0 -29
  284. package/lib-esm/Checkbox.js +0 -44
  285. package/lib-esm/CheckboxInputField.d.ts +0 -11
  286. package/lib-esm/CheckboxInputField.js +0 -57
  287. package/lib-esm/RadioInputField.d.ts +0 -9
  288. package/lib-esm/RadioInputField.js +0 -66
  289. package/lib-esm/TextInputField.d.ts +0 -581
  290. package/lib-esm/TextInputField.js +0 -50
  291. package/lib-esm/_InputCaption.d.ts +0 -6
  292. package/lib-esm/_InputCaption.js +0 -12
  293. package/lib-esm/_InputField/InputField.d.ts +0 -39
  294. package/lib-esm/_InputField/InputField.js +0 -70
  295. package/lib-esm/_InputField/InputFieldCaption.d.ts +0 -3
  296. package/lib-esm/_InputField/InputFieldCaption.js +0 -16
  297. package/lib-esm/_InputField/InputFieldLabel.d.ts +0 -9
  298. package/lib-esm/_InputField/InputFieldLabel.js +0 -22
  299. package/lib-esm/_InputField/InputFieldValidation.d.ts +0 -6
  300. package/lib-esm/_InputField/InputFieldValidation.js +0 -7
  301. package/lib-esm/_InputField/ToggleInputField.d.ts +0 -13
  302. package/lib-esm/_InputField/ToggleInputField.js +0 -54
  303. package/lib-esm/_InputField/ToggleInputLeadingVisual.d.ts +0 -3
  304. package/lib-esm/_InputField/ToggleInputLeadingVisual.js +0 -11
  305. package/lib-esm/_InputField/ValidationAnimationContainer.d.ts +0 -6
  306. package/lib-esm/_InputField/ValidationAnimationContainer.js +0 -33
  307. package/lib-esm/_InputField/index.d.ts +0 -1
  308. package/lib-esm/_InputField/index.js +0 -1
  309. package/lib-esm/_InputField/slots.d.ts +0 -13
  310. package/lib-esm/_InputField/slots.js +0 -5
  311. package/lib-esm/_InputLabel.d.ts +0 -8
  312. package/lib-esm/_InputLabel.js +0 -32
  313. package/lib-esm/_InputValidation.d.ts +0 -8
  314. package/lib-esm/_InputValidation.js +0 -43
  315. package/lib-esm/_VisuallyHidden.d.ts +0 -6
  316. package/lib-esm/_VisuallyHidden.js +0 -26
  317. package/lib-esm/utils/types/FormValidationStatus.d.ts +0 -1
  318. package/lib-esm/utils/types/FormValidationStatus.js +0 -1
@@ -0,0 +1,54 @@
1
+ "use strict";
2
+ var __importDefault = (this && this.__importDefault) || function (mod) {
3
+ return (mod && mod.__esModule) ? mod : { "default": mod };
4
+ };
5
+ Object.defineProperty(exports, "__esModule", { value: true });
6
+ exports.Group = exports.GroupContext = void 0;
7
+ const react_1 = __importDefault(require("react"));
8
+ const ssr_1 = require("@react-aria/ssr");
9
+ const Box_1 = __importDefault(require("../Box"));
10
+ const List_1 = require("./List");
11
+ exports.GroupContext = react_1.default.createContext({});
12
+ const Group = ({ title, variant = 'subtle', auxiliaryText, selectionVariant, role, sx = {}, ...props }) => {
13
+ const labelId = ssr_1.useSSRSafeId();
14
+ return (<Box_1.default as="li" sx={{
15
+ '&:not(:first-child)': { marginTop: 2 },
16
+ listStyle: 'none',
17
+ ...sx
18
+ }} {...props}>
19
+ {title && <Header title={title} variant={variant} auxiliaryText={auxiliaryText} labelId={labelId}/>}
20
+ <exports.GroupContext.Provider value={{ selectionVariant }}>
21
+ <Box_1.default as="ul" sx={{ paddingInlineStart: 0 }} aria-labelledby={title ? labelId : undefined} role={role}>
22
+ {props.children}
23
+ </Box_1.default>
24
+ </exports.GroupContext.Provider>
25
+ </Box_1.default>);
26
+ };
27
+ exports.Group = Group;
28
+ /**
29
+ * Displays the name and description of a `Group`.
30
+ *
31
+ * For visual presentation only. It's hidden from screen readers.
32
+ */
33
+ const Header = ({ variant, title, auxiliaryText, labelId, ...props }) => {
34
+ const { variant: listVariant } = react_1.default.useContext(List_1.ListContext);
35
+ const styles = {
36
+ paddingY: '6px',
37
+ paddingX: listVariant === 'full' ? 2 : 3,
38
+ fontSize: 0,
39
+ fontWeight: 'bold',
40
+ color: 'fg.muted',
41
+ ...(variant === 'filled' && {
42
+ backgroundColor: 'canvas.subtle',
43
+ marginX: 0,
44
+ marginBottom: 2,
45
+ borderTop: '1px solid',
46
+ borderBottom: '1px solid',
47
+ borderColor: 'neutral.muted'
48
+ })
49
+ };
50
+ return (<Box_1.default sx={styles} role="presentation" aria-hidden="true" {...props}>
51
+ <span id={labelId}>{title}</span>
52
+ {auxiliaryText && <span>{auxiliaryText}</span>}
53
+ </Box_1.default>);
54
+ };
@@ -0,0 +1,26 @@
1
+ /// <reference types="react" />
2
+ import { SxProp } from '../sx';
3
+ /**
4
+ * Contract for props passed to the `Header` component.
5
+ */
6
+ export declare type HeaderProps = {
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
+ } & SxProp;
23
+ /**
24
+ * Displays the name and description of a `Group`.
25
+ */
26
+ export declare const Header: ({ variant, title, auxiliaryText, sx, ...props }: HeaderProps) => JSX.Element;
@@ -0,0 +1,55 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.Header = void 0;
7
+
8
+ var _react = _interopRequireDefault(require("react"));
9
+
10
+ var _Box = _interopRequireDefault(require("../Box"));
11
+
12
+ var _List = require("./List");
13
+
14
+ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
15
+
16
+ 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); }
17
+
18
+ /**
19
+ * Displays the name and description of a `Group`.
20
+ */
21
+ const Header = ({
22
+ variant = 'subtle',
23
+ title,
24
+ auxiliaryText,
25
+ sx = {},
26
+ ...props
27
+ }) => {
28
+ const {
29
+ variant: listVariant
30
+ } = _react.default.useContext(_List.ListContext);
31
+
32
+ const styles = {
33
+ paddingY: '6px',
34
+ paddingX: listVariant === 'full' ? 2 : 3,
35
+ fontSize: 0,
36
+ fontWeight: 'bold',
37
+ color: 'fg.muted',
38
+ ...(variant === 'filled' && {
39
+ backgroundColor: 'canvas.subtle',
40
+ marginX: 0,
41
+ marginBottom: 2,
42
+ borderTop: '1px solid',
43
+ borderBottom: '1px solid',
44
+ borderColor: 'neutral.muted'
45
+ }),
46
+ ...sx
47
+ };
48
+ return /*#__PURE__*/_react.default.createElement(_Box.default, _extends({
49
+ sx: styles,
50
+ role: "heading"
51
+ }, props), title, auxiliaryText && /*#__PURE__*/_react.default.createElement("span", null, auxiliaryText));
52
+ };
53
+
54
+ exports.Header = Header;
55
+ Header.displayName = "Header";
@@ -0,0 +1,36 @@
1
+ "use strict";
2
+ var __importDefault = (this && this.__importDefault) || function (mod) {
3
+ return (mod && mod.__esModule) ? mod : { "default": mod };
4
+ };
5
+ Object.defineProperty(exports, "__esModule", { value: true });
6
+ exports.Header = void 0;
7
+ const react_1 = __importDefault(require("react"));
8
+ const Box_1 = __importDefault(require("../Box"));
9
+ const List_1 = require("./List");
10
+ /**
11
+ * Displays the name and description of a `Group`.
12
+ */
13
+ const Header = ({ variant = 'subtle', title, auxiliaryText, sx = {}, ...props }) => {
14
+ const { variant: listVariant } = react_1.default.useContext(List_1.ListContext);
15
+ const styles = {
16
+ paddingY: '6px',
17
+ paddingX: listVariant === 'full' ? 2 : 3,
18
+ fontSize: 0,
19
+ fontWeight: 'bold',
20
+ color: 'fg.muted',
21
+ ...(variant === 'filled' && {
22
+ backgroundColor: 'canvas.subtle',
23
+ marginX: 0,
24
+ marginBottom: 2,
25
+ borderTop: '1px solid',
26
+ borderBottom: '1px solid',
27
+ borderColor: 'neutral.muted'
28
+ }),
29
+ ...sx
30
+ };
31
+ return (<Box_1.default sx={styles} role="heading" {...props}>
32
+ {title}
33
+ {auxiliaryText && <span>{auxiliaryText}</span>}
34
+ </Box_1.default>);
35
+ };
36
+ exports.Header = Header;
@@ -79,7 +79,7 @@ const Item = /*#__PURE__*/_react.default.forwardRef(({
79
79
  variant = 'default',
80
80
  disabled = false,
81
81
  selected = undefined,
82
- onSelect,
82
+ onSelect = () => null,
83
83
  sx: sxProp = {},
84
84
  id,
85
85
  _PrivateItemWrapper,
@@ -163,13 +163,11 @@ const Item = /*#__PURE__*/_react.default.forwardRef(({
163
163
  };
164
164
 
165
165
  const clickHandler = _react.default.useCallback(event => {
166
- if (typeof onSelect !== 'function') return;
167
166
  if (disabled) return;
168
167
  if (!event.defaultPrevented) onSelect(event);
169
168
  }, [onSelect, disabled]);
170
169
 
171
170
  const keyPressHandler = _react.default.useCallback(event => {
172
- if (typeof onSelect !== 'function') return;
173
171
  if (disabled) return;
174
172
 
175
173
  if (!event.defaultPrevented && [' ', 'Enter'].includes(event.key)) {
@@ -0,0 +1,174 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
5
+ }) : (function(o, m, k, k2) {
6
+ if (k2 === undefined) k2 = k;
7
+ o[k2] = m[k];
8
+ }));
9
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
10
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
11
+ }) : function(o, v) {
12
+ o["default"] = v;
13
+ });
14
+ var __importStar = (this && this.__importStar) || function (mod) {
15
+ if (mod && mod.__esModule) return mod;
16
+ var result = {};
17
+ if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
18
+ __setModuleDefault(result, mod);
19
+ return result;
20
+ };
21
+ var __importDefault = (this && this.__importDefault) || function (mod) {
22
+ return (mod && mod.__esModule) ? mod : { "default": mod };
23
+ };
24
+ Object.defineProperty(exports, "__esModule", { value: true });
25
+ exports.Item = exports.TEXT_ROW_HEIGHT = exports.Slot = exports.getVariantStyles = void 0;
26
+ const react_1 = __importDefault(require("react"));
27
+ const ssr_1 = require("@react-aria/ssr");
28
+ const styled_components_1 = __importDefault(require("styled-components"));
29
+ const ThemeProvider_1 = require("../ThemeProvider");
30
+ const Box_1 = __importDefault(require("../Box"));
31
+ const sx_1 = __importStar(require("../sx"));
32
+ const create_slots_1 = __importDefault(require("../utils/create-slots"));
33
+ const List_1 = require("./List");
34
+ const Selection_1 = require("./Selection");
35
+ const getVariantStyles = (variant, disabled) => {
36
+ if (disabled) {
37
+ return {
38
+ color: 'primer.fg.disabled',
39
+ iconColor: 'primer.fg.disabled',
40
+ annotationColor: 'primer.fg.disabled'
41
+ };
42
+ }
43
+ switch (variant) {
44
+ case 'danger':
45
+ return {
46
+ color: 'danger.fg',
47
+ iconColor: 'danger.fg',
48
+ annotationColor: 'fg.muted',
49
+ hoverColor: 'actionListItem.danger.hoverText'
50
+ };
51
+ default:
52
+ return {
53
+ color: 'fg.default',
54
+ iconColor: 'fg.muted',
55
+ annotationColor: 'fg.muted',
56
+ hoverColor: 'fg.default'
57
+ };
58
+ }
59
+ };
60
+ exports.getVariantStyles = getVariantStyles;
61
+ const { Slots, Slot } = create_slots_1.default(['LeadingVisual', 'InlineDescription', 'BlockDescription', 'TrailingVisual']);
62
+ exports.Slot = Slot;
63
+ const LiBox = styled_components_1.default.li(sx_1.default);
64
+ exports.TEXT_ROW_HEIGHT = '20px'; // custom value off the scale
65
+ exports.Item = react_1.default.forwardRef(({ variant = 'default', disabled = false, selected = undefined, onSelect = () => null, sx: sxProp = {}, id, _PrivateItemWrapper, ...props }, forwardedRef) => {
66
+ const { variant: listVariant, showDividers } = react_1.default.useContext(List_1.ListContext);
67
+ const { theme } = ThemeProvider_1.useTheme();
68
+ const styles = {
69
+ display: 'flex',
70
+ paddingX: 2,
71
+ fontSize: 1,
72
+ paddingY: '6px',
73
+ lineHeight: exports.TEXT_ROW_HEIGHT,
74
+ minHeight: 5,
75
+ marginX: listVariant === 'inset' ? 2 : 0,
76
+ borderRadius: listVariant === 'inset' ? 2 : 0,
77
+ transition: 'background 33.333ms linear',
78
+ color: exports.getVariantStyles(variant, disabled).color,
79
+ cursor: 'pointer',
80
+ '&[aria-disabled]': { cursor: 'not-allowed' },
81
+ '@media (hover: hover) and (pointer: fine)': {
82
+ ':hover:not([aria-disabled])': {
83
+ backgroundColor: `actionListItem.${variant}.hoverBg`,
84
+ color: exports.getVariantStyles(variant, disabled).hoverColor
85
+ },
86
+ ':focus:not([data-focus-visible-added])': {
87
+ backgroundColor: `actionListItem.${variant}.selectedBg`,
88
+ color: exports.getVariantStyles(variant, disabled).hoverColor,
89
+ outline: 'none'
90
+ },
91
+ '&[data-focus-visible-added]': {
92
+ // we don't use :focus-visible because not all browsers (safari) have it yet
93
+ outline: 'none',
94
+ border: `2 solid`,
95
+ boxShadow: `0 0 0 2px ${theme?.colors.accent.emphasis}`
96
+ },
97
+ ':active:not([aria-disabled])': {
98
+ backgroundColor: `actionListItem.${variant}.activeBg`,
99
+ color: exports.getVariantStyles(variant, disabled).hoverColor
100
+ }
101
+ },
102
+ /** Divider styles */
103
+ '[data-component="ActionList.Item--DividerContainer"]': {
104
+ position: 'relative'
105
+ },
106
+ '[data-component="ActionList.Item--DividerContainer"]::before': {
107
+ content: '" "',
108
+ display: 'block',
109
+ position: 'absolute',
110
+ width: '100%',
111
+ top: '-7px',
112
+ border: '0 solid',
113
+ borderTopWidth: showDividers ? `1px` : '0',
114
+ borderColor: 'var(--divider-color, transparent)'
115
+ },
116
+ // show between 2 items
117
+ ':not(:first-of-type)': { '--divider-color': theme?.colors.actionListItem.inlineDivider },
118
+ // hide divider after dividers & group header, with higher importance!
119
+ '[data-component="ActionList.Divider"] + &': { '--divider-color': 'transparent !important' },
120
+ // hide border on current and previous item
121
+ '&:hover:not([aria-disabled]), &:focus:not([aria-disabled]), &[data-focus-visible-added]:not([aria-disabled])': {
122
+ '--divider-color': 'transparent'
123
+ },
124
+ '&:hover:not([aria-disabled]) + &, &:focus:not([aria-disabled]) + &, &[data-focus-visible-added] + li': {
125
+ '--divider-color': 'transparent'
126
+ }
127
+ };
128
+ const clickHandler = react_1.default.useCallback(event => {
129
+ if (disabled)
130
+ return;
131
+ if (!event.defaultPrevented)
132
+ onSelect(event);
133
+ }, [onSelect, disabled]);
134
+ const keyPressHandler = react_1.default.useCallback(event => {
135
+ if (disabled)
136
+ return;
137
+ if (!event.defaultPrevented && [' ', 'Enter'].includes(event.key)) {
138
+ onSelect(event);
139
+ }
140
+ }, [onSelect, disabled]);
141
+ // use props.id if provided, otherwise generate one.
142
+ const labelId = ssr_1.useSSRSafeId(id);
143
+ const inlineDescriptionId = ssr_1.useSSRSafeId(id && `${id}--inline-description`);
144
+ const blockDescriptionId = ssr_1.useSSRSafeId(id && `${id}--block-description`);
145
+ const ItemWrapper = _PrivateItemWrapper || react_1.default.Fragment;
146
+ return (<Slots context={{ variant, disabled, inlineDescriptionId, blockDescriptionId }}>
147
+ {slots => (<LiBox ref={forwardedRef} sx={sx_1.merge(styles, sxProp)} onClick={clickHandler} onKeyPress={keyPressHandler} aria-selected={selected} aria-disabled={disabled ? true : undefined} tabIndex={disabled || _PrivateItemWrapper ? undefined : 0} aria-labelledby={`${labelId} ${slots.InlineDescription ? inlineDescriptionId : ''}`} aria-describedby={slots.BlockDescription ? blockDescriptionId : undefined} {...props}>
148
+ <ItemWrapper>
149
+ <Selection_1.Selection selected={selected}/>
150
+ {slots.LeadingVisual}
151
+ <Box_1.default data-component="ActionList.Item--DividerContainer" sx={{ display: 'flex', flexDirection: 'column', flexGrow: 1, minWidth: 0 }}>
152
+ <ConditionalBox if={Boolean(slots.TrailingVisual)} sx={{ display: 'flex', flexGrow: 1 }}>
153
+ <ConditionalBox if={Boolean(slots.InlineDescription)} sx={{ display: 'flex', flexGrow: 1, alignItems: 'baseline', minWidth: 0 }}>
154
+ <Box_1.default as="span" id={labelId} sx={{ flexGrow: slots.InlineDescription ? 0 : 1 }}>
155
+ {props.children}
156
+ </Box_1.default>
157
+ {slots.InlineDescription}
158
+ </ConditionalBox>
159
+ {slots.TrailingVisual}
160
+ </ConditionalBox>
161
+ {slots.BlockDescription}
162
+ </Box_1.default>
163
+ </ItemWrapper>
164
+ </LiBox>)}
165
+ </Slots>);
166
+ });
167
+ exports.Item.displayName = 'ActionList.Item';
168
+ const ConditionalBox = props => {
169
+ const { if: condition, ...rest } = props;
170
+ if (condition)
171
+ return <Box_1.default {...rest}>{props.children}</Box_1.default>;
172
+ else
173
+ return <>{props.children}</>;
174
+ };
@@ -0,0 +1,28 @@
1
+ "use strict";
2
+ var __importDefault = (this && this.__importDefault) || function (mod) {
3
+ return (mod && mod.__esModule) ? mod : { "default": mod };
4
+ };
5
+ Object.defineProperty(exports, "__esModule", { value: true });
6
+ exports.LinkItem = void 0;
7
+ const react_1 = __importDefault(require("react"));
8
+ const Link_1 = __importDefault(require("../Link"));
9
+ const sx_1 = require("../sx");
10
+ const Item_1 = require("./Item");
11
+ exports.LinkItem = react_1.default.forwardRef(({ sx = {}, as: Component, ...props }, forwardedRef) => {
12
+ const styles = {
13
+ // occupy full size of Item
14
+ paddingX: 2,
15
+ paddingY: '6px',
16
+ display: 'flex',
17
+ flexGrow: 1,
18
+ borderRadius: 2,
19
+ // inherit Item styles
20
+ color: 'inherit',
21
+ '&:hover': { color: 'inherit', textDecoration: 'none' }
22
+ };
23
+ return (<Item_1.Item sx={{ paddingY: 0, paddingX: 0 }} _PrivateItemWrapper={({ children }) => (<Link_1.default as={Component} sx={sx_1.merge(styles, sx)} {...props} ref={forwardedRef}>
24
+ {children}
25
+ </Link_1.default>)}>
26
+ {props.children}
27
+ </Item_1.Item>);
28
+ });
@@ -42,7 +42,8 @@ const List = /*#__PURE__*/_react.default.forwardRef(({
42
42
  paddingY: variant === 'inset' ? 2 : 0
43
43
  };
44
44
  return /*#__PURE__*/_react.default.createElement(ListBox, _extends({
45
- sx: (0, _sx.merge)(styles, sxProp)
45
+ sx: (0, _sx.merge)(styles, sxProp),
46
+ "aria-multiselectable": selectionVariant === 'multiple' ? true : undefined
46
47
  }, props, {
47
48
  ref: forwardedRef
48
49
  }), /*#__PURE__*/_react.default.createElement(ListContext.Provider, {
@@ -0,0 +1,41 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
5
+ }) : (function(o, m, k, k2) {
6
+ if (k2 === undefined) k2 = k;
7
+ o[k2] = m[k];
8
+ }));
9
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
10
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
11
+ }) : function(o, v) {
12
+ o["default"] = v;
13
+ });
14
+ var __importStar = (this && this.__importStar) || function (mod) {
15
+ if (mod && mod.__esModule) return mod;
16
+ var result = {};
17
+ if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
18
+ __setModuleDefault(result, mod);
19
+ return result;
20
+ };
21
+ var __importDefault = (this && this.__importDefault) || function (mod) {
22
+ return (mod && mod.__esModule) ? mod : { "default": mod };
23
+ };
24
+ Object.defineProperty(exports, "__esModule", { value: true });
25
+ exports.List = exports.ListContext = void 0;
26
+ const react_1 = __importDefault(require("react"));
27
+ const styled_components_1 = __importDefault(require("styled-components"));
28
+ const sx_1 = __importStar(require("../sx"));
29
+ exports.ListContext = react_1.default.createContext({});
30
+ const ListBox = styled_components_1.default.ul(sx_1.default);
31
+ exports.List = react_1.default.forwardRef(({ variant = 'inset', selectionVariant, showDividers = false, sx: sxProp = {}, ...props }, forwardedRef) => {
32
+ const styles = {
33
+ margin: 0,
34
+ paddingInlineStart: 0,
35
+ paddingY: variant === 'inset' ? 2 : 0
36
+ };
37
+ return (<ListBox sx={sx_1.merge(styles, sxProp)} aria-multiselectable={selectionVariant === 'multiple' ? true : undefined} {...props} ref={forwardedRef}>
38
+ <exports.ListContext.Provider value={{ variant, selectionVariant, showDividers }}>{props.children}</exports.ListContext.Provider>
39
+ </ListBox>);
40
+ });
41
+ exports.List.displayName = 'ActionList';
@@ -53,9 +53,7 @@ const Selection = ({
53
53
  sx: {
54
54
  rect: {
55
55
  fill: selected ? 'accent.fg' : 'canvas.default',
56
- stroke: selected ? 'accent.fg' : 'border.default',
57
- shapeRendering: 'auto' // this is a workaround to override global style in github/github, see primer/react#1666
58
-
56
+ stroke: selected ? 'accent.fg' : 'border.default'
59
57
  },
60
58
  path: {
61
59
  fill: 'fg.onEmphasis',
@@ -0,0 +1,50 @@
1
+ "use strict";
2
+ var __importDefault = (this && this.__importDefault) || function (mod) {
3
+ return (mod && mod.__esModule) ? mod : { "default": mod };
4
+ };
5
+ Object.defineProperty(exports, "__esModule", { value: true });
6
+ exports.Selection = void 0;
7
+ const react_1 = __importDefault(require("react"));
8
+ const octicons_react_1 = require("@primer/octicons-react");
9
+ const List_1 = require("./List");
10
+ const Group_1 = require("./Group");
11
+ const Visuals_1 = require("./Visuals");
12
+ const Selection = ({ selected }) => {
13
+ const { selectionVariant: listSelectionVariant } = react_1.default.useContext(List_1.ListContext);
14
+ const { selectionVariant: groupSelectionVariant } = react_1.default.useContext(Group_1.GroupContext);
15
+ /** selectionVariant in Group can override the selectionVariant in List root */
16
+ const selectionVariant = typeof groupSelectionVariant !== 'undefined' ? groupSelectionVariant : listSelectionVariant;
17
+ // if selectionVariant is not set on List, don't show selection
18
+ if (!selectionVariant) {
19
+ // to avoid confusion, fail loudly instead of silently ignoring
20
+ if (selected)
21
+ throw new Error('For Item to be selected, ActionList or ActionList.Group needs to have a selectionVariant defined');
22
+ return null;
23
+ }
24
+ if (selectionVariant === 'single') {
25
+ return <Visuals_1.LeadingVisualContainer>{selected && <octicons_react_1.CheckIcon />}</Visuals_1.LeadingVisualContainer>;
26
+ }
27
+ /**
28
+ * selectionVariant is multiple
29
+ * we use a svg instead of an input because there should not
30
+ * be an interactive element inside an option
31
+ * svg copied from primer/css
32
+ */
33
+ return (<Visuals_1.LeadingVisualContainer sx={{
34
+ rect: {
35
+ fill: selected ? 'accent.fg' : 'canvas.default',
36
+ stroke: selected ? 'accent.fg' : 'border.default'
37
+ },
38
+ path: {
39
+ fill: 'fg.onEmphasis',
40
+ boxShadow: 'shadow.small',
41
+ opacity: selected ? 1 : 0
42
+ }
43
+ }}>
44
+ <svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" aria-hidden="true">
45
+ <rect x="2" y="2" width="12" height="12" rx="4"></rect>
46
+ <path fillRule="evenodd" strokeWidth="0" 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"/>
47
+ </svg>
48
+ </Visuals_1.LeadingVisualContainer>);
49
+ };
50
+ exports.Selection = Selection;
@@ -0,0 +1,48 @@
1
+ "use strict";
2
+ var __importDefault = (this && this.__importDefault) || function (mod) {
3
+ return (mod && mod.__esModule) ? mod : { "default": mod };
4
+ };
5
+ Object.defineProperty(exports, "__esModule", { value: true });
6
+ exports.TrailingVisual = exports.LeadingVisual = exports.LeadingVisualContainer = void 0;
7
+ const react_1 = __importDefault(require("react"));
8
+ const Box_1 = __importDefault(require("../Box"));
9
+ const sx_1 = require("../sx");
10
+ const constants_1 = require("../constants");
11
+ const Item_1 = require("./Item");
12
+ const LeadingVisualContainer = ({ sx = {}, ...props }) => {
13
+ return (<Box_1.default as="span" sx={sx_1.merge({
14
+ height: Item_1.TEXT_ROW_HEIGHT,
15
+ minWidth: constants_1.get('space.3'),
16
+ maxWidth: Item_1.TEXT_ROW_HEIGHT,
17
+ display: 'flex',
18
+ justifyContent: 'center',
19
+ alignItems: 'center',
20
+ flexShrink: 0,
21
+ marginRight: 2
22
+ }, sx)} {...props}/>);
23
+ };
24
+ exports.LeadingVisualContainer = LeadingVisualContainer;
25
+ const LeadingVisual = ({ sx = {}, ...props }) => {
26
+ return (<Item_1.Slot name="LeadingVisual">
27
+ {({ variant, disabled }) => (<exports.LeadingVisualContainer sx={sx_1.merge({
28
+ color: Item_1.getVariantStyles(variant, disabled).iconColor,
29
+ svg: { fontSize: 0 }
30
+ }, sx)} {...props}>
31
+ {props.children}
32
+ </exports.LeadingVisualContainer>)}
33
+ </Item_1.Slot>);
34
+ };
35
+ exports.LeadingVisual = LeadingVisual;
36
+ const TrailingVisual = ({ sx = {}, ...props }) => {
37
+ return (<Item_1.Slot name="TrailingVisual">
38
+ {({ variant, disabled }) => (<Box_1.default as="span" sx={sx_1.merge({
39
+ height: '20px',
40
+ flexShrink: 0,
41
+ color: Item_1.getVariantStyles(variant, disabled).annotationColor,
42
+ marginLeft: 2
43
+ }, sx)} {...props}>
44
+ {props.children}
45
+ </Box_1.default>)}
46
+ </Item_1.Slot>);
47
+ };
48
+ exports.TrailingVisual = TrailingVisual;
@@ -1,47 +1,29 @@
1
1
  "use strict";
2
-
3
- Object.defineProperty(exports, "__esModule", {
4
- value: true
5
- });
2
+ Object.defineProperty(exports, "__esModule", { value: true });
6
3
  exports.ActionList = void 0;
7
-
8
- var _List = require("./List");
9
-
10
- var _Group = require("./Group");
11
-
12
- var _Item = require("./Item");
13
-
14
- var _LinkItem = require("./LinkItem");
15
-
16
- var _Divider = require("./Divider");
17
-
18
- var _Description = require("./Description");
19
-
20
- var _Visuals = require("./Visuals");
21
-
4
+ const List_1 = require("./List");
5
+ const Group_1 = require("./Group");
6
+ const Item_1 = require("./Item");
7
+ const LinkItem_1 = require("./LinkItem");
8
+ const Divider_1 = require("./Divider");
9
+ const Description_1 = require("./Description");
10
+ const Visuals_1 = require("./Visuals");
22
11
  /**
23
12
  * Collection of list-related components.
24
13
  */
25
- const ActionList = Object.assign(_List.List, {
26
- /** Collects related `Items` in an `ActionList`. */
27
- Group: _Group.Group,
28
-
29
- /** An actionable or selectable `Item` */
30
- Item: _Item.Item,
31
-
32
- /** A `Item` that renders a full-size anchor inside ListItem */
33
- LinkItem: _LinkItem.LinkItem,
34
-
35
- /** Visually separates `Item`s or `Group`s in an `ActionList`. */
36
- Divider: _Divider.Divider,
37
-
38
- /** Secondary text which provides additional information about an `Item`. */
39
- Description: _Description.Description,
40
-
41
- /** Icon (or similar) positioned before `Item` text. */
42
- LeadingVisual: _Visuals.LeadingVisual,
43
-
44
- /** Icon (or similar) positioned after `Item` text. */
45
- TrailingVisual: _Visuals.TrailingVisual
14
+ exports.ActionList = Object.assign(List_1.List, {
15
+ /** Collects related `Items` in an `ActionList`. */
16
+ Group: Group_1.Group,
17
+ /** An actionable or selectable `Item` */
18
+ Item: Item_1.Item,
19
+ /** A `Item` that renders a full-size anchor inside ListItem */
20
+ LinkItem: LinkItem_1.LinkItem,
21
+ /** Visually separates `Item`s or `Group`s in an `ActionList`. */
22
+ Divider: Divider_1.Divider,
23
+ /** Secondary text which provides additional information about an `Item`. */
24
+ Description: Description_1.Description,
25
+ /** Icon (or similar) positioned before `Item` text. */
26
+ LeadingVisual: Visuals_1.LeadingVisual,
27
+ /** Icon (or similar) positioned after `Item` text. */
28
+ TrailingVisual: Visuals_1.TrailingVisual
46
29
  });
47
- exports.ActionList = ActionList;