wca-designsystem 0.0.75 → 0.0.77
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/package.json
CHANGED
|
@@ -58,7 +58,7 @@ function CardDestaque({
|
|
|
58
58
|
className="badge error"
|
|
59
59
|
style={{ cursor: 'pointer' }}
|
|
60
60
|
>
|
|
61
|
-
Erro
|
|
61
|
+
Erro
|
|
62
62
|
<Icone
|
|
63
63
|
svg={download}
|
|
64
64
|
fill={theme.colors.white}
|
|
@@ -69,7 +69,7 @@ function CardDestaque({
|
|
|
69
69
|
</HoverPopUp>
|
|
70
70
|
),
|
|
71
71
|
Concluido: <span className="badge success">Concluído</span>,
|
|
72
|
-
Executando: <span className="badge exec">
|
|
72
|
+
Executando: <span className="badge exec">Executando</span>,
|
|
73
73
|
Pendente: <span className="badge pending">Pendente</span>,
|
|
74
74
|
Cancelado: <span className="badge cancel">Cancelado</span>,
|
|
75
75
|
Aguardando: <span className="badge waiting">Aguardando</span>,
|
|
@@ -100,7 +100,7 @@ function CardDestaque({
|
|
|
100
100
|
</IconeBotao>
|
|
101
101
|
|
|
102
102
|
<IconeBotao
|
|
103
|
-
toolTipInfo="Upload"
|
|
103
|
+
toolTipInfo="Upload de arquivo"
|
|
104
104
|
tipo="table"
|
|
105
105
|
color={liberaUpload ? color : theme.colors.gray['300']}
|
|
106
106
|
onClick={onClickUpload!}
|
|
@@ -72,11 +72,14 @@ export const CardDestaqueBody = styled.div`
|
|
|
72
72
|
}
|
|
73
73
|
|
|
74
74
|
.cancel,
|
|
75
|
-
.waiting,
|
|
76
75
|
.pending {
|
|
77
76
|
background-color: ${theme.colors.alert};
|
|
78
77
|
}
|
|
79
78
|
|
|
79
|
+
.waiting {
|
|
80
|
+
background-color: ${theme.colors.yellowWan};
|
|
81
|
+
}
|
|
82
|
+
|
|
80
83
|
.porcentagem {
|
|
81
84
|
background-color: ${theme.colors.gray['300']};
|
|
82
85
|
color: ${theme.colors.blackSti};
|