@deque/cauldron-react 6.16.0 → 6.17.0-canary.4145c2a7

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.
@@ -0,0 +1,11 @@
1
+ import React from 'react';
2
+ import { type ActionListSelectionType, type onActionCallbackFunction } from './ActionListContext';
3
+ interface ActionListProps extends React.HTMLAttributes<HTMLUListElement> {
4
+ children: React.ReactNode;
5
+ /** Limits the amount of selections that can be made within an action list */
6
+ selectionType?: ActionListSelectionType | null;
7
+ /** A callback function that is called when an action list item is selected. */
8
+ onAction?: onActionCallbackFunction;
9
+ }
10
+ declare const ActionList: React.ForwardRefExoticComponent<ActionListProps & React.RefAttributes<HTMLUListElement>>;
11
+ export default ActionList;
@@ -0,0 +1,16 @@
1
+ import React from 'react';
2
+ export type onActionEvent = React.MouseEvent<HTMLLIElement | HTMLAnchorElement> | React.KeyboardEvent<HTMLLIElement | HTMLAnchorElement>;
3
+ export type onActionCallbackFunction = (key: string, event: onActionEvent) => void;
4
+ export type ActionListSelectionType = 'single' | 'multiple';
5
+ type ActionListContext = {
6
+ role: 'list' | 'menu' | 'listbox' | null;
7
+ selectionType: ActionListSelectionType | null;
8
+ onAction?: onActionCallbackFunction;
9
+ };
10
+ type ActionListProviderProps = {
11
+ children: React.ReactNode;
12
+ } & ActionListContext;
13
+ declare const ActionListContext: React.Context<ActionListContext>;
14
+ declare function ActionListProvider({ role, selectionType, onAction, children }: ActionListProviderProps): React.JSX.Element;
15
+ declare function useActionListContext(): ActionListContext;
16
+ export { ActionListProvider, useActionListContext };
@@ -0,0 +1,13 @@
1
+ import React from 'react';
2
+ import { type ActionListSelectionType, type onActionCallbackFunction } from './ActionListContext';
3
+ import { ContentNode } from '../../types';
4
+ interface ActionListGroupProps extends React.HTMLAttributes<HTMLLIElement> {
5
+ /** Provides a label for the group of action items */
6
+ label: ContentNode;
7
+ /** Limits the amount of selections that can be made within an action group */
8
+ selectionType?: ActionListSelectionType | null;
9
+ /** A callback function that is called when an action list item is selected. */
10
+ onAction?: onActionCallbackFunction;
11
+ }
12
+ declare const ActionListGroup: React.ForwardRefExoticComponent<ActionListGroupProps & React.RefAttributes<HTMLLIElement>>;
13
+ export default ActionListGroup;
@@ -0,0 +1,25 @@
1
+ import React from 'react';
2
+ import { type IconType } from '../Icon';
3
+ import type { PolymorphicProps, PolymorphicComponent } from '../../utils/polymorphicComponent';
4
+ import { type onActionEvent } from './ActionListContext';
5
+ interface ActionListItemProps extends PolymorphicProps<React.HTMLAttributes<HTMLLIElement>> {
6
+ /**
7
+ * A unique key to identify the action when triggered, when not provided
8
+ * will use the child text content as the key.
9
+ */
10
+ actionKey?: string;
11
+ /** Displays a leading icon for the action item. */
12
+ leadingIcon?: IconType;
13
+ /** Displays a trailing icon for the action item. */
14
+ trailingIcon?: IconType;
15
+ /** Provides an additional description for the action item. */
16
+ description?: React.ReactNode;
17
+ /** Indicates if the current action item is selected. */
18
+ selected?: boolean;
19
+ /** When an action item is disabled, it cannot be selected or activated. */
20
+ disabled?: boolean;
21
+ /** A callback function that is called when an action item is selected. */
22
+ onAction?: (event: onActionEvent) => void;
23
+ }
24
+ declare const ActionListItem: PolymorphicComponent<ActionListItemProps>;
25
+ export default ActionListItem;
@@ -0,0 +1,7 @@
1
+ import React from 'react';
2
+ import ActionListItem from './ActionListItem';
3
+ type ActionListLinkItemProps = React.AnchorHTMLAttributes<HTMLAnchorElement> & Omit<React.ComponentProps<typeof ActionListItem>, keyof React.HTMLAttributes<HTMLLIElement> | 'selected'> & {
4
+ href: string;
5
+ };
6
+ declare const ActionListLinkItem: React.ForwardRefExoticComponent<Omit<ActionListLinkItemProps, "ref"> & React.RefAttributes<HTMLAnchorElement>>;
7
+ export default ActionListLinkItem;
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ type ActionListSeparatorProps = React.HTMLAttributes<HTMLLIElement>;
3
+ declare const ActionListSeparator: React.ForwardRefExoticComponent<ActionListSeparatorProps & React.RefAttributes<HTMLLIElement>>;
4
+ export default ActionListSeparator;
@@ -0,0 +1,5 @@
1
+ export { default as ActionList } from './ActionList';
2
+ export { default as ActionListItem } from './ActionListItem';
3
+ export { default as ActionListGroup } from './ActionListGroup';
4
+ export { default as ActionListSeparator } from './ActionListSeparator';
5
+ export { default as ActionListLinkItem } from './ActionListLinkItem';
@@ -0,0 +1,26 @@
1
+ import React from 'react';
2
+ type ActionMenuTriggerProps = Pick<React.HTMLAttributes<HTMLButtonElement>, 'onClick' | 'onKeyDown' | 'aria-expanded' | 'aria-haspopup'>;
3
+ type ActionMenuTriggerFunction = (props: ActionMenuTriggerProps, open: boolean) => React.ReactElement;
4
+ declare const ActionMenu: React.ForwardRefExoticComponent<{
5
+ children: React.ReactElement;
6
+ trigger: React.ReactElement | ActionMenuTriggerFunction;
7
+ } & Pick<{
8
+ target: HTMLElement | React.RefObject<HTMLElement> | React.MutableRefObject<HTMLElement>;
9
+ placement?: "auto" | import("@floating-ui/utils").Placement | "auto-start" | "auto-end" | undefined;
10
+ open?: boolean | undefined;
11
+ onOpenChange?: ((open: boolean) => void) | undefined;
12
+ onPlacementChange?: ((placement: import("@floating-ui/utils").Placement) => void) | undefined;
13
+ onShiftChange?: ((coords: import("@floating-ui/utils").Coords) => void) | undefined;
14
+ offset?: number | undefined;
15
+ focusTrap?: boolean | undefined;
16
+ focusTrapOptions?: {
17
+ disabled?: boolean | undefined;
18
+ initialFocusElement?: import("../../types").ElementOrRef<HTMLElement> | undefined;
19
+ returnFocus?: boolean | undefined;
20
+ returnFocusElement?: import("../../types").ElementOrRef<HTMLElement> | undefined;
21
+ } | undefined;
22
+ children?: React.ReactNode;
23
+ } & React.HTMLAttributes<HTMLElement> & {
24
+ as?: React.ElementType<any, keyof React.JSX.IntrinsicElements> | undefined;
25
+ } & React.RefAttributes<HTMLElement>, "placement"> & React.HTMLAttributes<HTMLElement> & React.RefAttributes<HTMLElement>>;
26
+ export default ActionMenu;
@@ -0,0 +1 @@
1
+ export { default as ActionMenu } from './ActionMenu';
@@ -1,4 +1,4 @@
1
- import { type Placement } from '@floating-ui/dom';
1
+ import { type Placement, type Coords } from '@floating-ui/dom';
2
2
  import React from 'react';
