magneto365.ui 2.54.1 → 2.55.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/assets/035d90cb55b544da.svg +15 -0
- package/dist/assets/1aba91fa564f11d7.svg +16 -0
- package/dist/assets/3a1c54796cd5e026.svg +17 -0
- package/dist/assets/3e2d04cc8ff5910d.svg +11 -0
- package/dist/assets/f3929a315218dc82.svg +10 -0
- package/dist/cjs/css/magneto.ui.lib.min.css +1 -1
- package/dist/cjs/index.js +673 -571
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/types/components/UI/molecules/ModalResponsive/ModalResponsive.component.d.ts +3 -0
- package/dist/cjs/types/components/UI/molecules/ModalResponsive/ModalResponsive.interface.d.ts +22 -0
- package/dist/cjs/types/components/UI/molecules/ModalResponsive/index.d.ts +1 -0
- package/dist/cjs/types/components/UI/molecules/index.d.ts +2 -1
- package/dist/cjs/types/components/UI/organism/ProcessesCard/ProcessesCard.component.d.ts +11 -0
- package/dist/cjs/types/components/UI/organism/ProcessesCard/ProcessesCard.interface.d.ts +42 -0
- package/dist/cjs/types/components/UI/organism/ProcessesCard/children/ProcessesCardArrow/ProcessesCardArrow.component.d.ts +2 -0
- package/dist/cjs/types/components/UI/organism/ProcessesCard/children/ProcessesCardBrand/ProcessesCardBrand.component.d.ts +2 -0
- package/dist/cjs/types/components/UI/organism/ProcessesCard/children/ProcessesCardIconStatus/ProcessesCardIconStatus.component.d.ts +3 -0
- package/dist/cjs/types/components/UI/organism/ProcessesCard/children/ProcessesCardSection/ProcessesCardSection.component.d.ts +2 -0
- package/dist/cjs/types/components/UI/organism/ProcessesCard/children/ProcessesCardStatus/ProcessesCardStatus.component.d.ts +3 -0
- package/dist/cjs/types/components/UI/organism/ProcessesCard/children/ProcessesCardText/ProcessesCardText.component.d.ts +3 -0
- package/dist/cjs/types/components/UI/organism/ProcessesCard/children/ProcessesCardTitle/ProcessesCardTitle.component.d.ts +3 -0
- package/dist/cjs/types/components/UI/organism/ProcessesCard/index.d.ts +1 -0
- package/dist/cjs/types/components/UI/organism/index.d.ts +1 -0
- package/dist/cjs/types/constants/icons.constants.d.ts +6 -1
- package/dist/esm/css/magneto.ui.lib.min.css +1 -1
- package/dist/esm/index.js +672 -572
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/components/UI/molecules/ModalResponsive/ModalResponsive.component.d.ts +3 -0
- package/dist/esm/types/components/UI/molecules/ModalResponsive/ModalResponsive.interface.d.ts +22 -0
- package/dist/esm/types/components/UI/molecules/ModalResponsive/index.d.ts +1 -0
- package/dist/esm/types/components/UI/molecules/index.d.ts +2 -1
- package/dist/esm/types/components/UI/organism/ProcessesCard/ProcessesCard.component.d.ts +11 -0
- package/dist/esm/types/components/UI/organism/ProcessesCard/ProcessesCard.interface.d.ts +42 -0
- package/dist/esm/types/components/UI/organism/ProcessesCard/children/ProcessesCardArrow/ProcessesCardArrow.component.d.ts +2 -0
- package/dist/esm/types/components/UI/organism/ProcessesCard/children/ProcessesCardBrand/ProcessesCardBrand.component.d.ts +2 -0
- package/dist/esm/types/components/UI/organism/ProcessesCard/children/ProcessesCardIconStatus/ProcessesCardIconStatus.component.d.ts +3 -0
- package/dist/esm/types/components/UI/organism/ProcessesCard/children/ProcessesCardSection/ProcessesCardSection.component.d.ts +2 -0
- package/dist/esm/types/components/UI/organism/ProcessesCard/children/ProcessesCardStatus/ProcessesCardStatus.component.d.ts +3 -0
- package/dist/esm/types/components/UI/organism/ProcessesCard/children/ProcessesCardText/ProcessesCardText.component.d.ts +3 -0
- package/dist/esm/types/components/UI/organism/ProcessesCard/children/ProcessesCardTitle/ProcessesCardTitle.component.d.ts +3 -0
- package/dist/esm/types/components/UI/organism/ProcessesCard/index.d.ts +1 -0
- package/dist/esm/types/components/UI/organism/index.d.ts +1 -0
- package/dist/esm/types/constants/icons.constants.d.ts +6 -1
- package/dist/index.d.ts +82 -5
- package/package.json +1 -1
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
export interface IModalResponsive {
|
|
2
|
+
/**
|
|
3
|
+
* this property open the container
|
|
4
|
+
*/
|
|
5
|
+
open: boolean;
|
|
6
|
+
/**
|
|
7
|
+
* this property close the container
|
|
8
|
+
*/
|
|
9
|
+
onClose: () => void;
|
|
10
|
+
/**
|
|
11
|
+
* this property sets the children elements
|
|
12
|
+
*/
|
|
13
|
+
children: JSX.Element | JSX.Element[];
|
|
14
|
+
/**
|
|
15
|
+
* this property sets customs styles for the modal
|
|
16
|
+
*/
|
|
17
|
+
modalClassName?: string;
|
|
18
|
+
/**
|
|
19
|
+
* this property sets customs styles for the mobile drawer
|
|
20
|
+
*/
|
|
21
|
+
mobileDrawerClassName?: string;
|
|
22
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './ModalResponsive.component';
|
|
@@ -13,6 +13,7 @@ export * from './FilterActions';
|
|
|
13
13
|
export * from './FilterContainerMenu';
|
|
14
14
|
export * from './FilterMenuItem';
|
|
15
15
|
export * from './FilterSearchItem';
|
|
16
|
+
export * from './FraudCardJob';
|
|
16
17
|
export * from './FrequentSearch';
|
|
17
18
|
export * from './HeaderDrawerCompany';
|
|
18
19
|
export * from './HeaderDrawerTabs';
|
|
@@ -49,6 +50,7 @@ export * from './MobileDrawer';
|
|
|
49
50
|
export * from './MobileJobDetailsHeader';
|
|
50
51
|
export * from './MobileSearchbar';
|
|
51
52
|
export * from './Modal';
|
|
53
|
+
export * from './ModalResponsive';
|
|
52
54
|
export * from './Pagination';
|
|
53
55
|
export * from './RightsReservedText';
|
|
54
56
|
export * from './ScoreLevel';
|
|
@@ -67,4 +69,3 @@ export * from './Tooltip';
|
|
|
67
69
|
export * from './UserMenu';
|
|
68
70
|
export * from './UserMenuAnalyst';
|
|
69
71
|
export * from './UserMenuWrapperAnalyst';
|
|
70
|
-
export * from './FraudCardJob';
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { IProcessesCard } from './ProcessesCard.interface';
|
|
3
|
+
export declare const ProcessesCard: React.FC<IProcessesCard> & {
|
|
4
|
+
IconStatus: React.FC<IProcessesCard.IStatusIcon>;
|
|
5
|
+
Section: React.FC<import("./ProcessesCard.interface").ICommonProcessesCardPros>;
|
|
6
|
+
Status: React.FC<IProcessesCard.ICardStatus>;
|
|
7
|
+
Brand: React.FC<import("./ProcessesCard.interface").ICommonProcessesCardImg>;
|
|
8
|
+
Arrow: React.FC<import("./ProcessesCard.interface").ICommonProcessesCardImg>;
|
|
9
|
+
Title: React.FC<IProcessesCard.ITitle>;
|
|
10
|
+
Text: React.FC<IProcessesCard.IText>;
|
|
11
|
+
};
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
export declare type IStatusJob = 'Sent' | 'Pending' | 'Validation' | 'Finalists' | 'Hired' | 'Discarded';
|
|
3
|
+
export interface ICommonProcessesCardPros {
|
|
4
|
+
/**
|
|
5
|
+
* this property sets custom className
|
|
6
|
+
*/
|
|
7
|
+
className?: string;
|
|
8
|
+
/**
|
|
9
|
+
* this property sets any children
|
|
10
|
+
*/
|
|
11
|
+
children: React.ReactNode;
|
|
12
|
+
}
|
|
13
|
+
export declare type ICommonProcessesCardImg = React.ImgHTMLAttributes<HTMLImageElement>;
|
|
14
|
+
export interface IProcessesCard extends React.ButtonHTMLAttributes<HTMLButtonElement>, ICommonProcessesCardPros {
|
|
15
|
+
/**
|
|
16
|
+
* this property sets custom className
|
|
17
|
+
*/
|
|
18
|
+
children: React.ReactNode;
|
|
19
|
+
/**
|
|
20
|
+
* this property on true changes the background color
|
|
21
|
+
*/
|
|
22
|
+
isSelected?: boolean;
|
|
23
|
+
}
|
|
24
|
+
export declare namespace IProcessesCard {
|
|
25
|
+
type ISection = ICommonProcessesCardPros;
|
|
26
|
+
type ITitle = ICommonProcessesCardPros & {
|
|
27
|
+
status?: IStatusJob;
|
|
28
|
+
};
|
|
29
|
+
type ICardStatus = ICommonProcessesCardPros & {
|
|
30
|
+
status: IStatusJob;
|
|
31
|
+
isSelected?: boolean;
|
|
32
|
+
};
|
|
33
|
+
type IText = ICommonProcessesCardPros & {
|
|
34
|
+
status?: IStatusJob;
|
|
35
|
+
strong?: boolean;
|
|
36
|
+
};
|
|
37
|
+
type IBrand = ICommonProcessesCardImg;
|
|
38
|
+
type IArrow = ICommonProcessesCardImg;
|
|
39
|
+
type IStatusIcon = ICommonProcessesCardImg & {
|
|
40
|
+
status: IStatusJob;
|
|
41
|
+
};
|
|
42
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './ProcessesCard.component';
|
|
@@ -23,6 +23,7 @@ export * from './NavMenuAnalyst';
|
|
|
23
23
|
export * from './NavMenuAnalystRegionModal';
|
|
24
24
|
export * from './NavMenuDrawerAnalyst';
|
|
25
25
|
export * from './OneSelectionEntry';
|
|
26
|
+
export * from './ProcessesCard';
|
|
26
27
|
export * from './Select';
|
|
27
28
|
export * from './Select2';
|
|
28
29
|
export * from './SimilarJobs';
|
|
@@ -33,6 +33,7 @@ export { default as Calendar1 } from '../assets/Calendar1.svg';
|
|
|
33
33
|
export { default as Checked } from '../assets/Checked.svg';
|
|
34
34
|
export { default as ClipboardClose } from '../assets/ClipboardClose.svg';
|
|
35
35
|
export { default as Clock } from '../assets/Clock.svg';
|
|
36
|
+
export { default as ClockLine } from '../assets/clock.svg';
|
|
36
37
|
export { default as Close } from '../assets/Close.svg';
|
|
37
38
|
export { default as CloseCircle } from '../assets/closeCircle.svg';
|
|
38
39
|
export { default as CloseCircleRedBold } from '../assets/closeCircleRedBold.svg';
|
|
@@ -40,6 +41,8 @@ export { default as CoinBlackOutline } from '../assets/coinBlackOutline.svg';
|
|
|
40
41
|
export { default as Danger } from '../assets/danger.svg';
|
|
41
42
|
export { default as DocTextBlueBold } from '../assets/docTextBlueBold.svg';
|
|
42
43
|
export { default as DocTextWhiteOutline } from '../assets/docTextWhiteOutline.svg';
|
|
44
|
+
export { default as DocumentForward } from '../assets/document-forward.svg';
|
|
45
|
+
export { default as DocumentSearch } from '../assets/document-search.svg';
|
|
43
46
|
export { default as DocumentText } from '../assets/DocumentText.svg';
|
|
44
47
|
export { default as DocumentTextGray } from '../assets/DocumentTextGray.svg';
|
|
45
48
|
export { default as DollarCircle } from '../assets/DollarCircle.svg';
|
|
@@ -132,13 +135,15 @@ export { default as TwitterBlue } from '../assets/Twitter2.svg';
|
|
|
132
135
|
export { default as TwitterDark } from '../assets/Twitter1.svg';
|
|
133
136
|
export { default as Urgent } from '../assets/Urgent.svg';
|
|
134
137
|
export { default as User } from '../assets/User.svg';
|
|
138
|
+
export { default as UserRemove } from '../assets/user-remove.svg';
|
|
135
139
|
export { default as UserRoundedBlue } from '../assets/userRoundedBlue.svg';
|
|
136
140
|
export { default as UserRoundedGray } from '../assets/userRoundedGray.svg';
|
|
137
141
|
export { default as UserSearchBlueBold } from '../assets/userSearchBlueBold.svg';
|
|
138
142
|
export { default as UserSearchWhiteOutline } from '../assets/userSearchWhiteOutline.svg';
|
|
143
|
+
export { default as UserTick } from '../assets/user-tick.svg';
|
|
139
144
|
export { default as Warning } from '../assets/warning.svg';
|
|
140
|
-
export { default as WarningHex } from '../assets/warning-hex.svg';
|
|
141
145
|
export { default as Warning3D } from '../assets/warning-3d.svg';
|
|
146
|
+
export { default as WarningHex } from '../assets/warning-hex.svg';
|
|
142
147
|
export { default as WarningYellowBold } from '../assets/warningYellowBold.svg';
|
|
143
148
|
export { default as WhatsAppColor } from '../assets/Whatsapp1.svg';
|
|
144
149
|
export { default as WhatsAppDark } from '../assets/Whatsapp.svg';
|