@deque/cauldron-react 4.5.0-canary.f4c1c3dd → 4.6.0-canary.18f99f9b
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/cauldron.css +0 -1
- package/lib/clipboard.js +24 -0
- package/lib/components/Accordion/Accordion.d.ts +42 -0
- package/lib/components/Accordion/index.d.ts +3 -0
- package/lib/components/Breadcrumb/Breadcrumb.d.ts +5 -9
- package/lib/components/Breadcrumb/BreadcrumbLink.d.ts +1 -1
- 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 +10 -8
- 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/export-solid.js +24 -0
- package/lib/filter-solid.js +24 -0
- package/lib/index.d.ts +1 -0
- package/lib/index.js +355 -277
- package/lib/play.js +25 -0
- package/lib/recycle-square.js +24 -0
- package/lib/utils/remove-ids/index.d.ts +1 -1
- package/package.json +12 -11
package/lib/index.js
CHANGED
|
@@ -9,9 +9,9 @@ var React = require('react');
|
|
|
9
9
|
var React__default = _interopDefault(React);
|
|
10
10
|
var PropTypes = _interopDefault(require('prop-types'));
|
|
11
11
|
var classNames = _interopDefault(require('classnames'));
|
|
12
|
-
var keyname = _interopDefault(require('keyname'));
|
|
13
12
|
var nextId = require('react-id-generator');
|
|
14
13
|
var nextId__default = _interopDefault(nextId);
|
|
14
|
+
var keyname = _interopDefault(require('keyname'));
|
|
15
15
|
var reactDom = require('react-dom');
|
|
16
16
|
var FocusTrap = _interopDefault(require('focus-trap-react'));
|
|
17
17
|
var reactPopper = require('react-popper');
|
|
@@ -143,14 +143,17 @@ var iconTypes = [
|
|
|
143
143
|
'chevron-down',
|
|
144
144
|
'chevron-left',
|
|
145
145
|
'chevron-right',
|
|
146
|
+
'clipboard',
|
|
146
147
|
'close',
|
|
147
148
|
'code',
|
|
148
149
|
'copy',
|
|
149
150
|
'download',
|
|
150
151
|
'dropper',
|
|
151
152
|
'exchange',
|
|
153
|
+
'export-solid',
|
|
152
154
|
'external-link',
|
|
153
155
|
'eye',
|
|
156
|
+
'filter-solid',
|
|
154
157
|
'filter',
|
|
155
158
|
'flag',
|
|
156
159
|
'gears',
|
|
@@ -170,10 +173,12 @@ var iconTypes = [
|
|
|
170
173
|
'new',
|
|
171
174
|
'no',
|
|
172
175
|
'pencil',
|
|
176
|
+
'play',
|
|
173
177
|
'plus',
|
|
174
178
|
'question-circle',
|
|
175
179
|
'radio-checked',
|
|
176
180
|
'radio-unchecked',
|
|
181
|
+
'recycle-square',
|
|
177
182
|
'recycle',
|
|
178
183
|
'resend',
|
|
179
184
|
'robot',
|
|
@@ -210,14 +215,17 @@ function __variableDynamicImportRuntime0__(path) {
|
|
|
210
215
|
case './icons/checkbox-unchecked.svg': return Promise.resolve().then(function () { return require('./checkbox-unchecked.js'); });
|
|
211
216
|
case './icons/chevron-double.svg': return Promise.resolve().then(function () { return require('./chevron-double.js'); });
|
|
212
217
|
case './icons/chevron.svg': return Promise.resolve().then(function () { return require('./chevron.js'); });
|
|
218
|
+
case './icons/clipboard.svg': return Promise.resolve().then(function () { return require('./clipboard.js'); });
|
|
213
219
|
case './icons/close.svg': return Promise.resolve().then(function () { return require('./close.js'); });
|
|
214
220
|
case './icons/code.svg': return Promise.resolve().then(function () { return require('./code.js'); });
|
|
215
221
|
case './icons/copy.svg': return Promise.resolve().then(function () { return require('./copy.js'); });
|
|
216
222
|
case './icons/download.svg': return Promise.resolve().then(function () { return require('./download.js'); });
|
|
217
223
|
case './icons/dropper.svg': return Promise.resolve().then(function () { return require('./dropper.js'); });
|
|
218
224
|
case './icons/exchange.svg': return Promise.resolve().then(function () { return require('./exchange.js'); });
|
|
225
|
+
case './icons/export-solid.svg': return Promise.resolve().then(function () { return require('./export-solid.js'); });
|
|
219
226
|
case './icons/external-link.svg': return Promise.resolve().then(function () { return require('./external-link.js'); });
|
|
220
227
|
case './icons/eye.svg': return Promise.resolve().then(function () { return require('./eye.js'); });
|
|
228
|
+
case './icons/filter-solid.svg': return Promise.resolve().then(function () { return require('./filter-solid.js'); });
|
|
221
229
|
case './icons/filter.svg': return Promise.resolve().then(function () { return require('./filter.js'); });
|
|
222
230
|
case './icons/flag.svg': return Promise.resolve().then(function () { return require('./flag.js'); });
|
|
223
231
|
case './icons/gears.svg': return Promise.resolve().then(function () { return require('./gears.js'); });
|
|
@@ -237,10 +245,12 @@ function __variableDynamicImportRuntime0__(path) {
|
|
|
237
245
|
case './icons/new.svg': return Promise.resolve().then(function () { return require('./new.js'); });
|
|
238
246
|
case './icons/no.svg': return Promise.resolve().then(function () { return require('./no.js'); });
|
|
239
247
|
case './icons/pencil.svg': return Promise.resolve().then(function () { return require('./pencil.js'); });
|
|
248
|
+
case './icons/play.svg': return Promise.resolve().then(function () { return require('./play.js'); });
|
|
240
249
|
case './icons/plus.svg': return Promise.resolve().then(function () { return require('./plus.js'); });
|
|
241
250
|
case './icons/question-circle.svg': return Promise.resolve().then(function () { return require('./question-circle.js'); });
|
|
242
251
|
case './icons/radio-checked.svg': return Promise.resolve().then(function () { return require('./radio-checked.js'); });
|
|
243
252
|
case './icons/radio-unchecked.svg': return Promise.resolve().then(function () { return require('./radio-unchecked.js'); });
|
|
253
|
+
case './icons/recycle-square.svg': return Promise.resolve().then(function () { return require('./recycle-square.js'); });
|
|
244
254
|
case './icons/recycle.svg': return Promise.resolve().then(function () { return require('./recycle.js'); });
|
|
245
255
|
case './icons/resend.svg': return Promise.resolve().then(function () { return require('./resend.js'); });
|
|
246
256
|
case './icons/robot.svg': return Promise.resolve().then(function () { return require('./robot.js'); });
|
|
@@ -279,19 +289,19 @@ var Icon = React.forwardRef(function (_a, ref) {
|
|
|
279
289
|
if (process.env.NODE_ENV === 'test') {
|
|
280
290
|
return;
|
|
281
291
|
}
|
|
282
|
-
__variableDynamicImportRuntime0__("./icons/"
|
|
292
|
+
__variableDynamicImportRuntime0__("./icons/".concat(name, ".svg"))
|
|
283
293
|
.then(function (icon) {
|
|
284
294
|
isMounted.current && setIcon(function () { return icon["default"]; });
|
|
285
295
|
})["catch"](function () {
|
|
286
|
-
console.error("Could not find icon type \""
|
|
296
|
+
console.error("Could not find icon type \"".concat(type, "\"."));
|
|
287
297
|
isMounted.current && setIcon(null);
|
|
288
298
|
});
|
|
289
299
|
return function () {
|
|
290
300
|
isMounted.current = false;
|
|
291
301
|
};
|
|
292
302
|
}, [type]);
|
|
293
|
-
var data = tslib.__assign(tslib.__assign({}, other), { 'aria-hidden': !label, className: classNames('Icon', "Icon--"
|
|
294
|
-
_b["Icon__"
|
|
303
|
+
var data = tslib.__assign(tslib.__assign({}, other), { 'aria-hidden': !label, className: classNames('Icon', "Icon--".concat(type), className, (_b = {},
|
|
304
|
+
_b["Icon__".concat(direction)] = !!direction,
|
|
295
305
|
_b)) });
|
|
296
306
|
return (React__default.createElement("div", tslib.__assign({ ref: ref }, data),
|
|
297
307
|
label && React__default.createElement(Offscreen, null, label),
|
|
@@ -305,6 +315,207 @@ Icon.propTypes = {
|
|
|
305
315
|
};
|
|
306
316
|
Icon.displayName = 'Icon';
|
|
307
317
|
|
|
318
|
+
var PanelTrigger = function (_a) {
|
|
319
|
+
var children = _a.children, className = _a.className, open = _a.open, fullWidth = _a.fullWidth, onClick = _a.onClick, _b = _a.iconExpanded, iconExpanded = _b === void 0 ? 'chevron-down' : _b, _c = _a.iconCollapsed, iconCollapsed = _c === void 0 ? 'chevron-right' : _c, heading = _a.heading, otherProps = tslib.__rest(_a, ["children", "className", "open", "fullWidth", "onClick", "iconExpanded", "iconCollapsed", "heading"]);
|
|
320
|
+
var Header = typeof heading === 'object' && 'level' in heading && !!heading.level
|
|
321
|
+
? "h".concat(heading.level)
|
|
322
|
+
: React__default.Fragment;
|
|
323
|
+
return (React__default.createElement(Header, null,
|
|
324
|
+
React__default.createElement("button", tslib.__assign({ className: classNames(className, 'ExpandCollapse__trigger', {
|
|
325
|
+
fullWidth: fullWidth
|
|
326
|
+
}), type: "button", "aria-expanded": open, onClick: onClick }, otherProps),
|
|
327
|
+
React__default.createElement("div", { className: "ExpandCollapse__trigger-title" }, typeof children === 'function'
|
|
328
|
+
? children({ open: !!open })
|
|
329
|
+
: children),
|
|
330
|
+
React__default.createElement(Icon, { type: open ? iconExpanded : iconCollapsed }))));
|
|
331
|
+
};
|
|
332
|
+
PanelTrigger.propTypes = {
|
|
333
|
+
children: PropTypes.oneOfType([PropTypes.func, PropTypes.node]),
|
|
334
|
+
open: PropTypes.bool,
|
|
335
|
+
iconExpanded: PropTypes.string,
|
|
336
|
+
iconCollapsed: PropTypes.string,
|
|
337
|
+
heading: PropTypes.number
|
|
338
|
+
};
|
|
339
|
+
PanelTrigger.displayName = 'PanelTrigger';
|
|
340
|
+
var PanelTrigger$1 = React__default.memo(PanelTrigger);
|
|
341
|
+
|
|
342
|
+
var injectStyleTag = function () {
|
|
343
|
+
var style = document.createElement('style');
|
|
344
|
+
document.head.appendChild(style);
|
|
345
|
+
return style;
|
|
346
|
+
};
|
|
347
|
+
var setStyle = function (tag, cssString) {
|
|
348
|
+
tag.textContent = cssString;
|
|
349
|
+
};
|
|
350
|
+
var removeStyleTag = function (tag) {
|
|
351
|
+
document.head.removeChild(tag);
|
|
352
|
+
};
|
|
353
|
+
|
|
354
|
+
var ExpandCollapsePanel = /** @class */ (function (_super) {
|
|
355
|
+
tslib.__extends(ExpandCollapsePanel, _super);
|
|
356
|
+
function ExpandCollapsePanel() {
|
|
357
|
+
var _this = _super !== null && _super.apply(this, arguments) || this;
|
|
358
|
+
_this.state = {
|
|
359
|
+
controlled: typeof _this.props.open !== 'undefined',
|
|
360
|
+
isOpen: typeof _this.props.open !== 'undefined' ? _this.props.open : false
|
|
361
|
+
};
|
|
362
|
+
_this.panel = React__default.createRef();
|
|
363
|
+
_this.handleToggle = function (e) {
|
|
364
|
+
var onToggle = _this.props.onToggle;
|
|
365
|
+
var _a = _this.state, isOpen = _a.isOpen, controlled = _a.controlled;
|
|
366
|
+
onToggle(e);
|
|
367
|
+
if (!controlled) {
|
|
368
|
+
_this.setState({ isOpen: !isOpen, isAnimating: true });
|
|
369
|
+
}
|
|
370
|
+
};
|
|
371
|
+
_this.animateOpen = function () {
|
|
372
|
+
var panel = _this.panel.current;
|
|
373
|
+
var animationTiming = _this.props.animationTiming;
|
|
374
|
+
if (!animationTiming) {
|
|
375
|
+
_this.setState({ isAnimating: false });
|
|
376
|
+
return;
|
|
377
|
+
}
|
|
378
|
+
var rect = panel === null || panel === void 0 ? void 0 : panel.getBoundingClientRect();
|
|
379
|
+
if (!rect) {
|
|
380
|
+
return;
|
|
381
|
+
}
|
|
382
|
+
if (!_this.styleTag) {
|
|
383
|
+
_this.styleTag = injectStyleTag();
|
|
384
|
+
}
|
|
385
|
+
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 "));
|
|
386
|
+
_this.setState({ animationClass: 'cauldron-expand-open' }, function () {
|
|
387
|
+
setTimeout(function () {
|
|
388
|
+
_this.setState({ animationClass: '', isAnimating: false });
|
|
389
|
+
setStyle(_this.styleTag, '');
|
|
390
|
+
}, animationTiming);
|
|
391
|
+
});
|
|
392
|
+
};
|
|
393
|
+
_this.animateClose = function () {
|
|
394
|
+
var panel = _this.panel.current;
|
|
395
|
+
var animationTiming = _this.props.animationTiming;
|
|
396
|
+
if (!animationTiming) {
|
|
397
|
+
_this.setState({ isAnimating: false });
|
|
398
|
+
return;
|
|
399
|
+
}
|
|
400
|
+
if (!_this.styleTag) {
|
|
401
|
+
_this.styleTag = injectStyleTag();
|
|
402
|
+
}
|
|
403
|
+
var rect = panel === null || panel === void 0 ? void 0 : panel.getBoundingClientRect();
|
|
404
|
+
if (!rect)
|
|
405
|
+
return;
|
|
406
|
+
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 "));
|
|
407
|
+
_this.setState({ animationClass: 'cauldron-collapse-close' }, function () {
|
|
408
|
+
setTimeout(function () {
|
|
409
|
+
_this.setState({ animationClass: '', isAnimating: false });
|
|
410
|
+
setStyle(_this.styleTag, '');
|
|
411
|
+
}, animationTiming);
|
|
412
|
+
});
|
|
413
|
+
};
|
|
414
|
+
return _this;
|
|
415
|
+
}
|
|
416
|
+
ExpandCollapsePanel.prototype.componentWillUnmount = function () {
|
|
417
|
+
var styleTag = this.styleTag;
|
|
418
|
+
if (styleTag) {
|
|
419
|
+
removeStyleTag(styleTag);
|
|
420
|
+
}
|
|
421
|
+
};
|
|
422
|
+
ExpandCollapsePanel.prototype.componentDidUpdate = function (prevProps, prevState) {
|
|
423
|
+
var _a = this.state, openState = _a.isOpen, controlled = _a.controlled;
|
|
424
|
+
var openProp = this.props.open;
|
|
425
|
+
if (controlled && openState !== openProp) {
|
|
426
|
+
this.setState({ isOpen: !!openProp, isAnimating: true });
|
|
427
|
+
}
|
|
428
|
+
if (typeof openProp !== typeof prevProps.open) {
|
|
429
|
+
this.setState({ controlled: typeof openProp !== 'undefined' });
|
|
430
|
+
}
|
|
431
|
+
if (prevState.isOpen !== openState && openState) {
|
|
432
|
+
this.animateOpen();
|
|
433
|
+
}
|
|
434
|
+
else if (prevState.isOpen !== openState && !openState) {
|
|
435
|
+
this.animateClose();
|
|
436
|
+
}
|
|
437
|
+
};
|
|
438
|
+
ExpandCollapsePanel.prototype.render = function () {
|
|
439
|
+
var _a = this.props, children = _a.children, animationTiming = _a.animationTiming, className = _a.className, onToggle = _a.onToggle, open = _a.open, otherProps = tslib.__rest(_a, ["children", "animationTiming", "className", "onToggle", "open"]);
|
|
440
|
+
var _b = this.state, isOpen = _b.isOpen, isAnimating = _b.isAnimating, animationClass = _b.animationClass;
|
|
441
|
+
var trigger = React__default.Children.toArray(children).find(function (child) { return child.type === PanelTrigger$1; });
|
|
442
|
+
var panelElements = React__default.Children.toArray(children).filter(function (child) {
|
|
443
|
+
return typeof child === 'string' ||
|
|
444
|
+
child.type !== PanelTrigger$1;
|
|
445
|
+
});
|
|
446
|
+
return (React__default.createElement(React__default.Fragment, null,
|
|
447
|
+
trigger &&
|
|
448
|
+
React__default.cloneElement(trigger, {
|
|
449
|
+
open: isOpen,
|
|
450
|
+
onClick: this.handleToggle
|
|
451
|
+
}),
|
|
452
|
+
React__default.createElement("div", tslib.__assign({ className: classNames(className, 'ExpandCollapse__panel', animationClass, {
|
|
453
|
+
'is--hidden': !isOpen && !isAnimating
|
|
454
|
+
}), ref: this.panel }, otherProps), panelElements)));
|
|
455
|
+
};
|
|
456
|
+
ExpandCollapsePanel.defaultProps = {
|
|
457
|
+
animationTiming: 250,
|
|
458
|
+
// eslint-disable-next-line @typescript-eslint/no-empty-function
|
|
459
|
+
onToggle: function () { }
|
|
460
|
+
};
|
|
461
|
+
ExpandCollapsePanel.propTypes = {
|
|
462
|
+
open: PropTypes.bool,
|
|
463
|
+
children: PropTypes.node.isRequired,
|
|
464
|
+
className: PropTypes.string,
|
|
465
|
+
animationTiming: PropTypes.oneOfType([PropTypes.number, PropTypes.bool]),
|
|
466
|
+
onToggle: PropTypes.func
|
|
467
|
+
};
|
|
468
|
+
return ExpandCollapsePanel;
|
|
469
|
+
}(React__default.Component));
|
|
470
|
+
|
|
471
|
+
var AccordionTrigger = function (_a) {
|
|
472
|
+
var children = _a.children, triggerProps = tslib.__rest(_a, ["children"]);
|
|
473
|
+
return React__default.createElement(React__default.Fragment, null, children);
|
|
474
|
+
};
|
|
475
|
+
var AccordionContent = function (_a) {
|
|
476
|
+
var children = _a.children, className = _a.className, otherProps = tslib.__rest(_a, ["children", "className"]);
|
|
477
|
+
return (React__default.createElement("div", tslib.__assign({ className: classNames('Accordion__panel', className) }, otherProps), children));
|
|
478
|
+
};
|
|
479
|
+
var Accordion = function (_a) {
|
|
480
|
+
var children = _a.children;
|
|
481
|
+
var childrenArray = React__default.Children.toArray(children);
|
|
482
|
+
var trigger = childrenArray.find(function (child) { return child.type === AccordionTrigger; });
|
|
483
|
+
var panelElement = childrenArray.find(function (child) {
|
|
484
|
+
return typeof child === 'string' ||
|
|
485
|
+
child.type === AccordionContent;
|
|
486
|
+
});
|
|
487
|
+
var isValid = !!(React__default.isValidElement(trigger) && React__default.isValidElement(panelElement));
|
|
488
|
+
if (!isValid) {
|
|
489
|
+
console.warn('Must provide <AccordionTrigger /> and <AccordionContent /> element(s). You provided:', {
|
|
490
|
+
trigger: trigger,
|
|
491
|
+
panelElement: panelElement,
|
|
492
|
+
isValid: isValid
|
|
493
|
+
});
|
|
494
|
+
return null;
|
|
495
|
+
}
|
|
496
|
+
var _b = trigger.props, triggerClassName = _b.className, triggerProps = tslib.__rest(_b, ["className"]);
|
|
497
|
+
var elementId = nextId.useId();
|
|
498
|
+
return (React__default.createElement("div", { className: "Accordion" },
|
|
499
|
+
React__default.createElement(ExpandCollapsePanel, tslib.__assign({ id: panelElement.props.id || "".concat(elementId, "-panel") }, panelElement.props),
|
|
500
|
+
React__default.createElement(PanelTrigger$1, tslib.__assign({ iconCollapsed: "triangle-right", iconExpanded: "triangle-down", className: classNames('Accordion__trigger', trigger.props.className), "aria-controls": panelElement.props.id || "".concat(elementId, "-panel"), heading: trigger.props.heading }, trigger.props), trigger),
|
|
501
|
+
panelElement)));
|
|
502
|
+
};
|
|
503
|
+
Accordion.displayName = 'Accordion';
|
|
504
|
+
AccordionContent.displayName = 'AccordionContent';
|
|
505
|
+
AccordionTrigger.displayName = 'AccordionTrigger';
|
|
506
|
+
Accordion.propTypes = {
|
|
507
|
+
children: PropTypes.node,
|
|
508
|
+
className: PropTypes.string
|
|
509
|
+
};
|
|
510
|
+
AccordionTrigger.propTypes = {
|
|
511
|
+
children: PropTypes.node,
|
|
512
|
+
heading: PropTypes.oneOf(['h1', 'h2', 'h3', 'h4', 'h5', 'h6', undefined])
|
|
513
|
+
};
|
|
514
|
+
AccordionContent.propTypes = {
|
|
515
|
+
children: PropTypes.node.isRequired,
|
|
516
|
+
className: PropTypes.string
|
|
517
|
+
};
|
|
518
|
+
|
|
308
519
|
var Scrim = /** @class */ (function (_super) {
|
|
309
520
|
tslib.__extends(Scrim, _super);
|
|
310
521
|
function Scrim(props) {
|
|
@@ -364,7 +575,7 @@ var Scrim = /** @class */ (function (_super) {
|
|
|
364
575
|
if (destroy) {
|
|
365
576
|
return null;
|
|
366
577
|
}
|
|
367
|
-
return (React__default.createElement("div", { ref: function (el) { return (_this.el = el); }, className: "Scrim "
|
|
578
|
+
return (React__default.createElement("div", { ref: function (el) { return (_this.el = el); }, className: "Scrim ".concat(animationClass) }));
|
|
368
579
|
};
|
|
369
580
|
Scrim.propTypes = {
|
|
370
581
|
show: PropTypes.bool.isRequired
|
|
@@ -498,9 +709,9 @@ var TopBar = /** @class */ (function (_super) {
|
|
|
498
709
|
args[_i] = arguments[_i];
|
|
499
710
|
}
|
|
500
711
|
// @ts-ignore we're just spreading the original args
|
|
501
|
-
_this.onKeyDown.apply(_this, tslib.
|
|
712
|
+
_this.onKeyDown.apply(_this, tslib.__spreadArray([], tslib.__read(args), false));
|
|
502
713
|
if (child.props.onKeyDown) {
|
|
503
|
-
(_a = child.props).onKeyDown.apply(_a, tslib.
|
|
714
|
+
(_a = child.props).onKeyDown.apply(_a, tslib.__spreadArray([], tslib.__read(args), false));
|
|
504
715
|
}
|
|
505
716
|
},
|
|
506
717
|
tabIndex: 0,
|
|
@@ -536,7 +747,7 @@ var TopBar = /** @class */ (function (_super) {
|
|
|
536
747
|
};
|
|
537
748
|
TopBar.prototype.onKeyDown = function (e) {
|
|
538
749
|
var key = keyname(e.which);
|
|
539
|
-
var menuItems = tslib.
|
|
750
|
+
var menuItems = tslib.__spreadArray([], tslib.__read(this.menuItems), false);
|
|
540
751
|
// account for hidden side bar trigger (hamburger)
|
|
541
752
|
if (this.state.wide && this.props.hasTrigger) {
|
|
542
753
|
menuItems.shift();
|
|
@@ -592,6 +803,7 @@ var TopBarTrigger = function (_a) {
|
|
|
592
803
|
};
|
|
593
804
|
TopBarTrigger.displayName = 'TopBarTrigger';
|
|
594
805
|
TopBarTrigger.propTypes = {
|
|
806
|
+
// @ts-expect-error
|
|
595
807
|
children: PropTypes.node.isRequired,
|
|
596
808
|
className: PropTypes.string
|
|
597
809
|
};
|
|
@@ -787,11 +999,15 @@ var OptionsMenuList = /** @class */ (function (_super) {
|
|
|
787
999
|
/* eslint-enable @typescript-eslint/no-unused-vars */
|
|
788
1000
|
var items = React__default.Children.toArray(children).map(function (child, i) {
|
|
789
1001
|
var _a = child.props, className = _a.className, other = tslib.__rest(_a, ["className"]);
|
|
790
|
-
return React__default.cloneElement(child, tslib.__assign({ key: "list-item-"
|
|
1002
|
+
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
1003
|
});
|
|
1004
|
+
// This allows the ClickOutsideListener to only be activated when the menu is
|
|
1005
|
+
// currently open. This prevents an obscure behavior where the activation of a
|
|
1006
|
+
// different menu would cause all menus to close
|
|
1007
|
+
var clickOutsideEventActive = !show ? false : undefined;
|
|
792
1008
|
// Key event is being handled in componentDidMount
|
|
793
1009
|
/* eslint-disable jsx-a11y/click-events-have-key-events */
|
|
794
|
-
return (React__default.createElement(ClickOutsideListener, { onClickOutside: this.handleClickOutside },
|
|
1010
|
+
return (React__default.createElement(ClickOutsideListener, { onClickOutside: this.handleClickOutside, mouseEvent: clickOutsideEventActive, touchEvent: clickOutsideEventActive },
|
|
795
1011
|
React__default.createElement("ul", tslib.__assign({}, other, { className: classNames('OptionsMenu__list', className), "aria-expanded": show, role: "menu", onClick: handleClick, ref: function (el) {
|
|
796
1012
|
_this.menuRef = el;
|
|
797
1013
|
if (menuRef) {
|
|
@@ -830,7 +1046,6 @@ var OptionsMenu = /** @class */ (function (_super) {
|
|
|
830
1046
|
var show = _a.show;
|
|
831
1047
|
return ({ show: !show });
|
|
832
1048
|
});
|
|
833
|
-
event.preventDefault();
|
|
834
1049
|
};
|
|
835
1050
|
_this.handleClose = function () {
|
|
836
1051
|
var _a;
|
|
@@ -1167,7 +1382,8 @@ var SideBar = /** @class */ (function (_super) {
|
|
|
1167
1382
|
setTimeout(function () {
|
|
1168
1383
|
var _a, _b;
|
|
1169
1384
|
_this.setState({ animateClass: second });
|
|
1170
|
-
var firstFocusable = show &&
|
|
1385
|
+
var firstFocusable = show &&
|
|
1386
|
+
((_b = (_a = _this.navList) === null || _a === void 0 ? void 0 : _a.current) === null || _b === void 0 ? void 0 : _b.querySelector(focusableSelector));
|
|
1171
1387
|
if (firstFocusable) {
|
|
1172
1388
|
firstFocusable.focus();
|
|
1173
1389
|
}
|
|
@@ -1216,6 +1432,7 @@ SideBarItem.defaultProps = {
|
|
|
1216
1432
|
autoClickLink: true
|
|
1217
1433
|
};
|
|
1218
1434
|
SideBarItem.propTypes = {
|
|
1435
|
+
// @ts-expect-error
|
|
1219
1436
|
children: PropTypes.node.isRequired,
|
|
1220
1437
|
autoClickLink: PropTypes.bool
|
|
1221
1438
|
};
|
|
@@ -1305,7 +1522,7 @@ var Dialog = /** @class */ (function (_super) {
|
|
|
1305
1522
|
var close = !forceAction ? (React__default.createElement("button", { className: "Dialog__close", type: "button", onClick: this.close },
|
|
1306
1523
|
React__default.createElement(Icon, { type: "close", "aria-hidden": "true" }),
|
|
1307
1524
|
React__default.createElement(Offscreen, null, closeButtonText))) : null;
|
|
1308
|
-
var Heading = "h"
|
|
1525
|
+
var Heading = "h".concat(typeof heading === 'object' && 'level' in heading && !!heading.level
|
|
1309
1526
|
? heading.level
|
|
1310
1527
|
: 2);
|
|
1311
1528
|
var Dialog = (React__default.createElement(FocusTrap, { focusTrapOptions: {
|
|
@@ -1464,7 +1681,7 @@ var SkipLink = /** @class */ (function (_super) {
|
|
|
1464
1681
|
target: function (props, propName, componentName) {
|
|
1465
1682
|
var value = props[propName];
|
|
1466
1683
|
if (!value || typeof value !== 'string' || value[0] !== '#') {
|
|
1467
|
-
return new Error("Invalid prop "
|
|
1684
|
+
return new Error("Invalid prop ".concat(propName, " supplied to ").concat(componentName, " (must be string starting with \"#\")"));
|
|
1468
1685
|
}
|
|
1469
1686
|
},
|
|
1470
1687
|
skipText: PropTypes.string,
|
|
@@ -1480,6 +1697,8 @@ var Button = React.forwardRef(function (_a, ref) {
|
|
|
1480
1697
|
'Button--secondary': variant === 'secondary',
|
|
1481
1698
|
'Button--error': variant === 'error',
|
|
1482
1699
|
Link: variant === 'link',
|
|
1700
|
+
Tag: variant === 'tag',
|
|
1701
|
+
'Button--tag': variant === 'tag',
|
|
1483
1702
|
'Button--thin': thin
|
|
1484
1703
|
}), ref: ref || buttonRef }, other), children));
|
|
1485
1704
|
});
|
|
@@ -1609,8 +1828,8 @@ function Tooltip(_a) {
|
|
|
1609
1828
|
targetElement === null || targetElement === void 0 ? void 0 : targetElement.setAttribute(association, [id, attrText].filter(Boolean).join(' '));
|
|
1610
1829
|
}
|
|
1611
1830
|
}, [targetElement, id]);
|
|
1612
|
-
return (showTooltip || hideElementOnHidden) && isBrowser()
|
|
1613
|
-
? reactDom.createPortal(React__default.createElement("div", tslib.__assign({ id: id, className: classNames('Tooltip', "Tooltip--"
|
|
1831
|
+
return (React__default.createElement(React__default.Fragment, null, (showTooltip || hideElementOnHidden) && isBrowser()
|
|
1832
|
+
? reactDom.createPortal(React__default.createElement("div", tslib.__assign({ id: id, className: classNames('Tooltip', "Tooltip--".concat(placement), className, {
|
|
1614
1833
|
TooltipInfo: variant === 'info',
|
|
1615
1834
|
'Tooltip--hidden': !showTooltip && hideElementOnHidden,
|
|
1616
1835
|
'Tooltip--big': variant === 'big'
|
|
@@ -1618,7 +1837,7 @@ function Tooltip(_a) {
|
|
|
1618
1837
|
variant !== 'big' && (React__default.createElement("div", { className: "TooltipArrow", ref: setArrowElement, style: styles.arrow })),
|
|
1619
1838
|
children), (portal && 'current' in portal ? portal.current : portal) ||
|
|
1620
1839
|
document.body)
|
|
1621
|
-
: null;
|
|
1840
|
+
: null));
|
|
1622
1841
|
}
|
|
1623
1842
|
Tooltip.displayName = 'Tooltip';
|
|
1624
1843
|
Tooltip.propTypes = {
|
|
@@ -1681,6 +1900,7 @@ IconButton.propTypes = {
|
|
|
1681
1900
|
as: PropTypes.elementType,
|
|
1682
1901
|
// @ts-expect-error
|
|
1683
1902
|
icon: PropTypes.string.isRequired,
|
|
1903
|
+
// @ts-expect-error
|
|
1684
1904
|
label: PropTypes.node.isRequired,
|
|
1685
1905
|
// @ts-expect-error
|
|
1686
1906
|
tooltipPlacement: PropTypes.string,
|
|
@@ -1695,7 +1915,7 @@ IconButton.displayName = 'IconButton';
|
|
|
1695
1915
|
var i = 0;
|
|
1696
1916
|
var randomId = function () {
|
|
1697
1917
|
var num = Math.floor(Math.random() * 10000) + 1;
|
|
1698
|
-
return "x_"
|
|
1918
|
+
return "x_".concat(i++, "_").concat(num);
|
|
1699
1919
|
};
|
|
1700
1920
|
|
|
1701
1921
|
/*
|
|
@@ -1790,16 +2010,15 @@ var Pointout = /** @class */ (function (_super) {
|
|
|
1790
2010
|
visibleFocusable[elementIndex].classList.remove('Pointout--focus-active');
|
|
1791
2011
|
};
|
|
1792
2012
|
_this.positionRelativeToTarget = function () {
|
|
1793
|
-
var _a,
|
|
1794
|
-
var _c = _this.props, target = _c.target, portal = _c.portal, arrowPosition = _c.arrowPosition, position = _c.position;
|
|
2013
|
+
var _a = _this.props, target = _a.target, portal = _a.portal, arrowPosition = _a.arrowPosition, position = _a.position;
|
|
1795
2014
|
if (!target) {
|
|
1796
2015
|
return;
|
|
1797
2016
|
}
|
|
1798
|
-
var targetNode = (
|
|
2017
|
+
var targetNode = (target === null || target === void 0 ? void 0 : target.current) ||
|
|
1799
2018
|
target;
|
|
1800
|
-
var portalNode = (
|
|
2019
|
+
var portalNode = (portal === null || portal === void 0 ? void 0 : portal.current) ||
|
|
1801
2020
|
portal;
|
|
1802
|
-
var
|
|
2021
|
+
var _b = targetNode.getBoundingClientRect(), top = _b.top, left = _b.left, width = _b.width, height = _b.height;
|
|
1803
2022
|
if (portalNode && portalNode !== document.body) {
|
|
1804
2023
|
// If the portal is not placed on document.body
|
|
1805
2024
|
// position the FTPO relative to the portal
|
|
@@ -1807,48 +2026,48 @@ var Pointout = /** @class */ (function (_super) {
|
|
|
1807
2026
|
top -= rect.top - portalNode.scrollTop;
|
|
1808
2027
|
left -= rect.left - portalNode.scrollLeft;
|
|
1809
2028
|
}
|
|
1810
|
-
var
|
|
2029
|
+
var _c = tslib.__read(arrowPosition.split('-'), 1), arrowBoxSide = _c[0];
|
|
1811
2030
|
var style;
|
|
1812
2031
|
switch (arrowBoxSide) {
|
|
1813
2032
|
case 'right':
|
|
1814
2033
|
style = {
|
|
1815
|
-
left: left
|
|
1816
|
-
top: (position === 'center'
|
|
2034
|
+
left: "".concat(left, "px"),
|
|
2035
|
+
top: "".concat(position === 'center'
|
|
1817
2036
|
? top + height / 2
|
|
1818
2037
|
: position === 'start'
|
|
1819
2038
|
? top
|
|
1820
|
-
: top + height
|
|
2039
|
+
: top + height, "px")
|
|
1821
2040
|
};
|
|
1822
2041
|
break;
|
|
1823
2042
|
case 'bottom':
|
|
1824
2043
|
style = {
|
|
1825
|
-
top: top
|
|
1826
|
-
left: (position === 'center'
|
|
2044
|
+
top: "".concat(top, "px"),
|
|
2045
|
+
left: "".concat(position === 'center'
|
|
1827
2046
|
? left + width / 2
|
|
1828
2047
|
: position === 'start'
|
|
1829
2048
|
? left
|
|
1830
|
-
: left + width
|
|
2049
|
+
: left + width, "px")
|
|
1831
2050
|
};
|
|
1832
2051
|
break;
|
|
1833
2052
|
case 'left':
|
|
1834
2053
|
style = {
|
|
1835
|
-
left: left + width
|
|
1836
|
-
top: (position === 'center'
|
|
2054
|
+
left: "".concat(left + width, "px"),
|
|
2055
|
+
top: "".concat(position === 'center'
|
|
1837
2056
|
? top + height / 2
|
|
1838
2057
|
: position === 'start'
|
|
1839
2058
|
? top
|
|
1840
|
-
: top + height
|
|
2059
|
+
: top + height, "px")
|
|
1841
2060
|
};
|
|
1842
2061
|
break;
|
|
1843
2062
|
case 'top':
|
|
1844
2063
|
default:
|
|
1845
2064
|
style = {
|
|
1846
|
-
top: top + height
|
|
1847
|
-
left: (position === 'center'
|
|
2065
|
+
top: "".concat(top + height, "px"),
|
|
2066
|
+
left: "".concat(position === 'center'
|
|
1848
2067
|
? left + width / 2
|
|
1849
2068
|
: position === 'start'
|
|
1850
2069
|
? left
|
|
1851
|
-
: left + width
|
|
2070
|
+
: left + width, "px")
|
|
1852
2071
|
};
|
|
1853
2072
|
break;
|
|
1854
2073
|
}
|
|
@@ -1860,7 +2079,7 @@ var Pointout = /** @class */ (function (_super) {
|
|
|
1860
2079
|
}
|
|
1861
2080
|
Pointout.prototype.getFocusableElements = function (root) {
|
|
1862
2081
|
return root
|
|
1863
|
-
? Array.from(root.querySelectorAll(focusable
|
|
2082
|
+
? Array.from(root.querySelectorAll("".concat(focusable, ", [data-focusable]")))
|
|
1864
2083
|
: [];
|
|
1865
2084
|
};
|
|
1866
2085
|
Pointout.prototype.componentDidMount = function () {
|
|
@@ -1930,11 +2149,11 @@ var Pointout = /** @class */ (function (_super) {
|
|
|
1930
2149
|
'Pointout--no-arrow': noArrow,
|
|
1931
2150
|
'Pointout--auto': !!target
|
|
1932
2151
|
},
|
|
1933
|
-
_a["Pointout__arrow--"
|
|
1934
|
-
_a["Pointout--"
|
|
2152
|
+
_a["Pointout__arrow--".concat(arrowPosition)] = !!arrowPosition && !noArrow,
|
|
2153
|
+
_a["Pointout--".concat(position)] = !!target,
|
|
1935
2154
|
_a)), style: style, role: target ? undefined : 'region', "aria-labelledby": heading ? headingId : undefined, "aria-hidden": !!target && !disableOffscreenPointout, ref: function (el) { return (_this.visibleRef = el); } },
|
|
1936
2155
|
noArrow ? null : (React__default.createElement("div", { className: classNames('Pointout__arrow', (_b = {},
|
|
1937
|
-
_b["Pointout__arrow--"
|
|
2156
|
+
_b["Pointout__arrow--".concat(arrowPosition)] = !!arrowPosition && !noArrow,
|
|
1938
2157
|
_b)) },
|
|
1939
2158
|
React__default.createElement("div", { className: "Pointout__arrow-pointer" }))),
|
|
1940
2159
|
React__default.createElement("div", { className: "Pointout__box" },
|
|
@@ -2115,7 +2334,7 @@ var Toast = /** @class */ (function (_super) {
|
|
|
2115
2334
|
var scrim = type === 'action-needed' && show ? (React__default.createElement("div", { className: "Scrim--light Scrim--show Scrim--fade-in" })) : null;
|
|
2116
2335
|
var defaultProps = {
|
|
2117
2336
|
tabIndex: -1,
|
|
2118
|
-
className: "Toast Toast--"
|
|
2337
|
+
className: "Toast Toast--".concat(typeMap[type].className, " ").concat(animationClass)
|
|
2119
2338
|
};
|
|
2120
2339
|
if (!focus) {
|
|
2121
2340
|
defaultProps.role = 'alert';
|
|
@@ -2301,9 +2520,10 @@ var Select = React__default.forwardRef(function (_a, ref) {
|
|
|
2301
2520
|
'Field__select--disabled': disabled,
|
|
2302
2521
|
'Field--has-error': !!error
|
|
2303
2522
|
}) },
|
|
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
|
-
|
|
2523
|
+
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)
|
|
2524
|
+
? options.map(function (option) {
|
|
2525
|
+
return (React__default.createElement("option", { className: "Field__option", key: option.key, value: option.value, disabled: option.disabled }, option.label || option.value));
|
|
2526
|
+
})
|
|
2307
2527
|
: children),
|
|
2308
2528
|
React__default.createElement("div", { className: "arrow-down" })),
|
|
2309
2529
|
error && (React__default.createElement("div", { id: errorId, className: "Error" }, error))));
|
|
@@ -2352,7 +2572,7 @@ var RadioGroup = function (_a) {
|
|
|
2352
2572
|
var _a;
|
|
2353
2573
|
handleChange(radioValue);
|
|
2354
2574
|
onChange(radio, (_a = inputs.current) === null || _a === void 0 ? void 0 : _a[index]);
|
|
2355
|
-
}, disabled: disabled, checked: isChecked, "aria-describedby": labelDescription ? id
|
|
2575
|
+
}, disabled: disabled, checked: isChecked, "aria-describedby": labelDescription ? "".concat(id, "Desc") : undefined }, other)),
|
|
2356
2576
|
React__default.createElement("label", { htmlFor: id, className: classNames('Field__label', {
|
|
2357
2577
|
'Field__label--disabled': disabled
|
|
2358
2578
|
}) }, label),
|
|
@@ -2360,7 +2580,7 @@ var RadioGroup = function (_a) {
|
|
|
2360
2580
|
'Radio__overlay--focused': isFocused,
|
|
2361
2581
|
'Radio__overlay--disabled': disabled
|
|
2362
2582
|
}), type: isChecked ? 'radio-checked' : 'radio-unchecked', "aria-hidden": "true", onClick: function () { return onRadioClick(index); } }),
|
|
2363
|
-
labelDescription && (React__default.createElement("span", { id: id
|
|
2583
|
+
labelDescription && (React__default.createElement("span", { id: "".concat(id, "Desc"), className: classNames('Field__labelDescription', {
|
|
2364
2584
|
'Field__labelDescription--disabled': disabled
|
|
2365
2585
|
}) }, labelDescription))));
|
|
2366
2586
|
});
|
|
@@ -2380,7 +2600,7 @@ RadioGroup.propTypes = {
|
|
|
2380
2600
|
})).isRequired,
|
|
2381
2601
|
hasLabel: function (props, propName, componentName) {
|
|
2382
2602
|
if (!props['aria-label'] && !props['aria-labelledby']) {
|
|
2383
|
-
return new Error(componentName
|
|
2603
|
+
return new Error("".concat(componentName, " must have an \"aria-label\" or \"aria-labelledby\" prop"));
|
|
2384
2604
|
}
|
|
2385
2605
|
},
|
|
2386
2606
|
className: PropTypes.string,
|
|
@@ -2499,7 +2719,7 @@ RadioCardGroup.propTypes = {
|
|
|
2499
2719
|
})).isRequired,
|
|
2500
2720
|
hasLabel: function (props, propName, componentName) {
|
|
2501
2721
|
if (!props['aria-label'] && !props['aria-labelledby']) {
|
|
2502
|
-
return new Error(componentName
|
|
2722
|
+
return new Error("".concat(componentName, " must have an \"aria-label\" or \"aria-labelledby\" prop"));
|
|
2503
2723
|
}
|
|
2504
2724
|
},
|
|
2505
2725
|
className: PropTypes.string,
|
|
@@ -2670,152 +2890,6 @@ var TextField = /** @class */ (function (_super) {
|
|
|
2670
2890
|
return TextField;
|
|
2671
2891
|
}(React__default.Component));
|
|
2672
2892
|
|
|
2673
|
-
function PanelTrigger(_a) {
|
|
2674
|
-
var children = _a.children, className = _a.className, open = _a.open, fullWidth = _a.fullWidth, onClick = _a.onClick, _b = _a.iconExpanded, iconExpanded = _b === void 0 ? 'chevron-down' : _b, _c = _a.iconCollapsed, iconCollapsed = _c === void 0 ? 'chevron-right' : _c, other = tslib.__rest(_a, ["children", "className", "open", "fullWidth", "onClick", "iconExpanded", "iconCollapsed"]);
|
|
2675
|
-
return (React__default.createElement("button", tslib.__assign({}, other, { className: classNames('ExpandCollapse__trigger', fullWidth ? 'fullWidth' : '', className), type: "button", "aria-expanded": open, onClick: onClick }),
|
|
2676
|
-
React__default.createElement("div", { className: "ExpandCollapse__trigger-title" }, typeof children === 'function' ? children({ open: !!open }) : children),
|
|
2677
|
-
React__default.createElement(Icon, { type: open ? iconExpanded : iconCollapsed })));
|
|
2678
|
-
}
|
|
2679
|
-
PanelTrigger.propTypes = {
|
|
2680
|
-
children: PropTypes.oneOfType([PropTypes.func, PropTypes.node]),
|
|
2681
|
-
open: PropTypes.bool,
|
|
2682
|
-
onClick: PropTypes.func,
|
|
2683
|
-
className: PropTypes.string,
|
|
2684
|
-
iconExpanded: PropTypes.string,
|
|
2685
|
-
iconCollapsed: PropTypes.string
|
|
2686
|
-
};
|
|
2687
|
-
var PanelTrigger$1 = React__default.memo(PanelTrigger);
|
|
2688
|
-
|
|
2689
|
-
var injectStyleTag = function () {
|
|
2690
|
-
var style = document.createElement('style');
|
|
2691
|
-
document.head.appendChild(style);
|
|
2692
|
-
return style;
|
|
2693
|
-
};
|
|
2694
|
-
var setStyle = function (tag, cssString) {
|
|
2695
|
-
tag.textContent = cssString;
|
|
2696
|
-
};
|
|
2697
|
-
var removeStyleTag = function (tag) {
|
|
2698
|
-
document.head.removeChild(tag);
|
|
2699
|
-
};
|
|
2700
|
-
|
|
2701
|
-
var ExpandCollapsePanel = /** @class */ (function (_super) {
|
|
2702
|
-
tslib.__extends(ExpandCollapsePanel, _super);
|
|
2703
|
-
function ExpandCollapsePanel() {
|
|
2704
|
-
var _this = _super !== null && _super.apply(this, arguments) || this;
|
|
2705
|
-
_this.state = {
|
|
2706
|
-
controlled: typeof _this.props.open !== 'undefined',
|
|
2707
|
-
isOpen: typeof _this.props.open !== 'undefined' ? _this.props.open : false
|
|
2708
|
-
};
|
|
2709
|
-
_this.panel = React__default.createRef();
|
|
2710
|
-
_this.handleToggle = function (e) {
|
|
2711
|
-
var onToggle = _this.props.onToggle;
|
|
2712
|
-
var _a = _this.state, isOpen = _a.isOpen, controlled = _a.controlled;
|
|
2713
|
-
onToggle(e);
|
|
2714
|
-
if (!controlled) {
|
|
2715
|
-
_this.setState({ isOpen: !isOpen, isAnimating: true });
|
|
2716
|
-
}
|
|
2717
|
-
};
|
|
2718
|
-
_this.animateOpen = function () {
|
|
2719
|
-
var panel = _this.panel.current;
|
|
2720
|
-
var animationTiming = _this.props.animationTiming;
|
|
2721
|
-
if (!animationTiming) {
|
|
2722
|
-
_this.setState({ isAnimating: false });
|
|
2723
|
-
return;
|
|
2724
|
-
}
|
|
2725
|
-
var rect = panel === null || panel === void 0 ? void 0 : panel.getBoundingClientRect();
|
|
2726
|
-
if (!rect) {
|
|
2727
|
-
return;
|
|
2728
|
-
}
|
|
2729
|
-
if (!_this.styleTag) {
|
|
2730
|
-
_this.styleTag = injectStyleTag();
|
|
2731
|
-
}
|
|
2732
|
-
setStyle(_this.styleTag, "\n @keyframes expandOpenAnimation {\n 0% { opacity: 0; height: 0; }\n 100% { opacity: 1; height: " + rect.height + "px; }\n }\n\n .cauldron-expand-open {\n will-change: opacity, height;\n overflow: hidden;\n animation: expandOpenAnimation ease-in-out " + animationTiming + "ms forwards;\n }\n ");
|
|
2733
|
-
_this.setState({ animationClass: 'cauldron-expand-open' }, function () {
|
|
2734
|
-
setTimeout(function () {
|
|
2735
|
-
_this.setState({ animationClass: '', isAnimating: false });
|
|
2736
|
-
setStyle(_this.styleTag, '');
|
|
2737
|
-
}, animationTiming);
|
|
2738
|
-
});
|
|
2739
|
-
};
|
|
2740
|
-
_this.animateClose = function () {
|
|
2741
|
-
var panel = _this.panel.current;
|
|
2742
|
-
var animationTiming = _this.props.animationTiming;
|
|
2743
|
-
if (!animationTiming) {
|
|
2744
|
-
_this.setState({ isAnimating: false });
|
|
2745
|
-
return;
|
|
2746
|
-
}
|
|
2747
|
-
if (!_this.styleTag) {
|
|
2748
|
-
_this.styleTag = injectStyleTag();
|
|
2749
|
-
}
|
|
2750
|
-
var rect = panel === null || panel === void 0 ? void 0 : panel.getBoundingClientRect();
|
|
2751
|
-
if (!rect)
|
|
2752
|
-
return;
|
|
2753
|
-
setStyle(_this.styleTag, "\n @keyframes collapseCloseAnimation {\n 0% { opacity: 1; height: " + 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 " + animationTiming + "ms forwards;\n }\n ");
|
|
2754
|
-
_this.setState({ animationClass: 'cauldron-collapse-close' }, function () {
|
|
2755
|
-
setTimeout(function () {
|
|
2756
|
-
_this.setState({ animationClass: '', isAnimating: false });
|
|
2757
|
-
setStyle(_this.styleTag, '');
|
|
2758
|
-
}, animationTiming);
|
|
2759
|
-
});
|
|
2760
|
-
};
|
|
2761
|
-
return _this;
|
|
2762
|
-
}
|
|
2763
|
-
ExpandCollapsePanel.prototype.componentWillUnmount = function () {
|
|
2764
|
-
var styleTag = this.styleTag;
|
|
2765
|
-
if (styleTag) {
|
|
2766
|
-
removeStyleTag(styleTag);
|
|
2767
|
-
}
|
|
2768
|
-
};
|
|
2769
|
-
ExpandCollapsePanel.prototype.componentDidUpdate = function (prevProps, prevState) {
|
|
2770
|
-
var _a = this.state, openState = _a.isOpen, controlled = _a.controlled;
|
|
2771
|
-
var openProp = this.props.open;
|
|
2772
|
-
if (controlled && openState !== openProp) {
|
|
2773
|
-
this.setState({ isOpen: !!openProp, isAnimating: true });
|
|
2774
|
-
}
|
|
2775
|
-
if (typeof openProp !== typeof prevProps.open) {
|
|
2776
|
-
this.setState({ controlled: typeof openProp !== 'undefined' });
|
|
2777
|
-
}
|
|
2778
|
-
if (prevState.isOpen !== openState && openState) {
|
|
2779
|
-
this.animateOpen();
|
|
2780
|
-
}
|
|
2781
|
-
else if (prevState.isOpen !== openState && !openState) {
|
|
2782
|
-
this.animateClose();
|
|
2783
|
-
}
|
|
2784
|
-
};
|
|
2785
|
-
ExpandCollapsePanel.prototype.render = function () {
|
|
2786
|
-
/* eslint-disable no-unused-vars */
|
|
2787
|
-
var _a = this.props, children = _a.children, animationTiming = _a.animationTiming, className = _a.className, onToggle = _a.onToggle, open = _a.open, other = tslib.__rest(_a, ["children", "animationTiming", "className", "onToggle", "open"]);
|
|
2788
|
-
/* eslint-enable no-unused-vars */
|
|
2789
|
-
var _b = this.state, isOpen = _b.isOpen, isAnimating = _b.isAnimating, animationClass = _b.animationClass;
|
|
2790
|
-
var trigger = React__default.Children.toArray(children).find(function (child) { return child.type === PanelTrigger$1; });
|
|
2791
|
-
var panelElements = React__default.Children.toArray(children).filter(function (child) {
|
|
2792
|
-
return typeof child === 'string' ||
|
|
2793
|
-
child.type !== PanelTrigger$1;
|
|
2794
|
-
});
|
|
2795
|
-
return (React__default.createElement(React__default.Fragment, null,
|
|
2796
|
-
trigger &&
|
|
2797
|
-
React__default.cloneElement(trigger, {
|
|
2798
|
-
open: isOpen,
|
|
2799
|
-
onClick: this.handleToggle
|
|
2800
|
-
}),
|
|
2801
|
-
React__default.createElement("div", tslib.__assign({}, other, { className: classNames('ExpandCollapse__panel', animationClass, className, {
|
|
2802
|
-
'is--hidden': !isOpen && !isAnimating
|
|
2803
|
-
}), ref: this.panel }), panelElements)));
|
|
2804
|
-
};
|
|
2805
|
-
ExpandCollapsePanel.defaultProps = {
|
|
2806
|
-
animationTiming: 250,
|
|
2807
|
-
onToggle: function () { }
|
|
2808
|
-
};
|
|
2809
|
-
ExpandCollapsePanel.propTypes = {
|
|
2810
|
-
open: PropTypes.bool,
|
|
2811
|
-
children: PropTypes.node.isRequired,
|
|
2812
|
-
className: PropTypes.string,
|
|
2813
|
-
animationTiming: PropTypes.oneOfType([PropTypes.number, PropTypes.bool]),
|
|
2814
|
-
onToggle: PropTypes.func
|
|
2815
|
-
};
|
|
2816
|
-
return ExpandCollapsePanel;
|
|
2817
|
-
}(React__default.Component));
|
|
2818
|
-
|
|
2819
2893
|
function _objectWithoutPropertiesLoose(source, excluded) {
|
|
2820
2894
|
if (source == null) return {};
|
|
2821
2895
|
var target = {};
|
|
@@ -2918,27 +2992,6 @@ function _defineProperty(obj, key, value) {
|
|
|
2918
2992
|
|
|
2919
2993
|
var defineProperty = _defineProperty;
|
|
2920
2994
|
|
|
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
2995
|
function createCommonjsModule(fn, basedir, module) {
|
|
2943
2996
|
return module = {
|
|
2944
2997
|
path: basedir,
|
|
@@ -2975,6 +3028,9 @@ function _extends() {
|
|
|
2975
3028
|
module.exports = _extends;
|
|
2976
3029
|
});
|
|
2977
3030
|
|
|
3031
|
+
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; }
|
|
3032
|
+
|
|
3033
|
+
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
3034
|
//
|
|
2979
3035
|
// Super simple, non-algorithmic solution since the
|
|
2980
3036
|
// number of class names will not be greater than 4
|
|
@@ -3020,7 +3076,7 @@ function createStyleObject(classNames) {
|
|
|
3020
3076
|
});
|
|
3021
3077
|
var classNamesCombinations = getClassNameCombinations(nonTokenClassNames);
|
|
3022
3078
|
return classNamesCombinations.reduce(function (styleObject, className) {
|
|
3023
|
-
return
|
|
3079
|
+
return _objectSpread(_objectSpread({}, styleObject), stylesheet[className]);
|
|
3024
3080
|
}, elementStyle);
|
|
3025
3081
|
}
|
|
3026
3082
|
function createClassNameString(classNames) {
|
|
@@ -3059,7 +3115,7 @@ function createElement(_ref) {
|
|
|
3059
3115
|
var props;
|
|
3060
3116
|
|
|
3061
3117
|
if (!useInlineStyles) {
|
|
3062
|
-
props =
|
|
3118
|
+
props = _objectSpread(_objectSpread({}, properties), {}, {
|
|
3063
3119
|
className: createClassNameString(properties.className)
|
|
3064
3120
|
});
|
|
3065
3121
|
} else {
|
|
@@ -3074,14 +3130,14 @@ function createElement(_ref) {
|
|
|
3074
3130
|
var className = properties.className && startingClassName.concat(properties.className.filter(function (className) {
|
|
3075
3131
|
return !allStylesheetSelectors.includes(className);
|
|
3076
3132
|
}));
|
|
3077
|
-
props =
|
|
3133
|
+
props = _objectSpread(_objectSpread({}, properties), {}, {
|
|
3078
3134
|
className: createClassNameString(className) || undefined,
|
|
3079
3135
|
style: createStyleObject(properties.className, Object.assign({}, properties.style, style), stylesheet)
|
|
3080
3136
|
});
|
|
3081
3137
|
}
|
|
3082
3138
|
|
|
3083
3139
|
var children = childrenCreator(node.children);
|
|
3084
|
-
return React__default.createElement(TagName, _extends_1({
|
|
3140
|
+
return /*#__PURE__*/React__default.createElement(TagName, _extends_1({
|
|
3085
3141
|
key: key
|
|
3086
3142
|
}, props), children);
|
|
3087
3143
|
}
|
|
@@ -3092,6 +3148,11 @@ var checkForListedLanguage = (function (astGenerator, language) {
|
|
|
3092
3148
|
return langs.indexOf(language) !== -1;
|
|
3093
3149
|
});
|
|
3094
3150
|
|
|
3151
|
+
var _excluded = ["language", "children", "style", "customStyle", "codeTagProps", "useInlineStyles", "showLineNumbers", "showInlineLineNumbers", "startingLineNumber", "lineNumberContainerStyle", "lineNumberStyle", "wrapLines", "wrapLongLines", "lineProps", "renderer", "PreTag", "CodeTag", "code", "astGenerator"];
|
|
3152
|
+
|
|
3153
|
+
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; }
|
|
3154
|
+
|
|
3155
|
+
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
3156
|
var newLineRegex = /\n/g;
|
|
3096
3157
|
|
|
3097
3158
|
function getNewLines(str) {
|
|
@@ -3104,7 +3165,7 @@ function getAllLineNumbers(_ref) {
|
|
|
3104
3165
|
style = _ref.style;
|
|
3105
3166
|
return lines.map(function (_, i) {
|
|
3106
3167
|
var number = i + startingLineNumber;
|
|
3107
|
-
return React__default.createElement("span", {
|
|
3168
|
+
return /*#__PURE__*/React__default.createElement("span", {
|
|
3108
3169
|
key: "line-".concat(i),
|
|
3109
3170
|
className: "react-syntax-highlighter-line-number",
|
|
3110
3171
|
style: typeof style === 'function' ? style(number) : style
|
|
@@ -3117,13 +3178,13 @@ function AllLineNumbers(_ref2) {
|
|
|
3117
3178
|
codeStyle = _ref2.codeStyle,
|
|
3118
3179
|
_ref2$containerStyle = _ref2.containerStyle,
|
|
3119
3180
|
containerStyle = _ref2$containerStyle === void 0 ? {
|
|
3120
|
-
float: 'left',
|
|
3181
|
+
"float": 'left',
|
|
3121
3182
|
paddingRight: '10px'
|
|
3122
3183
|
} : _ref2$containerStyle,
|
|
3123
3184
|
_ref2$numberStyle = _ref2.numberStyle,
|
|
3124
3185
|
numberStyle = _ref2$numberStyle === void 0 ? {} : _ref2$numberStyle,
|
|
3125
3186
|
startingLineNumber = _ref2.startingLineNumber;
|
|
3126
|
-
return React__default.createElement("code", {
|
|
3187
|
+
return /*#__PURE__*/React__default.createElement("code", {
|
|
3127
3188
|
style: Object.assign({}, codeStyle, containerStyle)
|
|
3128
3189
|
}, getAllLineNumbers({
|
|
3129
3190
|
lines: codeString.replace(/\n$/, '').split('\n'),
|
|
@@ -3164,7 +3225,7 @@ function assembleLineNumberStyles(lineNumberStyle, lineNumber, largestLineNumber
|
|
|
3164
3225
|
|
|
3165
3226
|
var customLineNumberStyle = typeof lineNumberStyle === 'function' ? lineNumberStyle(lineNumber) : lineNumberStyle; // combine
|
|
3166
3227
|
|
|
3167
|
-
var assembledStyle =
|
|
3228
|
+
var assembledStyle = _objectSpread$1(_objectSpread$1({}, defaultLineNumberStyle), customLineNumberStyle);
|
|
3168
3229
|
|
|
3169
3230
|
return assembledStyle;
|
|
3170
3231
|
}
|
|
@@ -3190,7 +3251,7 @@ function createLineElement(_ref3) {
|
|
|
3190
3251
|
}
|
|
3191
3252
|
|
|
3192
3253
|
if (wrapLongLines & showLineNumbers) {
|
|
3193
|
-
properties.style =
|
|
3254
|
+
properties.style = _objectSpread$1(_objectSpread$1({}, properties.style), {}, {
|
|
3194
3255
|
display: 'flex'
|
|
3195
3256
|
});
|
|
3196
3257
|
}
|
|
@@ -3217,7 +3278,9 @@ function flattenCodeTree(tree) {
|
|
|
3217
3278
|
}));
|
|
3218
3279
|
} else if (node.children) {
|
|
3219
3280
|
var classNames = className.concat(node.properties.className);
|
|
3220
|
-
|
|
3281
|
+
flattenCodeTree(node.children, classNames).forEach(function (i) {
|
|
3282
|
+
return newTree.push(i);
|
|
3283
|
+
});
|
|
3221
3284
|
}
|
|
3222
3285
|
}
|
|
3223
3286
|
|
|
@@ -3286,19 +3349,19 @@ function processLines(codeTree, wrapLines, lineProps, showLineNumbers, showInlin
|
|
|
3286
3349
|
newTree.push(_line); // if it's the last line
|
|
3287
3350
|
} else if (i === splitValue.length - 1) {
|
|
3288
3351
|
var stringChild = tree[index + 1] && tree[index + 1].children && tree[index + 1].children[0];
|
|
3352
|
+
var lastLineInPreviousSpan = {
|
|
3353
|
+
type: 'text',
|
|
3354
|
+
value: "".concat(text)
|
|
3355
|
+
};
|
|
3289
3356
|
|
|
3290
3357
|
if (stringChild) {
|
|
3291
|
-
var lastLineInPreviousSpan = {
|
|
3292
|
-
type: 'text',
|
|
3293
|
-
value: "".concat(text)
|
|
3294
|
-
};
|
|
3295
3358
|
var newElem = createLineElement({
|
|
3296
3359
|
children: [lastLineInPreviousSpan],
|
|
3297
3360
|
className: node.properties.className
|
|
3298
3361
|
});
|
|
3299
3362
|
tree.splice(index + 1, 0, newElem);
|
|
3300
3363
|
} else {
|
|
3301
|
-
var _children2 = [
|
|
3364
|
+
var _children2 = [lastLineInPreviousSpan];
|
|
3302
3365
|
|
|
3303
3366
|
var _line2 = createLine(_children2, lineNumber, node.properties.className);
|
|
3304
3367
|
|
|
@@ -3404,7 +3467,7 @@ function highlight (defaultAstGenerator, defaultStyle) {
|
|
|
3404
3467
|
_ref7$codeTagProps = _ref7.codeTagProps,
|
|
3405
3468
|
codeTagProps = _ref7$codeTagProps === void 0 ? {
|
|
3406
3469
|
className: language ? "language-".concat(language) : undefined,
|
|
3407
|
-
style:
|
|
3470
|
+
style: _objectSpread$1(_objectSpread$1({}, style['code[class*="language-"]']), style["code[class*=\"language-".concat(language, "\"]")])
|
|
3408
3471
|
} : _ref7$codeTagProps,
|
|
3409
3472
|
_ref7$useInlineStyles = _ref7.useInlineStyles,
|
|
3410
3473
|
useInlineStyles = _ref7$useInlineStyles === void 0 ? true : _ref7$useInlineStyles,
|
|
@@ -3428,12 +3491,12 @@ function highlight (defaultAstGenerator, defaultStyle) {
|
|
|
3428
3491
|
_ref7$CodeTag = _ref7.CodeTag,
|
|
3429
3492
|
CodeTag = _ref7$CodeTag === void 0 ? 'code' : _ref7$CodeTag,
|
|
3430
3493
|
_ref7$code = _ref7.code,
|
|
3431
|
-
code = _ref7$code === void 0 ? Array.isArray(children) ? children[0] : children : _ref7$code,
|
|
3494
|
+
code = _ref7$code === void 0 ? (Array.isArray(children) ? children[0] : children) || '' : _ref7$code,
|
|
3432
3495
|
astGenerator = _ref7.astGenerator,
|
|
3433
|
-
rest = objectWithoutProperties(_ref7,
|
|
3496
|
+
rest = objectWithoutProperties(_ref7, _excluded);
|
|
3434
3497
|
|
|
3435
3498
|
astGenerator = astGenerator || defaultAstGenerator;
|
|
3436
|
-
var allLineNumbers = showLineNumbers ? React__default.createElement(AllLineNumbers, {
|
|
3499
|
+
var allLineNumbers = showLineNumbers ? /*#__PURE__*/React__default.createElement(AllLineNumbers, {
|
|
3437
3500
|
containerStyle: lineNumberContainerStyle,
|
|
3438
3501
|
codeStyle: codeTagProps.style || {},
|
|
3439
3502
|
numberStyle: lineNumberStyle,
|
|
@@ -3451,8 +3514,18 @@ function highlight (defaultAstGenerator, defaultStyle) {
|
|
|
3451
3514
|
style: Object.assign({}, customStyle)
|
|
3452
3515
|
});
|
|
3453
3516
|
|
|
3517
|
+
if (wrapLongLines) {
|
|
3518
|
+
codeTagProps.style = _objectSpread$1(_objectSpread$1({}, codeTagProps.style), {}, {
|
|
3519
|
+
whiteSpace: 'pre-wrap'
|
|
3520
|
+
});
|
|
3521
|
+
} else {
|
|
3522
|
+
codeTagProps.style = _objectSpread$1(_objectSpread$1({}, codeTagProps.style), {}, {
|
|
3523
|
+
whiteSpace: 'pre'
|
|
3524
|
+
});
|
|
3525
|
+
}
|
|
3526
|
+
|
|
3454
3527
|
if (!astGenerator) {
|
|
3455
|
-
return React__default.createElement(PreTag, preProps, allLineNumbers, React__default.createElement(CodeTag, codeTagProps, code));
|
|
3528
|
+
return /*#__PURE__*/React__default.createElement(PreTag, preProps, allLineNumbers, /*#__PURE__*/React__default.createElement(CodeTag, codeTagProps, code));
|
|
3456
3529
|
}
|
|
3457
3530
|
/*
|
|
3458
3531
|
* Some custom renderers rely on individual row elements so we need to turn wrapLines on
|
|
@@ -3480,18 +3553,7 @@ function highlight (defaultAstGenerator, defaultStyle) {
|
|
|
3480
3553
|
|
|
3481
3554
|
var largestLineNumber = codeTree.value.length + startingLineNumber;
|
|
3482
3555
|
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({
|
|
3556
|
+
return /*#__PURE__*/React__default.createElement(PreTag, preProps, /*#__PURE__*/React__default.createElement(CodeTag, codeTagProps, !showInlineLineNumbers && allLineNumbers, renderer({
|
|
3495
3557
|
rows: rows,
|
|
3496
3558
|
stylesheet: style,
|
|
3497
3559
|
useInlineStyles: useInlineStyles
|
|
@@ -8056,15 +8118,19 @@ SyntaxHighlighter.registerLanguage('javascript', javascript_1);
|
|
|
8056
8118
|
SyntaxHighlighter.registerLanguage('css', css_1);
|
|
8057
8119
|
SyntaxHighlighter.registerLanguage('html', xml_1);
|
|
8058
8120
|
SyntaxHighlighter.registerLanguage('yaml', yaml_1);
|
|
8121
|
+
// HACK: This is a workaround for a bug in react-syntax-highlighter's types.
|
|
8122
|
+
var Highlighter = SyntaxHighlighter;
|
|
8059
8123
|
var Code = function (_a) {
|
|
8060
8124
|
var children = _a.children, className = _a.className, tabIndex = _a.tabIndex, props = tslib.__rest(_a, ["children", "className", "tabIndex"]);
|
|
8061
|
-
return (React__default.createElement(
|
|
8125
|
+
return (React__default.createElement(React__default.Fragment, null,
|
|
8126
|
+
React__default.createElement(Highlighter, tslib.__assign({}, props, { useInlineStyles: false, className: classNames('Code', className), tabIndex: tabIndex }), children)));
|
|
8062
8127
|
};
|
|
8063
8128
|
Code.displayName = 'Code';
|
|
8064
8129
|
Code.propTypes = {
|
|
8065
8130
|
children: PropTypes.string.isRequired,
|
|
8066
8131
|
language: PropTypes.oneOf(['javascript', 'css', 'html', 'yaml']),
|
|
8067
|
-
className: PropTypes.string
|
|
8132
|
+
className: PropTypes.string,
|
|
8133
|
+
tabIndex: PropTypes.number
|
|
8068
8134
|
};
|
|
8069
8135
|
|
|
8070
8136
|
function AxeLoader() {
|
|
@@ -8143,6 +8209,7 @@ LoaderOverlay.propTypes = {
|
|
|
8143
8209
|
variant: PropTypes.oneOf(['large', 'small']),
|
|
8144
8210
|
label: PropTypes.string,
|
|
8145
8211
|
focusOnInitialRender: PropTypes.bool,
|
|
8212
|
+
// @ts-expect-error
|
|
8146
8213
|
children: PropTypes.node
|
|
8147
8214
|
};
|
|
8148
8215
|
LoaderOverlay.displayName = 'LoaderOverlay';
|
|
@@ -8262,6 +8329,7 @@ Tab.displayName = 'Tab';
|
|
|
8262
8329
|
Tab.propTypes = {
|
|
8263
8330
|
target: PropTypes.any.isRequired,
|
|
8264
8331
|
id: PropTypes.string,
|
|
8332
|
+
// @ts-expect-error
|
|
8265
8333
|
children: PropTypes.node
|
|
8266
8334
|
};
|
|
8267
8335
|
|
|
@@ -8356,7 +8424,8 @@ var Tabs = function (_a) {
|
|
|
8356
8424
|
React.useEffect(function () {
|
|
8357
8425
|
var _a, _b;
|
|
8358
8426
|
index === activeIndex
|
|
8359
|
-
? (_a = target.current) === null || _a === void 0 ? void 0 : _a.classList.remove('TabPanel--hidden')
|
|
8427
|
+
? (_a = target.current) === null || _a === void 0 ? void 0 : _a.classList.remove('TabPanel--hidden')
|
|
8428
|
+
: (_b = target.current) === null || _b === void 0 ? void 0 : _b.classList.add('TabPanel--hidden');
|
|
8360
8429
|
}, [activeIndex]);
|
|
8361
8430
|
var config = tslib.__assign((_a = { id: id, className: classNames('Tab', {
|
|
8362
8431
|
'Tab--active': selected
|
|
@@ -8396,6 +8465,7 @@ var TabPanel = React.forwardRef(function (_a, ref) {
|
|
|
8396
8465
|
TabPanel.displayName = 'TabPanel';
|
|
8397
8466
|
TabPanel.propTypes = {
|
|
8398
8467
|
id: PropTypes.string,
|
|
8468
|
+
// @ts-expect-error
|
|
8399
8469
|
children: PropTypes.node,
|
|
8400
8470
|
className: PropTypes.string
|
|
8401
8471
|
};
|
|
@@ -8442,12 +8512,12 @@ var Step = function (props) {
|
|
|
8442
8512
|
var liProps;
|
|
8443
8513
|
var isTooltip = isTooltipProps(other);
|
|
8444
8514
|
if (isTooltip) {
|
|
8445
|
-
(_a = other, (tooltip = _a.tooltip, tooltipText = _a.tooltipText
|
|
8515
|
+
(_a = other, (tooltip = _a.tooltip, tooltipText = _a.tooltipText), liProps = tslib.__rest(_a, ["tooltip", "tooltipText"]));
|
|
8446
8516
|
}
|
|
8447
8517
|
else {
|
|
8448
8518
|
liProps = other;
|
|
8449
8519
|
}
|
|
8450
|
-
return (React__default.createElement("li", tslib.__assign({ className: classNames('Stepper__step', "Stepper__step--"
|
|
8520
|
+
return (React__default.createElement("li", tslib.__assign({ className: classNames('Stepper__step', "Stepper__step--".concat(status), className), "aria-current": status === 'current' ? 'step' : 'false' }, liProps),
|
|
8451
8521
|
React__default.createElement("div", { className: "Stepper__step-line" }),
|
|
8452
8522
|
React__default.createElement("div", { className: "Stepper__step-content" }, isTooltip ? (React__default.createElement(TooltipTabstop, { placement: "bottom", tooltip: tooltip,
|
|
8453
8523
|
// the pseudo content (ex: "1") is conveyed
|
|
@@ -8489,7 +8559,7 @@ var Panel = React.forwardRef(function (_a, ref) {
|
|
|
8489
8559
|
if (!headingId) {
|
|
8490
8560
|
return null;
|
|
8491
8561
|
}
|
|
8492
|
-
var HeadingComponent = "h"
|
|
8562
|
+
var HeadingComponent = "h".concat(heading &&
|
|
8493
8563
|
typeof heading === 'object' &&
|
|
8494
8564
|
'level' in heading &&
|
|
8495
8565
|
!!heading.level
|
|
@@ -8507,7 +8577,9 @@ var Panel = React.forwardRef(function (_a, ref) {
|
|
|
8507
8577
|
});
|
|
8508
8578
|
Panel.displayName = 'Panel';
|
|
8509
8579
|
Panel.propTypes = {
|
|
8580
|
+
// @ts-expect-error
|
|
8510
8581
|
children: PropTypes.node.isRequired,
|
|
8582
|
+
// @ts-expect-error
|
|
8511
8583
|
heading: PropTypes.oneOfType([PropTypes.object, PropTypes.node]),
|
|
8512
8584
|
className: PropTypes.string
|
|
8513
8585
|
};
|
|
@@ -8517,7 +8589,7 @@ var IssuePanel = function (_a) {
|
|
|
8517
8589
|
return (React__default.createElement("div", { className: classNames('IssuePanel', className) },
|
|
8518
8590
|
React__default.createElement("div", { className: "IssuePanel__Header" },
|
|
8519
8591
|
title && React__default.createElement("div", { className: "IssuePanel__Header-title" }, title),
|
|
8520
|
-
actions && React__default.createElement("div", { className: "IssuePanel__Header-actions" }, actions)),
|
|
8592
|
+
actions && (React__default.createElement("div", { className: "IssuePanel__Header-actions" }, actions))),
|
|
8521
8593
|
React__default.createElement("div", { className: "IssuePanel__Content" }, children)));
|
|
8522
8594
|
};
|
|
8523
8595
|
IssuePanel.displayName = 'IssuePanel';
|
|
@@ -8530,7 +8602,7 @@ var ProgressBar = React.forwardRef(function (_a, ref) {
|
|
|
8530
8602
|
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
8603
|
var className = props.className, otherProps = tslib.__rest(props, ["className"]);
|
|
8532
8604
|
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)
|
|
8605
|
+
React__default.createElement("div", { className: "ProgressBar--fill", style: { width: "".concat(Math.min((progress / progressMax) * 100, 100), "%") } })));
|
|
8534
8606
|
});
|
|
8535
8607
|
ProgressBar.displayName = 'ProgressBar';
|
|
8536
8608
|
|
|
@@ -8645,6 +8717,7 @@ var FieldWrap = React__default.forwardRef(function (_a, ref) {
|
|
|
8645
8717
|
});
|
|
8646
8718
|
FieldWrap.displayName = 'FieldWrap';
|
|
8647
8719
|
FieldWrap.propTypes = {
|
|
8720
|
+
// @ts-expect-error
|
|
8648
8721
|
children: PropTypes.node.isRequired,
|
|
8649
8722
|
className: PropTypes.string,
|
|
8650
8723
|
as: PropTypes.string
|
|
@@ -8665,7 +8738,7 @@ var Breadcrumb = React.forwardRef(function (_a, ref) {
|
|
|
8665
8738
|
}
|
|
8666
8739
|
});
|
|
8667
8740
|
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-"
|
|
8741
|
+
React__default.createElement("ol", null, childrenWithSeparators.map(function (child, index) { return (React__default.createElement("li", { className: "Breadcrumb__Item", key: "breadcrumb-".concat(index) }, child)); }))));
|
|
8669
8742
|
});
|
|
8670
8743
|
Breadcrumb.displayName = 'Breadcrumb';
|
|
8671
8744
|
|
|
@@ -8678,6 +8751,7 @@ var BreadcrumbLink = React.forwardRef(function (_a, ref) {
|
|
|
8678
8751
|
var className = _a.className, _b = _a.as, ElementType = _b === void 0 ? 'a' : _b, children = _a.children, props = tslib.__rest(_a, ["className", "as", "children"]);
|
|
8679
8752
|
return (React__default.createElement(ElementType, tslib.__assign({ className: classNames('Link', 'Breadcrumb__Link', className), ref: ref }, props), children));
|
|
8680
8753
|
});
|
|
8754
|
+
BreadcrumbLink.displayName = 'BreadcrumbLink';
|
|
8681
8755
|
|
|
8682
8756
|
var ColumnLeft = React.forwardRef(function (_a, ref) {
|
|
8683
8757
|
var className = _a.className, children = _a.children, props = tslib.__rest(_a, ["className", "children"]);
|
|
@@ -8696,6 +8770,11 @@ var TwoColumnPanel = React.forwardRef(function (_a, ref) {
|
|
|
8696
8770
|
var _f = tslib.__read(React.useState(initialCollapsed), 2), isCollapsed = _f[0], setCollapsed = _f[1];
|
|
8697
8771
|
var _g = tslib.__read(React.useState(false), 2), isFocusTrap = _g[0], setIsFocusTrap = _g[1];
|
|
8698
8772
|
var _h = tslib.__read(React.useState(!initialCollapsed), 2), showPanel = _h[0], setShowPanel = _h[1];
|
|
8773
|
+
var toggleButtonRef = React.useRef(null);
|
|
8774
|
+
var closeButtonRef = React.useRef(null);
|
|
8775
|
+
var columnLeftRef = React.useRef(null);
|
|
8776
|
+
var columnRightRef = React.useRef(null);
|
|
8777
|
+
var columnLeft = React__default.Children.toArray(children).find(function (child) { return child.type === ColumnLeft; });
|
|
8699
8778
|
var togglePanel = function () {
|
|
8700
8779
|
if (isCollapsed) {
|
|
8701
8780
|
setShowPanel(true);
|
|
@@ -8713,11 +8792,6 @@ var TwoColumnPanel = React.forwardRef(function (_a, ref) {
|
|
|
8713
8792
|
}
|
|
8714
8793
|
});
|
|
8715
8794
|
};
|
|
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
8795
|
// The ColumnLeftComponent will end up being a focus trap when < 720px
|
|
8722
8796
|
// This component also gets unmounted when not visible meaning that any
|
|
8723
8797
|
// aria relationships cannot be set to items inside the component since
|
|
@@ -8732,11 +8806,11 @@ var TwoColumnPanel = React.forwardRef(function (_a, ref) {
|
|
|
8732
8806
|
React__default.createElement("button", { type: "button", onClick: togglePanel, ref: closeButtonRef, "aria-label": hideCollapsedPanelLabel },
|
|
8733
8807
|
React__default.createElement(Icon, { type: "close" })),
|
|
8734
8808
|
React__default.createElement(Tooltip, { target: closeButtonRef, association: "aria-labelledby", hideElementOnHidden: true }, hideCollapsedPanelLabel)));
|
|
8735
|
-
var children_1 = tslib.
|
|
8809
|
+
var children_1 = tslib.__spreadArray([
|
|
8736
8810
|
CloseButton
|
|
8737
|
-
], React__default.Children.toArray(columnLeft.props.children));
|
|
8811
|
+
], tslib.__read(React__default.Children.toArray(columnLeft.props.children)), false);
|
|
8738
8812
|
ColumnLeftComponent = React.cloneElement(columnLeft, { id: id, ref: ref_1, tabIndex: -1 }, children_1.map(function (child, index) {
|
|
8739
|
-
return React.cloneElement(child, { key: "left-"
|
|
8813
|
+
return React.cloneElement(child, { key: "left-".concat(index) });
|
|
8740
8814
|
}));
|
|
8741
8815
|
}
|
|
8742
8816
|
var columnRight = React__default.Children.toArray(children).find(function (child) { return child.type === ColumnRight; });
|
|
@@ -8747,11 +8821,11 @@ var TwoColumnPanel = React.forwardRef(function (_a, ref) {
|
|
|
8747
8821
|
React__default.createElement("button", { type: "button", onClick: togglePanel, ref: toggleButtonRef, "aria-label": !isCollapsed ? hideCollapsedPanelLabel : showCollapsedPanelLabel, "aria-expanded": !isCollapsed, "aria-controls": columnLeftId },
|
|
8748
8822
|
React__default.createElement(Icon, { type: !isCollapsed ? 'chevron-double-left' : 'chevron-double-right' })),
|
|
8749
8823
|
React__default.createElement(Tooltip, { target: toggleButtonRef, association: "aria-labelledby", hideElementOnHidden: true }, !isCollapsed ? hideCollapsedPanelLabel : showCollapsedPanelLabel)));
|
|
8750
|
-
var children_2 = tslib.
|
|
8824
|
+
var children_2 = tslib.__spreadArray([
|
|
8751
8825
|
ToggleButton
|
|
8752
|
-
], React__default.Children.toArray(columnRight.props.children));
|
|
8826
|
+
], tslib.__read(React__default.Children.toArray(columnRight.props.children)), false);
|
|
8753
8827
|
ColumnRightComponent = React.cloneElement(columnRight, { ref: ref_2, tabIndex: -1 }, children_2.map(function (child, index) {
|
|
8754
|
-
return React.cloneElement(child, { key: "right-"
|
|
8828
|
+
return React.cloneElement(child, { key: "right-".concat(index) });
|
|
8755
8829
|
}));
|
|
8756
8830
|
}
|
|
8757
8831
|
React.useLayoutEffect(function () {
|
|
@@ -8816,15 +8890,16 @@ var TwoColumnPanel = React.forwardRef(function (_a, ref) {
|
|
|
8816
8890
|
'TwoColumnPanel--show': !isCollapsed,
|
|
8817
8891
|
'TwoColumnPanel--hide': isCollapsed
|
|
8818
8892
|
}) }, props, { ref: ref }),
|
|
8819
|
-
React__default.createElement(
|
|
8820
|
-
|
|
8821
|
-
|
|
8822
|
-
|
|
8823
|
-
|
|
8824
|
-
|
|
8825
|
-
|
|
8826
|
-
|
|
8827
|
-
|
|
8893
|
+
React__default.createElement(React__default.Fragment, null,
|
|
8894
|
+
React__default.createElement(FocusTrap, { active: !isCollapsed && isFocusTrap, focusTrapOptions: {
|
|
8895
|
+
escapeDeactivates: true,
|
|
8896
|
+
allowOutsideClick: true,
|
|
8897
|
+
fallbackFocus: columnLeftRef.current
|
|
8898
|
+
}, containerElements: [columnLeftRef.current] }),
|
|
8899
|
+
React__default.createElement(ClickOutsideListener, { onClickOutside: handleClickOutside, target: columnLeftRef.current }),
|
|
8900
|
+
isCollapsed ? null : skipLink,
|
|
8901
|
+
showPanel ? ColumnLeftComponent : null,
|
|
8902
|
+
ColumnRightComponent)));
|
|
8828
8903
|
});
|
|
8829
8904
|
TwoColumnPanel.displayName = 'TwoColumnPanel';
|
|
8830
8905
|
|
|
@@ -8905,6 +8980,9 @@ ThemeProvider.propTypes = {
|
|
|
8905
8980
|
initialTheme: PropTypes.string
|
|
8906
8981
|
};
|
|
8907
8982
|
|
|
8983
|
+
exports.Accordion = Accordion;
|
|
8984
|
+
exports.AccordionContent = AccordionContent;
|
|
8985
|
+
exports.AccordionTrigger = AccordionTrigger;
|
|
8908
8986
|
exports.Address = Address;
|
|
8909
8987
|
exports.AddressCityStateZip = AddressCityStateZip;
|
|
8910
8988
|
exports.AddressLine = AddressLine;
|