@deque/cauldron-react 6.27.0-canary.7d2e326a → 6.27.0-canary.90942368
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/lib/components/Dialog/DialogContext.d.ts +1 -0
- package/lib/components/Dialog/index.d.ts +1 -0
- package/lib/components/IconButton/index.d.ts +0 -12
- package/lib/components/Modal/index.d.ts +2 -1
- package/lib/components/Table/TableHeader.d.ts +2 -0
- package/lib/components/Toast/index.d.ts +7 -27
- package/lib/index.js +131 -170
- package/package.json +1 -1
|
@@ -12,6 +12,7 @@ export interface DialogProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
|
12
12
|
};
|
|
13
13
|
closeButtonText?: string;
|
|
14
14
|
portal?: React.RefObject<HTMLElement> | HTMLElement;
|
|
15
|
+
scrollable?: boolean;
|
|
15
16
|
}
|
|
16
17
|
declare const Dialog: React.ForwardRefExoticComponent<DialogProps & React.RefAttributes<HTMLDivElement>>;
|
|
17
18
|
export default Dialog;
|
|
@@ -7,18 +7,6 @@ export interface IconButtonProps extends PolymorphicProps<React.HTMLAttributes<H
|
|
|
7
7
|
label: React.ReactNode;
|
|
8
8
|
tooltipProps?: Omit<TooltipProps, 'children' | 'target'>;
|
|
9
9
|
disabled?: boolean;
|
|
10
|
-
/**
|
|
11
|
-
* @deprecated use `tooltipProps.placement` instead
|
|
12
|
-
*/
|
|
13
|
-
tooltipPlacement?: TooltipProps['placement'];
|
|
14
|
-
/**
|
|
15
|
-
* @deprecated use `tooltipProps.variant` instead
|
|
16
|
-
*/
|
|
17
|
-
tooltipVariant?: TooltipProps['variant'];
|
|
18
|
-
/**
|
|
19
|
-
* @deprecated use `tooltipProps.portal` instead
|
|
20
|
-
*/
|
|
21
|
-
tooltipPortal?: TooltipProps['portal'];
|
|
22
10
|
variant?: 'primary' | 'secondary' | 'tertiary' | 'error';
|
|
23
11
|
large?: boolean;
|
|
24
12
|
}
|
|
@@ -2,8 +2,9 @@ import React from 'react';
|
|
|
2
2
|
import { DialogProps } from '../Dialog';
|
|
3
3
|
interface ModalProps extends Omit<DialogProps, 'forceAction'> {
|
|
4
4
|
variant?: 'info';
|
|
5
|
+
scrollable?: boolean;
|
|
5
6
|
}
|
|
6
|
-
declare const Modal: ({ children, className, variant, ...other }: ModalProps) => React.JSX.Element;
|
|
7
|
+
declare const Modal: ({ children, className, variant, scrollable, ...other }: ModalProps) => React.JSX.Element;
|
|
7
8
|
declare const ModalHeader: {
|
|
8
9
|
({ children, className, ...other }: import("../Dialog").DialogHeaderProps): React.JSX.Element;
|
|
9
10
|
displayName: string;
|
|
@@ -4,7 +4,9 @@ type SortDirection = 'ascending' | 'descending' | 'none';
|
|
|
4
4
|
interface TableHeaderProps extends Omit<React.ThHTMLAttributes<HTMLTableHeaderCellElement>, 'align'> {
|
|
5
5
|
sortDirection?: SortDirection;
|
|
6
6
|
onSort?: () => void;
|
|
7
|
+
/** @deprecated No longer used. Sort state is communicated via aria-sort. */
|
|
7
8
|
sortAscendingAnnouncement?: string;
|
|
9
|
+
/** @deprecated No longer used. Sort state is communicated via aria-sort. */
|
|
8
10
|
sortDescendingAnnouncement?: string;
|
|
9
11
|
align?: ColumnAlignment;
|
|
10
12
|
variant?: 'header' | 'cell';
|
|
@@ -1,39 +1,19 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
import AriaIsolate from '../../utils/aria-isolate';
|
|
3
2
|
export interface ToastProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
4
3
|
type: 'confirmation' | 'caution' | 'error' | 'action-needed' | 'info';
|
|
5
|
-
onDismiss
|
|
4
|
+
onDismiss?: () => void;
|
|
6
5
|
dismissText?: string;
|
|
7
|
-
toastRef
|
|
6
|
+
toastRef?: React.Ref<HTMLDivElement>;
|
|
8
7
|
focus?: boolean;
|
|
9
8
|
show?: boolean;
|
|
10
9
|
dismissible?: boolean;
|
|
11
10
|
children: React.ReactNode;
|
|
12
11
|
}
|
|
13
|
-
interface ToastState {
|
|
14
|
-
animationClass: string;
|
|
15
|
-
isolator?: AriaIsolate;
|
|
16
|
-
}
|
|
17
12
|
/**
|
|
18
13
|
* The cauldron toast notification component
|
|
19
14
|
*/
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
focus: boolean;
|
|
26
|
-
show: boolean;
|
|
27
|
-
dismissible: boolean;
|
|
28
|
-
};
|
|
29
|
-
static displayName: string;
|
|
30
|
-
private el;
|
|
31
|
-
constructor(props: ToastProps);
|
|
32
|
-
componentDidMount(): void;
|
|
33
|
-
componentDidUpdate(prevProps: ToastProps): void;
|
|
34
|
-
componentWillUnmount(): void;
|
|
35
|
-
render(): React.JSX.Element;
|
|
36
|
-
dismissToast(): void;
|
|
37
|
-
showToast(): void;
|
|
38
|
-
}
|
|
39
|
-
export {};
|
|
15
|
+
declare const Toast: {
|
|
16
|
+
({ type, children, onDismiss, dismissText, toastRef, focus, show, dismissible, className, ...otherProps }: ToastProps): React.JSX.Element;
|
|
17
|
+
displayName: string;
|
|
18
|
+
};
|
|
19
|
+
export default Toast;
|
package/lib/index.js
CHANGED
|
@@ -1532,9 +1532,9 @@ var isEscape = function (event) {
|
|
|
1532
1532
|
return event.key === 'Escape' || event.key === 'Esc' || event.keyCode === 27;
|
|
1533
1533
|
};
|
|
1534
1534
|
var Dialog = React.forwardRef(function (_a, ref) {
|
|
1535
|
-
var dialogRefProp = _a.dialogRef, _b = _a.forceAction, forceAction = _b === void 0 ? false : _b, className = _a.className, children = _a.children, _c = _a.closeButtonText, closeButtonText = _c === void 0 ? 'Close' : _c, heading = _a.heading, _d = _a.show, show = _d === void 0 ? false : _d, portal = _a.portal, _e = _a.onClose, onClose =
|
|
1535
|
+
var dialogRefProp = _a.dialogRef, _b = _a.forceAction, forceAction = _b === void 0 ? false : _b, className = _a.className, children = _a.children, _c = _a.closeButtonText, closeButtonText = _c === void 0 ? 'Close' : _c, heading = _a.heading, _d = _a.show, show = _d === void 0 ? false : _d, portal = _a.portal, _e = _a.scrollable, scrollable = _e === void 0 ? false : _e, _f = _a.onClose, onClose = _f === void 0 ? function () { return null; } : _f, other = tslib.__rest(_a, ["dialogRef", "forceAction", "className", "children", "closeButtonText", "heading", "show", "portal", "scrollable", "onClose"]);
|
|
1536
1536
|
var dialogRef = useSharedRef(dialogRefProp || ref);
|
|
1537
|
-
var
|
|
1537
|
+
var _g = tslib.__read(nextId.useId(1, 'dialog-title-'), 1), headingId = _g[0];
|
|
1538
1538
|
var headingRef = React.useRef(null);
|
|
1539
1539
|
var isolatorRef = React.useRef();
|
|
1540
1540
|
var headingLevel = typeof heading === 'object' && 'level' in heading && heading.level
|
|
@@ -1605,14 +1605,16 @@ var Dialog = React.forwardRef(function (_a, ref) {
|
|
|
1605
1605
|
headingLevel: headingLevel,
|
|
1606
1606
|
onClose: handleClose,
|
|
1607
1607
|
forceAction: forceAction,
|
|
1608
|
-
closeButtonText: closeButtonText
|
|
1608
|
+
closeButtonText: closeButtonText,
|
|
1609
|
+
scrollable: scrollable
|
|
1609
1610
|
}); }, [
|
|
1610
1611
|
headingId,
|
|
1611
1612
|
headingRef,
|
|
1612
1613
|
headingLevel,
|
|
1613
1614
|
handleClose,
|
|
1614
1615
|
forceAction,
|
|
1615
|
-
closeButtonText
|
|
1616
|
+
closeButtonText,
|
|
1617
|
+
scrollable
|
|
1616
1618
|
]);
|
|
1617
1619
|
if (!show || !isBrowser()) {
|
|
1618
1620
|
return null;
|
|
@@ -1642,11 +1644,12 @@ var Dialog = React.forwardRef(function (_a, ref) {
|
|
|
1642
1644
|
Dialog.displayName = 'Dialog';
|
|
1643
1645
|
var DialogContent = function (_a) {
|
|
1644
1646
|
var children = _a.children, className = _a.className, align = _a.align, other = tslib.__rest(_a, ["children", "className", "align"]);
|
|
1647
|
+
var context = React.useContext(DialogContext);
|
|
1645
1648
|
return (React__default["default"].createElement("div", tslib.__assign({ className: classNames__default["default"]('Dialog__content', className, {
|
|
1646
1649
|
'text--align-left': align === 'left',
|
|
1647
1650
|
'text--align-center': align === 'center',
|
|
1648
1651
|
'text--align-right': align === 'right'
|
|
1649
|
-
}) }, other), children));
|
|
1652
|
+
}), tabIndex: (context === null || context === void 0 ? void 0 : context.scrollable) ? -1 : undefined }, other), children));
|
|
1650
1653
|
};
|
|
1651
1654
|
DialogContent.displayName = 'DialogContent';
|
|
1652
1655
|
var DialogFooter = function (_a) {
|
|
@@ -1700,10 +1703,11 @@ var AlertContent = DialogContent;
|
|
|
1700
1703
|
var AlertActions = DialogFooter;
|
|
1701
1704
|
|
|
1702
1705
|
var Modal = function (_a) {
|
|
1703
|
-
var children = _a.children, className = _a.className, variant = _a.variant, other = tslib.__rest(_a, ["children", "className", "variant"]);
|
|
1706
|
+
var children = _a.children, className = _a.className, variant = _a.variant, scrollable = _a.scrollable, other = tslib.__rest(_a, ["children", "className", "variant", "scrollable"]);
|
|
1704
1707
|
return (React__default["default"].createElement(Dialog, tslib.__assign({ className: classNames__default["default"]('Modal', className, {
|
|
1705
|
-
'Modal--info': variant === 'info'
|
|
1706
|
-
|
|
1708
|
+
'Modal--info': variant === 'info',
|
|
1709
|
+
'Modal--scrollable': scrollable
|
|
1710
|
+
}) }, other, { scrollable: scrollable, forceAction: false }), children));
|
|
1707
1711
|
};
|
|
1708
1712
|
var ModalHeader = DialogHeader;
|
|
1709
1713
|
var ModalHeading = DialogHeading;
|
|
@@ -2119,7 +2123,7 @@ var looksLikeLink = function (props) {
|
|
|
2119
2123
|
return 'to' in props || 'href' in props;
|
|
2120
2124
|
};
|
|
2121
2125
|
var IconButton = React.forwardRef(function (_a, ref) {
|
|
2122
|
-
var _b = _a.as, Component = _b === void 0 ? 'button' : _b, icon = _a.icon, label = _a.label,
|
|
2126
|
+
var _b = _a.as, Component = _b === void 0 ? 'button' : _b, icon = _a.icon, label = _a.label, _c = _a.tooltipProps, tooltipPropsProp = _c === void 0 ? {} : _c, className = _a.className, _d = _a.variant, variant = _d === void 0 ? 'secondary' : _d, disabled = _a.disabled, _e = _a.tabIndex, tabIndex = _e === void 0 ? 0 : _e, large = _a.large, other = tslib.__rest(_a, ["as", "icon", "label", "tooltipProps", "className", "variant", "disabled", "tabIndex", "large"]);
|
|
2123
2127
|
var internalRef = React.useRef();
|
|
2124
2128
|
React.useImperativeHandle(ref, function () { return internalRef.current; });
|
|
2125
2129
|
// Configure additional properties based on the type of the Component
|
|
@@ -2137,15 +2141,7 @@ var IconButton = React.forwardRef(function (_a, ref) {
|
|
|
2137
2141
|
accessibilityProps['aria-disabled'] = disabled;
|
|
2138
2142
|
}
|
|
2139
2143
|
}
|
|
2140
|
-
|
|
2141
|
-
if (!!tooltipPlacement || !!tooltipVariant || !!tooltipPortal) {
|
|
2142
|
-
React__default["default"].useEffect(function () {
|
|
2143
|
-
console.warn('[IconButton] The following props are deprecated: tooltipPlacement, tooltipVariant, tooltipPortal. ' +
|
|
2144
|
-
'See https://cauldron.dequelabs.com/components/IconButton for recommended replacement.');
|
|
2145
|
-
}, []);
|
|
2146
|
-
}
|
|
2147
|
-
}
|
|
2148
|
-
var tooltipProps = tslib.__assign({ placement: tooltipPlacement || 'auto', variant: tooltipVariant, portal: tooltipPortal, association: 'aria-labelledby', hideElementOnHidden: true }, tooltipPropsProp);
|
|
2144
|
+
var tooltipProps = tslib.__assign({ placement: 'auto', association: 'aria-labelledby', hideElementOnHidden: true }, tooltipPropsProp);
|
|
2149
2145
|
return (React__default["default"].createElement(React__default["default"].Fragment, null,
|
|
2150
2146
|
React__default["default"].createElement(Component, tslib.__assign({ className: classNames__default["default"](className, {
|
|
2151
2147
|
IconButton: true,
|
|
@@ -2217,126 +2213,110 @@ var tabIndexHandler = function (reset, toast) {
|
|
|
2217
2213
|
};
|
|
2218
2214
|
|
|
2219
2215
|
/**
|
|
2220
|
-
*
|
|
2216
|
+
* Hook to be used similarly to the React.Component#componentDidMount.
|
|
2217
|
+
* Executes the provided `effect` when `dependencies` change but does not
|
|
2218
|
+
* execute the effect initially (on mount) - only on update.
|
|
2219
|
+
*
|
|
2220
|
+
* @param effect {Function} function to be executed when dependencies update
|
|
2221
|
+
* @param dependencies {Any} any valid dependency argument to React.useEffect
|
|
2221
2222
|
*/
|
|
2222
|
-
var
|
|
2223
|
-
|
|
2224
|
-
function
|
|
2225
|
-
|
|
2226
|
-
|
|
2227
|
-
|
|
2228
|
-
};
|
|
2229
|
-
_this.dismissToast = _this.dismissToast.bind(_this);
|
|
2230
|
-
_this.showToast = _this.showToast.bind(_this);
|
|
2231
|
-
return _this;
|
|
2232
|
-
}
|
|
2233
|
-
Toast.prototype.componentDidMount = function () {
|
|
2234
|
-
var show = this.props.show;
|
|
2235
|
-
if (show) {
|
|
2236
|
-
// Timeout because CSS display: none/block and opacity:
|
|
2237
|
-
// 0/1 properties cannot be toggled in the same tick
|
|
2238
|
-
// see: https://codepen.io/isnerms/pen/eyQaLP
|
|
2239
|
-
setTimeout(this.showToast);
|
|
2223
|
+
var useDidUpdate = function (effect, dependencies) {
|
|
2224
|
+
var mounted = React__default["default"].useRef(false);
|
|
2225
|
+
React__default["default"].useEffect(function () {
|
|
2226
|
+
if (!mounted.current) {
|
|
2227
|
+
mounted.current = true;
|
|
2228
|
+
return;
|
|
2240
2229
|
}
|
|
2230
|
+
effect();
|
|
2231
|
+
}, dependencies);
|
|
2232
|
+
};
|
|
2233
|
+
|
|
2234
|
+
/**
|
|
2235
|
+
* The cauldron toast notification component
|
|
2236
|
+
*/
|
|
2237
|
+
var Toast = function (_a) {
|
|
2238
|
+
var type = _a.type, children = _a.children, _b = _a.onDismiss, onDismiss = _b === void 0 ? function () {
|
|
2239
|
+
// noop
|
|
2240
|
+
} : _b, _c = _a.dismissText, dismissText = _c === void 0 ? 'Dismiss' : _c, toastRef = _a.toastRef, _d = _a.focus, focus = _d === void 0 ? true : _d, _e = _a.show, show = _e === void 0 ? false : _e, _f = _a.dismissible, dismissible = _f === void 0 ? true : _f, className = _a.className, otherProps = tslib.__rest(_a, ["type", "children", "onDismiss", "dismissText", "toastRef", "focus", "show", "dismissible", "className"]);
|
|
2241
|
+
var elRef = useSharedRef(toastRef !== null && toastRef !== void 0 ? toastRef : null);
|
|
2242
|
+
var isolatorRef = React.useRef(null);
|
|
2243
|
+
var timeoutsRef = React.useRef(new Set());
|
|
2244
|
+
var _g = tslib.__read(React.useState(show ? 'FadeIn--flex' : 'is--hidden'), 2), animationClass = _g[0], setAnimationClass = _g[1];
|
|
2245
|
+
// Timeout because CSS display: none/block and opacity:
|
|
2246
|
+
// 0/1 properties cannot be toggled in the same tick
|
|
2247
|
+
// see: https://codepen.io/isnerms/pen/eyQaLP
|
|
2248
|
+
var scheduleNextTick = function (fn) {
|
|
2249
|
+
var id = setTimeout(function () {
|
|
2250
|
+
timeoutsRef.current.delete(id);
|
|
2251
|
+
fn();
|
|
2252
|
+
});
|
|
2253
|
+
timeoutsRef.current.add(id);
|
|
2241
2254
|
};
|
|
2242
|
-
|
|
2243
|
-
|
|
2244
|
-
|
|
2245
|
-
|
|
2246
|
-
|
|
2247
|
-
|
|
2248
|
-
|
|
2249
|
-
});
|
|
2250
|
-
}
|
|
2251
|
-
else {
|
|
2252
|
-
this.dismissToast();
|
|
2253
|
-
}
|
|
2255
|
+
var showToast = React.useCallback(function () {
|
|
2256
|
+
setAnimationClass('FadeIn--flex FadeIn');
|
|
2257
|
+
if (type === 'action-needed' && elRef.current) {
|
|
2258
|
+
var isolator = new AriaIsolate(elRef.current);
|
|
2259
|
+
tabIndexHandler(false, elRef.current);
|
|
2260
|
+
isolatorRef.current = isolator;
|
|
2261
|
+
isolator.activate();
|
|
2254
2262
|
}
|
|
2255
|
-
|
|
2256
|
-
|
|
2257
|
-
var isolator = this.state.isolator;
|
|
2258
|
-
isolator === null || isolator === void 0 ? void 0 : isolator.deactivate();
|
|
2259
|
-
};
|
|
2260
|
-
Toast.prototype.render = function () {
|
|
2261
|
-
var _this = this;
|
|
2262
|
-
var animationClass = this.state.animationClass;
|
|
2263
|
-
var _a = this.props, type = _a.type, children = _a.children;
|
|
2264
|
-
// prevent `onDismiss` from being passed-through to DOM
|
|
2265
|
-
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
|
2266
|
-
_a.onDismiss; var dismissText = _a.dismissText, toastRef = _a.toastRef, focus = _a.focus, show = _a.show, dismissible = _a.dismissible, className = _a.className, otherProps = tslib.__rest(_a, ["type", "children", "onDismiss", "dismissText", "toastRef", "focus", "show", "dismissible", "className"]);
|
|
2267
|
-
var scrim = type === 'action-needed' && show ? (React__default["default"].createElement("div", { className: "Scrim--light Scrim--show Scrim--fade-in" })) : null;
|
|
2268
|
-
var defaultProps = {
|
|
2269
|
-
tabIndex: -1,
|
|
2270
|
-
className: classNames__default["default"]('Toast', "Toast--".concat(typeMap[type].className), animationClass, { 'Toast--non-dismissible': !dismissible }, className)
|
|
2271
|
-
};
|
|
2272
|
-
if (!focus) {
|
|
2273
|
-
defaultProps.role = 'alert';
|
|
2263
|
+
if (elRef.current && !!focus) {
|
|
2264
|
+
elRef.current.focus();
|
|
2274
2265
|
}
|
|
2275
|
-
|
|
2276
|
-
|
|
2277
|
-
|
|
2278
|
-
setRef(toastRef, el);
|
|
2279
|
-
} }, defaultProps, otherProps),
|
|
2280
|
-
React__default["default"].createElement("div", { className: "Toast__message" },
|
|
2281
|
-
React__default["default"].createElement(Icon, { type: typeMap[type].icon }),
|
|
2282
|
-
React__default["default"].createElement("div", { className: "Toast__message-content" }, children)),
|
|
2283
|
-
type !== 'action-needed' && dismissible && (React__default["default"].createElement("button", { type: "button", className: 'Toast__dismiss', "aria-label": dismissText, onClick: this.dismissToast },
|
|
2284
|
-
React__default["default"].createElement(Icon, { type: "close" })))),
|
|
2285
|
-
scrim));
|
|
2286
|
-
};
|
|
2287
|
-
Toast.prototype.dismissToast = function () {
|
|
2288
|
-
var _this = this;
|
|
2289
|
-
if (!this.el) {
|
|
2266
|
+
}, [type, focus]);
|
|
2267
|
+
var dismissToast = React.useCallback(function () {
|
|
2268
|
+
if (!elRef.current) {
|
|
2290
2269
|
return;
|
|
2291
2270
|
}
|
|
2292
|
-
|
|
2293
|
-
|
|
2294
|
-
|
|
2295
|
-
animationClass: 'FadeIn--flex'
|
|
2296
|
-
}, function () {
|
|
2297
|
-
// Timeout because CSS display: none/block and opacity:
|
|
2298
|
-
// 0/1 properties cannot be toggled in the same tick
|
|
2299
|
-
// see: https://codepen.io/isnerms/pen/eyQaLP
|
|
2300
|
-
setTimeout(function () {
|
|
2301
|
-
if (type === 'action-needed') {
|
|
2302
|
-
tabIndexHandler(true, _this.el);
|
|
2303
|
-
isolator === null || isolator === void 0 ? void 0 : isolator.deactivate();
|
|
2304
|
-
}
|
|
2305
|
-
_this.setState({ animationClass: 'is--hidden' }, onDismiss);
|
|
2306
|
-
});
|
|
2307
|
-
});
|
|
2308
|
-
};
|
|
2309
|
-
Toast.prototype.showToast = function () {
|
|
2310
|
-
var _this = this;
|
|
2311
|
-
var _a = this.props, type = _a.type, focus = _a.focus;
|
|
2312
|
-
this.setState({
|
|
2313
|
-
animationClass: 'FadeIn--flex FadeIn'
|
|
2314
|
-
}, function () {
|
|
2271
|
+
setAnimationClass('FadeIn--flex');
|
|
2272
|
+
scheduleNextTick(function () {
|
|
2273
|
+
var _a;
|
|
2315
2274
|
if (type === 'action-needed') {
|
|
2316
|
-
|
|
2317
|
-
|
|
2318
|
-
_this.setState({ isolator: isolator });
|
|
2319
|
-
isolator.activate();
|
|
2320
|
-
}
|
|
2321
|
-
if (_this.el && !!focus) {
|
|
2322
|
-
// focus the toast
|
|
2323
|
-
_this.el.focus();
|
|
2275
|
+
tabIndexHandler(true, elRef.current);
|
|
2276
|
+
(_a = isolatorRef.current) === null || _a === void 0 ? void 0 : _a.deactivate();
|
|
2324
2277
|
}
|
|
2278
|
+
setAnimationClass('is--hidden');
|
|
2279
|
+
onDismiss();
|
|
2325
2280
|
});
|
|
2281
|
+
}, [type, onDismiss]);
|
|
2282
|
+
React.useEffect(function () {
|
|
2283
|
+
if (show) {
|
|
2284
|
+
scheduleNextTick(showToast);
|
|
2285
|
+
}
|
|
2286
|
+
return function () {
|
|
2287
|
+
var _a;
|
|
2288
|
+
timeoutsRef.current.forEach(clearTimeout);
|
|
2289
|
+
timeoutsRef.current.clear();
|
|
2290
|
+
(_a = isolatorRef.current) === null || _a === void 0 ? void 0 : _a.deactivate();
|
|
2291
|
+
};
|
|
2292
|
+
}, []);
|
|
2293
|
+
useDidUpdate(function () {
|
|
2294
|
+
if (show) {
|
|
2295
|
+
setAnimationClass('FadeIn--flex');
|
|
2296
|
+
scheduleNextTick(showToast);
|
|
2297
|
+
}
|
|
2298
|
+
else {
|
|
2299
|
+
dismissToast();
|
|
2300
|
+
}
|
|
2301
|
+
}, [show]);
|
|
2302
|
+
var scrim = type === 'action-needed' && show ? (React__default["default"].createElement("div", { className: "Scrim--light Scrim--show Scrim--fade-in" })) : null;
|
|
2303
|
+
var defaultProps = {
|
|
2304
|
+
tabIndex: -1,
|
|
2305
|
+
className: classNames__default["default"]('Toast', "Toast--".concat(typeMap[type].className), animationClass, { 'Toast--non-dismissible': !dismissible }, className)
|
|
2326
2306
|
};
|
|
2327
|
-
|
|
2328
|
-
|
|
2329
|
-
|
|
2330
|
-
|
|
2331
|
-
|
|
2332
|
-
|
|
2333
|
-
|
|
2334
|
-
|
|
2335
|
-
|
|
2336
|
-
|
|
2337
|
-
|
|
2338
|
-
|
|
2339
|
-
|
|
2307
|
+
if (!focus) {
|
|
2308
|
+
defaultProps.role = 'alert';
|
|
2309
|
+
}
|
|
2310
|
+
return (React__default["default"].createElement(React__default["default"].Fragment, null,
|
|
2311
|
+
React__default["default"].createElement("div", tslib.__assign({ ref: elRef }, defaultProps, otherProps),
|
|
2312
|
+
React__default["default"].createElement("div", { className: "Toast__message" },
|
|
2313
|
+
React__default["default"].createElement(Icon, { type: typeMap[type].icon }),
|
|
2314
|
+
React__default["default"].createElement("div", { className: "Toast__message-content" }, children)),
|
|
2315
|
+
type !== 'action-needed' && dismissible && (React__default["default"].createElement("button", { type: "button", className: "Toast__dismiss", "aria-label": dismissText, onClick: dismissToast },
|
|
2316
|
+
React__default["default"].createElement(Icon, { type: "close" })))),
|
|
2317
|
+
scrim));
|
|
2318
|
+
};
|
|
2319
|
+
Toast.displayName = 'Toast';
|
|
2340
2320
|
|
|
2341
2321
|
var Link = React.forwardRef(function (_a, ref) {
|
|
2342
2322
|
var children = _a.children, linkRef = _a.linkRef, className = _a.className, variant = _a.variant, thin = _a.thin, other = tslib.__rest(_a, ["children", "linkRef", "className", "variant", "thin"]);
|
|
@@ -3187,23 +3167,25 @@ var TableHead = React.forwardRef(function (_a, ref) {
|
|
|
3187
3167
|
TableHead.displayName = 'TableHead';
|
|
3188
3168
|
|
|
3189
3169
|
var TableHeader = React.forwardRef(function (_a, ref) {
|
|
3190
|
-
var children = _a.children, sortDirection = _a.sortDirection, onSort = _a.onSort, className = _a.className,
|
|
3170
|
+
var children = _a.children, sortDirection = _a.sortDirection, onSort = _a.onSort, className = _a.className, _sortAscendingAnnouncement = _a.sortAscendingAnnouncement, _sortDescendingAnnouncement = _a.sortDescendingAnnouncement, align = _a.align, _b = _a.variant, variant = _b === void 0 ? 'header' : _b, style = _a.style, other = tslib.__rest(_a, ["children", "sortDirection", "onSort", "className", "sortAscendingAnnouncement", "sortDescendingAnnouncement", "align", "variant", "style"]);
|
|
3191
3171
|
var tableHeaderRef = useSharedRef(ref);
|
|
3192
|
-
var
|
|
3172
|
+
var _c = useTable(), layout = _c.layout, columns = _c.columns;
|
|
3193
3173
|
var tableGridStyles = useTableGridStyles({
|
|
3194
3174
|
elementRef: tableHeaderRef,
|
|
3195
3175
|
align: align,
|
|
3196
3176
|
columns: columns,
|
|
3197
3177
|
layout: layout
|
|
3198
3178
|
});
|
|
3199
|
-
|
|
3200
|
-
|
|
3201
|
-
|
|
3202
|
-
|
|
3203
|
-
|
|
3204
|
-
|
|
3205
|
-
|
|
3206
|
-
|
|
3179
|
+
React.useEffect(function () {
|
|
3180
|
+
if (process.env.NODE_ENV === 'production')
|
|
3181
|
+
return;
|
|
3182
|
+
if (_sortAscendingAnnouncement !== undefined ||
|
|
3183
|
+
_sortDescendingAnnouncement !== undefined) {
|
|
3184
|
+
console.warn('[TableHeader] The following props are deprecated and no longer used: sortAscendingAnnouncement, sortDescendingAnnouncement. ' +
|
|
3185
|
+
'Sort state is communicated via aria-sort. ' +
|
|
3186
|
+
'See https://cauldron.dequelabs.com/components/Table for more information.');
|
|
3187
|
+
}
|
|
3188
|
+
}, [_sortAscendingAnnouncement, _sortDescendingAnnouncement]);
|
|
3207
3189
|
return (React__default["default"].createElement("th", tslib.__assign({ ref: tableHeaderRef, "aria-sort": sortDirection, className: classNames__default["default"](variant === 'cell'
|
|
3208
3190
|
? ['TableCell', 'TableHeader--cell-variant']
|
|
3209
3191
|
: 'TableHeader', className, {
|
|
@@ -3211,9 +3193,7 @@ var TableHeader = React.forwardRef(function (_a, ref) {
|
|
|
3211
3193
|
'TableHeader--sort-descending': sortDirection === 'descending'
|
|
3212
3194
|
}), style: tslib.__assign(tslib.__assign({}, tableGridStyles), style) }, other), !!onSort && !!sortDirection ? (React__default["default"].createElement("button", { onClick: onSort, className: "TableHeader__sort-button", type: "button" },
|
|
3213
3195
|
children,
|
|
3214
|
-
React__default["default"].createElement("span", { "aria-hidden": "true" }, sortDirection === 'none' ? (React__default["default"].createElement(Icon, { type: "sort-triangle" })) : sortDirection === 'ascending' ? (React__default["default"].createElement(Icon, { type: "table-sort-ascending" })) : (React__default["default"].createElement(Icon, { type: "table-sort-descending" })))
|
|
3215
|
-
React__default["default"].createElement(Offscreen, null,
|
|
3216
|
-
React__default["default"].createElement("span", { role: "status", "aria-live": "polite" }, announcement)))) : (children)));
|
|
3196
|
+
React__default["default"].createElement("span", { "aria-hidden": "true" }, sortDirection === 'none' ? (React__default["default"].createElement(Icon, { type: "sort-triangle" })) : sortDirection === 'ascending' ? (React__default["default"].createElement(Icon, { type: "table-sort-ascending" })) : (React__default["default"].createElement(Icon, { type: "table-sort-descending" }))))) : (children)));
|
|
3217
3197
|
});
|
|
3218
3198
|
TableHeader.displayName = 'TableHeader';
|
|
3219
3199
|
|
|
@@ -3235,25 +3215,6 @@ var Tab = React__default["default"].forwardRef(function (_a, ref) {
|
|
|
3235
3215
|
});
|
|
3236
3216
|
Tab.displayName = 'Tab';
|
|
3237
3217
|
|
|
3238
|
-
/**
|
|
3239
|
-
* Hook to be used similarly to the React.Component#componentDidMount.
|
|
3240
|
-
* Executes the provided `effect` when `dependencies` change but does not
|
|
3241
|
-
* execute the effect initially (on mount) - only on update.
|
|
3242
|
-
*
|
|
3243
|
-
* @param effect {Function} function to be executed when dependencies update
|
|
3244
|
-
* @param dependencies {Any} any valid dependency argument to React.useEffect
|
|
3245
|
-
*/
|
|
3246
|
-
var useDidUpdate = function (effect, dependencies) {
|
|
3247
|
-
var mounted = React__default["default"].useRef(false);
|
|
3248
|
-
React__default["default"].useEffect(function () {
|
|
3249
|
-
if (!mounted.current) {
|
|
3250
|
-
mounted.current = true;
|
|
3251
|
-
return;
|
|
3252
|
-
}
|
|
3253
|
-
effect();
|
|
3254
|
-
}, dependencies);
|
|
3255
|
-
};
|
|
3256
|
-
|
|
3257
3218
|
var Tabs = function (_a) {
|
|
3258
3219
|
var children = _a.children, thin = _a.thin, _b = _a.orientation, orientation = _b === void 0 ? 'horizontal' : _b, _c = _a.initialActiveIndex, initialActiveIndex = _c === void 0 ? 0 : _c, className = _a.className, onChange = _a.onChange, labelProp = tslib.__rest(_a, ["children", "thin", "orientation", "initialActiveIndex", "className", "onChange"]);
|
|
3259
3220
|
var _d = tslib.__read(React.useState(initialActiveIndex), 2), activeIndex = _d[0], setActiveIndex = _d[1];
|
|
@@ -4610,16 +4571,6 @@ var Combobox = React.forwardRef(function (_a, ref) {
|
|
|
4610
4571
|
: ComboboxNoResults;
|
|
4611
4572
|
}, [renderNoResults]);
|
|
4612
4573
|
var noMatchingOptions = !!inputValue && !matchingOptions.size && (React__default["default"].createElement(NoMatchingOptions, null));
|
|
4613
|
-
var comboboxListbox = (
|
|
4614
|
-
// eslint-disable-next-line
|
|
4615
|
-
// @ts-expect-error
|
|
4616
|
-
// multiselect & value props are passed to Listbox, but TS is unable to infer that
|
|
4617
|
-
// it's a correct mapping from Combobox's multiselect & value props
|
|
4618
|
-
React__default["default"].createElement(Listbox, { className: classNames__default["default"]('Combobox__listbox', {
|
|
4619
|
-
'Combobox__listbox--open': open
|
|
4620
|
-
}), role: noMatchingOptions ? 'presentation' : 'listbox', "aria-labelledby": noMatchingOptions ? undefined : "".concat(id, "-label"), id: "".concat(id, "-listbox"), value: multiselect ? selectedValues : selectedValues[0], onMouseDown: handleComboboxOptionMouseDown, onClick: handleComboboxOptionClick, onSelectionChange: handleSelectionChange, onActiveChange: handleActiveChange, ref: listboxRef, tabIndex: noMatchingOptions ? undefined : -1, "aria-activedescendant": undefined, multiselect: multiselect, disabled: disabled },
|
|
4621
|
-
comboboxOptions,
|
|
4622
|
-
noMatchingOptions));
|
|
4623
4574
|
var errorId = "".concat(id, "-error");
|
|
4624
4575
|
var descriptionId = "".concat(id, "-description");
|
|
4625
4576
|
var describedby = ariaDescribedby;
|
|
@@ -4630,6 +4581,16 @@ var Combobox = React.forwardRef(function (_a, ref) {
|
|
|
4630
4581
|
describedby = addIdRef(describedby, errorId);
|
|
4631
4582
|
}
|
|
4632
4583
|
var inputProps = tslib.__assign(tslib.__assign({}, props), { 'aria-describedby': describedby });
|
|
4584
|
+
var comboboxListbox = (
|
|
4585
|
+
// eslint-disable-next-line
|
|
4586
|
+
// @ts-expect-error
|
|
4587
|
+
// multiselect & value props are passed to Listbox, but TS is unable to infer that
|
|
4588
|
+
// it's a correct mapping from Combobox's multiselect & value props
|
|
4589
|
+
React__default["default"].createElement(Listbox, { className: classNames__default["default"]('Combobox__listbox', {
|
|
4590
|
+
'Combobox__listbox--open': open
|
|
4591
|
+
}), role: noMatchingOptions ? 'presentation' : 'listbox', "aria-labelledby": noMatchingOptions ? undefined : "".concat(id, "-label"), "aria-describedby": describedby, id: "".concat(id, "-listbox"), value: multiselect ? selectedValues : selectedValues[0], onMouseDown: handleComboboxOptionMouseDown, onClick: handleComboboxOptionClick, onSelectionChange: handleSelectionChange, onActiveChange: handleActiveChange, ref: listboxRef, tabIndex: noMatchingOptions ? undefined : -1, "aria-activedescendant": undefined, multiselect: multiselect, disabled: disabled },
|
|
4592
|
+
comboboxOptions,
|
|
4593
|
+
noMatchingOptions));
|
|
4633
4594
|
return (React__default["default"].createElement("div", { id: id, className: classNames__default["default"]('Combobox', { 'Combobox--multiselect': multiselect }, className), ref: comboboxRef },
|
|
4634
4595
|
name &&
|
|
4635
4596
|
formValues.map(function (formValue, index) { return (React__default["default"].createElement("input", { type: "hidden", key: index, name: name, value: formValue })); }),
|
|
@@ -4662,7 +4623,7 @@ var Combobox = React.forwardRef(function (_a, ref) {
|
|
|
4662
4623
|
};
|
|
4663
4624
|
return (React__default["default"].createElement(ComboboxPill, { ref: refCallback, key: value, value: value, removeOptionLabel: removeOptionLabels[index], disabled: disabled, onClick: handleClick, onKeyDown: handlePillKeyDown }));
|
|
4664
4625
|
}),
|
|
4665
|
-
React__default["default"].createElement("input", tslib.__assign({ type: "text", id: "".concat(id, "-input"), ref: inputRef, value: inputValue, role: "combobox", disabled: disabled, "aria-autocomplete": !isAutoComplete ? 'none' : 'list', "aria-controls": "".concat(id, "-listbox"), "aria-expanded": open, "aria-haspopup": "listbox", "aria-activedescendant": open && activeDescendant ? activeDescendant.element.id : undefined }, inputProps, { onChange: handleChange, onKeyDown: handleKeyDown, onFocus: handleFocus, onBlur: handleBlur })),
|
|
4626
|
+
React__default["default"].createElement("input", tslib.__assign({ type: "text", id: "".concat(id, "-input"), ref: inputRef, value: inputValue, role: "combobox", disabled: disabled, "aria-invalid": error ? true : undefined, "aria-autocomplete": !isAutoComplete ? 'none' : 'list', "aria-controls": "".concat(id, "-listbox"), "aria-expanded": open, "aria-haspopup": "listbox", "aria-activedescendant": open && activeDescendant ? activeDescendant.element.id : undefined }, inputProps, { onChange: handleChange, onKeyDown: handleKeyDown, onFocus: handleFocus, onBlur: handleBlur })),
|
|
4666
4627
|
React__default["default"].createElement("span", { className: "Combobox__arrow" })),
|
|
4667
4628
|
React__default["default"].createElement(ComboboxProvider, { autocomplete: autocomplete, inputValue: inputValue, formValues: formValues, selectedValues: selectedValues, removeOptionLabels: removeOptionLabels, setRemoveOptionLabels: setRemoveOptionLabels, matches: !isAutoComplete || defaultAutoCompleteMatches, matchingOptions: matchingOptions, setMatchingOptions: setMatchingOptions, setFormValues: setFormValues }, portal && typeof document !== 'undefined'
|
|
4668
4629
|
? reactDom.createPortal(comboboxListbox,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@deque/cauldron-react",
|
|
3
|
-
"version": "6.27.0-canary.
|
|
3
|
+
"version": "6.27.0-canary.90942368",
|
|
4
4
|
"license": "MPL-2.0",
|
|
5
5
|
"description": "Fully accessible react components library for Deque Cauldron",
|
|
6
6
|
"homepage": "https://cauldron.dequelabs.com/",
|