frst-components 0.28.4 → 0.28.6
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/index.js +46 -87
- package/dist/src/components/DS/newCards/challenge/index.d.ts +2 -7
- package/dist/src/components/DS/newCards/challenge/index.d.ts.map +1 -1
- package/dist/src/components/IJ/pagination/index.d.ts +1 -9
- package/dist/src/components/IJ/pagination/index.d.ts.map +1 -1
- package/dist/src/components/IJ/pagination/paginationStyles.d.ts +3 -2
- package/dist/src/components/IJ/pagination/paginationStyles.d.ts.map +1 -1
- package/dist/src/components/calendar/calendarStyle.d.ts +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -19011,36 +19011,40 @@ const pageButtonList = styled__default["default"].div `
|
|
|
19011
19011
|
flex-direction: row;
|
|
19012
19012
|
gap: 8px;
|
|
19013
19013
|
`;
|
|
19014
|
-
const
|
|
19014
|
+
const ButtonPage = styled__default["default"].div `
|
|
19015
19015
|
display: flex;
|
|
19016
19016
|
justify-content: center;
|
|
19017
19017
|
align-items: center;
|
|
19018
19018
|
min-width: 40px;
|
|
19019
19019
|
height: 40px;
|
|
19020
|
-
|
|
19021
19020
|
padding: 12px;
|
|
19022
19021
|
border-radius: 6px;
|
|
19023
19022
|
cursor: pointer;
|
|
19024
19023
|
|
|
19025
19024
|
user-select: none;
|
|
19026
|
-
font-family: 'PT Sans';
|
|
19025
|
+
font-family: 'PT Sans', sans-serif;
|
|
19027
19026
|
font-size: 16px;
|
|
19028
19027
|
font-weight: 700;
|
|
19029
|
-
color: ${(props) => props.selected ? props.theme.colors.shadeWhite : props.theme.colors.neutralsGrey1};
|
|
19030
|
-
background-color: ${(props) => props.selected ? props.theme.colors.primary1 : props.theme.colors.neutralsGrey6};
|
|
19031
|
-
|
|
19032
|
-
${(props) => !props.disabled && styled.css `
|
|
19033
|
-
&:hover{
|
|
19034
|
-
color: ${({ theme }) => theme.colors.shadeWhite};
|
|
19035
|
-
background-color: ${({ theme }) => theme.colors.primary3};
|
|
19036
|
-
}
|
|
19037
|
-
`};
|
|
19038
19028
|
|
|
19039
|
-
${(
|
|
19040
|
-
|
|
19041
|
-
|
|
19042
|
-
|
|
19029
|
+
color: ${({ selected, theme }) => selected ? theme.colors.shadeWhite : theme.colors.neutralsGrey1};
|
|
19030
|
+
|
|
19031
|
+
background-color: ${({ selected, theme, backgroundColor }) => selected
|
|
19032
|
+
? (backgroundColor || theme.colors.primary1)
|
|
19033
|
+
: (backgroundColor || theme.colors.neutralsGrey6)};
|
|
19034
|
+
|
|
19035
|
+
${({ disabled, theme }) => !disabled &&
|
|
19036
|
+
styled.css `
|
|
19037
|
+
&:hover {
|
|
19038
|
+
color: ${theme.colors.shadeWhite};
|
|
19039
|
+
background-color: ${theme.colors.primary3};
|
|
19040
|
+
}
|
|
19041
|
+
`}
|
|
19043
19042
|
|
|
19043
|
+
${({ disabled, theme }) => disabled &&
|
|
19044
|
+
styled.css `
|
|
19045
|
+
color: ${theme.colors.linkDisabled};
|
|
19046
|
+
cursor: not-allowed;
|
|
19047
|
+
`}
|
|
19044
19048
|
`;
|
|
19045
19049
|
|
|
19046
19050
|
function Pagination(props) {
|
|
@@ -19114,12 +19118,7 @@ function Pagination(props) {
|
|
|
19114
19118
|
}
|
|
19115
19119
|
setPaginationElements(elements);
|
|
19116
19120
|
};
|
|
19117
|
-
return (jsxRuntime.jsx(styled.ThemeProvider, { theme: FRSTTheme, children: jsxRuntime.jsxs(containerPagination, { style: { ...props.style }, id:
|
|
19118
|
-
jsxRuntime.jsxs(pageButtonList, { id: 'page-button-list', children: [props.showFirstLastButton ?
|
|
19119
|
-
jsxRuntime.jsx(buttonPage, { disabled: activePage === 0, onClick: () => activePage > 0 && handleSwitchPage(0), selected: false, children: props.textFirstButton ? props.textFirstButton : 'Primeiro' })
|
|
19120
|
-
: null, jsxRuntime.jsx(buttonPage, { disabled: activePage === 0, onClick: () => activePage > 0 && handleSwitchPage(activePage - 1), selected: false, children: jsxRuntime.jsx(BackArrow, { width: '16', height: '16', fill: 'currentColor' }) }), paginationElements.map((item, index) => jsxRuntime.jsx(buttonPage, { disabled: item === '...', onClick: () => item != '...' && handleSwitchPage(item - 1), selected: activePage === item - 1, children: item }, index)), jsxRuntime.jsx(buttonPage, { disabled: activePage === totalPages - 1, onClick: () => activePage < totalPages - 1 && handleSwitchPage(activePage + 1), selected: false, children: jsxRuntime.jsx(FowardArrow, { width: '18', height: '18', fill: 'currentColor' }) }), props.showFirstLastButton ?
|
|
19121
|
-
jsxRuntime.jsx(buttonPage, { disabled: activePage === totalPages - 1, onClick: () => activePage < totalPages - 1 && handleSwitchPage(totalPages - 1), selected: false, children: props.textLastButton ? props.textLastButton : 'Último' })
|
|
19122
|
-
: null] })] }) }));
|
|
19121
|
+
return (jsxRuntime.jsx(styled.ThemeProvider, { theme: FRSTTheme, children: jsxRuntime.jsxs(containerPagination, { style: { ...props.style }, id: "container-pagination", children: [jsxRuntime.jsx(contentPagination, { id: "content-pagination", children: props.children }), !IsLoading && Refresh > 0 && (jsxRuntime.jsxs(pageButtonList, { id: "page-button-list", children: [props.showFirstLastButton ? (jsxRuntime.jsx(ButtonPage, { disabled: activePage === 0, onClick: () => activePage > 0 && handleSwitchPage(0), selected: false, backgroundColor: props.buttonBackgroundColor, children: props.textFirstButton ? props.textFirstButton : 'Primeiro' })) : null, jsxRuntime.jsx(ButtonPage, { disabled: activePage === 0, onClick: () => activePage > 0 && handleSwitchPage(activePage - 1), selected: false, backgroundColor: props.buttonBackgroundColor, children: jsxRuntime.jsx(BackArrow, { width: "16", height: "16", fill: "currentColor" }) }), paginationElements.map((item, index) => (jsxRuntime.jsx(ButtonPage, { disabled: item === '...', onClick: () => item != '...' && handleSwitchPage(item - 1), selected: activePage === item - 1, backgroundColor: props.buttonBackgroundColor, children: item }, index))), jsxRuntime.jsx(ButtonPage, { disabled: activePage === totalPages - 1, onClick: () => activePage < totalPages - 1 && handleSwitchPage(activePage + 1), selected: false, backgroundColor: props.buttonBackgroundColor, children: jsxRuntime.jsx(FowardArrow, { width: "18", height: "18", fill: "currentColor" }) }), props.showFirstLastButton ? (jsxRuntime.jsx(ButtonPage, { disabled: activePage === totalPages - 1, onClick: () => activePage < totalPages - 1 && handleSwitchPage(totalPages - 1), selected: false, backgroundColor: props.buttonBackgroundColor, children: props.textLastButton ? props.textLastButton : 'Último' })) : null] }))] }) }));
|
|
19123
19122
|
}
|
|
19124
19123
|
|
|
19125
19124
|
const containerThumbContent = styled__default["default"].div `
|
|
@@ -24539,11 +24538,7 @@ function abbreviateMiddleSurnames(fullName) {
|
|
|
24539
24538
|
}
|
|
24540
24539
|
}
|
|
24541
24540
|
|
|
24542
|
-
function NewChallengeCard({ selected, avatar, name, role, description, lastStep, cardID,
|
|
24543
|
-
const isAuthor = userLoggedUUID === authorUUID;
|
|
24544
|
-
const isGroupExecution = !!goalExecutionGroup?.room_uuid;
|
|
24545
|
-
const showExecutionGroupButton = isCompanyAbleGroupExecution && ((isAuthor && !isGroupExecution) || isGroupExecution);
|
|
24546
|
-
const isMemberGroup = goalExecutionGroup?.users_room_uuid?.some(userRoom => userRoom?.uuid === userLoggedUUID);
|
|
24541
|
+
function NewChallengeCard({ selected, avatar, name, role, description, lastStep, cardID, type_challenge = "original", isIterator, isVisibleHeaderTypeChallenge = false, indicatorStart, indicatorCurrent, indicatorGoal, impact, relevance, handleSelected, handleClickChallenge, handleClickPresentation, onClickAvatar, handleGroupExecution, iteratorNumber, resultNumber, showCheckbox, showExecutionGroup, }) {
|
|
24547
24542
|
const options = [
|
|
24548
24543
|
{
|
|
24549
24544
|
description: 'Ver desafio',
|
|
@@ -24555,71 +24550,35 @@ function NewChallengeCard({ selected, avatar, name, role, description, lastStep,
|
|
|
24555
24550
|
startIcon: jsxRuntime.jsx(PresentationIcon, {}),
|
|
24556
24551
|
onClick: handleClickPresentation
|
|
24557
24552
|
},
|
|
24558
|
-
|
|
24553
|
+
showExecutionGroup && {
|
|
24559
24554
|
description: 'Grupo de execução',
|
|
24560
24555
|
startIcon: jsxRuntime.jsx(RoomGroupIcon, {}),
|
|
24561
|
-
onClick:
|
|
24556
|
+
onClick: handleGroupExecution
|
|
24562
24557
|
}
|
|
24563
24558
|
]?.filter(Boolean);
|
|
24564
24559
|
const getStepName = (step) => {
|
|
24565
|
-
|
|
24566
|
-
|
|
24567
|
-
|
|
24568
|
-
|
|
24569
|
-
|
|
24570
|
-
'
|
|
24571
|
-
|
|
24572
|
-
|
|
24573
|
-
|
|
24574
|
-
|
|
24575
|
-
|
|
24576
|
-
|
|
24577
|
-
|
|
24578
|
-
|
|
24579
|
-
|
|
24580
|
-
|
|
24581
|
-
|
|
24582
|
-
|
|
24583
|
-
|
|
24584
|
-
|
|
24585
|
-
|
|
24586
|
-
|
|
24587
|
-
color: '#DACEF2'
|
|
24588
|
-
},
|
|
24589
|
-
'3-aprendizados-e-resultados': {
|
|
24590
|
-
name: 'Fase 4 - Resultado',
|
|
24591
|
-
color: '#EBEBEB'
|
|
24592
|
-
},
|
|
24593
|
-
'4-proximos-passos': {
|
|
24594
|
-
name: 'Desafio finalizado',
|
|
24595
|
-
color: '#BDE3B9'
|
|
24596
|
-
}
|
|
24597
|
-
};
|
|
24598
|
-
}
|
|
24599
|
-
else {
|
|
24600
|
-
steps = {
|
|
24601
|
-
'0-problema': {
|
|
24602
|
-
name: 'Fase 1: Definição',
|
|
24603
|
-
color: '#EBEBEB'
|
|
24604
|
-
},
|
|
24605
|
-
'1-hipotese': {
|
|
24606
|
-
name: 'Fase 2: Hipóteses',
|
|
24607
|
-
color: '#FCDFA6'
|
|
24608
|
-
},
|
|
24609
|
-
'2-testes': {
|
|
24610
|
-
name: 'Fase 3: Testes',
|
|
24611
|
-
color: '#DACEF2'
|
|
24612
|
-
},
|
|
24613
|
-
'3-aprendizados-e-resultados': {
|
|
24614
|
-
name: 'Fase 4: Resultados',
|
|
24615
|
-
color: '#F2CEE4'
|
|
24616
|
-
},
|
|
24617
|
-
'4-proximos-passos': {
|
|
24618
|
-
name: 'Desafio finalizado',
|
|
24619
|
-
color: '#BDE3B9'
|
|
24620
|
-
}
|
|
24621
|
-
};
|
|
24622
|
-
}
|
|
24560
|
+
let steps = {
|
|
24561
|
+
'0-problema': {
|
|
24562
|
+
name: 'Fase 1 - Definição da meta',
|
|
24563
|
+
color: '#F2CEE4'
|
|
24564
|
+
},
|
|
24565
|
+
'1-hipotese': {
|
|
24566
|
+
name: 'Fase 2 - Plano de ação',
|
|
24567
|
+
color: '#FCDFA6'
|
|
24568
|
+
},
|
|
24569
|
+
'2-testes': {
|
|
24570
|
+
name: 'Fase 3 - Execução',
|
|
24571
|
+
color: '#DACEF2'
|
|
24572
|
+
},
|
|
24573
|
+
'3-aprendizados-e-resultados': {
|
|
24574
|
+
name: 'Fase 4 - Resultado',
|
|
24575
|
+
color: '#EBEBEB'
|
|
24576
|
+
},
|
|
24577
|
+
'4-proximos-passos': {
|
|
24578
|
+
name: 'Desafio finalizado',
|
|
24579
|
+
color: '#BDE3B9'
|
|
24580
|
+
}
|
|
24581
|
+
};
|
|
24623
24582
|
return steps[step];
|
|
24624
24583
|
};
|
|
24625
24584
|
return (jsxRuntime.jsxs(cardWrapper, { id: cardID, children: [isVisibleHeaderTypeChallenge ? jsxRuntime.jsxs(tagTypeChallenge, { isIterator: isIterator, children: [jsxRuntime.jsx("div", { style: { marginTop: "6px" }, children: type_challenge == "duplicated" ?
|
|
@@ -6,10 +6,6 @@ interface ChallengeCardProps {
|
|
|
6
6
|
description?: string;
|
|
7
7
|
lastStep?: string;
|
|
8
8
|
cardID: string;
|
|
9
|
-
goalUUID?: string;
|
|
10
|
-
authorUUID?: string;
|
|
11
|
-
userLoggedUUID?: string;
|
|
12
|
-
group_uuid: string;
|
|
13
9
|
type_challenge?: string;
|
|
14
10
|
isIterator?: boolean;
|
|
15
11
|
indicatorStart?: number;
|
|
@@ -23,12 +19,11 @@ interface ChallengeCardProps {
|
|
|
23
19
|
onClickAvatar?: () => void;
|
|
24
20
|
isVisibleHeaderTypeChallenge?: boolean;
|
|
25
21
|
handleGroupExecution: (params: any) => void;
|
|
26
|
-
goalExecutionGroup: any;
|
|
27
22
|
iteratorNumber?: number;
|
|
28
|
-
isCompanyAbleGroupExecution: boolean;
|
|
29
23
|
resultNumber?: number;
|
|
30
24
|
showCheckbox?: boolean;
|
|
25
|
+
showExecutionGroup: boolean;
|
|
31
26
|
}
|
|
32
|
-
export default function NewChallengeCard({ selected, avatar, name, role, description, lastStep, cardID,
|
|
27
|
+
export default function NewChallengeCard({ selected, avatar, name, role, description, lastStep, cardID, type_challenge, isIterator, isVisibleHeaderTypeChallenge, indicatorStart, indicatorCurrent, indicatorGoal, impact, relevance, handleSelected, handleClickChallenge, handleClickPresentation, onClickAvatar, handleGroupExecution, iteratorNumber, resultNumber, showCheckbox, showExecutionGroup, }: ChallengeCardProps): import("react/jsx-runtime").JSX.Element;
|
|
33
28
|
export {};
|
|
34
29
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../src/components/DS/newCards/challenge/index.tsx"],"names":[],"mappings":"AASA,UAAU,kBAAkB;IACxB,QAAQ,CAAC,EAAE,OAAO,CAAA;IAClB,MAAM,CAAC,EAAE,MAAM,CAAA;IACf,IAAI,CAAC,EAAE,MAAM,CAAA;IACb,IAAI,CAAC,EAAE,MAAM,CAAA;IACb,WAAW,CAAC,EAAE,MAAM,CAAA;IACpB,QAAQ,CAAC,EAAE,MAAM,CAAA;IACjB,MAAM,EAAE,MAAM,CAAA;IACd,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../src/components/DS/newCards/challenge/index.tsx"],"names":[],"mappings":"AASA,UAAU,kBAAkB;IACxB,QAAQ,CAAC,EAAE,OAAO,CAAA;IAClB,MAAM,CAAC,EAAE,MAAM,CAAA;IACf,IAAI,CAAC,EAAE,MAAM,CAAA;IACb,IAAI,CAAC,EAAE,MAAM,CAAA;IACb,WAAW,CAAC,EAAE,MAAM,CAAA;IACpB,QAAQ,CAAC,EAAE,MAAM,CAAA;IACjB,MAAM,EAAE,MAAM,CAAA;IACd,cAAc,CAAC,EAAE,MAAM,CAAA;IACvB,UAAU,CAAC,EAAE,OAAO,CAAA;IACpB,cAAc,CAAC,EAAC,MAAM,CAAA;IACtB,gBAAgB,CAAC,EAAC,MAAM,CAAA;IACxB,aAAa,CAAC,EAAC,MAAM,CAAA;IACrB,MAAM,CAAC,EAAC,MAAM,CAAA;IACd,SAAS,CAAC,EAAC,MAAM,CAAA;IACjB,cAAc,CAAC,EAAE,CAAC,CAAC,KAAA,KAAK,IAAI,CAAA;IAC5B,oBAAoB,CAAC,EAAE,MAAM,IAAI,CAAA;IACjC,uBAAuB,CAAC,EAAE,MAAM,IAAI,CAAA;IACpC,aAAa,CAAC,EAAE,MAAM,IAAI,CAAA;IAC1B,4BAA4B,CAAC,EAAE,OAAO,CAAA;IACtC,oBAAoB,EAAE,CAAC,MAAM,EAAE,GAAG,KAAK,IAAI,CAAC;IAC5C,cAAc,CAAC,EAAC,MAAM,CAAA;IACtB,YAAY,CAAC,EAAC,MAAM,CAAA;IACpB,YAAY,CAAC,EAAE,OAAO,CAAA;IACtB,kBAAkB,EAAE,OAAO,CAAA;CAC9B;AAED,MAAM,CAAC,OAAO,UAAU,gBAAgB,CAAE,EACtC,QAAQ,EACR,MAAM,EACN,IAAI,EACJ,IAAI,EACJ,WAAW,EACX,QAAQ,EACR,MAAM,EACN,cAA2B,EAC3B,UAAU,EACV,4BAAoC,EACpC,cAAc,EACd,gBAAgB,EAChB,aAAa,EACb,MAAM,EACN,SAAS,EACT,cAAc,EACd,oBAAoB,EACpB,uBAAuB,EACvB,aAAa,EACb,oBAAoB,EACpB,cAAc,EACd,YAAY,EACZ,YAAY,EACZ,kBAAkB,GACrB,EAAE,kBAAkB,2CAiKpB"}
|
|
@@ -1,16 +1,7 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
2
|
interface IPagination {
|
|
3
|
-
/**
|
|
4
|
-
* @prop {number} totalRegistry: Quantidade total de registros a serem paginados
|
|
5
|
-
*/
|
|
6
3
|
totalRegistry: number;
|
|
7
|
-
/**
|
|
8
|
-
* @prop {number} registryPerPage: Quantidade de registros a serem exibidos por página
|
|
9
|
-
*/
|
|
10
4
|
registryPerPage: number;
|
|
11
|
-
/**
|
|
12
|
-
* @prop {number} qtdNumberShowPagination: Quantidade de botões a serem exibidos na paginação
|
|
13
|
-
*/
|
|
14
5
|
qtdNumberShowPagination: number;
|
|
15
6
|
showFirstLastButton?: boolean;
|
|
16
7
|
isLoading?: boolean;
|
|
@@ -19,6 +10,7 @@ interface IPagination {
|
|
|
19
10
|
children: React.ReactNode;
|
|
20
11
|
onLoadPage: (page: number) => void;
|
|
21
12
|
style?: React.CSSProperties;
|
|
13
|
+
buttonBackgroundColor?: string;
|
|
22
14
|
}
|
|
23
15
|
export default function Pagination(props: IPagination): import("react/jsx-runtime").JSX.Element;
|
|
24
16
|
export {};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/components/IJ/pagination/index.tsx"],"names":[],"mappings":";AAMA,UAAU,WAAW;IACjB
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/components/IJ/pagination/index.tsx"],"names":[],"mappings":";AAMA,UAAU,WAAW;IACjB,aAAa,EAAE,MAAM,CAAA;IACrB,eAAe,EAAE,MAAM,CAAA;IACvB,uBAAuB,EAAE,MAAM,CAAA;IAC/B,mBAAmB,CAAC,EAAE,OAAO,CAAA;IAC7B,SAAS,CAAC,EAAE,OAAO,CAAA;IACnB,eAAe,CAAC,EAAE,MAAM,CAAA;IACxB,cAAc,CAAC,EAAE,MAAM,CAAA;IACvB,QAAQ,EAAE,KAAK,CAAC,SAAS,CAAA;IACzB,UAAU,EAAE,CAAC,IAAI,EAAE,MAAM,KAAK,IAAI,CAAA;IAClC,KAAK,CAAC,EAAE,KAAK,CAAC,aAAa,CAAA;IAC3B,qBAAqB,CAAC,EAAE,MAAM,CAAA;CACjC;AAED,MAAM,CAAC,OAAO,UAAU,UAAU,CAAC,KAAK,EAAE,WAAW,2CAyIpD"}
|
|
@@ -1,10 +1,11 @@
|
|
|
1
|
-
interface
|
|
1
|
+
interface ButtonProps {
|
|
2
2
|
selected: boolean;
|
|
3
3
|
disabled: boolean;
|
|
4
|
+
backgroundColor?: string;
|
|
4
5
|
}
|
|
5
6
|
export declare const containerPagination: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
6
7
|
export declare const contentPagination: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
7
8
|
export declare const pageButtonList: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
8
|
-
export declare const
|
|
9
|
+
export declare const ButtonPage: import("styled-components").StyledComponent<"div", any, ButtonProps, never>;
|
|
9
10
|
export {};
|
|
10
11
|
//# sourceMappingURL=paginationStyles.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"paginationStyles.d.ts","sourceRoot":"","sources":["../../../../../src/components/IJ/pagination/paginationStyles.ts"],"names":[],"mappings":"AAEA,UAAU,WAAW;IACjB,QAAQ,EAAE,OAAO,CAAA;IACjB,QAAQ,EAAE,OAAO,CAAA;
|
|
1
|
+
{"version":3,"file":"paginationStyles.d.ts","sourceRoot":"","sources":["../../../../../src/components/IJ/pagination/paginationStyles.ts"],"names":[],"mappings":"AAEA,UAAU,WAAW;IACjB,QAAQ,EAAE,OAAO,CAAA;IACjB,QAAQ,EAAE,OAAO,CAAA;IACjB,eAAe,CAAC,EAAE,MAAM,CAAC;CAC5B;AAED,eAAO,MAAM,mBAAmB,oEAK/B,CAAA;AAED,eAAO,MAAM,iBAAiB,oEAM7B,CAAA;AAED,eAAO,MAAM,cAAc,oEAM1B,CAAA;AAED,eAAO,MAAM,UAAU,6EAsCtB,CAAC"}
|
|
@@ -15,7 +15,7 @@ export declare const LoginIconCustom: import("styled-components").StyledComponen
|
|
|
15
15
|
muiName: string;
|
|
16
16
|
}, any, {}, never>;
|
|
17
17
|
export declare const FormControlSelect: import("styled-components").StyledComponent<import("@mui/material/OverridableComponent").OverridableComponent<import("@mui/material/FormControl").FormControlTypeMap<{}, "div">>, any, {}, never>;
|
|
18
|
-
export declare const DropDownList: import("styled-components").StyledComponent<(<Value = unknown>(props: import("@mui/material/Select").SelectProps<Value>) => JSX.Element) & {
|
|
18
|
+
export declare const DropDownList: import("styled-components").StyledComponent<(<Value = unknown>(props: import("@mui/material/Select").SelectProps<Value>) => import("react").JSX.Element) & {
|
|
19
19
|
muiName: string;
|
|
20
20
|
}, any, {}, never>;
|
|
21
21
|
export declare const LabelDateStepper: import("styled-components").StyledComponent<"label", any, {}, never>;
|