@primer/components 0.0.0-20211030175556 → 0.0.0-20211030182910

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 (272) hide show
  1. package/CHANGELOG.md +34 -2
  2. package/dist/browser.esm.js +186 -183
  3. package/dist/browser.esm.js.map +1 -1
  4. package/dist/browser.umd.js +190 -187
  5. package/dist/browser.umd.js.map +1 -1
  6. package/lib/ActionList/Item.js +3 -3
  7. package/lib/ActionList/index.js +23 -12
  8. package/lib/ActionList2/Item.js +3 -1
  9. package/lib/ActionList2/List.js +1 -2
  10. package/lib/ActionList2/Selection.js +3 -1
  11. package/lib/ActionList2/index.js +41 -23
  12. package/lib/AnchoredOverlay/index.js +12 -4
  13. package/lib/Autocomplete/Autocomplete.d.ts +1 -0
  14. package/lib/Autocomplete/AutocompleteInput.d.ts +1 -0
  15. package/lib/Autocomplete/index.js +14 -7
  16. package/lib/Avatar.d.ts +1 -2
  17. package/lib/Avatar.js +1 -1
  18. package/lib/BranchName.d.ts +1 -2
  19. package/lib/BranchName.js +1 -1
  20. package/lib/Button/Button.d.ts +1 -0
  21. package/lib/Button/ButtonClose.d.ts +2 -1
  22. package/lib/Button/ButtonDanger.d.ts +1 -0
  23. package/lib/Button/ButtonInvisible.d.ts +1 -0
  24. package/lib/Button/ButtonOutline.d.ts +1 -0
  25. package/lib/Button/ButtonPrimary.d.ts +1 -0
  26. package/lib/Button/index.js +70 -21
  27. package/lib/Checkbox.d.ts +29 -0
  28. package/lib/Checkbox.js +64 -0
  29. package/lib/CircleOcticon.d.ts +1 -0
  30. package/lib/Details.d.ts +1 -2
  31. package/lib/Details.js +1 -3
  32. package/lib/Dialog.d.ts +3 -2
  33. package/lib/Dropdown.d.ts +6 -66
  34. package/lib/DropdownMenu/DropdownButton.d.ts +2 -1
  35. package/lib/DropdownMenu/index.js +20 -6
  36. package/lib/DropdownStyles.js +26 -18
  37. package/lib/FilterList.d.ts +1 -0
  38. package/lib/FilteredActionList/index.js +12 -4
  39. package/lib/Heading.d.ts +1 -2
  40. package/lib/Heading.js +1 -6
  41. package/lib/NewButton/index.js +12 -5
  42. package/lib/NewButton/types.js +1 -2
  43. package/lib/Overlay.d.ts +5 -3
  44. package/lib/Pagination/index.js +12 -6
  45. package/lib/Portal/index.js +16 -5
  46. package/lib/Position.d.ts +4 -4
  47. package/lib/ProgressBar.d.ts +16 -11
  48. package/lib/ProgressBar.js +6 -10
  49. package/lib/SelectMenu/SelectMenu.d.ts +10 -4
  50. package/lib/SelectMenu/SelectMenuItem.d.ts +1 -1
  51. package/lib/SelectMenu/SelectMenuModal.d.ts +1 -1
  52. package/lib/SelectMenu/hooks/useKeyboardNav.js +96 -80
  53. package/lib/SelectMenu/index.js +14 -7
  54. package/lib/SelectPanel/index.js +12 -4
  55. package/lib/Spinner.d.ts +1 -2
  56. package/lib/Spinner.js +1 -3
  57. package/lib/TextInputWithTokens.d.ts +1 -0
  58. package/lib/Token/AvatarToken.d.ts +1 -1
  59. package/lib/Token/IssueLabelToken.d.ts +1 -1
  60. package/lib/Token/Token.d.ts +1 -1
  61. package/lib/Token/index.js +30 -11
  62. package/lib/behaviors/anchoredPosition.js +234 -205
  63. package/lib/behaviors/focusTrap.js +157 -121
  64. package/lib/behaviors/focusZone.js +509 -434
  65. package/lib/behaviors/scrollIntoViewingArea.js +35 -18
  66. package/lib/constants.js +43 -39
  67. package/lib/drafts.js +30 -20
  68. package/lib/hooks/index.js +60 -16
  69. package/lib/hooks/useAnchoredPosition.js +40 -32
  70. package/lib/hooks/useCombinedRefs.js +36 -32
  71. package/lib/hooks/useDialog.js +96 -72
  72. package/lib/hooks/useFocusTrap.js +60 -43
  73. package/lib/hooks/useFocusZone.js +50 -54
  74. package/lib/hooks/useOnEscapePress.js +36 -25
  75. package/lib/hooks/useOpenAndCloseFocus.js +34 -22
  76. package/lib/hooks/useProvidedRefOrCreate.js +14 -10
  77. package/lib/hooks/useProvidedStateOrCreate.js +16 -13
  78. package/lib/hooks/useRenderForcingRef.js +17 -13
  79. package/lib/hooks/useResizeObserver.js +18 -15
  80. package/lib/hooks/useSafeTimeout.js +30 -22
  81. package/lib/hooks/useScrollFlash.js +23 -16
  82. package/lib/index.d.ts +2 -0
  83. package/lib/index.js +652 -163
  84. package/lib/polyfills/eventListenerSignal.js +45 -37
  85. package/lib/sx.js +22 -10
  86. package/lib/theme-preval.js +3169 -64
  87. package/lib/theme.js +12 -3
  88. package/lib/utils/iterateFocusableElements.js +85 -63
  89. package/lib/utils/testing.d.ts +2 -1
  90. package/lib/utils/testing.js +29 -0
  91. package/lib/utils/theme.js +47 -33
  92. package/lib/utils/types/AriaRole.js +1 -2
  93. package/lib/utils/types/ComponentProps.js +1 -2
  94. package/lib/utils/types/Flatten.js +1 -2
  95. package/lib/utils/types/KeyPaths.js +1 -2
  96. package/lib/utils/types/MandateProps.js +1 -16
  97. package/lib/utils/types/Merge.js +1 -2
  98. package/lib/utils/types/index.js +69 -16
  99. package/lib/utils/uniqueId.js +8 -5
  100. package/lib/utils/use-force-update.js +14 -8
  101. package/lib/utils/useIsomorphicLayoutEffect.js +11 -8
  102. package/lib/utils/userAgent.js +12 -8
  103. package/lib-esm/ActionList/Item.js +3 -3
  104. package/lib-esm/ActionList2/Item.js +3 -1
  105. package/lib-esm/ActionList2/List.js +1 -2
  106. package/lib-esm/ActionList2/Selection.js +3 -1
  107. package/lib-esm/Autocomplete/Autocomplete.d.ts +1 -0
  108. package/lib-esm/Autocomplete/AutocompleteInput.d.ts +1 -0
  109. package/lib-esm/Avatar.d.ts +1 -2
  110. package/lib-esm/Avatar.js +2 -2
  111. package/lib-esm/BranchName.d.ts +1 -2
  112. package/lib-esm/BranchName.js +2 -2
  113. package/lib-esm/Button/Button.d.ts +1 -0
  114. package/lib-esm/Button/ButtonClose.d.ts +2 -1
  115. package/lib-esm/Button/ButtonDanger.d.ts +1 -0
  116. package/lib-esm/Button/ButtonInvisible.d.ts +1 -0
  117. package/lib-esm/Button/ButtonOutline.d.ts +1 -0
  118. package/lib-esm/Button/ButtonPrimary.d.ts +1 -0
  119. package/lib-esm/Checkbox.d.ts +29 -0
  120. package/lib-esm/Checkbox.js +44 -0
  121. package/lib-esm/CircleOcticon.d.ts +1 -0
  122. package/lib-esm/Details.d.ts +1 -2
  123. package/lib-esm/Details.js +1 -2
  124. package/lib-esm/Dialog.d.ts +3 -2
  125. package/lib-esm/Dropdown.d.ts +6 -66
  126. package/lib-esm/DropdownMenu/DropdownButton.d.ts +2 -1
  127. package/lib-esm/FilterList.d.ts +1 -0
  128. package/lib-esm/Heading.d.ts +1 -2
  129. package/lib-esm/Heading.js +2 -6
  130. package/lib-esm/Overlay.d.ts +5 -3
  131. package/lib-esm/Position.d.ts +4 -4
  132. package/lib-esm/ProgressBar.d.ts +16 -11
  133. package/lib-esm/ProgressBar.js +7 -11
  134. package/lib-esm/SelectMenu/SelectMenu.d.ts +10 -4
  135. package/lib-esm/SelectMenu/SelectMenuItem.d.ts +1 -1
  136. package/lib-esm/SelectMenu/SelectMenuModal.d.ts +1 -1
  137. package/lib-esm/Spinner.d.ts +1 -2
  138. package/lib-esm/Spinner.js +1 -2
  139. package/lib-esm/TextInputWithTokens.d.ts +1 -0
  140. package/lib-esm/Token/AvatarToken.d.ts +1 -1
  141. package/lib-esm/Token/IssueLabelToken.d.ts +1 -1
  142. package/lib-esm/Token/Token.d.ts +1 -1
  143. package/lib-esm/index.d.ts +2 -0
  144. package/lib-esm/index.js +1 -0
  145. package/lib-esm/theme-preval.js +446 -0
  146. package/lib-esm/utils/testing.d.ts +2 -1
  147. package/lib-esm/utils/testing.js +24 -0
  148. package/package.json +4 -5
  149. package/lib/ActionList/Divider.jsx +0 -29
  150. package/lib/ActionList/Group.jsx +0 -23
  151. package/lib/ActionList/Header.jsx +0 -66
  152. package/lib/ActionList/Item.jsx +0 -288
  153. package/lib/ActionList/List.jsx +0 -138
  154. package/lib/ActionList2/Description.jsx +0 -29
  155. package/lib/ActionList2/Divider.jsx +0 -22
  156. package/lib/ActionList2/Group.jsx +0 -54
  157. package/lib/ActionList2/Header.d.ts +0 -26
  158. package/lib/ActionList2/Header.js +0 -55
  159. package/lib/ActionList2/Header.jsx +0 -36
  160. package/lib/ActionList2/Item.jsx +0 -174
  161. package/lib/ActionList2/LinkItem.jsx +0 -28
  162. package/lib/ActionList2/List.jsx +0 -41
  163. package/lib/ActionList2/Selection.jsx +0 -50
  164. package/lib/ActionList2/Visuals.jsx +0 -48
  165. package/lib/ActionMenu.jsx +0 -73
  166. package/lib/AnchoredOverlay/AnchoredOverlay.jsx +0 -100
  167. package/lib/Autocomplete/Autocomplete.jsx +0 -100
  168. package/lib/Autocomplete/AutocompleteContext.jsx +0 -5
  169. package/lib/Autocomplete/AutocompleteInput.jsx +0 -113
  170. package/lib/Autocomplete/AutocompleteMenu.jsx +0 -190
  171. package/lib/Autocomplete/AutocompleteOverlay.jsx +0 -55
  172. package/lib/Avatar.jsx +0 -34
  173. package/lib/AvatarPair.jsx +0 -29
  174. package/lib/AvatarStack.jsx +0 -151
  175. package/lib/BaseStyles.jsx +0 -65
  176. package/lib/BorderBox.jsx +0 -18
  177. package/lib/Box.jsx +0 -10
  178. package/lib/BranchName.jsx +0 -20
  179. package/lib/Breadcrumbs.jsx +0 -71
  180. package/lib/Button/Button.jsx +0 -40
  181. package/lib/Button/ButtonBase.jsx +0 -33
  182. package/lib/Button/ButtonClose.jsx +0 -53
  183. package/lib/Button/ButtonDanger.jsx +0 -43
  184. package/lib/Button/ButtonGroup.jsx +0 -55
  185. package/lib/Button/ButtonInvisible.jsx +0 -32
  186. package/lib/Button/ButtonOutline.jsx +0 -43
  187. package/lib/Button/ButtonPrimary.jsx +0 -42
  188. package/lib/Button/ButtonStyles.jsx +0 -37
  189. package/lib/Button/ButtonTableList.jsx +0 -46
  190. package/lib/Caret.jsx +0 -93
  191. package/lib/CircleBadge.jsx +0 -42
  192. package/lib/CircleOcticon.jsx +0 -21
  193. package/lib/CounterLabel.jsx +0 -43
  194. package/lib/Details.jsx +0 -21
  195. package/lib/Dialog/ConfirmationDialog.jsx +0 -146
  196. package/lib/Dialog/Dialog.jsx +0 -279
  197. package/lib/Dialog.jsx +0 -129
  198. package/lib/Dropdown.jsx +0 -131
  199. package/lib/DropdownMenu/DropdownButton.jsx +0 -14
  200. package/lib/DropdownMenu/DropdownMenu.jsx +0 -70
  201. package/lib/FilterList.jsx +0 -59
  202. package/lib/FilteredActionList/FilteredActionList.jsx +0 -100
  203. package/lib/FilteredSearch.jsx +0 -28
  204. package/lib/Flash.jsx +0 -69
  205. package/lib/Flex.jsx +0 -15
  206. package/lib/FormGroup.jsx +0 -22
  207. package/lib/Grid.jsx +0 -15
  208. package/lib/Header.jsx +0 -83
  209. package/lib/Heading.jsx +0 -21
  210. package/lib/Label.jsx +0 -82
  211. package/lib/LabelGroup.jsx +0 -18
  212. package/lib/Link.jsx +0 -36
  213. package/lib/NewButton/button-counter.jsx +0 -14
  214. package/lib/NewButton/button.jsx +0 -279
  215. package/lib/Overlay.jsx +0 -154
  216. package/lib/Pagehead.jsx +0 -17
  217. package/lib/Pagination/Pagination.jsx +0 -161
  218. package/lib/Pagination/model.jsx +0 -174
  219. package/lib/PointerBox.jsx +0 -25
  220. package/lib/Popover.jsx +0 -202
  221. package/lib/Portal/Portal.jsx +0 -79
  222. package/lib/Position.jsx +0 -46
  223. package/lib/ProgressBar.jsx +0 -39
  224. package/lib/SelectMenu/SelectMenu.jsx +0 -112
  225. package/lib/SelectMenu/SelectMenuContext.jsx +0 -5
  226. package/lib/SelectMenu/SelectMenuDivider.jsx +0 -42
  227. package/lib/SelectMenu/SelectMenuFilter.jsx +0 -58
  228. package/lib/SelectMenu/SelectMenuFooter.jsx +0 -45
  229. package/lib/SelectMenu/SelectMenuHeader.jsx +0 -42
  230. package/lib/SelectMenu/SelectMenuItem.jsx +0 -142
  231. package/lib/SelectMenu/SelectMenuList.jsx +0 -59
  232. package/lib/SelectMenu/SelectMenuLoadingAnimation.jsx +0 -22
  233. package/lib/SelectMenu/SelectMenuModal.jsx +0 -118
  234. package/lib/SelectMenu/SelectMenuTab.jsx +0 -92
  235. package/lib/SelectMenu/SelectMenuTabPanel.jsx +0 -42
  236. package/lib/SelectMenu/SelectMenuTabs.jsx +0 -57
  237. package/lib/SelectPanel/SelectPanel.jsx +0 -105
  238. package/lib/SideNav.jsx +0 -173
  239. package/lib/Spinner.jsx +0 -35
  240. package/lib/StateLabel.jsx +0 -93
  241. package/lib/StyledOcticon.jsx +0 -18
  242. package/lib/SubNav.jsx +0 -101
  243. package/lib/TabNav.jsx +0 -58
  244. package/lib/Text.jsx +0 -14
  245. package/lib/TextInput.jsx +0 -23
  246. package/lib/TextInputWithTokens.jsx +0 -218
  247. package/lib/ThemeProvider.jsx +0 -130
  248. package/lib/Timeline.jsx +0 -123
  249. package/lib/Token/AvatarToken.jsx +0 -54
  250. package/lib/Token/IssueLabelToken.jsx +0 -125
  251. package/lib/Token/Token.jsx +0 -103
  252. package/lib/Token/TokenBase.jsx +0 -88
  253. package/lib/Token/_RemoveTokenButton.jsx +0 -108
  254. package/lib/Token/_TokenTextContainer.jsx +0 -49
  255. package/lib/Tooltip.jsx +0 -246
  256. package/lib/Truncate.jsx +0 -24
  257. package/lib/UnderlineNav.jsx +0 -88
  258. package/lib/_TextInputWrapper.jsx +0 -120
  259. package/lib/_UnstyledTextInput.jsx +0 -22
  260. package/lib/hooks/useDetails.jsx +0 -39
  261. package/lib/hooks/useOnOutsideClick.jsx +0 -61
  262. package/lib/hooks/useOverlay.jsx +0 -15
  263. package/lib/utils/create-slots.jsx +0 -65
  264. package/lib/utils/deprecate.jsx +0 -59
  265. package/lib/utils/isNumeric.jsx +0 -7
  266. package/lib/utils/ssr.jsx +0 -6
  267. package/lib/utils/test-deprecations.jsx +0 -20
  268. package/lib/utils/test-helpers.jsx +0 -8
  269. package/lib/utils/test-matchers.jsx +0 -100
  270. package/lib/utils/testing.jsx +0 -206
  271. package/lib-esm/ActionList2/Header.d.ts +0 -26
  272. package/lib-esm/ActionList2/Header.js +0 -44