3
3
  import useFocusTrap from '../../utils/useFocusTrap';
4
4
  declare const AnchoredOverlay: React.ForwardRefExoticComponent<{
@@ -12,6 +12,8 @@ declare const AnchoredOverlay: React.ForwardRefExoticComponent<{
12
12
  onOpenChange?: ((open: boolean) => void) | undefined;
13
13
  /** A callback function that is called when the placement of the overlay changes. */
14
14
  onPlacementChange?: ((placement: Placement) => void) | undefined;
15
+ /** A callback function that is called when the shift of the overlay changes. */
16
+ onShiftChange?: ((coords: Coords) => void) | undefined;
15
17
  /** An optional offset number to position the anchor element from its anchored target. */
16
18
  offset?: number | undefined;
17
19
  /** When set, traps focus within the AnchoredOverlay. */
@@ -0,0 +1,13 @@
1
+ import React from 'react';
2
+ interface EmptyStateProps extends React.HTMLAttributes<HTMLDivElement> {
3
+ /** Heading text to be displayed for the empty state. */
4
+ heading: React.ReactNode;
5
+ /** Description for the empty state. */
6
+ description: React.ReactNode;
7
+ /** Slot for primary actions. */
8
+ primaryActions?: React.ReactNode;
9
+ /** Slot for secondary actions. */
10
+ secondaryActions?: React.ReactNode;
11
+ }
12
+ declare const EmptyState: React.ForwardRefExoticComponent<EmptyStateProps & React.RefAttributes<HTMLDivElement>>;
13
+ export default EmptyState;
@@ -0,0 +1,9 @@
1
+ import React from 'react';
2
+ interface FieldGroupProps extends React.HTMLAttributes<HTMLDivElement> {
3
+ label: React.ReactNode;
4
+ children: React.ReactNode;
5
+ description?: React.ReactNode;
6
+ error?: React.ReactNode;
7
+ }
8
+ declare const FieldGroup: React.ForwardRefExoticComponent<FieldGroupProps & React.RefAttributes<HTMLDivElement>>;
9
+ export default FieldGroup;
@@ -4,6 +4,8 @@ import type { ListboxValue } from './ListboxOption';
4
4
  import type { PolymorphicProps, PolymorphicComponent } from '../../utils/polymorphicComponent';
5
5
  interface BaseListboxProps extends PolymorphicProps<Omit<React.HTMLAttributes<HTMLElement>, 'onSelect' | 'defaultValue'>> {
6
6
  navigation?: 'cycle' | 'bound';
7
+ focusStrategy?: 'lastSelected' | 'first' | 'last';
8
+ focusDisabledOptions?: boolean;
7
9
  onActiveChange?: (option: ListboxOption) => void;
8
10
  disabled?: boolean;
9
11
  }
@@ -0,0 +1,8 @@
1
+ import React, { ReactNode } from 'react';
2
+ export interface PageHeaderProps extends React.HTMLAttributes<HTMLDivElement> {
3
+ heading: ReactNode;
4
+ overline?: ReactNode;
5
+ description?: ReactNode;
6
+ }
7
+ declare const PageHeader: React.ForwardRefExoticComponent<PageHeaderProps & React.RefAttributes<HTMLDivElement>>;
8
+ export default PageHeader;
@@ -0,0 +1,7 @@
1
+ import React, { ReactNode } from 'react';
2
+ export interface SectionHeaderProps extends React.HTMLAttributes<HTMLDivElement> {
3
+ heading: ReactNode;
4
+ description?: ReactNode;
5
+ }
6
+ declare const SectionHeader: React.ForwardRefExoticComponent<SectionHeaderProps & React.RefAttributes<HTMLDivElement>>;
7
+ export default SectionHeader;
@@ -14,7 +14,7 @@ export declare const Step: {
14
14
  (props: StepProps): React.JSX.Element;
15
15
  displayName: string;
16
16
  };
17
- interface StepperProps {
17
+ interface StepperProps extends React.OlHTMLAttributes<HTMLOListElement> {
18
18
  children: React.ReactNode;
19
19
  className?: string;
20
20
  }
package/lib/index.d.ts CHANGED
@@ -62,6 +62,12 @@ export { default as CopyButton } from './components/CopyButton';
62
62
  export { default as Drawer } from './components/Drawer';
63
63
  export { default as BottomSheet } from './components/BottomSheet';
64
64
  export { default as AnchoredOverlay } from './components/AnchoredOverlay';
65
+ export { default as FieldGroup } from './components/FieldGroup';
66
+ export { default as PageHeader } from './components/PageHeader';
67
+ export { default as SectionHeader } from './components/SectionHeader';
68
+ export { default as EmptyState } from './components/EmptyState';
69
+ export { ActionList, ActionListItem, ActionListGroup, ActionListSeparator, ActionListLinkItem } from './components/ActionList';
70
+ export { ActionMenu } from './components/ActionMenu';
65
71
  /**
66
72
  * Helpers / Utils
67
73
  */
package/lib/index.js CHANGED
@@ -859,7 +859,7 @@ function ClickOutsideListener(_a, ref) {
859
859
  ClickOutsideListener.displayName = 'ClickOutsideListener';
860
860
  var ClickOutsideListener$1 = React__default["default"].forwardRef(ClickOutsideListener);
861
861
 
862
- var _a$2 = tslib.__read([38, 40, 9, 13, 32, 27], 6), up = _a$2[0], down$1 = _a$2[1], tab = _a$2[2], enter = _a$2[3], space = _a$2[4], esc = _a$2[5];
862
+ var _a$3 = tslib.__read([38, 40, 9, 13, 32, 27], 6), up = _a$3[0], down$1 = _a$3[1], tab = _a$3[2], enter = _a$3[3], space = _a$3[4], esc = _a$3[5];
863
863
  var OptionsMenuList = function (_a) {
864
864
  var children = _a.children, menuRef = _a.menuRef, show = _a.show, className = _a.className, _b = _a.onClose, onClose = _b === void 0 ? function () { } : _b, // eslint-disable-line @typescript-eslint/no-empty-function
865
865
  _c = _a.onSelect, // eslint-disable-line @typescript-eslint/no-empty-function
@@ -970,7 +970,7 @@ var OptionsMenuList = function (_a) {
970
970
  } }), items)));
971
971
  };
972
972
 
