@deque/cauldron-react 5.4.1 → 5.5.0-canary.68e55b81
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/Alert/index.d.ts +8 -0
- package/lib/components/Breadcrumb/BreadcrumbItem.d.ts +1 -2
- package/lib/components/Card/CardContent.d.ts +1 -2
- package/lib/components/Card/CardFooter.d.ts +1 -2
- package/lib/components/Card/CardHeader.d.ts +1 -2
- package/lib/components/Dialog/index.d.ts +8 -0
- package/lib/components/Modal/index.d.ts +8 -0
- package/lib/components/Offscreen/index.d.ts +1 -2
- package/lib/components/Tooltip/index.d.ts +12 -2
- package/lib/components/TwoColumnPanel/ColumnGroupHeader.d.ts +1 -2
- package/lib/components/TwoColumnPanel/ColumnHeader.d.ts +1 -2
- package/lib/components/TwoColumnPanel/ColumnList.d.ts +1 -2
- package/lib/index.js +92 -30
- package/package.json +2 -6
|
@@ -7,10 +7,18 @@ declare const Alert: ({ children, className, variant, heading, ...other }: Alert
|
|
|
7
7
|
declare const AlertContent: {
|
|
8
8
|
({ children, className, ...other }: React.HTMLAttributes<HTMLDivElement>): JSX.Element;
|
|
9
9
|
displayName: string;
|
|
10
|
+
propTypes: {
|
|
11
|
+
className: import("prop-types").Requireable<string>;
|
|
12
|
+
children: import("prop-types").Requireable<import("prop-types").ReactNodeLike>;
|
|
13
|
+
};
|
|
10
14
|
};
|
|
11
15
|
declare const AlertActions: {
|
|
12
16
|
({ children, className, ...other }: React.HTMLAttributes<HTMLDivElement>): JSX.Element;
|
|
13
17
|
displayName: string;
|
|
18
|
+
propTypes: {
|
|
19
|
+
className: import("prop-types").Requireable<string>;
|
|
20
|
+
children: import("prop-types").Requireable<import("prop-types").ReactNodeLike>;
|
|
21
|
+
};
|
|
14
22
|
};
|
|
15
23
|
export default Alert;
|
|
16
24
|
export { Alert, AlertContent, AlertActions };
|
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
|
|
3
|
-
}
|
|
2
|
+
declare type BreadcrumbItemProps = React.HTMLAttributes<HTMLSpanElement>;
|
|
4
3
|
declare const BreadcrumbItem: React.ForwardRefExoticComponent<BreadcrumbItemProps & React.RefAttributes<HTMLElement>>;
|
|
5
4
|
export default BreadcrumbItem;
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import PropTypes from 'prop-types';
|
|
3
|
-
export
|
|
4
|
-
}
|
|
3
|
+
export declare type CardContentProps = React.HTMLAttributes<HTMLDivElement>;
|
|
5
4
|
declare const CardContent: {
|
|
6
5
|
({ className, ...other }: CardContentProps): JSX.Element;
|
|
7
6
|
displayName: string;
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import PropTypes from 'prop-types';
|
|
3
|
-
export
|
|
4
|
-
}
|
|
3
|
+
export declare type CardFooterProps = React.HTMLAttributes<HTMLDivElement>;
|
|
5
4
|
declare const CardFooter: {
|
|
6
5
|
({ className, ...other }: CardFooterProps): JSX.Element;
|
|
7
6
|
displayName: string;
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import PropTypes from 'prop-types';
|
|
3
|
-
export
|
|
4
|
-
}
|
|
3
|
+
export declare type CardHeaderProps = React.HTMLAttributes<HTMLDivElement>;
|
|
5
4
|
declare const CardHeader: {
|
|
6
5
|
({ className, ...other }: CardHeaderProps): JSX.Element;
|
|
7
6
|
displayName: string;
|
|
@@ -51,9 +51,17 @@ export default class Dialog extends React.Component<DialogProps, DialogState> {
|
|
|
51
51
|
declare const DialogContent: {
|
|
52
52
|
({ children, className, ...other }: React.HTMLAttributes<HTMLDivElement>): JSX.Element;
|
|
53
53
|
displayName: string;
|
|
54
|
+
propTypes: {
|
|
55
|
+
className: PropTypes.Requireable<string>;
|
|
56
|
+
children: PropTypes.Requireable<PropTypes.ReactNodeLike>;
|
|
57
|
+
};
|
|
54
58
|
};
|
|
55
59
|
declare const DialogFooter: {
|
|
56
60
|
({ children, className, ...other }: React.HTMLAttributes<HTMLDivElement>): JSX.Element;
|
|
57
61
|
displayName: string;
|
|
62
|
+
propTypes: {
|
|
63
|
+
className: PropTypes.Requireable<string>;
|
|
64
|
+
children: PropTypes.Requireable<PropTypes.ReactNodeLike>;
|
|
65
|
+
};
|
|
58
66
|
};
|
|
59
67
|
export { Dialog, DialogContent, DialogFooter };
|
|
@@ -7,10 +7,18 @@ declare const Modal: ({ children, className, variant, ...other }: ModalProps) =>
|
|
|
7
7
|
declare const ModalContent: {
|
|
8
8
|
({ children, className, ...other }: React.HTMLAttributes<HTMLDivElement>): JSX.Element;
|
|
9
9
|
displayName: string;
|
|
10
|
+
propTypes: {
|
|
11
|
+
className: import("prop-types").Requireable<string>;
|
|
12
|
+
children: import("prop-types").Requireable<import("prop-types").ReactNodeLike>;
|
|
13
|
+
};
|
|
10
14
|
};
|
|
11
15
|
declare const ModalFooter: {
|
|
12
16
|
({ children, className, ...other }: React.HTMLAttributes<HTMLDivElement>): JSX.Element;
|
|
13
17
|
displayName: string;
|
|
18
|
+
propTypes: {
|
|
19
|
+
className: import("prop-types").Requireable<string>;
|
|
20
|
+
children: import("prop-types").Requireable<import("prop-types").ReactNodeLike>;
|
|
21
|
+
};
|
|
14
22
|
};
|
|
15
23
|
export default Modal;
|
|
16
24
|
export { Modal, ModalContent, ModalFooter };
|
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
export
|
|
3
|
-
}
|
|
2
|
+
export declare type OffscreenProps = React.HTMLAttributes<HTMLSpanElement>;
|
|
4
3
|
declare const Offscreen: (props: OffscreenProps) => JSX.Element;
|
|
5
4
|
export default Offscreen;
|
|
@@ -25,5 +25,15 @@ declare namespace Tooltip {
|
|
|
25
25
|
};
|
|
26
26
|
}
|
|
27
27
|
export default Tooltip;
|
|
28
|
-
export declare const TooltipHead:
|
|
29
|
-
|
|
28
|
+
export declare const TooltipHead: {
|
|
29
|
+
({ className, ...other }: React.HTMLAttributes<HTMLDivElement>): JSX.Element;
|
|
30
|
+
propTypes: {
|
|
31
|
+
className: PropTypes.Requireable<string>;
|
|
32
|
+
};
|
|
33
|
+
};
|
|
34
|
+
export declare const TooltipContent: {
|
|
35
|
+
({ className, ...other }: React.HTMLAttributes<HTMLDivElement>): JSX.Element;
|
|
36
|
+
propTypes: {
|
|
37
|
+
className: PropTypes.Requireable<string>;
|
|
38
|
+
};
|
|
39
|
+
};
|
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
|
|
3
|
-
}
|
|
2
|
+
declare type ColumnGroupHeaderProps = React.HTMLAttributes<HTMLDivElement>;
|
|
4
3
|
declare const ColumnGroupHeader: React.ForwardRefExoticComponent<ColumnGroupHeaderProps & React.RefAttributes<HTMLDivElement>>;
|
|
5
4
|
export default ColumnGroupHeader;
|
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
|
|
3
|
-
}
|
|
2
|
+
declare type ColumnHeaderProps = React.HTMLAttributes<HTMLDivElement>;
|
|
4
3
|
declare const ColumnHeader: React.ForwardRefExoticComponent<ColumnHeaderProps & React.RefAttributes<HTMLDivElement>>;
|
|
5
4
|
export default ColumnHeader;
|
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
|
|
3
|
-
}
|
|
2
|
+
declare type ColumnListProps = React.HTMLAttributes<HTMLDivElement>;
|
|
4
3
|
declare const ColumnList: React.ForwardRefExoticComponent<ColumnListProps & React.RefAttributes<HTMLDivElement>>;
|
|
5
4
|
export default ColumnList;
|
package/lib/index.js
CHANGED
|
@@ -28,6 +28,7 @@ var Main = /** @class */ (function (_super) {
|
|
|
28
28
|
return (React__default.createElement("main", tslib.__assign({ className: "Main", ref: mainRef }, other), children));
|
|
29
29
|
};
|
|
30
30
|
Main.defaultProps = {
|
|
31
|
+
// eslint-disable-next-line @typescript-eslint/no-empty-function
|
|
31
32
|
mainRef: function () { }
|
|
32
33
|
};
|
|
33
34
|
Main.propTypes = {
|
|
@@ -50,6 +51,7 @@ var Layout = /** @class */ (function (_super) {
|
|
|
50
51
|
return (React__default.createElement("div", tslib.__assign({ className: "Layout", ref: layoutRef }, other), children));
|
|
51
52
|
};
|
|
52
53
|
Layout.defaultProps = {
|
|
54
|
+
// eslint-disable-next-line @typescript-eslint/no-empty-function
|
|
53
55
|
layoutRef: function () { }
|
|
54
56
|
};
|
|
55
57
|
Layout.propTypes = {
|
|
@@ -88,7 +90,9 @@ var Workspace = /** @class */ (function (_super) {
|
|
|
88
90
|
React__default.createElement(Main, tslib.__assign({ mainRef: workspaceRef }, other), children)));
|
|
89
91
|
};
|
|
90
92
|
Workspace.defaultProps = {
|
|
93
|
+
// eslint-disable-next-line @typescript-eslint/no-empty-function
|
|
91
94
|
workspaceRef: function () { },
|
|
95
|
+
// eslint-disable-next-line @typescript-eslint/no-empty-function
|
|
92
96
|
layoutRef: function () { },
|
|
93
97
|
noSideBar: false
|
|
94
98
|
};
|
|
@@ -384,6 +388,7 @@ var ExpandCollapsePanel = /** @class */ (function (_super) {
|
|
|
384
388
|
};
|
|
385
389
|
_this.panel = React__default.createRef();
|
|
386
390
|
_this.handleToggle = function (e) {
|
|
391
|
+
// eslint-disable-next-line @typescript-eslint/no-empty-function
|
|
387
392
|
var _a = _this.props.onToggle, onToggle = _a === void 0 ? function () { } : _a;
|
|
388
393
|
var _b = _this.state, isOpen = _b.isOpen, controlled = _b.controlled;
|
|
389
394
|
onToggle(e);
|
|
@@ -394,7 +399,9 @@ var ExpandCollapsePanel = /** @class */ (function (_super) {
|
|
|
394
399
|
_this.animateOpen = function () {
|
|
395
400
|
var panel = _this.panel.current;
|
|
396
401
|
var animationTiming = _this.props.animationTiming;
|
|
397
|
-
|
|
402
|
+
var prefersReducedMotion = matchMedia('(prefers-reduced-motion: reduce)')
|
|
403
|
+
.matches;
|
|
404
|
+
if (!animationTiming || prefersReducedMotion) {
|
|
398
405
|
_this.setState({ isAnimating: false });
|
|
399
406
|
return;
|
|
400
407
|
}
|
|
@@ -416,7 +423,9 @@ var ExpandCollapsePanel = /** @class */ (function (_super) {
|
|
|
416
423
|
_this.animateClose = function () {
|
|
417
424
|
var panel = _this.panel.current;
|
|
418
425
|
var animationTiming = _this.props.animationTiming;
|
|
419
|
-
|
|
426
|
+
var prefersReducedMotion = matchMedia('(prefers-reduced-motion: reduce)')
|
|
427
|
+
.matches;
|
|
428
|
+
if (!animationTiming || prefersReducedMotion) {
|
|
420
429
|
_this.setState({ isAnimating: false });
|
|
421
430
|
return;
|
|
422
431
|
}
|
|
@@ -668,8 +677,11 @@ var MenuItem = /** @class */ (function (_super) {
|
|
|
668
677
|
}, onClick: this.onClick, onKeyDown: this.onKeyDown }), children));
|
|
669
678
|
};
|
|
670
679
|
MenuItem.defaultProps = {
|
|
680
|
+
// eslint-disable-next-line @typescript-eslint/no-empty-function
|
|
671
681
|
menuItemRef: function () { },
|
|
682
|
+
// eslint-disable-next-line @typescript-eslint/no-empty-function
|
|
672
683
|
onClick: function () { },
|
|
684
|
+
// eslint-disable-next-line @typescript-eslint/no-empty-function
|
|
673
685
|
onKeyDown: function () { },
|
|
674
686
|
autoClickLink: true
|
|
675
687
|
};
|
|
@@ -1035,6 +1047,7 @@ var OptionsMenuList = /** @class */ (function (_super) {
|
|
|
1035
1047
|
var clickOutsideEventActive = !show ? false : undefined;
|
|
1036
1048
|
// Key event is being handled in componentDidMount
|
|
1037
1049
|
/* eslint-disable jsx-a11y/click-events-have-key-events */
|
|
1050
|
+
/* eslint-disable jsx-a11y/role-supports-aria-props */
|
|
1038
1051
|
return (React__default.createElement(ClickOutsideListener, { onClickOutside: this.handleClickOutside, mouseEvent: clickOutsideEventActive, touchEvent: clickOutsideEventActive },
|
|
1039
1052
|
React__default.createElement("ul", tslib.__assign({}, other, { className: classNames('OptionsMenu__list', className), "aria-expanded": show, role: "menu", onClick: handleClick, ref: function (el) {
|
|
1040
1053
|
_this.menuRef = el;
|
|
@@ -1046,7 +1059,9 @@ var OptionsMenuList = /** @class */ (function (_super) {
|
|
|
1046
1059
|
};
|
|
1047
1060
|
OptionsMenuList.defaultProps = {
|
|
1048
1061
|
closeOnSelect: true,
|
|
1062
|
+
// eslint-disable-next-line @typescript-eslint/no-empty-function
|
|
1049
1063
|
onSelect: function () { },
|
|
1064
|
+
// eslint-disable-next-line @typescript-eslint/no-empty-function
|
|
1050
1065
|
onClose: function () { }
|
|
1051
1066
|
};
|
|
1052
1067
|
OptionsMenuList.propTypes = {
|
|
@@ -1114,7 +1129,9 @@ var OptionsMenu = /** @class */ (function (_super) {
|
|
|
1114
1129
|
}, onClose: this.handleClose }, other), children)));
|
|
1115
1130
|
};
|
|
1116
1131
|
OptionsMenu.defaultProps = {
|
|
1132
|
+
// eslint-disable-next-line @typescript-eslint/no-empty-function
|
|
1117
1133
|
onClose: function () { },
|
|
1134
|
+
// eslint-disable-next-line @typescript-eslint/no-empty-function
|
|
1118
1135
|
onSelect: function () { },
|
|
1119
1136
|
align: 'right'
|
|
1120
1137
|
};
|
|
@@ -1155,6 +1172,7 @@ var OptionsMenuItemComponent = /** @class */ (function (_super) {
|
|
|
1155
1172
|
React__default.createElement("li", tslib.__assign({ role: "menuitem", ref: menuItemRef, "aria-disabled": disabled, onClick: handleClick }, other)));
|
|
1156
1173
|
};
|
|
1157
1174
|
OptionsMenuItemComponent.defaultProps = {
|
|
1175
|
+
// eslint-disable-next-line @typescript-eslint/no-empty-function
|
|
1158
1176
|
onSelect: function () { }
|
|
1159
1177
|
};
|
|
1160
1178
|
OptionsMenuItemComponent.propTypes = {
|
|
@@ -1251,7 +1269,9 @@ var TopBarMenu = /** @class */ (function (_super) {
|
|
|
1251
1269
|
})));
|
|
1252
1270
|
};
|
|
1253
1271
|
TopBarMenu.defaultProps = {
|
|
1272
|
+
// eslint-disable-next-line @typescript-eslint/no-empty-function
|
|
1254
1273
|
onKeyDown: function () { },
|
|
1274
|
+
// eslint-disable-next-line @typescript-eslint/no-empty-function
|
|
1255
1275
|
menuItemRef: function () { }
|
|
1256
1276
|
};
|
|
1257
1277
|
TopBarMenu.propTypes = {
|
|
@@ -1514,7 +1534,9 @@ var AriaIsolate = /** @class */ (function () {
|
|
|
1514
1534
|
return AriaIsolate;
|
|
1515
1535
|
}());
|
|
1516
1536
|
|
|
1517
|
-
var noop = function () {
|
|
1537
|
+
var noop = function () {
|
|
1538
|
+
//not empty
|
|
1539
|
+
};
|
|
1518
1540
|
var Dialog = /** @class */ (function (_super) {
|
|
1519
1541
|
tslib.__extends(Dialog, _super);
|
|
1520
1542
|
function Dialog(props) {
|
|
@@ -1630,11 +1652,19 @@ var DialogContent = function (_a) {
|
|
|
1630
1652
|
return (React__default.createElement("div", tslib.__assign({ className: classNames('Dialog__content', className) }, other), children));
|
|
1631
1653
|
};
|
|
1632
1654
|
DialogContent.displayName = 'DialogContent';
|
|
1655
|
+
DialogContent.propTypes = {
|
|
1656
|
+
className: PropTypes.string,
|
|
1657
|
+
children: PropTypes.node
|
|
1658
|
+
};
|
|
1633
1659
|
var DialogFooter = function (_a) {
|
|
1634
1660
|
var children = _a.children, className = _a.className, other = tslib.__rest(_a, ["children", "className"]);
|
|
1635
1661
|
return (React__default.createElement("div", tslib.__assign({ className: classNames('Dialog__footer', className) }, other), children));
|
|
1636
1662
|
};
|
|
1637
1663
|
DialogFooter.displayName = 'DialogFooter';
|
|
1664
|
+
DialogFooter.propTypes = {
|
|
1665
|
+
className: PropTypes.string,
|
|
1666
|
+
children: PropTypes.node
|
|
1667
|
+
};
|
|
1638
1668
|
|
|
1639
1669
|
var Alert = function (_a) {
|
|
1640
1670
|
var children = _a.children, className = _a.className, _b = _a.variant, variant = _b === void 0 ? 'default' : _b, heading = _a.heading, other = tslib.__rest(_a, ["children", "className", "variant", "heading"]);
|
|
@@ -1891,10 +1921,16 @@ var TooltipHead = function (_a) {
|
|
|
1891
1921
|
var className = _a.className, other = tslib.__rest(_a, ["className"]);
|
|
1892
1922
|
return (React__default.createElement("div", tslib.__assign({ className: classNames('TooltipHead', className) }, other)));
|
|
1893
1923
|
};
|
|
1924
|
+
TooltipHead.propTypes = {
|
|
1925
|
+
className: PropTypes.string
|
|
1926
|
+
};
|
|
1894
1927
|
var TooltipContent = function (_a) {
|
|
1895
1928
|
var className = _a.className, other = tslib.__rest(_a, ["className"]);
|
|
1896
1929
|
return (React__default.createElement("div", tslib.__assign({ className: classNames('TooltipContent', className) }, other)));
|
|
1897
1930
|
};
|
|
1931
|
+
TooltipContent.propTypes = {
|
|
1932
|
+
className: PropTypes.string
|
|
1933
|
+
};
|
|
1898
1934
|
|
|
1899
1935
|
/**
|
|
1900
1936
|
* Unfortunately, eslint does not recognize that this Polymorphic component has a displayName set
|
|
@@ -2056,6 +2092,7 @@ var Pointout = /** @class */ (function (_super) {
|
|
|
2056
2092
|
target;
|
|
2057
2093
|
var portalNode = (portal === null || portal === void 0 ? void 0 : portal.current) ||
|
|
2058
2094
|
portal;
|
|
2095
|
+
// eslint-disable-next-line prefer-const
|
|
2059
2096
|
var _b = targetNode.getBoundingClientRect(), top = _b.top, left = _b.left, width = _b.width, height = _b.height;
|
|
2060
2097
|
if (portalNode && portalNode !== document.body) {
|
|
2061
2098
|
// If the portal is not placed on document.body
|
|
@@ -2232,8 +2269,10 @@ var Pointout = /** @class */ (function (_super) {
|
|
|
2232
2269
|
(_a = this.props) === null || _a === void 0 ? void 0 : _a.onClose();
|
|
2233
2270
|
};
|
|
2234
2271
|
Pointout.defaultProps = {
|
|
2272
|
+
// eslint-disable-next-line @typescript-eslint/no-empty-function
|
|
2235
2273
|
ftpoRef: function () { },
|
|
2236
2274
|
noArrow: false,
|
|
2275
|
+
// eslint-disable-next-line @typescript-eslint/no-empty-function
|
|
2237
2276
|
onClose: function () { },
|
|
2238
2277
|
dismissText: 'dismiss',
|
|
2239
2278
|
previousText: 'previous',
|
|
@@ -2609,24 +2648,25 @@ var RadioGroup = function (_a) {
|
|
|
2609
2648
|
var label = radio.label, disabled = radio.disabled, radioValue = radio.value, labelDescription = radio.labelDescription, id = radio.id, className = radio.className, other = tslib.__rest(radio, ["label", "disabled", "value", "labelDescription", "id", "className"]);
|
|
2610
2649
|
var isChecked = currentValue === radioValue;
|
|
2611
2650
|
var isFocused = focusIndex === index;
|
|
2612
|
-
return (React__default.createElement("div", { className:
|
|
2613
|
-
React__default.createElement("
|
|
2614
|
-
|
|
2615
|
-
|
|
2616
|
-
|
|
2617
|
-
|
|
2618
|
-
|
|
2619
|
-
|
|
2620
|
-
|
|
2621
|
-
|
|
2622
|
-
|
|
2623
|
-
|
|
2624
|
-
|
|
2625
|
-
|
|
2626
|
-
|
|
2627
|
-
|
|
2628
|
-
|
|
2629
|
-
|
|
2651
|
+
return (React__default.createElement("div", { className: "Radio__wrap", key: id },
|
|
2652
|
+
React__default.createElement("div", { className: classNames('Radio is--flex-row', className) },
|
|
2653
|
+
React__default.createElement("input", tslib.__assign({ type: "radio", name: name, value: radioValue, id: id, ref: function (input) {
|
|
2654
|
+
if (!input) {
|
|
2655
|
+
return;
|
|
2656
|
+
}
|
|
2657
|
+
inputs.current.push(input);
|
|
2658
|
+
}, onFocus: function () { return onRadioFocus(index); }, onBlur: function () { return onRadioBlur(); }, onChange: function () {
|
|
2659
|
+
var _a;
|
|
2660
|
+
handleChange(radioValue);
|
|
2661
|
+
onChange(radio, (_a = inputs.current) === null || _a === void 0 ? void 0 : _a[index]);
|
|
2662
|
+
}, disabled: disabled, checked: isChecked, "aria-describedby": labelDescription ? "".concat(id, "Desc") : undefined }, other)),
|
|
2663
|
+
React__default.createElement("label", { htmlFor: id, className: classNames('Radio__label', {
|
|
2664
|
+
'Field__label--disabled': disabled
|
|
2665
|
+
}) }, label),
|
|
2666
|
+
React__default.createElement(Icon, { className: classNames('Radio__overlay', {
|
|
2667
|
+
'Radio__overlay--focused': isFocused,
|
|
2668
|
+
'Radio__overlay--disabled': disabled
|
|
2669
|
+
}), type: isChecked ? 'radio-checked' : 'radio-unchecked', "aria-hidden": "true", onClick: function () { return onRadioClick(index); } })),
|
|
2630
2670
|
labelDescription && (React__default.createElement("span", { id: "".concat(id, "Desc"), className: classNames('Field__labelDescription', {
|
|
2631
2671
|
'Field__labelDescription--disabled': disabled
|
|
2632
2672
|
}) }, labelDescription))));
|
|
@@ -2800,7 +2840,7 @@ var Checkbox = React.forwardRef(function (_a, ref) {
|
|
|
2800
2840
|
if (labelDescription) {
|
|
2801
2841
|
ariaDescribedbyId = tokenList(labelDescriptionId, ariaDescribedbyId);
|
|
2802
2842
|
}
|
|
2803
|
-
return (React__default.createElement(
|
|
2843
|
+
return (React__default.createElement("div", { className: "Checkbox__wrap" },
|
|
2804
2844
|
React__default.createElement("div", { className: classNames('Checkbox is--flex-row', className) },
|
|
2805
2845
|
React__default.createElement("input", tslib.__assign({ id: id, ref: typeof refProp === 'function' || !refProp ? checkRef : refProp, type: "checkbox", checked: isChecked, disabled: disabled, onFocus: function (e) {
|
|
2806
2846
|
setFocused(true);
|
|
@@ -2818,7 +2858,7 @@ var Checkbox = React.forwardRef(function (_a, ref) {
|
|
|
2818
2858
|
onChange(e);
|
|
2819
2859
|
}
|
|
2820
2860
|
} }, other)),
|
|
2821
|
-
React__default.createElement("label", { className: classNames('
|
|
2861
|
+
React__default.createElement("label", { className: classNames('Checkbox__label', {
|
|
2822
2862
|
'Field__label--disabled': disabled
|
|
2823
2863
|
}), htmlFor: id }, label),
|
|
2824
2864
|
React__default.createElement(Icon, { className: classNames('Checkbox__overlay', {
|
|
@@ -2833,9 +2873,9 @@ var Checkbox = React.forwardRef(function (_a, ref) {
|
|
|
2833
2873
|
else {
|
|
2834
2874
|
(_b = checkRef.current) === null || _b === void 0 ? void 0 : _b.click();
|
|
2835
2875
|
}
|
|
2836
|
-
} }),
|
|
2837
|
-
|
|
2838
|
-
|
|
2876
|
+
} })),
|
|
2877
|
+
labelDescription && (React__default.createElement("span", { id: labelDescriptionId, className: "Field__labelDescription" }, labelDescription)),
|
|
2878
|
+
error && (React__default.createElement("div", { id: errorId, className: "Error" }, error))));
|
|
2839
2879
|
});
|
|
2840
2880
|
Checkbox.displayName = 'Checkbox';
|
|
2841
2881
|
|
|
@@ -8213,7 +8253,8 @@ Code.propTypes = {
|
|
|
8213
8253
|
children: PropTypes.string.isRequired,
|
|
8214
8254
|
language: PropTypes.oneOf(['javascript', 'css', 'html', 'yaml']),
|
|
8215
8255
|
className: PropTypes.string,
|
|
8216
|
-
tabIndex: PropTypes.number
|
|
8256
|
+
tabIndex: PropTypes.number,
|
|
8257
|
+
scrollable: PropTypes.bool
|
|
8217
8258
|
};
|
|
8218
8259
|
|
|
8219
8260
|
function AxeLoader() {
|
|
@@ -8879,10 +8920,14 @@ var Breadcrumb = React.forwardRef(function (_a, ref) {
|
|
|
8879
8920
|
});
|
|
8880
8921
|
Breadcrumb.displayName = 'Breadcrumb';
|
|
8881
8922
|
|
|
8882
|
-
var BreadcrumbItem = React.forwardRef(
|
|
8923
|
+
var BreadcrumbItem = React.forwardRef(// eslint-disable-line react/display-name
|
|
8924
|
+
function (_a, ref) {
|
|
8883
8925
|
var className = _a.className, children = _a.children, props = tslib.__rest(_a, ["className", "children"]);
|
|
8884
8926
|
return (React__default.createElement("span", tslib.__assign({ className: classNames('Breadcrumb__Item', className), ref: ref, "aria-current": "location" }, props), children));
|
|
8885
8927
|
});
|
|
8928
|
+
BreadcrumbItem.propTypes = {
|
|
8929
|
+
className: PropTypes.string
|
|
8930
|
+
};
|
|
8886
8931
|
|
|
8887
8932
|
var BreadcrumbLink = React.forwardRef(function (_a, ref) {
|
|
8888
8933
|
var className = _a.className, _b = _a.as, ElementType = _b === void 0 ? 'a' : _b, children = _a.children, props = tslib.__rest(_a, ["className", "as", "children"]);
|
|
@@ -8947,7 +8992,11 @@ var TwoColumnPanel = React.forwardRef(function (_a, ref) {
|
|
|
8947
8992
|
CloseButton
|
|
8948
8993
|
], tslib.__read(React__default.Children.toArray(columnLeft.props.children)), false);
|
|
8949
8994
|
ColumnLeftComponent = React.cloneElement(columnLeft, { id: id, ref: ref_1, tabIndex: -1 }, children_1.map(function (child, index) {
|
|
8950
|
-
return React.cloneElement(child, {
|
|
8995
|
+
return React.cloneElement(child, {
|
|
8996
|
+
key: child.key
|
|
8997
|
+
? child.key
|
|
8998
|
+
: "left-".concat(index)
|
|
8999
|
+
});
|
|
8951
9000
|
}));
|
|
8952
9001
|
}
|
|
8953
9002
|
var columnRight = React__default.Children.toArray(children).find(function (child) { return child.type === ColumnRight; });
|
|
@@ -8962,7 +9011,11 @@ var TwoColumnPanel = React.forwardRef(function (_a, ref) {
|
|
|
8962
9011
|
ToggleButton
|
|
8963
9012
|
], tslib.__read(React__default.Children.toArray(columnRight.props.children)), false);
|
|
8964
9013
|
ColumnRightComponent = React.cloneElement(columnRight, { ref: ref_2, tabIndex: -1 }, children_2.map(function (child, index) {
|
|
8965
|
-
return React.cloneElement(child, {
|
|
9014
|
+
return React.cloneElement(child, {
|
|
9015
|
+
key: child.key
|
|
9016
|
+
? child.key
|
|
9017
|
+
: "right-".concat(index)
|
|
9018
|
+
});
|
|
8966
9019
|
}));
|
|
8967
9020
|
}
|
|
8968
9021
|
React.useLayoutEffect(function () {
|
|
@@ -9045,18 +9098,27 @@ var ColumnHeader = React.forwardRef(function (_a, ref) {
|
|
|
9045
9098
|
return (React__default.createElement("div", tslib.__assign({ className: classNames('TwoColumnPanel__Header', className) }, props, { ref: ref }), children));
|
|
9046
9099
|
});
|
|
9047
9100
|
ColumnHeader.displayName = 'ColumnHeader';
|
|
9101
|
+
ColumnHeader.propTypes = {
|
|
9102
|
+
className: PropTypes.string
|
|
9103
|
+
};
|
|
9048
9104
|
|
|
9049
9105
|
var ColumnGroupHeader = React.forwardRef(function (_a, ref) {
|
|
9050
9106
|
var className = _a.className, children = _a.children, props = tslib.__rest(_a, ["className", "children"]);
|
|
9051
9107
|
return (React__default.createElement("div", tslib.__assign({ className: classNames('TwoColumnPanel__GroupHeader', className) }, props, { ref: ref }), children));
|
|
9052
9108
|
});
|
|
9053
9109
|
ColumnGroupHeader.displayName = 'ColumnGroupHeader';
|
|
9110
|
+
ColumnGroupHeader.propTypes = {
|
|
9111
|
+
className: PropTypes.string
|
|
9112
|
+
};
|
|
9054
9113
|
|
|
9055
9114
|
var ColumnList = React.forwardRef(function (_a, ref) {
|
|
9056
9115
|
var className = _a.className, children = _a.children, props = tslib.__rest(_a, ["className", "children"]);
|
|
9057
9116
|
return (React__default.createElement("div", tslib.__assign({ className: classNames('TwoColumnPanel__List', className) }, props, { ref: ref }), children));
|
|
9058
9117
|
});
|
|
9059
9118
|
ColumnList.displayName = 'ColumnList';
|
|
9119
|
+
ColumnList.propTypes = {
|
|
9120
|
+
className: PropTypes.string
|
|
9121
|
+
};
|
|
9060
9122
|
|
|
9061
9123
|
var LIGHT_THEME_CLASS = 'cauldron--theme-light';
|
|
9062
9124
|
var DARK_THEME_CLASS = 'cauldron--theme-dark';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@deque/cauldron-react",
|
|
3
|
-
"version": "5.
|
|
3
|
+
"version": "5.5.0-canary.68e55b81",
|
|
4
4
|
"description": "Fully accessible react components library for Deque Cauldron",
|
|
5
5
|
"homepage": "https://cauldron.dequelabs.com/",
|
|
6
6
|
"publishConfig": {
|
|
@@ -60,10 +60,6 @@
|
|
|
60
60
|
"concurrently": "^5.3.0",
|
|
61
61
|
"enzyme": "^3.11.0",
|
|
62
62
|
"enzyme-adapter-react-16": "^1.15.2",
|
|
63
|
-
"eslint": "^6.8.0",
|
|
64
|
-
"eslint-config-prettier": "^6.11.0",
|
|
65
|
-
"eslint-plugin-jsx-a11y": "^6.2.3",
|
|
66
|
-
"eslint-plugin-react": "^7.19.0",
|
|
67
63
|
"jest": "^24.7.1",
|
|
68
64
|
"jest-axe": "^3.4.0",
|
|
69
65
|
"jsdom": "^16.2.2",
|
|
@@ -126,4 +122,4 @@
|
|
|
126
122
|
"\\.svg$": "<rootDir>/__tests__/svgMock.js"
|
|
127
123
|
}
|
|
128
124
|
}
|
|
129
|
-
}
|
|
125
|
+
}
|