@deque/cauldron-react 4.5.0-canary.7f1627ef → 4.5.0-canary.9a1593ae
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/Breadcrumb/Breadcrumb.d.ts +5 -9
- package/lib/components/Button/index.d.ts +1 -1
- package/lib/components/Code/index.d.ts +2 -2
- package/lib/components/Dialog/index.d.ts +1 -1
- package/lib/components/ExpandCollapsePanel/PanelTrigger.d.ts +1 -1
- package/lib/components/Icon/types.d.ts +1 -1
- package/lib/components/OptionsMenu/OptionsMenu.d.ts +1 -0
- package/lib/components/ProgressBar/index.d.ts +6 -12
- package/lib/components/Select/index.d.ts +1 -1
- package/lib/components/SideBar/SideBarItem.d.ts +1 -1
- package/lib/components/Toast/index.d.ts +1 -0
- package/lib/components/Tooltip/index.d.ts +1 -1
- package/lib/components/TopBar/TopBarTrigger.d.ts +1 -1
- package/lib/components/TwoColumnPanel/ColumnLeft.d.ts +3 -5
- package/lib/components/TwoColumnPanel/ColumnRight.d.ts +3 -5
- package/lib/index.js +138 -130
- package/lib/recycle-square.js +24 -0
- package/lib/utils/remove-ids/index.d.ts +1 -1
- package/package.json +12 -11
|
@@ -1,11 +1,7 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
separator?: string | undefined;
|
|
8
|
-
} & React.HTMLAttributes<HTMLElement> & {
|
|
9
|
-
'aria-labelledby': string;
|
|
10
|
-
} & React.RefAttributes<HTMLElement>)>;
|
|
2
|
+
import { Cauldron } from '../../types';
|
|
3
|
+
declare type BreadcrumbProps = {
|
|
4
|
+
separator?: string;
|
|
5
|
+
} & React.HTMLAttributes<HTMLElement> & Cauldron.LabelProps;
|
|
6
|
+
declare const Breadcrumb: React.ForwardRefExoticComponent<BreadcrumbProps & React.RefAttributes<HTMLElement>>;
|
|
11
7
|
export default Breadcrumb;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import React, { ButtonHTMLAttributes, Ref } from 'react';
|
|
2
2
|
export interface ButtonProps extends ButtonHTMLAttributes<HTMLButtonElement> {
|
|
3
3
|
buttonRef?: Ref<HTMLButtonElement>;
|
|
4
|
-
variant?: 'primary' | 'secondary' | 'error' | 'link';
|
|
4
|
+
variant?: 'primary' | 'secondary' | 'error' | 'link' | 'tag';
|
|
5
5
|
thin?: boolean;
|
|
6
6
|
}
|
|
7
7
|
declare const Button: React.ForwardRefExoticComponent<ButtonProps & React.RefAttributes<HTMLButtonElement>>;
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import { SyntaxHighlighterProps } from 'react-syntax-highlighter';
|
|
3
3
|
interface Props extends SyntaxHighlighterProps {
|
|
4
|
-
children:
|
|
4
|
+
children: string;
|
|
5
5
|
language?: 'javascript' | 'css' | 'html' | 'yaml';
|
|
6
6
|
className?: string;
|
|
7
7
|
tabIndex?: number;
|
|
8
8
|
}
|
|
9
|
-
declare const Code: React.ComponentType<Props
|
|
9
|
+
declare const Code: React.ComponentType<React.PropsWithChildren<Props>>;
|
|
10
10
|
export default Code;
|
|
@@ -42,7 +42,7 @@ export default class Dialog extends React.Component<DialogProps, DialogState> {
|
|
|
42
42
|
componentDidMount(): void;
|
|
43
43
|
componentDidUpdate(prevProps: DialogProps): void;
|
|
44
44
|
private attachIsolator;
|
|
45
|
-
render():
|
|
45
|
+
render(): JSX.Element | null;
|
|
46
46
|
close(): void;
|
|
47
47
|
handleClickOutside(): void;
|
|
48
48
|
focusHeading(): void;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import PropTypes from 'prop-types';
|
|
3
3
|
import { IconType } from '../Icon';
|
|
4
|
-
export interface PanelTriggerProps extends React.ButtonHTMLAttributes<HTMLButtonElement> {
|
|
4
|
+
export interface PanelTriggerProps extends Omit<React.ButtonHTMLAttributes<HTMLButtonElement>, 'children'> {
|
|
5
5
|
children?: ((props: {
|
|
6
6
|
open: boolean;
|
|
7
7
|
}) => React.ReactNode) | React.ReactNode;
|
|
@@ -2,6 +2,6 @@
|
|
|
2
2
|
* GENERATED CODE. DO NOT EDIT DIRECTLY!
|
|
3
3
|
*/
|
|
4
4
|
/** IconType represents each valid icon type. */
|
|
5
|
-
export declare type IconType = 'add-user' | 'arrow-circle-up' | 'arrow-circle-down' | 'arrow-circle-left' | 'arrow-circle-right' | 'arrow-up' | 'arrow-down' | 'arrow-left' | 'arrow-right' | 'arrows-alt' | 'bolt' | 'caution' | 'check-circle' | 'check-shield' | 'check-solid' | 'check' | 'checkbox-checked' | 'checkbox-unchecked' | 'chevron-double-up' | 'chevron-double-down' | 'chevron-double-left' | 'chevron-double-right' | 'chevron-up' | 'chevron-down' | 'chevron-left' | 'chevron-right' | 'close' | 'code' | 'copy' | 'download' | 'dropper' | 'exchange' | 'external-link' | 'eye' | 'filter' | 'flag' | 'gears' | 'grid' | 'hamburger-menu' | 'highlight' | 'info-circle-alt' | 'info-circle' | 'info-square' | 'kabob' | 'list' | 'lock' | 'magnifying-glass' | 'menu' | 'minus' | 'new-releases' | 'new' | 'no' | 'pencil' | 'plus' | 'question-circle' | 'radio-checked' | 'radio-unchecked' | 'recycle' | 'resend' | 'robot' | 'run-again' | 'save' | 'share' | 'sort-triangle' | 'sort' | 'star' | 'sun' | 'tag' | 'target' | 'trash' | 'triangle-up' | 'triangle-down' | 'triangle-left' | 'triangle-right' | 'upload';
|
|
5
|
+
export declare type IconType = 'add-user' | 'arrow-circle-up' | 'arrow-circle-down' | 'arrow-circle-left' | 'arrow-circle-right' | 'arrow-up' | 'arrow-down' | 'arrow-left' | 'arrow-right' | 'arrows-alt' | 'bolt' | 'caution' | 'check-circle' | 'check-shield' | 'check-solid' | 'check' | 'checkbox-checked' | 'checkbox-unchecked' | 'chevron-double-up' | 'chevron-double-down' | 'chevron-double-left' | 'chevron-double-right' | 'chevron-up' | 'chevron-down' | 'chevron-left' | 'chevron-right' | 'close' | 'code' | 'copy' | 'download' | 'dropper' | 'exchange' | 'external-link' | 'eye' | 'filter' | 'flag' | 'gears' | 'grid' | 'hamburger-menu' | 'highlight' | 'info-circle-alt' | 'info-circle' | 'info-square' | 'kabob' | 'list' | 'lock' | 'magnifying-glass' | 'menu' | 'minus' | 'new-releases' | 'new' | 'no' | 'pencil' | 'plus' | 'question-circle' | 'radio-checked' | 'radio-unchecked' | 'recycle-square' | 'recycle' | 'resend' | 'robot' | 'run-again' | 'save' | 'share' | 'sort-triangle' | 'sort' | 'star' | 'sun' | 'tag' | 'target' | 'trash' | 'triangle-up' | 'triangle-down' | 'triangle-left' | 'triangle-right' | 'upload';
|
|
6
6
|
/** iconTypes holds each valid icon type. */
|
|
7
7
|
export declare const iconTypes: string[];
|
|
@@ -1,15 +1,9 @@
|
|
|
1
|
+
import { Cauldron } from '../../types';
|
|
1
2
|
import React from 'react';
|
|
2
|
-
declare
|
|
3
|
+
declare type ProgressBarProps = {
|
|
3
4
|
progress: number;
|
|
4
|
-
progressMax?: number
|
|
5
|
-
progressMin?: number
|
|
6
|
-
} &
|
|
7
|
-
|
|
8
|
-
} & React.HTMLAttributes<HTMLDivElement> & React.RefAttributes<HTMLDivElement>) | ({
|
|
9
|
-
progress: number;
|
|
10
|
-
progressMax?: number | undefined;
|
|
11
|
-
progressMin?: number | undefined;
|
|
12
|
-
} & {
|
|
13
|
-
'aria-labelledby': string;
|
|
14
|
-
} & React.HTMLAttributes<HTMLDivElement> & React.RefAttributes<HTMLDivElement>)>;
|
|
5
|
+
progressMax?: number;
|
|
6
|
+
progressMin?: number;
|
|
7
|
+
} & Cauldron.LabelProps & React.HTMLAttributes<HTMLDivElement>;
|
|
8
|
+
declare const ProgressBar: React.ForwardRefExoticComponent<ProgressBarProps & React.RefAttributes<HTMLDivElement>>;
|
|
15
9
|
export default ProgressBar;
|
|
@@ -15,5 +15,5 @@ export interface SelectProps extends Omit<React.HTMLProps<HTMLSelectElement>, 'c
|
|
|
15
15
|
defaultValue?: any;
|
|
16
16
|
onChange?: (e: React.ChangeEvent<HTMLSelectElement>) => void;
|
|
17
17
|
}
|
|
18
|
-
declare const Select: React.ForwardRefExoticComponent<Pick<SelectProps, "
|
|
18
|
+
declare const Select: React.ForwardRefExoticComponent<Pick<SelectProps, "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "className" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "id" | "lang" | "placeholder" | "slot" | "spellCheck" | "style" | "tabIndex" | "title" | "translate" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "color" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "children" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "form" | "list" | "step" | "cite" | "data" | "label" | "span" | "summary" | "pattern" | "type" | "key" | "download" | "target" | "name" | "error" | "disabled" | "open" | "accept" | "acceptCharset" | "action" | "allowFullScreen" | "allowTransparency" | "alt" | "as" | "async" | "autoComplete" | "autoFocus" | "autoPlay" | "capture" | "cellPadding" | "cellSpacing" | "charSet" | "challenge" | "checked" | "classID" | "cols" | "colSpan" | "content" | "controls" | "coords" | "crossOrigin" | "dateTime" | "default" | "defer" | "encType" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "frameBorder" | "headers" | "height" | "high" | "href" | "hrefLang" | "htmlFor" | "httpEquiv" | "integrity" | "keyParams" | "keyType" | "kind" | "loop" | "low" | "manifest" | "marginHeight" | "marginWidth" | "max" | "maxLength" | "media" | "mediaGroup" | "method" | "min" | "minLength" | "multiple" | "muted" | "nonce" | "noValidate" | "optimum" | "playsInline" | "poster" | "preload" | "readOnly" | "rel" | "required" | "reversed" | "rows" | "rowSpan" | "sandbox" | "scope" | "scoped" | "scrolling" | "seamless" | "selected" | "shape" | "size" | "sizes" | "src" | "srcDoc" | "srcLang" | "srcSet" | "start" | "useMap" | "value" | "width" | "wmode" | "wrap" | "options" | "requiredText"> & React.RefAttributes<HTMLSelectElement>>;
|
|
19
19
|
export default Select;
|
|
@@ -3,5 +3,5 @@ export interface SideBarItemProps extends React.HTMLAttributes<HTMLLIElement> {
|
|
|
3
3
|
children: React.ReactNode;
|
|
4
4
|
autoClickLink?: boolean;
|
|
5
5
|
}
|
|
6
|
-
declare const SideBarItem: React.ComponentType<SideBarItemProps
|
|
6
|
+
declare const SideBarItem: React.ComponentType<React.PropsWithChildren<SideBarItemProps>>;
|
|
7
7
|
export default SideBarItem;
|
|
@@ -11,7 +11,7 @@ export interface TooltipProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
|
11
11
|
portal?: React.RefObject<HTMLElement> | HTMLElement;
|
|
12
12
|
hideElementOnHidden?: boolean;
|
|
13
13
|
}
|
|
14
|
-
declare function Tooltip({ id: propId, placement: initialPlacement, children, portal, target, association, variant, show: initialShow, hideElementOnHidden, className, ...props }: TooltipProps):
|
|
14
|
+
declare function Tooltip({ id: propId, placement: initialPlacement, children, portal, target, association, variant, show: initialShow, hideElementOnHidden, className, ...props }: TooltipProps): JSX.Element;
|
|
15
15
|
declare namespace Tooltip {
|
|
16
16
|
var displayName: string;
|
|
17
17
|
var propTypes: {
|
|
@@ -2,5 +2,5 @@ import React from 'react';
|
|
|
2
2
|
interface TopBarTriggerProps extends React.HTMLAttributes<HTMLLIElement> {
|
|
3
3
|
children: React.ReactNode;
|
|
4
4
|
}
|
|
5
|
-
declare const TopBarTrigger: React.ComponentType<TopBarTriggerProps
|
|
5
|
+
declare const TopBarTrigger: React.ComponentType<React.PropsWithChildren<TopBarTriggerProps>>;
|
|
6
6
|
export default TopBarTrigger;
|
|
@@ -1,7 +1,5 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
'aria-labelledby': string;
|
|
6
|
-
} & React.RefAttributes<HTMLDivElement>)>;
|
|
2
|
+
import { Cauldron } from '../../types';
|
|
3
|
+
declare type ColumnLeftProps = React.HTMLAttributes<HTMLDivElement> & Cauldron.LabelProps;
|
|
4
|
+
declare const ColumnLeft: React.ForwardRefExoticComponent<ColumnLeftProps & React.RefAttributes<HTMLDivElement>>;
|
|
7
5
|
export default ColumnLeft;
|
|
@@ -1,7 +1,5 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
'aria-labelledby': string;
|
|
6
|
-
} & React.RefAttributes<HTMLDivElement>)>;
|
|
2
|
+
import { Cauldron } from '../../types';
|
|
3
|
+
declare type ColumnRightProps = React.HTMLAttributes<HTMLDivElement> & Cauldron.LabelProps;
|
|
4
|
+
declare const ColumnRight: React.ForwardRefExoticComponent<ColumnRightProps & React.RefAttributes<HTMLDivElement>>;
|
|
7
5
|
export default ColumnRight;
|
package/lib/index.js
CHANGED
|
@@ -174,6 +174,7 @@ var iconTypes = [
|
|
|
174
174
|
'question-circle',
|
|
175
175
|
'radio-checked',
|
|
176
176
|
'radio-unchecked',
|
|
177
|
+
'recycle-square',
|
|
177
178
|
'recycle',
|
|
178
179
|
'resend',
|
|
179
180
|
'robot',
|
|
@@ -241,6 +242,7 @@ function __variableDynamicImportRuntime0__(path) {
|
|
|
241
242
|
case './icons/question-circle.svg': return Promise.resolve().then(function () { return require('./question-circle.js'); });
|
|
242
243
|
case './icons/radio-checked.svg': return Promise.resolve().then(function () { return require('./radio-checked.js'); });
|
|
243
244
|
case './icons/radio-unchecked.svg': return Promise.resolve().then(function () { return require('./radio-unchecked.js'); });
|
|
245
|
+
case './icons/recycle-square.svg': return Promise.resolve().then(function () { return require('./recycle-square.js'); });
|
|
244
246
|
case './icons/recycle.svg': return Promise.resolve().then(function () { return require('./recycle.js'); });
|
|
245
247
|
case './icons/resend.svg': return Promise.resolve().then(function () { return require('./resend.js'); });
|
|
246
248
|
case './icons/robot.svg': return Promise.resolve().then(function () { return require('./robot.js'); });
|
|
@@ -279,19 +281,19 @@ var Icon = React.forwardRef(function (_a, ref) {
|
|
|
279
281
|
if (process.env.NODE_ENV === 'test') {
|
|
280
282
|
return;
|
|
281
283
|
}
|
|
282
|
-
__variableDynamicImportRuntime0__("./icons/"
|
|
284
|
+
__variableDynamicImportRuntime0__("./icons/".concat(name, ".svg"))
|
|
283
285
|
.then(function (icon) {
|
|
284
286
|
isMounted.current && setIcon(function () { return icon["default"]; });
|
|
285
287
|
})["catch"](function () {
|
|
286
|
-
console.error("Could not find icon type \""
|
|
288
|
+
console.error("Could not find icon type \"".concat(type, "\"."));
|
|
287
289
|
isMounted.current && setIcon(null);
|
|
288
290
|
});
|
|
289
291
|
return function () {
|
|
290
292
|
isMounted.current = false;
|
|
291
293
|
};
|
|
292
294
|
}, [type]);
|
|
293
|
-
var data = tslib.__assign(tslib.__assign({}, other), { 'aria-hidden': !label, className: classNames('Icon', "Icon--"
|
|
294
|
-
_b["Icon__"
|
|
295
|
+
var data = tslib.__assign(tslib.__assign({}, other), { 'aria-hidden': !label, className: classNames('Icon', "Icon--".concat(type), className, (_b = {},
|
|
296
|
+
_b["Icon__".concat(direction)] = !!direction,
|
|
295
297
|
_b)) });
|
|
296
298
|
return (React__default.createElement("div", tslib.__assign({ ref: ref }, data),
|
|
297
299
|
label && React__default.createElement(Offscreen, null, label),
|
|
@@ -364,7 +366,7 @@ var Scrim = /** @class */ (function (_super) {
|
|
|
364
366
|
if (destroy) {
|
|
365
367
|
return null;
|
|
366
368
|
}
|
|
367
|
-
return (React__default.createElement("div", { ref: function (el) { return (_this.el = el); }, className: "Scrim "
|
|
369
|
+
return (React__default.createElement("div", { ref: function (el) { return (_this.el = el); }, className: "Scrim ".concat(animationClass) }));
|
|
368
370
|
};
|
|
369
371
|
Scrim.propTypes = {
|
|
370
372
|
show: PropTypes.bool.isRequired
|
|
@@ -498,9 +500,9 @@ var TopBar = /** @class */ (function (_super) {
|
|
|
498
500
|
args[_i] = arguments[_i];
|
|
499
501
|
}
|
|
500
502
|
// @ts-ignore we're just spreading the original args
|
|
501
|
-
_this.onKeyDown.apply(_this, tslib.
|
|
503
|
+
_this.onKeyDown.apply(_this, tslib.__spreadArray([], tslib.__read(args), false));
|
|
502
504
|
if (child.props.onKeyDown) {
|
|
503
|
-
(_a = child.props).onKeyDown.apply(_a, tslib.
|
|
505
|
+
(_a = child.props).onKeyDown.apply(_a, tslib.__spreadArray([], tslib.__read(args), false));
|
|
504
506
|
}
|
|
505
507
|
},
|
|
506
508
|
tabIndex: 0,
|
|
@@ -536,7 +538,7 @@ var TopBar = /** @class */ (function (_super) {
|
|
|
536
538
|
};
|
|
537
539
|
TopBar.prototype.onKeyDown = function (e) {
|
|
538
540
|
var key = keyname(e.which);
|
|
539
|
-
var menuItems = tslib.
|
|
541
|
+
var menuItems = tslib.__spreadArray([], tslib.__read(this.menuItems), false);
|
|
540
542
|
// account for hidden side bar trigger (hamburger)
|
|
541
543
|
if (this.state.wide && this.props.hasTrigger) {
|
|
542
544
|
menuItems.shift();
|
|
@@ -592,6 +594,7 @@ var TopBarTrigger = function (_a) {
|
|
|
592
594
|
};
|
|
593
595
|
TopBarTrigger.displayName = 'TopBarTrigger';
|
|
594
596
|
TopBarTrigger.propTypes = {
|
|
597
|
+
// @ts-expect-error
|
|
595
598
|
children: PropTypes.node.isRequired,
|
|
596
599
|
className: PropTypes.string
|
|
597
600
|
};
|
|
@@ -787,7 +790,7 @@ var OptionsMenuList = /** @class */ (function (_super) {
|
|
|
787
790
|
/* eslint-enable @typescript-eslint/no-unused-vars */
|
|
788
791
|
var items = React__default.Children.toArray(children).map(function (child, i) {
|
|
789
792
|
var _a = child.props, className = _a.className, other = tslib.__rest(_a, ["className"]);
|
|
790
|
-
return React__default.cloneElement(child, tslib.__assign({ key: "list-item-"
|
|
793
|
+
return React__default.cloneElement(child, tslib.__assign({ key: "list-item-".concat(i), className: classNames('OptionsMenu__list-item', className), tabIndex: -1, role: 'menuitem', ref: function (el) { return (_this.itemRefs[i] = el); } }, other));
|
|
791
794
|
});
|
|
792
795
|
// Key event is being handled in componentDidMount
|
|
793
796
|
/* eslint-disable jsx-a11y/click-events-have-key-events */
|
|
@@ -1167,7 +1170,8 @@ var SideBar = /** @class */ (function (_super) {
|
|
|
1167
1170
|
setTimeout(function () {
|
|
1168
1171
|
var _a, _b;
|
|
1169
1172
|
_this.setState({ animateClass: second });
|
|
1170
|
-
var firstFocusable = show &&
|
|
1173
|
+
var firstFocusable = show &&
|
|
1174
|
+
((_b = (_a = _this.navList) === null || _a === void 0 ? void 0 : _a.current) === null || _b === void 0 ? void 0 : _b.querySelector(focusableSelector));
|
|
1171
1175
|
if (firstFocusable) {
|
|
1172
1176
|
firstFocusable.focus();
|
|
1173
1177
|
}
|
|
@@ -1216,6 +1220,7 @@ SideBarItem.defaultProps = {
|
|
|
1216
1220
|
autoClickLink: true
|
|
1217
1221
|
};
|
|
1218
1222
|
SideBarItem.propTypes = {
|
|
1223
|
+
// @ts-expect-error
|
|
1219
1224
|
children: PropTypes.node.isRequired,
|
|
1220
1225
|
autoClickLink: PropTypes.bool
|
|
1221
1226
|
};
|
|
@@ -1305,7 +1310,7 @@ var Dialog = /** @class */ (function (_super) {
|
|
|
1305
1310
|
var close = !forceAction ? (React__default.createElement("button", { className: "Dialog__close", type: "button", onClick: this.close },
|
|
1306
1311
|
React__default.createElement(Icon, { type: "close", "aria-hidden": "true" }),
|
|
1307
1312
|
React__default.createElement(Offscreen, null, closeButtonText))) : null;
|
|
1308
|
-
var Heading = "h"
|
|
1313
|
+
var Heading = "h".concat(typeof heading === 'object' && 'level' in heading && !!heading.level
|
|
1309
1314
|
? heading.level
|
|
1310
1315
|
: 2);
|
|
1311
1316
|
var Dialog = (React__default.createElement(FocusTrap, { focusTrapOptions: {
|
|
@@ -1464,7 +1469,7 @@ var SkipLink = /** @class */ (function (_super) {
|
|
|
1464
1469
|
target: function (props, propName, componentName) {
|
|
1465
1470
|
var value = props[propName];
|
|
1466
1471
|
if (!value || typeof value !== 'string' || value[0] !== '#') {
|
|
1467
|
-
return new Error("Invalid prop "
|
|
1472
|
+
return new Error("Invalid prop ".concat(propName, " supplied to ").concat(componentName, " (must be string starting with \"#\")"));
|
|
1468
1473
|
}
|
|
1469
1474
|
},
|
|
1470
1475
|
skipText: PropTypes.string,
|
|
@@ -1480,6 +1485,8 @@ var Button = React.forwardRef(function (_a, ref) {
|
|
|
1480
1485
|
'Button--secondary': variant === 'secondary',
|
|
1481
1486
|
'Button--error': variant === 'error',
|
|
1482
1487
|
Link: variant === 'link',
|
|
1488
|
+
Tag: variant === 'tag',
|
|
1489
|
+
'Button--tag': variant === 'tag',
|
|
1483
1490
|
'Button--thin': thin
|
|
1484
1491
|
}), ref: ref || buttonRef }, other), children));
|
|
1485
1492
|
});
|
|
@@ -1609,8 +1616,8 @@ function Tooltip(_a) {
|
|
|
1609
1616
|
targetElement === null || targetElement === void 0 ? void 0 : targetElement.setAttribute(association, [id, attrText].filter(Boolean).join(' '));
|
|
1610
1617
|
}
|
|
1611
1618
|
}, [targetElement, id]);
|
|
1612
|
-
return (showTooltip || hideElementOnHidden) && isBrowser()
|
|
1613
|
-
? reactDom.createPortal(React__default.createElement("div", tslib.__assign({ id: id, className: classNames('Tooltip', "Tooltip--"
|
|
1619
|
+
return (React__default.createElement(React__default.Fragment, null, (showTooltip || hideElementOnHidden) && isBrowser()
|
|
1620
|
+
? reactDom.createPortal(React__default.createElement("div", tslib.__assign({ id: id, className: classNames('Tooltip', "Tooltip--".concat(placement), className, {
|
|
1614
1621
|
TooltipInfo: variant === 'info',
|
|
1615
1622
|
'Tooltip--hidden': !showTooltip && hideElementOnHidden,
|
|
1616
1623
|
'Tooltip--big': variant === 'big'
|
|
@@ -1618,7 +1625,7 @@ function Tooltip(_a) {
|
|
|
1618
1625
|
variant !== 'big' && (React__default.createElement("div", { className: "TooltipArrow", ref: setArrowElement, style: styles.arrow })),
|
|
1619
1626
|
children), (portal && 'current' in portal ? portal.current : portal) ||
|
|
1620
1627
|
document.body)
|
|
1621
|
-
: null;
|
|
1628
|
+
: null));
|
|
1622
1629
|
}
|
|
1623
1630
|
Tooltip.displayName = 'Tooltip';
|
|
1624
1631
|
Tooltip.propTypes = {
|
|
@@ -1681,6 +1688,7 @@ IconButton.propTypes = {
|
|
|
1681
1688
|
as: PropTypes.elementType,
|
|
1682
1689
|
// @ts-expect-error
|
|
1683
1690
|
icon: PropTypes.string.isRequired,
|
|
1691
|
+
// @ts-expect-error
|
|
1684
1692
|
label: PropTypes.node.isRequired,
|
|
1685
1693
|
// @ts-expect-error
|
|
1686
1694
|
tooltipPlacement: PropTypes.string,
|
|
@@ -1695,7 +1703,7 @@ IconButton.displayName = 'IconButton';
|
|
|
1695
1703
|
var i = 0;
|
|
1696
1704
|
var randomId = function () {
|
|
1697
1705
|
var num = Math.floor(Math.random() * 10000) + 1;
|
|
1698
|
-
return "x_"
|
|
1706
|
+
return "x_".concat(i++, "_").concat(num);
|
|
1699
1707
|
};
|
|
1700
1708
|
|
|
1701
1709
|
/*
|
|
@@ -1790,16 +1798,15 @@ var Pointout = /** @class */ (function (_super) {
|
|
|
1790
1798
|
visibleFocusable[elementIndex].classList.remove('Pointout--focus-active');
|
|
1791
1799
|
};
|
|
1792
1800
|
_this.positionRelativeToTarget = function () {
|
|
1793
|
-
var _a,
|
|
1794
|
-
var _c = _this.props, target = _c.target, portal = _c.portal, arrowPosition = _c.arrowPosition, position = _c.position;
|
|
1801
|
+
var _a = _this.props, target = _a.target, portal = _a.portal, arrowPosition = _a.arrowPosition, position = _a.position;
|
|
1795
1802
|
if (!target) {
|
|
1796
1803
|
return;
|
|
1797
1804
|
}
|
|
1798
|
-
var targetNode = (
|
|
1805
|
+
var targetNode = (target === null || target === void 0 ? void 0 : target.current) ||
|
|
1799
1806
|
target;
|
|
1800
|
-
var portalNode = (
|
|
1807
|
+
var portalNode = (portal === null || portal === void 0 ? void 0 : portal.current) ||
|
|
1801
1808
|
portal;
|
|
1802
|
-
var
|
|
1809
|
+
var _b = targetNode.getBoundingClientRect(), top = _b.top, left = _b.left, width = _b.width, height = _b.height;
|
|
1803
1810
|
if (portalNode && portalNode !== document.body) {
|
|
1804
1811
|
// If the portal is not placed on document.body
|
|
1805
1812
|
// position the FTPO relative to the portal
|
|
@@ -1807,48 +1814,48 @@ var Pointout = /** @class */ (function (_super) {
|
|
|
1807
1814
|
top -= rect.top - portalNode.scrollTop;
|
|
1808
1815
|
left -= rect.left - portalNode.scrollLeft;
|
|
1809
1816
|
}
|
|
1810
|
-
var
|
|
1817
|
+
var _c = tslib.__read(arrowPosition.split('-'), 1), arrowBoxSide = _c[0];
|
|
1811
1818
|
var style;
|
|
1812
1819
|
switch (arrowBoxSide) {
|
|
1813
1820
|
case 'right':
|
|
1814
1821
|
style = {
|
|
1815
|
-
left: left
|
|
1816
|
-
top: (position === 'center'
|
|
1822
|
+
left: "".concat(left, "px"),
|
|
1823
|
+
top: "".concat(position === 'center'
|
|
1817
1824
|
? top + height / 2
|
|
1818
1825
|
: position === 'start'
|
|
1819
1826
|
? top
|
|
1820
|
-
: top + height
|
|
1827
|
+
: top + height, "px")
|
|
1821
1828
|
};
|
|
1822
1829
|
break;
|
|
1823
1830
|
case 'bottom':
|
|
1824
1831
|
style = {
|
|
1825
|
-
top: top
|
|
1826
|
-
left: (position === 'center'
|
|
1832
|
+
top: "".concat(top, "px"),
|
|
1833
|
+
left: "".concat(position === 'center'
|
|
1827
1834
|
? left + width / 2
|
|
1828
1835
|
: position === 'start'
|
|
1829
1836
|
? left
|
|
1830
|
-
: left + width
|
|
1837
|
+
: left + width, "px")
|
|
1831
1838
|
};
|
|
1832
1839
|
break;
|
|
1833
1840
|
case 'left':
|
|
1834
1841
|
style = {
|
|
1835
|
-
left: left + width
|
|
1836
|
-
top: (position === 'center'
|
|
1842
|
+
left: "".concat(left + width, "px"),
|
|
1843
|
+
top: "".concat(position === 'center'
|
|
1837
1844
|
? top + height / 2
|
|
1838
1845
|
: position === 'start'
|
|
1839
1846
|
? top
|
|
1840
|
-
: top + height
|
|
1847
|
+
: top + height, "px")
|
|
1841
1848
|
};
|
|
1842
1849
|
break;
|
|
1843
1850
|
case 'top':
|
|
1844
1851
|
default:
|
|
1845
1852
|
style = {
|
|
1846
|
-
top: top + height
|
|
1847
|
-
left: (position === 'center'
|
|
1853
|
+
top: "".concat(top + height, "px"),
|
|
1854
|
+
left: "".concat(position === 'center'
|
|
1848
1855
|
? left + width / 2
|
|
1849
1856
|
: position === 'start'
|
|
1850
1857
|
? left
|
|
1851
|
-
: left + width
|
|
1858
|
+
: left + width, "px")
|
|
1852
1859
|
};
|
|
1853
1860
|
break;
|
|
1854
1861
|
}
|
|
@@ -1860,7 +1867,7 @@ var Pointout = /** @class */ (function (_super) {
|
|
|
1860
1867
|
}
|
|
1861
1868
|
Pointout.prototype.getFocusableElements = function (root) {
|
|
1862
1869
|
return root
|
|
1863
|
-
? Array.from(root.querySelectorAll(focusable
|
|
1870
|
+
? Array.from(root.querySelectorAll("".concat(focusable, ", [data-focusable]")))
|
|
1864
1871
|
: [];
|
|
1865
1872
|
};
|
|
1866
1873
|
Pointout.prototype.componentDidMount = function () {
|
|
@@ -1930,11 +1937,11 @@ var Pointout = /** @class */ (function (_super) {
|
|
|
1930
1937
|
'Pointout--no-arrow': noArrow,
|
|
1931
1938
|
'Pointout--auto': !!target
|
|
1932
1939
|
},
|
|
1933
|
-
_a["Pointout__arrow--"
|
|
1934
|
-
_a["Pointout--"
|
|
1940
|
+
_a["Pointout__arrow--".concat(arrowPosition)] = !!arrowPosition && !noArrow,
|
|
1941
|
+
_a["Pointout--".concat(position)] = !!target,
|
|
1935
1942
|
_a)), style: style, role: target ? undefined : 'region', "aria-labelledby": heading ? headingId : undefined, "aria-hidden": !!target && !disableOffscreenPointout, ref: function (el) { return (_this.visibleRef = el); } },
|
|
1936
1943
|
noArrow ? null : (React__default.createElement("div", { className: classNames('Pointout__arrow', (_b = {},
|
|
1937
|
-
_b["Pointout__arrow--"
|
|
1944
|
+
_b["Pointout__arrow--".concat(arrowPosition)] = !!arrowPosition && !noArrow,
|
|
1938
1945
|
_b)) },
|
|
1939
1946
|
React__default.createElement("div", { className: "Pointout__arrow-pointer" }))),
|
|
1940
1947
|
React__default.createElement("div", { className: "Pointout__box" },
|
|
@@ -2115,7 +2122,7 @@ var Toast = /** @class */ (function (_super) {
|
|
|
2115
2122
|
var scrim = type === 'action-needed' && show ? (React__default.createElement("div", { className: "Scrim--light Scrim--show Scrim--fade-in" })) : null;
|
|
2116
2123
|
var defaultProps = {
|
|
2117
2124
|
tabIndex: -1,
|
|
2118
|
-
className: "Toast Toast--"
|
|
2125
|
+
className: "Toast Toast--".concat(typeMap[type].className, " ").concat(animationClass)
|
|
2119
2126
|
};
|
|
2120
2127
|
if (!focus) {
|
|
2121
2128
|
defaultProps.role = 'alert';
|
|
@@ -2301,9 +2308,10 @@ var Select = React__default.forwardRef(function (_a, ref) {
|
|
|
2301
2308
|
'Field__select--disabled': disabled,
|
|
2302
2309
|
'Field--has-error': !!error
|
|
2303
2310
|
}) },
|
|
2304
|
-
React__default.createElement("select", tslib.__assign({ ref: ref, id: selectId, disabled: disabled, required: required, onChange: handleChange }, dynamicProps, rest), (options === null || options === void 0 ? void 0 : options.length)
|
|
2305
|
-
|
|
2306
|
-
|
|
2311
|
+
React__default.createElement("select", tslib.__assign({ ref: ref, id: selectId, disabled: disabled, required: required, onChange: handleChange }, dynamicProps, rest), (options === null || options === void 0 ? void 0 : options.length)
|
|
2312
|
+
? options.map(function (option) {
|
|
2313
|
+
return (React__default.createElement("option", { className: "Field__option", key: option.key, value: option.value, disabled: option.disabled }, option.label || option.value));
|
|
2314
|
+
})
|
|
2307
2315
|
: children),
|
|
2308
2316
|
React__default.createElement("div", { className: "arrow-down" })),
|
|
2309
2317
|
error && (React__default.createElement("div", { id: errorId, className: "Error" }, error))));
|
|
@@ -2352,7 +2360,7 @@ var RadioGroup = function (_a) {
|
|
|
2352
2360
|
var _a;
|
|
2353
2361
|
handleChange(radioValue);
|
|
2354
2362
|
onChange(radio, (_a = inputs.current) === null || _a === void 0 ? void 0 : _a[index]);
|
|
2355
|
-
}, disabled: disabled, checked: isChecked, "aria-describedby": labelDescription ? id
|
|
2363
|
+
}, disabled: disabled, checked: isChecked, "aria-describedby": labelDescription ? "".concat(id, "Desc") : undefined }, other)),
|
|
2356
2364
|
React__default.createElement("label", { htmlFor: id, className: classNames('Field__label', {
|
|
2357
2365
|
'Field__label--disabled': disabled
|
|
2358
2366
|
}) }, label),
|
|
@@ -2360,7 +2368,7 @@ var RadioGroup = function (_a) {
|
|
|
2360
2368
|
'Radio__overlay--focused': isFocused,
|
|
2361
2369
|
'Radio__overlay--disabled': disabled
|
|
2362
2370
|
}), type: isChecked ? 'radio-checked' : 'radio-unchecked', "aria-hidden": "true", onClick: function () { return onRadioClick(index); } }),
|
|
2363
|
-
labelDescription && (React__default.createElement("span", { id: id
|
|
2371
|
+
labelDescription && (React__default.createElement("span", { id: "".concat(id, "Desc"), className: classNames('Field__labelDescription', {
|
|
2364
2372
|
'Field__labelDescription--disabled': disabled
|
|
2365
2373
|
}) }, labelDescription))));
|
|
2366
2374
|
});
|
|
@@ -2380,7 +2388,7 @@ RadioGroup.propTypes = {
|
|
|
2380
2388
|
})).isRequired,
|
|
2381
2389
|
hasLabel: function (props, propName, componentName) {
|
|
2382
2390
|
if (!props['aria-label'] && !props['aria-labelledby']) {
|
|
2383
|
-
return new Error(componentName
|
|
2391
|
+
return new Error("".concat(componentName, " must have an \"aria-label\" or \"aria-labelledby\" prop"));
|
|
2384
2392
|
}
|
|
2385
2393
|
},
|
|
2386
2394
|
className: PropTypes.string,
|
|
@@ -2499,7 +2507,7 @@ RadioCardGroup.propTypes = {
|
|
|
2499
2507
|
})).isRequired,
|
|
2500
2508
|
hasLabel: function (props, propName, componentName) {
|
|
2501
2509
|
if (!props['aria-label'] && !props['aria-labelledby']) {
|
|
2502
|
-
return new Error(componentName
|
|
2510
|
+
return new Error("".concat(componentName, " must have an \"aria-label\" or \"aria-labelledby\" prop"));
|
|
2503
2511
|
}
|
|
2504
2512
|
},
|
|
2505
2513
|
className: PropTypes.string,
|
|
@@ -2729,7 +2737,7 @@ var ExpandCollapsePanel = /** @class */ (function (_super) {
|
|
|
2729
2737
|
if (!_this.styleTag) {
|
|
2730
2738
|
_this.styleTag = injectStyleTag();
|
|
2731
2739
|
}
|
|
2732
|
-
setStyle(_this.styleTag, "\n @keyframes expandOpenAnimation {\n 0% { opacity: 0; height: 0; }\n 100% { opacity: 1; height: "
|
|
2740
|
+
setStyle(_this.styleTag, "\n @keyframes expandOpenAnimation {\n 0% { opacity: 0; height: 0; }\n 100% { opacity: 1; height: ".concat(rect.height, "px; }\n }\n\n .cauldron-expand-open {\n will-change: opacity, height;\n overflow: hidden;\n animation: expandOpenAnimation ease-in-out ").concat(animationTiming, "ms forwards;\n }\n "));
|
|
2733
2741
|
_this.setState({ animationClass: 'cauldron-expand-open' }, function () {
|
|
2734
2742
|
setTimeout(function () {
|
|
2735
2743
|
_this.setState({ animationClass: '', isAnimating: false });
|
|
@@ -2750,7 +2758,7 @@ var ExpandCollapsePanel = /** @class */ (function (_super) {
|
|
|
2750
2758
|
var rect = panel === null || panel === void 0 ? void 0 : panel.getBoundingClientRect();
|
|
2751
2759
|
if (!rect)
|
|
2752
2760
|
return;
|
|
2753
|
-
setStyle(_this.styleTag, "\n @keyframes collapseCloseAnimation {\n 0% { opacity: 1; height: "
|
|
2761
|
+
setStyle(_this.styleTag, "\n @keyframes collapseCloseAnimation {\n 0% { opacity: 1; height: ".concat(rect.height, "px; }\n 100% { opacity: 0; height: 0; }\n }\n\n .cauldron-collapse-close {\n will-change: opacity, height;\n overflow: hidden;\n animation: collapseCloseAnimation ease-in-out ").concat(animationTiming, "ms forwards;\n }\n "));
|
|
2754
2762
|
_this.setState({ animationClass: 'cauldron-collapse-close' }, function () {
|
|
2755
2763
|
setTimeout(function () {
|
|
2756
2764
|
_this.setState({ animationClass: '', isAnimating: false });
|
|
@@ -2918,27 +2926,6 @@ function _defineProperty(obj, key, value) {
|
|
|
2918
2926
|
|
|
2919
2927
|
var defineProperty = _defineProperty;
|
|
2920
2928
|
|
|
2921
|
-
function _objectSpread(target) {
|
|
2922
|
-
for (var i = 1; i < arguments.length; i++) {
|
|
2923
|
-
var source = arguments[i] != null ? Object(arguments[i]) : {};
|
|
2924
|
-
var ownKeys = Object.keys(source);
|
|
2925
|
-
|
|
2926
|
-
if (typeof Object.getOwnPropertySymbols === 'function') {
|
|
2927
|
-
ownKeys = ownKeys.concat(Object.getOwnPropertySymbols(source).filter(function (sym) {
|
|
2928
|
-
return Object.getOwnPropertyDescriptor(source, sym).enumerable;
|
|
2929
|
-
}));
|
|
2930
|
-
}
|
|
2931
|
-
|
|
2932
|
-
ownKeys.forEach(function (key) {
|
|
2933
|
-
defineProperty(target, key, source[key]);
|
|
2934
|
-
});
|
|
2935
|
-
}
|
|
2936
|
-
|
|
2937
|
-
return target;
|
|
2938
|
-
}
|
|
2939
|
-
|
|
2940
|
-
var objectSpread = _objectSpread;
|
|
2941
|
-
|
|
2942
2929
|
function createCommonjsModule(fn, basedir, module) {
|
|
2943
2930
|
return module = {
|
|
2944
2931
|
path: basedir,
|
|
@@ -2975,6 +2962,9 @@ function _extends() {
|
|
|
2975
2962
|
module.exports = _extends;
|
|
2976
2963
|
});
|
|
2977
2964
|
|
|
2965
|
+
function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
|
|
2966
|
+
|
|
2967
|
+
function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys(Object(source), !0).forEach(function (key) { defineProperty(target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; }
|
|
2978
2968
|
//
|
|
2979
2969
|
// Super simple, non-algorithmic solution since the
|
|
2980
2970
|
// number of class names will not be greater than 4
|
|
@@ -3020,7 +3010,7 @@ function createStyleObject(classNames) {
|
|
|
3020
3010
|
});
|
|
3021
3011
|
var classNamesCombinations = getClassNameCombinations(nonTokenClassNames);
|
|
3022
3012
|
return classNamesCombinations.reduce(function (styleObject, className) {
|
|
3023
|
-
return
|
|
3013
|
+
return _objectSpread(_objectSpread({}, styleObject), stylesheet[className]);
|
|
3024
3014
|
}, elementStyle);
|
|
3025
3015
|
}
|
|
3026
3016
|
function createClassNameString(classNames) {
|
|
@@ -3059,7 +3049,7 @@ function createElement(_ref) {
|
|
|
3059
3049
|
var props;
|
|
3060
3050
|
|
|
3061
3051
|
if (!useInlineStyles) {
|
|
3062
|
-
props =
|
|
3052
|
+
props = _objectSpread(_objectSpread({}, properties), {}, {
|
|
3063
3053
|
className: createClassNameString(properties.className)
|
|
3064
3054
|
});
|
|
3065
3055
|
} else {
|
|
@@ -3074,14 +3064,14 @@ function createElement(_ref) {
|
|
|
3074
3064
|
var className = properties.className && startingClassName.concat(properties.className.filter(function (className) {
|
|
3075
3065
|
return !allStylesheetSelectors.includes(className);
|
|
3076
3066
|
}));
|
|
3077
|
-
props =
|
|
3067
|
+
props = _objectSpread(_objectSpread({}, properties), {}, {
|
|
3078
3068
|
className: createClassNameString(className) || undefined,
|
|
3079
3069
|
style: createStyleObject(properties.className, Object.assign({}, properties.style, style), stylesheet)
|
|
3080
3070
|
});
|
|
3081
3071
|
}
|
|
3082
3072
|
|
|
3083
3073
|
var children = childrenCreator(node.children);
|
|
3084
|
-
return React__default.createElement(TagName, _extends_1({
|
|
3074
|
+
return /*#__PURE__*/React__default.createElement(TagName, _extends_1({
|
|
3085
3075
|
key: key
|
|
3086
3076
|
}, props), children);
|
|
3087
3077
|
}
|
|
@@ -3092,6 +3082,11 @@ var checkForListedLanguage = (function (astGenerator, language) {
|
|
|
3092
3082
|
return langs.indexOf(language) !== -1;
|
|
3093
3083
|
});
|
|
3094
3084
|
|
|
3085
|
+
var _excluded = ["language", "children", "style", "customStyle", "codeTagProps", "useInlineStyles", "showLineNumbers", "showInlineLineNumbers", "startingLineNumber", "lineNumberContainerStyle", "lineNumberStyle", "wrapLines", "wrapLongLines", "lineProps", "renderer", "PreTag", "CodeTag", "code", "astGenerator"];
|
|
3086
|
+
|
|
3087
|
+
function ownKeys$1(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
|
|
3088
|
+
|
|
3089
|
+
function _objectSpread$1(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys$1(Object(source), !0).forEach(function (key) { defineProperty(target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys$1(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; }
|
|
3095
3090
|
var newLineRegex = /\n/g;
|
|
3096
3091
|
|
|
3097
3092
|
function getNewLines(str) {
|
|
@@ -3104,7 +3099,7 @@ function getAllLineNumbers(_ref) {
|
|
|
3104
3099
|
style = _ref.style;
|
|
3105
3100
|
return lines.map(function (_, i) {
|
|
3106
3101
|
var number = i + startingLineNumber;
|
|
3107
|
-
return React__default.createElement("span", {
|
|
3102
|
+
return /*#__PURE__*/React__default.createElement("span", {
|
|
3108
3103
|
key: "line-".concat(i),
|
|
3109
3104
|
className: "react-syntax-highlighter-line-number",
|
|
3110
3105
|
style: typeof style === 'function' ? style(number) : style
|
|
@@ -3117,13 +3112,13 @@ function AllLineNumbers(_ref2) {
|
|
|
3117
3112
|
codeStyle = _ref2.codeStyle,
|
|
3118
3113
|
_ref2$containerStyle = _ref2.containerStyle,
|
|
3119
3114
|
containerStyle = _ref2$containerStyle === void 0 ? {
|
|
3120
|
-
float: 'left',
|
|
3115
|
+
"float": 'left',
|
|
3121
3116
|
paddingRight: '10px'
|
|
3122
3117
|
} : _ref2$containerStyle,
|
|
3123
3118
|
_ref2$numberStyle = _ref2.numberStyle,
|
|
3124
3119
|
numberStyle = _ref2$numberStyle === void 0 ? {} : _ref2$numberStyle,
|
|
3125
3120
|
startingLineNumber = _ref2.startingLineNumber;
|
|
3126
|
-
return React__default.createElement("code", {
|
|
3121
|
+
return /*#__PURE__*/React__default.createElement("code", {
|
|
3127
3122
|
style: Object.assign({}, codeStyle, containerStyle)
|
|
3128
3123
|
}, getAllLineNumbers({
|
|
3129
3124
|
lines: codeString.replace(/\n$/, '').split('\n'),
|
|
@@ -3164,7 +3159,7 @@ function assembleLineNumberStyles(lineNumberStyle, lineNumber, largestLineNumber
|
|
|
3164
3159
|
|
|
3165
3160
|
var customLineNumberStyle = typeof lineNumberStyle === 'function' ? lineNumberStyle(lineNumber) : lineNumberStyle; // combine
|
|
3166
3161
|
|
|
3167
|
-
var assembledStyle =
|
|
3162
|
+
var assembledStyle = _objectSpread$1(_objectSpread$1({}, defaultLineNumberStyle), customLineNumberStyle);
|
|
3168
3163
|
|
|
3169
3164
|
return assembledStyle;
|
|
3170
3165
|
}
|
|
@@ -3190,7 +3185,7 @@ function createLineElement(_ref3) {
|
|
|
3190
3185
|
}
|
|
3191
3186
|
|
|
3192
3187
|
if (wrapLongLines & showLineNumbers) {
|
|
3193
|
-
properties.style =
|
|
3188
|
+
properties.style = _objectSpread$1(_objectSpread$1({}, properties.style), {}, {
|
|
3194
3189
|
display: 'flex'
|
|
3195
3190
|
});
|
|
3196
3191
|
}
|
|
@@ -3217,7 +3212,9 @@ function flattenCodeTree(tree) {
|
|
|
3217
3212
|
}));
|
|
3218
3213
|
} else if (node.children) {
|
|
3219
3214
|
var classNames = className.concat(node.properties.className);
|
|
3220
|
-
|
|
3215
|
+
flattenCodeTree(node.children, classNames).forEach(function (i) {
|
|
3216
|
+
return newTree.push(i);
|
|
3217
|
+
});
|
|
3221
3218
|
}
|
|
3222
3219
|
}
|
|
3223
3220
|
|
|
@@ -3286,19 +3283,19 @@ function processLines(codeTree, wrapLines, lineProps, showLineNumbers, showInlin
|
|
|
3286
3283
|
newTree.push(_line); // if it's the last line
|
|
3287
3284
|
} else if (i === splitValue.length - 1) {
|
|
3288
3285
|
var stringChild = tree[index + 1] && tree[index + 1].children && tree[index + 1].children[0];
|
|
3286
|
+
var lastLineInPreviousSpan = {
|
|
3287
|
+
type: 'text',
|
|
3288
|
+
value: "".concat(text)
|
|
3289
|
+
};
|
|
3289
3290
|
|
|
3290
3291
|
if (stringChild) {
|
|
3291
|
-
var lastLineInPreviousSpan = {
|
|
3292
|
-
type: 'text',
|
|
3293
|
-
value: "".concat(text)
|
|
3294
|
-
};
|
|
3295
3292
|
var newElem = createLineElement({
|
|
3296
3293
|
children: [lastLineInPreviousSpan],
|
|
3297
3294
|
className: node.properties.className
|
|
3298
3295
|
});
|
|
3299
3296
|
tree.splice(index + 1, 0, newElem);
|
|
3300
3297
|
} else {
|
|
3301
|
-
var _children2 = [
|
|
3298
|
+
var _children2 = [lastLineInPreviousSpan];
|
|
3302
3299
|
|
|
3303
3300
|
var _line2 = createLine(_children2, lineNumber, node.properties.className);
|
|
3304
3301
|
|
|
@@ -3404,7 +3401,7 @@ function highlight (defaultAstGenerator, defaultStyle) {
|
|
|
3404
3401
|
_ref7$codeTagProps = _ref7.codeTagProps,
|
|
3405
3402
|
codeTagProps = _ref7$codeTagProps === void 0 ? {
|
|
3406
3403
|
className: language ? "language-".concat(language) : undefined,
|
|
3407
|
-
style:
|
|
3404
|
+
style: _objectSpread$1(_objectSpread$1({}, style['code[class*="language-"]']), style["code[class*=\"language-".concat(language, "\"]")])
|
|
3408
3405
|
} : _ref7$codeTagProps,
|
|
3409
3406
|
_ref7$useInlineStyles = _ref7.useInlineStyles,
|
|
3410
3407
|
useInlineStyles = _ref7$useInlineStyles === void 0 ? true : _ref7$useInlineStyles,
|
|
@@ -3428,12 +3425,12 @@ function highlight (defaultAstGenerator, defaultStyle) {
|
|
|
3428
3425
|
_ref7$CodeTag = _ref7.CodeTag,
|
|
3429
3426
|
CodeTag = _ref7$CodeTag === void 0 ? 'code' : _ref7$CodeTag,
|
|
3430
3427
|
_ref7$code = _ref7.code,
|
|
3431
|
-
code = _ref7$code === void 0 ? Array.isArray(children) ? children[0] : children : _ref7$code,
|
|
3428
|
+
code = _ref7$code === void 0 ? (Array.isArray(children) ? children[0] : children) || '' : _ref7$code,
|
|
3432
3429
|
astGenerator = _ref7.astGenerator,
|
|
3433
|
-
rest = objectWithoutProperties(_ref7,
|
|
3430
|
+
rest = objectWithoutProperties(_ref7, _excluded);
|
|
3434
3431
|
|
|
3435
3432
|
astGenerator = astGenerator || defaultAstGenerator;
|
|
3436
|
-
var allLineNumbers = showLineNumbers ? React__default.createElement(AllLineNumbers, {
|
|
3433
|
+
var allLineNumbers = showLineNumbers ? /*#__PURE__*/React__default.createElement(AllLineNumbers, {
|
|
3437
3434
|
containerStyle: lineNumberContainerStyle,
|
|
3438
3435
|
codeStyle: codeTagProps.style || {},
|
|
3439
3436
|
numberStyle: lineNumberStyle,
|
|
@@ -3451,8 +3448,18 @@ function highlight (defaultAstGenerator, defaultStyle) {
|
|
|
3451
3448
|
style: Object.assign({}, customStyle)
|
|
3452
3449
|
});
|
|
3453
3450
|
|
|
3451
|
+
if (wrapLongLines) {
|
|
3452
|
+
codeTagProps.style = _objectSpread$1(_objectSpread$1({}, codeTagProps.style), {}, {
|
|
3453
|
+
whiteSpace: 'pre-wrap'
|
|
3454
|
+
});
|
|
3455
|
+
} else {
|
|
3456
|
+
codeTagProps.style = _objectSpread$1(_objectSpread$1({}, codeTagProps.style), {}, {
|
|
3457
|
+
whiteSpace: 'pre'
|
|
3458
|
+
});
|
|
3459
|
+
}
|
|
3460
|
+
|
|
3454
3461
|
if (!astGenerator) {
|
|
3455
|
-
return React__default.createElement(PreTag, preProps, allLineNumbers, React__default.createElement(CodeTag, codeTagProps, code));
|
|
3462
|
+
return /*#__PURE__*/React__default.createElement(PreTag, preProps, allLineNumbers, /*#__PURE__*/React__default.createElement(CodeTag, codeTagProps, code));
|
|
3456
3463
|
}
|
|
3457
3464
|
/*
|
|
3458
3465
|
* Some custom renderers rely on individual row elements so we need to turn wrapLines on
|
|
@@ -3480,18 +3487,7 @@ function highlight (defaultAstGenerator, defaultStyle) {
|
|
|
3480
3487
|
|
|
3481
3488
|
var largestLineNumber = codeTree.value.length + startingLineNumber;
|
|
3482
3489
|
var rows = processLines(codeTree, wrapLines, lineProps, showLineNumbers, showInlineLineNumbers, startingLineNumber, largestLineNumber, lineNumberStyle, wrapLongLines);
|
|
3483
|
-
|
|
3484
|
-
if (wrapLongLines) {
|
|
3485
|
-
codeTagProps.style = objectSpread({}, codeTagProps.style, {
|
|
3486
|
-
whiteSpace: 'pre-wrap'
|
|
3487
|
-
});
|
|
3488
|
-
} else {
|
|
3489
|
-
codeTagProps.style = objectSpread({}, codeTagProps.style, {
|
|
3490
|
-
whiteSpace: 'pre'
|
|
3491
|
-
});
|
|
3492
|
-
}
|
|
3493
|
-
|
|
3494
|
-
return React__default.createElement(PreTag, preProps, React__default.createElement(CodeTag, codeTagProps, !showInlineLineNumbers && allLineNumbers, renderer({
|
|
3490
|
+
return /*#__PURE__*/React__default.createElement(PreTag, preProps, /*#__PURE__*/React__default.createElement(CodeTag, codeTagProps, !showInlineLineNumbers && allLineNumbers, renderer({
|
|
3495
3491
|
rows: rows,
|
|
3496
3492
|
stylesheet: style,
|
|
3497
3493
|
useInlineStyles: useInlineStyles
|
|
@@ -8056,15 +8052,19 @@ SyntaxHighlighter.registerLanguage('javascript', javascript_1);
|
|
|
8056
8052
|
SyntaxHighlighter.registerLanguage('css', css_1);
|
|
8057
8053
|
SyntaxHighlighter.registerLanguage('html', xml_1);
|
|
8058
8054
|
SyntaxHighlighter.registerLanguage('yaml', yaml_1);
|
|
8055
|
+
// HACK: This is a workaround for a bug in react-syntax-highlighter's types.
|
|
8056
|
+
var Highlighter = SyntaxHighlighter;
|
|
8059
8057
|
var Code = function (_a) {
|
|
8060
8058
|
var children = _a.children, className = _a.className, tabIndex = _a.tabIndex, props = tslib.__rest(_a, ["children", "className", "tabIndex"]);
|
|
8061
|
-
return (React__default.createElement(
|
|
8059
|
+
return (React__default.createElement(React__default.Fragment, null,
|
|
8060
|
+
React__default.createElement(Highlighter, tslib.__assign({}, props, { useInlineStyles: false, className: classNames('Code', className), tabIndex: tabIndex }), children)));
|
|
8062
8061
|
};
|
|
8063
8062
|
Code.displayName = 'Code';
|
|
8064
8063
|
Code.propTypes = {
|
|
8065
8064
|
children: PropTypes.string.isRequired,
|
|
8066
8065
|
language: PropTypes.oneOf(['javascript', 'css', 'html', 'yaml']),
|
|
8067
|
-
className: PropTypes.string
|
|
8066
|
+
className: PropTypes.string,
|
|
8067
|
+
tabIndex: PropTypes.number
|
|
8068
8068
|
};
|
|
8069
8069
|
|
|
8070
8070
|
function AxeLoader() {
|
|
@@ -8143,6 +8143,7 @@ LoaderOverlay.propTypes = {
|
|
|
8143
8143
|
variant: PropTypes.oneOf(['large', 'small']),
|
|
8144
8144
|
label: PropTypes.string,
|
|
8145
8145
|
focusOnInitialRender: PropTypes.bool,
|
|
8146
|
+
// @ts-expect-error
|
|
8146
8147
|
children: PropTypes.node
|
|
8147
8148
|
};
|
|
8148
8149
|
LoaderOverlay.displayName = 'LoaderOverlay';
|
|
@@ -8262,6 +8263,7 @@ Tab.displayName = 'Tab';
|
|
|
8262
8263
|
Tab.propTypes = {
|
|
8263
8264
|
target: PropTypes.any.isRequired,
|
|
8264
8265
|
id: PropTypes.string,
|
|
8266
|
+
// @ts-expect-error
|
|
8265
8267
|
children: PropTypes.node
|
|
8266
8268
|
};
|
|
8267
8269
|
|
|
@@ -8356,7 +8358,8 @@ var Tabs = function (_a) {
|
|
|
8356
8358
|
React.useEffect(function () {
|
|
8357
8359
|
var _a, _b;
|
|
8358
8360
|
index === activeIndex
|
|
8359
|
-
? (_a = target.current) === null || _a === void 0 ? void 0 : _a.classList.remove('TabPanel--hidden')
|
|
8361
|
+
? (_a = target.current) === null || _a === void 0 ? void 0 : _a.classList.remove('TabPanel--hidden')
|
|
8362
|
+
: (_b = target.current) === null || _b === void 0 ? void 0 : _b.classList.add('TabPanel--hidden');
|
|
8360
8363
|
}, [activeIndex]);
|
|
8361
8364
|
var config = tslib.__assign((_a = { id: id, className: classNames('Tab', {
|
|
8362
8365
|
'Tab--active': selected
|
|
@@ -8396,6 +8399,7 @@ var TabPanel = React.forwardRef(function (_a, ref) {
|
|
|
8396
8399
|
TabPanel.displayName = 'TabPanel';
|
|
8397
8400
|
TabPanel.propTypes = {
|
|
8398
8401
|
id: PropTypes.string,
|
|
8402
|
+
// @ts-expect-error
|
|
8399
8403
|
children: PropTypes.node,
|
|
8400
8404
|
className: PropTypes.string
|
|
8401
8405
|
};
|
|
@@ -8442,12 +8446,12 @@ var Step = function (props) {
|
|
|
8442
8446
|
var liProps;
|
|
8443
8447
|
var isTooltip = isTooltipProps(other);
|
|
8444
8448
|
if (isTooltip) {
|
|
8445
|
-
(_a = other, (tooltip = _a.tooltip, tooltipText = _a.tooltipText
|
|
8449
|
+
(_a = other, (tooltip = _a.tooltip, tooltipText = _a.tooltipText), liProps = tslib.__rest(_a, ["tooltip", "tooltipText"]));
|
|
8446
8450
|
}
|
|
8447
8451
|
else {
|
|
8448
8452
|
liProps = other;
|
|
8449
8453
|
}
|
|
8450
|
-
return (React__default.createElement("li", tslib.__assign({ className: classNames('Stepper__step', "Stepper__step--"
|
|
8454
|
+
return (React__default.createElement("li", tslib.__assign({ className: classNames('Stepper__step', "Stepper__step--".concat(status), className), "aria-current": status === 'current' ? 'step' : 'false' }, liProps),
|
|
8451
8455
|
React__default.createElement("div", { className: "Stepper__step-line" }),
|
|
8452
8456
|
React__default.createElement("div", { className: "Stepper__step-content" }, isTooltip ? (React__default.createElement(TooltipTabstop, { placement: "bottom", tooltip: tooltip,
|
|
8453
8457
|
// the pseudo content (ex: "1") is conveyed
|
|
@@ -8489,7 +8493,7 @@ var Panel = React.forwardRef(function (_a, ref) {
|
|
|
8489
8493
|
if (!headingId) {
|
|
8490
8494
|
return null;
|
|
8491
8495
|
}
|
|
8492
|
-
var HeadingComponent = "h"
|
|
8496
|
+
var HeadingComponent = "h".concat(heading &&
|
|
8493
8497
|
typeof heading === 'object' &&
|
|
8494
8498
|
'level' in heading &&
|
|
8495
8499
|
!!heading.level
|
|
@@ -8507,7 +8511,9 @@ var Panel = React.forwardRef(function (_a, ref) {
|
|
|
8507
8511
|
});
|
|
8508
8512
|
Panel.displayName = 'Panel';
|
|
8509
8513
|
Panel.propTypes = {
|
|
8514
|
+
// @ts-expect-error
|
|
8510
8515
|
children: PropTypes.node.isRequired,
|
|
8516
|
+
// @ts-expect-error
|
|
8511
8517
|
heading: PropTypes.oneOfType([PropTypes.object, PropTypes.node]),
|
|
8512
8518
|
className: PropTypes.string
|
|
8513
8519
|
};
|
|
@@ -8517,7 +8523,7 @@ var IssuePanel = function (_a) {
|
|
|
8517
8523
|
return (React__default.createElement("div", { className: classNames('IssuePanel', className) },
|
|
8518
8524
|
React__default.createElement("div", { className: "IssuePanel__Header" },
|
|
8519
8525
|
title && React__default.createElement("div", { className: "IssuePanel__Header-title" }, title),
|
|
8520
|
-
actions && React__default.createElement("div", { className: "IssuePanel__Header-actions" }, actions)),
|
|
8526
|
+
actions && (React__default.createElement("div", { className: "IssuePanel__Header-actions" }, actions))),
|
|
8521
8527
|
React__default.createElement("div", { className: "IssuePanel__Content" }, children)));
|
|
8522
8528
|
};
|
|
8523
8529
|
IssuePanel.displayName = 'IssuePanel';
|
|
@@ -8530,7 +8536,7 @@ var ProgressBar = React.forwardRef(function (_a, ref) {
|
|
|
8530
8536
|
var _b = _a.progress, progress = _b === void 0 ? 0 : _b, _c = _a.progressMax, progressMax = _c === void 0 ? 100 : _c, _d = _a.progressMin, progressMin = _d === void 0 ? 0 : _d, props = tslib.__rest(_a, ["progress", "progressMax", "progressMin"]);
|
|
8531
8537
|
var className = props.className, otherProps = tslib.__rest(props, ["className"]);
|
|
8532
8538
|
return (React__default.createElement("div", tslib.__assign({ className: classNames('ProgressBar', className), role: "progressbar", "aria-valuemin": progressMin, "aria-valuemax": progressMax, "aria-valuenow": progress, ref: ref }, otherProps),
|
|
8533
|
-
React__default.createElement("div", { className: "ProgressBar--fill", style: { width: Math.min((progress / progressMax) * 100, 100)
|
|
8539
|
+
React__default.createElement("div", { className: "ProgressBar--fill", style: { width: "".concat(Math.min((progress / progressMax) * 100, 100), "%") } })));
|
|
8534
8540
|
});
|
|
8535
8541
|
ProgressBar.displayName = 'ProgressBar';
|
|
8536
8542
|
|
|
@@ -8645,6 +8651,7 @@ var FieldWrap = React__default.forwardRef(function (_a, ref) {
|
|
|
8645
8651
|
});
|
|
8646
8652
|
FieldWrap.displayName = 'FieldWrap';
|
|
8647
8653
|
FieldWrap.propTypes = {
|
|
8654
|
+
// @ts-expect-error
|
|
8648
8655
|
children: PropTypes.node.isRequired,
|
|
8649
8656
|
className: PropTypes.string,
|
|
8650
8657
|
as: PropTypes.string
|
|
@@ -8665,7 +8672,7 @@ var Breadcrumb = React.forwardRef(function (_a, ref) {
|
|
|
8665
8672
|
}
|
|
8666
8673
|
});
|
|
8667
8674
|
return (React__default.createElement("nav", tslib.__assign({ className: classNames('Breadcrumb', className), ref: ref }, props),
|
|
8668
|
-
React__default.createElement("ol", null, childrenWithSeparators.map(function (child, index) { return (React__default.createElement("li", { className: "Breadcrumb__Item", key: "breadcrumb-"
|
|
8675
|
+
React__default.createElement("ol", null, childrenWithSeparators.map(function (child, index) { return (React__default.createElement("li", { className: "Breadcrumb__Item", key: "breadcrumb-".concat(index) }, child)); }))));
|
|
8669
8676
|
});
|
|
8670
8677
|
Breadcrumb.displayName = 'Breadcrumb';
|
|
8671
8678
|
|
|
@@ -8696,6 +8703,11 @@ var TwoColumnPanel = React.forwardRef(function (_a, ref) {
|
|
|
8696
8703
|
var _f = tslib.__read(React.useState(initialCollapsed), 2), isCollapsed = _f[0], setCollapsed = _f[1];
|
|
8697
8704
|
var _g = tslib.__read(React.useState(false), 2), isFocusTrap = _g[0], setIsFocusTrap = _g[1];
|
|
8698
8705
|
var _h = tslib.__read(React.useState(!initialCollapsed), 2), showPanel = _h[0], setShowPanel = _h[1];
|
|
8706
|
+
var toggleButtonRef = React.useRef(null);
|
|
8707
|
+
var closeButtonRef = React.useRef(null);
|
|
8708
|
+
var columnLeftRef = React.useRef(null);
|
|
8709
|
+
var columnRightRef = React.useRef(null);
|
|
8710
|
+
var columnLeft = React__default.Children.toArray(children).find(function (child) { return child.type === ColumnLeft; });
|
|
8699
8711
|
var togglePanel = function () {
|
|
8700
8712
|
if (isCollapsed) {
|
|
8701
8713
|
setShowPanel(true);
|
|
@@ -8713,11 +8725,6 @@ var TwoColumnPanel = React.forwardRef(function (_a, ref) {
|
|
|
8713
8725
|
}
|
|
8714
8726
|
});
|
|
8715
8727
|
};
|
|
8716
|
-
var toggleButtonRef = React.useRef(null);
|
|
8717
|
-
var closeButtonRef = React.useRef(null);
|
|
8718
|
-
var columnLeftRef = React.useRef(null);
|
|
8719
|
-
var columnRightRef = React.useRef(null);
|
|
8720
|
-
var columnLeft = React__default.Children.toArray(children).find(function (child) { return child.type === ColumnLeft; });
|
|
8721
8728
|
// The ColumnLeftComponent will end up being a focus trap when < 720px
|
|
8722
8729
|
// This component also gets unmounted when not visible meaning that any
|
|
8723
8730
|
// aria relationships cannot be set to items inside the component since
|
|
@@ -8732,11 +8739,11 @@ var TwoColumnPanel = React.forwardRef(function (_a, ref) {
|
|
|
8732
8739
|
React__default.createElement("button", { type: "button", onClick: togglePanel, ref: closeButtonRef, "aria-label": hideCollapsedPanelLabel },
|
|
8733
8740
|
React__default.createElement(Icon, { type: "close" })),
|
|
8734
8741
|
React__default.createElement(Tooltip, { target: closeButtonRef, association: "aria-labelledby", hideElementOnHidden: true }, hideCollapsedPanelLabel)));
|
|
8735
|
-
var children_1 = tslib.
|
|
8742
|
+
var children_1 = tslib.__spreadArray([
|
|
8736
8743
|
CloseButton
|
|
8737
|
-
], React__default.Children.toArray(columnLeft.props.children));
|
|
8744
|
+
], tslib.__read(React__default.Children.toArray(columnLeft.props.children)), false);
|
|
8738
8745
|
ColumnLeftComponent = React.cloneElement(columnLeft, { id: id, ref: ref_1, tabIndex: -1 }, children_1.map(function (child, index) {
|
|
8739
|
-
return React.cloneElement(child, { key: "left-"
|
|
8746
|
+
return React.cloneElement(child, { key: "left-".concat(index) });
|
|
8740
8747
|
}));
|
|
8741
8748
|
}
|
|
8742
8749
|
var columnRight = React__default.Children.toArray(children).find(function (child) { return child.type === ColumnRight; });
|
|
@@ -8747,11 +8754,11 @@ var TwoColumnPanel = React.forwardRef(function (_a, ref) {
|
|
|
8747
8754
|
React__default.createElement("button", { type: "button", onClick: togglePanel, ref: toggleButtonRef, "aria-label": !isCollapsed ? hideCollapsedPanelLabel : showCollapsedPanelLabel, "aria-expanded": !isCollapsed, "aria-controls": columnLeftId },
|
|
8748
8755
|
React__default.createElement(Icon, { type: !isCollapsed ? 'chevron-double-left' : 'chevron-double-right' })),
|
|
8749
8756
|
React__default.createElement(Tooltip, { target: toggleButtonRef, association: "aria-labelledby", hideElementOnHidden: true }, !isCollapsed ? hideCollapsedPanelLabel : showCollapsedPanelLabel)));
|
|
8750
|
-
var children_2 = tslib.
|
|
8757
|
+
var children_2 = tslib.__spreadArray([
|
|
8751
8758
|
ToggleButton
|
|
8752
|
-
], React__default.Children.toArray(columnRight.props.children));
|
|
8759
|
+
], tslib.__read(React__default.Children.toArray(columnRight.props.children)), false);
|
|
8753
8760
|
ColumnRightComponent = React.cloneElement(columnRight, { ref: ref_2, tabIndex: -1 }, children_2.map(function (child, index) {
|
|
8754
|
-
return React.cloneElement(child, { key: "right-"
|
|
8761
|
+
return React.cloneElement(child, { key: "right-".concat(index) });
|
|
8755
8762
|
}));
|
|
8756
8763
|
}
|
|
8757
8764
|
React.useLayoutEffect(function () {
|
|
@@ -8816,15 +8823,16 @@ var TwoColumnPanel = React.forwardRef(function (_a, ref) {
|
|
|
8816
8823
|
'TwoColumnPanel--show': !isCollapsed,
|
|
8817
8824
|
'TwoColumnPanel--hide': isCollapsed
|
|
8818
8825
|
}) }, props, { ref: ref }),
|
|
8819
|
-
React__default.createElement(
|
|
8820
|
-
|
|
8821
|
-
|
|
8822
|
-
|
|
8823
|
-
|
|
8824
|
-
|
|
8825
|
-
|
|
8826
|
-
|
|
8827
|
-
|
|
8826
|
+
React__default.createElement(React__default.Fragment, null,
|
|
8827
|
+
React__default.createElement(FocusTrap, { active: !isCollapsed && isFocusTrap, focusTrapOptions: {
|
|
8828
|
+
escapeDeactivates: true,
|
|
8829
|
+
allowOutsideClick: true,
|
|
8830
|
+
fallbackFocus: columnLeftRef.current
|
|
8831
|
+
}, containerElements: [columnLeftRef.current] }),
|
|
8832
|
+
React__default.createElement(ClickOutsideListener, { onClickOutside: handleClickOutside, target: columnLeftRef.current }),
|
|
8833
|
+
isCollapsed ? null : skipLink,
|
|
8834
|
+
showPanel ? ColumnLeftComponent : null,
|
|
8835
|
+
ColumnRightComponent)));
|
|
8828
8836
|
});
|
|
8829
8837
|
TwoColumnPanel.displayName = 'TwoColumnPanel';
|
|
8830
8838
|
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
function _interopDefault (ex) { return (ex && (typeof ex === 'object') && 'default' in ex) ? ex['default'] : ex; }
|
|
4
|
+
|
|
5
|
+
var React = require('react');
|
|
6
|
+
var React__default = _interopDefault(React);
|
|
7
|
+
|
|
8
|
+
var _path;
|
|
9
|
+
|
|
10
|
+
function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
|
|
11
|
+
|
|
12
|
+
const SvgRecycleSquare = props => /*#__PURE__*/React.createElement("svg", _extends({
|
|
13
|
+
overflow: "visible",
|
|
14
|
+
preserveAspectRatio: "none",
|
|
15
|
+
viewBox: "0 0 24 24",
|
|
16
|
+
height: 24,
|
|
17
|
+
width: 24
|
|
18
|
+
}, props), _path || (_path = /*#__PURE__*/React.createElement("path", {
|
|
19
|
+
d: "M7 7h10v3l4-4-4-4v3H5v6h2V7zm10 10H7v-3l-4 4 4 4v-3h12v-6h-2v4z",
|
|
20
|
+
vectorEffect: "non-scaling-stroke",
|
|
21
|
+
fill: "currentColor"
|
|
22
|
+
})));
|
|
23
|
+
|
|
24
|
+
exports.default = SvgRecycleSquare;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
declare function recursivelyRemoveIds(element: React.ReactNode): import("react").ReactElement<any, string |
|
|
1
|
+
declare function recursivelyRemoveIds(element: React.ReactNode): import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>>[] | null | undefined;
|
|
2
2
|
export default recursivelyRemoveIds;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@deque/cauldron-react",
|
|
3
|
-
"version": "4.5.0-canary.
|
|
3
|
+
"version": "4.5.0-canary.9a1593ae",
|
|
4
4
|
"description": "Fully accessible react components library for Deque Cauldron",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
@@ -23,14 +23,14 @@
|
|
|
23
23
|
"dependencies": {
|
|
24
24
|
"@popperjs/core": "^2.5.4",
|
|
25
25
|
"classnames": "^2.2.6",
|
|
26
|
-
"focus-trap-react": "
|
|
26
|
+
"focus-trap-react": "8",
|
|
27
27
|
"focusable": "^2.3.0",
|
|
28
28
|
"keyname": "^0.1.0",
|
|
29
29
|
"prop-types": "^15.6.0",
|
|
30
30
|
"react-id-generator": "^3.0.1",
|
|
31
31
|
"react-popper": "^2.2.4",
|
|
32
|
-
"react-syntax-highlighter": "^15.
|
|
33
|
-
"tslib": "^2.
|
|
32
|
+
"react-syntax-highlighter": "^15.5.0",
|
|
33
|
+
"tslib": "^2.4.0"
|
|
34
34
|
},
|
|
35
35
|
"devDependencies": {
|
|
36
36
|
"@babel/cli": "^7.8.4",
|
|
@@ -47,10 +47,11 @@
|
|
|
47
47
|
"@rollup/plugin-typescript": "^5.0.2",
|
|
48
48
|
"@svgr/rollup": "^6.1.2",
|
|
49
49
|
"@types/classnames": "^2.2.10",
|
|
50
|
+
"@types/node": "^17.0.42",
|
|
50
51
|
"@types/prop-types": "^15.7.3",
|
|
51
|
-
"@types/react": "^
|
|
52
|
-
"@types/react-dom": "^
|
|
53
|
-
"@types/react-syntax-highlighter": "^
|
|
52
|
+
"@types/react": "^18.0.12",
|
|
53
|
+
"@types/react-dom": "^18.0.5",
|
|
54
|
+
"@types/react-syntax-highlighter": "^15.5.2",
|
|
54
55
|
"autoprefixer": "^9.7.6",
|
|
55
56
|
"babel-plugin-module-resolver": "^4.0.0",
|
|
56
57
|
"babel-plugin-transform-export-extensions": "^6.22.0",
|
|
@@ -79,16 +80,16 @@
|
|
|
79
80
|
"react-router-dom": "^5.1.2",
|
|
80
81
|
"rollup": "^2.23.0",
|
|
81
82
|
"sinon": "^10.0.0",
|
|
82
|
-
"ts-node": "^8.
|
|
83
|
-
"typescript": "^
|
|
83
|
+
"ts-node": "^10.8.1",
|
|
84
|
+
"typescript": "^4.7.3"
|
|
84
85
|
},
|
|
85
86
|
"repository": {
|
|
86
87
|
"type": "git",
|
|
87
88
|
"url": "git+https://github.com/dequelabs/cauldron-react.git"
|
|
88
89
|
},
|
|
89
90
|
"peerDependencies": {
|
|
90
|
-
"react": "
|
|
91
|
-
"react-dom": "
|
|
91
|
+
"react": ">=16.6 <= 18",
|
|
92
|
+
"react-dom": ">=16.6 <= 18"
|
|
92
93
|
},
|
|
93
94
|
"nyc": {
|
|
94
95
|
"checkCoverage": true,
|