973
- var _a$1 = tslib.__read([40], 1), down = _a$1[0];
973
+ var _a$2 = tslib.__read([40], 1), down = _a$2[0];
974
974
  var OptionsMenu = function (_a) {
975
975
  var children = _a.children, className = _a.className; _a.closeOnSelect; var menuRef = _a.menuRef, trigger = _a.trigger, _b = _a.align, align = _b === void 0 ? 'right' : _b, _c = _a.onClose, onClose = _c === void 0 ? function () { } : _c, // eslint-disable-line @typescript-eslint/no-empty-function
976
976
  _d = _a.onSelect, // eslint-disable-line @typescript-eslint/no-empty-function
@@ -1782,10 +1782,11 @@ function getAutoAlignment(placement) {
1782
1782
  }
1783
1783
  }
1784
1784
  var AnchoredOverlay = React.forwardRef(function (_a, refProp) {
1785
- var as = _a.as, _b = _a.placement, initialPlacement = _b === void 0 ? 'auto' : _b, target = _a.target, children = _a.children, style = _a.style, _c = _a.open, open = _c === void 0 ? false : _c, offset = _a.offset, focusTrap = _a.focusTrap, focusTrapOptions = _a.focusTrapOptions, onOpenChange = _a.onOpenChange, onPlacementChange = _a.onPlacementChange, props = tslib.__rest(_a, ["as", "placement", "target", "children", "style", "open", "offset", "focusTrap", "focusTrapOptions", "onOpenChange", "onPlacementChange"]);
1785
+ var _b, _c;
1786
+ var as = _a.as, _d = _a.placement, initialPlacement = _d === void 0 ? 'auto' : _d, target = _a.target, children = _a.children, style = _a.style, _e = _a.open, open = _e === void 0 ? false : _e, offset = _a.offset, focusTrap = _a.focusTrap, focusTrapOptions = _a.focusTrapOptions, onOpenChange = _a.onOpenChange, onPlacementChange = _a.onPlacementChange, onShiftChange = _a.onShiftChange, props = tslib.__rest(_a, ["as", "placement", "target", "children", "style", "open", "offset", "focusTrap", "focusTrapOptions", "onOpenChange", "onPlacementChange", "onShiftChange"]);
1786
1787
  var ref = useSharedRef(refProp);
1787
1788
  var Component = as || 'div';
1788
- var _d = reactDom$1.useFloating({
1789
+ var _f = reactDom$1.useFloating({
1789
1790
  open: open,
1790
1791
  // default to initial placement on top when placement is auto
1791
1792
  // @ts-expect-error auto placement is not a valid placement for floating-ui
@@ -1796,14 +1797,15 @@ var AnchoredOverlay = React.forwardRef(function (_a, refProp) {
1796
1797
  ? reactDom$1.autoPlacement({
1797
1798
  alignment: getAutoAlignment(initialPlacement)
1798
1799
  })
1799
- : reactDom$1.flip()
1800
+ : reactDom$1.flip(),
1801
+ reactDom$1.shift({ crossAxis: false })
1800
1802
  ].filter(Boolean),
1801
1803
  elements: {
1802
1804
  reference: resolveElement(target),
1803
1805
  floating: ref.current
1804
1806
  },
1805
1807
  whileElementsMounted: dom.autoUpdate
1806
- }), floatingStyles = _d.floatingStyles, placement = _d.placement;
1808
+ }), floatingStyles = _f.floatingStyles, placement = _f.placement, middlewareData = _f.middlewareData;
1807
1809
  useEscapeKey({
1808
1810
  active: open,
1809
1811
  capture: true,
@@ -1823,7 +1825,16 @@ var AnchoredOverlay = React.forwardRef(function (_a, refProp) {
1823
1825
  if (typeof onPlacementChange === 'function') {
1824
1826
  onPlacementChange(placement);
1825
1827
  }
1826
- }, [placement]);
1828
+ }, [onPlacementChange, placement]);
1829
+ React.useEffect(function () {
1830
+ var _a, _b;
1831
+ if (typeof onShiftChange === 'function') {
1832
+ onShiftChange({
1833
+ x: ((_a = middlewareData.shift) === null || _a === void 0 ? void 0 : _a.x) || 0,
1834
+ y: ((_b = middlewareData.shift) === null || _b === void 0 ? void 0 : _b.y) || 0
1835
+ });
1836
+ }
1837
+ }, [onShiftChange, (_b = middlewareData.shift) === null || _b === void 0 ? void 0 : _b.x, (_c = middlewareData.shift) === null || _c === void 0 ? void 0 : _c.y]);
1827
1838
  return (React__default["default"].createElement(Component, tslib.__assign({ ref: ref }, props, { style: tslib.__assign(tslib.__assign({}, floatingStyles), style) }), children));
1828
1839
  });
1829
1840
  AnchoredOverlay.displayName = 'AnchoredOverlay';
@@ -1885,6 +1896,7 @@ function Tooltip(_a) {
1885
1896
  var _h = tslib.__read(React.useState(!!showProp || defaultShow), 2), showTooltip = _h[0], setShowTooltip = _h[1];
1886
1897
  var _j = tslib.__read(React.useState(null), 2), tooltipElement = _j[0], setTooltipElement = _j[1];
1887
1898
  var _k = tslib.__read(React.useState(initialPlacement), 2), placement = _k[0], setPlacement = _k[1];
1899
+ var _l = tslib.__read(React.useState(), 2), arrowShift = _l[0], setArrowShift = _l[1];
1888
1900
  var hasAriaAssociation = association !== 'none';
1889
1901
  // Show the tooltip
1890
1902
  var show = React.useCallback(function () { return tslib.__awaiter(_this, void 0, void 0, function () {
@@ -1963,13 +1975,23 @@ function Tooltip(_a) {
1963
1975
  }
1964
1976
  };
1965
1977
  }, [target, id, association]);
1978
+ var updateArrowShiftPosition = React.useCallback(function (_a) {
1979
+ var x = _a.x;
1980
+ if (variant === 'big' || x === 0) {
1981
+ setArrowShift(null);
1982
+ return;
1983
+ }
1984
+ // The tooltip shift position is inversely related to the direction
1985
+ // that the arrow needs to shift
1986
+ setArrowShift(x * -1);
1987
+ }, [variant]);
1966
1988
  return (React__default["default"].createElement(React__default["default"].Fragment, null, (showTooltip || hideElementOnHidden) && isBrowser()
1967
- ? reactDom.createPortal(React__default["default"].createElement(AnchoredOverlay, tslib.__assign({ id: id, target: target, placement: initialPlacement, onPlacementChange: setPlacement, open: showTooltip && typeof showProp !== 'boolean', onOpenChange: setShowTooltip, className: classNames__default["default"]('Tooltip', "Tooltip--".concat(placement), className, {
1989
+ ? reactDom.createPortal(React__default["default"].createElement(AnchoredOverlay, tslib.__assign({ id: id, target: target, placement: initialPlacement, onPlacementChange: setPlacement, open: showTooltip && typeof showProp !== 'boolean', onOpenChange: setShowTooltip, onShiftChange: updateArrowShiftPosition, className: classNames__default["default"]('Tooltip', "Tooltip--".concat(placement), className, {
1968
1990
  TooltipInfo: variant === 'info',
1969
1991
  'Tooltip--hidden': !showTooltip && hideElementOnHidden,
1970
1992
  'Tooltip--big': variant === 'big'
1971
1993
  }), ref: setTooltipElement, role: "tooltip", offset: 8 }, props),
1972
- variant !== 'big' && React__default["default"].createElement("div", { className: "TooltipArrow" }),
1994
+ variant !== 'big' && React__default["default"].createElement("div", { className: "TooltipArrow", style: arrowShift ? { transform: "translateX(".concat(arrowShift, "px)") } : undefined }),
1973
1995
  children), (portal && 'current' in portal ? portal.current : portal) ||
1974
1996
  (
1975
1997
  // eslint-disable-next-line ssr-friendly/no-dom-globals-in-react-fc
@@ -3630,10 +3652,10 @@ var optionMatchesValue = function (option, value) {
3630
3652
  option.value === value;
3631
3653
  };
3632
3654
  var Listbox = React.forwardRef(function (_a, ref) {
3633
- var _b = _a.as, Component = _b === void 0 ? 'ul' : _b, children = _a.children, defaultValue = _a.defaultValue, value = _a.value, _c = _a.navigation, navigation = _c === void 0 ? 'bound' : _c, _d = _a.multiselect, multiselect = _d === void 0 ? false : _d, onKeyDown = _a.onKeyDown, onFocus = _a.onFocus, onSelectionChange = _a.onSelectionChange, onActiveChange = _a.onActiveChange, _e = _a.disabled, disabled = _e === void 0 ? false : _e, props = tslib.__rest(_a, ["as", "children", "defaultValue", "value", "navigation", "multiselect", "onKeyDown", "onFocus", "onSelectionChange", "onActiveChange", "disabled"]);
3634
- var _f = tslib.__read(React.useState([]), 2), options = _f[0], setOptions = _f[1];
3635
- var _g = tslib.__read(React.useState(null), 2), activeOption = _g[0], setActiveOption = _g[1];
3636
- var _h = tslib.__read(React.useState([]), 2), selectedOptions = _h[0], setSelectedOptions = _h[1];
3655
+ var _b = _a.as, Component = _b === void 0 ? 'ul' : _b, children = _a.children, defaultValue = _a.defaultValue, value = _a.value, _c = _a.navigation, navigation = _c === void 0 ? 'bound' : _c, _d = _a.focusStrategy, focusStrategy = _d === void 0 ? 'lastSelected' : _d, _e = _a.focusDisabledOptions, focusDisabledOptions = _e === void 0 ? false : _e, _f = _a.multiselect, multiselect = _f === void 0 ? false : _f, onKeyDown = _a.onKeyDown, onFocus = _a.onFocus, onSelectionChange = _a.onSelectionChange, onActiveChange = _a.onActiveChange, _g = _a.disabled, disabled = _g === void 0 ? false : _g, props = tslib.__rest(_a, ["as", "children", "defaultValue", "value", "navigation", "focusStrategy", "focusDisabledOptions", "multiselect", "onKeyDown", "onFocus", "onSelectionChange", "onActiveChange", "disabled"]);
3656
+ var _h = tslib.__read(React.useState([]), 2), options = _h[0], setOptions = _h[1];
3657
+ var _j = tslib.__read(React.useState(null), 2), activeOption = _j[0], setActiveOption = _j[1];
3658
+ var _k = tslib.__read(React.useState([]), 2), selectedOptions = _k[0], setSelectedOptions = _k[1];
3637
3659
  var listboxRef = useSharedRef(ref);
3638
3660
  var isControlled = typeof value !== 'undefined';
3639
3661
  React.useLayoutEffect(function () {
@@ -3715,7 +3737,9 @@ var Listbox = React.forwardRef(function (_a, ref) {
3715
3737
  return;
3716
3738
  }
3717
3739
  event.preventDefault();
3718
- var enabledOptions = options.filter(function (option) { return !isDisabledOption(option); });
3740
+ var enabledOptions = !focusDisabledOptions
3741
+ ? options.filter(function (option) { return !isDisabledOption(option); })
3742
+ : options;
3719
3743
  // istanbul ignore next
3720
3744
  if (!enabledOptions.length) {
3721
3745
  return;
@@ -3760,9 +3784,29 @@ var Listbox = React.forwardRef(function (_a, ref) {
3760
3784
  }
3761
3785
  }, [options, activeOption, navigation, handleSelect]);
3762
3786
  var handleFocus = React.useCallback(function (event) {
3787
+ if (focusStrategy === 'first') {
3788
+ var firstOption = !focusDisabledOptions
3789
+ ? options.find(function (option) { return !isDisabledOption(option); })
3790
+ : options[0];
3791
+ if (firstOption) {
3792
+ setActiveOption(firstOption);
3793
+ }
3794
+ return;
3795
+ }
3796
+ if (focusStrategy === 'last') {
3797
+ var lastOption = !focusDisabledOptions
3798
+ ? tslib.__spreadArray([], tslib.__read(options), false).reverse().find(function (option) { return !isDisabledOption(option); })
3799
+ : options[options.length - 1];
3800
+ if (lastOption) {
3801
+ setActiveOption(lastOption);
3802
+ }
3803
+ return;
3804
+ }
3763
3805
  if (!activeOption ||
3764
3806
  !options.some(function (option) { return option.element === activeOption.element; })) {
3765
- var firstOption = options.find(function (option) { return !isDisabledOption(option); });
3807
+ var firstOption = !focusDisabledOptions
3808
+ ? options.find(function (option) { return !isDisabledOption(option); })
3809
+ : options[0];
3766
3810
  // istanbul ignore else
3767
3811
  if (firstOption) {
3768
3812
  setActiveOption(firstOption);
@@ -3774,7 +3818,7 @@ var Listbox = React.forwardRef(function (_a, ref) {
3774
3818
  setActiveOption(selectedOptions[selectedOptions.length - 1]);
3775
3819
  }
3776
3820
  onFocus === null || onFocus === void 0 ? void 0 : onFocus(event);
3777
- }, [options, activeOption, selectedOptions]);
3821
+ }, [options, activeOption, selectedOptions, focusStrategy]);
3778
3822
  return (React__default["default"].createElement(Component, tslib.__assign({ role: "listbox", ref: listboxRef, tabIndex: "0", onKeyDown: handleKeyDown, onFocus: handleFocus, "aria-multiselectable": multiselect ? true : undefined, "aria-activedescendant": activeOption ? getOptionId(activeOption) : undefined }, props),
3779
3823
  React__default["default"].createElement(ListboxProvider, { options: options, active: activeOption, multiselect: multiselect, selected: selectedOptions, setOptions: setOptions, onSelect: handleSelect }, children)));
3780
3824
  });
@@ -4083,20 +4127,20 @@ var ComboboxPill = React.forwardRef(function (_a, ref) {
4083
4127
  ComboboxPill.displayName = 'ComboboxPill';
4084
4128
 
4085
4129
  // Event Keys
4086
- var _a = tslib.__read([
4130
+ var _a$1 = tslib.__read([
4087
4131
  'Enter',
4088
4132
  'Escape',
4089
4133
  'Home',
4090
4134
  'End',
4091
4135
  'Backspace',
4092
4136
  'Delete'
4093
- ], 6), Enter = _a[0], Escape = _a[1], Home = _a[2], End = _a[3], Backspace = _a[4], Delete = _a[5];
4137
+ ], 6), Enter = _a$1[0], Escape = _a$1[1], Home = _a$1[2], End = _a$1[3], Backspace = _a$1[4], Delete = _a$1[5];
4094
4138
  var _b = tslib.__read([
4095
4139
  'ArrowDown',
4096
4140
  'ArrowUp',
4097
4141
  'ArrowLeft',
4098
4142
  'ArrowRight'
4099
- ], 4), ArrowDown = _b[0], ArrowUp = _b[1], ArrowLeft = _b[2], ArrowRight = _b[3];
4143
+ ], 4), ArrowDown$1 = _b[0], ArrowUp$1 = _b[1], ArrowLeft = _b[2], ArrowRight = _b[3];
4100
4144
  var PillKeys = [Backspace, Delete, ArrowLeft, ArrowRight];
4101
4145
  var defaultAutoCompleteMatches = function (inputValue, value) {
4102
4146
  // istanbul ignore if
@@ -4268,7 +4312,7 @@ var Combobox = React.forwardRef(function (_a, ref) {
4268
4312
  var escKeypress = event.key === Escape;
4269
4313
  var deleteKeypress = event.key === Delete;
4270
4314
  var backspaceKeypress = event.key === Backspace;
4271
- var listboxArrowKeypress = [ArrowUp, ArrowDown].includes(event.key);
4315
+ var listboxArrowKeypress = [ArrowUp$1, ArrowDown$1].includes(event.key);
4272
4316
  if (
4273
4317
  // prevent the page from scrolling and allow start/end option activation
4274
4318
  [Home, End].includes(event.key) ||
@@ -4768,6 +4812,343 @@ var BottomSheet = React.forwardRef(function (_a, ref) {
4768
4812
  });
4769
4813
  BottomSheet.displayName = 'BottomSheet';
4770
4814
 
4815
+ var FieldGroup = React.forwardRef(function (_a, ref) {
4816
+ var label = _a.label, description = _a.description, error = _a.error, children = _a.children, className = _a.className, propId = _a.id, props = tslib.__rest(_a, ["label", "description", "error", "children", "className", "id"]);
4817
+ var _b = tslib.__read(propId ? [propId] : nextId.useId(1, 'fieldgroup'), 1), id = _b[0];
4818
+ var descriptionId = "".concat(id, "-description");
4819
+ var errorId = "".concat(id, "-error");
4820
+ var ariaDescribedbyId = '';
4821
+ if (description) {
4822
+ ariaDescribedbyId = addIdRef(ariaDescribedbyId, descriptionId);
4823
+ }
4824
+ if (error) {
4825
+ ariaDescribedbyId = addIdRef(ariaDescribedbyId, errorId);
4826
+ }
4827
+ return (React__default["default"].createElement("div", tslib.__assign({ role: "group", className: classNames__default["default"]('FieldGroup', className), ref: ref }, props, { "aria-labelledby": "".concat(id, "-label"), "aria-describedby": ariaDescribedbyId || undefined }),
4828
+ React__default["default"].createElement("label", { id: "".concat(id, "-label"), className: "Field__label" }, label),
4829
+ description && (React__default["default"].createElement("div", { id: descriptionId, className: "Field__description" }, description)),
4830
+ error && (React__default["default"].createElement("div", { className: "Field__error", id: errorId },
4831
+ React__default["default"].createElement(Icon, { type: "caution" }),
4832
+ error)),
4833
+ children));
4834
+ });
4835
+ FieldGroup.displayName = 'FieldGroup';
4836
+
4837
+ var SectionHeader = React.forwardRef(function (_a, ref) {
4838
+ var className = _a.className, heading = _a.heading, description = _a.description, children = _a.children, otherProps = tslib.__rest(_a, ["className", "heading", "description", "children"]);
4839
+ if (typeof heading === 'string') {
4840
+ heading = React__default["default"].createElement("h2", null, heading);
4841
+ }
4842
+ return (React__default["default"].createElement("div", tslib.__assign({ className: classNames__default["default"]('SectionHeader', className), ref: ref }, otherProps),
4843
+ React__default["default"].createElement("div", { className: "SectionHeader__content" },
4844
+ heading,
4845
+ description && (React__default["default"].createElement("p", { className: "SectionHeader__description" }, description)),
4846
+ children && React__default["default"].createElement("div", { className: "SectionHeader__actions" }, children))));
4847
+ });
4848
+ SectionHeader.displayName = 'SectionHeader';
4849
+
4850
+ var PageHeader = React.forwardRef(function (_a, ref) {
4851
+ var className = _a.className, heading = _a.heading, overline = _a.overline, description = _a.description, children = _a.children, otherProps = tslib.__rest(_a, ["className", "heading", "overline", "description", "children"]);
4852
+ if (typeof heading === 'string') {
4853
+ heading = React__default["default"].createElement("h1", null, heading);
4854
+ }
4855
+ return (React__default["default"].createElement("div", tslib.__assign({ className: classNames__default["default"]('PageHeader', className), ref: ref }, otherProps),
4856
+ overline && React__default["default"].createElement("div", { className: "PageHeader__overline" }, overline),
4857
+ React__default["default"].createElement(SectionHeader, { heading: heading, description: description }, children)));
4858
+ });
4859
+ PageHeader.displayName = 'PageHeader';
4860
+
4861
+ var EmptyState = React.forwardRef(function (_a, ref) {
4862
+ var className = _a.className, heading = _a.heading, description = _a.description, primaryActions = _a.primaryActions, secondaryActions = _a.secondaryActions, props = tslib.__rest(_a, ["className", "heading", "description", "primaryActions", "secondaryActions"]);
4863
+ if (typeof heading === 'string') {
4864
+ heading = React__default["default"].createElement("h2", null, heading);
4865
+ }
4866
+ return (React__default["default"].createElement("div", tslib.__assign({ ref: ref, className: classNames__default["default"]('EmptyState', className) }, props),
4867
+ heading,
4868
+ React__default["default"].createElement("p", null, description),
4869
+ primaryActions && (React__default["default"].createElement("div", { className: "EmptyState__primary" }, primaryActions)),
4870
+ secondaryActions && (React__default["default"].createElement("div", { className: "EmptyState__secondary" }, secondaryActions))));
4871
+ });
4872
+ EmptyState.displayName = 'EmptyState';
4873
+
4874
+ /* istanbul ignore next */
4875
+ var ActionListContext = React.createContext({
4876
+ role: null,
4877
+ selectionType: null,
4878
+ onAction: function () { return null; }
4879
+ });
4880
+ function ActionListProvider(_a) {
4881
+ var role = _a.role, selectionType = _a.selectionType, onAction = _a.onAction, children = _a.children;
4882
+ var Provider = ActionListContext.Provider;
4883
+ var contextValue = React.useMemo(function () { return ({
4884
+ role: role,
4885
+ selectionType: selectionType,
4886
+ onAction: onAction
4887
+ }); }, [role, selectionType, onAction]);
4888
+ return React__default["default"].createElement(Provider, { value: contextValue }, children);
4889
+ }
4890
+ function useActionListContext() {
4891
+ return React.useContext(ActionListContext);
4892
+ }
4893
+
4894
+ var ActionList = React.forwardRef(function (_a, ref) {
4895
+ var _b = _a.selectionType, selectionType = _b === void 0 ? null : _b, onAction = _a.onAction, className = _a.className, children = _a.children, props = tslib.__rest(_a, ["selectionType", "onAction", "className", "children"]);
4896
+ var actionListContext = useActionListContext();
4897
+ var activeElement = React.useRef();
4898
+ var handleActiveChange = React.useCallback(function (value) {
4899
+ activeElement.current = value === null || value === void 0 ? void 0 : value.element;
4900
+ }, []);
4901
+ var handleAction = React.useCallback(function (key, event) {
4902
+ if (typeof onAction === 'function') {
4903
+ onAction(key, event);
4904
+ }
4905
+ }, [onAction]);
4906
+ var handleKeyDown = React.useCallback(function (event) {
4907
+ var _a;
4908
+ if (event.defaultPrevented) {
4909
+ return;
4910
+ }
4911
+ // Since focus is managed in the action list using `aria-activedescendant`
4912
+ // we want to simulate a keypress on the current active list item
4913
+ if (event.key === 'Enter' || event.key === ' ') {
4914
+ (_a = activeElement.current) === null || _a === void 0 ? void 0 : _a.click();
4915
+ }
4916
+ }, []);
4917
+ return (
4918
+ // Note: we should be able to use listbox without passing a prop
4919
+ // value for "multiselect"
4920
+ // see: https://github.com/dequelabs/cauldron/issues/1890
4921
+ // @ts-expect-error this should be allowed
4922
+ React__default["default"].createElement(Listbox, tslib.__assign({ ref: ref,
4923
+ /* Listbox comes with an explicit role of "listbox", but we want to either
4924
+ * use the role from props, or default to the intrinsic role */
4925
+ // eslint-disable-next-line jsx-a11y/aria-role
4926
+ role: undefined, "aria-multiselectable": actionListContext.role === 'listbox' ? undefined : null, className: classNames__default["default"]('ActionList', className) }, props, { onKeyDown: handleKeyDown, onActiveChange: handleActiveChange, navigation: "bound" }),
4927
+ React__default["default"].createElement(ActionListProvider, { role: props.role || 'list', onAction: handleAction, selectionType: selectionType }, children)));
4928
+ });
4929
+ ActionList.displayName = 'ActionList';
4930
+
4931
+ var ActionListItem = React.forwardRef(function (_a, ref) {
4932
+ var _b = _a.as, Component = _b === void 0 ? 'li' : _b, actionKey = _a.actionKey, className = _a.className, description = _a.description, selected = _a.selected, leadingIcon = _a.leadingIcon, trailingIcon = _a.trailingIcon, onAction = _a.onAction, children = _a.children, props = tslib.__rest(_a, ["as", "actionKey", "className", "description", "selected", "leadingIcon", "trailingIcon", "onAction", "children"]);
4933
+ var _c = tslib.__read(nextId.useId(1, 'action-list-item'), 1), id = _c[0];
4934
+ var actionListItemRef = useSharedRef(ref);
4935
+ var labelRef = React.useRef(null);
4936
+ var active = useListboxContext().active;
4937
+ var _d = useActionListContext(), contextRole = _d.role, onActionListAction = _d.onAction, selectionType = _d.selectionType;
4938
+ var intersectionRef = useIntersectionRef(actionListItemRef, {
4939
+ root: null,
4940
+ threshold: 1.0
4941
+ });
4942
+ var isActive = !!(active === null || active === void 0 ? void 0 : active.element) && active.element === actionListItemRef.current;
4943
+ var handleAction = React.useCallback(function (event) {
4944
+ var _a;
4945
+ if (event.defaultPrevented) {
4946
+ return;
4947
+ }
4948
+ if (selectionType === 'multiple') {
4949
+ // If action list is part of a multiselect menu, prevent the menu from closing
4950
+ event.preventDefault();
4951
+ }
4952
+ if (typeof onAction === 'function') {
4953
+ onAction(event);
4954
+ }
4955
+ // istanbul ignore else
4956
+ if (typeof onActionListAction === 'function') {
4957
+ onActionListAction(actionKey || ((_a = labelRef === null || labelRef === void 0 ? void 0 : labelRef.current) === null || _a === void 0 ? void 0 : _a.innerText.trim()) || '', event);
4958
+ }
4959
+ }, [onAction, onActionListAction, selectionType, actionKey]);
4960
+ var listItemRole = undefined;
4961
+ if (contextRole === 'menu') {
4962
+ switch (selectionType) {
4963
+ case 'single':
4964
+ listItemRole = 'menuitemradio';
4965
+ break;
4966
+ case 'multiple':
4967
+ listItemRole = 'menuitemcheckbox';
4968
+ break;
4969
+ default:
4970
+ listItemRole = 'menuitem';
4971
+ break;
4972
+ }
4973
+ }
4974
+ else if (contextRole === 'listbox') {
4975
+ listItemRole = 'option';
4976
+ }
4977
+ // Keep the currently active item on screen when navigating via up/down arrow key navigation
4978
+ // istanbul ignore next
4979
+ React.useLayoutEffect(function () {
4980
+ var intersectionEntry = intersectionRef.current;
4981
+ if (!intersectionEntry || !isActive) {
4982
+ return;
4983
+ }
4984
+ var rect = actionListItemRef.current.getBoundingClientRect();
4985
+ var isInViewport = rect.top >= 0 &&
4986
+ rect.left >= 0 &&
4987
+ rect.bottom <= window.innerHeight &&
4988
+ rect.right <= window.innerWidth;
4989
+ if (!isInViewport || !intersectionEntry.isIntersecting) {
4990
+ actionListItemRef.current.scrollIntoView({
4991
+ inline: 'nearest',
4992
+ block: rect.top <= 0 ? 'end' : 'nearest'
4993
+ });
4994
+ }
4995
+ }, [isActive]);
4996
+ var allowsSelection = !!selectionType;
4997
+ var isSelected = allowsSelection ? !!selected : undefined;
4998
+ return (React__default["default"].createElement(ListboxOption, tslib.__assign({ as: Component, ref: actionListItemRef, id: id, role: listItemRole, className: classNames__default["default"]('ActionListItem', className), activeClass: "ActionListItem--active", "aria-selected": undefined, "aria-checked": listItemRole !== 'option' ? isSelected : undefined, onClick: handleAction }, props),
4999
+ allowsSelection && (React__default["default"].createElement("span", { className: "ActionListItem__selection" },
5000
+ React__default["default"].createElement(Icon, { type: "check" }))),
5001
+ leadingIcon && (React__default["default"].createElement("span", { className: "ActionListItem__leadingIcon" },
5002
+ React__default["default"].createElement(Icon, { type: leadingIcon }))),
5003
+ React__default["default"].createElement("div", { className: "ActionListItem__label", ref: labelRef }, children),
5004
+ description && (React__default["default"].createElement("div", { className: "ActionListItem__description" }, description)),
5005
+ trailingIcon && (React__default["default"].createElement("span", { className: "ActionListItem__trailingIcon" },
5006
+ React__default["default"].createElement(Icon, { type: trailingIcon })))));
5007
+ });
5008
+ ActionListItem.displayName = 'ActionListItem';
5009
+
5010
+ var ActionListGroup = React.forwardRef(function (_a, ref) {
5011
+ var propId = _a.id, label = _a.label, children = _a.children, selectionType = _a.selectionType, onAction = _a.onAction, props = tslib.__rest(_a, ["id", "label", "children", "selectionType", "onAction"]);
5012
+ var _b = tslib.__read(propId ? [propId] : nextId.useId(1, 'actionlist-group-label'), 1), id = _b[0];
5013
+ var actionListContext = useActionListContext();
5014
+ var handleAction = React.useCallback(function (key, event) {
5015
+ // istanbul ignore else
5016
+ if (typeof onAction === 'function') {
5017
+ onAction(key, event);
5018
+ }
5019
+ // istanbul ignore else
5020
+ if (typeof actionListContext.onAction === 'function') {
5021
+ actionListContext.onAction(key, event);
5022
+ }
5023
+ }, [onAction, actionListContext.onAction]);
5024
+ var listItemRole = [
5025
+ 'menu',
5026
+ 'listbox'
5027
+ ].includes(actionListContext.role)
5028
+ ? 'none'
5029
+ : undefined;
5030
+ var groupRole = ['menu', 'listbox'].includes(actionListContext.role)
5031
+ ? 'group'
5032
+ : 'list';
5033
+ return (React__default["default"].createElement("li", tslib.__assign({ ref: ref, role: listItemRole }, props),
5034
+ React__default["default"].createElement(ListboxGroup, { id: id, role: groupRole, className: "ActionListGroup", label: label, as: "ul" },
5035
+ React__default["default"].createElement(ActionListProvider, tslib.__assign({}, actionListContext, { onAction: handleAction, selectionType: selectionType || actionListContext.selectionType }), children))));
5036
+ });
5037
+ ActionListGroup.displayName = 'ActionListGroup';
5038
+
5039
+ var ActionListSeparator = React.forwardRef(function (_a, ref) {
5040
+ var className = _a.className, props = tslib.__rest(_a, ["className"]);
5041
+ var contextRole = useActionListContext().role;
5042
+ // list and listbox roles only support listitem or option roles respectively
5043
+ // see https://github.com/w3c/aria/issues/1889
5044
+ var separatorRole = ['list', 'listbox'].includes(contextRole)
5045
+ ? 'presentation'
5046
+ : 'separator';
5047
+ return (React__default["default"].createElement("li", tslib.__assign({ ref: ref, className: classNames__default["default"]('ActionListSeparator', className), role: separatorRole, "aria-hidden": separatorRole === 'presentation' || undefined }, props)));
5048
+ });
5049
+ ActionListSeparator.displayName = 'ActionListSeparator';
5050
+
5051
+ var ActionListLinkItem = React.forwardRef(function (_a, ref) {
5052
+ var key = _a.key, className = _a.className;
5053
+ // ActionListLinkItem should not be able to be "selected"
5054
+ // eslint-disable-next-line @typescript-eslint/no-unused-vars
5055
+ _a.selected; var props = tslib.__rest(_a, ["key", "className", "selected"]);
5056
+ var contextRole = useActionListContext().role;
5057
+ var listItemRole = React.useMemo(function () {
5058
+ if (contextRole === 'menu') {
5059
+ return 'menuitem';
5060
+ }
5061
+ // istanbul ignore next
5062
+ if (contextRole && process.env.NODE_ENV !== 'production') {
5063
+ console.warn('Use of ActionListLinkItem outside of a menu is unsupported and may result in unintentional accessibility issues.');
5064
+ }
5065
+ return undefined;
5066
+ }, [contextRole]);
5067
+ return (React__default["default"].createElement(ActionListItem, tslib.__assign({ key: key, ref: ref, className: classNames__default["default"]('Link ActionListLinkItem', className), as: "a", role: listItemRole }, props)));
5068
+ });
5069
+ ActionListLinkItem.displayName = 'ActionListLinkItem';
5070
+
5071
+ var _a = tslib.__read(['ArrowDown', 'ArrowUp'], 2), ArrowDown = _a[0], ArrowUp = _a[1];
5072
+ var ActionMenu = React.forwardRef(function (_a, ref) {
5073
+ var className = _a.className, style = _a.style, trigger = _a.trigger, _b = _a.placement, placement = _b === void 0 ? 'bottom-start' : _b, actionMenuList = _a.children, props = tslib.__rest(_a, ["className", "style", "trigger", "placement", "children"]);
5074
+ var _c = tslib.__read(React.useState(false), 2), open = _c[0], setOpen = _c[1];
5075
+ var _d = tslib.__read(React.useState('first'), 2), focusStrategy = _d[0], setFocusStrategy = _d[1];
5076
+ var triggerRef = React.useRef(null);
5077
+ var actionMenuRef = useSharedRef(ref);
5078
+ var actionMenuListRef = useSharedRef(actionMenuList.props.ref);
5079
+ var _e = tslib.__read(nextId.useId(1, 'menu-trigger'), 1), triggerId = _e[0];
5080
+ var handleTriggerClick = React.useCallback(function (event) {
5081
+ // istanbul ignore else
5082
+ if (!event.defaultPrevented) {
5083
+ setOpen(!open);
5084
+ setFocusStrategy('first');
5085
+ }
5086
+ }, [open]);
5087
+ var handleTriggerKeyDown = React.useCallback(function (event) {
5088
+ // istanbul ignore else
5089
+ if ([ArrowDown, ArrowUp].includes(event.key) && !open) {
5090
+ // prevent page from scrolling if the user triggers the action menu
5091
+ // via an "ArrowDown" key press
5092
+ event.preventDefault();
5093
+ // allow other functions that may consume the event after
5094
+ // default is prevented to perform as normal
5095
+ event.defaultPrevented = false;
5096
+ setFocusStrategy(event.key === ArrowUp ? 'last' : 'first');
5097
+ setOpen(true);
5098
+ }
5099
+ }, [open]);
5100
+ var triggerProps = React.useMemo(function () {
5101
+ return {
5102
+ ref: triggerRef,
5103
+ id: triggerId,
5104
+ onClick: handleTriggerClick,
5105
+ onKeyDown: handleTriggerKeyDown,
5106
+ 'aria-expanded': open,
5107
+ 'aria-haspopup': 'menu'
5108
+ };
5109
+ }, [handleTriggerClick, open]);
5110
+ var actionMenuTrigger = React__default["default"].isValidElement(trigger)
5111
+ ? React__default["default"].cloneElement(trigger, triggerProps)
5112
+ : trigger(triggerProps, open);
5113
+ var handleClickOutside = React.useCallback(function (event) {
5114
+ var _a, _b;
5115
+ if (!((_a = actionMenuRef.current) === null || _a === void 0 ? void 0 : _a.contains(event.target)) &&
5116
+ !((_b = triggerRef.current) === null || _b === void 0 ? void 0 : _b.contains(event.target))) {
5117
+ setOpen(false);
5118
+ }
5119
+ }, []);
5120
+ var handleAction = React.useCallback(function (key, event) {
5121
+ // istanbul ignore else
5122
+ if (!event.defaultPrevented) {
5123
+ setOpen(false);
5124
+ }
5125
+ var onAction = actionMenuList.props.onAction;
5126
+ if (typeof onAction === 'function') {
5127
+ onAction(key, event);
5128
+ }
5129
+ }, [actionMenuList.props.onAction]);
5130
+ React.useEffect(function () {
5131
+ var _a, _b, _c;
5132
+ if (open) {
5133
+ (_a = actionMenuListRef.current) === null || _a === void 0 ? void 0 : _a.focus();
5134
+ }
5135
+ else if ((_b = actionMenuListRef.current) === null || _b === void 0 ? void 0 : _b.contains(document.activeElement)) {
5136
+ (_c = triggerRef.current) === null || _c === void 0 ? void 0 : _c.focus();
5137
+ }
5138
+ }, [open]);
5139
+ return (React__default["default"].createElement(React__default["default"].Fragment, null,
5140
+ React__default["default"].createElement(ClickOutsideListener$1, { onClickOutside: handleClickOutside, mouseEvent: open ? undefined : false, touchEvent: open ? undefined : false }, actionMenuTrigger),
5141
+ React__default["default"].createElement(AnchoredOverlay, tslib.__assign({ ref: actionMenuRef, role: "presentation", className: classNames__default["default"]('ActionMenu', className), open: open, onOpenChange: setOpen, target: triggerRef, placement: placement, offset: 4, style: tslib.__assign({ display: !open ? 'none' : undefined }, style) }, props), React__default["default"].cloneElement(actionMenuList, {
5142
+ ref: actionMenuListRef,
5143
+ role: 'menu',
5144
+ onAction: handleAction,
5145
+ 'aria-labelledby': triggerId,
5146
+ focusStrategy: focusStrategy,
5147
+ focusDisabledOptions: true
5148
+ }))));
5149
+ });
5150
+ ActionMenu.displayName = 'ActionMenu';
5151
+
4771
5152
  var LIGHT_THEME_CLASS = 'cauldron--theme-light';
4772
5153
  var DARK_THEME_CLASS = 'cauldron--theme-dark';
4773
5154
  var ThemeContext = React.createContext({
@@ -4838,6 +5219,12 @@ function useThemeContext() {
4838
5219
  exports.Accordion = Accordion;
4839
5220
  exports.AccordionContent = AccordionContent;
4840
5221
  exports.AccordionTrigger = AccordionTrigger;
5222
+ exports.ActionList = ActionList;
5223
+ exports.ActionListGroup = ActionListGroup;
5224
+ exports.ActionListItem = ActionListItem;
5225
+ exports.ActionListLinkItem = ActionListLinkItem;
5226
+ exports.ActionListSeparator = ActionListSeparator;
5227
+ exports.ActionMenu = ActionMenu;
4841
5228
  exports.Address = Address;
4842
5229
  exports.AddressCityStateZip = AddressCityStateZip;
4843
5230
  exports.AddressLine = AddressLine;
@@ -4873,7 +5260,9 @@ exports.Dialog = Dialog;
4873
5260
  exports.DialogContent = DialogContent;
4874
5261
  exports.DialogFooter = DialogFooter;
4875
5262
  exports.Drawer = Drawer;
5263
+ exports.EmptyState = EmptyState;
4876
5264
  exports.ExpandCollapsePanel = ExpandCollapsePanel;
5265
+ exports.FieldGroup = FieldGroup;
4877
5266
  exports.FieldWrap = FieldWrap;
4878
5267
  exports.Icon = Icon;
4879
5268
  exports.IconButton = IconButton;
@@ -4901,6 +5290,7 @@ exports.OptionsMenuItem = OptionsMenuItem;
4901
5290
  exports.OptionsMenuList = OptionsMenuList;
4902
5291
  exports.OptionsMenuTrigger = OptionsMenuTrigger;
4903
5292
  exports.OptionsMenuWrapper = OptionsMenuWrapper;
5293
+ exports.PageHeader = PageHeader;
4904
5294
  exports.Pagination = Pagination;
4905
5295
  exports.Panel = Panel;
4906
5296
  exports.PanelContent = PanelContent;
@@ -4912,6 +5302,7 @@ exports.RadioCardGroup = RadioCardGroup;
4912
5302
  exports.RadioGroup = RadioGroup;
4913
5303
  exports.Scrim = Scrim;
4914
5304
  exports.SearchField = SearchField;
5305
+ exports.SectionHeader = SectionHeader;
4915
5306
  exports.Select = Select;
4916
5307
  exports.SideBar = SideBar;
4917
5308
  exports.SideBarItem = SideBarItem;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@deque/cauldron-react",
3
- "version": "6.16.0",
3
+ "version": "6.17.0-canary.4145c2a7",
4
4
  "license": "MPL-2.0",
5
5
  "description": "Fully accessible react components library for Deque Cauldron",
6
6
  "homepage": "https://cauldron.dequelabs.com/",
@@ -79,22 +79,5 @@
79
79
  "peerDependencies": {
80
80
  "react": ">=16.6 <= 18",
81
81
  "react-dom": ">=16.6 <= 18"
82
- },
83
- "nyc": {
84
- "checkCoverage": true,
85
- "reporter": [
86
- "text-summary",
87
- "html"
88
- ],
89
- "statements": 85,
90
- "branches": 78,
91
- "functions": 85,
92
- "lines": 85,
93
- "exclude": [
94
- "lib",
95
- "coverage",
96
- "test/**/*.js",
97
- "test/**/*.e2e.tsx"
98
- ]
99
82
  }
100
83
  }