magneto365.ui 2.48.9 → 2.50.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 +1152 -1047
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/types/components/UI/organism/UserTerms/UserTerms.component.d.ts +12 -0
- package/dist/cjs/types/components/UI/organism/UserTerms/UserTerms.interface.d.ts +55 -0
- package/dist/cjs/types/components/UI/organism/UserTerms/children/UserTermCheck/UserTermCheck.component.d.ts +3 -0
- package/dist/cjs/types/components/UI/organism/UserTerms/children/UserTermCheck/index.d.ts +1 -0
- package/dist/cjs/types/components/UI/organism/UserTerms/children/UserTermContent/UserTermContent.component.d.ts +3 -0
- package/dist/cjs/types/components/UI/organism/UserTerms/children/UserTermContent/index.d.ts +1 -0
- package/dist/cjs/types/components/UI/organism/UserTerms/children/UserTermHighlight/UserTermHighlight.component.d.ts +3 -0
- package/dist/cjs/types/components/UI/organism/UserTerms/children/UserTermHighlight/index.d.ts +1 -0
- package/dist/cjs/types/components/UI/organism/UserTerms/children/UserTermSubmit/UserTermSubmit.component.d.ts +3 -0
- package/dist/cjs/types/components/UI/organism/UserTerms/children/UserTermSubmit/index.d.ts +1 -0
- package/dist/cjs/types/components/UI/organism/UserTerms/children/UserTermSubtitle/UserTermSubtitle.component.d.ts +3 -0
- package/dist/cjs/types/components/UI/organism/UserTerms/children/UserTermSubtitle/index.d.ts +1 -0
- package/dist/cjs/types/components/UI/organism/UserTerms/children/UserTermText/UserTermText.component.d.ts +3 -0
- package/dist/cjs/types/components/UI/organism/UserTerms/children/UserTermText/index.d.ts +1 -0
- package/dist/cjs/types/components/UI/organism/UserTerms/children/UserTermTitle/UserTermTitle.component.d.ts +3 -0
- package/dist/cjs/types/components/UI/organism/UserTerms/children/UserTermTitle/index.d.ts +1 -0
- package/dist/cjs/types/components/UI/organism/UserTerms/children/UserTermUList/UserTermUList.component.d.ts +3 -0
- package/dist/cjs/types/components/UI/organism/UserTerms/children/UserTermUList/index.d.ts +1 -0
- package/dist/cjs/types/components/UI/organism/UserTerms/index.d.ts +10 -0
- package/dist/cjs/types/components/UI/organism/index.d.ts +4 -3
- package/dist/esm/css/magneto.ui.lib.min.css +1 -1
- package/dist/esm/index.js +1144 -1048
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/components/UI/organism/UserTerms/UserTerms.component.d.ts +12 -0
- package/dist/esm/types/components/UI/organism/UserTerms/UserTerms.interface.d.ts +55 -0
- package/dist/esm/types/components/UI/organism/UserTerms/children/UserTermCheck/UserTermCheck.component.d.ts +3 -0
- package/dist/esm/types/components/UI/organism/UserTerms/children/UserTermCheck/index.d.ts +1 -0
- package/dist/esm/types/components/UI/organism/UserTerms/children/UserTermContent/UserTermContent.component.d.ts +3 -0
- package/dist/esm/types/components/UI/organism/UserTerms/children/UserTermContent/index.d.ts +1 -0
- package/dist/esm/types/components/UI/organism/UserTerms/children/UserTermHighlight/UserTermHighlight.component.d.ts +3 -0
- package/dist/esm/types/components/UI/organism/UserTerms/children/UserTermHighlight/index.d.ts +1 -0
- package/dist/esm/types/components/UI/organism/UserTerms/children/UserTermSubmit/UserTermSubmit.component.d.ts +3 -0
- package/dist/esm/types/components/UI/organism/UserTerms/children/UserTermSubmit/index.d.ts +1 -0
- package/dist/esm/types/components/UI/organism/UserTerms/children/UserTermSubtitle/UserTermSubtitle.component.d.ts +3 -0
- package/dist/esm/types/components/UI/organism/UserTerms/children/UserTermSubtitle/index.d.ts +1 -0
- package/dist/esm/types/components/UI/organism/UserTerms/children/UserTermText/UserTermText.component.d.ts +3 -0
- package/dist/esm/types/components/UI/organism/UserTerms/children/UserTermText/index.d.ts +1 -0
- package/dist/esm/types/components/UI/organism/UserTerms/children/UserTermTitle/UserTermTitle.component.d.ts +3 -0
- package/dist/esm/types/components/UI/organism/UserTerms/children/UserTermTitle/index.d.ts +1 -0
- package/dist/esm/types/components/UI/organism/UserTerms/children/UserTermUList/UserTermUList.component.d.ts +3 -0
- package/dist/esm/types/components/UI/organism/UserTerms/children/UserTermUList/index.d.ts +1 -0
- package/dist/esm/types/components/UI/organism/UserTerms/index.d.ts +10 -0
- package/dist/esm/types/components/UI/organism/index.d.ts +4 -3
- package/dist/index.d.ts +196 -114
- package/package.json +1 -1
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { IUserTerm } from './UserTerms.interface';
|
|
3
|
+
export declare const UserTerms: React.FC<IUserTerm> & {
|
|
4
|
+
Title: React.FC<IUserTerm.Title>;
|
|
5
|
+
Subtitle: React.FC<IUserTerm.SubTitle>;
|
|
6
|
+
Content: React.FC<IUserTerm.Content>;
|
|
7
|
+
Check: React.FC<IUserTerm.Check>;
|
|
8
|
+
Submit: React.FC<IUserTerm.Submit>;
|
|
9
|
+
Highlight: React.FC<IUserTerm.Highlight>;
|
|
10
|
+
Text: React.FC<IUserTerm.Highlight>;
|
|
11
|
+
UlList: React.FC<IUserTerm.UlList>;
|
|
12
|
+
};
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
export interface IUserTerm {
|
|
3
|
+
/**
|
|
4
|
+
* this property sets any component
|
|
5
|
+
*/
|
|
6
|
+
children: JSX.Element | JSX.Element[];
|
|
7
|
+
/**
|
|
8
|
+
* this property opens the ui
|
|
9
|
+
*/
|
|
10
|
+
isOpen: boolean;
|
|
11
|
+
/**
|
|
12
|
+
* this property closes the ui
|
|
13
|
+
*/
|
|
14
|
+
onClose: () => void;
|
|
15
|
+
}
|
|
16
|
+
export declare namespace IUserTerm {
|
|
17
|
+
interface Title {
|
|
18
|
+
className?: string;
|
|
19
|
+
}
|
|
20
|
+
interface SubTitle {
|
|
21
|
+
className?: string;
|
|
22
|
+
}
|
|
23
|
+
interface Highlight {
|
|
24
|
+
className?: string;
|
|
25
|
+
}
|
|
26
|
+
interface Text {
|
|
27
|
+
className?: string;
|
|
28
|
+
}
|
|
29
|
+
interface Content {
|
|
30
|
+
className?: string;
|
|
31
|
+
}
|
|
32
|
+
interface UlList {
|
|
33
|
+
className?: string;
|
|
34
|
+
}
|
|
35
|
+
interface Check {
|
|
36
|
+
/**
|
|
37
|
+
* this property sets custom styles
|
|
38
|
+
*/
|
|
39
|
+
className?: string;
|
|
40
|
+
/**
|
|
41
|
+
* this property check the input
|
|
42
|
+
*/
|
|
43
|
+
isChecked: boolean;
|
|
44
|
+
/**
|
|
45
|
+
* this fn returns true or false depending on checked
|
|
46
|
+
*/
|
|
47
|
+
onChange: (value: boolean) => void;
|
|
48
|
+
}
|
|
49
|
+
interface Submit extends React.ButtonHTMLAttributes<HTMLButtonElement> {
|
|
50
|
+
/**
|
|
51
|
+
* this property add loading component
|
|
52
|
+
*/
|
|
53
|
+
isLoading?: boolean;
|
|
54
|
+
}
|
|
55
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './UserTermCheck.component';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './UserTermContent.component';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './UserTermHighlight.component';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './UserTermSubmit.component';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './UserTermSubtitle.component';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './UserTermText.component';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './UserTermTitle.component';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './UserTermUList.component';
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
export * from './UserTerms.component';
|
|
2
|
+
export * from './UserTerms.interface';
|
|
3
|
+
export * from './children/UserTermCheck';
|
|
4
|
+
export * from './children/UserTermContent';
|
|
5
|
+
export * from './children/UserTermHighlight';
|
|
6
|
+
export * from './children/UserTermSubmit';
|
|
7
|
+
export * from './children/UserTermSubtitle';
|
|
8
|
+
export * from './children/UserTermText';
|
|
9
|
+
export * from './children/UserTermTitle';
|
|
10
|
+
export * from './children/UserTermUList';
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
export * from './AlphabetFilter';
|
|
1
2
|
export * from './BrandMenu';
|
|
2
3
|
export * from './DatePickerResponsive';
|
|
3
4
|
export * from './DrawerMenu';
|
|
@@ -11,6 +12,7 @@ export * from './LoginJobsHeader';
|
|
|
11
12
|
export * from './LogoutHeader';
|
|
12
13
|
export * from './LogoutJobsHeader';
|
|
13
14
|
export * from './MagnetoSocialMedia';
|
|
15
|
+
export * from './MegaMenuCards';
|
|
14
16
|
export * from './MobileDatePicker';
|
|
15
17
|
export * from './MobileDrawer';
|
|
16
18
|
export * from './MobileJobDetailsDrawer';
|
|
@@ -21,9 +23,8 @@ export * from './NavMenuAnalyst';
|
|
|
21
23
|
export * from './NavMenuAnalystRegionModal';
|
|
22
24
|
export * from './NavMenuDrawerAnalyst';
|
|
23
25
|
export * from './OneSelectionEntry';
|
|
26
|
+
export * from './Select';
|
|
24
27
|
export * from './Select2';
|
|
25
28
|
export * from './SimilarJobs';
|
|
26
29
|
export * from './Timeline';
|
|
27
|
-
export * from './
|
|
28
|
-
export * from './AlphabetFilter';
|
|
29
|
-
export * from './MegaMenuCards';
|
|
30
|
+
export * from './UserTerms';
|
package/dist/index.d.ts
CHANGED
|
@@ -6,7 +6,7 @@ import { ISaveButton as ISaveButton$1 } from '@components/UI/atoms/SaveButton';
|
|
|
6
6
|
import { ICustomText } from '@components/UI/atoms/Text/Text.interface';
|
|
7
7
|
import { IFilterValue as IFilterValue$1, ISetIsApplied as ISetIsApplied$1, IFilter as IFilter$1, ISearchRenderTypeProps as ISearchRenderTypeProps$1 } from '@components/UI/template/SideFilter';
|
|
8
8
|
import * as _components_UI_molecules from '@components/UI/molecules';
|
|
9
|
-
import { IDatePicker as IDatePicker$1, IBreadcrumbs as IBreadcrumbs$1, IUserMenuWrapperAnalystProps as IUserMenuWrapperAnalystProps$1, IJobCompanyHeader as IJobCompanyHeader$2, IJobDetailCard as IJobDetailCard$1, IJobSkillsCard as IJobSkillsCard$1, IJobApplyCard as IJobApplyCard$1, IJobFooterCard as IJobFooterCard$1, ICityDetail as ICityDetail$1, TimelineEventStatus as TimelineEventStatus$1,
|
|
9
|
+
import { IDatePicker as IDatePicker$1, IBreadcrumbs as IBreadcrumbs$1, IUserMenuWrapperAnalystProps as IUserMenuWrapperAnalystProps$1, IMegaMenuCard as IMegaMenuCard$1, IJobCompanyHeader as IJobCompanyHeader$2, IJobDetailCard as IJobDetailCard$1, IJobSkillsCard as IJobSkillsCard$1, IJobApplyCard as IJobApplyCard$1, IJobFooterCard as IJobFooterCard$1, ICityDetail as ICityDetail$1, TimelineEventStatus as TimelineEventStatus$1, IUserMenuAnalystProps as IUserMenuAnalystProps$1, IFrequentSearch as IFrequentSearch$1, IPaginationProps as IPaginationProps$1, IEmptyResults as IEmptyResults$2, IJobCard as IJobCard$2, ISearchbar as ISearchbar$1 } from '@components/UI/molecules';
|
|
10
10
|
import { IMegaMenuLink as IMegaMenuLink$1 } from '@components/UI/template/MegaMenu/MegaMenuContext.interface';
|
|
11
11
|
import * as _components_UI_organism from '@components/UI/organism';
|
|
12
12
|
import { IMobileDatePicker as IMobileDatePicker$1, IDatePickerComponent as IDatePickerComponent$1, IJobDetailsDrawer as IJobDetailsDrawer$1, IMobileJobDetailsDrawer as IMobileJobDetailsDrawer$1, IHeaderAnalystProps as IHeaderAnalystProps$1, IModalAnalyst as IModalAnalyst$1, INavMenuAnalystRegion as INavMenuAnalystRegion$1 } from '@components/UI/organism';
|
|
@@ -2932,6 +2932,16 @@ interface ITooltipProps {
|
|
|
2932
2932
|
|
|
2933
2933
|
declare const Tooltip: React$1.FC<ITooltipProps>;
|
|
2934
2934
|
|
|
2935
|
+
interface IAlphabetFilter {
|
|
2936
|
+
title: string;
|
|
2937
|
+
allActionText: string;
|
|
2938
|
+
className?: string;
|
|
2939
|
+
onClickAction: (index: number, value: string) => void;
|
|
2940
|
+
filtersRef?: Ref<unknown>;
|
|
2941
|
+
}
|
|
2942
|
+
|
|
2943
|
+
declare const AlphabetFilter: React$1.FC<IAlphabetFilter>;
|
|
2944
|
+
|
|
2935
2945
|
declare const BrandMenu: React$1.FC<IBrandMenu>;
|
|
2936
2946
|
|
|
2937
2947
|
interface IDatePickerComponent {
|
|
@@ -3272,6 +3282,18 @@ interface IMagnetoSocialMedia {
|
|
|
3272
3282
|
|
|
3273
3283
|
declare const MagnetoSocialMedia: React$1.FC<IMagnetoSocialMedia>;
|
|
3274
3284
|
|
|
3285
|
+
interface IMegaMenuCards {
|
|
3286
|
+
jobs: IMegaMenuCard$1[];
|
|
3287
|
+
filterProps?: IAlphabetFilter;
|
|
3288
|
+
action?: IMegaMenuLink$1;
|
|
3289
|
+
title?: string;
|
|
3290
|
+
actionTitle?: IMegaMenuLink$1;
|
|
3291
|
+
className?: string;
|
|
3292
|
+
maxCards?: number;
|
|
3293
|
+
}
|
|
3294
|
+
|
|
3295
|
+
declare const MegaMenuCards: React$1.FC<IMegaMenuCards>;
|
|
3296
|
+
|
|
3275
3297
|
interface IMobileDatePicker {
|
|
3276
3298
|
applyLabel: string;
|
|
3277
3299
|
cancelLabel: string;
|
|
@@ -3743,103 +3765,6 @@ interface IListOption {
|
|
|
3743
3765
|
|
|
3744
3766
|
declare const OneSelectionEntry: React$1.FC<IOneSelectionentry>;
|
|
3745
3767
|
|
|
3746
|
-
interface ISelectOptions<T> {
|
|
3747
|
-
/**
|
|
3748
|
-
* this property establish a list with this interface
|
|
3749
|
-
*/
|
|
3750
|
-
selectList: (ISelectField & T)[];
|
|
3751
|
-
/**
|
|
3752
|
-
* this property sets the placeholder
|
|
3753
|
-
*/
|
|
3754
|
-
placeholder: string;
|
|
3755
|
-
/**
|
|
3756
|
-
* not setting this property is specific to the component
|
|
3757
|
-
*/
|
|
3758
|
-
clickOut?: boolean;
|
|
3759
|
-
/**
|
|
3760
|
-
* not setting this property is specific to the component
|
|
3761
|
-
*/
|
|
3762
|
-
setClickOut?: React.Dispatch<React.SetStateAction<boolean>>;
|
|
3763
|
-
/**
|
|
3764
|
-
* this function gives you the values selected
|
|
3765
|
-
*/
|
|
3766
|
-
onChange: (value: (ISelectField & T)[]) => void;
|
|
3767
|
-
/**
|
|
3768
|
-
* this property allows multiple selections or single selections
|
|
3769
|
-
*/
|
|
3770
|
-
isMultiple?: boolean;
|
|
3771
|
-
/**
|
|
3772
|
-
* this property add tags
|
|
3773
|
-
*/
|
|
3774
|
-
haveTags?: boolean;
|
|
3775
|
-
/**
|
|
3776
|
-
* this property limits the number of selections
|
|
3777
|
-
*/
|
|
3778
|
-
limitSelections?: number;
|
|
3779
|
-
/**
|
|
3780
|
-
* this property gives you the written text
|
|
3781
|
-
*/
|
|
3782
|
-
setTerm?: (value: string) => void;
|
|
3783
|
-
/**
|
|
3784
|
-
* this property sets a icon in the title
|
|
3785
|
-
*/
|
|
3786
|
-
icon?: string;
|
|
3787
|
-
/**
|
|
3788
|
-
* this property disables the input
|
|
3789
|
-
*/
|
|
3790
|
-
disabled?: boolean;
|
|
3791
|
-
/**
|
|
3792
|
-
* this propertys sets currents values
|
|
3793
|
-
*/
|
|
3794
|
-
currentFields?: (ISelectField & T)[];
|
|
3795
|
-
/**
|
|
3796
|
-
* enables mobile version
|
|
3797
|
-
*/
|
|
3798
|
-
isMobile?: boolean;
|
|
3799
|
-
/**
|
|
3800
|
-
* renders a custom component
|
|
3801
|
-
*/
|
|
3802
|
-
render?: (data: T, index: number) => JSX.Element;
|
|
3803
|
-
/**
|
|
3804
|
-
* custom class name for styling
|
|
3805
|
-
*/
|
|
3806
|
-
className?: string;
|
|
3807
|
-
}
|
|
3808
|
-
interface ISelectField {
|
|
3809
|
-
id: string | number;
|
|
3810
|
-
name: string;
|
|
3811
|
-
img?: string;
|
|
3812
|
-
}
|
|
3813
|
-
|
|
3814
|
-
/**
|
|
3815
|
-
* Molecule UI component of select 2
|
|
3816
|
-
*/
|
|
3817
|
-
declare const Select2: React$1.FC<ISelectOptions<unknown>>;
|
|
3818
|
-
|
|
3819
|
-
declare const SimilarJobs: React$1.FC<ISimilarJobs>;
|
|
3820
|
-
|
|
3821
|
-
interface ITimelineProps {
|
|
3822
|
-
/**
|
|
3823
|
-
* Represents the steps in the timeline. Each step is an object that contains a title and a subtitle.
|
|
3824
|
-
*/
|
|
3825
|
-
steps: StepDetails[];
|
|
3826
|
-
/**
|
|
3827
|
-
* Represents the current step in the timeline. It's a number indicating the index of the current step in the steps array.
|
|
3828
|
-
* It is suggested that this number be greater than 0.
|
|
3829
|
-
*/
|
|
3830
|
-
currentStep: number;
|
|
3831
|
-
/**
|
|
3832
|
-
* this property sets the position of the list and status
|
|
3833
|
-
*/
|
|
3834
|
-
onClick?: (status: TimelineEventStatus$1, value: number) => void;
|
|
3835
|
-
}
|
|
3836
|
-
declare type StepDetails = {
|
|
3837
|
-
title: string;
|
|
3838
|
-
subtitle: string;
|
|
3839
|
-
};
|
|
3840
|
-
|
|
3841
|
-
declare const Timeline: React$1.FC<ITimelineProps>;
|
|
3842
|
-
|
|
3843
3768
|
interface ISelectInput<T> extends Omit<IInput, 'onChange' | 'value' | 'placeholder' | 'type'> {
|
|
3844
3769
|
/**
|
|
3845
3770
|
* input value.
|
|
@@ -3961,27 +3886,184 @@ declare const Select: (<T>({ children, renderSelect, placeholder, options, value
|
|
|
3961
3886
|
ListCheck: <T_3>({ className, renderItem, filter }: ISelect2ListCheck<T_3>) => JSX.Element;
|
|
3962
3887
|
};
|
|
3963
3888
|
|
|
3964
|
-
interface
|
|
3965
|
-
|
|
3966
|
-
|
|
3889
|
+
interface ISelectOptions<T> {
|
|
3890
|
+
/**
|
|
3891
|
+
* this property establish a list with this interface
|
|
3892
|
+
*/
|
|
3893
|
+
selectList: (ISelectField & T)[];
|
|
3894
|
+
/**
|
|
3895
|
+
* this property sets the placeholder
|
|
3896
|
+
*/
|
|
3897
|
+
placeholder: string;
|
|
3898
|
+
/**
|
|
3899
|
+
* not setting this property is specific to the component
|
|
3900
|
+
*/
|
|
3901
|
+
clickOut?: boolean;
|
|
3902
|
+
/**
|
|
3903
|
+
* not setting this property is specific to the component
|
|
3904
|
+
*/
|
|
3905
|
+
setClickOut?: React.Dispatch<React.SetStateAction<boolean>>;
|
|
3906
|
+
/**
|
|
3907
|
+
* this function gives you the values selected
|
|
3908
|
+
*/
|
|
3909
|
+
onChange: (value: (ISelectField & T)[]) => void;
|
|
3910
|
+
/**
|
|
3911
|
+
* this property allows multiple selections or single selections
|
|
3912
|
+
*/
|
|
3913
|
+
isMultiple?: boolean;
|
|
3914
|
+
/**
|
|
3915
|
+
* this property add tags
|
|
3916
|
+
*/
|
|
3917
|
+
haveTags?: boolean;
|
|
3918
|
+
/**
|
|
3919
|
+
* this property limits the number of selections
|
|
3920
|
+
*/
|
|
3921
|
+
limitSelections?: number;
|
|
3922
|
+
/**
|
|
3923
|
+
* this property gives you the written text
|
|
3924
|
+
*/
|
|
3925
|
+
setTerm?: (value: string) => void;
|
|
3926
|
+
/**
|
|
3927
|
+
* this property sets a icon in the title
|
|
3928
|
+
*/
|
|
3929
|
+
icon?: string;
|
|
3930
|
+
/**
|
|
3931
|
+
* this property disables the input
|
|
3932
|
+
*/
|
|
3933
|
+
disabled?: boolean;
|
|
3934
|
+
/**
|
|
3935
|
+
* this propertys sets currents values
|
|
3936
|
+
*/
|
|
3937
|
+
currentFields?: (ISelectField & T)[];
|
|
3938
|
+
/**
|
|
3939
|
+
* enables mobile version
|
|
3940
|
+
*/
|
|
3941
|
+
isMobile?: boolean;
|
|
3942
|
+
/**
|
|
3943
|
+
* renders a custom component
|
|
3944
|
+
*/
|
|
3945
|
+
render?: (data: T, index: number) => JSX.Element;
|
|
3946
|
+
/**
|
|
3947
|
+
* custom class name for styling
|
|
3948
|
+
*/
|
|
3967
3949
|
className?: string;
|
|
3968
|
-
|
|
3969
|
-
|
|
3950
|
+
}
|
|
3951
|
+
interface ISelectField {
|
|
3952
|
+
id: string | number;
|
|
3953
|
+
name: string;
|
|
3954
|
+
img?: string;
|
|
3970
3955
|
}
|
|
3971
3956
|
|
|
3972
|
-
|
|
3957
|
+
/**
|
|
3958
|
+
* Molecule UI component of select 2
|
|
3959
|
+
*/
|
|
3960
|
+
declare const Select2: React$1.FC<ISelectOptions<unknown>>;
|
|
3973
3961
|
|
|
3974
|
-
|
|
3975
|
-
|
|
3976
|
-
|
|
3977
|
-
|
|
3978
|
-
|
|
3979
|
-
|
|
3980
|
-
|
|
3981
|
-
|
|
3962
|
+
declare const SimilarJobs: React$1.FC<ISimilarJobs>;
|
|
3963
|
+
|
|
3964
|
+
interface ITimelineProps {
|
|
3965
|
+
/**
|
|
3966
|
+
* Represents the steps in the timeline. Each step is an object that contains a title and a subtitle.
|
|
3967
|
+
*/
|
|
3968
|
+
steps: StepDetails[];
|
|
3969
|
+
/**
|
|
3970
|
+
* Represents the current step in the timeline. It's a number indicating the index of the current step in the steps array.
|
|
3971
|
+
* It is suggested that this number be greater than 0.
|
|
3972
|
+
*/
|
|
3973
|
+
currentStep: number;
|
|
3974
|
+
/**
|
|
3975
|
+
* this property sets the position of the list and status
|
|
3976
|
+
*/
|
|
3977
|
+
onClick?: (status: TimelineEventStatus$1, value: number) => void;
|
|
3978
|
+
}
|
|
3979
|
+
declare type StepDetails = {
|
|
3980
|
+
title: string;
|
|
3981
|
+
subtitle: string;
|
|
3982
|
+
};
|
|
3983
|
+
|
|
3984
|
+
declare const Timeline: React$1.FC<ITimelineProps>;
|
|
3985
|
+
|
|
3986
|
+
interface IUserTerm {
|
|
3987
|
+
/**
|
|
3988
|
+
* this property sets any component
|
|
3989
|
+
*/
|
|
3990
|
+
children: JSX.Element | JSX.Element[];
|
|
3991
|
+
/**
|
|
3992
|
+
* this property opens the ui
|
|
3993
|
+
*/
|
|
3994
|
+
isOpen: boolean;
|
|
3995
|
+
/**
|
|
3996
|
+
* this property closes the ui
|
|
3997
|
+
*/
|
|
3998
|
+
onClose: () => void;
|
|
3982
3999
|
}
|
|
4000
|
+
declare namespace IUserTerm {
|
|
4001
|
+
interface Title {
|
|
4002
|
+
className?: string;
|
|
4003
|
+
}
|
|
4004
|
+
interface SubTitle {
|
|
4005
|
+
className?: string;
|
|
4006
|
+
}
|
|
4007
|
+
interface Highlight {
|
|
4008
|
+
className?: string;
|
|
4009
|
+
}
|
|
4010
|
+
interface Text {
|
|
4011
|
+
className?: string;
|
|
4012
|
+
}
|
|
4013
|
+
interface Content {
|
|
4014
|
+
className?: string;
|
|
4015
|
+
}
|
|
4016
|
+
interface UlList {
|
|
4017
|
+
className?: string;
|
|
4018
|
+
}
|
|
4019
|
+
interface Check {
|
|
4020
|
+
/**
|
|
4021
|
+
* this property sets custom styles
|
|
4022
|
+
*/
|
|
4023
|
+
className?: string;
|
|
4024
|
+
/**
|
|
4025
|
+
* this property check the input
|
|
4026
|
+
*/
|
|
4027
|
+
isChecked: boolean;
|
|
4028
|
+
/**
|
|
4029
|
+
* this fn returns true or false depending on checked
|
|
4030
|
+
*/
|
|
4031
|
+
onChange: (value: boolean) => void;
|
|
4032
|
+
}
|
|
4033
|
+
interface Submit extends React.ButtonHTMLAttributes<HTMLButtonElement> {
|
|
4034
|
+
/**
|
|
4035
|
+
* this property add loading component
|
|
4036
|
+
*/
|
|
4037
|
+
isLoading?: boolean;
|
|
4038
|
+
}
|
|
4039
|
+
}
|
|
4040
|
+
|
|
4041
|
+
declare const UserTerms: React$1.FC<IUserTerm> & {
|
|
4042
|
+
Title: React$1.FC<IUserTerm.Title>;
|
|
4043
|
+
Subtitle: React$1.FC<IUserTerm.SubTitle>;
|
|
4044
|
+
Content: React$1.FC<IUserTerm.Content>;
|
|
4045
|
+
Check: React$1.FC<IUserTerm.Check>;
|
|
4046
|
+
Submit: React$1.FC<IUserTerm.Submit>;
|
|
4047
|
+
Highlight: React$1.FC<IUserTerm.Highlight>;
|
|
4048
|
+
Text: React$1.FC<IUserTerm.Highlight>;
|
|
4049
|
+
UlList: React$1.FC<IUserTerm.UlList>;
|
|
4050
|
+
};
|
|
3983
4051
|
|
|
3984
|
-
declare const
|
|
4052
|
+
declare const UserTermCheck: React$1.FC<IUserTerm.Check>;
|
|
4053
|
+
|
|
4054
|
+
declare const UserTermContent: React$1.FC<IUserTerm.Content>;
|
|
4055
|
+
|
|
4056
|
+
declare const UserTermHighlight: React$1.FC<IUserTerm.Highlight>;
|
|
4057
|
+
|
|
4058
|
+
declare const UserTermSubmit: React$1.FC<IUserTerm.Submit>;
|
|
4059
|
+
|
|
4060
|
+
declare const UserTermSubTitle: React$1.FC<IUserTerm.SubTitle>;
|
|
4061
|
+
|
|
4062
|
+
declare const UserTermText: React$1.FC<IUserTerm.Highlight>;
|
|
4063
|
+
|
|
4064
|
+
declare const UserTermTitle: React$1.FC<IUserTerm.Title>;
|
|
4065
|
+
|
|
4066
|
+
declare const UserTermUList: React$1.FC<IUserTerm.UlList>;
|
|
3985
4067
|
|
|
3986
4068
|
interface IMenuUser {
|
|
3987
4069
|
/**
|
|
@@ -4761,4 +4843,4 @@ declare const withMegaMenuContainer: <T>(WrappedComponent: React$1.FC<T>) => Rea
|
|
|
4761
4843
|
wrapperProps: T;
|
|
4762
4844
|
}>;
|
|
4763
4845
|
|
|
4764
|
-
export { Actions, Alert, AlphabetFilter, 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, EExpandableInfoSize, EExpandableInfoVariant, ERadioType, EmptyResult as EmptyResults, ExpandableInfo, FilterActions, 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, IExpandableInfoProps, IFieldsAlias, IFilter, IFilterActions, IFilterCard, IFilterHeader, IFilterMenuItem, IFilterRepository, IFilterSearchItem, IFilterValue, IFiltersRef, 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, IMessageProps, IMobileDatePicker, IMobileDrawer, IMobileDrawerMenu, IMobileJobDetailsDrawer, IMobileJobDetailsHeader, IMobileSearchbar, IMobileSortMenu, 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, MegaMenuSideCards, 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, TExpandableInfoSize, TExpandableInfoVariant, TMessageType, Tab, TabButton, TabButtonElement, Tags as Tag, TextArea, Timeline, TimelineEvent, TimelineEventProps, TimelineEventStatus, ToggleButton, Tooltip, UserMenu, UserMenuAnalyst, UserMenuButtonAnalyst, UserMenuWrapperAnalyst, useMediaQuery, withClickOut, withMegaMenuContainer };
|
|
4846
|
+
export { Actions, Alert, AlphabetFilter, 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, EExpandableInfoSize, EExpandableInfoVariant, ERadioType, EmptyResult as EmptyResults, ExpandableInfo, FilterActions, 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, IExpandableInfoProps, IFieldsAlias, IFilter, IFilterActions, IFilterCard, IFilterHeader, IFilterMenuItem, IFilterRepository, IFilterSearchItem, IFilterValue, IFiltersRef, 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, IMessageProps, IMobileDatePicker, IMobileDrawer, IMobileDrawerMenu, IMobileJobDetailsDrawer, IMobileJobDetailsHeader, IMobileSearchbar, IMobileSortMenu, 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, IUserTerm, 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, MegaMenuSideCards, 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, TExpandableInfoSize, TExpandableInfoVariant, TMessageType, Tab, TabButton, TabButtonElement, Tags as Tag, TextArea, Timeline, TimelineEvent, TimelineEventProps, TimelineEventStatus, ToggleButton, Tooltip, UserMenu, UserMenuAnalyst, UserMenuButtonAnalyst, UserMenuWrapperAnalyst, UserTermCheck, UserTermContent, UserTermHighlight, UserTermSubTitle, UserTermSubmit, UserTermText, UserTermTitle, UserTermUList, UserTerms, useMediaQuery, withClickOut, withMegaMenuContainer };
|
package/package.json
CHANGED