@primer/components 0.0.0-202110303104 → 0.0.0-2021103082237
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.
- package/CHANGELOG.md +90 -4
- package/dist/browser.esm.js +738 -779
- package/dist/browser.esm.js.map +1 -1
- package/dist/browser.umd.js +736 -777
- package/dist/browser.umd.js.map +1 -1
- package/lib/ActionList/Item.js +27 -52
- package/lib/ActionList/index.js +23 -12
- package/lib/ActionList2/Group.d.ts +28 -2
- package/lib/ActionList2/Group.js +55 -6
- package/lib/ActionList2/List.d.ts +1 -1
- package/lib/ActionList2/List.js +1 -2
- package/lib/ActionList2/index.js +41 -23
- package/lib/AnchoredOverlay/index.js +12 -4
- package/lib/Autocomplete/Autocomplete.d.ts +11 -3
- package/lib/Autocomplete/AutocompleteInput.d.ts +11 -3
- package/lib/Autocomplete/index.js +14 -7
- package/lib/Breadcrumbs.d.ts +8 -7
- package/lib/Breadcrumbs.js +7 -12
- package/lib/Button/Button.d.ts +2 -3
- package/lib/Button/Button.js +2 -6
- package/lib/Button/ButtonBase.d.ts +5 -8
- package/lib/Button/ButtonBase.js +1 -5
- package/lib/Button/ButtonClose.d.ts +3 -46
- package/lib/Button/ButtonClose.js +1 -1
- package/lib/Button/ButtonDanger.d.ts +2 -3
- package/lib/Button/ButtonDanger.js +2 -6
- package/lib/Button/ButtonInvisible.d.ts +2 -3
- package/lib/Button/ButtonInvisible.js +2 -6
- package/lib/Button/ButtonOutline.d.ts +2 -3
- package/lib/Button/ButtonOutline.js +2 -6
- package/lib/Button/ButtonPrimary.d.ts +2 -3
- package/lib/Button/ButtonPrimary.js +2 -6
- package/lib/Button/ButtonTableList.d.ts +1 -2
- package/lib/Button/ButtonTableList.js +1 -1
- package/lib/Button/index.js +70 -21
- package/lib/Checkbox.d.ts +29 -0
- package/lib/Checkbox.js +64 -0
- package/lib/CircleBadge.d.ts +4 -5
- package/lib/CircleBadge.js +1 -1
- package/lib/CircleOcticon.d.ts +1 -1
- package/lib/CounterLabel.d.ts +1 -2
- package/lib/CounterLabel.js +1 -1
- package/lib/Dialog/Dialog.d.ts +5 -9
- package/lib/Dialog/Dialog.js +17 -11
- package/lib/Dialog.d.ts +4 -5
- package/lib/Dialog.js +1 -1
- package/lib/Dropdown.d.ts +10 -99
- package/lib/Dropdown.js +3 -3
- package/lib/DropdownMenu/DropdownButton.d.ts +3 -47
- package/lib/DropdownMenu/DropdownButton.js +3 -1
- package/lib/DropdownMenu/index.js +20 -6
- package/lib/DropdownStyles.js +26 -18
- package/lib/FilterList.d.ts +264 -303
- package/lib/FilterList.js +2 -6
- package/lib/FilteredActionList/index.js +12 -4
- package/lib/FilteredSearch.d.ts +1 -2
- package/lib/FilteredSearch.js +1 -1
- package/lib/Flash.d.ts +1 -2
- package/lib/Flash.js +1 -1
- package/lib/FormGroup.d.ts +4 -5
- package/lib/FormGroup.js +2 -2
- package/lib/Header.d.ts +6 -7
- package/lib/Header.js +4 -4
- package/lib/Label.d.ts +1 -2
- package/lib/Label.js +2 -3
- package/lib/LabelGroup.d.ts +1 -2
- package/lib/LabelGroup.js +1 -1
- package/lib/Link.d.ts +1 -2
- package/lib/Link.js +1 -1
- package/lib/NewButton/button.js +34 -42
- package/lib/NewButton/index.js +12 -5
- package/lib/NewButton/types.js +1 -2
- package/lib/Overlay.d.ts +14 -11
- package/lib/Overlay.js +3 -4
- package/lib/Pagehead.d.ts +1 -2
- package/lib/Pagehead.js +1 -1
- package/lib/Pagination/Pagination.js +1 -1
- package/lib/Pagination/index.js +12 -6
- package/lib/Popover.d.ts +4 -5
- package/lib/Popover.js +4 -5
- package/lib/Portal/index.js +16 -5
- package/lib/Position.d.ts +4 -4
- package/lib/SelectMenu/SelectMenu.d.ts +29 -189
- package/lib/SelectMenu/SelectMenu.js +1 -3
- package/lib/SelectMenu/SelectMenuDivider.d.ts +1 -2
- package/lib/SelectMenu/SelectMenuDivider.js +1 -1
- package/lib/SelectMenu/SelectMenuFilter.js +1 -1
- package/lib/SelectMenu/SelectMenuFooter.d.ts +1 -2
- package/lib/SelectMenu/SelectMenuFooter.js +1 -1
- package/lib/SelectMenu/SelectMenuHeader.d.ts +1 -2
- package/lib/SelectMenu/SelectMenuHeader.js +1 -1
- package/lib/SelectMenu/SelectMenuItem.d.ts +2 -3
- package/lib/SelectMenu/SelectMenuItem.js +1 -1
- package/lib/SelectMenu/SelectMenuList.d.ts +1 -2
- package/lib/SelectMenu/SelectMenuList.js +1 -1
- package/lib/SelectMenu/SelectMenuLoadingAnimation.d.ts +2 -2
- package/lib/SelectMenu/SelectMenuLoadingAnimation.js +3 -1
- package/lib/SelectMenu/SelectMenuModal.d.ts +2 -3
- package/lib/SelectMenu/SelectMenuModal.js +1 -1
- package/lib/SelectMenu/SelectMenuTab.d.ts +1 -2
- package/lib/SelectMenu/SelectMenuTab.js +1 -1
- package/lib/SelectMenu/SelectMenuTabPanel.d.ts +1 -2
- package/lib/SelectMenu/SelectMenuTabPanel.js +1 -1
- package/lib/SelectMenu/SelectMenuTabs.d.ts +1 -2
- package/lib/SelectMenu/SelectMenuTabs.js +1 -1
- package/lib/SelectMenu/hooks/useKeyboardNav.js +96 -80
- package/lib/SelectMenu/index.js +14 -7
- package/lib/SelectPanel/index.js +12 -4
- package/lib/SideNav.d.ts +11 -8
- package/lib/SideNav.js +8 -15
- package/lib/StateLabel.d.ts +1 -2
- package/lib/StateLabel.js +6 -5
- package/lib/StyledOcticon.d.ts +1 -2
- package/lib/StyledOcticon.js +1 -3
- package/lib/SubNav.d.ts +5 -11
- package/lib/SubNav.js +7 -12
- package/lib/TabNav.d.ts +3 -4
- package/lib/TabNav.js +2 -2
- package/lib/TextInput.d.ts +8 -1
- package/lib/TextInput.js +17 -5
- package/lib/TextInputWithTokens.d.ts +11 -3
- package/lib/Timeline.d.ts +19 -393
- package/lib/Timeline.js +16 -13
- package/lib/Token/Token.d.ts +1 -1
- package/lib/Token/index.js +30 -11
- package/lib/Tooltip.d.ts +1 -2
- package/lib/Tooltip.js +1 -1
- package/lib/Truncate.d.ts +1 -2
- package/lib/Truncate.js +1 -3
- package/lib/UnderlineNav.d.ts +2 -3
- package/lib/UnderlineNav.js +2 -2
- package/lib/_TextInputWrapper.d.ts +3 -0
- package/lib/_TextInputWrapper.js +18 -7
- package/lib/behaviors/anchoredPosition.js +234 -205
- package/lib/behaviors/focusTrap.js +157 -121
- package/lib/behaviors/focusZone.js +509 -434
- package/lib/behaviors/scrollIntoViewingArea.js +35 -18
- package/lib/constants.js +43 -39
- package/lib/drafts.js +30 -20
- package/lib/hooks/index.js +60 -16
- package/lib/hooks/useAnchoredPosition.js +40 -32
- package/lib/hooks/useCombinedRefs.js +36 -32
- package/lib/hooks/useDialog.js +96 -72
- package/lib/hooks/useFocusTrap.js +60 -43
- package/lib/hooks/useFocusZone.js +50 -54
- package/lib/hooks/useOnEscapePress.js +36 -25
- package/lib/hooks/useOpenAndCloseFocus.js +34 -22
- package/lib/hooks/useProvidedRefOrCreate.js +14 -10
- package/lib/hooks/useProvidedStateOrCreate.js +16 -13
- package/lib/hooks/useRenderForcingRef.js +17 -13
- package/lib/hooks/useResizeObserver.js +18 -15
- package/lib/hooks/useSafeTimeout.js +30 -22
- package/lib/hooks/useScrollFlash.js +23 -16
- package/lib/index.d.ts +2 -2
- package/lib/index.js +652 -165
- package/lib/polyfills/eventListenerSignal.js +45 -37
- package/lib/sx.js +22 -10
- package/lib/theme-preval.js +3169 -64
- package/lib/theme.js +12 -3
- package/lib/utils/iterateFocusableElements.js +85 -63
- package/lib/utils/testing.d.ts +28 -61
- package/lib/utils/testing.js +29 -0
- package/lib/utils/theme.js +47 -33
- package/lib/utils/types/AriaRole.js +1 -2
- package/lib/utils/types/ComponentProps.js +1 -2
- package/lib/utils/types/Flatten.js +1 -2
- package/lib/utils/types/KeyPaths.js +1 -2
- package/lib/utils/types/MandateProps.js +1 -16
- package/lib/utils/types/Merge.js +1 -2
- package/lib/utils/types/index.js +69 -16
- package/lib/utils/uniqueId.js +8 -5
- package/lib/utils/use-force-update.js +14 -8
- package/lib/utils/useIsomorphicLayoutEffect.js +11 -8
- package/lib/utils/userAgent.js +12 -8
- package/lib-esm/ActionList/Item.js +28 -53
- package/lib-esm/ActionList2/Group.d.ts +28 -2
- package/lib-esm/ActionList2/Group.js +52 -5
- package/lib-esm/ActionList2/List.d.ts +1 -1
- package/lib-esm/ActionList2/List.js +1 -2
- package/lib-esm/Autocomplete/Autocomplete.d.ts +11 -3
- package/lib-esm/Autocomplete/AutocompleteInput.d.ts +11 -3
- package/lib-esm/Breadcrumbs.d.ts +8 -7
- package/lib-esm/Breadcrumbs.js +8 -13
- package/lib-esm/Button/Button.d.ts +2 -3
- package/lib-esm/Button/Button.js +2 -2
- package/lib-esm/Button/ButtonBase.d.ts +5 -8
- package/lib-esm/Button/ButtonBase.js +1 -3
- package/lib-esm/Button/ButtonClose.d.ts +3 -46
- package/lib-esm/Button/ButtonClose.js +2 -2
- package/lib-esm/Button/ButtonDanger.d.ts +2 -3
- package/lib-esm/Button/ButtonDanger.js +2 -2
- package/lib-esm/Button/ButtonInvisible.d.ts +2 -3
- package/lib-esm/Button/ButtonInvisible.js +2 -2
- package/lib-esm/Button/ButtonOutline.d.ts +2 -3
- package/lib-esm/Button/ButtonOutline.js +2 -2
- package/lib-esm/Button/ButtonPrimary.d.ts +2 -3
- package/lib-esm/Button/ButtonPrimary.js +2 -2
- package/lib-esm/Button/ButtonTableList.d.ts +1 -2
- package/lib-esm/Button/ButtonTableList.js +2 -2
- package/lib-esm/Checkbox.d.ts +29 -0
- package/lib-esm/Checkbox.js +44 -0
- package/lib-esm/CircleBadge.d.ts +4 -5
- package/lib-esm/CircleBadge.js +2 -2
- package/lib-esm/CircleOcticon.d.ts +1 -1
- package/lib-esm/CounterLabel.d.ts +1 -2
- package/lib-esm/CounterLabel.js +2 -2
- package/lib-esm/Dialog/Dialog.d.ts +5 -9
- package/lib-esm/Dialog/Dialog.js +12 -12
- package/lib-esm/Dialog.d.ts +4 -5
- package/lib-esm/Dialog.js +2 -2
- package/lib-esm/Dropdown.d.ts +10 -99
- package/lib-esm/Dropdown.js +4 -4
- package/lib-esm/DropdownMenu/DropdownButton.d.ts +3 -47
- package/lib-esm/DropdownMenu/DropdownButton.js +3 -1
- package/lib-esm/FilterList.d.ts +264 -303
- package/lib-esm/FilterList.js +3 -7
- package/lib-esm/FilteredSearch.d.ts +1 -2
- package/lib-esm/FilteredSearch.js +2 -2
- package/lib-esm/Flash.d.ts +1 -2
- package/lib-esm/Flash.js +2 -2
- package/lib-esm/FormGroup.d.ts +4 -5
- package/lib-esm/FormGroup.js +3 -3
- package/lib-esm/Header.d.ts +6 -7
- package/lib-esm/Header.js +5 -5
- package/lib-esm/Label.d.ts +1 -2
- package/lib-esm/Label.js +3 -4
- package/lib-esm/LabelGroup.d.ts +1 -2
- package/lib-esm/LabelGroup.js +2 -2
- package/lib-esm/Link.d.ts +1 -2
- package/lib-esm/Link.js +2 -2
- package/lib-esm/NewButton/button.js +31 -42
- package/lib-esm/Overlay.d.ts +14 -11
- package/lib-esm/Overlay.js +2 -3
- package/lib-esm/Pagehead.d.ts +1 -2
- package/lib-esm/Pagehead.js +2 -2
- package/lib-esm/Pagination/Pagination.js +2 -2
- package/lib-esm/Popover.d.ts +4 -5
- package/lib-esm/Popover.js +4 -5
- package/lib-esm/Position.d.ts +4 -4
- package/lib-esm/SelectMenu/SelectMenu.d.ts +29 -189
- package/lib-esm/SelectMenu/SelectMenu.js +1 -2
- package/lib-esm/SelectMenu/SelectMenuDivider.d.ts +1 -2
- package/lib-esm/SelectMenu/SelectMenuDivider.js +2 -2
- package/lib-esm/SelectMenu/SelectMenuFilter.js +2 -2
- package/lib-esm/SelectMenu/SelectMenuFooter.d.ts +1 -2
- package/lib-esm/SelectMenu/SelectMenuFooter.js +2 -2
- package/lib-esm/SelectMenu/SelectMenuHeader.d.ts +1 -2
- package/lib-esm/SelectMenu/SelectMenuHeader.js +2 -2
- package/lib-esm/SelectMenu/SelectMenuItem.d.ts +2 -3
- package/lib-esm/SelectMenu/SelectMenuItem.js +2 -2
- package/lib-esm/SelectMenu/SelectMenuList.d.ts +1 -2
- package/lib-esm/SelectMenu/SelectMenuList.js +2 -2
- package/lib-esm/SelectMenu/SelectMenuLoadingAnimation.d.ts +2 -2
- package/lib-esm/SelectMenu/SelectMenuLoadingAnimation.js +3 -2
- package/lib-esm/SelectMenu/SelectMenuModal.d.ts +2 -3
- package/lib-esm/SelectMenu/SelectMenuModal.js +2 -2
- package/lib-esm/SelectMenu/SelectMenuTab.d.ts +1 -2
- package/lib-esm/SelectMenu/SelectMenuTab.js +2 -2
- package/lib-esm/SelectMenu/SelectMenuTabPanel.d.ts +1 -2
- package/lib-esm/SelectMenu/SelectMenuTabPanel.js +2 -2
- package/lib-esm/SelectMenu/SelectMenuTabs.d.ts +1 -2
- package/lib-esm/SelectMenu/SelectMenuTabs.js +2 -2
- package/lib-esm/SideNav.d.ts +11 -8
- package/lib-esm/SideNav.js +8 -16
- package/lib-esm/StateLabel.d.ts +1 -2
- package/lib-esm/StateLabel.js +7 -6
- package/lib-esm/StyledOcticon.d.ts +1 -2
- package/lib-esm/StyledOcticon.js +1 -2
- package/lib-esm/SubNav.d.ts +5 -11
- package/lib-esm/SubNav.js +8 -13
- package/lib-esm/TabNav.d.ts +3 -4
- package/lib-esm/TabNav.js +3 -3
- package/lib-esm/TextInput.d.ts +8 -1
- package/lib-esm/TextInput.js +17 -5
- package/lib-esm/TextInputWithTokens.d.ts +11 -3
- package/lib-esm/Timeline.d.ts +19 -393
- package/lib-esm/Timeline.js +12 -13
- package/lib-esm/Token/Token.d.ts +1 -1
- package/lib-esm/Tooltip.d.ts +1 -2
- package/lib-esm/Tooltip.js +2 -2
- package/lib-esm/Truncate.d.ts +1 -2
- package/lib-esm/Truncate.js +1 -2
- package/lib-esm/UnderlineNav.d.ts +2 -3
- package/lib-esm/UnderlineNav.js +3 -3
- package/lib-esm/_TextInputWrapper.d.ts +3 -0
- package/lib-esm/_TextInputWrapper.js +18 -7
- package/lib-esm/index.d.ts +2 -2
- package/lib-esm/index.js +1 -1
- package/lib-esm/theme-preval.js +512 -366
- package/lib-esm/utils/testing.d.ts +28 -61
- package/lib-esm/utils/testing.js +24 -0
- package/package.json +5 -6
- package/lib/ActionList/Divider.jsx +0 -29
- package/lib/ActionList/Group.jsx +0 -23
- package/lib/ActionList/Header.jsx +0 -66
- package/lib/ActionList/Item.jsx +0 -311
- package/lib/ActionList/List.jsx +0 -138
- package/lib/ActionList2/Description.jsx +0 -29
- package/lib/ActionList2/Divider.jsx +0 -22
- package/lib/ActionList2/Group.jsx +0 -25
- package/lib/ActionList2/Header.jsx +0 -36
- package/lib/ActionList2/Item.jsx +0 -174
- package/lib/ActionList2/LinkItem.jsx +0 -28
- package/lib/ActionList2/List.jsx +0 -41
- package/lib/ActionList2/Selection.jsx +0 -50
- package/lib/ActionList2/Visuals.jsx +0 -48
- package/lib/ActionMenu.jsx +0 -73
- package/lib/AnchoredOverlay/AnchoredOverlay.jsx +0 -100
- package/lib/Autocomplete/Autocomplete.jsx +0 -100
- package/lib/Autocomplete/AutocompleteContext.jsx +0 -5
- package/lib/Autocomplete/AutocompleteInput.jsx +0 -113
- package/lib/Autocomplete/AutocompleteMenu.jsx +0 -190
- package/lib/Autocomplete/AutocompleteOverlay.jsx +0 -55
- package/lib/Avatar.jsx +0 -34
- package/lib/AvatarPair.jsx +0 -29
- package/lib/AvatarStack.jsx +0 -151
- package/lib/BaseStyles.jsx +0 -65
- package/lib/BorderBox.jsx +0 -18
- package/lib/Box.jsx +0 -10
- package/lib/BranchName.jsx +0 -20
- package/lib/Breadcrumbs.jsx +0 -74
- package/lib/Button/Button.jsx +0 -60
- package/lib/Button/ButtonBase.jsx +0 -36
- package/lib/Button/ButtonClose.jsx +0 -55
- package/lib/Button/ButtonDanger.jsx +0 -63
- package/lib/Button/ButtonGroup.jsx +0 -55
- package/lib/Button/ButtonInvisible.jsx +0 -52
- package/lib/Button/ButtonOutline.jsx +0 -63
- package/lib/Button/ButtonPrimary.jsx +0 -62
- package/lib/Button/ButtonStyles.jsx +0 -37
- package/lib/Button/ButtonTableList.jsx +0 -49
- package/lib/Caret.jsx +0 -93
- package/lib/CircleBadge.jsx +0 -43
- package/lib/CircleOcticon.jsx +0 -21
- package/lib/CounterLabel.jsx +0 -44
- package/lib/Details.jsx +0 -21
- package/lib/Dialog/ConfirmationDialog.jsx +0 -146
- package/lib/Dialog/Dialog.jsx +0 -273
- package/lib/Dialog.jsx +0 -131
- package/lib/Dropdown.jsx +0 -134
- package/lib/DropdownMenu/DropdownButton.jsx +0 -14
- package/lib/DropdownMenu/DropdownMenu.jsx +0 -70
- package/lib/EmojiPicker/EmojiPicker.d.ts +0 -15
- package/lib/EmojiPicker/EmojiPicker.js +0 -205
- package/lib/EmojiPicker/EmojiPicker.jsx +0 -125
- package/lib/EmojiPicker/EmojiPickerAnchor.d.ts +0 -0
- package/lib/EmojiPicker/EmojiPickerAnchor.js +0 -1
- package/lib/EmojiPicker/EmojiPickerAnchor.jsx +0 -1
- package/lib/EmojiPicker/EmojiPickerPanel.d.ts +0 -3
- package/lib/EmojiPicker/EmojiPickerPanel.js +0 -18
- package/lib/EmojiPicker/EmojiPickerPanel.jsx +0 -10
- package/lib/EmojiPicker/data.d.ts +0 -9
- package/lib/EmojiPicker/data.js +0 -7254
- package/lib/EmojiPicker/index.d.ts +0 -2
- package/lib/EmojiPicker/index.js +0 -8
- package/lib/FilterList.jsx +0 -63
- package/lib/FilteredActionList/FilteredActionList.jsx +0 -100
- package/lib/FilteredSearch.jsx +0 -29
- package/lib/Flash.jsx +0 -70
- package/lib/Flex.jsx +0 -15
- package/lib/FormGroup.jsx +0 -25
- package/lib/Grid.jsx +0 -15
- package/lib/Header.jsx +0 -90
- package/lib/Heading.jsx +0 -21
- package/lib/Label.jsx +0 -84
- package/lib/LabelGroup.jsx +0 -19
- package/lib/Link.jsx +0 -38
- package/lib/NewButton/button-counter.jsx +0 -14
- package/lib/NewButton/button.jsx +0 -278
- package/lib/Overlay.jsx +0 -156
- package/lib/Pagehead.jsx +0 -18
- package/lib/Pagination/Pagination.jsx +0 -163
- package/lib/Pagination/model.jsx +0 -174
- package/lib/PointerBox.jsx +0 -25
- package/lib/Popover.jsx +0 -210
- package/lib/Portal/Portal.jsx +0 -79
- package/lib/Position.jsx +0 -46
- package/lib/ProgressBar.jsx +0 -39
- package/lib/SelectMenu/SelectMenu.jsx +0 -114
- package/lib/SelectMenu/SelectMenuContext.jsx +0 -5
- package/lib/SelectMenu/SelectMenuDivider.jsx +0 -43
- package/lib/SelectMenu/SelectMenuFilter.jsx +0 -59
- package/lib/SelectMenu/SelectMenuFooter.jsx +0 -46
- package/lib/SelectMenu/SelectMenuHeader.jsx +0 -44
- package/lib/SelectMenu/SelectMenuItem.jsx +0 -143
- package/lib/SelectMenu/SelectMenuList.jsx +0 -60
- package/lib/SelectMenu/SelectMenuLoadingAnimation.jsx +0 -21
- package/lib/SelectMenu/SelectMenuModal.jsx +0 -119
- package/lib/SelectMenu/SelectMenuTab.jsx +0 -93
- package/lib/SelectMenu/SelectMenuTabPanel.jsx +0 -43
- package/lib/SelectMenu/SelectMenuTabs.jsx +0 -58
- package/lib/SelectPanel/SelectPanel.jsx +0 -105
- package/lib/SideNav.jsx +0 -177
- package/lib/Spinner.jsx +0 -35
- package/lib/StateLabel.jsx +0 -94
- package/lib/StyledOcticon.jsx +0 -20
- package/lib/SubNav.jsx +0 -104
- package/lib/TabNav.jsx +0 -60
- package/lib/Text.jsx +0 -14
- package/lib/TextInput.jsx +0 -23
- package/lib/TextInputWithTokens.jsx +0 -218
- package/lib/ThemeProvider.jsx +0 -130
- package/lib/Timeline.jsx +0 -124
- package/lib/Token/AvatarToken.jsx +0 -54
- package/lib/Token/IssueLabelToken.jsx +0 -125
- package/lib/Token/Token.jsx +0 -103
- package/lib/Token/TokenBase.jsx +0 -88
- package/lib/Token/_RemoveTokenButton.jsx +0 -108
- package/lib/Token/_TokenTextContainer.jsx +0 -49
- package/lib/Tooltip.jsx +0 -246
- package/lib/Truncate.jsx +0 -27
- package/lib/UnderlineNav.jsx +0 -90
- package/lib/_TextInputWrapper.jsx +0 -120
- package/lib/_UnstyledTextInput.jsx +0 -22
- package/lib/hooks/useDetails.jsx +0 -39
- package/lib/hooks/useOnOutsideClick.jsx +0 -61
- package/lib/hooks/useOverlay.jsx +0 -15
- package/lib/utils/create-slots.jsx +0 -65
- package/lib/utils/deprecate.jsx +0 -59
- package/lib/utils/isNumeric.jsx +0 -7
- package/lib/utils/ssr.jsx +0 -6
- package/lib/utils/test-deprecations.jsx +0 -20
- package/lib/utils/test-helpers.jsx +0 -8
- package/lib/utils/test-matchers.jsx +0 -100
- package/lib/utils/testing.jsx +0 -206
- package/lib-esm/EmojiPicker/EmojiPicker.d.ts +0 -15
- package/lib-esm/EmojiPicker/EmojiPicker.js +0 -184
- package/lib-esm/EmojiPicker/EmojiPickerAnchor.d.ts +0 -0
- package/lib-esm/EmojiPicker/EmojiPickerAnchor.js +0 -0
- package/lib-esm/EmojiPicker/EmojiPickerPanel.d.ts +0 -3
- package/lib-esm/EmojiPicker/EmojiPickerPanel.js +0 -8
- package/lib-esm/EmojiPicker/data.d.ts +0 -9
- package/lib-esm/EmojiPicker/data.js +0 -5434
- package/lib-esm/EmojiPicker/index.d.ts +0 -2
- package/lib-esm/EmojiPicker/index.js +0 -1
package/lib/ActionList/List.jsx
DELETED
@@ -1,138 +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.List = void 0;
|
7
|
-
const react_1 = __importDefault(require("react"));
|
8
|
-
const Group_1 = require("./Group");
|
9
|
-
const Item_1 = require("./Item");
|
10
|
-
const Divider_1 = require("./Divider");
|
11
|
-
const styled_components_1 = __importDefault(require("styled-components"));
|
12
|
-
const constants_1 = require("../constants");
|
13
|
-
const focusZone_1 = require("../behaviors/focusZone");
|
14
|
-
/**
|
15
|
-
* Asserts that the given value fulfills the `GroupedListProps` contract.
|
16
|
-
* @param props A value which fulfills either the `ListPropsBase` or the `GroupedListProps` contract.
|
17
|
-
*/
|
18
|
-
function isGroupedListProps(props) {
|
19
|
-
return 'groupMetadata' in props;
|
20
|
-
}
|
21
|
-
const StyledList = styled_components_1.default.div `
|
22
|
-
font-size: ${constants_1.get('fontSizes.1')};
|
23
|
-
/* 14px font-size * 1.428571429 = 20px line height
|
24
|
-
*
|
25
|
-
* TODO: When rem-based spacing on a 4px scale lands, replace
|
26
|
-
* hardcoded '20px'
|
27
|
-
*/
|
28
|
-
line-height: 20px;
|
29
|
-
|
30
|
-
&[${focusZone_1.hasActiveDescendantAttribute}], &:focus-within {
|
31
|
-
--item-hover-bg-override: none;
|
32
|
-
--item-hover-divider-border-color-override: ${constants_1.get('colors.border.muted')};
|
33
|
-
}
|
34
|
-
`;
|
35
|
-
/**
|
36
|
-
* Returns `sx` prop values for `List` children matching the given `List` style variation.
|
37
|
-
* @param variant `List` style variation.
|
38
|
-
*/
|
39
|
-
function useListVariant(variant = 'inset') {
|
40
|
-
switch (variant) {
|
41
|
-
case 'full':
|
42
|
-
return {
|
43
|
-
headerStyle: { paddingX: constants_1.get('space.2') },
|
44
|
-
itemStyle: { borderRadius: 0 }
|
45
|
-
};
|
46
|
-
default:
|
47
|
-
return {
|
48
|
-
firstGroupStyle: { marginTop: constants_1.get('space.2') },
|
49
|
-
lastGroupStyle: { marginBottom: constants_1.get('space.2') },
|
50
|
-
itemStyle: { marginX: constants_1.get('space.2') }
|
51
|
-
};
|
52
|
-
}
|
53
|
-
}
|
54
|
-
/**
|
55
|
-
* Lists `Item`s, either grouped or ungrouped, with a `Divider` between each `Group`.
|
56
|
-
*/
|
57
|
-
exports.List = react_1.default.forwardRef((props, forwardedRef) => {
|
58
|
-
// Get `sx` prop values for `List` children matching the given `List` style variation.
|
59
|
-
const { firstGroupStyle, lastGroupStyle, headerStyle, itemStyle } = useListVariant(props.variant);
|
60
|
-
/**
|
61
|
-
* Render a `Group` using the first of the following renderers that is defined:
|
62
|
-
* A `Group`-level or `List`-level custom `Group` renderer, or
|
63
|
-
* the default `Group` renderer.
|
64
|
-
*/
|
65
|
-
const renderGroup = (groupProps) => {
|
66
|
-
const GroupComponent = (('renderGroup' in groupProps && groupProps.renderGroup) ?? props.renderGroup) || Group_1.Group;
|
67
|
-
return <GroupComponent {...groupProps} key={groupProps.groupId}/>;
|
68
|
-
};
|
69
|
-
/**
|
70
|
-
* Render an `Item` using the first of the following renderers that is defined:
|
71
|
-
* An `Item`-level, `Group`-level, or `List`-level custom `Item` renderer,
|
72
|
-
* or the default `Item` renderer.
|
73
|
-
*/
|
74
|
-
const renderItem = (itemProps, item, itemIndex) => {
|
75
|
-
// eslint-disable-next-line @typescript-eslint/no-unnecessary-condition
|
76
|
-
const ItemComponent = ('renderItem' in itemProps && itemProps.renderItem) || props.renderItem || Item_1.Item;
|
77
|
-
const key = ('key' in itemProps ? itemProps.key : undefined) ?? itemProps.id?.toString() ?? itemIndex.toString();
|
78
|
-
return (<ItemComponent showDivider={props.showItemDividers} selectionVariant={props.selectionVariant} {...itemProps} key={key} sx={{ ...itemStyle, ...itemProps.sx }} item={item}/>);
|
79
|
-
};
|
80
|
-
/**
|
81
|
-
* An array of `Group`s, each with an associated `Header` and with an array of `Item`s belonging to that `Group`.
|
82
|
-
*/
|
83
|
-
let groups = [];
|
84
|
-
// Collect rendered `Item`s into `Group`s, avoiding excess iteration over the lists of `items` and `groupMetadata`:
|
85
|
-
if (!isGroupedListProps(props)) {
|
86
|
-
// When no `groupMetadata`s is provided, collect rendered `Item`s into a single anonymous `Group`.
|
87
|
-
groups = [{ items: props.items.map((item, index) => renderItem(item, item, index)), groupId: '0' }];
|
88
|
-
}
|
89
|
-
else {
|
90
|
-
// When `groupMetadata` is provided, collect rendered `Item`s into their associated `Group`s.
|
91
|
-
/**
|
92
|
-
* A map of group identifiers to `Group`s, each with an associated array of `Item`s belonging to that `Group`.
|
93
|
-
*/
|
94
|
-
const groupMap = props.groupMetadata.reduce((groupAccumulator, groupMetadata) => groupAccumulator.set(groupMetadata.groupId, groupMetadata), new Map());
|
95
|
-
for (const itemProps of props.items) {
|
96
|
-
// Look up the group associated with the current item.
|
97
|
-
const group = groupMap.get(itemProps.groupId);
|
98
|
-
const itemIndex = group?.items?.length ?? 0;
|
99
|
-
// Upsert the group to include the current item (rendered).
|
100
|
-
groupMap.set(itemProps.groupId, {
|
101
|
-
...group,
|
102
|
-
items: [
|
103
|
-
...(group?.items ?? []),
|
104
|
-
renderItem({
|
105
|
-
showDivider: group?.showItemDividers,
|
106
|
-
...(group && 'renderItem' in group && { renderItem: group.renderItem }),
|
107
|
-
...itemProps
|
108
|
-
}, itemProps, itemIndex)
|
109
|
-
]
|
110
|
-
});
|
111
|
-
}
|
112
|
-
groups = [...groupMap.values()];
|
113
|
-
}
|
114
|
-
return (<StyledList {...props} ref={forwardedRef}>
|
115
|
-
{groups.map(({ header, ...groupProps }, index) => {
|
116
|
-
const hasFilledHeader = header?.variant === 'filled';
|
117
|
-
const shouldShowDivider = index > 0 && !hasFilledHeader;
|
118
|
-
return (<react_1.default.Fragment key={groupProps.groupId}>
|
119
|
-
{shouldShowDivider ? <Divider_1.Divider key={`${groupProps.groupId}-divider`}/> : null}
|
120
|
-
{renderGroup({
|
121
|
-
sx: {
|
122
|
-
...(index === 0 && firstGroupStyle),
|
123
|
-
...(index === groups.length - 1 && lastGroupStyle),
|
124
|
-
...(index > 0 && !shouldShowDivider && { mt: 2 })
|
125
|
-
},
|
126
|
-
...(header && {
|
127
|
-
header: {
|
128
|
-
...header,
|
129
|
-
sx: { ...headerStyle, ...header.sx }
|
130
|
-
}
|
131
|
-
}),
|
132
|
-
...groupProps
|
133
|
-
})}
|
134
|
-
</react_1.default.Fragment>);
|
135
|
-
})}
|
136
|
-
</StyledList>);
|
137
|
-
});
|
138
|
-
exports.List.displayName = 'ActionList';
|
@@ -1,29 +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.Description = void 0;
|
7
|
-
const react_1 = __importDefault(require("react"));
|
8
|
-
const Box_1 = __importDefault(require("../Box"));
|
9
|
-
const sx_1 = require("../sx");
|
10
|
-
const Truncate_1 = __importDefault(require("../Truncate"));
|
11
|
-
const Item_1 = require("./Item");
|
12
|
-
const Description = ({ variant = 'inline', sx = {}, ...props }) => {
|
13
|
-
const styles = {
|
14
|
-
fontSize: 0,
|
15
|
-
lineHeight: '16px',
|
16
|
-
flexGrow: 1,
|
17
|
-
flexBasis: 0,
|
18
|
-
minWidth: 0,
|
19
|
-
marginLeft: variant === 'block' ? 0 : 2
|
20
|
-
};
|
21
|
-
return (<Item_1.Slot name={variant === 'block' ? 'BlockDescription' : 'InlineDescription'}>
|
22
|
-
{({ blockDescriptionId, inlineDescriptionId, disabled }) => variant === 'block' ? (<Box_1.default as="span" sx={sx_1.merge({ ...styles, color: disabled ? 'fg.disabled' : 'fg.muted' }, sx)} id={blockDescriptionId}>
|
23
|
-
{props.children}
|
24
|
-
</Box_1.default>) : (<Truncate_1.default id={inlineDescriptionId} sx={sx_1.merge({ ...styles, color: disabled ? 'fg.disabled' : 'fg.muted' }, sx)} title={props.children} inline={true} maxWidth="100%">
|
25
|
-
{props.children}
|
26
|
-
</Truncate_1.default>)}
|
27
|
-
</Item_1.Slot>);
|
28
|
-
};
|
29
|
-
exports.Description = Description;
|
@@ -1,22 +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.Divider = void 0;
|
7
|
-
const react_1 = __importDefault(require("react"));
|
8
|
-
const Box_1 = __importDefault(require("../Box"));
|
9
|
-
const constants_1 = require("../constants");
|
10
|
-
/**
|
11
|
-
* Visually separates `Item`s or `Group`s in an `ActionList`.
|
12
|
-
*/
|
13
|
-
function Divider() {
|
14
|
-
return (<Box_1.default as="li" role="separator" sx={{
|
15
|
-
height: 1,
|
16
|
-
backgroundColor: 'actionListItem.inlineDivider',
|
17
|
-
marginTop: (theme) => `calc(${constants_1.get('space.2')(theme)} - 1px)`,
|
18
|
-
marginBottom: 2,
|
19
|
-
listStyle: 'none' // hide the ::marker inserted by browser's stylesheet
|
20
|
-
}} data-component="ActionList.Divider"/>);
|
21
|
-
}
|
22
|
-
exports.Divider = Divider;
|
@@ -1,25 +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.Group = exports.GroupContext = void 0;
|
7
|
-
const react_1 = __importDefault(require("react"));
|
8
|
-
const Box_1 = __importDefault(require("../Box"));
|
9
|
-
const Header_1 = require("./Header");
|
10
|
-
exports.GroupContext = react_1.default.createContext({});
|
11
|
-
const Group = ({ title, variant, auxiliaryText, selectionVariant, sx = {}, ...props }) => {
|
12
|
-
return (<Box_1.default as="li" sx={{
|
13
|
-
'&:not(:first-child)': { marginTop: 2 },
|
14
|
-
listStyle: 'none',
|
15
|
-
...sx
|
16
|
-
}} {...props}>
|
17
|
-
{title && <Header_1.Header title={title} variant={variant} auxiliaryText={auxiliaryText}/>}
|
18
|
-
<exports.GroupContext.Provider value={{ selectionVariant }}>
|
19
|
-
<Box_1.default as="ul" sx={{ paddingInlineStart: 0 }}>
|
20
|
-
{props.children}
|
21
|
-
</Box_1.default>
|
22
|
-
</exports.GroupContext.Provider>
|
23
|
-
</Box_1.default>);
|
24
|
-
};
|
25
|
-
exports.Group = Group;
|
@@ -1,36 +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.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;
|
package/lib/ActionList2/Item.jsx
DELETED
@@ -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
|
-
});
|
package/lib/ActionList2/List.jsx
DELETED
@@ -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;
|