@indico-data/design-system 2.21.2 → 2.22.0
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/index.css +121 -9
- package/lib/index.d.ts +64 -57
- package/lib/index.esm.css +121 -9
- package/lib/index.esm.js +45 -36
- package/lib/index.esm.js.map +1 -1
- package/lib/index.js +45 -35
- package/lib/index.js.map +1 -1
- package/lib/src/components/pill/Pill.d.ts +7 -0
- package/lib/src/components/pill/Pill.stories.d.ts +8 -0
- package/lib/src/components/pill/__tests__/Pill.test.d.ts +1 -0
- package/lib/src/components/pill/index.d.ts +1 -0
- package/lib/src/index.d.ts +1 -0
- package/package.json +1 -1
- package/src/components/pill/Pill.mdx +20 -0
- package/src/components/pill/Pill.stories.tsx +113 -0
- package/src/components/pill/Pill.tsx +20 -0
- package/src/components/pill/__tests__/Pill.test.tsx +34 -0
- package/src/components/pill/index.ts +1 -0
- package/src/components/pill/styles/Pill.scss +125 -0
- package/src/index.ts +1 -0
- package/src/styles/index.scss +1 -0
- package/src/styles/variables/themes/dark.scss +9 -5
- package/src/styles/variables/themes/light.scss +5 -4
package/lib/index.js
CHANGED
|
@@ -3184,11 +3184,11 @@ var classnames = {exports: {}};
|
|
|
3184
3184
|
} (classnames));
|
|
3185
3185
|
|
|
3186
3186
|
var classnamesExports = classnames.exports;
|
|
3187
|
-
var
|
|
3187
|
+
var classNames = /*@__PURE__*/getDefaultExportFromCjs(classnamesExports);
|
|
3188
3188
|
|
|
3189
3189
|
const Button$2 = e.forwardRef((props, ref) => {
|
|
3190
3190
|
const { ariaLabel, children, isLoading, isDisabled, variant = 'solid', color = 'primary', iconPosition = 'left', iconName, onClick, type = 'button', size = 'md', onMouseEnter, onMouseExit, onKeyDown, className, href } = props, rest = __rest$1(props, ["ariaLabel", "children", "isLoading", "isDisabled", "variant", "color", "iconPosition", "iconName", "onClick", "type", "size", "onMouseEnter", "onMouseExit", "onKeyDown", "className", "href"]);
|
|
3191
|
-
const buttonClasses =
|
|
3191
|
+
const buttonClasses = classNames('btn', {
|
|
3192
3192
|
[`btn--${color}`]: color,
|
|
3193
3193
|
[`btn--${variant}`]: variant,
|
|
3194
3194
|
[`btn--${size}`]: size,
|
|
@@ -18215,7 +18215,7 @@ const Icon = (_a) => {
|
|
|
18215
18215
|
console.error(`Icon "${name}" not found`);
|
|
18216
18216
|
return null;
|
|
18217
18217
|
}
|
|
18218
|
-
const iconClasses =
|
|
18218
|
+
const iconClasses = classNames('icon', {
|
|
18219
18219
|
[`icon--${size}`]: size,
|
|
18220
18220
|
}, className);
|
|
18221
18221
|
return faIcon ? (jsxRuntime.jsx(FontAwesomeIcon, Object.assign({ icon: faIcon, className: iconClasses, "aria-label": label }, props))) : (e.cloneElement(customIcon, Object.assign({ className: iconClasses, 'aria-label': label }, props)));
|
|
@@ -18639,7 +18639,7 @@ const Input = e__namespace.default.forwardRef((_a, ref) => {
|
|
|
18639
18639
|
const handleClear = () => {
|
|
18640
18640
|
onChange({ target: { value: '' } });
|
|
18641
18641
|
};
|
|
18642
|
-
const inputClasses =
|
|
18642
|
+
const inputClasses = classNames('input', {
|
|
18643
18643
|
error: hasErrors,
|
|
18644
18644
|
'input--has-icon': iconName,
|
|
18645
18645
|
}, className);
|
|
@@ -18665,7 +18665,7 @@ const Toggle$1 = e__namespace.default.forwardRef((_a, ref) => {
|
|
|
18665
18665
|
const Textarea = e__namespace.default.forwardRef((_a, ref) => {
|
|
18666
18666
|
var { label, name, placeholder, value, onChange, isRequired, isDisabled, errorMessage, helpText, hasHiddenLabel, rows, cols, readonly, wrap, form, maxLength, autofocus } = _a, rest = __rest$1(_a, ["label", "name", "placeholder", "value", "onChange", "isRequired", "isDisabled", "errorMessage", "helpText", "hasHiddenLabel", "rows", "cols", "readonly", "wrap", "form", "maxLength", "autofocus"]);
|
|
18667
18667
|
const hasErrors = errorMessage && errorMessage.length > 0;
|
|
18668
|
-
const textareaClasses =
|
|
18668
|
+
const textareaClasses = classNames('textarea', { error: hasErrors });
|
|
18669
18669
|
return (jsxRuntime.jsxs(jsxRuntime.Fragment, { children: [jsxRuntime.jsx("div", { className: "textarea-wrapper", children: jsxRuntime.jsx("textarea", Object.assign({ ref: ref, rows: rows, cols: cols, autoFocus: autofocus, wrap: wrap, form: form, maxLength: maxLength, readOnly: readonly, "data-testid": `form-textarea-${name}`, name: name, disabled: isDisabled, placeholder: placeholder, onChange: onChange, className: textareaClasses, "aria-invalid": hasErrors ? true : undefined, "aria-describedby": hasErrors || helpText ? `${name}-helper` : undefined, "aria-required": isRequired }, rest)) }), hasErrors && jsxRuntime.jsx(DisplayFormError, { message: errorMessage }), helpText && (jsxRuntime.jsx("div", { "data-testid": `${name}-help-text`, className: "help-text", id: `${name}-helper`, children: helpText }))] }));
|
|
18670
18670
|
});
|
|
18671
18671
|
const LabeledTextarea = withLabel(Textarea);
|
|
@@ -18677,7 +18677,7 @@ const PasswordInput = e__namespace.default.forwardRef((_a, ref) => {
|
|
|
18677
18677
|
const handleShowPassword = () => {
|
|
18678
18678
|
setShowPassword((prevShowPassword) => !prevShowPassword);
|
|
18679
18679
|
};
|
|
18680
|
-
const inputClasses =
|
|
18680
|
+
const inputClasses = classNames('password-input', {
|
|
18681
18681
|
error: hasErrors,
|
|
18682
18682
|
}, 'password-input--has-icon');
|
|
18683
18683
|
return (jsxRuntime.jsxs(jsxRuntime.Fragment, { children: [jsxRuntime.jsxs("div", { className: "password-input-wrapper", children: [jsxRuntime.jsx(Icon, { name: "lock", "data-testid": `${name}-embedded-icon`, className: "embedded-icon" }), jsxRuntime.jsx("input", Object.assign({ ref: ref, "data-testid": `form-password-input-${name}`, name: name, type: showPassword ? 'text' : 'password', disabled: isDisabled, placeholder: placeholder, onChange: onChange, className: inputClasses, "aria-invalid": hasErrors ? 'true' : 'false', "aria-describedby": hasErrors || helpText ? `${name}-helper` : undefined, "aria-required": isRequired }, rest)), hasShowPassword && (jsxRuntime.jsx(Icon, { name: showPassword ? 'fa-eye-slash' : 'eye', "data-testid": `${name}-${showPassword ? 'hide' : 'show'}-password-icon`, size: "md", onClick: handleShowPassword, className: "toggle-show-password-icon" }))] }), hasErrors && jsxRuntime.jsx(DisplayFormError, { message: errorMessage }), helpText && (jsxRuntime.jsx("div", { "data-testid": `${name}-help-text`, className: "help-text", id: `${name}-helper`, children: helpText }))] }));
|
|
@@ -18695,7 +18695,7 @@ const Select$1 = (_a) => {
|
|
|
18695
18695
|
Option: OptionComponent,
|
|
18696
18696
|
};
|
|
18697
18697
|
const mergedComponents = Object.assign(Object.assign({}, defaultComponents), customComponents);
|
|
18698
|
-
return (jsxRuntime.jsx(ReactSelect__default.default, Object.assign({ classNamePrefix: classNamePrefix, className:
|
|
18698
|
+
return (jsxRuntime.jsx(ReactSelect__default.default, Object.assign({ classNamePrefix: classNamePrefix, className: classNames('select-wrapper', className), components: mergedComponents }, props)));
|
|
18699
18699
|
};
|
|
18700
18700
|
|
|
18701
18701
|
const Form = (_a) => {
|
|
@@ -18728,7 +18728,7 @@ const Skeleton = (_a) => {
|
|
|
18728
18728
|
|
|
18729
18729
|
const Card = (_a) => {
|
|
18730
18730
|
var { className = '', children, title, subtitle, hasBoxShadow = false } = _a, rest = __rest$1(_a, ["className", "children", "title", "subtitle", "hasBoxShadow"]);
|
|
18731
|
-
const cardClasses =
|
|
18731
|
+
const cardClasses = classNames('card', { 'card--box-shadow': hasBoxShadow }, className);
|
|
18732
18732
|
return (jsxRuntime.jsxs("div", Object.assign({ className: cardClasses }, rest, { children: [(title || subtitle) && (jsxRuntime.jsxs("div", { className: "card__header", children: [title && jsxRuntime.jsx("h2", { children: title }), subtitle && jsxRuntime.jsx("p", { children: subtitle })] })), jsxRuntime.jsx("div", { className: "card__content", children: children })] })));
|
|
18733
18733
|
};
|
|
18734
18734
|
|
|
@@ -20290,7 +20290,7 @@ function Popper({ children, referenceElement, isOpen, onClose, ariaLabel, placem
|
|
|
20290
20290
|
function Menu({ children }) {
|
|
20291
20291
|
return (jsxRuntime.jsx("div", { className: "menu", children: e__namespace.default.Children.map(children, (child) => e__namespace.default.isValidElement(child)
|
|
20292
20292
|
? e__namespace.default.cloneElement(child, {
|
|
20293
|
-
className:
|
|
20293
|
+
className: classNames(child.props.className, 'menu-item'),
|
|
20294
20294
|
})
|
|
20295
20295
|
: child) }));
|
|
20296
20296
|
}
|
|
@@ -20343,7 +20343,7 @@ const StyledSection = styled__default.default.article `
|
|
|
20343
20343
|
|
|
20344
20344
|
const Section = (props) => {
|
|
20345
20345
|
const { className, style = {}, children, id } = props, restOfProps = __rest$1(props, ["className", "style", "children", "id"]);
|
|
20346
|
-
return (jsxRuntime.jsx(StyledSection, Object.assign({ className:
|
|
20346
|
+
return (jsxRuntime.jsx(StyledSection, Object.assign({ className: classNames('Section', className), "data-cy": props['data-cy'], id: id, style: style }, restOfProps, { children: children })));
|
|
20347
20347
|
};
|
|
20348
20348
|
|
|
20349
20349
|
const StyledSectionBlock = styled__default.default.div `
|
|
@@ -20360,7 +20360,7 @@ const StyledSectionBlock = styled__default.default.div `
|
|
|
20360
20360
|
|
|
20361
20361
|
const SectionBlock = (props) => {
|
|
20362
20362
|
const { title, className, children, id, style = {} } = props, restOfProps = __rest$1(props, ["title", "className", "children", "id", "style"]);
|
|
20363
|
-
return (jsxRuntime.jsxs(StyledSectionBlock, Object.assign({ className:
|
|
20363
|
+
return (jsxRuntime.jsxs(StyledSectionBlock, Object.assign({ className: classNames('SectionBlock', className), "data-cy": props['data-cy'], id: id, style: style }, restOfProps, { children: [title ? (jsxRuntime.jsx("header", { children: jsxRuntime.jsx("h3", { children: title }) })) : null, children, jsxRuntime.jsx("hr", { className: "section-bottom-border" })] })));
|
|
20364
20364
|
};
|
|
20365
20365
|
|
|
20366
20366
|
const sectionSidePadding = '19px';
|
|
@@ -20379,7 +20379,7 @@ const StyledSectionBody = styled__default.default.div `
|
|
|
20379
20379
|
|
|
20380
20380
|
const SectionBody = (props) => {
|
|
20381
20381
|
const { className, style = {}, children, id } = props, restOfProps = __rest$1(props, ["className", "style", "children", "id"]);
|
|
20382
|
-
return (jsxRuntime.jsx(StyledSectionBody, Object.assign({ className:
|
|
20382
|
+
return (jsxRuntime.jsx(StyledSectionBody, Object.assign({ className: classNames('SectionBody', className), "data-cy": props['data-cy'], id: id, style: style }, restOfProps, { children: children })));
|
|
20383
20383
|
};
|
|
20384
20384
|
|
|
20385
20385
|
const StyledSectionHeader = styled__default.default.header `
|
|
@@ -20388,7 +20388,7 @@ const StyledSectionHeader = styled__default.default.header `
|
|
|
20388
20388
|
|
|
20389
20389
|
const SectionHeader = (props) => {
|
|
20390
20390
|
const { className = '', style = {}, children, id } = props, restOfProps = __rest$1(props, ["className", "style", "children", "id"]);
|
|
20391
|
-
return (jsxRuntime.jsx(StyledSectionHeader, Object.assign({ className:
|
|
20391
|
+
return (jsxRuntime.jsx(StyledSectionHeader, Object.assign({ className: classNames('SectionHeader', className), "data-cy": props['data-cy'], id: id, style: style }, restOfProps, { children: children })));
|
|
20392
20392
|
};
|
|
20393
20393
|
|
|
20394
20394
|
// Unique ID creation requires a high quality random # generator. In the browser we therefore
|
|
@@ -20518,7 +20518,7 @@ const StyledValidationError = styled__default.default.div `
|
|
|
20518
20518
|
const BorderSelect = (props) => {
|
|
20519
20519
|
const { className = '', disabled, horizontal, id, initialText, label, onChange, options, style = {}, value, validationErrors, } = props;
|
|
20520
20520
|
const selectId = v4();
|
|
20521
|
-
return (jsxRuntime.jsxs(StyledSelect$1, { className:
|
|
20521
|
+
return (jsxRuntime.jsxs(StyledSelect$1, { className: classNames('Select', { horizontal }, className), "data-cy": props['data-cy'], id: id, style: style, children: [label && jsxRuntime.jsx("label", { htmlFor: selectId, children: label }), jsxRuntime.jsxs("div", { className: "select-container", children: [jsxRuntime.jsxs("select", { onChange: onChange, value: value, disabled: disabled, id: selectId, children: [initialText && (jsxRuntime.jsx("option", { disabled: true, value: "", children: initialText })), options.map((o) => {
|
|
20522
20522
|
const key = v4();
|
|
20523
20523
|
return (jsxRuntime.jsx("option", { value: o.value, children: o.name }, key));
|
|
20524
20524
|
})] }), jsxRuntime.jsx(Icon, { name: "fa-caret-down", className: "selectCaret" })] }), validationErrors ? (jsxRuntime.jsx(StyledValidationError, { children: validationErrors.map((err, i) => {
|
|
@@ -20599,7 +20599,7 @@ const StyledSelect = styled__default.default.div `
|
|
|
20599
20599
|
const Select = (props) => {
|
|
20600
20600
|
const { id, className, disabled, initialText, onChange, options, size = 'medium', style = {}, value, variant, onClick, } = props;
|
|
20601
20601
|
const selectId = v4();
|
|
20602
|
-
return (jsxRuntime.jsx(StyledSelect, { className: className, "data-cy": props['data-cy'], id: id, style: style, children: jsxRuntime.jsxs("div", { className:
|
|
20602
|
+
return (jsxRuntime.jsx(StyledSelect, { className: className, "data-cy": props['data-cy'], id: id, style: style, children: jsxRuntime.jsxs("div", { className: classNames('Select__container', size, variant), onClick: (e) => (onClick ? onClick(e) : null), children: [jsxRuntime.jsxs("select", { onChange: onChange, value: value, disabled: disabled, id: selectId, children: [initialText && (jsxRuntime.jsx("option", { disabled: true, value: "", children: initialText })), options.map((o) => {
|
|
20603
20603
|
const key = v4();
|
|
20604
20604
|
return (jsxRuntime.jsx("option", { value: o.value, children: o.name }, key));
|
|
20605
20605
|
})] }), jsxRuntime.jsx(Icon, { className: "chevron", name: "chevron-down", size: size === 'small' ? 'xs' : 'sm' })] }) }));
|
|
@@ -21388,10 +21388,10 @@ const SectionTable = (props) => {
|
|
|
21388
21388
|
}
|
|
21389
21389
|
};
|
|
21390
21390
|
const headers = Object.keys(props.tableObjects[0].content);
|
|
21391
|
-
return (jsxRuntime.jsxs(StyledSectionTable, { className:
|
|
21391
|
+
return (jsxRuntime.jsxs(StyledSectionTable, { className: classNames('SectionTable', props.className, { loading: props.loading }), "data-cy": props['data-cy'], id: props.id, children: [props.sortColumnHandler && props.sortedColumn && (jsxRuntime.jsx("div", { className: "mobile-sort", children: jsxRuntime.jsx(BorderSelect, { onChange: (e) => props.sortColumnHandler(e.target.value), value: props.sortedColumn, options: [].concat({ name: 'Choose Sorting Option', value: '' }, headers.map((item) => {
|
|
21392
21392
|
return { name: item, value: item };
|
|
21393
21393
|
})) }) })), jsxRuntime.jsxs("table", Object.assign({}, props.tableProps, { children: [jsxRuntime.jsx("thead", { children: jsxRuntime.jsxs("tr", { children: [props.tableObjects[0].rowAccordionContent ? jsxRuntime.jsx("th", { className: "action-column" }) : null, headers.map((header, i) => {
|
|
21394
|
-
return (jsxRuntime.jsxs("th", { className:
|
|
21394
|
+
return (jsxRuntime.jsxs("th", { className: classNames({
|
|
21395
21395
|
'not-sortable': props.sortableHeaders && props.sortableHeaders.indexOf(header) === -1,
|
|
21396
21396
|
}), onClick: () => {
|
|
21397
21397
|
if (props.sortColumnHandler) {
|
|
@@ -21405,7 +21405,7 @@ const SectionTable = (props) => {
|
|
|
21405
21405
|
}
|
|
21406
21406
|
}
|
|
21407
21407
|
}, children: [props.headersContent ? props.headersContent[header] : header, ' ', props.sortedColumn === header && (jsxRuntime.jsx(Icon, { name: `fa-caret-${props.sortDirection}` }))] }, i));
|
|
21408
|
-
})] }) }), jsxRuntime.jsx("tbody", { className:
|
|
21408
|
+
})] }) }), jsxRuntime.jsx("tbody", { className: classNames({ 'SectionTable--tbody-loading': props.loading }), children: props.loading
|
|
21409
21409
|
? Array.from({ length: 5 }, (x, i) => (jsxRuntime.jsx("tr", { children: props.tableObjects[0].rowAccordionContent ? (jsxRuntime.jsx("td", { colSpan: headers.length + 1 })) : (jsxRuntime.jsx("td", { colSpan: headers.length })) }, i)))
|
|
21410
21410
|
: props.tableObjects.map((obj, i) => {
|
|
21411
21411
|
let rowStyle = obj.rowStyleCondition;
|
|
@@ -21413,7 +21413,7 @@ const SectionTable = (props) => {
|
|
|
21413
21413
|
rowStyle = { [rowStyle.className]: rowStyle.condition };
|
|
21414
21414
|
}
|
|
21415
21415
|
if (obj.rowAccordionContent) {
|
|
21416
|
-
return (jsxRuntime.jsx("tr", Object.assign({ className:
|
|
21416
|
+
return (jsxRuntime.jsx("tr", Object.assign({ className: classNames(rowStyle) }, props.rowProps, { children: jsxRuntime.jsx("td", { colSpan: headers.length + 1, style: { padding: '0' }, className: "outer-hover", children: jsxRuntime.jsxs("table", { children: [jsxRuntime.jsx("thead", { children: jsxRuntime.jsxs("tr", { children: [jsxRuntime.jsx("th", { className: "action-column", style: {
|
|
21417
21417
|
padding: '0',
|
|
21418
21418
|
height: '1px',
|
|
21419
21419
|
border: 'none',
|
|
@@ -21432,18 +21432,18 @@ const SectionTable = (props) => {
|
|
|
21432
21432
|
return (jsxRuntime.jsx("td", Object.assign({ style: {
|
|
21433
21433
|
borderBottom: 'none',
|
|
21434
21434
|
}, "data-heading": headers[i], title: createTitle(obj.content[key]) }, (_a = props === null || props === void 0 ? void 0 : props.headingProps) === null || _a === void 0 ? void 0 : _a[headers === null || headers === void 0 ? void 0 : headers[i]], { children: obj.content[key] }), i));
|
|
21435
|
-
})] }), jsxRuntime.jsx("tr", { className:
|
|
21435
|
+
})] }), jsxRuntime.jsx("tr", { className: classNames('row-option', {
|
|
21436
21436
|
open: openRowOptions.indexOf(obj.id) !== -1,
|
|
21437
21437
|
}), children: jsxRuntime.jsx("td", { className: "inner-table-cell", colSpan: headers.length + 1, children: obj.rowAccordionContent }) })] })] }) }) }), i));
|
|
21438
21438
|
}
|
|
21439
21439
|
else if (obj.lineItemLink) {
|
|
21440
|
-
return (jsxRuntime.jsx("tr", Object.assign({ onClick: handleRowClick(obj.lineItemLink), className:
|
|
21440
|
+
return (jsxRuntime.jsx("tr", Object.assign({ onClick: handleRowClick(obj.lineItemLink), className: classNames('hover', rowStyle) }, props.rowProps, { children: Object.keys(obj.content).map((key, i) => {
|
|
21441
21441
|
var _a;
|
|
21442
21442
|
return (jsxRuntime.jsx("td", Object.assign({ "data-heading": headers[i], title: createTitle(obj.content[key]) }, (_a = props === null || props === void 0 ? void 0 : props.headingProps) === null || _a === void 0 ? void 0 : _a[headers === null || headers === void 0 ? void 0 : headers[i]], { children: obj.content[key] }), i));
|
|
21443
21443
|
}) }), i));
|
|
21444
21444
|
}
|
|
21445
21445
|
else {
|
|
21446
|
-
return (jsxRuntime.jsx("tr", Object.assign({ className:
|
|
21446
|
+
return (jsxRuntime.jsx("tr", Object.assign({ className: classNames(rowStyle) }, props.rowProps, { children: Object.keys(obj.content).map((key, i) => {
|
|
21447
21447
|
var _a;
|
|
21448
21448
|
return (jsxRuntime.jsx("td", Object.assign({ "data-heading": headers[i], title: createTitle(obj.content[key]) }, (_a = props === null || props === void 0 ? void 0 : props.headingProps) === null || _a === void 0 ? void 0 : _a[headers === null || headers === void 0 ? void 0 : headers[i]], { children: obj.content[key] }), i));
|
|
21449
21449
|
}) }), i));
|
|
@@ -21947,7 +21947,7 @@ const StyledButton = styled__default.default.button `
|
|
|
21947
21947
|
|
|
21948
21948
|
function Button$1(props) {
|
|
21949
21949
|
const { id, className, busy, children, disabled, onClick, onFocus, role, style, tabindex, type, variant = 'default' } = props, rest = __rest$1(props, ["id", "className", "busy", "children", "disabled", "onClick", "onFocus", "role", "style", "tabindex", "type", "variant"]);
|
|
21950
|
-
return (jsxRuntime.jsxs(StyledButton, Object.assign({ "aria-disabled": busy, "aria-label": props['aria-label'], "aria-pressed": props['aria-pressed'], "aria-selected": props['aria-selected'], className:
|
|
21950
|
+
return (jsxRuntime.jsxs(StyledButton, Object.assign({ "aria-disabled": busy, "aria-label": props['aria-label'], "aria-pressed": props['aria-pressed'], "aria-selected": props['aria-selected'], className: classNames(variant, className, {
|
|
21951
21951
|
blue: variant === 'primary' || variant === 'cta',
|
|
21952
21952
|
busy,
|
|
21953
21953
|
}), "data-cy": props['data-cy'], disabled: disabled, id: id, onClick: busy ? undefined : onClick, onFocus: onFocus, role: role, style: style, tabIndex: tabindex, type: type || 'button' }, rest, { children: [busy && jsxRuntime.jsx(CircleSpinner, { className: "mr-2" }), children] })));
|
|
@@ -24452,7 +24452,7 @@ function IconButton(props) {
|
|
|
24452
24452
|
// @ts-ignore
|
|
24453
24453
|
buttonEl);
|
|
24454
24454
|
const { isFocusVisible, focusProps } = $f7dceffc5ad7768b$export$4e328f61c538687f();
|
|
24455
|
-
const commonProps = Object.assign(Object.assign(Object.assign({ 'aria-disabled': busy, className:
|
|
24455
|
+
const commonProps = Object.assign(Object.assign(Object.assign({ 'aria-disabled': busy, className: classNames(iconSide, size, variant, className, {
|
|
24456
24456
|
'focus-visible': isFocusVisible,
|
|
24457
24457
|
busy,
|
|
24458
24458
|
disabled: isLink && isDisabled,
|
|
@@ -24461,7 +24461,7 @@ function IconButton(props) {
|
|
|
24461
24461
|
marginTop: `${adjustAlignment}px`,
|
|
24462
24462
|
marginBottom: `${Math.abs(adjustAlignment)}px`,
|
|
24463
24463
|
marginRight: `${spacings.xs}`,
|
|
24464
|
-
} })) : (jsxRuntime.jsx(Icon, { className:
|
|
24464
|
+
} })) : (jsxRuntime.jsx(Icon, { className: classNames({ 'right-margin': label }), name: iconName }));
|
|
24465
24465
|
const labelElement = label ? (jsxRuntime.jsx("span", { style: { marginTop: `${adjustAlignment}px` }, children: label })) : null;
|
|
24466
24466
|
if (isLink && !isDisabled) {
|
|
24467
24467
|
return (
|
|
@@ -24544,7 +24544,7 @@ function EditableInput(props) {
|
|
|
24544
24544
|
setInitialValue(editableEl.current.innerText);
|
|
24545
24545
|
}
|
|
24546
24546
|
}, []);
|
|
24547
|
-
return (jsxRuntime.jsxs(StyledEditableInput, { className:
|
|
24547
|
+
return (jsxRuntime.jsxs(StyledEditableInput, { className: classNames('EditableInput-container', id, className), "data-cy": props['data-cy'], id: props.id, children: [jsxRuntime.jsx("span", { role: "textbox", tabIndex: 0, contentEditable: true, suppressContentEditableWarning: true, ref: editableEl, onKeyDown: handleKeypress, onBlur: handleBlur, children: children }), jsxRuntime.jsx(Icon, { name: "fa-pencil-alt", className: "pencil-icon" })] }));
|
|
24548
24548
|
}
|
|
24549
24549
|
|
|
24550
24550
|
const inputCommon = styled.css `
|
|
@@ -24725,7 +24725,7 @@ function NumberInput(props) {
|
|
|
24725
24725
|
}, 1000);
|
|
24726
24726
|
return () => clearTimeout(delayDebounceFn);
|
|
24727
24727
|
}, [currentValue]);
|
|
24728
|
-
return (jsxRuntime.jsxs(StyledNumberField, { className:
|
|
24728
|
+
return (jsxRuntime.jsxs(StyledNumberField, { className: classNames(className, {
|
|
24729
24729
|
hiddenLabel,
|
|
24730
24730
|
}), "data-cy": props['data-cy'], id: id, children: [jsxRuntime.jsx("input", { tabIndex: tabIndex, autoFocus: autoFocus, id: fieldId, type: "number", value: currentValue, disabled: disabled, max: max, min: min, onChange: handleChange, placeholder: placeholder, required: required, step: step, "aria-label": hiddenLabel ? label : '', ref: inputEl }), !hiddenLabel && jsxRuntime.jsx("label", { htmlFor: fieldId, children: label }), jsxRuntime.jsxs("div", { className: "spin-buttons", children: [jsxRuntime.jsx(Button$1, { variant: "no-style", onClick: increment, tabindex: -1, children: jsxRuntime.jsx(Icon, { name: "fa-caret-up", ariaLabel: "increase" }) }), jsxRuntime.jsx(Button$1, { variant: "no-style", onClick: decrement, tabindex: -1, children: jsxRuntime.jsx(Icon, { name: "fa-caret-down", ariaLabel: "decrease" }) })] })] }));
|
|
24731
24731
|
}
|
|
@@ -24779,7 +24779,7 @@ const StyledSearchField = styled__default.default.div `
|
|
|
24779
24779
|
const SearchInput = (props) => {
|
|
24780
24780
|
const { id, inputBorder, showSearchIcon, showClearInputIcon, className = '', inputProps, onChange, onClear, onKeyUp, placeholder, value, } = props;
|
|
24781
24781
|
const getId = id ? id : v4();
|
|
24782
|
-
return (jsxRuntime.jsxs(StyledSearchField, { className:
|
|
24782
|
+
return (jsxRuntime.jsxs(StyledSearchField, { className: classNames(className, {
|
|
24783
24783
|
inputBorder,
|
|
24784
24784
|
showSearchIcon,
|
|
24785
24785
|
showClearInputIcon,
|
|
@@ -24854,7 +24854,7 @@ function TextInput(props) {
|
|
|
24854
24854
|
const inputId = v4();
|
|
24855
24855
|
const { autoComplete, autoFocus, className, defaultValue, disabled, displayErrors, id, inputProps, label, maxLength, name, onBlur, onChange, onFocus, placeholder, promptProps, required, type = 'text', validationErrors, value, readOnly, } = props;
|
|
24856
24856
|
const errorClass = displayErrors ? 'error' : 'prompt';
|
|
24857
|
-
return (jsxRuntime.jsxs(StyledTextInput, { className: className, "data-cy": props['data-cy'], id: id, children: [jsxRuntime.jsx("input", Object.assign({ autoComplete: autoComplete, autoFocus: autoFocus, className:
|
|
24857
|
+
return (jsxRuntime.jsxs(StyledTextInput, { className: className, "data-cy": props['data-cy'], id: id, children: [jsxRuntime.jsx("input", Object.assign({ autoComplete: autoComplete, autoFocus: autoFocus, className: classNames('text-input__input-element', {
|
|
24858
24858
|
filled: (value && value.length > 0) || defaultValue,
|
|
24859
24859
|
}), disabled: disabled, defaultValue: defaultValue, id: inputId, maxLength: maxLength, name: name, onBlur: onBlur, onChange: onChange, onFocus: onFocus, onKeyUp: (e) => {
|
|
24860
24860
|
if (e.key === 'Enter') {
|
|
@@ -24862,7 +24862,7 @@ function TextInput(props) {
|
|
|
24862
24862
|
}
|
|
24863
24863
|
}, placeholder: placeholder, required: required, type: type, value: value, readOnly: readOnly }, inputProps)), label ? jsxRuntime.jsx("label", { htmlFor: inputId, children: label }) : null, (validationErrors || maxLength) && (jsxRuntime.jsxs(StyledInputInfo, { children: [validationErrors && (jsxRuntime.jsx("div", { children: validationErrors.map((err, i) => {
|
|
24864
24864
|
return (jsxRuntime.jsx("p", Object.assign({ className: errorClass }, promptProps, { children: err }), i));
|
|
24865
|
-
}) })), maxLength && (jsxRuntime.jsxs("div", { className:
|
|
24865
|
+
}) })), maxLength && (jsxRuntime.jsxs("div", { className: classNames('count', { isMax: (value === null || value === void 0 ? void 0 : value.length) === maxLength }), children: [(value === null || value === void 0 ? void 0 : value.length) || 0, " / ", maxLength] }))] }))] }));
|
|
24866
24866
|
}
|
|
24867
24867
|
|
|
24868
24868
|
/*
|
|
@@ -25692,7 +25692,7 @@ function RadioGroup$1(props) {
|
|
|
25692
25692
|
};
|
|
25693
25693
|
const state = $a54cdc5c1942b639$export$bca9d026f8e704eb(radioGroupState);
|
|
25694
25694
|
const { radioGroupProps, labelProps } = $430f30ed08ec25fa$export$62b9571f283ff5c2(props, state);
|
|
25695
|
-
return (jsxRuntime.jsxs(StyledRadioGroup$1, Object.assign({}, radioGroupProps, { className:
|
|
25695
|
+
return (jsxRuntime.jsxs(StyledRadioGroup$1, Object.assign({}, radioGroupProps, { className: classNames(className, { horizontal: orientation === 'horizontal' }), "data-cy": props['data-cy'], id: id, children: [label && (jsxRuntime.jsx("div", Object.assign({ className: "groupLabel" }, labelProps, { children: label }))), jsxRuntime.jsx(RadioContext.Provider, { value: state, children: children })] })));
|
|
25696
25696
|
}
|
|
25697
25697
|
/**
|
|
25698
25698
|
* A single radio button and its label; no styling is applied, and the native
|
|
@@ -25712,7 +25712,7 @@ function Radio$1(props) {
|
|
|
25712
25712
|
else {
|
|
25713
25713
|
isSelected = state.selectedValue === props.value;
|
|
25714
25714
|
}
|
|
25715
|
-
return (jsxRuntime.jsxs("label", { className:
|
|
25715
|
+
return (jsxRuntime.jsxs("label", { className: classNames(className, {
|
|
25716
25716
|
disabled: isDisabled || state.isDisabled,
|
|
25717
25717
|
selected: isSelected,
|
|
25718
25718
|
focused: isFocusVisible,
|
|
@@ -40965,7 +40965,7 @@ const StyledLoadingAwareContainer = styled__default.default.div `
|
|
|
40965
40965
|
*/
|
|
40966
40966
|
function LoadingAwareContainer(props) {
|
|
40967
40967
|
const { children, className, isLoading, style } = props;
|
|
40968
|
-
return (jsxRuntime.jsxs(StyledLoadingAwareContainer, { className:
|
|
40968
|
+
return (jsxRuntime.jsxs(StyledLoadingAwareContainer, { className: classNames({ loading: isLoading }, className), style: style, children: [jsxRuntime.jsx(StyledStatusContainer, { role: "status", children: isLoading && 'Loading' }), isLoading ? jsxRuntime.jsx(LoadingIndicator, {}) : jsxRuntime.jsx(jsxRuntime.Fragment, { children: children })] }));
|
|
40969
40969
|
}
|
|
40970
40970
|
|
|
40971
40971
|
const StyledTextTruncate = styled__default.default.span ``;
|
|
@@ -41060,7 +41060,7 @@ const StyledToggle = styled__default.default.label `
|
|
|
41060
41060
|
const Toggle = (props) => {
|
|
41061
41061
|
const { disabled, onChange, value, className, id, checkedIconName, notCheckedIconName, iconSize, } = props;
|
|
41062
41062
|
const defaultIconStyle = { width: '5px', height: '5px' };
|
|
41063
|
-
return (jsxRuntime.jsxs(StyledToggle, { className:
|
|
41063
|
+
return (jsxRuntime.jsxs(StyledToggle, { className: classNames(className, {
|
|
41064
41064
|
disabled,
|
|
41065
41065
|
}), "data-cy": props['data-cy'], id: id, children: [jsxRuntime.jsx("input", { "aria-label": props['aria-label'], type: "checkbox", disabled: disabled, checked: value, onChange: onChange }), jsxRuntime.jsx("span", { className: "slider round" }), checkedIconName && (jsxRuntime.jsx(Icon, { size: iconSize, name: checkedIconName, className: "checked-icon", style: iconSize ? undefined : defaultIconStyle })), notCheckedIconName && (jsxRuntime.jsx(Icon, { size: iconSize, name: notCheckedIconName, className: "not-checked-icon", style: iconSize ? undefined : defaultIconStyle }))] }));
|
|
41066
41066
|
};
|
|
@@ -42563,7 +42563,7 @@ const computePosition = (reference, floating, options) => {
|
|
|
42563
42563
|
* @copyright ReactTooltip Team
|
|
42564
42564
|
* @license MIT
|
|
42565
42565
|
*/
|
|
42566
|
-
const h="react-tooltip-core-styles",w="react-tooltip-base-styles",b={core:!1,base:!1};function S({css:e,id:t=w,type:o="base",ref:r}){var l,n;if(!e||"undefined"==typeof document||b[o])return;if("core"===o&&"undefined"!=typeof process&&(null===(l=null===process||void 0===process?void 0:process.env)||void 0===l?void 0:l.REACT_TOOLTIP_DISABLE_CORE_STYLES))return;if("base"!==o&&"undefined"!=typeof process&&(null===(n=null===process||void 0===process?void 0:process.env)||void 0===n?void 0:n.REACT_TOOLTIP_DISABLE_BASE_STYLES))return;"core"===o&&(t=h),r||(r={});const{insertAt:c}=r;if(document.getElementById(t))return void console.warn(`[react-tooltip] Element with id '${t}' already exists. Call \`removeStyle()\` first`);const i=document.head||document.getElementsByTagName("head")[0],s=document.createElement("style");s.id=t,s.type="text/css","top"===c&&i.firstChild?i.insertBefore(s,i.firstChild):i.appendChild(s),s.styleSheet?s.styleSheet.cssText=e:s.appendChild(document.createTextNode(e)),b[o]=!0;}const E=async({elementReference:e=null,tooltipReference:t=null,tooltipArrowReference:o=null,place:r="top",offset:l=10,strategy:n="absolute",middlewares:c=[offset(Number(l)),flip({fallbackAxisSideDirection:"start"}),shift({padding:5})],border:i})=>{if(!e)return {tooltipStyles:{},tooltipArrowStyles:{},place:r};if(null===t)return {tooltipStyles:{},tooltipArrowStyles:{},place:r};const s=c;return o?(s.push(arrow({element:o,padding:5})),computePosition(e,t,{placement:r,strategy:n,middleware:s}).then((({x:e,y:t,placement:o,middlewareData:r})=>{var l,n;const c={left:`${e}px`,top:`${t}px`,border:i},{x:s,y:a}=null!==(l=r.arrow)&&void 0!==l?l:{x:0,y:0},u=null!==(n={top:"bottom",right:"left",bottom:"top",left:"right"}[o.split("-")[0]])&&void 0!==n?n:"bottom",d=i&&{borderBottom:i,borderRight:i};let p=0;if(i){const e=`${i}`.match(/(\d+)px/);p=(null==e?void 0:e[1])?Number(e[1]):1;}return {tooltipStyles:c,tooltipArrowStyles:{left:null!=s?`${s}px`:"",top:null!=a?`${a}px`:"",right:"",bottom:"",...d,[u]:`-${4+p}px`},place:o}}))):computePosition(e,t,{placement:"bottom",strategy:n,middleware:s}).then((({x:e,y:t,placement:o})=>({tooltipStyles:{left:`${e}px`,top:`${t}px`},tooltipArrowStyles:{},place:o})))},A=(e,t)=>!("CSS"in window&&"supports"in window.CSS)||window.CSS.supports(e,t),_=(e,t,o)=>{let r=null;const l=function(...l){const n=()=>{r=null;};!r&&(e.apply(this,l),r=setTimeout(n,t));};return l.cancel=()=>{r&&(clearTimeout(r),r=null);},l},O=e=>null!==e&&!Array.isArray(e)&&"object"==typeof e,T=(e,t)=>{if(e===t)return !0;if(Array.isArray(e)&&Array.isArray(t))return e.length===t.length&&e.every(((e,o)=>T(e,t[o])));if(Array.isArray(e)!==Array.isArray(t))return !1;if(!O(e)||!O(t))return e===t;const o=Object.keys(e),r=Object.keys(t);return o.length===r.length&&o.every((o=>T(e[o],t[o])))},k=e=>{if(!(e instanceof HTMLElement||e instanceof SVGElement))return !1;const t=getComputedStyle(e);return ["overflow","overflow-x","overflow-y"].some((e=>{const o=t.getPropertyValue(e);return "auto"===o||"scroll"===o}))},C=e=>{if(!e)return null;let t=e.parentElement;for(;t;){if(k(t))return t;t=t.parentElement;}return document.scrollingElement||document.documentElement},L="undefined"!=typeof window?e.useLayoutEffect:e.useEffect,R="DEFAULT_TOOLTIP_ID",x={anchorRefs:new Set,activeAnchor:{current:null},attach:()=>{},detach:()=>{},setActiveAnchor:()=>{}},N=e.createContext({getTooltipData:()=>x});function I(e$1=R){return e.useContext(N).getTooltipData(e$1)}var B={tooltip:"core-styles-module_tooltip__3vRRp",fixed:"core-styles-module_fixed__pcSol",arrow:"core-styles-module_arrow__cvMwQ",noArrow:"core-styles-module_noArrow__xock6",clickable:"core-styles-module_clickable__ZuTTB",show:"core-styles-module_show__Nt9eE",closing:"core-styles-module_closing__sGnxF"},z={tooltip:"styles-module_tooltip__mnnfp",arrow:"styles-module_arrow__K0L3T",dark:"styles-module_dark__xNqje",light:"styles-module_light__Z6W-X",success:"styles-module_success__A2AKt",warning:"styles-module_warning__SCK0X",error:"styles-module_error__JvumD",info:"styles-module_info__BWdHW"};const D=({forwardRef:t,id:r,className:c,classNameArrow:i,variant:u="dark",anchorId:d,anchorSelect:p,place:v="top",offset:m=10,events:h=["hover"],openOnClick:w=!1,positionStrategy:b="absolute",middlewares:S,wrapper:g,delayShow:A=0,delayHide:O=0,float:k=!1,hidden:R=!1,noArrow:x=!1,clickable:N=!1,closeOnEsc:$=!1,closeOnScroll:j=!1,closeOnResize:D=!1,openEvents:q,closeEvents:H,globalCloseEvents:M,imperativeModeOnly:W,style:P,position:V,afterShow:F,afterHide:K,content:U,contentWrapperRef:X,isOpen:Y,defaultIsOpen:G=!1,setIsOpen:Z,activeAnchor:J,setActiveAnchor:Q,border:ee,opacity:te,arrowColor:oe,role:re="tooltip"})=>{var le;const ne=e.useRef(null),ce=e.useRef(null),ie=e.useRef(null),se=e.useRef(null),ae=e.useRef(null),[ue,de]=e.useState({tooltipStyles:{},tooltipArrowStyles:{},place:v}),[pe,ve]=e.useState(!1),[me,fe]=e.useState(!1),[ye,he]=e.useState(null),we=e.useRef(!1),be=e.useRef(null),{anchorRefs:Se,setActiveAnchor:ge}=I(r),Ee=e.useRef(!1),[Ae,_e]=e.useState([]),Oe=e.useRef(!1),Te=w||h.includes("click"),ke=Te||(null==q?void 0:q.click)||(null==q?void 0:q.dblclick)||(null==q?void 0:q.mousedown),Ce=q?{...q}:{mouseenter:!0,focus:!0,click:!1,dblclick:!1,mousedown:!1};!q&&Te&&Object.assign(Ce,{mouseenter:!1,focus:!1,click:!0});const Le=H?{...H}:{mouseleave:!0,blur:!0,click:!1,dblclick:!1,mouseup:!1};!H&&Te&&Object.assign(Le,{mouseleave:!1,blur:!1});const Re=M?{...M}:{escape:$||!1,scroll:j||!1,resize:D||!1,clickOutsideAnchor:ke||!1};W&&(Object.assign(Ce,{mouseenter:!1,focus:!1,click:!1,dblclick:!1,mousedown:!1}),Object.assign(Le,{mouseleave:!1,blur:!1,click:!1,dblclick:!1,mouseup:!1}),Object.assign(Re,{escape:!1,scroll:!1,resize:!1,clickOutsideAnchor:!1})),L((()=>(Oe.current=!0,()=>{Oe.current=!1;})),[]);const xe=e=>{Oe.current&&(e&&fe(!0),setTimeout((()=>{Oe.current&&(null==Z||Z(e),void 0===Y&&ve(e));}),10));};e.useEffect((()=>{if(void 0===Y)return ()=>null;Y&&fe(!0);const e=setTimeout((()=>{ve(Y);}),10);return ()=>{clearTimeout(e);}}),[Y]),e.useEffect((()=>{if(pe!==we.current)if(ae.current&&clearTimeout(ae.current),we.current=pe,pe)null==F||F();else {const e=(e=>{const t=e.match(/^([\d.]+)(ms|s)$/);if(!t)return 0;const[,o,r]=t;return Number(o)*("ms"===r?1:1e3)})(getComputedStyle(document.body).getPropertyValue("--rt-transition-show-delay"));ae.current=setTimeout((()=>{fe(!1),he(null),null==K||K();}),e+25);}}),[pe]);const Ne=e=>{de((t=>T(t,e)?t:e));},$e=(e=A)=>{ie.current&&clearTimeout(ie.current),me?xe(!0):ie.current=setTimeout((()=>{xe(!0);}),e);},Ie=(e=O)=>{se.current&&clearTimeout(se.current),se.current=setTimeout((()=>{Ee.current||xe(!1);}),e);},je=e=>{var t;if(!e)return;const o=null!==(t=e.currentTarget)&&void 0!==t?t:e.target;if(!(null==o?void 0:o.isConnected))return Q(null),void ge({current:null});A?$e():xe(!0),Q(o),ge({current:o}),se.current&&clearTimeout(se.current);},Be=()=>{N?Ie(O||100):O?Ie():xe(!1),ie.current&&clearTimeout(ie.current);},ze=({x:e,y:t})=>{var o;const r={getBoundingClientRect:()=>({x:e,y:t,width:0,height:0,top:t,left:e,right:e,bottom:t})};E({place:null!==(o=null==ye?void 0:ye.place)&&void 0!==o?o:v,offset:m,elementReference:r,tooltipReference:ne.current,tooltipArrowReference:ce.current,strategy:b,middlewares:S,border:ee}).then((e=>{Ne(e);}));},De=e=>{if(!e)return;const t=e,o={x:t.clientX,y:t.clientY};ze(o),be.current=o;},qe=e=>{var t;if(!pe)return;const o=e.target;if(!o.isConnected)return;if(null===(t=ne.current)||void 0===t?void 0:t.contains(o))return;[document.querySelector(`[id='${d}']`),...Ae].some((e=>null==e?void 0:e.contains(o)))||(xe(!1),ie.current&&clearTimeout(ie.current));},He=_(je,50),Me=_(Be,50),We=e=>{Me.cancel(),He(e);},Pe=()=>{He.cancel(),Me();},Ve=e.useCallback((()=>{var e,t;const o=null!==(e=null==ye?void 0:ye.position)&&void 0!==e?e:V;o?ze(o):k?be.current&&ze(be.current):(null==J?void 0:J.isConnected)&&E({place:null!==(t=null==ye?void 0:ye.place)&&void 0!==t?t:v,offset:m,elementReference:J,tooltipReference:ne.current,tooltipArrowReference:ce.current,strategy:b,middlewares:S,border:ee}).then((e=>{Oe.current&&Ne(e);}));}),[pe,J,U,P,v,null==ye?void 0:ye.place,m,b,V,null==ye?void 0:ye.position,k]);e.useEffect((()=>{var e,t;const o=new Set(Se);Ae.forEach((e=>{o.add({current:e});}));const r=document.querySelector(`[id='${d}']`);r&&o.add({current:r});const l=()=>{xe(!1);},n=C(J),c=C(ne.current);Re.scroll&&(window.addEventListener("scroll",l),null==n||n.addEventListener("scroll",l),null==c||c.addEventListener("scroll",l));let i=null;Re.resize?window.addEventListener("resize",l):J&&ne.current&&(i=autoUpdate(J,ne.current,Ve,{ancestorResize:!0,elementResize:!0,layoutShift:!0}));const s=e=>{"Escape"===e.key&&xe(!1);};Re.escape&&window.addEventListener("keydown",s),Re.clickOutsideAnchor&&window.addEventListener("click",qe);const a=[],u=e=>{pe&&(null==e?void 0:e.target)===J||je(e);},p=e=>{pe&&(null==e?void 0:e.target)===J&&Be();},v=["mouseenter","mouseleave","focus","blur"],m=["click","dblclick","mousedown","mouseup"];Object.entries(Ce).forEach((([e,t])=>{t&&(v.includes(e)?a.push({event:e,listener:We}):m.includes(e)&&a.push({event:e,listener:u}));})),Object.entries(Le).forEach((([e,t])=>{t&&(v.includes(e)?a.push({event:e,listener:Pe}):m.includes(e)&&a.push({event:e,listener:p}));})),k&&a.push({event:"pointermove",listener:De});const y=()=>{Ee.current=!0;},h=()=>{Ee.current=!1,Be();};return N&&!ke&&(null===(e=ne.current)||void 0===e||e.addEventListener("mouseenter",y),null===(t=ne.current)||void 0===t||t.addEventListener("mouseleave",h)),a.forEach((({event:e,listener:t})=>{o.forEach((o=>{var r;null===(r=o.current)||void 0===r||r.addEventListener(e,t);}));})),()=>{var e,t;Re.scroll&&(window.removeEventListener("scroll",l),null==n||n.removeEventListener("scroll",l),null==c||c.removeEventListener("scroll",l)),Re.resize?window.removeEventListener("resize",l):null==i||i(),Re.clickOutsideAnchor&&window.removeEventListener("click",qe),Re.escape&&window.removeEventListener("keydown",s),N&&!ke&&(null===(e=ne.current)||void 0===e||e.removeEventListener("mouseenter",y),null===(t=ne.current)||void 0===t||t.removeEventListener("mouseleave",h)),a.forEach((({event:e,listener:t})=>{o.forEach((o=>{var r;null===(r=o.current)||void 0===r||r.removeEventListener(e,t);}));}));}}),[J,Ve,me,Se,Ae,q,H,M,Te,A,O]),e.useEffect((()=>{var e,t;let o=null!==(t=null!==(e=null==ye?void 0:ye.anchorSelect)&&void 0!==e?e:p)&&void 0!==t?t:"";!o&&r&&(o=`[data-tooltip-id='${r.replace(/'/g,"\\'")}']`);const l=new MutationObserver((e=>{const t=[],l=[];e.forEach((e=>{if("attributes"===e.type&&"data-tooltip-id"===e.attributeName){e.target.getAttribute("data-tooltip-id")===r?t.push(e.target):e.oldValue===r&&l.push(e.target);}if("childList"===e.type){if(J){const t=[...e.removedNodes].filter((e=>1===e.nodeType));if(o)try{l.push(...t.filter((e=>e.matches(o)))),l.push(...t.flatMap((e=>[...e.querySelectorAll(o)])));}catch(e){}t.some((e=>{var t;return !!(null===(t=null==e?void 0:e.contains)||void 0===t?void 0:t.call(e,J))&&(fe(!1),xe(!1),Q(null),ie.current&&clearTimeout(ie.current),se.current&&clearTimeout(se.current),!0)}));}if(o)try{const r=[...e.addedNodes].filter((e=>1===e.nodeType));t.push(...r.filter((e=>e.matches(o)))),t.push(...r.flatMap((e=>[...e.querySelectorAll(o)])));}catch(e){}}})),(t.length||l.length)&&_e((e=>[...e.filter((e=>!l.includes(e))),...t]));}));return l.observe(document.body,{childList:!0,subtree:!0,attributes:!0,attributeFilter:["data-tooltip-id"],attributeOldValue:!0}),()=>{l.disconnect();}}),[r,p,null==ye?void 0:ye.anchorSelect,J]),e.useEffect((()=>{Ve();}),[Ve]),e.useEffect((()=>{if(!(null==X?void 0:X.current))return ()=>null;const e=new ResizeObserver((()=>{setTimeout((()=>Ve()));}));return e.observe(X.current),()=>{e.disconnect();}}),[U,null==X?void 0:X.current]),e.useEffect((()=>{var e;const t=document.querySelector(`[id='${d}']`),o=[...Ae,t];J&&o.includes(J)||Q(null!==(e=Ae[0])&&void 0!==e?e:t);}),[d,Ae,J]),e.useEffect((()=>(G&&xe(!0),()=>{ie.current&&clearTimeout(ie.current),se.current&&clearTimeout(se.current);})),[]),e.useEffect((()=>{var e;let t=null!==(e=null==ye?void 0:ye.anchorSelect)&&void 0!==e?e:p;if(!t&&r&&(t=`[data-tooltip-id='${r.replace(/'/g,"\\'")}']`),t)try{const e=Array.from(document.querySelectorAll(t));_e(e);}catch(e){_e([]);}}),[r,p,null==ye?void 0:ye.anchorSelect]),e.useEffect((()=>{ie.current&&(clearTimeout(ie.current),$e(A));}),[A]);const Fe=null!==(le=null==ye?void 0:ye.content)&&void 0!==le?le:U,Ke=pe&&Object.keys(ue.tooltipStyles).length>0;return e.useImperativeHandle(t,(()=>({open:e=>{if(null==e?void 0:e.anchorSelect)try{document.querySelector(e.anchorSelect);}catch(t){return void console.warn(`[react-tooltip] "${e.anchorSelect}" is not a valid CSS selector`)}he(null!=e?e:null),(null==e?void 0:e.delay)?$e(e.delay):xe(!0);},close:e=>{(null==e?void 0:e.delay)?Ie(e.delay):xe(!1);},activeAnchor:J,place:ue.place,isOpen:Boolean(me&&!R&&Fe&&Ke)}))),me&&!R&&Fe?e__namespace.default.createElement(g,{id:r,role:re,className:y$1("react-tooltip",B.tooltip,z.tooltip,z[u],c,`react-tooltip__place-${ue.place}`,B[Ke?"show":"closing"],Ke?"react-tooltip__show":"react-tooltip__closing","fixed"===b&&B.fixed,N&&B.clickable),onTransitionEnd:e=>{ae.current&&clearTimeout(ae.current),pe||"opacity"!==e.propertyName||(fe(!1),he(null),null==K||K());},style:{...P,...ue.tooltipStyles,opacity:void 0!==te&&Ke?te:void 0},ref:ne},Fe,e__namespace.default.createElement(g,{className:y$1("react-tooltip-arrow",B.arrow,z.arrow,i,x&&B.noArrow),style:{...ue.tooltipArrowStyles,background:oe?`linear-gradient(to right bottom, transparent 50%, ${oe} 50%)`:void 0},ref:ce})):null},q=({content:t})=>e__namespace.default.createElement("span",{dangerouslySetInnerHTML:{__html:t}}),H=e__namespace.default.forwardRef((({id:t,anchorId:r,anchorSelect:n,content:c,html:i,render:a,className:u,classNameArrow:d,variant:p="dark",place:v="top",offset:m=10,wrapper:f="div",children:h=null,events:w=["hover"],openOnClick:b=!1,positionStrategy:S="absolute",middlewares:g,delayShow:E=0,delayHide:_=0,float:O=!1,hidden:T=!1,noArrow:k=!1,clickable:C=!1,closeOnEsc:L=!1,closeOnScroll:R=!1,closeOnResize:x=!1,openEvents:N,closeEvents:$,globalCloseEvents:j,imperativeModeOnly:B=!1,style:z,position:H,isOpen:M,defaultIsOpen:W=!1,disableStyleInjection:P=!1,border:V,opacity:F,arrowColor:K,setIsOpen:U,afterShow:X,afterHide:Y,role:G="tooltip"},Z)=>{const[J,Q]=e.useState(c),[ee,te]=e.useState(i),[oe,re]=e.useState(v),[le,ne]=e.useState(p),[ce,ie]=e.useState(m),[se,ae]=e.useState(E),[ue,de]=e.useState(_),[pe,ve]=e.useState(O),[me,fe]=e.useState(T),[ye,he]=e.useState(f),[we,be]=e.useState(w),[Se,ge]=e.useState(S),[Ee,Ae]=e.useState(null),[_e,Oe]=e.useState(null),Te=e.useRef(P),{anchorRefs:ke,activeAnchor:Ce}=I(t),Le=e=>null==e?void 0:e.getAttributeNames().reduce(((t,o)=>{var r;if(o.startsWith("data-tooltip-")){t[o.replace(/^data-tooltip-/,"")]=null!==(r=null==e?void 0:e.getAttribute(o))&&void 0!==r?r:null;}return t}),{}),Re=e=>{const t={place:e=>{var t;re(null!==(t=e)&&void 0!==t?t:v);},content:e=>{Q(null!=e?e:c);},html:e=>{te(null!=e?e:i);},variant:e=>{var t;ne(null!==(t=e)&&void 0!==t?t:p);},offset:e=>{ie(null===e?m:Number(e));},wrapper:e=>{var t;he(null!==(t=e)&&void 0!==t?t:f);},events:e=>{const t=null==e?void 0:e.split(" ");be(null!=t?t:w);},"position-strategy":e=>{var t;ge(null!==(t=e)&&void 0!==t?t:S);},"delay-show":e=>{ae(null===e?E:Number(e));},"delay-hide":e=>{de(null===e?_:Number(e));},float:e=>{ve(null===e?O:"true"===e);},hidden:e=>{fe(null===e?T:"true"===e);},"class-name":e=>{Ae(e);}};Object.values(t).forEach((e=>e(null))),Object.entries(e).forEach((([e,o])=>{var r;null===(r=t[e])||void 0===r||r.call(t,o);}));};e.useEffect((()=>{Q(c);}),[c]),e.useEffect((()=>{te(i);}),[i]),e.useEffect((()=>{re(v);}),[v]),e.useEffect((()=>{ne(p);}),[p]),e.useEffect((()=>{ie(m);}),[m]),e.useEffect((()=>{ae(E);}),[E]),e.useEffect((()=>{de(_);}),[_]),e.useEffect((()=>{ve(O);}),[O]),e.useEffect((()=>{fe(T);}),[T]),e.useEffect((()=>{ge(S);}),[S]),e.useEffect((()=>{Te.current!==P&&console.warn("[react-tooltip] Do not change `disableStyleInjection` dynamically.");}),[P]),e.useEffect((()=>{"undefined"!=typeof window&&window.dispatchEvent(new CustomEvent("react-tooltip-inject-styles",{detail:{disableCore:"core"===P,disableBase:P}}));}),[]),e.useEffect((()=>{var e;const o=new Set(ke);let l=n;if(!l&&t&&(l=`[data-tooltip-id='${t.replace(/'/g,"\\'")}']`),l)try{document.querySelectorAll(l).forEach((e=>{o.add({current:e});}));}catch(e){console.warn(`[react-tooltip] "${l}" is not a valid CSS selector`);}const c=document.querySelector(`[id='${r}']`);if(c&&o.add({current:c}),!o.size)return ()=>null;const i=null!==(e=null!=_e?_e:c)&&void 0!==e?e:Ce.current,s=new MutationObserver((e=>{e.forEach((e=>{var t;if(!i||"attributes"!==e.type||!(null===(t=e.attributeName)||void 0===t?void 0:t.startsWith("data-tooltip-")))return;const o=Le(i);Re(o);}));})),a={attributes:!0,childList:!1,subtree:!1};if(i){const e=Le(i);Re(e),s.observe(i,a);}return ()=>{s.disconnect();}}),[ke,Ce,_e,r,n]),e.useEffect((()=>{(null==z?void 0:z.border)&&console.warn("[react-tooltip] Do not set `style.border`. Use `border` prop instead."),V&&!A("border",`${V}`)&&console.warn(`[react-tooltip] "${V}" is not a valid \`border\`.`),(null==z?void 0:z.opacity)&&console.warn("[react-tooltip] Do not set `style.opacity`. Use `opacity` prop instead."),F&&!A("opacity",`${F}`)&&console.warn(`[react-tooltip] "${F}" is not a valid \`opacity\`.`);}),[]);let xe=h;const Ne=e.useRef(null);if(a){const t=a({content:(null==_e?void 0:_e.getAttribute("data-tooltip-content"))||J||null,activeAnchor:_e});xe=t?e__namespace.default.createElement("div",{ref:Ne,className:"react-tooltip-content-wrapper"},t):null;}else J&&(xe=J);ee&&(xe=e__namespace.default.createElement(q,{content:ee}));const $e={forwardRef:Z,id:t,anchorId:r,anchorSelect:n,className:y$1(u,Ee),classNameArrow:d,content:xe,contentWrapperRef:Ne,place:oe,variant:le,offset:ce,wrapper:ye,events:we,openOnClick:b,positionStrategy:Se,middlewares:g,delayShow:se,delayHide:ue,float:pe,hidden:me,noArrow:k,clickable:C,closeOnEsc:L,closeOnScroll:R,closeOnResize:x,openEvents:N,closeEvents:$,globalCloseEvents:j,imperativeModeOnly:B,style:z,position:H,isOpen:M,defaultIsOpen:W,border:V,opacity:F,arrowColor:K,setIsOpen:U,afterShow:X,afterHide:Y,activeAnchor:_e,setActiveAnchor:e=>Oe(e),role:G};return e__namespace.default.createElement(D,{...$e})}));"undefined"!=typeof window&&window.addEventListener("react-tooltip-inject-styles",(e=>{e.detail.disableCore||S({css:`:root{--rt-color-white:#fff;--rt-color-dark:#222;--rt-color-success:#8dc572;--rt-color-error:#be6464;--rt-color-warning:#f0ad4e;--rt-color-info:#337ab7;--rt-opacity:0.9;--rt-transition-show-delay:0.15s;--rt-transition-closing-delay:0.15s}.core-styles-module_tooltip__3vRRp{position:absolute;top:0;left:0;pointer-events:none;opacity:0;will-change:opacity}.core-styles-module_fixed__pcSol{position:fixed}.core-styles-module_arrow__cvMwQ{position:absolute;background:inherit}.core-styles-module_noArrow__xock6{display:none}.core-styles-module_clickable__ZuTTB{pointer-events:auto}.core-styles-module_show__Nt9eE{opacity:var(--rt-opacity);transition:opacity var(--rt-transition-show-delay)ease-out}.core-styles-module_closing__sGnxF{opacity:0;transition:opacity var(--rt-transition-closing-delay)ease-in}`,type:"core"}),e.detail.disableBase||S({css:`
|
|
42566
|
+
const h="react-tooltip-core-styles",w="react-tooltip-base-styles",b={core:!1,base:!1};function S({css:e,id:t=w,type:o="base",ref:r}){var l,n;if(!e||"undefined"==typeof document||b[o])return;if("core"===o&&"undefined"!=typeof process&&(null===(l=null===process||void 0===process?void 0:process.env)||void 0===l?void 0:l.REACT_TOOLTIP_DISABLE_CORE_STYLES))return;if("base"!==o&&"undefined"!=typeof process&&(null===(n=null===process||void 0===process?void 0:process.env)||void 0===n?void 0:n.REACT_TOOLTIP_DISABLE_BASE_STYLES))return;"core"===o&&(t=h),r||(r={});const{insertAt:c}=r;if(document.getElementById(t))return void console.warn(`[react-tooltip] Element with id '${t}' already exists. Call \`removeStyle()\` first`);const i=document.head||document.getElementsByTagName("head")[0],s=document.createElement("style");s.id=t,s.type="text/css","top"===c&&i.firstChild?i.insertBefore(s,i.firstChild):i.appendChild(s),s.styleSheet?s.styleSheet.cssText=e:s.appendChild(document.createTextNode(e)),b[o]=!0;}const E=async({elementReference:e=null,tooltipReference:t=null,tooltipArrowReference:o=null,place:r="top",offset:l=10,strategy:n="absolute",middlewares:c=[offset(Number(l)),flip({fallbackAxisSideDirection:"start"}),shift({padding:5})],border:i})=>{if(!e)return {tooltipStyles:{},tooltipArrowStyles:{},place:r};if(null===t)return {tooltipStyles:{},tooltipArrowStyles:{},place:r};const s=c;return o?(s.push(arrow({element:o,padding:5})),computePosition(e,t,{placement:r,strategy:n,middleware:s}).then((({x:e,y:t,placement:o,middlewareData:r})=>{var l,n;const c={left:`${e}px`,top:`${t}px`,border:i},{x:s,y:a}=null!==(l=r.arrow)&&void 0!==l?l:{x:0,y:0},u=null!==(n={top:"bottom",right:"left",bottom:"top",left:"right"}[o.split("-")[0]])&&void 0!==n?n:"bottom",d=i&&{borderBottom:i,borderRight:i};let p=0;if(i){const e=`${i}`.match(/(\d+)px/);p=(null==e?void 0:e[1])?Number(e[1]):1;}return {tooltipStyles:c,tooltipArrowStyles:{left:null!=s?`${s}px`:"",top:null!=a?`${a}px`:"",right:"",bottom:"",...d,[u]:`-${4+p}px`},place:o}}))):computePosition(e,t,{placement:"bottom",strategy:n,middleware:s}).then((({x:e,y:t,placement:o})=>({tooltipStyles:{left:`${e}px`,top:`${t}px`},tooltipArrowStyles:{},place:o})))},A=(e,t)=>!("CSS"in window&&"supports"in window.CSS)||window.CSS.supports(e,t),_=(e,t,o)=>{let r=null;const l=function(...l){const n=()=>{r=null;};!r&&(e.apply(this,l),r=setTimeout(n,t));};return l.cancel=()=>{r&&(clearTimeout(r),r=null);},l},O=e=>null!==e&&!Array.isArray(e)&&"object"==typeof e,T=(e,t)=>{if(e===t)return !0;if(Array.isArray(e)&&Array.isArray(t))return e.length===t.length&&e.every(((e,o)=>T(e,t[o])));if(Array.isArray(e)!==Array.isArray(t))return !1;if(!O(e)||!O(t))return e===t;const o=Object.keys(e),r=Object.keys(t);return o.length===r.length&&o.every((o=>T(e[o],t[o])))},k=e=>{if(!(e instanceof HTMLElement||e instanceof SVGElement))return !1;const t=getComputedStyle(e);return ["overflow","overflow-x","overflow-y"].some((e=>{const o=t.getPropertyValue(e);return "auto"===o||"scroll"===o}))},C=e=>{if(!e)return null;let t=e.parentElement;for(;t;){if(k(t))return t;t=t.parentElement;}return document.scrollingElement||document.documentElement},L="undefined"!=typeof window?e.useLayoutEffect:e.useEffect,R="DEFAULT_TOOLTIP_ID",x={anchorRefs:new Set,activeAnchor:{current:null},attach:()=>{},detach:()=>{},setActiveAnchor:()=>{}},N=e.createContext({getTooltipData:()=>x});function I(e$1=R){return e.useContext(N).getTooltipData(e$1)}var B={tooltip:"core-styles-module_tooltip__3vRRp",fixed:"core-styles-module_fixed__pcSol",arrow:"core-styles-module_arrow__cvMwQ",noArrow:"core-styles-module_noArrow__xock6",clickable:"core-styles-module_clickable__ZuTTB",show:"core-styles-module_show__Nt9eE",closing:"core-styles-module_closing__sGnxF"},z={tooltip:"styles-module_tooltip__mnnfp",arrow:"styles-module_arrow__K0L3T",dark:"styles-module_dark__xNqje",light:"styles-module_light__Z6W-X",success:"styles-module_success__A2AKt",warning:"styles-module_warning__SCK0X",error:"styles-module_error__JvumD",info:"styles-module_info__BWdHW"};const D=({forwardRef:t,id:r,className:c,classNameArrow:i,variant:u="dark",anchorId:d,anchorSelect:p,place:v="top",offset:m=10,events:h=["hover"],openOnClick:w=!1,positionStrategy:b="absolute",middlewares:S,wrapper:g,delayShow:A=0,delayHide:O=0,float:k=!1,hidden:R=!1,noArrow:x=!1,clickable:N=!1,closeOnEsc:$=!1,closeOnScroll:j=!1,closeOnResize:D=!1,openEvents:q,closeEvents:H,globalCloseEvents:M,imperativeModeOnly:W,style:P,position:V,afterShow:F,afterHide:K,content:U,contentWrapperRef:X,isOpen:Y,defaultIsOpen:G=!1,setIsOpen:Z,activeAnchor:J,setActiveAnchor:Q,border:ee,opacity:te,arrowColor:oe,role:re="tooltip"})=>{var le;const ne=e.useRef(null),ce=e.useRef(null),ie=e.useRef(null),se=e.useRef(null),ae=e.useRef(null),[ue,de]=e.useState({tooltipStyles:{},tooltipArrowStyles:{},place:v}),[pe,ve]=e.useState(!1),[me,fe]=e.useState(!1),[ye,he]=e.useState(null),we=e.useRef(!1),be=e.useRef(null),{anchorRefs:Se,setActiveAnchor:ge}=I(r),Ee=e.useRef(!1),[Ae,_e]=e.useState([]),Oe=e.useRef(!1),Te=w||h.includes("click"),ke=Te||(null==q?void 0:q.click)||(null==q?void 0:q.dblclick)||(null==q?void 0:q.mousedown),Ce=q?{...q}:{mouseenter:!0,focus:!0,click:!1,dblclick:!1,mousedown:!1};!q&&Te&&Object.assign(Ce,{mouseenter:!1,focus:!1,click:!0});const Le=H?{...H}:{mouseleave:!0,blur:!0,click:!1,dblclick:!1,mouseup:!1};!H&&Te&&Object.assign(Le,{mouseleave:!1,blur:!1});const Re=M?{...M}:{escape:$||!1,scroll:j||!1,resize:D||!1,clickOutsideAnchor:ke||!1};W&&(Object.assign(Ce,{mouseenter:!1,focus:!1,click:!1,dblclick:!1,mousedown:!1}),Object.assign(Le,{mouseleave:!1,blur:!1,click:!1,dblclick:!1,mouseup:!1}),Object.assign(Re,{escape:!1,scroll:!1,resize:!1,clickOutsideAnchor:!1})),L((()=>(Oe.current=!0,()=>{Oe.current=!1;})),[]);const xe=e=>{Oe.current&&(e&&fe(!0),setTimeout((()=>{Oe.current&&(null==Z||Z(e),void 0===Y&&ve(e));}),10));};e.useEffect((()=>{if(void 0===Y)return ()=>null;Y&&fe(!0);const e=setTimeout((()=>{ve(Y);}),10);return ()=>{clearTimeout(e);}}),[Y]),e.useEffect((()=>{if(pe!==we.current)if(ae.current&&clearTimeout(ae.current),we.current=pe,pe)null==F||F();else {const e=(e=>{const t=e.match(/^([\d.]+)(ms|s)$/);if(!t)return 0;const[,o,r]=t;return Number(o)*("ms"===r?1:1e3)})(getComputedStyle(document.body).getPropertyValue("--rt-transition-show-delay"));ae.current=setTimeout((()=>{fe(!1),he(null),null==K||K();}),e+25);}}),[pe]);const Ne=e=>{de((t=>T(t,e)?t:e));},$e=(e=A)=>{ie.current&&clearTimeout(ie.current),me?xe(!0):ie.current=setTimeout((()=>{xe(!0);}),e);},Ie=(e=O)=>{se.current&&clearTimeout(se.current),se.current=setTimeout((()=>{Ee.current||xe(!1);}),e);},je=e=>{var t;if(!e)return;const o=null!==(t=e.currentTarget)&&void 0!==t?t:e.target;if(!(null==o?void 0:o.isConnected))return Q(null),void ge({current:null});A?$e():xe(!0),Q(o),ge({current:o}),se.current&&clearTimeout(se.current);},Be=()=>{N?Ie(O||100):O?Ie():xe(!1),ie.current&&clearTimeout(ie.current);},ze=({x:e,y:t})=>{var o;const r={getBoundingClientRect:()=>({x:e,y:t,width:0,height:0,top:t,left:e,right:e,bottom:t})};E({place:null!==(o=null==ye?void 0:ye.place)&&void 0!==o?o:v,offset:m,elementReference:r,tooltipReference:ne.current,tooltipArrowReference:ce.current,strategy:b,middlewares:S,border:ee}).then((e=>{Ne(e);}));},De=e=>{if(!e)return;const t=e,o={x:t.clientX,y:t.clientY};ze(o),be.current=o;},qe=e=>{var t;if(!pe)return;const o=e.target;if(!o.isConnected)return;if(null===(t=ne.current)||void 0===t?void 0:t.contains(o))return;[document.querySelector(`[id='${d}']`),...Ae].some((e=>null==e?void 0:e.contains(o)))||(xe(!1),ie.current&&clearTimeout(ie.current));},He=_(je,50),Me=_(Be,50),We=e=>{Me.cancel(),He(e);},Pe=()=>{He.cancel(),Me();},Ve=e.useCallback((()=>{var e,t;const o=null!==(e=null==ye?void 0:ye.position)&&void 0!==e?e:V;o?ze(o):k?be.current&&ze(be.current):(null==J?void 0:J.isConnected)&&E({place:null!==(t=null==ye?void 0:ye.place)&&void 0!==t?t:v,offset:m,elementReference:J,tooltipReference:ne.current,tooltipArrowReference:ce.current,strategy:b,middlewares:S,border:ee}).then((e=>{Oe.current&&Ne(e);}));}),[pe,J,U,P,v,null==ye?void 0:ye.place,m,b,V,null==ye?void 0:ye.position,k]);e.useEffect((()=>{var e,t;const o=new Set(Se);Ae.forEach((e=>{o.add({current:e});}));const r=document.querySelector(`[id='${d}']`);r&&o.add({current:r});const l=()=>{xe(!1);},n=C(J),c=C(ne.current);Re.scroll&&(window.addEventListener("scroll",l),null==n||n.addEventListener("scroll",l),null==c||c.addEventListener("scroll",l));let i=null;Re.resize?window.addEventListener("resize",l):J&&ne.current&&(i=autoUpdate(J,ne.current,Ve,{ancestorResize:!0,elementResize:!0,layoutShift:!0}));const s=e=>{"Escape"===e.key&&xe(!1);};Re.escape&&window.addEventListener("keydown",s),Re.clickOutsideAnchor&&window.addEventListener("click",qe);const a=[],u=e=>{pe&&(null==e?void 0:e.target)===J||je(e);},p=e=>{pe&&(null==e?void 0:e.target)===J&&Be();},v=["mouseenter","mouseleave","focus","blur"],m=["click","dblclick","mousedown","mouseup"];Object.entries(Ce).forEach((([e,t])=>{t&&(v.includes(e)?a.push({event:e,listener:We}):m.includes(e)&&a.push({event:e,listener:u}));})),Object.entries(Le).forEach((([e,t])=>{t&&(v.includes(e)?a.push({event:e,listener:Pe}):m.includes(e)&&a.push({event:e,listener:p}));})),k&&a.push({event:"pointermove",listener:De});const y=()=>{Ee.current=!0;},h=()=>{Ee.current=!1,Be();};return N&&!ke&&(null===(e=ne.current)||void 0===e||e.addEventListener("mouseenter",y),null===(t=ne.current)||void 0===t||t.addEventListener("mouseleave",h)),a.forEach((({event:e,listener:t})=>{o.forEach((o=>{var r;null===(r=o.current)||void 0===r||r.addEventListener(e,t);}));})),()=>{var e,t;Re.scroll&&(window.removeEventListener("scroll",l),null==n||n.removeEventListener("scroll",l),null==c||c.removeEventListener("scroll",l)),Re.resize?window.removeEventListener("resize",l):null==i||i(),Re.clickOutsideAnchor&&window.removeEventListener("click",qe),Re.escape&&window.removeEventListener("keydown",s),N&&!ke&&(null===(e=ne.current)||void 0===e||e.removeEventListener("mouseenter",y),null===(t=ne.current)||void 0===t||t.removeEventListener("mouseleave",h)),a.forEach((({event:e,listener:t})=>{o.forEach((o=>{var r;null===(r=o.current)||void 0===r||r.removeEventListener(e,t);}));}));}}),[J,Ve,me,Se,Ae,q,H,M,Te,A,O]),e.useEffect((()=>{var e,t;let o=null!==(t=null!==(e=null==ye?void 0:ye.anchorSelect)&&void 0!==e?e:p)&&void 0!==t?t:"";!o&&r&&(o=`[data-tooltip-id='${r.replace(/'/g,"\\'")}']`);const l=new MutationObserver((e=>{const t=[],l=[];e.forEach((e=>{if("attributes"===e.type&&"data-tooltip-id"===e.attributeName){e.target.getAttribute("data-tooltip-id")===r?t.push(e.target):e.oldValue===r&&l.push(e.target);}if("childList"===e.type){if(J){const t=[...e.removedNodes].filter((e=>1===e.nodeType));if(o)try{l.push(...t.filter((e=>e.matches(o)))),l.push(...t.flatMap((e=>[...e.querySelectorAll(o)])));}catch(e){}t.some((e=>{var t;return !!(null===(t=null==e?void 0:e.contains)||void 0===t?void 0:t.call(e,J))&&(fe(!1),xe(!1),Q(null),ie.current&&clearTimeout(ie.current),se.current&&clearTimeout(se.current),!0)}));}if(o)try{const r=[...e.addedNodes].filter((e=>1===e.nodeType));t.push(...r.filter((e=>e.matches(o)))),t.push(...r.flatMap((e=>[...e.querySelectorAll(o)])));}catch(e){}}})),(t.length||l.length)&&_e((e=>[...e.filter((e=>!l.includes(e))),...t]));}));return l.observe(document.body,{childList:!0,subtree:!0,attributes:!0,attributeFilter:["data-tooltip-id"],attributeOldValue:!0}),()=>{l.disconnect();}}),[r,p,null==ye?void 0:ye.anchorSelect,J]),e.useEffect((()=>{Ve();}),[Ve]),e.useEffect((()=>{if(!(null==X?void 0:X.current))return ()=>null;const e=new ResizeObserver((()=>{setTimeout((()=>Ve()));}));return e.observe(X.current),()=>{e.disconnect();}}),[U,null==X?void 0:X.current]),e.useEffect((()=>{var e;const t=document.querySelector(`[id='${d}']`),o=[...Ae,t];J&&o.includes(J)||Q(null!==(e=Ae[0])&&void 0!==e?e:t);}),[d,Ae,J]),e.useEffect((()=>(G&&xe(!0),()=>{ie.current&&clearTimeout(ie.current),se.current&&clearTimeout(se.current);})),[]),e.useEffect((()=>{var e;let t=null!==(e=null==ye?void 0:ye.anchorSelect)&&void 0!==e?e:p;if(!t&&r&&(t=`[data-tooltip-id='${r.replace(/'/g,"\\'")}']`),t)try{const e=Array.from(document.querySelectorAll(t));_e(e);}catch(e){_e([]);}}),[r,p,null==ye?void 0:ye.anchorSelect]),e.useEffect((()=>{ie.current&&(clearTimeout(ie.current),$e(A));}),[A]);const Fe=null!==(le=null==ye?void 0:ye.content)&&void 0!==le?le:U,Ke=pe&&Object.keys(ue.tooltipStyles).length>0;return e.useImperativeHandle(t,(()=>({open:e=>{if(null==e?void 0:e.anchorSelect)try{document.querySelector(e.anchorSelect);}catch(t){return void console.warn(`[react-tooltip] "${e.anchorSelect}" is not a valid CSS selector`)}he(null!=e?e:null),(null==e?void 0:e.delay)?$e(e.delay):xe(!0);},close:e=>{(null==e?void 0:e.delay)?Ie(e.delay):xe(!1);},activeAnchor:J,place:ue.place,isOpen:Boolean(me&&!R&&Fe&&Ke)}))),me&&!R&&Fe?e__namespace.default.createElement(g,{id:r,role:re,className:classNames("react-tooltip",B.tooltip,z.tooltip,z[u],c,`react-tooltip__place-${ue.place}`,B[Ke?"show":"closing"],Ke?"react-tooltip__show":"react-tooltip__closing","fixed"===b&&B.fixed,N&&B.clickable),onTransitionEnd:e=>{ae.current&&clearTimeout(ae.current),pe||"opacity"!==e.propertyName||(fe(!1),he(null),null==K||K());},style:{...P,...ue.tooltipStyles,opacity:void 0!==te&&Ke?te:void 0},ref:ne},Fe,e__namespace.default.createElement(g,{className:classNames("react-tooltip-arrow",B.arrow,z.arrow,i,x&&B.noArrow),style:{...ue.tooltipArrowStyles,background:oe?`linear-gradient(to right bottom, transparent 50%, ${oe} 50%)`:void 0},ref:ce})):null},q=({content:t})=>e__namespace.default.createElement("span",{dangerouslySetInnerHTML:{__html:t}}),H=e__namespace.default.forwardRef((({id:t,anchorId:r,anchorSelect:n,content:c,html:i,render:a,className:u,classNameArrow:d,variant:p="dark",place:v="top",offset:m=10,wrapper:f="div",children:h=null,events:w=["hover"],openOnClick:b=!1,positionStrategy:S="absolute",middlewares:g,delayShow:E=0,delayHide:_=0,float:O=!1,hidden:T=!1,noArrow:k=!1,clickable:C=!1,closeOnEsc:L=!1,closeOnScroll:R=!1,closeOnResize:x=!1,openEvents:N,closeEvents:$,globalCloseEvents:j,imperativeModeOnly:B=!1,style:z,position:H,isOpen:M,defaultIsOpen:W=!1,disableStyleInjection:P=!1,border:V,opacity:F,arrowColor:K,setIsOpen:U,afterShow:X,afterHide:Y,role:G="tooltip"},Z)=>{const[J,Q]=e.useState(c),[ee,te]=e.useState(i),[oe,re]=e.useState(v),[le,ne]=e.useState(p),[ce,ie]=e.useState(m),[se,ae]=e.useState(E),[ue,de]=e.useState(_),[pe,ve]=e.useState(O),[me,fe]=e.useState(T),[ye,he]=e.useState(f),[we,be]=e.useState(w),[Se,ge]=e.useState(S),[Ee,Ae]=e.useState(null),[_e,Oe]=e.useState(null),Te=e.useRef(P),{anchorRefs:ke,activeAnchor:Ce}=I(t),Le=e=>null==e?void 0:e.getAttributeNames().reduce(((t,o)=>{var r;if(o.startsWith("data-tooltip-")){t[o.replace(/^data-tooltip-/,"")]=null!==(r=null==e?void 0:e.getAttribute(o))&&void 0!==r?r:null;}return t}),{}),Re=e=>{const t={place:e=>{var t;re(null!==(t=e)&&void 0!==t?t:v);},content:e=>{Q(null!=e?e:c);},html:e=>{te(null!=e?e:i);},variant:e=>{var t;ne(null!==(t=e)&&void 0!==t?t:p);},offset:e=>{ie(null===e?m:Number(e));},wrapper:e=>{var t;he(null!==(t=e)&&void 0!==t?t:f);},events:e=>{const t=null==e?void 0:e.split(" ");be(null!=t?t:w);},"position-strategy":e=>{var t;ge(null!==(t=e)&&void 0!==t?t:S);},"delay-show":e=>{ae(null===e?E:Number(e));},"delay-hide":e=>{de(null===e?_:Number(e));},float:e=>{ve(null===e?O:"true"===e);},hidden:e=>{fe(null===e?T:"true"===e);},"class-name":e=>{Ae(e);}};Object.values(t).forEach((e=>e(null))),Object.entries(e).forEach((([e,o])=>{var r;null===(r=t[e])||void 0===r||r.call(t,o);}));};e.useEffect((()=>{Q(c);}),[c]),e.useEffect((()=>{te(i);}),[i]),e.useEffect((()=>{re(v);}),[v]),e.useEffect((()=>{ne(p);}),[p]),e.useEffect((()=>{ie(m);}),[m]),e.useEffect((()=>{ae(E);}),[E]),e.useEffect((()=>{de(_);}),[_]),e.useEffect((()=>{ve(O);}),[O]),e.useEffect((()=>{fe(T);}),[T]),e.useEffect((()=>{ge(S);}),[S]),e.useEffect((()=>{Te.current!==P&&console.warn("[react-tooltip] Do not change `disableStyleInjection` dynamically.");}),[P]),e.useEffect((()=>{"undefined"!=typeof window&&window.dispatchEvent(new CustomEvent("react-tooltip-inject-styles",{detail:{disableCore:"core"===P,disableBase:P}}));}),[]),e.useEffect((()=>{var e;const o=new Set(ke);let l=n;if(!l&&t&&(l=`[data-tooltip-id='${t.replace(/'/g,"\\'")}']`),l)try{document.querySelectorAll(l).forEach((e=>{o.add({current:e});}));}catch(e){console.warn(`[react-tooltip] "${l}" is not a valid CSS selector`);}const c=document.querySelector(`[id='${r}']`);if(c&&o.add({current:c}),!o.size)return ()=>null;const i=null!==(e=null!=_e?_e:c)&&void 0!==e?e:Ce.current,s=new MutationObserver((e=>{e.forEach((e=>{var t;if(!i||"attributes"!==e.type||!(null===(t=e.attributeName)||void 0===t?void 0:t.startsWith("data-tooltip-")))return;const o=Le(i);Re(o);}));})),a={attributes:!0,childList:!1,subtree:!1};if(i){const e=Le(i);Re(e),s.observe(i,a);}return ()=>{s.disconnect();}}),[ke,Ce,_e,r,n]),e.useEffect((()=>{(null==z?void 0:z.border)&&console.warn("[react-tooltip] Do not set `style.border`. Use `border` prop instead."),V&&!A("border",`${V}`)&&console.warn(`[react-tooltip] "${V}" is not a valid \`border\`.`),(null==z?void 0:z.opacity)&&console.warn("[react-tooltip] Do not set `style.opacity`. Use `opacity` prop instead."),F&&!A("opacity",`${F}`)&&console.warn(`[react-tooltip] "${F}" is not a valid \`opacity\`.`);}),[]);let xe=h;const Ne=e.useRef(null);if(a){const t=a({content:(null==_e?void 0:_e.getAttribute("data-tooltip-content"))||J||null,activeAnchor:_e});xe=t?e__namespace.default.createElement("div",{ref:Ne,className:"react-tooltip-content-wrapper"},t):null;}else J&&(xe=J);ee&&(xe=e__namespace.default.createElement(q,{content:ee}));const $e={forwardRef:Z,id:t,anchorId:r,anchorSelect:n,className:classNames(u,Ee),classNameArrow:d,content:xe,contentWrapperRef:Ne,place:oe,variant:le,offset:ce,wrapper:ye,events:we,openOnClick:b,positionStrategy:Se,middlewares:g,delayShow:se,delayHide:ue,float:pe,hidden:me,noArrow:k,clickable:C,closeOnEsc:L,closeOnScroll:R,closeOnResize:x,openEvents:N,closeEvents:$,globalCloseEvents:j,imperativeModeOnly:B,style:z,position:H,isOpen:M,defaultIsOpen:W,border:V,opacity:F,arrowColor:K,setIsOpen:U,afterShow:X,afterHide:Y,activeAnchor:_e,setActiveAnchor:e=>Oe(e),role:G};return e__namespace.default.createElement(D,{...$e})}));"undefined"!=typeof window&&window.addEventListener("react-tooltip-inject-styles",(e=>{e.detail.disableCore||S({css:`:root{--rt-color-white:#fff;--rt-color-dark:#222;--rt-color-success:#8dc572;--rt-color-error:#be6464;--rt-color-warning:#f0ad4e;--rt-color-info:#337ab7;--rt-opacity:0.9;--rt-transition-show-delay:0.15s;--rt-transition-closing-delay:0.15s}.core-styles-module_tooltip__3vRRp{position:absolute;top:0;left:0;pointer-events:none;opacity:0;will-change:opacity}.core-styles-module_fixed__pcSol{position:fixed}.core-styles-module_arrow__cvMwQ{position:absolute;background:inherit}.core-styles-module_noArrow__xock6{display:none}.core-styles-module_clickable__ZuTTB{pointer-events:auto}.core-styles-module_show__Nt9eE{opacity:var(--rt-opacity);transition:opacity var(--rt-transition-show-delay)ease-out}.core-styles-module_closing__sGnxF{opacity:0;transition:opacity var(--rt-transition-closing-delay)ease-in}`,type:"core"}),e.detail.disableBase||S({css:`
|
|
42567
42567
|
.styles-module_tooltip__mnnfp{padding:8px 16px;border-radius:3px;font-size:90%;width:max-content}.styles-module_arrow__K0L3T{width:8px;height:8px}[class*='react-tooltip__place-top']>.styles-module_arrow__K0L3T{transform:rotate(45deg)}[class*='react-tooltip__place-right']>.styles-module_arrow__K0L3T{transform:rotate(135deg)}[class*='react-tooltip__place-bottom']>.styles-module_arrow__K0L3T{transform:rotate(225deg)}[class*='react-tooltip__place-left']>.styles-module_arrow__K0L3T{transform:rotate(315deg)}.styles-module_dark__xNqje{background:var(--rt-color-dark);color:var(--rt-color-white)}.styles-module_light__Z6W-X{background-color:var(--rt-color-white);color:var(--rt-color-dark)}.styles-module_success__A2AKt{background-color:var(--rt-color-success);color:var(--rt-color-white)}.styles-module_warning__SCK0X{background-color:var(--rt-color-warning);color:var(--rt-color-white)}.styles-module_error__JvumD{background-color:var(--rt-color-error);color:var(--rt-color-white)}.styles-module_info__BWdHW{background-color:var(--rt-color-info);color:var(--rt-color-white)}`,type:"base"});}));
|
|
42568
42568
|
|
|
42569
42569
|
const StyledTooltip = styled__default.default.div `
|
|
@@ -42663,6 +42663,15 @@ const Tooltip = (props) => {
|
|
|
42663
42663
|
openOnClick: props.clickToShow, id: props.for, delayShow: props.delayShow, delayHide: props.delayHide, children: props.children })] }));
|
|
42664
42664
|
};
|
|
42665
42665
|
|
|
42666
|
+
const Pill = (_a) => {
|
|
42667
|
+
var { value, status = 'info', size = 'sm' } = _a, rest = __rest$1(_a, ["value", "status", "size"]);
|
|
42668
|
+
const className = classNames('pill', {
|
|
42669
|
+
[`pill--${status}`]: status,
|
|
42670
|
+
[`pill--${size}`]: size,
|
|
42671
|
+
});
|
|
42672
|
+
return (jsxRuntime.jsx("div", Object.assign({ className: className }, rest, { children: value })));
|
|
42673
|
+
};
|
|
42674
|
+
|
|
42666
42675
|
exports.ANIMATION = animation;
|
|
42667
42676
|
exports.AbstractRadio = Radio$1;
|
|
42668
42677
|
exports.AbstractRadioGroup = RadioGroup$1;
|
|
@@ -42702,6 +42711,7 @@ exports.PADDINGS = padding;
|
|
|
42702
42711
|
exports.Pagination = Pagination;
|
|
42703
42712
|
exports.PasswordInput = LabeledPasswordInput;
|
|
42704
42713
|
exports.PercentageRing = PercentageRing;
|
|
42714
|
+
exports.Pill = Pill;
|
|
42705
42715
|
exports.Popper = Popper;
|
|
42706
42716
|
exports.Radio = Radio;
|
|
42707
42717
|
exports.RadioGroup = RadioGroup;
|