@deque/cauldron-react 7.2.0-canary.8b3853de → 7.2.0-canary.e67992f2
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.
|
@@ -1,19 +1,27 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import type { onActionCallbackFunction } from '../ActionList/ActionListContext';
|
|
3
|
+
import AnchoredOverlay from '../AnchoredOverlay';
|
|
3
4
|
interface ActionMenuListProps {
|
|
4
5
|
ref?: React.Ref<HTMLElement>;
|
|
5
6
|
onAction?: onActionCallbackFunction;
|
|
6
7
|
[key: string]: unknown;
|
|
7
8
|
}
|
|
8
|
-
|
|
9
|
-
|
|
9
|
+
/**
|
|
10
|
+
* Props passed to an `ActionMenu` trigger render function. The element type
|
|
11
|
+
* defaults to `HTMLButtonElement`; annotate it (e.g. `ActionMenuTriggerProps<HTMLLIElement>`)
|
|
12
|
+
* when the trigger is not a button — for example a `MenuItem`/`TopBarItem`
|
|
13
|
+
* (`<li>`) in the documented `TopBar`/`MenuBar` nesting — so the `ref` and
|
|
14
|
+
* spread handlers type against the actual element without casts.
|
|
15
|
+
*/
|
|
16
|
+
export type ActionMenuTriggerProps<E extends HTMLElement = HTMLButtonElement> = Pick<React.HTMLAttributes<E>, 'children' | 'id' | 'onClick' | 'onKeyDown' | 'aria-expanded' | 'aria-haspopup' | 'aria-controls'> & {
|
|
17
|
+
ref: React.RefObject<E | null>;
|
|
10
18
|
};
|
|
11
|
-
type ActionMenuTriggerFunction = (props: ActionMenuTriggerProps
|
|
12
|
-
|
|
19
|
+
export type ActionMenuTriggerFunction<E extends HTMLElement = HTMLButtonElement> = (props: ActionMenuTriggerProps<E>, open: boolean) => React.ReactElement;
|
|
20
|
+
type ActionMenuProps<E extends HTMLElement = HTMLButtonElement> = {
|
|
13
21
|
children: React.ReactElement<ActionMenuListProps>;
|
|
14
|
-
trigger: React.ReactElement | ActionMenuTriggerFunction
|
|
22
|
+
trigger: React.ReactElement | ActionMenuTriggerFunction<E>;
|
|
15
23
|
/** Render the action menu in a different location in the dom. */
|
|
16
|
-
portal?:
|
|
24
|
+
portal?: React.RefObject<HTMLElement | null> | HTMLElement;
|
|
17
25
|
/**
|
|
18
26
|
* Controls whether the menu should render as a child of the trigger, as opposed to
|
|
19
27
|
* rendering as a sibling. Intended for use with nested menu patterns, for example
|
|
@@ -21,25 +29,17 @@ declare const ActionMenu: React.ForwardRefExoticComponent<{
|
|
|
21
29
|
*
|
|
22
30
|
* Only supported if trigger is a function *and* portal is undefined.
|
|
23
31
|
*/
|
|
24
|
-
renderInTrigger?: boolean
|
|
25
|
-
} & Pick<
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
returnFocus?: boolean | undefined;
|
|
38
|
-
returnFocusElement?: import("../../types").ElementOrRef<HTMLElement> | undefined;
|
|
39
|
-
} | undefined;
|
|
40
|
-
portal?: HTMLElement | React.RefObject<HTMLElement | null> | undefined;
|
|
41
|
-
children?: React.ReactNode;
|
|
42
|
-
} & React.HTMLAttributes<HTMLElement> & {
|
|
43
|
-
as?: React.ElementType<any, keyof React.JSX.IntrinsicElements> | undefined;
|
|
44
|
-
} & React.RefAttributes<HTMLElement>, "placement"> & React.HTMLAttributes<HTMLElement> & React.RefAttributes<HTMLElement>>;
|
|
32
|
+
renderInTrigger?: boolean;
|
|
33
|
+
} & Pick<React.ComponentProps<typeof AnchoredOverlay>, 'placement'> & React.HTMLAttributes<HTMLElement>;
|
|
34
|
+
/**
|
|
35
|
+
* The trigger element type is parameterized (defaulting to `HTMLButtonElement`)
|
|
36
|
+
* so it can be widened for nested menu patterns where the trigger is not a
|
|
37
|
+
* button — e.g. a `MenuItem`/`TopBarItem` (`<li>`) inside a `TopBar`/`MenuBar`.
|
|
38
|
+
* This only widens the public types of the `trigger` function; the internal
|
|
39
|
+
* implementation is unaffected. See the ActionMenu docs for a usage example.
|
|
40
|
+
*/
|
|
41
|
+
type ActionMenuType = Omit<React.ForwardRefExoticComponent<ActionMenuProps>, keyof CallableFunction> & {
|
|
42
|
+
<E extends HTMLElement = HTMLButtonElement>(props: ActionMenuProps<E> & React.RefAttributes<HTMLElement>): React.ReactElement;
|
|
43
|
+
};
|
|
44
|
+
declare const ActionMenu: ActionMenuType;
|
|
45
45
|
export default ActionMenu;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import React, { type ComponentPropsWithRef } from 'react';
|
|
2
|
+
export type MetadataListProps = {
|
|
3
|
+
orientation?: 'vertical' | 'horizontal';
|
|
4
|
+
} & ComponentPropsWithRef<'dl'>;
|
|
5
|
+
export declare const MetadataList: React.ForwardRefExoticComponent<Omit<MetadataListProps, "ref"> & React.RefAttributes<HTMLDListElement>>;
|
|
6
|
+
export type MetadataListItemProps = ComponentPropsWithRef<'div'>;
|
|
7
|
+
export declare const MetadataListItem: React.ForwardRefExoticComponent<Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
8
|
+
export type MetadataListLabelProps = ComponentPropsWithRef<'dt'>;
|
|
9
|
+
export declare const MetadataListLabel: React.ForwardRefExoticComponent<Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement>, "ref"> & React.RefAttributes<HTMLElement>>;
|
|
10
|
+
export type MetadataListValueProps = ComponentPropsWithRef<'dd'>;
|
|
11
|
+
export declare const MetadataListValue: React.ForwardRefExoticComponent<Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement>, "ref"> & React.RefAttributes<HTMLElement>>;
|
package/lib/index.d.ts
CHANGED
|
@@ -44,6 +44,7 @@ export { default as TagButton } from './components/TagButton';
|
|
|
44
44
|
export { default as Table, TableBody, TableCell, TableHead, TableHeader, TableRow, TableFooter } from './components/Table';
|
|
45
45
|
export { default as Tabs, Tab, TabPanel } from './components/Tabs';
|
|
46
46
|
export { DescriptionList, DescriptionListItem, DescriptionTerm, DescriptionDetails } from './components/DescriptionList';
|
|
47
|
+
export { MetadataList, MetadataListItem, MetadataListLabel, MetadataListValue } from './components/MetadataList';
|
|
47
48
|
export { default as Stepper, Step } from './components/Stepper';
|
|
48
49
|
export { default as Panel, PanelHeader, PanelContent } from './components/Panel';
|
|
49
50
|
export { default as ProgressBar } from './components/ProgressBar';
|
|
@@ -67,7 +68,7 @@ export { default as PageHeader } from './components/PageHeader';
|
|
|
67
68
|
export { default as SectionHeader } from './components/SectionHeader';
|
|
68
69
|
export { default as EmptyState } from './components/EmptyState';
|
|
69
70
|
export { ActionList, ActionListItem, ActionListGroup, ActionListSeparator, ActionListLinkItem } from './components/ActionList';
|
|
70
|
-
export { ActionMenu } from './components/ActionMenu';
|
|
71
|
+
export { ActionMenu, type ActionMenuTriggerProps, type ActionMenuTriggerFunction } from './components/ActionMenu';
|
|
71
72
|
export { default as TreeView, type TreeViewNode } from './components/TreeView';
|
|
72
73
|
/**
|
|
73
74
|
* Helpers / Utils
|
package/lib/index.js
CHANGED
|
@@ -3366,6 +3366,27 @@ var DescriptionDetails = function (_a) {
|
|
|
3366
3366
|
};
|
|
3367
3367
|
DescriptionDetails.displayName = 'DescriptionDetails';
|
|
3368
3368
|
|
|
3369
|
+
var MetadataList = React.forwardRef(function (_a, ref) {
|
|
3370
|
+
var _b = _a.orientation, orientation = _b === void 0 ? 'horizontal' : _b, className = _a.className, children = _a.children, rest = tslib.__rest(_a, ["orientation", "className", "children"]);
|
|
3371
|
+
return (React__default["default"].createElement("dl", tslib.__assign({ className: classNames__default["default"]('MetadataList', "MetadataList--".concat(orientation), className), ref: ref }, rest), children));
|
|
3372
|
+
});
|
|
3373
|
+
MetadataList.displayName = 'MetadataList';
|
|
3374
|
+
var MetadataListItem = React.forwardRef(function (_a, ref) {
|
|
3375
|
+
var className = _a.className, children = _a.children, rest = tslib.__rest(_a, ["className", "children"]);
|
|
3376
|
+
return (React__default["default"].createElement("div", tslib.__assign({ className: classNames__default["default"]('MetadataList__item', className), ref: ref }, rest), children));
|
|
3377
|
+
});
|
|
3378
|
+
MetadataListItem.displayName = 'MetadataListItem';
|
|
3379
|
+
var MetadataListLabel = React.forwardRef(function (_a, ref) {
|
|
3380
|
+
var className = _a.className, children = _a.children, rest = tslib.__rest(_a, ["className", "children"]);
|
|
3381
|
+
return (React__default["default"].createElement("dt", tslib.__assign({ className: classNames__default["default"]('MetadataList__label', className), ref: ref }, rest), children));
|
|
3382
|
+
});
|
|
3383
|
+
MetadataListLabel.displayName = 'MetadataListLabel';
|
|
3384
|
+
var MetadataListValue = React.forwardRef(function (_a, ref) {
|
|
3385
|
+
var className = _a.className, children = _a.children, rest = tslib.__rest(_a, ["className", "children"]);
|
|
3386
|
+
return (React__default["default"].createElement("dd", tslib.__assign({ className: classNames__default["default"]('MetadataList__value', className), ref: ref }, rest), children));
|
|
3387
|
+
});
|
|
3388
|
+
MetadataListValue.displayName = 'MetadataListValue';
|
|
3389
|
+
|
|
3369
3390
|
var isTooltipProps = function (props) {
|
|
3370
3391
|
return !!props.tooltip;
|
|
3371
3392
|
};
|
|
@@ -5309,7 +5330,7 @@ var ActionListLinkItem = React.forwardRef(function (_a, ref) {
|
|
|
5309
5330
|
ActionListLinkItem.displayName = 'ActionListLinkItem';
|
|
5310
5331
|
|
|
5311
5332
|
var _a = tslib.__read(['ArrowDown', 'ArrowUp'], 2), ArrowDown = _a[0], ArrowUp = _a[1];
|
|
5312
|
-
var
|
|
5333
|
+
var ActionMenuComponent = React.forwardRef(function (_a, ref) {
|
|
5313
5334
|
var className = _a.className, style = _a.style, trigger = _a.trigger, _b = _a.placement, placement = _b === void 0 ? 'bottom-start' : _b, actionMenuList = _a.children, portal = _a.portal, _c = _a.renderInTrigger, renderInTrigger = _c === void 0 ? false : _c, props = tslib.__rest(_a, ["className", "style", "trigger", "placement", "children", "portal", "renderInTrigger"]);
|
|
5314
5335
|
var _d = tslib.__read(React.useState(false), 2), open = _d[0], setOpen = _d[1];
|
|
5315
5336
|
var _e = tslib.__read(React.useState('first'), 2), focusStrategy = _e[0], setFocusStrategy = _e[1];
|
|
@@ -5427,7 +5448,8 @@ var ActionMenu = React.forwardRef(function (_a, ref) {
|
|
|
5427
5448
|
React__default["default"].createElement(ClickOutsideListener$1, { onClickOutside: handleClickOutside, mouseEvent: open ? undefined : false, touchEvent: open ? undefined : false, target: triggerProps.ref }, actionMenuTrigger),
|
|
5428
5449
|
renderInTrigger ? null : overlay));
|
|
5429
5450
|
});
|
|
5430
|
-
|
|
5451
|
+
ActionMenuComponent.displayName = 'ActionMenu';
|
|
5452
|
+
var ActionMenu = ActionMenuComponent;
|
|
5431
5453
|
|
|
5432
5454
|
var TreeViewItem = function (_a) {
|
|
5433
5455
|
var id = _a.id, textValue = _a.textValue, children = _a.children;
|
|
@@ -5744,6 +5766,10 @@ exports.LoaderOverlay = LoaderOverlay;
|
|
|
5744
5766
|
exports.Main = Main;
|
|
5745
5767
|
exports.MenuBar = TopBar$1;
|
|
5746
5768
|
exports.MenuItem = MenuItem;
|
|
5769
|
+
exports.MetadataList = MetadataList;
|
|
5770
|
+
exports.MetadataListItem = MetadataListItem;
|
|
5771
|
+
exports.MetadataListLabel = MetadataListLabel;
|
|
5772
|
+
exports.MetadataListValue = MetadataListValue;
|
|
5747
5773
|
exports.Modal = Modal;
|
|
5748
5774
|
exports.ModalCloseButton = ModalCloseButton;
|
|
5749
5775
|
exports.ModalContent = ModalContent;
|
package/package.json
CHANGED