magneto365.ui 2.59.2 → 2.59.4
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/index.js +73 -21
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/types/components/UI/atoms/Button/Button.interface.d.ts +3 -2
- package/dist/cjs/types/components/UI/atoms/index.d.ts +1 -0
- package/dist/cjs/types/components/UI/molecules/ListMenuIcons/ListMenuIcons.interface.d.ts +3 -0
- package/dist/cjs/types/components/UI/organism/LoginHeader/LoginHeader.interface.d.ts +2 -0
- package/dist/cjs/types/components/UI/template/MegaMenu/MegaMenu.context.d.ts +2 -0
- package/dist/cjs/types/components/UI/template/MegaMenu/MegaMenuContext.interface.d.ts +2 -0
- package/dist/cjs/types/constants/stories/megaMenu.constants.d.ts +9 -0
- package/dist/cjs/types/utils/icons/getIcons.util.d.ts +1 -0
- package/dist/esm/index.js +73 -22
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/components/UI/atoms/Button/Button.interface.d.ts +3 -2
- package/dist/esm/types/components/UI/atoms/index.d.ts +1 -0
- package/dist/esm/types/components/UI/molecules/ListMenuIcons/ListMenuIcons.interface.d.ts +3 -0
- package/dist/esm/types/components/UI/organism/LoginHeader/LoginHeader.interface.d.ts +2 -0
- package/dist/esm/types/components/UI/template/MegaMenu/MegaMenu.context.d.ts +2 -0
- package/dist/esm/types/components/UI/template/MegaMenu/MegaMenuContext.interface.d.ts +2 -0
- package/dist/esm/types/constants/stories/megaMenu.constants.d.ts +9 -0
- package/dist/esm/types/utils/icons/getIcons.util.d.ts +1 -0
- package/dist/index.d.ts +54 -4
- package/package.json +1 -1
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
1
2
|
export interface IButton {
|
|
2
3
|
/**
|
|
3
4
|
* Optional text to be displayed on the save button.
|
|
@@ -24,11 +25,11 @@ export interface IButton {
|
|
|
24
25
|
/**
|
|
25
26
|
* Suffix icon
|
|
26
27
|
*/
|
|
27
|
-
suffixIcon?: string;
|
|
28
|
+
suffixIcon?: string | React.ReactNode;
|
|
28
29
|
/**
|
|
29
30
|
* Preffix icon
|
|
30
31
|
*/
|
|
31
|
-
prefixIcon?: string;
|
|
32
|
+
prefixIcon?: string | React.ReactNode;
|
|
32
33
|
/**
|
|
33
34
|
* Icon size
|
|
34
35
|
*/
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { IAvatar } from '@components/UI/atoms';
|
|
1
2
|
import { IMenuIcon } from '../MenuIcon/MenuIcon.interface';
|
|
2
3
|
export interface IListMenuIcons {
|
|
3
4
|
urlParam: string;
|
|
@@ -6,6 +7,8 @@ export interface IListMenuIcons {
|
|
|
6
7
|
logout: ILogout;
|
|
7
8
|
settings: ISettings;
|
|
8
9
|
haveGif?: boolean;
|
|
10
|
+
profileImage: IAvatar;
|
|
11
|
+
isAuthenticated: boolean;
|
|
9
12
|
}
|
|
10
13
|
export interface IMenuItems {
|
|
11
14
|
title?: string;
|
|
@@ -1,7 +1,9 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import { IMegaMenuContext, IMegaMenuJobs, IMegaMenuSocialHeader, IMegaMenuMainHeader } from './MegaMenuContext.interface';
|
|
3
|
+
import { IlistMenuUserProps } from '@components/UI/organism';
|
|
3
4
|
export declare const MegaMenuProvider: React.FC<IMegaMenuContext>;
|
|
4
5
|
export declare const useMegaMenu: () => IMegaMenuContext;
|
|
5
6
|
export declare const useMegaMenuSocialHeader: () => IMegaMenuSocialHeader;
|
|
6
7
|
export declare const useMegaMenuJobs: () => IMegaMenuJobs;
|
|
7
8
|
export declare const useMegaMenuMain: () => IMegaMenuMainHeader;
|
|
9
|
+
export declare const useLoggedInUser: () => IlistMenuUserProps;
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { IMegaMenuTab } from '@components/UI/atoms/MegaMenuTab/MegaMenuTab.interface';
|
|
2
2
|
import { ISearchbar } from '@components/UI/molecules';
|
|
3
|
+
import { IlistMenuUserProps } from '@components/UI/organism';
|
|
3
4
|
import { ReactNode } from 'react';
|
|
4
5
|
export interface IMegaMenuLink {
|
|
5
6
|
label: string;
|
|
@@ -43,4 +44,5 @@ export interface IMegaMenuContext {
|
|
|
43
44
|
socialHeaderProps: IMegaMenuSocialHeader;
|
|
44
45
|
jobsProps: IMegaMenuJobs;
|
|
45
46
|
mainHeaderProps: IMegaMenuMainHeader;
|
|
47
|
+
listMenuUserProps: IlistMenuUserProps;
|
|
46
48
|
}
|
|
@@ -18,6 +18,15 @@ export declare const filterProps: {
|
|
|
18
18
|
};
|
|
19
19
|
export declare const megaMenuCards: IMegaMenuCards;
|
|
20
20
|
export declare const megaMenuJobsIcons: any[];
|
|
21
|
+
export declare const megaMenuUserLoggedIcons: {
|
|
22
|
+
allJobs: any;
|
|
23
|
+
suggestedJobs: any;
|
|
24
|
+
savedJobs: any;
|
|
25
|
+
inProcess: any;
|
|
26
|
+
resume: any;
|
|
27
|
+
settings: any;
|
|
28
|
+
help: any;
|
|
29
|
+
};
|
|
21
30
|
export declare const mobileSocialIcons: any[];
|
|
22
31
|
export declare const megaMenuJobs: IMegaMenuJobs;
|
|
23
32
|
export declare const megaMenuBreadcrumbs: {
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const getIcons: (iconName?: string | undefined) => any;
|
package/dist/esm/index.js
CHANGED
|
@@ -267,6 +267,8 @@ var Add2 = "https://static.magneto365.com/lib/assets/4a5507815cef1554.svg";
|
|
|
267
267
|
|
|
268
268
|
var AddSquareBlackOutline = "https://static.magneto365.com/lib/assets/7802bad8f709827a.svg";
|
|
269
269
|
|
|
270
|
+
var AllJobs = "https://static.magneto365.com/lib/assets/c0801a55ef2c85e6.svg";
|
|
271
|
+
|
|
270
272
|
var AnimatedSpinnerBlack = "https://static.magneto365.com/lib/assets/gif/6f5219c0a4f28bcb.gif";
|
|
271
273
|
|
|
272
274
|
var AnimatedSpinnerBlue = "https://static.magneto365.com/lib/assets/gif/e67f4a6ee6def0b9.gif";
|
|
@@ -281,6 +283,8 @@ var ArchiveAdd = "https://static.magneto365.com/lib/assets/93858404062779b6.svg"
|
|
|
281
283
|
|
|
282
284
|
var ArchiveRemove = "https://static.magneto365.com/lib/assets/7b9b613a82ce5a7e.svg";
|
|
283
285
|
|
|
286
|
+
var ArchiveTick = "https://static.magneto365.com/lib/assets/2032b2bd88b4ed5b.svg";
|
|
287
|
+
|
|
284
288
|
var ArrowDown2 = "https://static.magneto365.com/lib/assets/cd4e261bd404d56c.svg";
|
|
285
289
|
|
|
286
290
|
var ArrowDown3 = "https://static.magneto365.com/lib/assets/59e0a621450cbb17.svg";
|
|
@@ -341,6 +345,8 @@ var DocumentForward = "https://static.magneto365.com/lib/assets/1aba91fa564f11d7
|
|
|
341
345
|
|
|
342
346
|
var DocumentSearch = "https://static.magneto365.com/lib/assets/3a1c54796cd5e026.svg";
|
|
343
347
|
|
|
348
|
+
var DocumentText = "https://static.magneto365.com/lib/assets/89e029edfa166388.svg";
|
|
349
|
+
|
|
344
350
|
var DocumentTextGray = "https://static.magneto365.com/lib/assets/e6c25ccc7957e05e.svg";
|
|
345
351
|
|
|
346
352
|
var DollarCircle = "https://static.magneto365.com/lib/assets/e398388dfbd7a649.svg";
|
|
@@ -425,6 +431,8 @@ var LogoutIcon = "https://static.magneto365.com/lib/assets/69e73b9b021eccd7.svg"
|
|
|
425
431
|
|
|
426
432
|
var MagicStarBlackOutline = "https://static.magneto365.com/lib/assets/3cce32a33c03fccd.svg";
|
|
427
433
|
|
|
434
|
+
var MessageQuestion = "https://static.magneto365.com/lib/assets/4be843dae5de2ab7.svg";
|
|
435
|
+
|
|
428
436
|
var Messages2BlackOutline = "https://static.magneto365.com/lib/assets/801c14292dfce9f7.svg";
|
|
429
437
|
|
|
430
438
|
var MiniArrowGrayDown = "https://static.magneto365.com/lib/assets/0385a8005062bc95.svg";
|
|
@@ -481,10 +489,14 @@ var SpinnerWhite = "https://static.magneto365.com/lib/assets/b97768a94b8e244b.sv
|
|
|
481
489
|
|
|
482
490
|
var Success = "https://static.magneto365.com/lib/assets/d08d09ab2ca482fb.svg";
|
|
483
491
|
|
|
492
|
+
var SuggestedJobs = "https://static.magneto365.com/lib/assets/a589f2bfa7334c2f.svg";
|
|
493
|
+
|
|
484
494
|
var Tag = "https://static.magneto365.com/lib/assets/ec8bb6c5ab3d8964.svg";
|
|
485
495
|
|
|
486
496
|
var TaskBlueBold = "https://static.magneto365.com/lib/assets/546c3401e6c1ab39.svg";
|
|
487
497
|
|
|
498
|
+
var TaskSquare = "https://static.magneto365.com/lib/assets/236599155bcd9912.svg";
|
|
499
|
+
|
|
488
500
|
var TaskWhiteOutline = "https://static.magneto365.com/lib/assets/e8987356bcb0eb69.svg";
|
|
489
501
|
|
|
490
502
|
var TickCircleGreenBold = "https://static.magneto365.com/lib/assets/b7c5dd6900f044db.svg";
|
|
@@ -2234,25 +2246,28 @@ var MenuIcon = Component$1$;
|
|
|
2234
2246
|
|
|
2235
2247
|
var style$L = {"mangeto-ui-list-menu-icons":"mg_list_menu_icons_mangeto-ui-list-menu-icons_u92cd"};
|
|
2236
2248
|
|
|
2249
|
+
var getIcons = function (iconName) {
|
|
2250
|
+
if (!iconName || !(iconName in megaMenuUserLoggedIcons))
|
|
2251
|
+
return null;
|
|
2252
|
+
return megaMenuUserLoggedIcons[iconName];
|
|
2253
|
+
};
|
|
2254
|
+
|
|
2237
2255
|
var Component$1_ = function (_a) {
|
|
2238
|
-
var
|
|
2256
|
+
var menuItems1440 = _a.menuItems1440, haveGif = _a.haveGif, urlParam = _a.urlParam, menuItems = _a.menuItems, logout = _a.logout;
|
|
2239
2257
|
var logoutText = logout.logoutText, onClick = logout.onClick;
|
|
2240
|
-
var settingsText = settings.settingsText, onClickSettings = settings.onClick;
|
|
2241
2258
|
var userMenu = useMediaQuery(menuItems1440 && !haveGif ? menuItems1440 : menuItems, { xl: menuItems });
|
|
2242
2259
|
return (React.createElement("div", { className: style$L['mangeto-ui-list-menu-icons'] },
|
|
2243
|
-
React.createElement("div", null, userMenu === null || userMenu === void 0 ? void 0 :
|
|
2244
|
-
|
|
2245
|
-
|
|
2246
|
-
|
|
2247
|
-
|
|
2248
|
-
|
|
2249
|
-
|
|
2250
|
-
|
|
2251
|
-
|
|
2252
|
-
|
|
2253
|
-
|
|
2254
|
-
React.createElement(MenuIcon, { type: "button", onClick: onClickSettings, icon: Setting2, text: settingsText })),
|
|
2255
|
-
React.createElement(Divider, null),
|
|
2260
|
+
React.createElement("div", null, userMenu === null || userMenu === void 0 ? void 0 : userMenu.map(function (_a, i) {
|
|
2261
|
+
var _b = _a.title, title = _b === void 0 ? '' : _b, items = _a.items;
|
|
2262
|
+
return (React.createElement("div", { key: i },
|
|
2263
|
+
React.createElement("p", null, title ? title : null),
|
|
2264
|
+
items.map(function (_a, i) {
|
|
2265
|
+
var slug = _a.slug, icon = _a.icon, props = __rest(_a, ["slug", "icon"]);
|
|
2266
|
+
return (React.createElement(Fragment, { key: i },
|
|
2267
|
+
React.createElement(MenuIcon, __assign({ icon: icon && icon in megaMenuUserLoggedIcons ? getIcons(icon) : icon, isActive: Array.isArray(slug) ? slug.includes(urlParam) : urlParam === slug }, props))));
|
|
2268
|
+
}),
|
|
2269
|
+
React.createElement(Divider, { spacing: 30 })));
|
|
2270
|
+
})),
|
|
2256
2271
|
React.createElement(MenuIcon, { type: "button", onClick: onClick, icon: LogoutIcon, text: logoutText })));
|
|
2257
2272
|
};
|
|
2258
2273
|
var ListMenuIcons = Component$1_;
|
|
@@ -2354,7 +2369,22 @@ var initialContext = {
|
|
|
2354
2369
|
jobsProps: {
|
|
2355
2370
|
tabs: []
|
|
2356
2371
|
},
|
|
2357
|
-
mainHeaderProps: {}
|
|
2372
|
+
mainHeaderProps: {},
|
|
2373
|
+
listMenuUserProps: {
|
|
2374
|
+
urlParam: '',
|
|
2375
|
+
menuItems: [],
|
|
2376
|
+
menuItems1440: [],
|
|
2377
|
+
logout: {
|
|
2378
|
+
logoutText: '',
|
|
2379
|
+
onClick: function () { return ({}); }
|
|
2380
|
+
},
|
|
2381
|
+
settings: {
|
|
2382
|
+
settingsText: '',
|
|
2383
|
+
onClick: function () { return ({}); }
|
|
2384
|
+
},
|
|
2385
|
+
profileImage: {},
|
|
2386
|
+
isAuthenticated: false
|
|
2387
|
+
}
|
|
2358
2388
|
};
|
|
2359
2389
|
var MegaMenuContext = createContext(initialContext);
|
|
2360
2390
|
var MegaMenuProvider = function (_a) {
|
|
@@ -2374,6 +2404,10 @@ var useMegaMenuMain = function () {
|
|
|
2374
2404
|
var mainHeaderProps = useContext(MegaMenuContext).mainHeaderProps;
|
|
2375
2405
|
return mainHeaderProps;
|
|
2376
2406
|
};
|
|
2407
|
+
var useLoggedInUser = function () {
|
|
2408
|
+
var listMenuUserProps = useContext(MegaMenuContext).listMenuUserProps;
|
|
2409
|
+
return listMenuUserProps;
|
|
2410
|
+
};
|
|
2377
2411
|
|
|
2378
2412
|
var styles$1M = {"button-link":"mg_button_link_button-link_1iyy1","button-link__text":"mg_button_link_button-link_text_1iyy1"};
|
|
2379
2413
|
|
|
@@ -4295,6 +4329,15 @@ Array(36).fill(megaMenuJobIcon);
|
|
|
4295
4329
|
Array(36).fill(megaMenuJobImage);
|
|
4296
4330
|
var megaMenuHelpIcons = [QuestionCircle, HeadsetBlackOutline];
|
|
4297
4331
|
var megaMenuJobsIcons = [LocationBlue, CourthouseBlue, BriefcaseBlue, BuildingBlue];
|
|
4332
|
+
var megaMenuUserLoggedIcons = {
|
|
4333
|
+
allJobs: AllJobs,
|
|
4334
|
+
suggestedJobs: SuggestedJobs,
|
|
4335
|
+
savedJobs: ArchiveTick,
|
|
4336
|
+
inProcess: TaskSquare,
|
|
4337
|
+
resume: DocumentText,
|
|
4338
|
+
settings: Setting2,
|
|
4339
|
+
help: MessageQuestion
|
|
4340
|
+
};
|
|
4298
4341
|
var mobileSocialIcons = [Book, HeadsetBlackOutline, QuestionCircle];
|
|
4299
4342
|
|
|
4300
4343
|
var CNM = /** @class */ (function () {
|
|
@@ -4406,9 +4449,9 @@ var styles$1d = {"magneto-ui-button":"mg_button_magneto-ui-button_2zrcl","magnet
|
|
|
4406
4449
|
var Component$1r = function (_a) {
|
|
4407
4450
|
var buttonText = _a.buttonText, buttonTitle = _a.buttonTitle, addHover = _a.addHover, onClick = _a.onClick, suffixIcon = _a.suffixIcon, prefixIcon = _a.prefixIcon, className = _a.className, _b = _a.iconSize, iconSize = _b === void 0 ? 20 : _b;
|
|
4408
4451
|
return (React.createElement("button", { className: "".concat(className, " ").concat(styles$1d['magneto-ui-button'], " ").concat(addHover ? styles$1d['hover-effect'] : '', " "), type: "button", onClick: onClick, title: buttonTitle },
|
|
4409
|
-
suffixIcon
|
|
4452
|
+
typeof suffixIcon === 'string' ? (React.createElement(IconItem, { size: iconSize, icon: suffixIcon, hover: addHover, className: styles$1d['magneto-ui-button__icon'] })) : (suffixIcon),
|
|
4410
4453
|
buttonText && React.createElement("p", { className: styles$1d['magneto-ui-button__mobile-text'] }, buttonText),
|
|
4411
|
-
prefixIcon
|
|
4454
|
+
typeof prefixIcon === 'string' ? (React.createElement(IconItem, { size: iconSize, icon: prefixIcon, hover: addHover, className: styles$1d['magneto-ui-button__icon'] })) : (prefixIcon)));
|
|
4412
4455
|
};
|
|
4413
4456
|
/**
|
|
4414
4457
|
* UI Atom Component of Save Button
|
|
@@ -8127,7 +8170,10 @@ var styles$1 = {"mega-menu-main-header":"mg_mega_menu_main_header_mega-menu-main
|
|
|
8127
8170
|
var Component$4 = function (_a) {
|
|
8128
8171
|
var toggleDrawerMenu = _a.toggleDrawerMenu;
|
|
8129
8172
|
var _b = useState(false), showSearchBar = _b[0], setShowSearchBar = _b[1];
|
|
8130
|
-
var _c =
|
|
8173
|
+
var _c = useState(false), toggleMobileDrawer = _c[0], setToggleMobileDrawer = _c[1];
|
|
8174
|
+
var _d = useMegaMenuMain(), homeUrl = _d.homeUrl, searchBarProps = _d.searchBarProps, loginProps = _d.loginProps;
|
|
8175
|
+
var listMenuUserProps = useLoggedInUser();
|
|
8176
|
+
var profileImage = listMenuUserProps.profileImage, isAuthenticated = listMenuUserProps.isAuthenticated;
|
|
8131
8177
|
var toggleSearchBar = function () {
|
|
8132
8178
|
setShowSearchBar(!showSearchBar);
|
|
8133
8179
|
};
|
|
@@ -8148,15 +8194,20 @@ var Component$4 = function (_a) {
|
|
|
8148
8194
|
});
|
|
8149
8195
|
var loginAction = (React.createElement(Link, { type: 'button', href: (loginProps === null || loginProps === void 0 ? void 0 : loginProps.loginUrl) || '', text: (loginProps === null || loginProps === void 0 ? void 0 : loginProps.loginText) || '', iconProps: __assign(__assign({}, SignInIcon), { size: 15 }), linkStyles: __assign(__assign({}, SignInStyles), { buttonColor: '#FFFFFF' }) }));
|
|
8150
8196
|
var logoutAction = (React.createElement(MainButton, __assign({}, SignUpButtonStyle, { buttonText: (loginProps === null || loginProps === void 0 ? void 0 : loginProps.signUpText) || '', onClick: (loginProps === null || loginProps === void 0 ? void 0 : loginProps.onClickSignUp) || undefined, buttonSize: 'medium', iconProps: __assign(__assign({}, SignUpButtonStyle.iconProps), { size: 15 }) })));
|
|
8197
|
+
var loginHeaderPopover = useMediaQuery(React.createElement(UserMenu, { listMenuUserProps: listMenuUserProps, profileImage: profileImage }), {
|
|
8198
|
+
md: React.createElement(Avatar, __assign({}, profileImage, { onClick: function () { return setToggleMobileDrawer(true); } }))
|
|
8199
|
+
});
|
|
8151
8200
|
return (React.createElement("div", { className: styles$1['mega-menu-main-header'] },
|
|
8152
8201
|
React.createElement("div", { className: styles$1['mega-menu-main-header__main'] },
|
|
8153
8202
|
LogoutHeaderMobileSearchbar,
|
|
8154
8203
|
LogoutHeaderMenuButton,
|
|
8155
8204
|
React.createElement("a", { href: homeUrl }, renderLogo),
|
|
8156
8205
|
React.createElement("div", { className: styles$1['mega-menu-main-header__search'] }, renderSearchBar)),
|
|
8157
|
-
React.createElement("div", { className: styles$1['mega-menu-main-header__login'] },
|
|
8206
|
+
React.createElement("div", { className: styles$1['mega-menu-main-header__login'] }, isAuthenticated ? (loginHeaderPopover) : (React.createElement(React.Fragment, null,
|
|
8158
8207
|
loginAction,
|
|
8159
|
-
logoutAction)))
|
|
8208
|
+
logoutAction))),
|
|
8209
|
+
React.createElement(MobileDrawer, { isOpen: toggleMobileDrawer, onClose: function () { return setToggleMobileDrawer(false); } },
|
|
8210
|
+
React.createElement(ListMenuIcons, __assign({}, listMenuUserProps)))));
|
|
8160
8211
|
};
|
|
8161
8212
|
var MegaMenuMainHeader = Component$4;
|
|
8162
8213
|
|
|
@@ -8377,5 +8428,5 @@ var Component = function (_a) {
|
|
|
8377
8428
|
};
|
|
8378
8429
|
var SuggestedJobsPage = Component;
|
|
8379
8430
|
|
|
8380
|
-
export { Actions, Alert, AlertJobStatus, AlertJobStatusContainer, AlertJobStatusIcon, AlphabetFilter, AnalystTemplate, ApplicationButton, ApplicationSubtitle, ApplicationSummary, ApplicationText, ApplicationTitle, Avatar, Badge, BarLoader, BrandMenu, BrandsContainer, BrandsMenuMobile, BrandsMenuPopover$1 as BrandsMenuPopover, Breadcrumb, Breadcrumbs, Button, Checkbox, CitiesDetailDrawer, ComparativeCounter, DateDropdown, DateInput, DatePicker, DatePickerResponsiveComponent, Divider, Drawer$1 as Drawer, DrawerMenu, EExpandableInfoSize, EExpandableInfoVariant, ERadioType, EmptyResult as EmptyResults, ExpandableInfo, FilterActions, FilterCard, FilterContainerMenu, FilterHeader, FilterMenuItem, FilterSearchItem, FlatLoader, Footer, FooterMenuLinks, FraudCardJob, FrequentSearch, HeaderAnalyst, HeaderDrawerCompany, HeaderDrawerTabs, HeaderTab, HeaderTabs, IconItem, Image, Input, 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, Radio, 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, Timeline, TimelineEvent, ToggleButton, ToggleButtonList, Tooltip, UserMenu, UserMenuAnalyst, UserMenuButtonAnalyst, UserMenuWrapperAnalyst, UserTermCheck, UserTermContent, UserTermHighlight, UserTermSubTitle, UserTermSubmit, UserTermText, UserTermTitle, UserTermUList, UserTerms, useMediaQuery, withClickOut, withMegaMenuSideCards };
|
|
8431
|
+
export { Actions, Alert, AlertJobStatus, AlertJobStatusContainer, AlertJobStatusIcon, AlphabetFilter, AnalystTemplate, ApplicationButton, ApplicationSubtitle, ApplicationSummary, ApplicationText, ApplicationTitle, Avatar, Badge, BarLoader, BrandMenu, BrandsContainer, BrandsMenuMobile, BrandsMenuPopover$1 as BrandsMenuPopover, Breadcrumb, Breadcrumbs, Button, ButtonLink, Checkbox, CitiesDetailDrawer, ComparativeCounter, DateDropdown, DateInput, DatePicker, DatePickerResponsiveComponent, Divider, Drawer$1 as Drawer, DrawerMenu, EExpandableInfoSize, EExpandableInfoVariant, ERadioType, EmptyResult as EmptyResults, ExpandableInfo, FilterActions, FilterCard, FilterContainerMenu, FilterHeader, FilterMenuItem, FilterSearchItem, FlatLoader, Footer, FooterMenuLinks, FraudCardJob, FrequentSearch, HeaderAnalyst, HeaderDrawerCompany, HeaderDrawerTabs, HeaderTab, HeaderTabs, IconItem, Image, Input, 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, Radio, 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, Timeline, TimelineEvent, ToggleButton, ToggleButtonList, Tooltip, UserMenu, UserMenuAnalyst, UserMenuButtonAnalyst, UserMenuWrapperAnalyst, UserTermCheck, UserTermContent, UserTermHighlight, UserTermSubTitle, UserTermSubmit, UserTermText, UserTermTitle, UserTermUList, UserTerms, useMediaQuery, withClickOut, withMegaMenuSideCards };
|
|
8381
8432
|
//# sourceMappingURL=index.js.map
|