@primer/components 0.0.0-202111616587 → 0.0.0-2021116181214
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/dist/browser.esm.js +2 -2
- package/dist/browser.esm.js.map +1 -1
- package/dist/browser.umd.js +2 -2
- package/dist/browser.umd.js.map +1 -1
- package/lib/ActionList/Item.js +3 -3
- package/lib/ActionList/List.js +2 -2
- package/lib/AnchoredOverlay/AnchoredOverlay.d.ts +1 -1
- package/lib/Autocomplete/AutocompleteMenu.js +11 -23
- package/lib/CheckboxInputField.d.ts +11 -0
- package/lib/CheckboxInputField.js +73 -0
- package/lib/ChoiceFieldset/ChoiceFieldCaption.d.ts +3 -0
- package/lib/ChoiceFieldset/ChoiceFieldCaption.js +35 -0
- package/lib/ChoiceFieldset/ChoiceFieldLabel.d.ts +3 -0
- package/lib/ChoiceFieldset/ChoiceFieldLabel.js +35 -0
- package/lib/ChoiceFieldset/ChoiceFieldset.d.ts +65 -0
- package/lib/ChoiceFieldset/ChoiceFieldset.js +95 -0
- package/lib/ChoiceFieldset/ChoiceFieldsetDescription.d.ts +3 -0
- package/lib/ChoiceFieldset/ChoiceFieldsetDescription.js +29 -0
- package/lib/ChoiceFieldset/ChoiceFieldsetLegend.d.ts +9 -0
- package/lib/ChoiceFieldset/ChoiceFieldsetLegend.js +44 -0
- package/lib/ChoiceFieldset/ChoiceFieldsetList.d.ts +9 -0
- package/lib/ChoiceFieldset/ChoiceFieldsetList.js +69 -0
- package/lib/ChoiceFieldset/ChoiceFieldsetListContext.d.ts +19 -0
- package/lib/ChoiceFieldset/ChoiceFieldsetListContext.js +15 -0
- package/lib/ChoiceFieldset/ChoiceFieldsetListItem.d.ts +25 -0
- package/lib/ChoiceFieldset/ChoiceFieldsetListItem.js +75 -0
- package/lib/ChoiceFieldset/ChoiceFieldsetValidation.d.ts +6 -0
- package/lib/ChoiceFieldset/ChoiceFieldsetValidation.js +17 -0
- package/lib/ChoiceFieldset/index.d.ts +3 -0
- package/lib/ChoiceFieldset/index.js +23 -0
- package/lib/Dialog/ConfirmationDialog.js +2 -2
- package/lib/Dialog/Dialog.js +2 -2
- package/lib/FilteredActionList/FilteredActionList.js +3 -10
- package/lib/Overlay.d.ts +1 -1
- package/lib/RadioInputField.d.ts +10 -0
- package/lib/RadioInputField.js +74 -0
- package/lib/TextInputField.d.ts +583 -0
- package/lib/TextInputField.js +66 -0
- package/lib/TextInputWithTokens.js +4 -4
- package/lib/_InputCaption.d.ts +13 -0
- package/lib/_InputCaption.js +27 -0
- package/lib/_InputField/InputField.d.ts +39 -0
- package/lib/_InputField/InputField.js +90 -0
- package/lib/_InputField/InputFieldCaption.d.ts +3 -0
- package/lib/_InputField/InputFieldCaption.js +30 -0
- package/lib/_InputField/InputFieldLabel.d.ts +9 -0
- package/lib/_InputField/InputFieldLabel.js +34 -0
- package/lib/_InputField/InputFieldValidation.d.ts +6 -0
- package/lib/_InputField/InputFieldValidation.js +17 -0
- package/lib/_InputField/ToggleInputField.d.ts +13 -0
- package/lib/_InputField/ToggleInputField.js +71 -0
- package/lib/_InputField/ToggleInputLeadingVisual.d.ts +3 -0
- package/lib/_InputField/ToggleInputLeadingVisual.js +22 -0
- package/lib/_InputField/ValidationAnimationContainer.d.ts +6 -0
- package/lib/_InputField/ValidationAnimationContainer.js +48 -0
- package/lib/_InputField/index.d.ts +1 -0
- package/lib/_InputField/index.js +15 -0
- package/lib/_InputField/slots.d.ts +13 -0
- package/lib/_InputField/slots.js +17 -0
- package/lib/_InputLabel.d.ts +8 -0
- package/lib/_InputLabel.js +44 -0
- package/lib/_InputValidation.d.ts +8 -0
- package/lib/_InputValidation.js +56 -0
- package/lib/_VisuallyHidden.d.ts +6 -0
- package/lib/_VisuallyHidden.js +39 -0
- package/lib/behaviors/anchoredPosition.d.ts +89 -0
- package/lib/behaviors/anchoredPosition.js +316 -0
- package/lib/behaviors/focusTrap.d.ts +12 -0
- package/lib/behaviors/focusTrap.js +179 -0
- package/lib/behaviors/focusZone.d.ts +137 -0
- package/lib/behaviors/focusZone.js +578 -0
- package/lib/behaviors/scrollIntoViewingArea.d.ts +1 -0
- package/lib/behaviors/scrollIntoViewingArea.js +39 -0
- package/lib/hooks/useAnchoredPosition.d.ts +1 -1
- package/lib/hooks/useAnchoredPosition.js +2 -2
- package/lib/hooks/useFocusTrap.js +2 -2
- package/lib/hooks/useFocusZone.d.ts +1 -1
- package/lib/hooks/useFocusZone.js +2 -2
- package/lib/hooks/useOpenAndCloseFocus.js +2 -2
- package/lib/index.d.ts +4 -0
- package/lib/index.js +38 -0
- package/lib/utils/iterateFocusableElements.d.ts +42 -0
- package/lib/utils/iterateFocusableElements.js +113 -0
- package/lib/utils/types/FormValidationStatus.d.ts +1 -0
- package/lib/utils/types/FormValidationStatus.js +1 -0
- package/lib/utils/uniqueId.d.ts +1 -0
- package/lib/utils/uniqueId.js +12 -0
- package/lib/utils/userAgent.d.ts +1 -0
- package/lib/utils/userAgent.js +15 -0
- package/lib-esm/ActionList/Item.js +1 -1
- package/lib-esm/ActionList/List.js +1 -1
- package/lib-esm/AnchoredOverlay/AnchoredOverlay.d.ts +1 -1
- package/lib-esm/Autocomplete/AutocompleteMenu.js +7 -22
- package/lib-esm/CheckboxInputField.d.ts +11 -0
- package/lib-esm/CheckboxInputField.js +56 -0
- package/lib-esm/ChoiceFieldset/ChoiceFieldCaption.d.ts +3 -0
- package/lib-esm/ChoiceFieldset/ChoiceFieldCaption.js +20 -0
- package/lib-esm/ChoiceFieldset/ChoiceFieldLabel.d.ts +3 -0
- package/lib-esm/ChoiceFieldset/ChoiceFieldLabel.js +20 -0
- package/lib-esm/ChoiceFieldset/ChoiceFieldset.d.ts +65 -0
- package/lib-esm/ChoiceFieldset/ChoiceFieldset.js +72 -0
- package/lib-esm/ChoiceFieldset/ChoiceFieldsetDescription.d.ts +3 -0
- package/lib-esm/ChoiceFieldset/ChoiceFieldsetDescription.js +17 -0
- package/lib-esm/ChoiceFieldset/ChoiceFieldsetLegend.d.ts +9 -0
- package/lib-esm/ChoiceFieldset/ChoiceFieldsetLegend.js +31 -0
- package/lib-esm/ChoiceFieldset/ChoiceFieldsetList.d.ts +9 -0
- package/lib-esm/ChoiceFieldset/ChoiceFieldsetList.js +52 -0
- package/lib-esm/ChoiceFieldset/ChoiceFieldsetListContext.d.ts +19 -0
- package/lib-esm/ChoiceFieldset/ChoiceFieldsetListContext.js +5 -0
- package/lib-esm/ChoiceFieldset/ChoiceFieldsetListItem.d.ts +25 -0
- package/lib-esm/ChoiceFieldset/ChoiceFieldsetListItem.js +51 -0
- package/lib-esm/ChoiceFieldset/ChoiceFieldsetValidation.d.ts +6 -0
- package/lib-esm/ChoiceFieldset/ChoiceFieldsetValidation.js +7 -0
- package/lib-esm/ChoiceFieldset/index.d.ts +3 -0
- package/lib-esm/ChoiceFieldset/index.js +2 -0
- package/lib-esm/Dialog/ConfirmationDialog.js +1 -1
- package/lib-esm/Dialog/Dialog.js +1 -1
- package/lib-esm/FilteredActionList/FilteredActionList.js +3 -9
- package/lib-esm/Overlay.d.ts +1 -1
- package/lib-esm/RadioInputField.d.ts +10 -0
- package/lib-esm/RadioInputField.js +56 -0
- package/lib-esm/TextInputField.d.ts +583 -0
- package/lib-esm/TextInputField.js +50 -0
- package/lib-esm/TextInputWithTokens.js +2 -2
- package/lib-esm/_InputCaption.d.ts +13 -0
- package/lib-esm/_InputCaption.js +16 -0
- package/lib-esm/_InputField/InputField.d.ts +39 -0
- package/lib-esm/_InputField/InputField.js +70 -0
- package/lib-esm/_InputField/InputFieldCaption.d.ts +3 -0
- package/lib-esm/_InputField/InputFieldCaption.js +18 -0
- package/lib-esm/_InputField/InputFieldLabel.d.ts +9 -0
- package/lib-esm/_InputField/InputFieldLabel.js +22 -0
- package/lib-esm/_InputField/InputFieldValidation.d.ts +6 -0
- package/lib-esm/_InputField/InputFieldValidation.js +7 -0
- package/lib-esm/_InputField/ToggleInputField.d.ts +13 -0
- package/lib-esm/_InputField/ToggleInputField.js +54 -0
- package/lib-esm/_InputField/ToggleInputLeadingVisual.d.ts +3 -0
- package/lib-esm/_InputField/ToggleInputLeadingVisual.js +11 -0
- package/lib-esm/_InputField/ValidationAnimationContainer.d.ts +6 -0
- package/lib-esm/_InputField/ValidationAnimationContainer.js +33 -0
- package/lib-esm/_InputField/index.d.ts +1 -0
- package/lib-esm/_InputField/index.js +1 -0
- package/lib-esm/_InputField/slots.d.ts +13 -0
- package/lib-esm/_InputField/slots.js +5 -0
- package/lib-esm/_InputLabel.d.ts +8 -0
- package/lib-esm/_InputLabel.js +32 -0
- package/lib-esm/_InputValidation.d.ts +8 -0
- package/lib-esm/_InputValidation.js +43 -0
- package/lib-esm/_VisuallyHidden.d.ts +6 -0
- package/lib-esm/_VisuallyHidden.js +26 -0
- package/lib-esm/behaviors/anchoredPosition.d.ts +89 -0
- package/lib-esm/behaviors/anchoredPosition.js +309 -0
- package/lib-esm/behaviors/focusTrap.d.ts +12 -0
- package/lib-esm/behaviors/focusTrap.js +170 -0
- package/lib-esm/behaviors/focusZone.d.ts +137 -0
- package/lib-esm/behaviors/focusZone.js +560 -0
- package/lib-esm/behaviors/scrollIntoViewingArea.d.ts +1 -0
- package/lib-esm/behaviors/scrollIntoViewingArea.js +30 -0
- package/lib-esm/hooks/useAnchoredPosition.d.ts +1 -1
- package/lib-esm/hooks/useAnchoredPosition.js +1 -1
- package/lib-esm/hooks/useFocusTrap.js +1 -1
- package/lib-esm/hooks/useFocusZone.d.ts +1 -1
- package/lib-esm/hooks/useFocusZone.js +1 -1
- package/lib-esm/hooks/useOpenAndCloseFocus.js +1 -1
- package/lib-esm/index.d.ts +4 -0
- package/lib-esm/index.js +4 -0
- package/lib-esm/utils/iterateFocusableElements.d.ts +42 -0
- package/lib-esm/utils/iterateFocusableElements.js +102 -0
- package/lib-esm/utils/types/FormValidationStatus.d.ts +1 -0
- package/lib-esm/utils/types/FormValidationStatus.js +1 -0
- package/lib-esm/utils/uniqueId.d.ts +1 -0
- package/lib-esm/utils/uniqueId.js +5 -0
- package/lib-esm/utils/userAgent.d.ts +1 -0
- package/lib-esm/utils/userAgent.js +8 -0
- package/package.json +6 -3
@@ -0,0 +1,72 @@
|
|
1
|
+
import React from 'react';
|
2
|
+
import { Box } from '..';
|
3
|
+
import createSlots from '../utils/create-slots';
|
4
|
+
import { uniqueId } from '../utils/uniqueId';
|
5
|
+
import ValidationAnimationContainer from '../_InputField/ValidationAnimationContainer';
|
6
|
+
import InputValidation from '../_InputValidation';
|
7
|
+
import ChoiceFieldsetListItem from './ChoiceFieldsetListItem';
|
8
|
+
import ChoiceFieldsetDescription from './ChoiceFieldsetDescription';
|
9
|
+
import ChoiceFieldsetLegend from './ChoiceFieldsetLegend';
|
10
|
+
import ChoiceFieldsetList from './ChoiceFieldsetList';
|
11
|
+
import ChoiceFieldsetValidation from './ChoiceFieldsetValidation';
|
12
|
+
const {
|
13
|
+
Slots,
|
14
|
+
Slot
|
15
|
+
} = createSlots(['Description', 'ChoiceList', 'Legend', 'Validation']);
|
16
|
+
export { Slot };
|
17
|
+
|
18
|
+
const ChoiceFieldset = ({
|
19
|
+
children,
|
20
|
+
disabled,
|
21
|
+
id,
|
22
|
+
name,
|
23
|
+
onSelect,
|
24
|
+
required,
|
25
|
+
selected,
|
26
|
+
validationMap,
|
27
|
+
validationResult
|
28
|
+
}) => {
|
29
|
+
var _React$Children$map;
|
30
|
+
|
31
|
+
const fieldsetId = id || uniqueId();
|
32
|
+
const validationChildren = (_React$Children$map = React.Children.map(children, child => /*#__PURE__*/React.isValidElement(child) && child.type === ChoiceFieldsetValidation ? child : null)) === null || _React$Children$map === void 0 ? void 0 : _React$Children$map.filter(Boolean);
|
33
|
+
const validationChildToRender = validationChildren === null || validationChildren === void 0 ? void 0 : validationChildren.find(child => child.props.validationKey === validationResult);
|
34
|
+
const validationMessageId = validationChildToRender ? `${fieldsetId}-validationMsg` : undefined;
|
35
|
+
return /*#__PURE__*/React.createElement(Slots, {
|
36
|
+
context: {
|
37
|
+
disabled,
|
38
|
+
name,
|
39
|
+
onSelect,
|
40
|
+
required,
|
41
|
+
selected,
|
42
|
+
validationMessageId
|
43
|
+
}
|
44
|
+
}, slots => {
|
45
|
+
const isLegendVisible = /*#__PURE__*/React.isValidElement(slots.Legend) && slots.Legend.props.isVisible;
|
46
|
+
return /*#__PURE__*/React.createElement("div", null, /*#__PURE__*/React.createElement(Box, {
|
47
|
+
as: "fieldset",
|
48
|
+
border: "none",
|
49
|
+
margin: 0,
|
50
|
+
padding: 0,
|
51
|
+
"aria-describedby": [validationMessageId].filter(Boolean).join(' ')
|
52
|
+
}, React.Children.toArray(children).filter(child => /*#__PURE__*/React.isValidElement(child) && child.type !== ChoiceFieldsetValidation), /*#__PURE__*/React.createElement(Box, {
|
53
|
+
mb: isLegendVisible ? 3 : undefined
|
54
|
+
}, slots.Legend, slots.Description), slots.ChoiceList), validationChildToRender && /*#__PURE__*/React.createElement(Box, {
|
55
|
+
mt: 3
|
56
|
+
}, validationMap && validationResult && validationMessageId && /*#__PURE__*/React.createElement(ValidationAnimationContainer, {
|
57
|
+
show: true
|
58
|
+
}, /*#__PURE__*/React.createElement(InputValidation, {
|
59
|
+
validationStatus: validationMap[validationResult],
|
60
|
+
id: validationMessageId
|
61
|
+
}, validationChildToRender))));
|
62
|
+
});
|
63
|
+
};
|
64
|
+
|
65
|
+
ChoiceFieldset.displayName = "ChoiceFieldset";
|
66
|
+
export default Object.assign(ChoiceFieldset, {
|
67
|
+
Description: ChoiceFieldsetDescription,
|
68
|
+
Item: ChoiceFieldsetListItem,
|
69
|
+
Legend: ChoiceFieldsetLegend,
|
70
|
+
List: ChoiceFieldsetList,
|
71
|
+
Validation: ChoiceFieldsetValidation
|
72
|
+
});
|
@@ -0,0 +1,17 @@
|
|
1
|
+
import React from 'react';
|
2
|
+
import { Text } from '..';
|
3
|
+
import { Slot } from './ChoiceFieldset';
|
4
|
+
|
5
|
+
const ChoiceFieldsetDescription = ({
|
6
|
+
children
|
7
|
+
}) => /*#__PURE__*/React.createElement(Slot, {
|
8
|
+
name: "Description"
|
9
|
+
}, ({
|
10
|
+
disabled
|
11
|
+
}) => /*#__PURE__*/React.createElement(Text, {
|
12
|
+
color: disabled ? 'fg.muted' : 'fg.default',
|
13
|
+
fontSize: 1
|
14
|
+
}, children));
|
15
|
+
|
16
|
+
ChoiceFieldsetDescription.displayName = "ChoiceFieldsetDescription";
|
17
|
+
export default ChoiceFieldsetDescription;
|
@@ -0,0 +1,9 @@
|
|
1
|
+
import React from 'react';
|
2
|
+
export interface ChoiceFieldsetLegendProps {
|
3
|
+
/**
|
4
|
+
* Whether to visually hide the fieldset legend
|
5
|
+
*/
|
6
|
+
visuallyHidden?: boolean;
|
7
|
+
}
|
8
|
+
declare const ChoiceFieldsetLegend: React.FC<ChoiceFieldsetLegendProps>;
|
9
|
+
export default ChoiceFieldsetLegend;
|
@@ -0,0 +1,31 @@
|
|
1
|
+
import React from 'react';
|
2
|
+
import { Box } from '..';
|
3
|
+
import VisuallyHidden from '../_VisuallyHidden';
|
4
|
+
import { Slot } from './ChoiceFieldset';
|
5
|
+
|
6
|
+
const ChoiceFieldsetLegend = ({
|
7
|
+
children,
|
8
|
+
visuallyHidden
|
9
|
+
}) => /*#__PURE__*/React.createElement(Slot, {
|
10
|
+
name: "Legend"
|
11
|
+
}, ({
|
12
|
+
required,
|
13
|
+
disabled
|
14
|
+
}) => /*#__PURE__*/React.createElement(VisuallyHidden, {
|
15
|
+
as: "legend",
|
16
|
+
isVisible: !visuallyHidden,
|
17
|
+
title: required ? 'required field' : undefined,
|
18
|
+
sx: {
|
19
|
+
color: disabled ? 'fg.muted' : undefined,
|
20
|
+
fontSize: 2,
|
21
|
+
padding: 0
|
22
|
+
}
|
23
|
+
}, required ? /*#__PURE__*/React.createElement(Box, {
|
24
|
+
display: "flex",
|
25
|
+
as: "span"
|
26
|
+
}, /*#__PURE__*/React.createElement(Box, {
|
27
|
+
mr: 1
|
28
|
+
}, children), /*#__PURE__*/React.createElement("span", null, "*")) : children));
|
29
|
+
|
30
|
+
ChoiceFieldsetLegend.displayName = "ChoiceFieldsetLegend";
|
31
|
+
export default ChoiceFieldsetLegend;
|
@@ -0,0 +1,9 @@
|
|
1
|
+
import React from 'react';
|
2
|
+
export interface ChoiceFieldsetListProps {
|
3
|
+
/**
|
4
|
+
* Whether multiple items or a single item can be selected
|
5
|
+
*/
|
6
|
+
selectionVariant?: 'single' | 'multiple';
|
7
|
+
}
|
8
|
+
declare const ChoiceFieldsetList: React.FC<ChoiceFieldsetListProps>;
|
9
|
+
export default ChoiceFieldsetList;
|
@@ -0,0 +1,52 @@
|
|
1
|
+
import React from 'react';
|
2
|
+
import styled from 'styled-components';
|
3
|
+
import { CheckboxInputField, RadioInputField } from '..';
|
4
|
+
import { get } from '../constants';
|
5
|
+
import { uniqueId } from '../utils/uniqueId';
|
6
|
+
import { Slot } from './ChoiceFieldset';
|
7
|
+
import ChoiceFieldsetListContext from './ChoiceFieldsetListContext';
|
8
|
+
const List = styled.ul.withConfig({
|
9
|
+
displayName: "ChoiceFieldsetList__List",
|
10
|
+
componentId: "sc-16da7ba-0"
|
11
|
+
})(["display:flex;flex-direction:column;list-style:none;margin:0;padding:0;> li + li{margin-top:", ";}"], get('space.2'));
|
12
|
+
|
13
|
+
const ChoiceFieldsetList = ({
|
14
|
+
selectionVariant,
|
15
|
+
children
|
16
|
+
}) => /*#__PURE__*/React.createElement(Slot, {
|
17
|
+
name: "ChoiceList"
|
18
|
+
}, ({
|
19
|
+
name,
|
20
|
+
onSelect,
|
21
|
+
disabled,
|
22
|
+
selected = []
|
23
|
+
}) => {
|
24
|
+
const getSelectedCheckboxes = (value, checked) => {
|
25
|
+
if (checked) {
|
26
|
+
return selectionVariant === 'multiple' ? [...selected, value] : [value];
|
27
|
+
}
|
28
|
+
|
29
|
+
return selected.filter(selectedValue => selectedValue !== value);
|
30
|
+
};
|
31
|
+
|
32
|
+
return /*#__PURE__*/React.createElement(ChoiceFieldsetListContext.Provider, {
|
33
|
+
value: {
|
34
|
+
disabled,
|
35
|
+
selected,
|
36
|
+
name: name || uniqueId(),
|
37
|
+
fieldComponent: selectionVariant === 'multiple' ? CheckboxInputField : RadioInputField,
|
38
|
+
onChange: e => {
|
39
|
+
onSelect && onSelect(getSelectedCheckboxes(e.currentTarget.value, e.currentTarget.checked));
|
40
|
+
},
|
41
|
+
selectionVariant
|
42
|
+
}
|
43
|
+
}, /*#__PURE__*/React.createElement(List, null, React.Children.map(children, (child, i) => /*#__PURE__*/React.createElement("li", {
|
44
|
+
key: i
|
45
|
+
}, child))));
|
46
|
+
});
|
47
|
+
|
48
|
+
ChoiceFieldsetList.displayName = "ChoiceFieldsetList";
|
49
|
+
ChoiceFieldsetList.defaultProps = {
|
50
|
+
selectionVariant: 'single'
|
51
|
+
};
|
52
|
+
export default ChoiceFieldsetList;
|
@@ -0,0 +1,19 @@
|
|
1
|
+
import { ChangeEventHandler } from 'react';
|
2
|
+
import { CheckboxInputField, RadioInputField } from '..';
|
3
|
+
import { ComponentProps } from '../utils/types';
|
4
|
+
import InputField from '../_InputField';
|
5
|
+
import ToggleInputField, { ToggleInputFieldProps } from '../_InputField/ToggleInputField';
|
6
|
+
declare const ChoiceFieldsetListContext: import("react").Context<{
|
7
|
+
disabled?: boolean | undefined;
|
8
|
+
name: string;
|
9
|
+
onChange: ChangeEventHandler<HTMLInputElement>;
|
10
|
+
fieldComponent: React.FC<ToggleInputFieldProps> & {
|
11
|
+
Input: React.FC<ComponentProps<typeof RadioInputField.Input>> | React.FC<ComponentProps<typeof CheckboxInputField.Input>>;
|
12
|
+
Caption: React.FC<ComponentProps<typeof InputField.Caption>>;
|
13
|
+
Label: React.FC<ComponentProps<typeof InputField.Label>>;
|
14
|
+
LeadingVisual: React.FC<ComponentProps<typeof ToggleInputField.LeadingVisual>>;
|
15
|
+
};
|
16
|
+
selected?: string[] | undefined;
|
17
|
+
selectionVariant?: "single" | "multiple" | undefined;
|
18
|
+
} | null>;
|
19
|
+
export default ChoiceFieldsetListContext;
|
@@ -0,0 +1,25 @@
|
|
1
|
+
import React from 'react';
|
2
|
+
import { ComponentProps } from '../utils/types';
|
3
|
+
export interface ChoiceFieldProps {
|
4
|
+
/**
|
5
|
+
* Whether the field is ready for user input
|
6
|
+
*/
|
7
|
+
disabled?: boolean;
|
8
|
+
/**
|
9
|
+
* The unique identifier for this field. Used to associate the label, validation text, and caption text.
|
10
|
+
* If an ID is not provided, one will be automatically generated.
|
11
|
+
*/
|
12
|
+
id?: string;
|
13
|
+
/**
|
14
|
+
* The value that is being selected
|
15
|
+
*/
|
16
|
+
value: string;
|
17
|
+
}
|
18
|
+
declare const ChoiceFieldsetListItem: React.FC<ChoiceFieldProps>;
|
19
|
+
export declare type ChoiceFieldComponentProps = ComponentProps<typeof ChoiceFieldsetListItem>;
|
20
|
+
declare const _default: React.FC<ChoiceFieldProps> & {
|
21
|
+
Caption: React.FC<{}>;
|
22
|
+
Label: React.FC<{}>;
|
23
|
+
LeadingVisual: React.FC<{}>;
|
24
|
+
};
|
25
|
+
export default _default;
|
@@ -0,0 +1,51 @@
|
|
1
|
+
import React, { useContext } from 'react';
|
2
|
+
import { uniqueId } from '../utils/uniqueId';
|
3
|
+
import ToggleInputLeadingVisual from '../_InputField/ToggleInputLeadingVisual';
|
4
|
+
import ChoiceFieldCaption from './ChoiceFieldCaption';
|
5
|
+
import ChoiceFieldLabel from './ChoiceFieldLabel';
|
6
|
+
import ChoiceFieldsetListContext from './ChoiceFieldsetListContext';
|
7
|
+
|
8
|
+
const ChoiceFieldsetListItem = ({
|
9
|
+
children,
|
10
|
+
id,
|
11
|
+
disabled: disabledProp,
|
12
|
+
value
|
13
|
+
}) => {
|
14
|
+
const choiceFieldsetListContext = useContext(ChoiceFieldsetListContext);
|
15
|
+
|
16
|
+
if (choiceFieldsetListContext === null) {
|
17
|
+
throw new Error('ChoiceFieldsetListContext returned null');
|
18
|
+
}
|
19
|
+
|
20
|
+
const {
|
21
|
+
name,
|
22
|
+
onChange,
|
23
|
+
fieldComponent: FieldComponent,
|
24
|
+
selected,
|
25
|
+
disabled,
|
26
|
+
selectionVariant
|
27
|
+
} = choiceFieldsetListContext;
|
28
|
+
const fieldId = id || uniqueId();
|
29
|
+
const labelChild = React.Children.toArray(children).find(child => /*#__PURE__*/React.isValidElement(child) && child.type === ChoiceFieldLabel);
|
30
|
+
const otherValidChildren = React.Children.toArray(children).filter(child => /*#__PURE__*/React.isValidElement(child) && (child.type === ChoiceFieldCaption || child.type === ToggleInputLeadingVisual));
|
31
|
+
return /*#__PURE__*/React.createElement(FieldComponent, {
|
32
|
+
id: fieldId,
|
33
|
+
disabled: disabledProp || disabled
|
34
|
+
}, /*#__PURE__*/React.createElement(FieldComponent.Input, {
|
35
|
+
checked: selected === null || selected === void 0 ? void 0 : selected.includes(value),
|
36
|
+
value: value,
|
37
|
+
name: selectionVariant === 'multiple' ? value : name,
|
38
|
+
onChange: onChange
|
39
|
+
}), labelChild ? // if <Item.Label> was passed, we can just render the children as-is
|
40
|
+
children :
|
41
|
+
/*#__PURE__*/
|
42
|
+
// if <Item.Label> was NOT passed, treat all the children except <Item.Caption> and <Item.LeadingVisual> as the label
|
43
|
+
React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement(FieldComponent.Label, null, children), otherValidChildren));
|
44
|
+
};
|
45
|
+
|
46
|
+
ChoiceFieldsetListItem.displayName = "ChoiceFieldsetListItem";
|
47
|
+
export default Object.assign(ChoiceFieldsetListItem, {
|
48
|
+
Caption: ChoiceFieldCaption,
|
49
|
+
Label: ChoiceFieldLabel,
|
50
|
+
LeadingVisual: ToggleInputLeadingVisual
|
51
|
+
});
|
@@ -5,7 +5,7 @@ import ReactDOM from 'react-dom';
|
|
5
5
|
import styled from 'styled-components';
|
6
6
|
import Box from '../Box';
|
7
7
|
import { ThemeProvider, useTheme } from '../ThemeProvider';
|
8
|
-
import { FocusKeys } from '
|
8
|
+
import { FocusKeys } from '../behaviors/focusZone';
|
9
9
|
import { get } from '../constants';
|
10
10
|
import { Dialog } from '../Dialog/Dialog';
|
11
11
|
import { useFocusZone } from '../hooks/useFocusZone';
|
package/lib-esm/Dialog/Dialog.js
CHANGED
@@ -11,7 +11,7 @@ import sx from '../sx';
|
|
11
11
|
import StyledOcticon from '../StyledOcticon';
|
12
12
|
import { XIcon } from '@primer/octicons-react';
|
13
13
|
import { useFocusZone } from '../hooks/useFocusZone';
|
14
|
-
import { FocusKeys } from '
|
14
|
+
import { FocusKeys } from '../behaviors/focusZone';
|
15
15
|
import Portal from '../Portal';
|
16
16
|
import { useCombinedRefs } from '../hooks/useCombinedRefs';
|
17
17
|
import { useSSRSafeId } from '@react-aria/ssr';
|
@@ -12,11 +12,7 @@ import styled from 'styled-components';
|
|
12
12
|
import { get } from '../constants';
|
13
13
|
import { useProvidedRefOrCreate } from '../hooks/useProvidedRefOrCreate';
|
14
14
|
import useScrollFlash from '../hooks/useScrollFlash';
|
15
|
-
import {
|
16
|
-
const menuScrollMargins = {
|
17
|
-
startMargin: 0,
|
18
|
-
endMargin: 8
|
19
|
-
};
|
15
|
+
import { scrollIntoViewingArea } from '../behaviors/scrollIntoViewingArea';
|
20
16
|
const StyledHeader = styled.div.withConfig({
|
21
17
|
displayName: "FilteredActionList__StyledHeader",
|
22
18
|
componentId: "sc-yg3jkv-0"
|
@@ -63,7 +59,7 @@ export function FilteredActionList({
|
|
63
59
|
activeDescendantRef.current = current;
|
64
60
|
|
65
61
|
if (current && scrollContainerRef.current && directlyActivated) {
|
66
|
-
|
62
|
+
scrollIntoViewingArea(current, scrollContainerRef.current);
|
67
63
|
}
|
68
64
|
}
|
69
65
|
}, [// List ref isn't set while loading. Need to re-bind focus zone when it changes
|
@@ -71,9 +67,7 @@ export function FilteredActionList({
|
|
71
67
|
useEffect(() => {
|
72
68
|
// if items changed, we want to instantly move active descendant into view
|
73
69
|
if (activeDescendantRef.current && scrollContainerRef.current) {
|
74
|
-
|
75
|
-
behavior: 'auto'
|
76
|
-
});
|
70
|
+
scrollIntoViewingArea(activeDescendantRef.current, scrollContainerRef.current, 'vertical', undefined, undefined, 'auto');
|
77
71
|
}
|
78
72
|
}, [items]);
|
79
73
|
useScrollFlash(scrollContainerRef);
|
package/lib-esm/Overlay.d.ts
CHANGED
@@ -2,7 +2,7 @@ import React, { ComponentPropsWithRef } from 'react';
|
|
2
2
|
import { AriaRole, Merge } from './utils/types';
|
3
3
|
import { TouchOrMouseEvent } from './hooks';
|
4
4
|
import { SxProp } from './sx';
|
5
|
-
import
|
5
|
+
import { AnchorSide } from './behaviors/anchoredPosition';
|
6
6
|
import { ForwardRefComponent as PolymorphicForwardRefComponent } from '@radix-ui/react-polymorphic';
|
7
7
|
declare type StyledOverlayProps = {
|
8
8
|
width?: keyof typeof widthMap;
|
@@ -0,0 +1,10 @@
|
|
1
|
+
import React from 'react';
|
2
|
+
import { RadioProps } from '.';
|
3
|
+
import { ToggleInputFieldProps } from './_InputField/ToggleInputField';
|
4
|
+
declare const _default: React.FC<ToggleInputFieldProps> & {
|
5
|
+
Input: React.FC<RadioProps>;
|
6
|
+
Caption: React.FC<{}>;
|
7
|
+
Label: React.FC<import("./_InputField/InputFieldLabel").Props>;
|
8
|
+
LeadingVisual: React.FC<{}>;
|
9
|
+
};
|
10
|
+
export default _default;
|
@@ -0,0 +1,56 @@
|
|
1
|
+
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); }
|
2
|
+
|
3
|
+
import React from 'react';
|
4
|
+
import { Radio } from '.';
|
5
|
+
import InputField from './_InputField/InputField';
|
6
|
+
import { Slot } from './_InputField/slots';
|
7
|
+
import ToggleInputField from './_InputField/ToggleInputField';
|
8
|
+
import ToggleInputLeadingVisual from './_InputField/ToggleInputLeadingVisual'; // pulling out `id`, `disabled`, and `required` because those should come from the parent TextInputField component
|
9
|
+
|
10
|
+
const Input = ({
|
11
|
+
id: idProp,
|
12
|
+
required: requiredProp,
|
13
|
+
disabled: disabledProp,
|
14
|
+
...rest
|
15
|
+
}) => {
|
16
|
+
if (idProp) {
|
17
|
+
// eslint-disable-next-line no-console
|
18
|
+
console.warn("instead of passing the 'id' prop directly to <TextInputField.Input>, it should be passed to the parent component, <TextInputField>");
|
19
|
+
}
|
20
|
+
|
21
|
+
if (disabledProp) {
|
22
|
+
// eslint-disable-next-line no-console
|
23
|
+
console.warn("instead of passing the 'disabled' prop directly to <TextInputField.Input>, it should be passed to the parent component, <TextInputField>");
|
24
|
+
}
|
25
|
+
|
26
|
+
if (requiredProp) {
|
27
|
+
// eslint-disable-next-line no-console
|
28
|
+
console.warn("instead of passing the 'required' prop directly to <TextInputField.Input>, it should be passed to the parent component, <TextInputField>");
|
29
|
+
}
|
30
|
+
|
31
|
+
return /*#__PURE__*/React.createElement(Slot, {
|
32
|
+
name: "Input"
|
33
|
+
}, ({
|
34
|
+
disabled,
|
35
|
+
id,
|
36
|
+
required,
|
37
|
+
captionId
|
38
|
+
}) => /*#__PURE__*/React.createElement(Radio, _extends({
|
39
|
+
"aria-describedby": captionId,
|
40
|
+
id: id,
|
41
|
+
required: required,
|
42
|
+
disabled: disabled
|
43
|
+
}, rest)));
|
44
|
+
};
|
45
|
+
|
46
|
+
Input.displayName = "Input";
|
47
|
+
|
48
|
+
const RadioInputField = props => /*#__PURE__*/React.createElement(ToggleInputField, props);
|
49
|
+
|
50
|
+
RadioInputField.displayName = "RadioInputField";
|
51
|
+
export default Object.assign(RadioInputField, {
|
52
|
+
Input,
|
53
|
+
Caption: InputField.Caption,
|
54
|
+
Label: InputField.Label,
|
55
|
+
LeadingVisual: ToggleInputLeadingVisual
|
56
|
+
});
|