magneto365.ui 2.45.2 → 2.46.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 +904 -701
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/types/components/UI/atoms/Checkbox/Checkbox.component.d.ts +3 -0
- package/dist/cjs/types/components/UI/atoms/Checkbox/Checkbox.interface.d.ts +17 -0
- package/dist/cjs/types/components/UI/atoms/Checkbox/index.d.ts +2 -0
- package/dist/cjs/types/components/UI/molecules/MobileDrawer/MobileDrawer.interface.d.ts +2 -1
- package/dist/cjs/types/components/UI/organism/Select/Select.component.d.ts +17 -0
- package/dist/cjs/types/components/UI/organism/Select/Select.context.d.ts +33 -0
- package/dist/cjs/types/components/UI/organism/Select/Select.interface.d.ts +18 -0
- package/dist/cjs/types/components/UI/organism/Select/children/SelectClickout/SelectClickout.component.d.ts +7 -0
- package/dist/cjs/types/components/UI/organism/Select/children/SelectClickout/index.d.ts +1 -0
- package/dist/cjs/types/components/UI/organism/Select/children/SelectDrawer/SelectDrawer.d.ts +4 -0
- package/dist/cjs/types/components/UI/organism/Select/children/SelectDrawer/SelectDrawer.interface.d.ts +5 -0
- package/dist/cjs/types/components/UI/organism/Select/children/SelectDrawer/index.d.ts +2 -0
- package/dist/cjs/types/components/UI/organism/Select/children/SelectInput/SelectInput.component.d.ts +2 -0
- package/dist/cjs/types/components/UI/organism/Select/children/SelectInput/SelectInput.interface.d.ts +36 -0
- package/dist/cjs/types/components/UI/organism/Select/children/SelectListCheck/SelectListCheck.component.d.ts +2 -0
- package/dist/cjs/types/components/UI/organism/Select/children/SelectListCheck/SelectListCheck.interface.d.ts +8 -0
- package/dist/cjs/types/components/UI/organism/Select/children/SelectListCheck/index.d.ts +2 -0
- package/dist/cjs/types/components/UI/organism/Select/index.d.ts +2 -0
- package/dist/cjs/types/components/UI/organism/index.d.ts +1 -0
- package/dist/cjs/types/constants/stories/Select2Multiple.constants.d.ts +5 -0
- package/dist/cjs/types/shared/utils/common/classNames.util.d.ts +3 -0
- package/dist/cjs/types/shared/utils/common/index.d.ts +2 -0
- package/dist/cjs/types/shared/utils/common/stub.util.d.ts +2 -0
- package/dist/cjs/types/shared/utils/storybook/withControlField.hoc.d.ts +6 -3
- package/dist/esm/css/magneto.ui.lib.min.css +1 -1
- package/dist/esm/index.js +904 -702
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/components/UI/atoms/Checkbox/Checkbox.component.d.ts +3 -0
- package/dist/esm/types/components/UI/atoms/Checkbox/Checkbox.interface.d.ts +17 -0
- package/dist/esm/types/components/UI/atoms/Checkbox/index.d.ts +2 -0
- package/dist/esm/types/components/UI/molecules/MobileDrawer/MobileDrawer.interface.d.ts +2 -1
- package/dist/esm/types/components/UI/organism/Select/Select.component.d.ts +17 -0
- package/dist/esm/types/components/UI/organism/Select/Select.context.d.ts +33 -0
- package/dist/esm/types/components/UI/organism/Select/Select.interface.d.ts +18 -0
- package/dist/esm/types/components/UI/organism/Select/children/SelectClickout/SelectClickout.component.d.ts +7 -0
- package/dist/esm/types/components/UI/organism/Select/children/SelectClickout/index.d.ts +1 -0
- package/dist/esm/types/components/UI/organism/Select/children/SelectDrawer/SelectDrawer.d.ts +4 -0
- package/dist/esm/types/components/UI/organism/Select/children/SelectDrawer/SelectDrawer.interface.d.ts +5 -0
- package/dist/esm/types/components/UI/organism/Select/children/SelectDrawer/index.d.ts +2 -0
- package/dist/esm/types/components/UI/organism/Select/children/SelectInput/SelectInput.component.d.ts +2 -0
- package/dist/esm/types/components/UI/organism/Select/children/SelectInput/SelectInput.interface.d.ts +36 -0
- package/dist/esm/types/components/UI/organism/Select/children/SelectListCheck/SelectListCheck.component.d.ts +2 -0
- package/dist/esm/types/components/UI/organism/Select/children/SelectListCheck/SelectListCheck.interface.d.ts +8 -0
- package/dist/esm/types/components/UI/organism/Select/children/SelectListCheck/index.d.ts +2 -0
- package/dist/esm/types/components/UI/organism/Select/index.d.ts +2 -0
- package/dist/esm/types/components/UI/organism/index.d.ts +1 -0
- package/dist/esm/types/constants/stories/Select2Multiple.constants.d.ts +5 -0
- package/dist/esm/types/shared/utils/common/classNames.util.d.ts +3 -0
- package/dist/esm/types/shared/utils/common/index.d.ts +2 -0
- package/dist/esm/types/shared/utils/common/stub.util.d.ts +2 -0
- package/dist/esm/types/shared/utils/storybook/withControlField.hoc.d.ts +6 -3
- package/dist/index.d.ts +113 -2
- package/package.json +1 -1
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
export interface ICheckbox extends Omit<React.InputHTMLAttributes<HTMLInputElement>, 'onChange'> {
|
|
3
|
+
/**
|
|
4
|
+
* event to controll the change value component.
|
|
5
|
+
* @param checked
|
|
6
|
+
* @returns
|
|
7
|
+
*/
|
|
8
|
+
onChange?: (checked: boolean) => void;
|
|
9
|
+
/**
|
|
10
|
+
* change UI behavior with this prop.
|
|
11
|
+
*/
|
|
12
|
+
type?: 'box' | 'background';
|
|
13
|
+
/**
|
|
14
|
+
* change display behavior for checkbox.
|
|
15
|
+
*/
|
|
16
|
+
display?: 'inline' | 'block';
|
|
17
|
+
}
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
1
2
|
export interface IMoblieDrawer {
|
|
2
3
|
className?: string;
|
|
3
4
|
/**
|
|
@@ -11,7 +12,7 @@ export interface IMoblieDrawer {
|
|
|
11
12
|
/**
|
|
12
13
|
* can receive components inside the drawer
|
|
13
14
|
*/
|
|
14
|
-
children: JSX.Element | JSX.Element[];
|
|
15
|
+
children: JSX.Element | JSX.Element[] | React.ReactNode;
|
|
15
16
|
/**
|
|
16
17
|
* this property blocks fn onClose from background
|
|
17
18
|
*/
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { ISelect } from './Select.interface';
|
|
3
|
+
import { ISelectInput } from './children/SelectInput/SelectInput.interface';
|
|
4
|
+
/**
|
|
5
|
+
* @experimental this component is early, so that the interface component and behavrior could change.
|
|
6
|
+
* @deprecated this function will change soon.
|
|
7
|
+
*/
|
|
8
|
+
export declare const Select: (<T>({ children, renderSelect, placeholder, options, value, onChange, inputReadonly }: ISelect<T>) => JSX.Element) & {
|
|
9
|
+
useContext: <T_1>() => import("./Select.context").ISelectContext<T_1>;
|
|
10
|
+
Input: <T_2>({ onChange, value, className, onClick, open, actionIcon, selected, getLabel, readOnly, ...rest }: ISelectInput<T_2>) => JSX.Element;
|
|
11
|
+
Clickout: React.FC<{
|
|
12
|
+
clickOut: boolean;
|
|
13
|
+
setClickOut: (value: boolean) => void;
|
|
14
|
+
}>;
|
|
15
|
+
Drawer: React.FC<import("./children/SelectDrawer").ISelectDrawer>;
|
|
16
|
+
ListCheck: <T_3>({ className, renderItem, filter }: import("./children/SelectListCheck").ISelect2ListCheck<T_3>) => JSX.Element;
|
|
17
|
+
};
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { ISelect } from './Select.interface';
|
|
3
|
+
export interface ISelectContext<T> {
|
|
4
|
+
value: ISelect<T>['value'];
|
|
5
|
+
/**
|
|
6
|
+
*
|
|
7
|
+
* @param value
|
|
8
|
+
* @returns
|
|
9
|
+
*/
|
|
10
|
+
onChange: (value: ISelectContext<T>['value']) => void;
|
|
11
|
+
/**
|
|
12
|
+
* current options to display in select list components.
|
|
13
|
+
*/
|
|
14
|
+
options: ISelect<T>['options'];
|
|
15
|
+
/**
|
|
16
|
+
* input search values, it works for make filters.
|
|
17
|
+
*/
|
|
18
|
+
search: string;
|
|
19
|
+
/**
|
|
20
|
+
* @param search current search input value.
|
|
21
|
+
* @returns
|
|
22
|
+
*/
|
|
23
|
+
onSearch: (search: string | ((current: string) => string)) => void;
|
|
24
|
+
open: boolean;
|
|
25
|
+
/**
|
|
26
|
+
*
|
|
27
|
+
* @param value current state from Drawer (open/close).
|
|
28
|
+
* @returns
|
|
29
|
+
*/
|
|
30
|
+
onSwitch: (value: boolean | ((current: boolean) => boolean)) => void;
|
|
31
|
+
}
|
|
32
|
+
export declare const SelectContext: React.Context<ISelectContext<any>>;
|
|
33
|
+
export declare const useSelectContext: <T>() => ISelectContext<T>;
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { ISelectInput } from './children/SelectInput/SelectInput.interface';
|
|
3
|
+
export interface ISelect<T> {
|
|
4
|
+
value: IValueSelect<T>[];
|
|
5
|
+
onChange?: (value: IValueSelect<T>[]) => void;
|
|
6
|
+
options: IOption<T>[];
|
|
7
|
+
placeholder?: string;
|
|
8
|
+
renderSelect?: <T>(props: ISelectInput<T>) => React.ReactNode;
|
|
9
|
+
inputReadonly?: boolean;
|
|
10
|
+
children?: React.ReactNode;
|
|
11
|
+
}
|
|
12
|
+
export interface IValueSelect<T> {
|
|
13
|
+
id: number | string;
|
|
14
|
+
value: T;
|
|
15
|
+
}
|
|
16
|
+
export interface IOption<T> extends IValueSelect<T> {
|
|
17
|
+
label?: string;
|
|
18
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default as SelectClickout } from './SelectClickout.component';
|
package/dist/esm/types/components/UI/organism/Select/children/SelectInput/SelectInput.interface.d.ts
ADDED
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
import { IInput } from '@components/UI/molecules/Input/Input.interface';
|
|
2
|
+
import { ISelect, IValueSelect } from '../../Select.interface';
|
|
3
|
+
export interface ISelectInput<T> extends IInput {
|
|
4
|
+
/**
|
|
5
|
+
* placeholder for input.
|
|
6
|
+
*/
|
|
7
|
+
placeholder: IInput['placeholder'];
|
|
8
|
+
/**
|
|
9
|
+
* type for input.
|
|
10
|
+
*/
|
|
11
|
+
type: IInput['type'];
|
|
12
|
+
/**
|
|
13
|
+
* to know if the select is open.
|
|
14
|
+
*/
|
|
15
|
+
open?: boolean;
|
|
16
|
+
/**
|
|
17
|
+
* select value.
|
|
18
|
+
*/
|
|
19
|
+
selected: ISelect<T>['value'];
|
|
20
|
+
/**
|
|
21
|
+
* onClick on input container.
|
|
22
|
+
*/
|
|
23
|
+
onClick: () => void;
|
|
24
|
+
/**
|
|
25
|
+
* display values selected in input.
|
|
26
|
+
*/
|
|
27
|
+
readonly?: boolean;
|
|
28
|
+
/**
|
|
29
|
+
* The select value is generic, so for display correctly the label in input
|
|
30
|
+
* use this function.
|
|
31
|
+
* @param value current values selected
|
|
32
|
+
* @default (value) => value.map(select => select.value).join(', ')
|
|
33
|
+
* @returns
|
|
34
|
+
*/
|
|
35
|
+
getLabel?: (value: IValueSelect<T>[]) => string;
|
|
36
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { IOption } from '../../Select.interface';
|
|
2
|
+
export interface ISelect2ListCheck<T> {
|
|
3
|
+
className?: string;
|
|
4
|
+
filter?: (option: IOption<T>, searchValue: string, value?: IOption<T> | IOption<T>[] | undefined) => boolean;
|
|
5
|
+
renderItem?: (option: IOption<T>) => JSX.Element;
|
|
6
|
+
clickOut?: boolean;
|
|
7
|
+
setClickOut?: (clickOut: boolean) => void;
|
|
8
|
+
}
|
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
2
|
+
declare type ControllerField = {
|
|
3
|
+
valueNameProp?: string;
|
|
4
|
+
onChangeNameProp?: string;
|
|
5
|
+
};
|
|
6
|
+
export declare const withControlField: (WrappedComponent: React.FC<Record<string, unknown>>) => ({ onChangeNameProp, valueNameProp, ...args }: Record<string, unknown> & ControllerField) => JSX.Element;
|
|
7
|
+
export {};
|
package/dist/index.d.ts
CHANGED
|
@@ -17,6 +17,7 @@ import { IJobVideo as IJobVideo$1 } from '@components/UI/molecules/JobVideo';
|
|
|
17
17
|
import { IMobileDatePicker as IMobileDatePicker$2 } from '@components/UI/organism/MobileDatePicker/MobileDatePicker.interface';
|
|
18
18
|
import { IActions as IActions$1 } from '@components/UI/molecules/Actions';
|
|
19
19
|
import { INavMenuAnalystProps as INavMenuAnalystProps$1 } from '@components/UI/organism/NavMenuAnalyst';
|
|
20
|
+
import { IInput as IInput$1 } from '@components/UI/molecules/Input/Input.interface';
|
|
20
21
|
import { IJobCard as IJobCard$1 } from '@components/UI/molecules/JobCard/JobCard.interface';
|
|
21
22
|
import { ISortBar as ISortBar$1 } from '@components/UI/template/SortBar/SortBar.interface';
|
|
22
23
|
import { ISideFilter as ISideFilter$1 } from '@components/UI/template';
|
|
@@ -2329,7 +2330,7 @@ interface IMoblieDrawer {
|
|
|
2329
2330
|
/**
|
|
2330
2331
|
* can receive components inside the drawer
|
|
2331
2332
|
*/
|
|
2332
|
-
children: JSX.Element | JSX.Element[];
|
|
2333
|
+
children: JSX.Element | JSX.Element[] | React.ReactNode;
|
|
2333
2334
|
/**
|
|
2334
2335
|
* this property blocks fn onClose from background
|
|
2335
2336
|
*/
|
|
@@ -3681,6 +3682,116 @@ declare type StepDetails = {
|
|
|
3681
3682
|
|
|
3682
3683
|
declare const Timeline: React$1.FC<ITimelineProps>;
|
|
3683
3684
|
|
|
3685
|
+
interface ISelectInput<T> extends IInput$1 {
|
|
3686
|
+
/**
|
|
3687
|
+
* placeholder for input.
|
|
3688
|
+
*/
|
|
3689
|
+
placeholder: IInput$1['placeholder'];
|
|
3690
|
+
/**
|
|
3691
|
+
* type for input.
|
|
3692
|
+
*/
|
|
3693
|
+
type: IInput$1['type'];
|
|
3694
|
+
/**
|
|
3695
|
+
* to know if the select is open.
|
|
3696
|
+
*/
|
|
3697
|
+
open?: boolean;
|
|
3698
|
+
/**
|
|
3699
|
+
* select value.
|
|
3700
|
+
*/
|
|
3701
|
+
selected: ISelect<T>['value'];
|
|
3702
|
+
/**
|
|
3703
|
+
* onClick on input container.
|
|
3704
|
+
*/
|
|
3705
|
+
onClick: () => void;
|
|
3706
|
+
/**
|
|
3707
|
+
* display values selected in input.
|
|
3708
|
+
*/
|
|
3709
|
+
readonly?: boolean;
|
|
3710
|
+
/**
|
|
3711
|
+
* The select value is generic, so for display correctly the label in input
|
|
3712
|
+
* use this function.
|
|
3713
|
+
* @param value current values selected
|
|
3714
|
+
* @default (value) => value.map(select => select.value).join(', ')
|
|
3715
|
+
* @returns
|
|
3716
|
+
*/
|
|
3717
|
+
getLabel?: (value: IValueSelect<T>[]) => string;
|
|
3718
|
+
}
|
|
3719
|
+
|
|
3720
|
+
interface ISelect<T> {
|
|
3721
|
+
value: IValueSelect<T>[];
|
|
3722
|
+
onChange?: (value: IValueSelect<T>[]) => void;
|
|
3723
|
+
options: IOption<T>[];
|
|
3724
|
+
placeholder?: string;
|
|
3725
|
+
renderSelect?: <T>(props: ISelectInput<T>) => React$1.ReactNode;
|
|
3726
|
+
inputReadonly?: boolean;
|
|
3727
|
+
children?: React$1.ReactNode;
|
|
3728
|
+
}
|
|
3729
|
+
interface IValueSelect<T> {
|
|
3730
|
+
id: number | string;
|
|
3731
|
+
value: T;
|
|
3732
|
+
}
|
|
3733
|
+
interface IOption<T> extends IValueSelect<T> {
|
|
3734
|
+
label?: string;
|
|
3735
|
+
}
|
|
3736
|
+
|
|
3737
|
+
interface ISelect2ListCheck<T> {
|
|
3738
|
+
className?: string;
|
|
3739
|
+
filter?: (option: IOption<T>, searchValue: string, value?: IOption<T> | IOption<T>[] | undefined) => boolean;
|
|
3740
|
+
renderItem?: (option: IOption<T>) => JSX.Element;
|
|
3741
|
+
clickOut?: boolean;
|
|
3742
|
+
setClickOut?: (clickOut: boolean) => void;
|
|
3743
|
+
}
|
|
3744
|
+
|
|
3745
|
+
interface ISelectDrawer {
|
|
3746
|
+
className?: string;
|
|
3747
|
+
children: React.ReactNode;
|
|
3748
|
+
}
|
|
3749
|
+
|
|
3750
|
+
interface ISelectContext<T> {
|
|
3751
|
+
value: ISelect<T>['value'];
|
|
3752
|
+
/**
|
|
3753
|
+
*
|
|
3754
|
+
* @param value
|
|
3755
|
+
* @returns
|
|
3756
|
+
*/
|
|
3757
|
+
onChange: (value: ISelectContext<T>['value']) => void;
|
|
3758
|
+
/**
|
|
3759
|
+
* current options to display in select list components.
|
|
3760
|
+
*/
|
|
3761
|
+
options: ISelect<T>['options'];
|
|
3762
|
+
/**
|
|
3763
|
+
* input search values, it works for make filters.
|
|
3764
|
+
*/
|
|
3765
|
+
search: string;
|
|
3766
|
+
/**
|
|
3767
|
+
* @param search current search input value.
|
|
3768
|
+
* @returns
|
|
3769
|
+
*/
|
|
3770
|
+
onSearch: (search: string | ((current: string) => string)) => void;
|
|
3771
|
+
open: boolean;
|
|
3772
|
+
/**
|
|
3773
|
+
*
|
|
3774
|
+
* @param value current state from Drawer (open/close).
|
|
3775
|
+
* @returns
|
|
3776
|
+
*/
|
|
3777
|
+
onSwitch: (value: boolean | ((current: boolean) => boolean)) => void;
|
|
3778
|
+
}
|
|
3779
|
+
|
|
3780
|
+
/**
|
|
3781
|
+
* @experimental this component is early, so that the interface component and behavrior could change.
|
|
3782
|
+
* @deprecated this function will change soon.
|
|
3783
|
+
*/
|
|
3784
|
+
declare const Select: (<T>({ children, renderSelect, placeholder, options, value, onChange, inputReadonly }: ISelect<T>) => JSX.Element) & {
|
|
3785
|
+
useContext: <T_1>() => ISelectContext<T_1>;
|
|
3786
|
+
Input: <T_2>({ onChange, value, className, onClick, open, actionIcon, selected, getLabel, readOnly, ...rest }: ISelectInput<T_2>) => JSX.Element;
|
|
3787
|
+
Clickout: React$1.FC<{
|
|
3788
|
+
clickOut: boolean;
|
|
3789
|
+
setClickOut: (value: boolean) => void;
|
|
3790
|
+
}>;
|
|
3791
|
+
Drawer: React$1.FC<ISelectDrawer>;
|
|
3792
|
+
ListCheck: <T_3>({ className, renderItem, filter }: ISelect2ListCheck<T_3>) => JSX.Element;
|
|
3793
|
+
};
|
|
3794
|
+
|
|
3684
3795
|
interface IMenuUser {
|
|
3685
3796
|
/**
|
|
3686
3797
|
* menu items props
|
|
@@ -4433,4 +4544,4 @@ declare const withMegaMenuContainer: <T>(WrappedComponent: React$1.FC<T>) => Rea
|
|
|
4433
4544
|
wrapperProps: T;
|
|
4434
4545
|
}>;
|
|
4435
4546
|
|
|
4436
|
-
export { Actions, Alert, AnalystTemplate, Avatar, BarLoader, BrandMenu, BrandsContainer, BrandsMenuMobile, _default$2 as BrandsMenuPopover, Breadcrumb, Breadcrumbs, Button, ButtonElement, CitiesDetailDrawer, ComparativeCounter, ComponentProps, DateDropdown, DateInput, DatePicker, DatePickerResponsiveComponent, Divider, Drawer, DrawerMenu, EAlertType, ERadioType, EmptyResult as EmptyResults, FilterCard, FilterContainerMenu, FilterHeader, FilterMenuItem, FilterSearchItem, FlatLoader, Footer, FooterMenuLinks, FrequentSearch, HeaderAnalyst, HeaderDrawerCompany, HeaderDrawerTabs, HeaderTab, HeaderTabItem, HeaderTabs, IActions, IAlert, IAnalystProviderProps, IAnalystTemplateProps, IAvatar, IBreadcrumb, IBreadcrumbs, IBtnPaginationProps, IButton, ICitiesDetailDrawer, ICityDetail, ICompanyAnalyst, ICreatePaginationProps, ICreatePaginationResult, IDateDropdown, IDateInput, IDateList, IDatePicker, IDatePickerComponent, IDefaultFilter, IDefaultOrder, IDetailList, IDrawer, IDrawerOrganism, IDrawerPortal, IDynamicUrl, IEmptyResults, IFieldsAlias, IFilter, IFilterCard, IFilterHeader, IFilterMenuItem, IFilterRepository, IFilterSearchItem, IFilterValue, IFooterList, IFrequentSearch, IGetOptionsOnSearchProps, IHeaderAnalystProps, IHeaderDrawerCompany, IHeaderDrawerTabs, IHeaderTab, IHeaderTabs, IImage, IJobApplyCard, IJobCard, IJobCompanyHeader, IJobCompanyLogo, IJobDetailCard, IJobDetails, IJobDetailsDrawer, IJobFooterCard, IJobHeader, IJobSkillsCard, IJobVideo, IJobsActions, IJobsPage, ILinkProps, IListIcon, IListIconLink, IListMenuIcons, IListMenuItems, ILoading, ILoginHeader, ILoginJobsHeader, ILoginJobsTemplate, ILogoAnalystProps, ILogoComponent, ILogout, ILogoutHeader, ILogoutJobsHeader, ILogoutJobsTemplate, ILogoutTemplate, IMainButton, IMegaMenu, IMegaMenuCard, IMegaMenuCards, IMegaMenuTab, IMenuCollapseChildren, IMenuDropdownProps, IMenuIcon, IMenuItem, IMenuItems, IMenuSearch, IMenuUser, IMessage, IMobileDatePicker, IMobileDrawerMenu, IMobileJobDetailsDrawer, IMobileJobDetailsHeader, IMobileSearchbar, IMobileSortMenu, IMoblieDrawer, IModalAnalyst, IModalAnalystProps, IModalAnalystScreen, IModalProps, IMultiRangeSlider, INavMMenuAnalystRegionModal, INavMenuAnalystIcons, INavMenuAnalystOption, INavMenuAnalystProps, INavMenuAnalystQueryString, INavMenuAnalystRegion, INavMenuAnalystRegionModalProps, INavMenuAnalystSection, INavMenuDrawerAnalystProps, IOptionValues, IPaginationProps, IParagraph, IPopover, IRadioCommonProps, IRadioProps, ISaveButton, ISearchItem, ISearchRenderTypeOption, ISearchRenderTypeProps, ISearchbar, ISetIsApplied, ISettings, IShareButton, IShareLink, IShareLinksActions, ISharePopover, ISideFilter, ISimilarJobsCard, ISkill, ISortBar, ISortMenu, ISortMenuItem, ISubCompanyAnalyst, ISuggestedJobsPage, ISwitch, ITab, ITabButton, IUnApplyWithChild, IUserAnalyst, IUserMenuAnalystAction, IUserMenuAnalystProps, IUserMenuAnalystQueryString, IUserMenuAnalystSection, IUserMenuButtonAnalystProps, IUserMenuWrapperAnalystProps, IVacancies$1 as IVacancies, IconItem, IconProps, IlistMenuUserProps, Image, Input, InputPlus, InputSearch, JobActions, JobApplyCard, JobCard, JobCardDesktop, JobCardMobile, JobCompanyHeader, JobCompanyLogo, JobDetailCard, JobDetailContainer, JobDetails, JobDetailsDrawer, JobFooterCard, JobHeader, JobRequirementsElement, JobSkillsCard, JobVideo, JobsPage, Link, LinkElement, LinkType, ListIconLink, ListMenuIcons, ListMenuItems, ListMenuText, ListSortMenu, Loading, LoginHeader, LoginJobsHeader, LoginJobsTemplate, LoginTemplate, LogoComponent, LogoutHeader, LogoutJobsHeader, LogoutJobsTemplate, LogoutTemplate, MagnetoResolution, MagnetoSocialMedia, ContextAppProvider as MagnetoUIProvider, MainButton, MegaMenu, MegaMenuCard, MegaMenuCards, MegaMenuJobsTabs, MegaMenuPopover, MegaMenuTab, MenuDropdown, MenuIcon, MenuItem, MenuItemInfo, MenuSearch, Message, MobileDatePicker, MobileDrawer, MobileDrawerMenu, MobileJobDetailsDrawer, MobileJobDetailsHeader, MobileSearchbar, MobileSortMenu, _default$1 as Modal, ModalAnalyst, MultiRangeSlider, MultipleSelectionEntry, NavMenuAnalyst, NavMenuAnalystRegionModal, NavMenuDrawerAnalyst, OneSelectionEntry, Pagination, Paragraph, Popover, Radio, RightsReservedText, SaveButton, ScoreLevel, ScoreLevelStatic, SearchButton, SearchItem, Searchbar, Select2, ShareButton, SharePopover, SideFilter, SimilarJobs, SimilarJobsCard, Skill, SortBar, _default as SortMenu, SuggestedJobsPage, Switch, Tab, TabButton, TabButtonElement, Tags as Tag, TextArea, Timeline, TimelineEvent, TimelineEventProps, TimelineEventStatus, ToggleButton, Tooltip, UserMenu, UserMenuAnalyst, UserMenuButtonAnalyst, UserMenuWrapperAnalyst, message, useMediaQuery, withClickOut, withMegaMenuContainer };
|
|
4547
|
+
export { Actions, Alert, AnalystTemplate, Avatar, BarLoader, BrandMenu, BrandsContainer, BrandsMenuMobile, _default$2 as BrandsMenuPopover, Breadcrumb, Breadcrumbs, Button, ButtonElement, CitiesDetailDrawer, ComparativeCounter, ComponentProps, DateDropdown, DateInput, DatePicker, DatePickerResponsiveComponent, Divider, Drawer, DrawerMenu, EAlertType, ERadioType, EmptyResult as EmptyResults, FilterCard, FilterContainerMenu, FilterHeader, FilterMenuItem, FilterSearchItem, FlatLoader, Footer, FooterMenuLinks, FrequentSearch, HeaderAnalyst, HeaderDrawerCompany, HeaderDrawerTabs, HeaderTab, HeaderTabItem, HeaderTabs, IActions, IAlert, IAnalystProviderProps, IAnalystTemplateProps, IAvatar, IBreadcrumb, IBreadcrumbs, IBtnPaginationProps, IButton, ICitiesDetailDrawer, ICityDetail, ICompanyAnalyst, ICreatePaginationProps, ICreatePaginationResult, IDateDropdown, IDateInput, IDateList, IDatePicker, IDatePickerComponent, IDefaultFilter, IDefaultOrder, IDetailList, IDrawer, IDrawerOrganism, IDrawerPortal, IDynamicUrl, IEmptyResults, IFieldsAlias, IFilter, IFilterCard, IFilterHeader, IFilterMenuItem, IFilterRepository, IFilterSearchItem, IFilterValue, IFooterList, IFrequentSearch, IGetOptionsOnSearchProps, IHeaderAnalystProps, IHeaderDrawerCompany, IHeaderDrawerTabs, IHeaderTab, IHeaderTabs, IImage, IJobApplyCard, IJobCard, IJobCompanyHeader, IJobCompanyLogo, IJobDetailCard, IJobDetails, IJobDetailsDrawer, IJobFooterCard, IJobHeader, IJobSkillsCard, IJobVideo, IJobsActions, IJobsPage, ILinkProps, IListIcon, IListIconLink, IListMenuIcons, IListMenuItems, ILoading, ILoginHeader, ILoginJobsHeader, ILoginJobsTemplate, ILogoAnalystProps, ILogoComponent, ILogout, ILogoutHeader, ILogoutJobsHeader, ILogoutJobsTemplate, ILogoutTemplate, IMainButton, IMegaMenu, IMegaMenuCard, IMegaMenuCards, IMegaMenuTab, IMenuCollapseChildren, IMenuDropdownProps, IMenuIcon, IMenuItem, IMenuItems, IMenuSearch, IMenuUser, IMessage, IMobileDatePicker, IMobileDrawerMenu, IMobileJobDetailsDrawer, IMobileJobDetailsHeader, IMobileSearchbar, IMobileSortMenu, IMoblieDrawer, IModalAnalyst, IModalAnalystProps, IModalAnalystScreen, IModalProps, IMultiRangeSlider, INavMMenuAnalystRegionModal, INavMenuAnalystIcons, INavMenuAnalystOption, INavMenuAnalystProps, INavMenuAnalystQueryString, INavMenuAnalystRegion, INavMenuAnalystRegionModalProps, INavMenuAnalystSection, INavMenuDrawerAnalystProps, IOption, IOptionValues, IPaginationProps, IParagraph, IPopover, IRadioCommonProps, IRadioProps, ISaveButton, ISearchItem, ISearchRenderTypeOption, ISearchRenderTypeProps, ISearchbar, ISelect, ISetIsApplied, ISettings, IShareButton, IShareLink, IShareLinksActions, ISharePopover, ISideFilter, ISimilarJobsCard, ISkill, ISortBar, ISortMenu, ISortMenuItem, ISubCompanyAnalyst, ISuggestedJobsPage, ISwitch, ITab, ITabButton, IUnApplyWithChild, IUserAnalyst, IUserMenuAnalystAction, IUserMenuAnalystProps, IUserMenuAnalystQueryString, IUserMenuAnalystSection, IUserMenuButtonAnalystProps, IUserMenuWrapperAnalystProps, IVacancies$1 as IVacancies, IValueSelect, IconItem, IconProps, IlistMenuUserProps, Image, Input, InputPlus, InputSearch, JobActions, JobApplyCard, JobCard, JobCardDesktop, JobCardMobile, JobCompanyHeader, JobCompanyLogo, JobDetailCard, JobDetailContainer, JobDetails, JobDetailsDrawer, JobFooterCard, JobHeader, JobRequirementsElement, JobSkillsCard, JobVideo, JobsPage, Link, LinkElement, LinkType, ListIconLink, ListMenuIcons, ListMenuItems, ListMenuText, ListSortMenu, Loading, LoginHeader, LoginJobsHeader, LoginJobsTemplate, LoginTemplate, LogoComponent, LogoutHeader, LogoutJobsHeader, LogoutJobsTemplate, LogoutTemplate, MagnetoResolution, MagnetoSocialMedia, ContextAppProvider as MagnetoUIProvider, MainButton, MegaMenu, MegaMenuCard, MegaMenuCards, MegaMenuJobsTabs, MegaMenuPopover, MegaMenuTab, MenuDropdown, MenuIcon, MenuItem, MenuItemInfo, MenuSearch, Message, MobileDatePicker, MobileDrawer, MobileDrawerMenu, MobileJobDetailsDrawer, MobileJobDetailsHeader, MobileSearchbar, MobileSortMenu, _default$1 as Modal, ModalAnalyst, MultiRangeSlider, MultipleSelectionEntry, NavMenuAnalyst, NavMenuAnalystRegionModal, NavMenuDrawerAnalyst, OneSelectionEntry, Pagination, Paragraph, Popover, Radio, RightsReservedText, SaveButton, ScoreLevel, ScoreLevelStatic, SearchButton, SearchItem, Searchbar, Select, Select2, ShareButton, SharePopover, SideFilter, SimilarJobs, SimilarJobsCard, Skill, SortBar, _default as SortMenu, SuggestedJobsPage, Switch, Tab, TabButton, TabButtonElement, Tags as Tag, TextArea, Timeline, TimelineEvent, TimelineEventProps, TimelineEventStatus, ToggleButton, Tooltip, UserMenu, UserMenuAnalyst, UserMenuButtonAnalyst, UserMenuWrapperAnalyst, message, useMediaQuery, withClickOut, withMegaMenuContainer };
|
package/package.json
CHANGED