@@ -1,174 +0,0 @@
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
- };
@@ -1,28 +0,0 @@
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
- });
@@ -1,41 +0,0 @@
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';
@@ -1,50 +0,0 @@
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;
@@ -1,48 +0,0 @@
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,73 +0,0 @@
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.ActionMenu = void 0;
26
- const List_1 = require("./ActionList/List");
27
- const Item_1 = require("./ActionList/Item");
28
- const Divider_1 = require("./ActionList/Divider");
29
- const Button_1 = __importDefault(require("./Button"));
30
- const react_1 = __importStar(require("react"));
31
- const AnchoredOverlay_1 = require("./AnchoredOverlay");
32
- const useProvidedStateOrCreate_1 = require("./hooks/useProvidedStateOrCreate");
33
- const hooks_1 = require("./hooks");
34
- const ActionMenuItem = (props) => <Item_1.Item role="menuitem" {...props}/>;
35
- ActionMenuItem.displayName = 'ActionMenu.Item';
36
- const ActionMenuBase = ({ anchorContent, renderAnchor = (props) => <Button_1.default {...props}/>, anchorRef: externalAnchorRef, onAction, open, setOpen, overlayProps, items, ...listProps }) => {
37
- const [combinedOpenState, setCombinedOpenState] = useProvidedStateOrCreate_1.useProvidedStateOrCreate(open, setOpen, false);
38
- const anchorRef = hooks_1.useProvidedRefOrCreate(externalAnchorRef);
39
- const onOpen = react_1.useCallback(() => setCombinedOpenState(true), [setCombinedOpenState]);
40
- const onClose = react_1.useCallback(() => setCombinedOpenState(false), [setCombinedOpenState]);
41
- const renderMenuAnchor = react_1.useMemo(() => {
42
- if (renderAnchor === null) {
43
- return null;
44
- }
45
- return (props) => {
46
- return renderAnchor({
47
- 'aria-label': 'menu',
48
- children: anchorContent,
49
- ...props
50
- });
51
- };
52
- }, [anchorContent, renderAnchor]);
53
- const itemsToRender = react_1.useMemo(() => {
54
- return items.map(item => {
55
- return {
56
- ...item,
57
- role: 'menuitem',
58
- onAction: (props, event) => {
59
- const actionCallback = item.onAction ?? onAction;
60
- actionCallback?.(props, event);
61
- if (!event.defaultPrevented) {
62
- onClose();
63
- }
64
- }
65
- };
66
- });
67
- }, [items, onAction, onClose]);
68
- return (<AnchoredOverlay_1.AnchoredOverlay renderAnchor={renderMenuAnchor} anchorRef={anchorRef} open={combinedOpenState} onOpen={onOpen} onClose={onClose} overlayProps={overlayProps}>
69
- <List_1.List {...listProps} role="menu" items={itemsToRender}/>
70
- </AnchoredOverlay_1.AnchoredOverlay>);
71
- };
72
- ActionMenuBase.displayName = 'ActionMenu';
73
- exports.ActionMenu = Object.assign(ActionMenuBase, { Divider: Divider_1.Divider, Item: ActionMenuItem });
@@ -1,100 +0,0 @@
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.AnchoredOverlay = void 0;
26
- const react_1 = __importStar(require("react"));
27
- const Overlay_1 = __importDefault(require("../Overlay"));
28
- const useFocusTrap_1 = require("../hooks/useFocusTrap");
29
- const useFocusZone_1 = require("../hooks/useFocusZone");
30
- const hooks_1 = require("../hooks");
31
- const ssr_1 = require("@react-aria/ssr");
32
- /**
33
- * An `AnchoredOverlay` provides an anchor that will open a floating overlay positioned relative to the anchor.
34
- * The overlay can be opened and navigated using keyboard or mouse.
35
- */
36
- const AnchoredOverlay = ({ renderAnchor, anchorRef: externalAnchorRef, children, open, onOpen, onClose, height, width, overlayProps, focusTrapSettings, focusZoneSettings, side, align }) => {
37
- const anchorRef = hooks_1.useProvidedRefOrCreate(externalAnchorRef);
38
- const [overlayRef, updateOverlayRef] = hooks_1.useRenderForcingRef();
39
- const anchorId = ssr_1.useSSRSafeId();
40
- const onClickOutside = react_1.useCallback(() => onClose?.('click-outside'), [onClose]);
41
- const onEscape = react_1.useCallback(() => onClose?.('escape'), [onClose]);
42
- const onAnchorKeyDown = react_1.useCallback((event) => {
43
- if (!event.defaultPrevented) {
44
- if (!open && ['ArrowDown', 'ArrowUp', ' ', 'Enter'].includes(event.key)) {
45
- onOpen?.('anchor-key-press');
46
- event.preventDefault();
47
- }
48
- }
49
- }, [open, onOpen]);
50
- const onAnchorClick = react_1.useCallback((event) => {
51
- if (event.defaultPrevented || event.button !== 0) {
52
- return;
53
- }
54
- if (!open) {
55
- onOpen?.('anchor-click');
56
- }
57
- else {
58
- onClose?.('anchor-click');
59
- }
60
- }, [open, onOpen, onClose]);
61
- const { position } = hooks_1.useAnchoredPosition({
62
- anchorElementRef: anchorRef,
63
- floatingElementRef: overlayRef,
64
- side,
65
- align
66
- }, [overlayRef.current]);
67
- react_1.useEffect(() => {
68
- // ensure overlay ref gets cleared when closed, so position can reset between closing/re-opening
69
- if (!open && overlayRef.current) {
70
- updateOverlayRef(null);
71
- }
72
- }, [open, overlayRef, updateOverlayRef]);
73
- useFocusZone_1.useFocusZone({
74
- containerRef: overlayRef,
75
- disabled: !open || !position,
76
- ...focusZoneSettings
77
- });
78
- useFocusTrap_1.useFocusTrap({ containerRef: overlayRef, disabled: !open || !position, ...focusTrapSettings });
79
- return (<>
80
- {renderAnchor &&
81
- renderAnchor({
82
- ref: anchorRef,
83
- id: anchorId,
84
- 'aria-labelledby': anchorId,
85
- 'aria-haspopup': 'true',
86
- tabIndex: 0,
87
- onClick: onAnchorClick,
88
- onKeyDown: onAnchorKeyDown
89
- })}
90
- {open ? (<Overlay_1.default returnFocusRef={anchorRef} onClickOutside={onClickOutside} ignoreClickRefs={[anchorRef]} onEscape={onEscape} ref={updateOverlayRef} role="none" visibility={position ? 'visible' : 'hidden'} height={height} width={width} top={position?.top || 0} left={position?.left || 0} anchorSide={position?.anchorSide} {...overlayProps}>
91
- {children}
92
- </Overlay_1.default>) : null}
93
- </>);
94
- };
95
- exports.AnchoredOverlay = AnchoredOverlay;
96
- exports.AnchoredOverlay.displayName = 'AnchoredOverlay';
97
- exports.AnchoredOverlay.defaultProps = {
98
- side: 'outside-bottom',
99
- align: 'start'
100
- };
@@ -1,100 +0,0 @@
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
- const react_1 = __importStar(require("react"));
26
- const ssr_1 = require("@react-aria/ssr");
27
- const AutocompleteContext_1 = require("./AutocompleteContext");
28
- const AutocompleteInput_1 = __importDefault(require("./AutocompleteInput"));
29
- const AutocompleteMenu_1 = __importDefault(require("./AutocompleteMenu"));
30
- const AutocompleteOverlay_1 = __importDefault(require("./AutocompleteOverlay"));
31
- const initialState = {
32
- inputValue: '',
33
- showMenu: false,
34
- isMenuDirectlyActivated: false,
35
- autocompleteSuggestion: '',
36
- selectedItemLength: 0
37
- };
38
- const reducer = (state, action) => {
39
- const { type, payload } = action;
40
- switch (type) {
41
- case 'inputValue':
42
- return { ...state, inputValue: payload };
43
- case 'showMenu':
44
- return { ...state, showMenu: payload };
45
- case 'isMenuDirectlyActivated':
46
- return { ...state, isMenuDirectlyActivated: payload };
47
- case 'autocompleteSuggestion':
48
- return { ...state, autocompleteSuggestion: payload };
49
- case 'selectedItemLength':
50
- return { ...state, selectedItemLength: payload };
51
- default:
52
- return state;
53
- }
54
- };
55
- const Autocomplete = ({ children, id: idProp }) => {
56
- const activeDescendantRef = react_1.useRef(null);
57
- const scrollContainerRef = react_1.useRef(null);
58
- const inputRef = react_1.useRef(null);
59
- const [state, dispatch] = react_1.useReducer(reducer, initialState);
60
- const { inputValue, showMenu, autocompleteSuggestion, isMenuDirectlyActivated, selectedItemLength } = state;
61
- const setInputValue = react_1.useCallback((value) => {
62
- dispatch({ type: 'inputValue', payload: value });
63
- }, []);
64
- const setShowMenu = react_1.useCallback((value) => {
65
- dispatch({ type: 'showMenu', payload: value });
66
- }, []);
67
- const setAutocompleteSuggestion = react_1.useCallback((value) => {
68
- dispatch({ type: 'autocompleteSuggestion', payload: value });
69
- }, []);
70
- const setIsMenuDirectlyActivated = react_1.useCallback((value) => {
71
- dispatch({ type: 'isMenuDirectlyActivated', payload: value });
72
- }, []);
73
- const setSelectedItemLength = react_1.useCallback((value) => {
74
- dispatch({ type: 'selectedItemLength', payload: value });
75
- }, []);
76
- const id = ssr_1.useSSRSafeId(idProp);
77
- return (<AutocompleteContext_1.AutocompleteContext.Provider value={{
78
- activeDescendantRef,
79
- autocompleteSuggestion,
80
- id,
81
- inputRef,
82
- inputValue,
83
- isMenuDirectlyActivated,
84
- scrollContainerRef,
85
- selectedItemLength,
86
- setAutocompleteSuggestion,
87
- setInputValue,
88
- setIsMenuDirectlyActivated,
89
- setShowMenu,
90
- setSelectedItemLength,
91
- showMenu
92
- }}>
93
- {children}
94
- </AutocompleteContext_1.AutocompleteContext.Provider>);
95
- };
96
- exports.default = Object.assign(Autocomplete, {
97
- Input: AutocompleteInput_1.default,
98
- Menu: AutocompleteMenu_1.default,
99
- Overlay: AutocompleteOverlay_1.default
100
- });
@@ -1,5 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.AutocompleteContext = void 0;
4
- const react_1 = require("react");
5
- exports.AutocompleteContext = react_1.createContext(null);