@primer/components 0.0.0-20211030175556 → 0.0.0-20211030175634
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 +24 -2
- package/dist/browser.esm.js +144 -137
- package/dist/browser.esm.js.map +1 -1
- package/dist/browser.umd.js +128 -121
- package/dist/browser.umd.js.map +1 -1
- package/lib/ActionList/Item.js +3 -3
- package/lib/ActionList/index.js +23 -12
- package/lib/ActionList2/Item.js +3 -1
- package/lib/ActionList2/List.js +1 -2
- package/lib/ActionList2/Selection.js +3 -1
- package/lib/ActionList2/index.js +41 -23
- package/lib/AnchoredOverlay/index.js +12 -4
- package/lib/Autocomplete/Autocomplete.d.ts +1 -0
- package/lib/Autocomplete/AutocompleteInput.d.ts +1 -0
- package/lib/Autocomplete/index.js +14 -7
- package/lib/Button/Button.d.ts +1 -0
- package/lib/Button/ButtonClose.d.ts +2 -1
- package/lib/Button/ButtonDanger.d.ts +1 -0
- package/lib/Button/ButtonInvisible.d.ts +1 -0
- package/lib/Button/ButtonOutline.d.ts +1 -0
- package/lib/Button/ButtonPrimary.d.ts +1 -0
- package/lib/Button/index.js +70 -21
- package/lib/Checkbox.d.ts +29 -0
- package/lib/Checkbox.js +64 -0
- package/lib/CircleOcticon.d.ts +1 -0
- package/lib/Dialog.d.ts +3 -2
- package/lib/Dropdown.d.ts +4 -0
- package/lib/DropdownMenu/DropdownButton.d.ts +2 -1
- package/lib/DropdownMenu/index.js +20 -6
- package/lib/DropdownStyles.js +26 -18
- package/lib/FilterList.d.ts +1 -0
- package/lib/FilteredActionList/index.js +12 -4
- package/lib/NewButton/index.js +12 -5
- package/lib/NewButton/types.js +1 -2
- package/lib/Overlay.d.ts +5 -3
- package/lib/Pagination/index.js +12 -6
- package/lib/Portal/index.js +16 -5
- package/lib/Position.d.ts +4 -4
- package/lib/SelectMenu/SelectMenu.d.ts +10 -4
- package/lib/SelectMenu/SelectMenuItem.d.ts +1 -1
- package/lib/SelectMenu/SelectMenuModal.d.ts +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/TextInputWithTokens.d.ts +1 -0
- package/lib/Token/AvatarToken.d.ts +1 -1
- package/lib/Token/IssueLabelToken.d.ts +1 -1
- package/lib/Token/Token.d.ts +1 -1
- package/lib/Token/index.js +30 -11
- 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 -0
- package/lib/index.js +652 -163
- 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 +2 -1
- 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 +3 -3
- package/lib-esm/ActionList2/Item.js +3 -1
- package/lib-esm/ActionList2/List.js +1 -2
- package/lib-esm/ActionList2/Selection.js +3 -1
- package/lib-esm/Autocomplete/Autocomplete.d.ts +1 -0
- package/lib-esm/Autocomplete/AutocompleteInput.d.ts +1 -0
- package/lib-esm/Button/Button.d.ts +1 -0
- package/lib-esm/Button/ButtonClose.d.ts +2 -1
- package/lib-esm/Button/ButtonDanger.d.ts +1 -0
- package/lib-esm/Button/ButtonInvisible.d.ts +1 -0
- package/lib-esm/Button/ButtonOutline.d.ts +1 -0
- package/lib-esm/Button/ButtonPrimary.d.ts +1 -0
- package/lib-esm/Checkbox.d.ts +29 -0
- package/lib-esm/Checkbox.js +44 -0
- package/lib-esm/CircleOcticon.d.ts +1 -0
- package/lib-esm/Dialog.d.ts +3 -2
- package/lib-esm/Dropdown.d.ts +4 -0
- package/lib-esm/DropdownMenu/DropdownButton.d.ts +2 -1
- package/lib-esm/FilterList.d.ts +1 -0
- package/lib-esm/Overlay.d.ts +5 -3
- package/lib-esm/Position.d.ts +4 -4
- package/lib-esm/SelectMenu/SelectMenu.d.ts +10 -4
- package/lib-esm/SelectMenu/SelectMenuItem.d.ts +1 -1
- package/lib-esm/SelectMenu/SelectMenuModal.d.ts +1 -1
- package/lib-esm/TextInputWithTokens.d.ts +1 -0
- package/lib-esm/Token/AvatarToken.d.ts +1 -1
- package/lib-esm/Token/IssueLabelToken.d.ts +1 -1
- package/lib-esm/Token/Token.d.ts +1 -1
- package/lib-esm/index.d.ts +2 -0
- package/lib-esm/index.js +1 -0
- package/lib-esm/theme-preval.js +446 -0
- package/lib-esm/utils/testing.d.ts +2 -1
- package/lib-esm/utils/testing.js +24 -0
- package/package.json +4 -5
- 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 -288
- 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 -54
- package/lib/ActionList2/Header.d.ts +0 -26
- package/lib/ActionList2/Header.js +0 -55
- 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 -71
- package/lib/Button/Button.jsx +0 -40
- package/lib/Button/ButtonBase.jsx +0 -33
- package/lib/Button/ButtonClose.jsx +0 -53
- package/lib/Button/ButtonDanger.jsx +0 -43
- package/lib/Button/ButtonGroup.jsx +0 -55
- package/lib/Button/ButtonInvisible.jsx +0 -32
- package/lib/Button/ButtonOutline.jsx +0 -43
- package/lib/Button/ButtonPrimary.jsx +0 -42
- package/lib/Button/ButtonStyles.jsx +0 -37
- package/lib/Button/ButtonTableList.jsx +0 -46
- package/lib/Caret.jsx +0 -93
- package/lib/CircleBadge.jsx +0 -42
- package/lib/CircleOcticon.jsx +0 -21
- package/lib/CounterLabel.jsx +0 -43
- package/lib/Details.jsx +0 -21
- package/lib/Dialog/ConfirmationDialog.jsx +0 -146
- package/lib/Dialog/Dialog.jsx +0 -279
- package/lib/Dialog.jsx +0 -129
- package/lib/Dropdown.jsx +0 -131
- package/lib/DropdownMenu/DropdownButton.jsx +0 -14
- package/lib/DropdownMenu/DropdownMenu.jsx +0 -70
- package/lib/FilterList.jsx +0 -59
- package/lib/FilteredActionList/FilteredActionList.jsx +0 -100
- package/lib/FilteredSearch.jsx +0 -28
- package/lib/Flash.jsx +0 -69
- package/lib/Flex.jsx +0 -15
- package/lib/FormGroup.jsx +0 -22
- package/lib/Grid.jsx +0 -15
- package/lib/Header.jsx +0 -83
- package/lib/Heading.jsx +0 -21
- package/lib/Label.jsx +0 -82
- package/lib/LabelGroup.jsx +0 -18
- package/lib/Link.jsx +0 -36
- package/lib/NewButton/button-counter.jsx +0 -14
- package/lib/NewButton/button.jsx +0 -279
- package/lib/Overlay.jsx +0 -154
- package/lib/Pagehead.jsx +0 -17
- package/lib/Pagination/Pagination.jsx +0 -161
- package/lib/Pagination/model.jsx +0 -174
- package/lib/PointerBox.jsx +0 -25
- package/lib/Popover.jsx +0 -202
- 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 -112
- package/lib/SelectMenu/SelectMenuContext.jsx +0 -5
- package/lib/SelectMenu/SelectMenuDivider.jsx +0 -42
- package/lib/SelectMenu/SelectMenuFilter.jsx +0 -58
- package/lib/SelectMenu/SelectMenuFooter.jsx +0 -45
- package/lib/SelectMenu/SelectMenuHeader.jsx +0 -42
- package/lib/SelectMenu/SelectMenuItem.jsx +0 -142
- package/lib/SelectMenu/SelectMenuList.jsx +0 -59
- package/lib/SelectMenu/SelectMenuLoadingAnimation.jsx +0 -22
- package/lib/SelectMenu/SelectMenuModal.jsx +0 -118
- package/lib/SelectMenu/SelectMenuTab.jsx +0 -92
- package/lib/SelectMenu/SelectMenuTabPanel.jsx +0 -42
- package/lib/SelectMenu/SelectMenuTabs.jsx +0 -57
- package/lib/SelectPanel/SelectPanel.jsx +0 -105
- package/lib/SideNav.jsx +0 -173
- package/lib/Spinner.jsx +0 -35
- package/lib/StateLabel.jsx +0 -93
- package/lib/StyledOcticon.jsx +0 -18
- package/lib/SubNav.jsx +0 -101
- package/lib/TabNav.jsx +0 -58
- 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 -123
- 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 -24
- package/lib/UnderlineNav.jsx +0 -88
- 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/ActionList2/Header.d.ts +0 -26
- package/lib-esm/ActionList2/Header.js +0 -44
@@ -1,26 +0,0 @@
|
|
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;
|
@@ -1,55 +0,0 @@
|
|
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";
|
@@ -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;
|
package/lib/ActionMenu.jsx
DELETED
@@ -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
|
-
};
|