magneto365.ui 2.66.0 → 2.68.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/dist/cjs/css/magneto.ui.lib.min.css +1 -1
- package/dist/cjs/index.js +196 -159
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/types/components/UI/molecules/TimelineEvent/TimelineEvent.interface.d.ts +8 -3
- package/dist/cjs/types/components/UI/organism/Timeline/Timeline.interface.d.ts +6 -2
- package/dist/cjs/types/components/context/container/container.context.d.ts +4 -0
- package/dist/cjs/types/components/context/container/container.interface.d.ts +6 -0
- package/dist/cjs/types/components/context/context.interface.d.ts +1 -0
- package/dist/cjs/types/constants/env.constants.d.ts +2 -0
- package/dist/cjs/types/constants/timelineEvent.constants.d.ts +7 -0
- package/dist/esm/css/magneto.ui.lib.min.css +1 -1
- package/dist/esm/index.js +197 -160
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/components/UI/molecules/TimelineEvent/TimelineEvent.interface.d.ts +8 -3
- package/dist/esm/types/components/UI/organism/Timeline/Timeline.interface.d.ts +6 -2
- package/dist/esm/types/components/context/container/container.context.d.ts +4 -0
- package/dist/esm/types/components/context/container/container.interface.d.ts +6 -0
- package/dist/esm/types/components/context/context.interface.d.ts +1 -0
- package/dist/esm/types/constants/env.constants.d.ts +2 -0
- package/dist/esm/types/constants/timelineEvent.constants.d.ts +7 -0
- package/dist/index.d.ts +16 -6
- package/package.json +1 -1
package/dist/esm/index.js
CHANGED
|
@@ -212,10 +212,31 @@ var ResponsiveContextProvider = function (_a) {
|
|
|
212
212
|
return React.createElement(ResponsiveContext.Provider, { value: { dim: dim } }, children);
|
|
213
213
|
};
|
|
214
214
|
|
|
215
|
+
var isClient = typeof window !== 'undefined';
|
|
216
|
+
var isServer = !isClient;
|
|
217
|
+
|
|
218
|
+
var ContainerContext = createContext({
|
|
219
|
+
container: isClient ? window.document.body : null
|
|
220
|
+
});
|
|
221
|
+
var ContainerContextProvider = function (_a) {
|
|
222
|
+
var children = _a.children, _b = _a.container, container = _b === void 0 ? null : _b;
|
|
223
|
+
var ctx = useMemo(function () {
|
|
224
|
+
var element = container;
|
|
225
|
+
if (!element && isClient) {
|
|
226
|
+
element = document.body;
|
|
227
|
+
}
|
|
228
|
+
return {
|
|
229
|
+
container: element
|
|
230
|
+
};
|
|
231
|
+
}, [container]);
|
|
232
|
+
return React.createElement(ContainerContext.Provider, { value: ctx }, children);
|
|
233
|
+
};
|
|
234
|
+
|
|
215
235
|
var ContextAppProvider = function (_a) {
|
|
216
|
-
var children = _a.children, device = _a.device;
|
|
236
|
+
var children = _a.children, device = _a.device, container = _a.container;
|
|
217
237
|
return (React.createElement(EventDispatcherContextProvider, null,
|
|
218
|
-
React.createElement(
|
|
238
|
+
React.createElement(ContainerContextProvider, { container: container },
|
|
239
|
+
React.createElement(ResponsiveContextProvider, { device: device }, children))));
|
|
219
240
|
};
|
|
220
241
|
|
|
221
242
|
var screenList = Object.entries(screenSize).sort(function (a, b) { return a[1] - b[1]; });
|
|
@@ -286,7 +307,7 @@ var classNames = {
|
|
|
286
307
|
}
|
|
287
308
|
};
|
|
288
309
|
|
|
289
|
-
var cx$
|
|
310
|
+
var cx$1d = classNames.bind(styles$2Y);
|
|
290
311
|
var Component$37 = function (_a) {
|
|
291
312
|
var fallbackIcon = _a.fallbackIcon, _b = _a.showDefaultFallback, showDefaultFallback = _b === void 0 ? true : _b, icon = _a.icon, _c = _a.hover, hover = _c === void 0 ? false : _c, size = _a.size, className = _a.className, alt = _a.alt, isRotate = _a.isRotate;
|
|
292
313
|
var _d = useState(false), imageError = _d[0], setImageError = _d[1];
|
|
@@ -294,11 +315,11 @@ var Component$37 = function (_a) {
|
|
|
294
315
|
setImageError(true);
|
|
295
316
|
};
|
|
296
317
|
var iconSrc = useMemo(function () { return (!imageError ? icon !== null && icon !== void 0 ? icon : undefined : fallbackIcon); }, [fallbackIcon, imageError, icon]);
|
|
297
|
-
var isHover = hover ? cx$
|
|
318
|
+
var isHover = hover ? cx$1d('magneto-ui-hover') : '';
|
|
298
319
|
var customStyle = size ? { width: size + 'px' } : {};
|
|
299
320
|
if (!iconSrc && !showDefaultFallback)
|
|
300
321
|
return null;
|
|
301
|
-
return (React.createElement(Fragment, null, icon && (React.createElement("img", { "data-name": "icon", style: customStyle, className: cx$
|
|
322
|
+
return (React.createElement(Fragment, null, icon && (React.createElement("img", { "data-name": "icon", style: customStyle, className: cx$1d('magneto-ui-icon', { 'magneto-ui-rotate': isRotate }, isHover, className), src: iconSrc, alt: alt !== null && alt !== void 0 ? alt : "".concat(icon, " icon item"), loading: "lazy", width: '25px', onError: handleError }))));
|
|
302
323
|
};
|
|
303
324
|
/**
|
|
304
325
|
* Atom UI component of Icon for general purpose
|
|
@@ -1644,16 +1665,16 @@ var ButtonLink = Component$30;
|
|
|
1644
1665
|
|
|
1645
1666
|
var styles$2Q = {"checkbox":"mg_checkbox_checkbox_1w9e7","checkbox--inline":"mg_checkbox_checkbox--inline_1w9e7","checkbox--block":"mg_checkbox_checkbox--block_1w9e7","checkbox--background":"mg_checkbox_checkbox--background_1w9e7","checkbox--checked":"mg_checkbox_checkbox--checked_1w9e7","custom-checked":"mg_checkbox_custom-checked_1w9e7","checkbox__box":"mg_checkbox_checkbox_box_1w9e7","checkbox__box--checked":"mg_checkbox_checkbox_box--checked_1w9e7"};
|
|
1646
1667
|
|
|
1647
|
-
var cx$
|
|
1668
|
+
var cx$1c = classNames.bind(styles$2Q);
|
|
1648
1669
|
var defaultCheck = function (_a) {
|
|
1649
1670
|
var type = _a.type, checked = _a.checked;
|
|
1650
1671
|
if (type === 'background')
|
|
1651
1672
|
return;
|
|
1652
|
-
return (React.createElement("div", { "aria-checked": checked, role: "checkbox", className: cx$
|
|
1673
|
+
return (React.createElement("div", { "aria-checked": checked, role: "checkbox", className: cx$1c('checkbox__box', { 'checkbox__box--checked': checked }) }, checked ? React.createElement(React.Fragment, null, "\u2713") : null));
|
|
1653
1674
|
};
|
|
1654
1675
|
var Component$2$ = function (_a) {
|
|
1655
1676
|
var id = _a.id, checked = _a.checked, _b = _a.onChange, onChange = _b === void 0 ? stubTrue : _b, children = _a.children, _c = _a.type, type = _c === void 0 ? 'box' : _c, className = _a.className, _d = _a.display, display = _d === void 0 ? 'inline' : _d, _e = _a.renderCheck, renderCheck = _e === void 0 ? defaultCheck : _e, rest = __rest(_a, ["id", "checked", "onChange", "children", "type", "className", "display", "renderCheck"]);
|
|
1656
|
-
return (React.createElement("label", { className: cx$
|
|
1677
|
+
return (React.createElement("label", { className: cx$1c('checkbox', "checkbox--".concat(display), className, {
|
|
1657
1678
|
'checkbox--checked': checked,
|
|
1658
1679
|
'checkbox--background': type === 'background'
|
|
1659
1680
|
}), "data-name": "checkbox-container", htmlFor: id },
|
|
@@ -1698,17 +1719,17 @@ var context$2 = /*#__PURE__*/Object.freeze({
|
|
|
1698
1719
|
|
|
1699
1720
|
var styles$2P = {"magneto-ui-collapse-body":"mg_collapse_body_magneto-ui-collapse-body_1sj1m","magneto-ui-collapse-body--visible":"mg_collapse_body_magneto-ui-collapse-body--visible_1sj1m","magneto-ui-collapse-body__container":"mg_collapse_body_magneto-ui-collapse-body_container_1sj1m","magneto-ui-collapse-body__container--visible":"mg_collapse_body_magneto-ui-collapse-body_container--visible_1sj1m","magneto-ui-collapse-body__content":"mg_collapse_body_magneto-ui-collapse-body_content_1sj1m","magneto-ui-collapse-body__content--visible":"mg_collapse_body_magneto-ui-collapse-body_content--visible_1sj1m"};
|
|
1700
1721
|
|
|
1701
|
-
var cx$
|
|
1722
|
+
var cx$1b = classNames.bind(styles$2P);
|
|
1702
1723
|
var Component$2_ = function (_a) {
|
|
1703
1724
|
var className = _a.className, children = _a.children, props = __rest(_a, ["className", "children"]);
|
|
1704
1725
|
var open = useCollapse().open;
|
|
1705
|
-
return (React.createElement("div", __assign({}, props, { className: cx$
|
|
1726
|
+
return (React.createElement("div", __assign({}, props, { className: cx$1b('magneto-ui-collapse-body', {
|
|
1706
1727
|
'magneto-ui-collapse-body--visible': open
|
|
1707
1728
|
}) }),
|
|
1708
|
-
React.createElement("div", { className: cx$
|
|
1729
|
+
React.createElement("div", { className: cx$1b('magneto-ui-collapse-body__container', {
|
|
1709
1730
|
'magneto-ui-collapse-body__container--visible': open
|
|
1710
1731
|
}) },
|
|
1711
|
-
React.createElement("div", { className: cx$
|
|
1732
|
+
React.createElement("div", { className: cx$1b('magneto-ui-collapse-body__content', {
|
|
1712
1733
|
'magneto-ui-collapse-body__content--visible': open
|
|
1713
1734
|
}, className) }, children))));
|
|
1714
1735
|
};
|
|
@@ -1719,10 +1740,10 @@ var CollapseBody = Component$2_;
|
|
|
1719
1740
|
|
|
1720
1741
|
var styles$2O = {"magneto-ui-collapse-header":"mg_collapse_header_magneto-ui-collapse-header_1wc3x"};
|
|
1721
1742
|
|
|
1722
|
-
var cx$
|
|
1743
|
+
var cx$1a = classNames.bind(styles$2O);
|
|
1723
1744
|
var Component$2Z = function (_a) {
|
|
1724
1745
|
var children = _a.children, className = _a.className, props = __rest(_a, ["children", "className"]);
|
|
1725
|
-
return (React.createElement("header", __assign({ className: cx$
|
|
1746
|
+
return (React.createElement("header", __assign({ className: cx$1a('magneto-ui-collapse-header', className) }, props), children));
|
|
1726
1747
|
};
|
|
1727
1748
|
/**
|
|
1728
1749
|
* Atom UI component child of Collapse
|
|
@@ -1731,7 +1752,7 @@ var CollapseHeader = Component$2Z;
|
|
|
1731
1752
|
|
|
1732
1753
|
var styles$2N = {"magneto-ui-collapse-toggler":"mg_collapse_toggler_magneto-ui-collapse-toggler_1ngmx"};
|
|
1733
1754
|
|
|
1734
|
-
var cx$
|
|
1755
|
+
var cx$19 = classNames.bind(styles$2N);
|
|
1735
1756
|
var Component$2Y = function (_a) {
|
|
1736
1757
|
var children = _a.children, className = _a.className, onClick = _a.onClick, props = __rest(_a, ["children", "className", "onClick"]);
|
|
1737
1758
|
var _b = useCollapse(), open = _b.open, onChangeOpen = _b.onChangeOpen;
|
|
@@ -1740,7 +1761,7 @@ var Component$2Y = function (_a) {
|
|
|
1740
1761
|
onClick(evt);
|
|
1741
1762
|
onChangeOpen(!open);
|
|
1742
1763
|
}, [open, onChangeOpen, onClick]);
|
|
1743
|
-
return (React.createElement("button", __assign({}, props, { onClick: handleOnClick, className: cx$
|
|
1764
|
+
return (React.createElement("button", __assign({}, props, { onClick: handleOnClick, className: cx$19('magneto-ui-collapse-toggler', className) }), children));
|
|
1744
1765
|
};
|
|
1745
1766
|
/**
|
|
1746
1767
|
* Atom UI component child of Collapse
|
|
@@ -2047,10 +2068,10 @@ var Image = function (_a) {
|
|
|
2047
2068
|
|
|
2048
2069
|
var style$14 = {"magneto-ui-input-file-button":"mg_input_file_button_magneto-ui-input-file-button_18zx0"};
|
|
2049
2070
|
|
|
2050
|
-
var cx$
|
|
2071
|
+
var cx$18 = classNames.bind(style$14);
|
|
2051
2072
|
var Component$2P = function (_a) {
|
|
2052
2073
|
var children = _a.children, className = _a.className, props = __rest(_a, ["children", "className"]);
|
|
2053
|
-
return (React.createElement("button", __assign({ className: cx$
|
|
2074
|
+
return (React.createElement("button", __assign({ className: cx$18('magneto-ui-input-file-button', className) }, props), children));
|
|
2054
2075
|
};
|
|
2055
2076
|
/**
|
|
2056
2077
|
* Atom UI child component of Input File
|
|
@@ -2059,10 +2080,10 @@ var InputFileButton = Component$2P;
|
|
|
2059
2080
|
|
|
2060
2081
|
var style$13 = {"magneto-ui-input-file-container":"mg_input_file_container_magneto-ui-input-file-container_1b7ef"};
|
|
2061
2082
|
|
|
2062
|
-
var cx$
|
|
2083
|
+
var cx$17 = classNames.bind(style$13);
|
|
2063
2084
|
var Component$2O = function (_a) {
|
|
2064
2085
|
var className = _a.className, children = _a.children, props = __rest(_a, ["className", "children"]);
|
|
2065
|
-
return (React.createElement("div", __assign({ className: cx$
|
|
2086
|
+
return (React.createElement("div", __assign({ className: cx$17('magneto-ui-input-file-container', className) }, props), children));
|
|
2066
2087
|
};
|
|
2067
2088
|
/**
|
|
2068
2089
|
* Atom UI component of Input File
|
|
@@ -2071,7 +2092,7 @@ var InputFileContainer = Component$2O;
|
|
|
2071
2092
|
|
|
2072
2093
|
var style$12 = {"magneto-ui-input-file":"mg_input_file_magneto-ui-input-file_18kpr"};
|
|
2073
2094
|
|
|
2074
|
-
var cx$
|
|
2095
|
+
var cx$16 = classNames.bind(style$12);
|
|
2075
2096
|
var Component$2N = function (_a) {
|
|
2076
2097
|
var children = _a.children, className = _a.className, onChange = _a.onChange, props = __rest(_a, ["children", "className", "onChange"]);
|
|
2077
2098
|
var inputFileRef = useRef(null);
|
|
@@ -2095,9 +2116,9 @@ var Component$2N = function (_a) {
|
|
|
2095
2116
|
var handleDragOver = function (event) {
|
|
2096
2117
|
event.preventDefault();
|
|
2097
2118
|
};
|
|
2098
|
-
return (React.createElement("div", { className: cx$
|
|
2119
|
+
return (React.createElement("div", { className: cx$16(className), onClick: handleFileClick, onDrop: handleFileDrop, onDragOver: handleDragOver },
|
|
2099
2120
|
children,
|
|
2100
|
-
React.createElement("input", __assign({ className: cx$
|
|
2121
|
+
React.createElement("input", __assign({ className: cx$16('magneto-ui-input-file'), onChange: handleFileChange, ref: inputFileRef, type: "file" }, props))));
|
|
2101
2122
|
};
|
|
2102
2123
|
/**
|
|
2103
2124
|
* Atom UI component of Input File
|
|
@@ -2535,13 +2556,13 @@ var Radio = Component$2x;
|
|
|
2535
2556
|
|
|
2536
2557
|
var styles$2s = {"magneto-ui-rating-badge__container":"mg_rating_badge_magneto-ui-rating-badge_container_1b19u","magneto-ui-rating-badge__icon":"mg_rating_badge_magneto-ui-rating-badge_icon_1b19u","magneto-ui-rating-badge__score":"mg_rating_badge_magneto-ui-rating-badge_score_1b19u"};
|
|
2537
2558
|
|
|
2538
|
-
var cx$
|
|
2559
|
+
var cx$15 = classNames.bind(styles$2s);
|
|
2539
2560
|
var Component$2w = function (_a) {
|
|
2540
2561
|
var score = _a.score;
|
|
2541
|
-
return (React.createElement("div", { className: cx$
|
|
2542
|
-
React.createElement("div", { className: cx$
|
|
2543
|
-
React.createElement("img", { src: StarBoldYellow, alt: StarBoldYellow, className: cx$
|
|
2544
|
-
React.createElement("span", { className: cx$
|
|
2562
|
+
return (React.createElement("div", { className: cx$15('magneto-ui-rating-badge') },
|
|
2563
|
+
React.createElement("div", { className: cx$15('magneto-ui-rating-badge__container') },
|
|
2564
|
+
React.createElement("img", { src: StarBoldYellow, alt: StarBoldYellow, className: cx$15('magneto-ui-rating-badge__icon') }),
|
|
2565
|
+
React.createElement("span", { className: cx$15('magneto-ui-rating-badge__score') }, score))));
|
|
2545
2566
|
};
|
|
2546
2567
|
/**
|
|
2547
2568
|
* Atom UI component of Rating Badge
|
|
@@ -2710,7 +2731,7 @@ var ToggleButton = Component$2s;
|
|
|
2710
2731
|
|
|
2711
2732
|
var styles$2m = {"magneto-ui-typography":"mg_typography_magneto-ui-typography_tpbip","magneto-ui-typography--size-xs":"mg_typography_magneto-ui-typography--size-xs_tpbip","magneto-ui-typography--size-sm":"mg_typography_magneto-ui-typography--size-sm_tpbip","magneto-ui-typography--size-md":"mg_typography_magneto-ui-typography--size-md_tpbip","magneto-ui-typography--size-lg":"mg_typography_magneto-ui-typography--size-lg_tpbip","magneto-ui-typography--size-xl":"mg_typography_magneto-ui-typography--size-xl_tpbip","magneto-ui-typography--size-xl-2":"mg_typography_magneto-ui-typography--size-xl-2_tpbip","magneto-ui-typography--size-xl-3":"mg_typography_magneto-ui-typography--size-xl-3_tpbip","magneto-ui-typography--size-xl-4":"mg_typography_magneto-ui-typography--size-xl-4_tpbip","magneto-ui-typography--size-xl-5":"mg_typography_magneto-ui-typography--size-xl-5_tpbip","magneto-ui-typography--size-xl-6":"mg_typography_magneto-ui-typography--size-xl-6_tpbip","magneto-ui-typography--size-xl-7":"mg_typography_magneto-ui-typography--size-xl-7_tpbip","magneto-ui-typography--weight-thin":"mg_typography_magneto-ui-typography--weight-thin_tpbip","magneto-ui-typography--weight-extra-light":"mg_typography_magneto-ui-typography--weight-extra-light_tpbip","magneto-ui-typography--weight-light":"mg_typography_magneto-ui-typography--weight-light_tpbip","magneto-ui-typography--weight-normal":"mg_typography_magneto-ui-typography--weight-normal_tpbip","magneto-ui-typography--weight-medium":"mg_typography_magneto-ui-typography--weight-medium_tpbip","magneto-ui-typography--weight-semi-bold":"mg_typography_magneto-ui-typography--weight-semi-bold_tpbip","magneto-ui-typography--weight-bold":"mg_typography_magneto-ui-typography--weight-bold_tpbip","magneto-ui-typography--weight-extra-bold":"mg_typography_magneto-ui-typography--weight-extra-bold_tpbip","magneto-ui-typography--weight-black":"mg_typography_magneto-ui-typography--weight-black_tpbip","magneto-ui-typography--color-gray":"mg_typography_magneto-ui-typography--color-gray_tpbip","magneto-ui-typography--color-white":"mg_typography_magneto-ui-typography--color-white_tpbip","magneto-ui-typography--color-black":"mg_typography_magneto-ui-typography--color-black_tpbip","magneto-ui-typography--color-green":"mg_typography_magneto-ui-typography--color-green_tpbip","magneto-ui-typography--color-blue":"mg_typography_magneto-ui-typography--color-blue_tpbip","magneto-ui-typography--code":"mg_typography_magneto-ui-typography--code_tpbip","magneto-ui-typography--delete":"mg_typography_magneto-ui-typography--delete_tpbip","magneto-ui-typography--italic":"mg_typography_magneto-ui-typography--italic_tpbip","magneto-ui-typography--keyboard":"mg_typography_magneto-ui-typography--keyboard_tpbip","magneto-ui-typography--mark":"mg_typography_magneto-ui-typography--mark_tpbip","magneto-ui-typography--strong":"mg_typography_magneto-ui-typography--strong_tpbip","magneto-ui-typography--underline":"mg_typography_magneto-ui-typography--underline_tpbip","magneto-ui-typography--ellipsis":"mg_typography_magneto-ui-typography--ellipsis_tpbip","magneto-ui-typography--ellipsis-multiline":"mg_typography_magneto-ui-typography--ellipsis-multiline_tpbip"};
|
|
2712
2733
|
|
|
2713
|
-
var cx$
|
|
2734
|
+
var cx$14 = classNames.bind(styles$2m);
|
|
2714
2735
|
var typographyStyles = function (_a) {
|
|
2715
2736
|
var _b;
|
|
2716
2737
|
var className = _a.className, color = _a.color, ellipsis = _a.ellipsis, size = _a.size, style = _a.style, weight = _a.weight;
|
|
@@ -2721,7 +2742,7 @@ var typographyStyles = function (_a) {
|
|
|
2721
2742
|
_b['magneto-ui-typography--ellipsis'] = ellipsis === true,
|
|
2722
2743
|
_b['magneto-ui-typography--ellipsis-multiline'] = typeof ellipsis === 'object' && typeof ellipsis.rows === 'number',
|
|
2723
2744
|
_b);
|
|
2724
|
-
var finalClassName = cx$
|
|
2745
|
+
var finalClassName = cx$14('magneto-ui-typography', customizedClassName, className);
|
|
2725
2746
|
var finalStyle = __assign(__assign(__assign({}, (typeof size === 'number' && { '--size': "".concat(size, "px") })), (typeof weight === 'number' && { '--weight': weight })), (typeof ellipsis === 'object' && ellipsis.rows && { '--ellipsis-lines': ellipsis.rows }));
|
|
2726
2747
|
return {
|
|
2727
2748
|
className: finalClassName,
|
|
@@ -2739,11 +2760,11 @@ var applyWrappers = function (children, props) {
|
|
|
2739
2760
|
props.underline ? { tag: 'u', className: 'magneto-ui-typography--underline' } : null
|
|
2740
2761
|
].filter(Boolean);
|
|
2741
2762
|
if (wrappers.length === 1) {
|
|
2742
|
-
return createElement(wrappers[0].tag, { className: cx$
|
|
2763
|
+
return createElement(wrappers[0].tag, { className: cx$14(wrappers[0].className) }, children);
|
|
2743
2764
|
}
|
|
2744
2765
|
return wrappers.reduce(function (acc, _a) {
|
|
2745
2766
|
var tag = _a.tag, className = _a.className;
|
|
2746
|
-
return createElement(tag, { className: cx$
|
|
2767
|
+
return createElement(tag, { className: cx$14(className) }, acc);
|
|
2747
2768
|
}, children);
|
|
2748
2769
|
};
|
|
2749
2770
|
var OMITTED_PROPS = [
|
|
@@ -2978,44 +2999,44 @@ var Alert = Component$2l;
|
|
|
2978
2999
|
|
|
2979
3000
|
var styles$2j = {"alert-modal":"mg_alert_job_modal_alert-modal_oyuqf","alert-modal__mobile":"mg_alert_job_modal_alert-modal_mobile_oyuqf","alert-modal__header":"mg_alert_job_modal_alert-modal_header_oyuqf","alert-modal__body":"mg_alert_job_modal_alert-modal_body_oyuqf","alert-modal__footer":"mg_alert_job_modal_alert-modal_footer_oyuqf","alert-modal__icon":"mg_alert_job_modal_alert-modal_icon_oyuqf","alert-modal__title":"mg_alert_job_modal_alert-modal_title_oyuqf","alert-modal__checkbox":"mg_alert_job_modal_alert-modal_checkbox_oyuqf","alert-modal__button":"mg_alert_job_modal_alert-modal_button_oyuqf"};
|
|
2980
3001
|
|
|
2981
|
-
var cx$
|
|
3002
|
+
var cx$13 = classNames.bind(styles$2j);
|
|
2982
3003
|
var AlertJobModalIcon = function (_a) {
|
|
2983
3004
|
var src = _a.src, _b = _a.size, size = _b === void 0 ? 50 : _b, alt = _a.alt, className = _a.className;
|
|
2984
3005
|
var customWidth = size ? { width: size + 'px' } : {};
|
|
2985
|
-
return (React.createElement("img", { style: customWidth, className: cx$
|
|
3006
|
+
return (React.createElement("img", { style: customWidth, className: cx$13('alert-job__icon', className), src: src !== null && src !== void 0 ? src : Urgent, alt: alt !== null && alt !== void 0 ? alt : "icon-item", loading: "lazy" }));
|
|
2986
3007
|
};
|
|
2987
3008
|
|
|
2988
|
-
var cx$
|
|
3009
|
+
var cx$12 = classNames.bind(styles$2j);
|
|
2989
3010
|
var AlertJobModalHeader = function (_a) {
|
|
2990
3011
|
var className = _a.className, children = _a.children;
|
|
2991
|
-
return React.createElement("div", { className: cx$
|
|
3012
|
+
return React.createElement("div", { className: cx$12('alert-modal__header', className) }, children);
|
|
2992
3013
|
};
|
|
2993
3014
|
|
|
2994
|
-
var cx$
|
|
3015
|
+
var cx$11 = classNames.bind(styles$2j);
|
|
2995
3016
|
var AlertJobModalTitle = function (_a) {
|
|
2996
3017
|
var title = _a.title, subtitle = _a.subtitle, className = _a.className, children = _a.children;
|
|
2997
|
-
return (React.createElement("div", { className: cx$
|
|
3018
|
+
return (React.createElement("div", { className: cx$11('alert-modal__title', className) },
|
|
2998
3019
|
React.createElement("p", null, subtitle),
|
|
2999
3020
|
React.createElement("p", null, "\u201C".concat(title, "\u201D")),
|
|
3000
3021
|
children));
|
|
3001
3022
|
};
|
|
3002
3023
|
|
|
3003
|
-
var cx
|
|
3024
|
+
var cx$10 = classNames.bind(styles$2j);
|
|
3004
3025
|
var AlertJobModalBody = function (_a) {
|
|
3005
3026
|
var className = _a.className, children = _a.children;
|
|
3006
|
-
return React.createElement("div", { className: cx
|
|
3027
|
+
return React.createElement("div", { className: cx$10('alert-modal__body', className) }, children);
|
|
3007
3028
|
};
|
|
3008
3029
|
|
|
3009
|
-
var cx
|
|
3030
|
+
var cx$$ = classNames.bind(styles$2j);
|
|
3010
3031
|
var AlertJobModalFooter = function (_a) {
|
|
3011
3032
|
var className = _a.className, children = _a.children;
|
|
3012
|
-
return React.createElement("div", { className: cx
|
|
3033
|
+
return React.createElement("div", { className: cx$$('alert-modal__footer', className) }, children);
|
|
3013
3034
|
};
|
|
3014
3035
|
|
|
3015
|
-
var cx$
|
|
3036
|
+
var cx$_ = classNames.bind(styles$2j);
|
|
3016
3037
|
var AlertJobModalButton = function (_a) {
|
|
3017
3038
|
var className = _a.className, children = _a.children, _b = _a.icon, icon = _b === void 0 ? ArrowRightWhite : _b, _c = _a.sizeIcon, sizeIcon = _c === void 0 ? 14 : _c, buttonProps = __rest(_a, ["className", "children", "icon", "sizeIcon"]);
|
|
3018
|
-
return (React.createElement("button", __assign({ className: cx$
|
|
3039
|
+
return (React.createElement("button", __assign({ className: cx$_('alert-modal__button', className) }, buttonProps),
|
|
3019
3040
|
React.createElement("p", null, children),
|
|
3020
3041
|
React.createElement(IconItem, { alt: "arrow-icon", hover: false, icon: icon, size: sizeIcon })));
|
|
3021
3042
|
};
|
|
@@ -3023,26 +3044,27 @@ var AlertJobModalButton = function (_a) {
|
|
|
3023
3044
|
var DrawerPortal = function (_a) {
|
|
3024
3045
|
var children = _a.children;
|
|
3025
3046
|
var portalNode = useRef(null);
|
|
3047
|
+
var container = useContext(ContainerContext).container;
|
|
3026
3048
|
var _b = useState(false), mounted = _b[0], setMounted = _b[1];
|
|
3027
3049
|
useEffect(function () {
|
|
3028
|
-
if (!
|
|
3050
|
+
if (isServer || !container)
|
|
3029
3051
|
return;
|
|
3030
3052
|
portalNode.current = document.createElement('div');
|
|
3031
3053
|
portalNode.current.classList.add('magneto-ui-drawer');
|
|
3032
|
-
|
|
3054
|
+
container.appendChild(portalNode.current);
|
|
3033
3055
|
setMounted(true);
|
|
3034
3056
|
return function () {
|
|
3035
3057
|
if (portalNode.current) {
|
|
3036
|
-
|
|
3058
|
+
container.removeChild(portalNode.current);
|
|
3037
3059
|
}
|
|
3038
3060
|
};
|
|
3039
|
-
}, []);
|
|
3061
|
+
}, [container]);
|
|
3040
3062
|
return mounted && portalNode.current ? ReactDOM.createPortal(children, portalNode.current) : null;
|
|
3041
3063
|
};
|
|
3042
3064
|
|
|
3043
3065
|
var style$W = {"magneto-ui-mobile-drawer":"mg_mobile_drawer_magneto-ui-mobile-drawer_1e2s0","magneto-ui-close-button":"mg_mobile_drawer_magneto-ui-close-button_1e2s0","magneto-ui-container":"mg_mobile_drawer_magneto-ui-container_1e2s0","background-drawer":"mg_mobile_drawer_background-drawer_1e2s0","fadeIn":"mg_mobile_drawer_fadeIn_1e2s0","show":"mg_mobile_drawer_show_1e2s0","hidden":"mg_mobile_drawer_hidden_1e2s0"};
|
|
3044
3066
|
|
|
3045
|
-
var cx$
|
|
3067
|
+
var cx$Z = classNames.bind(style$W);
|
|
3046
3068
|
var Component$2k = function (_a) {
|
|
3047
3069
|
var onClose = _a.onClose, isOpen = _a.isOpen, children = _a.children, _b = _a.className, className = _b === void 0 ? '' : _b, _c = _a.blockBackgroundClose, blockBackgroundClose = _c === void 0 ? false : _c, _d = _a.backgroundClassName, backgroundClassName = _d === void 0 ? '' : _d;
|
|
3048
3070
|
var _e = useState(false), showContent = _e[0], setShowContent = _e[1];
|
|
@@ -3069,12 +3091,12 @@ var Component$2k = function (_a) {
|
|
|
3069
3091
|
};
|
|
3070
3092
|
}, [isOpen]);
|
|
3071
3093
|
return (React.createElement(React.Fragment, null, renderPortal && (React.createElement(DrawerPortal, null,
|
|
3072
|
-
React.createElement("div", { className: cx$
|
|
3073
|
-
React.createElement("aside", { className: cx$
|
|
3074
|
-
React.createElement("button", { "data-name": "close-drawer", title: "close-modal", className: cx$
|
|
3094
|
+
React.createElement("div", { className: cx$Z('magneto-ui-mobile-drawer') },
|
|
3095
|
+
React.createElement("aside", { className: cx$Z(showMenu, className) },
|
|
3096
|
+
React.createElement("button", { "data-name": "close-drawer", title: "close-modal", className: cx$Z('magneto-ui-close-button'), onClick: onClose },
|
|
3075
3097
|
React.createElement(IconItem, { icon: Add, hover: false })),
|
|
3076
|
-
React.createElement("div", { className: cx$
|
|
3077
|
-
isOpen && (React.createElement("span", { className: cx$
|
|
3098
|
+
React.createElement("div", { className: cx$Z('magneto-ui-container') }, children)),
|
|
3099
|
+
isOpen && (React.createElement("span", { className: cx$Z('background-drawer', backgroundClassName), onClick: blockBackgroundClose ? function () { return null; } : onClose })))))));
|
|
3078
3100
|
};
|
|
3079
3101
|
/**
|
|
3080
3102
|
* Molecule UI component for Mobile Drawer
|
|
@@ -3085,21 +3107,22 @@ var styles$2i = {"magneto-ui-modal":"mg_modal_magneto-ui-modal_1ffsw","magneto-u
|
|
|
3085
3107
|
|
|
3086
3108
|
var ModalPortal = function (_a) {
|
|
3087
3109
|
var children = _a.children;
|
|
3110
|
+
var container = useContext(ContainerContext).container;
|
|
3088
3111
|
var portalNode = useRef(null);
|
|
3089
3112
|
var _b = useState(false), mounted = _b[0], setMounted = _b[1];
|
|
3090
3113
|
useEffect(function () {
|
|
3091
|
-
if (!
|
|
3114
|
+
if (isServer || !container)
|
|
3092
3115
|
return;
|
|
3093
3116
|
portalNode.current = document.createElement('div');
|
|
3094
3117
|
portalNode.current.classList.add('modal-ui-drawer');
|
|
3095
|
-
|
|
3118
|
+
container.appendChild(portalNode.current);
|
|
3096
3119
|
setMounted(true);
|
|
3097
3120
|
return function () {
|
|
3098
3121
|
if (portalNode.current) {
|
|
3099
|
-
|
|
3122
|
+
container.removeChild(portalNode.current);
|
|
3100
3123
|
}
|
|
3101
3124
|
};
|
|
3102
|
-
}, []);
|
|
3125
|
+
}, [container]);
|
|
3103
3126
|
return mounted && portalNode.current ? ReactDOM.createPortal(children, portalNode.current) : null;
|
|
3104
3127
|
};
|
|
3105
3128
|
|
|
@@ -3141,10 +3164,10 @@ var Component$2j = function (_a) {
|
|
|
3141
3164
|
};
|
|
3142
3165
|
var ModalResponsive = Component$2j;
|
|
3143
3166
|
|
|
3144
|
-
var cx$
|
|
3167
|
+
var cx$Y = classNames.bind(styles$2j);
|
|
3145
3168
|
var Component$2i = function (_a) {
|
|
3146
3169
|
var children = _a.children, className = _a.className, mobileClassName = _a.mobileClassName, open = _a.open, onClose = _a.onClose;
|
|
3147
|
-
return (React.createElement(ModalResponsive, { open: open, onClose: onClose, modalClassName: cx$
|
|
3170
|
+
return (React.createElement(ModalResponsive, { open: open, onClose: onClose, modalClassName: cx$Y('alert-modal', className), mobileDrawerClassName: cx$Y('alert-modal__mobile', mobileClassName) }, children));
|
|
3148
3171
|
};
|
|
3149
3172
|
var AlertJobModal = Object.assign(Component$2i, {
|
|
3150
3173
|
Header: AlertJobModalHeader,
|
|
@@ -3159,15 +3182,15 @@ var styles$2h = {"alert-job":"mg_alert_job_status_alert-job_1qnyy","normal":"mg_
|
|
|
3159
3182
|
|
|
3160
3183
|
var styles$2g = {"alert-job__content":"mg_alert_job_status_container_alert-job_content_g6vk0"};
|
|
3161
3184
|
|
|
3162
|
-
var cx$
|
|
3185
|
+
var cx$X = classNames.bind(styles$2g);
|
|
3163
3186
|
var AlertJobStatusContainer = function (_a) {
|
|
3164
3187
|
var className = _a.className, children = _a.children;
|
|
3165
|
-
return React.createElement("div", { className: cx$
|
|
3188
|
+
return React.createElement("div", { className: cx$X('alert-job__content', className) }, children);
|
|
3166
3189
|
};
|
|
3167
3190
|
|
|
3168
3191
|
var styles$2f = {"alert-job__icon":"mg_alert_job_status_icon_alert-job_icon_1d1sg"};
|
|
3169
3192
|
|
|
3170
|
-
var cx$
|
|
3193
|
+
var cx$W = classNames.bind(styles$2f);
|
|
3171
3194
|
var alertIcons = {
|
|
3172
3195
|
success: Checked2,
|
|
3173
3196
|
warning: Warning3D
|
|
@@ -3176,23 +3199,23 @@ var AlertJobStatusIcon = function (_a) {
|
|
|
3176
3199
|
var src = _a.src, _b = _a.size, size = _b === void 0 ? 34 : _b, alt = _a.alt, className = _a.className, _c = _a.type, type = _c === void 0 ? 'warning' : _c;
|
|
3177
3200
|
var customWidth = size ? { width: size + 'px' } : {};
|
|
3178
3201
|
var iconByType = useMemo(function () { return alertIcons[type]; }, [type]);
|
|
3179
|
-
return (React.createElement("img", { style: customWidth, className: cx$
|
|
3202
|
+
return (React.createElement("img", { style: customWidth, className: cx$W('alert-job__icon', className), src: src !== null && src !== void 0 ? src : iconByType, alt: alt !== null && alt !== void 0 ? alt : "icon-item", loading: "lazy" }));
|
|
3180
3203
|
};
|
|
3181
3204
|
|
|
3182
3205
|
var styles$2e = {"alert-modal__button":"mg_alert_job_status_button_alert-modal_button_d8bsk"};
|
|
3183
3206
|
|
|
3184
|
-
var cx$
|
|
3207
|
+
var cx$V = classNames.bind(styles$2e);
|
|
3185
3208
|
var AlertJobStatusButton = function (_a) {
|
|
3186
3209
|
var className = _a.className, children = _a.children, _b = _a.icon, icon = _b === void 0 ? ArrowRightWhite : _b, _c = _a.sizeIcon, sizeIcon = _c === void 0 ? 14 : _c, buttonProps = __rest(_a, ["className", "children", "icon", "sizeIcon"]);
|
|
3187
|
-
return (React.createElement("button", __assign({ className: cx$
|
|
3210
|
+
return (React.createElement("button", __assign({ className: cx$V('alert-modal__button', className) }, buttonProps),
|
|
3188
3211
|
React.createElement("p", null, children),
|
|
3189
3212
|
React.createElement(IconItem, { alt: "arrow-icon", hover: false, icon: icon, size: sizeIcon })));
|
|
3190
3213
|
};
|
|
3191
3214
|
|
|
3192
|
-
var cx$
|
|
3215
|
+
var cx$U = classNames.bind(styles$2h);
|
|
3193
3216
|
var Component$2h = function (_a) {
|
|
3194
3217
|
var children = _a.children, className = _a.className, type = _a.type;
|
|
3195
|
-
return React.createElement("div", { className: cx$
|
|
3218
|
+
return React.createElement("div", { className: cx$U('alert-job', className, type) }, children);
|
|
3196
3219
|
};
|
|
3197
3220
|
var AlertJobStatus = Object.assign(Component$2h, {
|
|
3198
3221
|
Container: AlertJobStatusContainer,
|
|
@@ -3281,6 +3304,7 @@ var BrandsMenuMobile = function (_a) {
|
|
|
3281
3304
|
|
|
3282
3305
|
var withClickOut = function (WrappedComponent) {
|
|
3283
3306
|
var Component = function (props) {
|
|
3307
|
+
var container = useContext(ContainerContext).container;
|
|
3284
3308
|
var _a = useState(false), clickOut = _a[0], setClickOut = _a[1];
|
|
3285
3309
|
var ref = useRef(null);
|
|
3286
3310
|
var handleClick = useCallback(function (e) {
|
|
@@ -3291,11 +3315,11 @@ var withClickOut = function (WrappedComponent) {
|
|
|
3291
3315
|
}
|
|
3292
3316
|
}, [clickOut]);
|
|
3293
3317
|
useEffect(function () {
|
|
3294
|
-
|
|
3318
|
+
container === null || container === void 0 ? void 0 : container.addEventListener('click', handleClick);
|
|
3295
3319
|
return function () {
|
|
3296
|
-
|
|
3320
|
+
container === null || container === void 0 ? void 0 : container.removeEventListener('click', handleClick);
|
|
3297
3321
|
};
|
|
3298
|
-
}, [handleClick]);
|
|
3322
|
+
}, [handleClick, container]);
|
|
3299
3323
|
return (React.createElement("div", { ref: ref },
|
|
3300
3324
|
React.createElement(WrappedComponent, __assign({ clickOut: clickOut, setClickOut: setClickOut }, props))));
|
|
3301
3325
|
};
|
|
@@ -3472,13 +3496,13 @@ var styles$26 = {"magneto-ui-candidate-profile":"mg_candidate_profile_magneto-ui
|
|
|
3472
3496
|
|
|
3473
3497
|
var styles$25 = {"magneto-ui-candidate-profile-avatar":"mg_candidate_profile_avatar_magneto-ui-candidate-profile-avatar_1849j","magneto-ui-candidate-profile-avatar__picture":"mg_candidate_profile_avatar_magneto-ui-candidate-profile-avatar_picture_1849j","magneto-ui-candidate-profile-avatar__score":"mg_candidate_profile_avatar_magneto-ui-candidate-profile-avatar_score_1849j"};
|
|
3474
3498
|
|
|
3475
|
-
var cx$
|
|
3499
|
+
var cx$T = classNames.bind(styles$25);
|
|
3476
3500
|
var Component$29 = function (_a) {
|
|
3477
3501
|
var avatar = _a.avatar, score = _a.score, props = __rest(_a, ["avatar", "score"]);
|
|
3478
|
-
return (React.createElement("div", __assign({ className: cx$
|
|
3479
|
-
React.createElement("picture", { className: cx$
|
|
3502
|
+
return (React.createElement("div", __assign({ className: cx$T('magneto-ui-candidate-profile-avatar') }, props),
|
|
3503
|
+
React.createElement("picture", { className: cx$T('magneto-ui-candidate-profile-avatar__picture') },
|
|
3480
3504
|
React.createElement(Avatar, __assign({}, avatar))),
|
|
3481
|
-
score && (React.createElement("div", { className: cx$
|
|
3505
|
+
score && (React.createElement("div", { className: cx$T('magneto-ui-candidate-profile-avatar__score') },
|
|
3482
3506
|
React.createElement(RatingBadge, { score: score })))));
|
|
3483
3507
|
};
|
|
3484
3508
|
/**
|
|
@@ -3488,11 +3512,11 @@ var CandidateProfileAvatar = Component$29;
|
|
|
3488
3512
|
|
|
3489
3513
|
var styles$24 = {"magneto-ui-candidate-profile-body":"mg_candidate_profile_body_magneto-ui-candidate-profile-body_z5hdu","magneto-ui-candidate-profile-body--open":"mg_candidate_profile_body_magneto-ui-candidate-profile-body--open_z5hdu"};
|
|
3490
3514
|
|
|
3491
|
-
var cx$
|
|
3515
|
+
var cx$S = classNames.bind(styles$24);
|
|
3492
3516
|
var Component$28 = function (_a) {
|
|
3493
3517
|
var children = _a.children, props = __rest(_a, ["children"]);
|
|
3494
3518
|
var open = Collapse.useCollapse().open;
|
|
3495
|
-
return (React.createElement(Collapse.Body, __assign({ className: cx$
|
|
3519
|
+
return (React.createElement(Collapse.Body, __assign({ className: cx$S('magneto-ui-candidate-profile-body', {
|
|
3496
3520
|
'magneto-ui-candidate-profile-body--open': open
|
|
3497
3521
|
}) }, props), children));
|
|
3498
3522
|
};
|
|
@@ -3503,11 +3527,11 @@ var CandidateProfileBody = Component$28;
|
|
|
3503
3527
|
|
|
3504
3528
|
var styles$23 = {"magneto-ui-candidate-profile-header":"mg_candidate_profile_header_magneto-ui-candidate-profile-header_1x5m8","magneto-ui-candidate-profile-header--open":"mg_candidate_profile_header_magneto-ui-candidate-profile-header--open_1x5m8"};
|
|
3505
3529
|
|
|
3506
|
-
var cx$
|
|
3530
|
+
var cx$R = classNames.bind(styles$23);
|
|
3507
3531
|
var Component$27 = function (_a) {
|
|
3508
3532
|
var children = _a.children, className = _a.className, props = __rest(_a, ["children", "className"]);
|
|
3509
3533
|
var open = Collapse.useCollapse().open;
|
|
3510
|
-
return (React.createElement(Collapse.Header, __assign({ className: cx$
|
|
3534
|
+
return (React.createElement(Collapse.Header, __assign({ className: cx$R('magneto-ui-candidate-profile-header', className, {
|
|
3511
3535
|
'magneto-ui-candidate-profile-header--open': open
|
|
3512
3536
|
}) }, props), children));
|
|
3513
3537
|
};
|
|
@@ -3518,7 +3542,7 @@ var CandidateProfileHeader = Component$27;
|
|
|
3518
3542
|
|
|
3519
3543
|
var styles$22 = {"magneto-ui-candidate-profile-toggler":"mg_candidate_profile_toggler_magneto-ui-candidate-profile-toggler_r3x9t","magneto-ui-candidate-profile-toggler--open":"mg_candidate_profile_toggler_magneto-ui-candidate-profile-toggler--open_r3x9t"};
|
|
3520
3544
|
|
|
3521
|
-
var cx$
|
|
3545
|
+
var cx$Q = classNames.bind(styles$22);
|
|
3522
3546
|
var Component$26 = function (_a) {
|
|
3523
3547
|
var className = _a.className, onClick = _a.onClick, props = __rest(_a, ["className", "onClick"]);
|
|
3524
3548
|
var _b = Collapse.useCollapse(), open = _b.open, onChangeOpen = _b.onChangeOpen;
|
|
@@ -3526,7 +3550,7 @@ var Component$26 = function (_a) {
|
|
|
3526
3550
|
onClick === null || onClick === void 0 ? void 0 : onClick(evt);
|
|
3527
3551
|
onChangeOpen(!open);
|
|
3528
3552
|
}, [open, onChangeOpen, onClick]);
|
|
3529
|
-
return (React.createElement(Collapse.Toggler, __assign({}, props, { className: cx$
|
|
3553
|
+
return (React.createElement(Collapse.Toggler, __assign({}, props, { className: cx$Q('magneto-ui-candidate-profile-toggler', className, {
|
|
3530
3554
|
'magneto-ui-candidate-profile-toggler--open': open
|
|
3531
3555
|
}), onClick: handleOnClick }),
|
|
3532
3556
|
React.createElement(IconItem, { icon: ArrowDownGreen, hover: false })));
|
|
@@ -3544,11 +3568,11 @@ var children = /*#__PURE__*/Object.freeze({
|
|
|
3544
3568
|
Toggler: CandidateProfileToggler
|
|
3545
3569
|
});
|
|
3546
3570
|
|
|
3547
|
-
var cx$
|
|
3571
|
+
var cx$P = classNames.bind(styles$26);
|
|
3548
3572
|
var Component$25 = function (_a) {
|
|
3549
3573
|
var children = _a.children, className = _a.className, _b = _a.defaultOpen, defaultOpen = _b === void 0 ? true : _b, onChangeOpen = _a.onChangeOpen, open = _a.open, props = __rest(_a, ["children", "className", "defaultOpen", "onChangeOpen", "open"]);
|
|
3550
3574
|
return (React.createElement(Collapse.Provider, { defaultOpen: defaultOpen, open: open, onChangeOpen: onChangeOpen },
|
|
3551
|
-
React.createElement("article", __assign({ className: cx$
|
|
3575
|
+
React.createElement("article", __assign({ className: cx$P('magneto-ui-candidate-profile', className) }, props), children)));
|
|
3552
3576
|
};
|
|
3553
3577
|
/**
|
|
3554
3578
|
* Molecule UI component of candidate profile
|
|
@@ -4288,7 +4312,7 @@ var HeaderTabs = Component$1P;
|
|
|
4288
4312
|
|
|
4289
4313
|
var styles$1K = {"magneto-ui-horizontal-menu":"mg_horizontal_menu_magneto-ui-horizontal-menu_1m6q0","magneto-ui-horizontal-menu__back":"mg_horizontal_menu_magneto-ui-horizontal-menu_back_1m6q0","magneto-ui-horizontal-menu__nav":"mg_horizontal_menu_magneto-ui-horizontal-menu_nav_1m6q0","magneto-ui-horizontal-menu__list":"mg_horizontal_menu_magneto-ui-horizontal-menu_list_1m6q0","magneto-ui-horizontal-menu__button":"mg_horizontal_menu_magneto-ui-horizontal-menu_button_1m6q0","magneto-ui-horizontal-menu__button--active":"mg_horizontal_menu_magneto-ui-horizontal-menu_button--active_1m6q0"};
|
|
4290
4314
|
|
|
4291
|
-
var cx$
|
|
4315
|
+
var cx$O = classNames.bind(styles$1K);
|
|
4292
4316
|
var Component$1O = function (_a) {
|
|
4293
4317
|
var className = _a.className, options = _a.options, onChange = _a.onChange, onClick = _a.onClick;
|
|
4294
4318
|
var _b = useState(0), selectedItem = _b[0], setSelectedItem = _b[1];
|
|
@@ -4299,13 +4323,13 @@ var Component$1O = function (_a) {
|
|
|
4299
4323
|
}, [selectedItem, onChange]);
|
|
4300
4324
|
if (!options || !Array.isArray(options))
|
|
4301
4325
|
return null;
|
|
4302
|
-
return (React.createElement("header", { className: cx$
|
|
4303
|
-
React.createElement("button", { className: cx$
|
|
4326
|
+
return (React.createElement("header", { className: cx$O('magneto-ui-horizontal-menu', className) },
|
|
4327
|
+
React.createElement("button", { className: cx$O('magneto-ui-horizontal-menu__back'), onClick: function () { return onClick === null || onClick === void 0 ? void 0 : onClick(); } },
|
|
4304
4328
|
React.createElement(IconItem, { icon: ArrowLeft2, size: 20 })),
|
|
4305
|
-
React.createElement("nav", { className: cx$
|
|
4306
|
-
React.createElement("ul", { className: cx$
|
|
4329
|
+
React.createElement("nav", { className: cx$O('magneto-ui-horizontal-menu__nav') },
|
|
4330
|
+
React.createElement("ul", { className: cx$O('magneto-ui-horizontal-menu__list') }, options.map(function (_a, key) {
|
|
4307
4331
|
var icon = _a.icon, title = _a.title;
|
|
4308
|
-
return (React.createElement("li", { key: key, className: cx$
|
|
4332
|
+
return (React.createElement("li", { key: key, className: cx$O('magneto-ui-horizontal-menu__button', {
|
|
4309
4333
|
'magneto-ui-horizontal-menu__button--active': selectedItem === key
|
|
4310
4334
|
}) },
|
|
4311
4335
|
React.createElement(Button, { suffixIcon: icon, buttonText: title, onClick: function () { return setSelectedItem(key); } })));
|
|
@@ -4516,7 +4540,7 @@ var JobApplyCard = Component$1L;
|
|
|
4516
4540
|
|
|
4517
4541
|
var styles$1E = {"option":"mg_vacant_option_mobile_option_10cgk","option--link":"mg_vacant_option_mobile_option--link_10cgk","option--button":"mg_vacant_option_mobile_option--button_10cgk","icon--big":"mg_vacant_option_mobile_icon--big_10cgk"};
|
|
4518
4542
|
|
|
4519
|
-
var cx$
|
|
4543
|
+
var cx$N = classNames.bind(styles$1E);
|
|
4520
4544
|
var VacantOptionMobile = function (_a) {
|
|
4521
4545
|
var option = _a.option, onClick = _a.onClick, onMenu = _a.onMenu;
|
|
4522
4546
|
var handleClick = function () {
|
|
@@ -4533,13 +4557,13 @@ var VacantOptionMobile = function (_a) {
|
|
|
4533
4557
|
? ShareIcons[option.icon].icon
|
|
4534
4558
|
: option.icon;
|
|
4535
4559
|
if (option.type === 'link') {
|
|
4536
|
-
return (React.createElement("a", { href: option.href, target: "_blank", rel: "noopener noreferrer", className: cx$
|
|
4560
|
+
return (React.createElement("a", { href: option.href, target: "_blank", rel: "noopener noreferrer", className: cx$N('option', 'option--link', option.className) },
|
|
4537
4561
|
option.icon ? React.createElement(IconItem, { size: 18, icon: icon }) : null,
|
|
4538
4562
|
" ",
|
|
4539
4563
|
option.label));
|
|
4540
4564
|
}
|
|
4541
4565
|
if (option.type === 'button' || option.type === 'menu') {
|
|
4542
|
-
return (React.createElement("button", { className: cx$
|
|
4566
|
+
return (React.createElement("button", { className: cx$N('option', 'option--button', option.className), onClick: handleClick, type: "button" },
|
|
4543
4567
|
option.icon ? React.createElement(IconItem, { size: 18, icon: icon }) : null,
|
|
4544
4568
|
" ",
|
|
4545
4569
|
option.label));
|
|
@@ -4549,7 +4573,7 @@ var VacantOptionMobile = function (_a) {
|
|
|
4549
4573
|
|
|
4550
4574
|
var styles$1D = {"button":"mg_job_card_option_drawer_button_1b6xo","button-back":"mg_job_card_option_drawer_button-back_1b6xo","drawer":"mg_job_card_option_drawer_drawer_1b6xo","drawer__title":"mg_job_card_option_drawer_drawer_title_1b6xo","drawer__company":"mg_job_card_option_drawer_drawer_company_1b6xo","drawer__header":"mg_job_card_option_drawer_drawer_header_1b6xo"};
|
|
4551
4575
|
|
|
4552
|
-
var cx$
|
|
4576
|
+
var cx$M = classNames.bind(styles$1D);
|
|
4553
4577
|
var JobCardOptionDrawer = function (_a) {
|
|
4554
4578
|
var title = _a.title, company = _a.company, menu = _a.menu, backText = _a.backText;
|
|
4555
4579
|
var _b = useState(false), isOpen = _b[0], setOpen = _b[1];
|
|
@@ -4574,17 +4598,17 @@ var JobCardOptionDrawer = function (_a) {
|
|
|
4574
4598
|
};
|
|
4575
4599
|
}, [handleMenu, menu]);
|
|
4576
4600
|
return (React.createElement(React.Fragment, null,
|
|
4577
|
-
React.createElement("button", { onClick: toggle, className: cx$
|
|
4601
|
+
React.createElement("button", { onClick: toggle, className: cx$M('button'), type: "button" },
|
|
4578
4602
|
React.createElement(IconItem, { icon: More, size: 18 })),
|
|
4579
|
-
React.createElement(MobileDrawer, { className: cx$
|
|
4580
|
-
React.createElement("header", { className: cx$
|
|
4603
|
+
React.createElement(MobileDrawer, { className: cx$M('drawer'), isOpen: isOpen, onClose: toggle },
|
|
4604
|
+
React.createElement("header", { className: cx$M('drawer__header') },
|
|
4581
4605
|
showBack ? (React.createElement("section", null,
|
|
4582
|
-
React.createElement("button", { type: "button", className: cx$
|
|
4606
|
+
React.createElement("button", { type: "button", className: cx$M('button-back'), onClick: function () { return handleMenu(menu, false); } },
|
|
4583
4607
|
React.createElement(IconItem, { icon: ArrowLeft2, size: 20 }),
|
|
4584
4608
|
" ",
|
|
4585
4609
|
backText))) : null,
|
|
4586
|
-
React.createElement("h4", { className: cx$
|
|
4587
|
-
React.createElement("h5", { className: cx$
|
|
4610
|
+
React.createElement("h4", { className: cx$M('drawer__title') }, title),
|
|
4611
|
+
React.createElement("h5", { className: cx$M('drawer__company') }, company)),
|
|
4588
4612
|
React.createElement("div", null, options.map(function (option, index) { return (React.createElement(VacantOptionMobile, { key: index + option.label, option: option, onMenu: handleMenu, onClick: function () {
|
|
4589
4613
|
toggle();
|
|
4590
4614
|
handleMenu(menu, false);
|
|
@@ -4593,7 +4617,7 @@ var JobCardOptionDrawer = function (_a) {
|
|
|
4593
4617
|
|
|
4594
4618
|
var styles$1C = {"option":"mg_vacant_option_option_14jrn","option--link":"mg_vacant_option_option--link_14jrn","option--menu":"mg_vacant_option_option--menu_14jrn","option--menu-open":"mg_vacant_option_option--menu-open_14jrn","option__menu-list":"mg_vacant_option_option_menu-list_14jrn","option--button":"mg_vacant_option_option--button_14jrn","icon--big":"mg_vacant_option_icon--big_14jrn"};
|
|
4595
4619
|
|
|
4596
|
-
var cx$
|
|
4620
|
+
var cx$L = classNames.bind(styles$1C);
|
|
4597
4621
|
var VacantOption = function (_a) {
|
|
4598
4622
|
var option = _a.option, onClick = _a.onClick;
|
|
4599
4623
|
var _b = useState(false), open = _b[0], setOpen = _b[1];
|
|
@@ -4608,16 +4632,16 @@ var VacantOption = function (_a) {
|
|
|
4608
4632
|
? ShareIcons[option.icon].icon
|
|
4609
4633
|
: option.icon;
|
|
4610
4634
|
if (option.type === 'menu') {
|
|
4611
|
-
return (React.createElement(MenuDropdown, { title: option.label, opened: open, onClick: setOpen, prefixIcon: { icon: icon, size: 18 }, suffixIcon: { icon: ArrowDown2 }, className: cx$
|
|
4635
|
+
return (React.createElement(MenuDropdown, { title: option.label, opened: open, onClick: setOpen, prefixIcon: { icon: icon, size: 18 }, suffixIcon: { icon: ArrowDown2 }, className: cx$L('option', 'option--menu', { 'option--menu-open': open }, option.className), listClassName: cx$L('option__menu-list') }, option.children.map(function (child) { return (React.createElement(VacantOption, { onClick: handleClick, key: child.label, option: child })); })));
|
|
4612
4636
|
}
|
|
4613
4637
|
if (option.type === 'link') {
|
|
4614
|
-
return (React.createElement("a", { href: option.href, target: "_blank", rel: "noopener noreferrer", className: cx$
|
|
4638
|
+
return (React.createElement("a", { href: option.href, target: "_blank", rel: "noopener noreferrer", className: cx$L('option', 'option--link', option.className) },
|
|
4615
4639
|
option.icon ? React.createElement(IconItem, { size: 18, icon: icon }) : null,
|
|
4616
4640
|
" ",
|
|
4617
4641
|
option.label));
|
|
4618
4642
|
}
|
|
4619
4643
|
if (option.type === 'button') {
|
|
4620
|
-
return (React.createElement("button", { className: cx$
|
|
4644
|
+
return (React.createElement("button", { className: cx$L('option', 'option--button', option.className), onClick: handleClick, type: "button" },
|
|
4621
4645
|
option.icon ? React.createElement(IconItem, { size: 18, icon: icon }) : null,
|
|
4622
4646
|
" ",
|
|
4623
4647
|
option.label));
|
|
@@ -4627,7 +4651,7 @@ var VacantOption = function (_a) {
|
|
|
4627
4651
|
|
|
4628
4652
|
var styles$1B = {"popover--open":"mg_job_card_option_popover--open_12kph","popover":"mg_job_card_option_popover_12kph","button":"mg_job_card_option_button_12kph"};
|
|
4629
4653
|
|
|
4630
|
-
var cx$
|
|
4654
|
+
var cx$K = classNames.bind(styles$1B);
|
|
4631
4655
|
var JobCardOption = function (_a) {
|
|
4632
4656
|
var _b = _a.clickOut, clickOut = _b === void 0 ? false : _b, _c = _a.setClickOut, setClickOut = _c === void 0 ? stubUndefined : _c, menu = _a.menu;
|
|
4633
4657
|
var ref = useRef(null);
|
|
@@ -4643,8 +4667,8 @@ var JobCardOption = function (_a) {
|
|
|
4643
4667
|
(_a = window === null || window === void 0 ? void 0 : window.removeEventListener) === null || _a === void 0 ? void 0 : _a.call(window, 'blur', onBlurWindow);
|
|
4644
4668
|
};
|
|
4645
4669
|
}, [setClickOut]);
|
|
4646
|
-
return (React.createElement(Popover, { className: cx$
|
|
4647
|
-
React.createElement("button", { type: "button", className: cx$
|
|
4670
|
+
return (React.createElement(Popover, { className: cx$K('popover', { 'popover--open': clickOut }), content: React.createElement("div", { onBlur: toggle, ref: ref }, menu.map(function (option) { return (React.createElement(VacantOption, { key: option.label, onClick: toggle, option: option })); })), show: clickOut, widthBase: 35, positionX: "left", positionY: "bottom" },
|
|
4671
|
+
React.createElement("button", { type: "button", className: cx$K('button'), onClick: function () {
|
|
4648
4672
|
setClickOut(function (prev) {
|
|
4649
4673
|
var _a;
|
|
4650
4674
|
if (!prev) {
|
|
@@ -4674,7 +4698,7 @@ var useWithElement = function (ref) {
|
|
|
4674
4698
|
return width;
|
|
4675
4699
|
};
|
|
4676
4700
|
|
|
4677
|
-
var cx$
|
|
4701
|
+
var cx$J = classNames.bind(style$M);
|
|
4678
4702
|
var getJobSubtitle = function (companyName) {
|
|
4679
4703
|
var args = [];
|
|
4680
4704
|
for (var _i = 1; _i < arguments.length; _i++) {
|
|
@@ -4695,28 +4719,28 @@ var JobCardDesktop = function (_a) {
|
|
|
4695
4719
|
}
|
|
4696
4720
|
return cities === null || cities === void 0 ? void 0 : cities.join(', ');
|
|
4697
4721
|
}, [cities]);
|
|
4698
|
-
return (React.createElement("div", { className: cx$
|
|
4699
|
-
React.createElement("article", { onClick: showDetail, className: cx$
|
|
4700
|
-
!isCompanyPage && (React.createElement("div", { className: cx$
|
|
4722
|
+
return (React.createElement("div", { className: cx$J("".concat(classMUI, "-card-jobs__container"), jobOpen && "".concat(classMUI, "-card-jobs--job-open")) },
|
|
4723
|
+
React.createElement("article", { onClick: showDetail, className: cx$J("".concat(classMUI, "-card-jobs"), urgent && "".concat(classMUI, "-card-jobs--urgent")) },
|
|
4724
|
+
!isCompanyPage && (React.createElement("div", { className: cx$J("".concat(classMUI, "-card-jobs__brand")) },
|
|
4701
4725
|
React.createElement("div", null,
|
|
4702
|
-
React.createElement("img", { className: cx$
|
|
4703
|
-
React.createElement("div", { className: cx$
|
|
4704
|
-
React.createElement("section", { className: cx$
|
|
4705
|
-
React.createElement("span", { className: cx$
|
|
4706
|
-
React.createElement("section", { ref: optionsRef, className: cx$
|
|
4707
|
-
React.createElement("h2", { className: cx$
|
|
4708
|
-
React.createElement("a", { href: "".concat(dynamicUrl, "/").concat(jobSlug), title: title, target: "_blank", rel: "noreferrer", onClick: function (e) { return e.preventDefault(); }, className: cx$
|
|
4709
|
-
React.createElement("h3", { className: cx$
|
|
4710
|
-
React.createElement("p", { className: cx$
|
|
4711
|
-
React.createElement("p", { className: cx$
|
|
4712
|
-
React.createElement("div", { style: { width: width || 300 }, className: cx$
|
|
4713
|
-
React.createElement("div", { className: cx$
|
|
4714
|
-
React.createElement(IconItem, { className: cx$
|
|
4726
|
+
React.createElement("img", { className: cx$J("".concat(classMUI, "-card-jobs__brand-img")), alt: companySlug ? companySlug : 'company-slug', src: companyLogo ? companyLogo : NoLogo, loading: "lazy", width: '67px', height: '67px' })))),
|
|
4727
|
+
React.createElement("div", { className: cx$J("".concat(classMUI, "-card-jobs__data")) },
|
|
4728
|
+
React.createElement("section", { className: cx$J("".concat(classMUI, "-card-jobs__header")) },
|
|
4729
|
+
React.createElement("span", { className: cx$J("".concat(classMUI, "-card-jobs__text"), "".concat(classMUI, "-card-jobs__published")) }, formatPublishDate),
|
|
4730
|
+
React.createElement("section", { ref: optionsRef, className: cx$J("".concat(classMUI, "-card-jobs__options"), 'opciones') })),
|
|
4731
|
+
React.createElement("h2", { className: cx$J("".concat(classMUI, "-card-jobs__text"), "".concat(classMUI, "-card-jobs__text--big"), "".concat(classMUI, "-card-jobs__text--bold")) },
|
|
4732
|
+
React.createElement("a", { href: "".concat(dynamicUrl, "/").concat(jobSlug), title: title, target: "_blank", rel: "noreferrer", onClick: function (e) { return e.preventDefault(); }, className: cx$J("".concat(classMUI, "-card-jobs__a")) }, title)),
|
|
4733
|
+
React.createElement("h3", { className: cx$J("".concat(classMUI, "-card-jobs__text")) }, getJobSubtitle(companyName, contractType)),
|
|
4734
|
+
React.createElement("p", { className: cx$J("".concat(classMUI, "-card-jobs__text")) }, salary),
|
|
4735
|
+
React.createElement("p", { className: cx$J("".concat(classMUI, "-card-jobs__text")) }, citiesformatted))),
|
|
4736
|
+
React.createElement("div", { style: { width: width || 300 }, className: cx$J("".concat(classMUI, "-card-jobs__render-right")) },
|
|
4737
|
+
React.createElement("div", { className: cx$J("".concat(classMUI, "-card-jobs__white-space")), onClick: function () { return showDetail === null || showDetail === void 0 ? void 0 : showDetail(); } }, urgent ? (React.createElement("span", { className: cx$J("".concat(classMUI, "-card-jobs__urgent"), "".concat(classMUI, "-card-jobs__text--small")) },
|
|
4738
|
+
React.createElement(IconItem, { className: cx$J("".concat(classMUI, "-card-jobs__urgent-icon")), icon: Urgent, size: 14 }),
|
|
4715
4739
|
" ",
|
|
4716
4740
|
urgent)) : null),
|
|
4717
4741
|
renderRight ? renderRight() : null,
|
|
4718
|
-
React.createElement("button", { className: cx$
|
|
4719
|
-
React.createElement(IconItem, { icon: ArrowLeft2, size: 16, className: cx$
|
|
4742
|
+
React.createElement("button", { className: cx$J("".concat(classMUI, "-card-jobs__button")), onClick: function () { return showDetail === null || showDetail === void 0 ? void 0 : showDetail(); } },
|
|
4743
|
+
React.createElement(IconItem, { icon: ArrowLeft2, size: 16, className: cx$J("".concat(classMUI, "-card-jobs__arrow")) })))));
|
|
4720
4744
|
};
|
|
4721
4745
|
|
|
4722
4746
|
var JobCard = function (_a) {
|
|
@@ -5205,6 +5229,7 @@ var Component$1B = function (_a) {
|
|
|
5205
5229
|
var _g = useState(false), isAnimating = _g[0], setIsAnimating = _g[1];
|
|
5206
5230
|
var removeTimeoutRef = useRef(null);
|
|
5207
5231
|
var hideTimeoutRef = useRef(null);
|
|
5232
|
+
var container = useContext(ContainerContext).container;
|
|
5208
5233
|
var containerVar = useMemo(function () { return ({
|
|
5209
5234
|
'--transition-duration': "".concat(transitionDuration / 1000, "s")
|
|
5210
5235
|
}); }, []);
|
|
@@ -5249,13 +5274,13 @@ var Component$1B = function (_a) {
|
|
|
5249
5274
|
setLocalVisible(visible);
|
|
5250
5275
|
setIsAnimating(visible);
|
|
5251
5276
|
}, [isAnimating, visible]);
|
|
5252
|
-
return localVisible
|
|
5277
|
+
return localVisible && container
|
|
5253
5278
|
? ReactDOM.createPortal(React.createElement("div", { style: containerVar, className: CNM.get({ styles: styles$1r, cls: [className] }) },
|
|
5254
5279
|
React.createElement("div", { className: containerStyles },
|
|
5255
5280
|
React.createElement(IconItem, __assign({ alt: type, className: CNM.get({ styles: styles$1r, cls: ['message__icon'] }), icon: iconByType[type], showDefaultFallback: false, size: 20 }, iconProps)),
|
|
5256
5281
|
React.createElement("div", null,
|
|
5257
5282
|
text && React.createElement("span", { className: textStyles(!!description) }, text),
|
|
5258
|
-
description && React.createElement("span", { className: textStyles() }, description)))),
|
|
5283
|
+
description && React.createElement("span", { className: textStyles() }, description)))), container)
|
|
5259
5284
|
: null;
|
|
5260
5285
|
};
|
|
5261
5286
|
/**
|
|
@@ -5467,7 +5492,7 @@ var QUALIFICATION = [
|
|
|
5467
5492
|
|
|
5468
5493
|
var styles$1l = {"magneto-ui-qualification":"mg_qualification_magneto-ui-qualification_a2ncq","magneto-ui-qualification__star":"mg_qualification_magneto-ui-qualification_star_a2ncq"};
|
|
5469
5494
|
|
|
5470
|
-
var cx$
|
|
5495
|
+
var cx$I = classNames.bind(styles$1l);
|
|
5471
5496
|
var Component$1y = function (_a) {
|
|
5472
5497
|
var _b = _a.rating, rating = _b === void 0 ? -1 : _b, onClick = _a.onClick;
|
|
5473
5498
|
var _c = useState(-1), qualification = _c[0], setQualification = _c[1];
|
|
@@ -5481,9 +5506,9 @@ var Component$1y = function (_a) {
|
|
|
5481
5506
|
setQualification(Math.round(rating) - 1);
|
|
5482
5507
|
}
|
|
5483
5508
|
}, [rating]);
|
|
5484
|
-
return (React.createElement("ul", { className: cx$
|
|
5509
|
+
return (React.createElement("ul", { className: cx$I('magneto-ui-qualification') }, QUALIFICATION.map(function (_a, index) {
|
|
5485
5510
|
var alt = _a.alt, icon = _a.icon, iconHover = _a.iconHover, iconSelect = _a.iconSelect;
|
|
5486
|
-
return (React.createElement("li", { className: cx$
|
|
5511
|
+
return (React.createElement("li", { className: cx$I('magneto-ui-qualification__star'), onMouseEnter: function () { return setHover(index); }, onMouseLeave: function () { return setHover(-1); }, onClick: function () { return onClickQualification(index); }, key: "qualification-star-".concat(index) },
|
|
5487
5512
|
React.createElement("img", { alt: alt, src: index <= Number(qualification) ? iconSelect : index <= Number(hover) ? iconHover : icon })));
|
|
5488
5513
|
})));
|
|
5489
5514
|
};
|
|
@@ -5613,27 +5638,27 @@ var styles$1g = {"similar-card":"mg_similar_card_similar-card_8mo62","similar-ca
|
|
|
5613
5638
|
|
|
5614
5639
|
var styles$1f = {"similar-card-logo":"mg_similar_card_logo_similar-card-logo_1adpr"};
|
|
5615
5640
|
|
|
5616
|
-
var cx$
|
|
5641
|
+
var cx$H = classNames.bind(styles$1f);
|
|
5617
5642
|
var Component$1t = function (_a) {
|
|
5618
5643
|
var className = _a.className, src = _a.src, alt = _a.alt, _b = _a.hideLogo, hideLogo = _b === void 0 ? false : _b;
|
|
5619
5644
|
if (hideLogo)
|
|
5620
5645
|
return null;
|
|
5621
|
-
return (React.createElement("img", { className: cx$
|
|
5646
|
+
return (React.createElement("img", { className: cx$H("similar-card-logo", className), src: src || NoLogo, alt: (alt === null || alt === void 0 ? void 0 : alt.toLowerCase()) || 'company-logo' }));
|
|
5622
5647
|
};
|
|
5623
5648
|
var SimilarCardLogo = Component$1t;
|
|
5624
5649
|
|
|
5625
|
-
var cx$
|
|
5650
|
+
var cx$G = classNames.bind(styles$1g);
|
|
5626
5651
|
var Component$1s = function (_a) {
|
|
5627
5652
|
var className = _a.className, src = _a.src, alt = _a.alt, _b = _a.showIconMobile, showIconMobile = _b === void 0 ? false : _b;
|
|
5628
5653
|
return (React.createElement(React.Fragment, null,
|
|
5629
|
-
React.createElement(IconItem, { className: cx$
|
|
5654
|
+
React.createElement(IconItem, { className: cx$G('similar-card__arrow', { 'similar-card__arrow-mobile': !showIconMobile }, className), icon: src || ArrowRight2, alt: (alt === null || alt === void 0 ? void 0 : alt.toLowerCase()) || 'card-icon' })));
|
|
5630
5655
|
};
|
|
5631
5656
|
var SimilarCardIcon = Component$1s;
|
|
5632
5657
|
|
|
5633
|
-
var cx$
|
|
5658
|
+
var cx$F = classNames.bind(styles$1g);
|
|
5634
5659
|
var Component$1r = function (_a) {
|
|
5635
5660
|
var children = _a.children, _b = _a.title, title = _b === void 0 ? 'jobLink' : _b, _c = _a.jobUrlSlug, jobUrlSlug = _c === void 0 ? '#' : _c, className = _a.className;
|
|
5636
|
-
return (React.createElement("a", { className: cx$
|
|
5661
|
+
return (React.createElement("a", { className: cx$F("similar-card", className), href: jobUrlSlug, title: title }, children));
|
|
5637
5662
|
};
|
|
5638
5663
|
var SimilarCard = Object.assign(Component$1r, {
|
|
5639
5664
|
Text: TextCustom,
|
|
@@ -5716,25 +5741,35 @@ var TextArea = function (_a) {
|
|
|
5716
5741
|
hasCounter && React.createElement(ComparativeCounter, { current: inputValue === null || inputValue === void 0 ? void 0 : inputValue.length, max: maxCounterValue }))));
|
|
5717
5742
|
};
|
|
5718
5743
|
|
|
5719
|
-
var
|
|
5744
|
+
var TimeLineItemStatus;
|
|
5745
|
+
(function (TimeLineItemStatus) {
|
|
5746
|
+
TimeLineItemStatus["CHECKED"] = "checked";
|
|
5747
|
+
TimeLineItemStatus["CURRENT"] = "current";
|
|
5748
|
+
TimeLineItemStatus["BLOCKED"] = "blocked";
|
|
5749
|
+
TimeLineItemStatus["UNLOCKED"] = "unlocked";
|
|
5750
|
+
})(TimeLineItemStatus || (TimeLineItemStatus = {}));
|
|
5751
|
+
|
|
5752
|
+
var style$y = {"magneto-ui-timeline-event":"mg_timeline_event_magneto-ui-timeline-event_1mvbj","magneto-ui-timeline-event__icon":"mg_timeline_event_magneto-ui-timeline-event_icon_1mvbj","magneto-ui-timeline-event__icon-bar":"mg_timeline_event_magneto-ui-timeline-event_icon-bar_1mvbj","magneto-ui-timeline-event__icon-bar--checked":"mg_timeline_event_magneto-ui-timeline-event_icon-bar--checked_1mvbj","magneto-ui-timeline-event__icon-bar--current":"mg_timeline_event_magneto-ui-timeline-event_icon-bar--current_1mvbj","magneto-ui-timeline-event__icon-bar--blocked":"mg_timeline_event_magneto-ui-timeline-event_icon-bar--blocked_1mvbj","magneto-ui-timeline-event__icon-bar--unlocked":"mg_timeline_event_magneto-ui-timeline-event_icon-bar--unlocked_1mvbj","magneto-ui-timeline-event__icon-icon":"mg_timeline_event_magneto-ui-timeline-event_icon-icon_1mvbj","magneto-ui-timeline-event__icon-icon--unlocked":"mg_timeline_event_magneto-ui-timeline-event_icon-icon--unlocked_1mvbj","magneto-ui-timeline-event__text":"mg_timeline_event_magneto-ui-timeline-event_text_1mvbj","magneto-ui-timeline-event__text-title":"mg_timeline_event_magneto-ui-timeline-event_text-title_1mvbj","magneto-ui-timeline-event__text-title--blocked":"mg_timeline_event_magneto-ui-timeline-event_text-title--blocked_1mvbj","magneto-ui-timeline-event__text-title--unlocked":"mg_timeline_event_magneto-ui-timeline-event_text-title--unlocked_1mvbj","magneto-ui-timeline-event__text-subtitle":"mg_timeline_event_magneto-ui-timeline-event_text-subtitle_1mvbj","magneto-ui-timeline-event__text-subtitle--current":"mg_timeline_event_magneto-ui-timeline-event_text-subtitle--current_1mvbj","magneto-ui-timeline-event__text-subtitle--blocked":"mg_timeline_event_magneto-ui-timeline-event_text-subtitle--blocked_1mvbj","magneto-ui-timeline-event__text-subtitle--unlocked":"mg_timeline_event_magneto-ui-timeline-event_text-subtitle--unlocked_1mvbj"};
|
|
5720
5753
|
|
|
5721
|
-
var
|
|
5754
|
+
var BASE_CLASS = "".concat(classMUI, "-timeline-event");
|
|
5755
|
+
var TIMELINE_ICONS = {
|
|
5722
5756
|
checked: Checked,
|
|
5723
5757
|
current: Clock,
|
|
5758
|
+
unlocked: Clock,
|
|
5724
5759
|
blocked: Lock
|
|
5725
5760
|
};
|
|
5761
|
+
|
|
5762
|
+
var cx$E = classNames.bind(style$y);
|
|
5726
5763
|
var Component$1q = function (_a) {
|
|
5727
5764
|
var title = _a.title, subtitle = _a.subtitle, status = _a.status, _b = _a.index, index = _b === void 0 ? 0 : _b, _c = _a.onClick, onClick = _c === void 0 ? function () { return ({}); } : _c;
|
|
5728
|
-
var iconByType = useMemo(function () { return
|
|
5729
|
-
|
|
5730
|
-
|
|
5731
|
-
|
|
5732
|
-
|
|
5733
|
-
|
|
5734
|
-
React.createElement(
|
|
5735
|
-
|
|
5736
|
-
React.createElement("p", { className: "".concat(style$y["".concat(classMUI, "-timeline-event__text--title")], " ").concat(titleStyle) }, title),
|
|
5737
|
-
React.createElement("p", { className: "".concat(style$y["".concat(classMUI, "-timeline-event__text--subtitle")], " ").concat(subtitleStyle) }, subtitle))));
|
|
5765
|
+
var iconByType = useMemo(function () { return TIMELINE_ICONS[status]; }, [status]);
|
|
5766
|
+
return (React.createElement("button", { type: "button", onClick: function () { return onClick(status, index); }, className: style$y[BASE_CLASS] },
|
|
5767
|
+
React.createElement("div", { className: cx$E("".concat(BASE_CLASS, "__icon")) },
|
|
5768
|
+
React.createElement("div", { className: cx$E("".concat(BASE_CLASS, "__icon-bar"), "".concat(BASE_CLASS, "__icon-bar--").concat(status)) }),
|
|
5769
|
+
React.createElement(IconItem, { className: cx$E("".concat(BASE_CLASS, "__icon-icon"), "".concat(BASE_CLASS, "__icon-icon--").concat(status)), icon: iconByType, alt: status })),
|
|
5770
|
+
React.createElement("div", { className: cx$E("".concat(BASE_CLASS, "__text")) },
|
|
5771
|
+
React.createElement("p", { className: cx$E("".concat(BASE_CLASS, "__text-title"), "".concat(BASE_CLASS, "__text-title--").concat(status)) }, title),
|
|
5772
|
+
React.createElement("p", { className: cx$E("".concat(BASE_CLASS, "__text-subtitle"), "".concat(BASE_CLASS, "__text-subtitle--").concat(status)) }, subtitle))));
|
|
5738
5773
|
};
|
|
5739
5774
|
var TimelineEvent = Component$1q;
|
|
5740
5775
|
|
|
@@ -7489,6 +7524,7 @@ var useContainerDesktop$1 = function (_a) {
|
|
|
7489
7524
|
var ContainerDesktop$3 = function (_a) {
|
|
7490
7525
|
var inputSearchProps = _a.inputSearchProps, selectedValues = _a.selectedValues, listOptions = _a.listOptions, removeValueToArray = _a.removeValueToArray, addValueToArray = _a.addValueToArray, numberOfSelectable = _a.numberOfSelectable, dropDownTitle = _a.dropDownTitle;
|
|
7491
7526
|
var _b = useContainerDesktop$1({ numberOfSelectable: numberOfSelectable, selectedValues: selectedValues }), containerOptions = _b.containerOptions, menuPosition = _b.menuPosition, toggleDropdown = _b.toggleDropdown, limitOfSelectable = _b.limitOfSelectable, inputRef = _b.inputRef, isOpen = _b.isOpen, dropdownRef = _b.dropdownRef;
|
|
7527
|
+
var container = useContext(ContainerContext).container;
|
|
7492
7528
|
var hideComponent = useMemo(function () {
|
|
7493
7529
|
return isOpen ? style$f['hide'] : '';
|
|
7494
7530
|
}, [isOpen]);
|
|
@@ -7497,6 +7533,7 @@ var ContainerDesktop$3 = function (_a) {
|
|
|
7497
7533
|
React.createElement(DropDownButton$1, { title: dropDownTitle, onClick: toggleDropdown }))),
|
|
7498
7534
|
React.createElement("div", { className: "".concat(style$f["".concat(classMUI, "-container-options-tags-container")], " ").concat(hideComponent) }, selectedValues.map(function (itemSelected) { return (React.createElement(Tags, { key: itemSelected.id, text: itemSelected.name, icon: Close, bgColor: "#FFF", onClick: function () { return removeValueToArray(itemSelected); } })); })),
|
|
7499
7535
|
React.createElement("div", { ref: containerOptions, className: "".concat(style$f["".concat(classMUI, "-container-options")]) }, isOpen &&
|
|
7536
|
+
container &&
|
|
7500
7537
|
ReactDOM.createPortal(React.createElement("div", { style: {
|
|
7501
7538
|
position: 'absolute',
|
|
7502
7539
|
top: "".concat(menuPosition.top - 60, "px "),
|
|
@@ -7506,7 +7543,7 @@ var ContainerDesktop$3 = function (_a) {
|
|
|
7506
7543
|
}, ref: dropdownRef, className: "".concat(style$f["".concat(classMUI, "-container-options__menu")]) },
|
|
7507
7544
|
inputSearchProps && React.createElement(InputSearch, __assign({}, inputSearchProps)),
|
|
7508
7545
|
React.createElement("div", { className: "".concat(style$f["".concat(classMUI, "-container-options__menu--tags")]) }, selectedValues.map(function (itemSelected) { return (React.createElement(Tags, { key: itemSelected.id, text: itemSelected.name, icon: Close, bgColor: "#F4F4FA", onClick: function () { return removeValueToArray(itemSelected); } })); })),
|
|
7509
|
-
React.createElement("div", { className: "".concat(style$f["".concat(classMUI, "-container-options__menu--list")]) }, listOptions.map(function (value) { return (React.createElement(SelectItem$1, { disable: !limitOfSelectable || selectedValues.includes(value), key: value.id, onClick: function () { return addValueToArray(value); }, text: value.name })); }))),
|
|
7546
|
+
React.createElement("div", { className: "".concat(style$f["".concat(classMUI, "-container-options__menu--list")]) }, listOptions.map(function (value) { return (React.createElement(SelectItem$1, { disable: !limitOfSelectable || selectedValues.includes(value), key: value.id, onClick: function () { return addValueToArray(value); }, text: value.name })); }))), container))));
|
|
7510
7547
|
};
|
|
7511
7548
|
|
|
7512
7549
|
var style$e = {"magneto-ui-container-options":"mg_container_mobile_magneto-ui-container-options_1caxk","magneto-ui-container-options-tags-container":"mg_container_mobile_magneto-ui-container-options-tags-container_1caxk","magneto-ui-container-options__menu":"mg_container_mobile_magneto-ui-container-options_menu_1caxk","magneto-ui-container-options__menu--tags":"mg_container_mobile_magneto-ui-container-options_menu--tags_1caxk","magneto-ui-container-options__menu--list":"mg_container_mobile_magneto-ui-container-options_menu--list_1caxk"};
|
|
@@ -8078,10 +8115,12 @@ var useContainerDesktop = function (_a) {
|
|
|
8078
8115
|
var ContainerDesktop$1 = function (_a) {
|
|
8079
8116
|
var listOptions = _a.listOptions, addValue = _a.addValue, dropDownTitle = _a.dropDownTitle, selectedValue = _a.selectedValue;
|
|
8080
8117
|
var _b = useContainerDesktop({ addValue: addValue }), containerOptions = _b.containerOptions, menuPosition = _b.menuPosition, toggleDropdown = _b.toggleDropdown, isOpen = _b.isOpen, dropdownRef = _b.dropdownRef, inputRef = _b.inputRef, selectValue = _b.selectValue;
|
|
8118
|
+
var container = useContext(ContainerContext).container;
|
|
8081
8119
|
return (React.createElement("div", { style: { zIndex: 999999 } },
|
|
8082
8120
|
React.createElement("div", { ref: inputRef },
|
|
8083
8121
|
React.createElement(DropDownButton, { title: dropDownTitle, onClick: toggleDropdown })),
|
|
8084
8122
|
React.createElement("div", { ref: containerOptions, className: "".concat(style$b["".concat(classMUI, "-container-options")]) }, isOpen &&
|
|
8123
|
+
container &&
|
|
8085
8124
|
ReactDOM.createPortal(React.createElement("div", { style: {
|
|
8086
8125
|
position: 'absolute',
|
|
8087
8126
|
top: "".concat(menuPosition.top - 8, "px "),
|
|
@@ -8089,7 +8128,7 @@ var ContainerDesktop$1 = function (_a) {
|
|
|
8089
8128
|
width: "".concat(menuPosition.width, "px"),
|
|
8090
8129
|
zIndex: 999999
|
|
8091
8130
|
}, ref: dropdownRef, className: "".concat(style$b["".concat(classMUI, "-container-options__menu")]) },
|
|
8092
|
-
React.createElement("div", { className: "".concat(style$b["".concat(classMUI, "-container-options__menu--list")]) }, listOptions.map(function (value) { return (React.createElement(SelectItem, { selected: (selectedValue === null || selectedValue === void 0 ? void 0 : selectedValue.id) === value.id, disable: (selectedValue === null || selectedValue === void 0 ? void 0 : selectedValue.id) === value.id, key: value.id, onClick: function () { return selectValue(value.id); }, text: value.label })); }))),
|
|
8131
|
+
React.createElement("div", { className: "".concat(style$b["".concat(classMUI, "-container-options__menu--list")]) }, listOptions.map(function (value) { return (React.createElement(SelectItem, { selected: (selectedValue === null || selectedValue === void 0 ? void 0 : selectedValue.id) === value.id, disable: (selectedValue === null || selectedValue === void 0 ? void 0 : selectedValue.id) === value.id, key: value.id, onClick: function () { return selectValue(value.id); }, text: value.label })); }))), container))));
|
|
8093
8132
|
};
|
|
8094
8133
|
|
|
8095
8134
|
var style$a = {"magneto-ui-container-options":"mg_container_mobile_magneto-ui-container-options_16tb3","magneto-ui-container-options__menu":"mg_container_mobile_magneto-ui-container-options_menu_16tb3","magneto-ui-container-options__menu--list":"mg_container_mobile_magneto-ui-container-options_menu--list_16tb3"};
|
|
@@ -8701,22 +8740,20 @@ var Select2 = withClickOut(Component$o);
|
|
|
8701
8740
|
|
|
8702
8741
|
var style$8 = {"magneto-ui-timeline":"mg_timeline_magneto-ui-timeline_lr29v"};
|
|
8703
8742
|
|
|
8704
|
-
var STATUS = {
|
|
8705
|
-
CHECKED: 'checked',
|
|
8706
|
-
CURRENT: 'current',
|
|
8707
|
-
BLOCKED: 'blocked'
|
|
8708
|
-
};
|
|
8709
8743
|
var Component$n = function (_a) {
|
|
8710
|
-
var steps = _a.steps, currentStep = _a.currentStep, _b = _a.onClick, onClick = _b === void 0 ? function () { return ({}); } : _b;
|
|
8744
|
+
var steps = _a.steps, currentStep = _a.currentStep, _b = _a.onClick, onClick = _b === void 0 ? function () { return ({}); } : _b, isNotBlocked = _a.isNotBlocked;
|
|
8711
8745
|
currentStep = Math.max(currentStep, 1);
|
|
8712
8746
|
var getStatus = function (index) {
|
|
8713
8747
|
if (index + 1 < currentStep) {
|
|
8714
|
-
return
|
|
8748
|
+
return TimeLineItemStatus.CHECKED;
|
|
8715
8749
|
}
|
|
8716
8750
|
if (index + 1 === currentStep) {
|
|
8717
|
-
return
|
|
8751
|
+
return TimeLineItemStatus.CURRENT;
|
|
8752
|
+
}
|
|
8753
|
+
if (isNotBlocked) {
|
|
8754
|
+
return TimeLineItemStatus.UNLOCKED;
|
|
8718
8755
|
}
|
|
8719
|
-
return
|
|
8756
|
+
return TimeLineItemStatus.BLOCKED;
|
|
8720
8757
|
};
|
|
8721
8758
|
return (React.createElement("div", { className: style$8["".concat(classMUI, "-timeline")] }, steps.map(function (_a, index) {
|
|
8722
8759
|
var subtitle = _a.subtitle, title = _a.title;
|
|
@@ -9748,5 +9785,5 @@ var Component = function (_a) {
|
|
|
9748
9785
|
};
|
|
9749
9786
|
var SuggestedJobsPage = Component;
|
|
9750
9787
|
|
|
9751
|
-
export { Actions, Alert, AlertJobModal, AlertJobStatus, AlertJobStatusContainer, AlertJobStatusIcon, AlertsPanel, AlphabetFilter, AnalystTemplate, ApplicationButton, ApplicationSubtitle, ApplicationSummary, ApplicationText, ApplicationTitle, Avatar, Badge, BarChart, BarLoader, BarsChart, BrandMenu, BrandsContainer, BrandsMenuMobile, BrandsMenuPopover$1 as BrandsMenuPopover, Breadcrumb, Breadcrumbs, Button, ButtonLink, CandidateNav, CandidateProfile, CandidateProfileTemplate, CategoryGrid, CategoryMenuCard_component as CategoryMenuCard, Checkbox, CitiesDetailDrawer, Collapse, ComparativeCounter, CreateAccountCTA, DateDropdown, DateInput, DatePicker, DatePickerResponsiveComponent, Divider, DotsLoader, Drawer$1 as Drawer, DrawerMenu, EExpandableInfoSize, EExpandableInfoVariant, ERadioType, ETypographyFontColor, ETypographyFontSize, ETypographyFontWeight, EmptyResult as EmptyResults, ExpandableInfo, FilterActions, FilterCard, FilterContainerMenu, FilterHeader, FilterMenuItem, FilterSearchItem, FlatLoader, Footer, FooterMenuLinks, FraudCardJob, FrequentSearch, HeaderAnalyst, HeaderDrawerCompany, HeaderDrawerTabs, HeaderTab, HeaderTabs, HorizontalMenu, IconItem, Image, Input, InputFile, InputPlus, InputSearch, JobActions, JobApplyCard, JobCard, JobCardDesktop, JobCardMobile, JobCompanyHeader, JobCompanyLogo, JobDetailCard, JobDetailContainer, JobDetails, JobDetailsDrawer, JobFooterCard, JobHeader, JobSkillsCard, JobSuggestedDrawer, JobSuggestedHeader, JobSuggestedSimilarJobs, JobVideo, JobsPage, Link, ListIconLink, ListMenuIcons, ListMenuItems, ListMenuText, ListSortMenu, Loading, LoginHeader, LoginJobsHeader, LoginJobsTemplate, LoginTemplate, LogoComponent, LogoutHeader, LogoutJobsHeader, LogoutJobsTemplate, LogoutTemplate, MagnetoResolution, MagnetoSocialMedia, ContextAppProvider as MagnetoUIProvider, MainButton, MegaMenu, MegaMenuCard, MegaMenuCards, MegaMenuDrawer, MegaMenuDrawerItem, MegaMenuEmpty, MegaMenuJobsTabs, MegaMenuPopover, MegaMenuSideCards, MegaMenuTab, MenuDropdown, MenuIcon, MenuItem, MenuSearch, Message, MobileDatePicker, MobileDrawer, MobileDrawerMenu, MobileJobDetailsDrawer, MobileJobDetailsHeader, MobileSearchbar, MobileSortMenu, Modal$1 as Modal, ModalAnalyst, ModalResponsive, MultiRangeSlider, MultipleSelectionEntry, NavMenuAnalyst, NavMenuAnalystRegionModal, NavMenuDrawerAnalyst, Notification, OneSelectionEntry, Pagination, Paragraph, Popover, ProcessesCard, Qualification, Radio, RatingBadge, RightsReservedText, SaveButton, ScoreLevel, ScoreLevelStatic, SearchButton, SearchItem, Searchbar, Select, Select2, ShareButton, SharePopover, SideFilter, SimilarCard, SimilarCardIcon, SimilarCardLogo, SimilarJobs, SimilarJobsCard, Skill, SortBar, SortMenu$1 as SortMenu, SuggestedJobsPage, Switch, Tab, TabButton, Tags as Tag, TextArea, TextCustom, Timeline, TimelineEvent, ToggleButton, ToggleButtonList, Tooltip, Typography, UserMenu, UserMenuAnalyst, UserMenuButtonAnalyst, UserMenuWrapperAnalyst, UserTermCheck, UserTermContent, UserTermHighlight, UserTermSubTitle, UserTermSubmit, UserTermText, UserTermTitle, UserTermUList, UserTerms, VacantPositions, useMediaQuery, withClickOut, withMegaMenuSideCards };
|
|
9788
|
+
export { Actions, Alert, AlertJobModal, AlertJobStatus, AlertJobStatusContainer, AlertJobStatusIcon, AlertsPanel, AlphabetFilter, AnalystTemplate, ApplicationButton, ApplicationSubtitle, ApplicationSummary, ApplicationText, ApplicationTitle, Avatar, Badge, BarChart, BarLoader, BarsChart, BrandMenu, BrandsContainer, BrandsMenuMobile, BrandsMenuPopover$1 as BrandsMenuPopover, Breadcrumb, Breadcrumbs, Button, ButtonLink, CandidateNav, CandidateProfile, CandidateProfileTemplate, CategoryGrid, CategoryMenuCard_component as CategoryMenuCard, Checkbox, CitiesDetailDrawer, Collapse, ComparativeCounter, CreateAccountCTA, DateDropdown, DateInput, DatePicker, DatePickerResponsiveComponent, Divider, DotsLoader, Drawer$1 as Drawer, DrawerMenu, EExpandableInfoSize, EExpandableInfoVariant, ERadioType, ETypographyFontColor, ETypographyFontSize, ETypographyFontWeight, EmptyResult as EmptyResults, ExpandableInfo, FilterActions, FilterCard, FilterContainerMenu, FilterHeader, FilterMenuItem, FilterSearchItem, FlatLoader, Footer, FooterMenuLinks, FraudCardJob, FrequentSearch, HeaderAnalyst, HeaderDrawerCompany, HeaderDrawerTabs, HeaderTab, HeaderTabs, HorizontalMenu, IconItem, Image, Input, InputFile, InputPlus, InputSearch, JobActions, JobApplyCard, JobCard, JobCardDesktop, JobCardMobile, JobCompanyHeader, JobCompanyLogo, JobDetailCard, JobDetailContainer, JobDetails, JobDetailsDrawer, JobFooterCard, JobHeader, JobSkillsCard, JobSuggestedDrawer, JobSuggestedHeader, JobSuggestedSimilarJobs, JobVideo, JobsPage, Link, ListIconLink, ListMenuIcons, ListMenuItems, ListMenuText, ListSortMenu, Loading, LoginHeader, LoginJobsHeader, LoginJobsTemplate, LoginTemplate, LogoComponent, LogoutHeader, LogoutJobsHeader, LogoutJobsTemplate, LogoutTemplate, MagnetoResolution, MagnetoSocialMedia, ContextAppProvider as MagnetoUIProvider, MainButton, MegaMenu, MegaMenuCard, MegaMenuCards, MegaMenuDrawer, MegaMenuDrawerItem, MegaMenuEmpty, MegaMenuJobsTabs, MegaMenuPopover, MegaMenuSideCards, MegaMenuTab, MenuDropdown, MenuIcon, MenuItem, MenuSearch, Message, MobileDatePicker, MobileDrawer, MobileDrawerMenu, MobileJobDetailsDrawer, MobileJobDetailsHeader, MobileSearchbar, MobileSortMenu, Modal$1 as Modal, ModalAnalyst, ModalResponsive, MultiRangeSlider, MultipleSelectionEntry, NavMenuAnalyst, NavMenuAnalystRegionModal, NavMenuDrawerAnalyst, Notification, OneSelectionEntry, Pagination, Paragraph, Popover, ProcessesCard, Qualification, Radio, RatingBadge, RightsReservedText, SaveButton, ScoreLevel, ScoreLevelStatic, SearchButton, SearchItem, Searchbar, Select, Select2, ShareButton, SharePopover, SideFilter, SimilarCard, SimilarCardIcon, SimilarCardLogo, SimilarJobs, SimilarJobsCard, Skill, SortBar, SortMenu$1 as SortMenu, SuggestedJobsPage, Switch, Tab, TabButton, Tags as Tag, TextArea, TextCustom, TimeLineItemStatus, Timeline, TimelineEvent, ToggleButton, ToggleButtonList, Tooltip, Typography, UserMenu, UserMenuAnalyst, UserMenuButtonAnalyst, UserMenuWrapperAnalyst, UserTermCheck, UserTermContent, UserTermHighlight, UserTermSubTitle, UserTermSubmit, UserTermText, UserTermTitle, UserTermUList, UserTerms, VacantPositions, useMediaQuery, withClickOut, withMegaMenuSideCards };
|
|
9752
9789
|
//# sourceMappingURL=index.js.map
|