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
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "0.0.75",
2
+ "version": "0.0.77",
3
3
  "license": "MIT",
4
4
  "main": "dist/index.js",
5
5
  "typings": "dist/index.d.ts",
@@ -58,7 +58,7 @@ function CardDestaque({
58
58
  className="badge error"
59
59
  style={{ cursor: 'pointer' }}
60
60
  >
61
- Erro de execução
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">Em execução</span>,
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};
@@ -7,6 +7,7 @@ export function pxToRem(pxValue: number) {
7
7
  export const commonColors = {
8
8
  success: '#03C668',
9
9
  alert: '#FFd638',
10
+ yellowWan: '#fede00',
10
11
  blue: '#3532a4',
11
12
  blueNew: 'rgba(58, 151, 237, 1)',
12
13
  red: '#DE0015',