wca-designsystem 1.0.37 → 1.0.38
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
|
@@ -173,6 +173,7 @@ function Passos({
|
|
|
173
173
|
<h3>{passoInfos?.titulo}</h3>
|
|
174
174
|
<p className="preto">{passoInfos?.subTitulo}</p>
|
|
175
175
|
</div>
|
|
176
|
+
|
|
176
177
|
<HoverPopUp
|
|
177
178
|
texto={passoInfos?.subTitulo}
|
|
178
179
|
className="ajuda-wrapper ajuda-passos-wrapper"
|
|
@@ -183,7 +184,7 @@ function Passos({
|
|
|
183
184
|
fill={theme.colors.gray['700']}
|
|
184
185
|
svg={ajuda}
|
|
185
186
|
/>
|
|
186
|
-
</HoverPopUp>
|
|
187
|
+
</HoverPopUp>
|
|
187
188
|
</div>
|
|
188
189
|
|
|
189
190
|
<div className="botoes">
|
|
@@ -213,6 +213,7 @@ export const PassoInfos = styled.div<PassosWrapperProps>`
|
|
|
213
213
|
|
|
214
214
|
.preto {
|
|
215
215
|
color: ${theme.colors.blackSti};
|
|
216
|
+
max-width: 550px;
|
|
216
217
|
}
|
|
217
218
|
|
|
218
219
|
h3 {
|
|
@@ -224,7 +225,7 @@ export const PassoInfos = styled.div<PassosWrapperProps>`
|
|
|
224
225
|
}
|
|
225
226
|
}
|
|
226
227
|
|
|
227
|
-
.ajuda-wrapper {
|
|
228
|
+
.ajuda-wrapper {
|
|
228
229
|
width: 32px;
|
|
229
230
|
min-width: 32px;
|
|
230
231
|
height: 32px;
|
|
@@ -235,15 +236,15 @@ export const PassoInfos = styled.div<PassosWrapperProps>`
|
|
|
235
236
|
border-radius: 8px;
|
|
236
237
|
}
|
|
237
238
|
|
|
238
|
-
|
|
239
|
+
.ajuda-passos-wrapper {
|
|
239
240
|
display: flex;
|
|
240
241
|
align-items: center;
|
|
241
|
-
padding-left: 5px;
|
|
242
242
|
margin-top: 10px;
|
|
243
243
|
}
|
|
244
|
-
|
|
245
|
-
|
|
244
|
+
|
|
245
|
+
.infosWrapper {
|
|
246
246
|
display: flex;
|
|
247
|
+
gap: 10px;
|
|
247
248
|
}
|
|
248
249
|
|
|
249
250
|
.botoes {
|
|
@@ -67,11 +67,11 @@ const Template: any = (args: any) => (
|
|
|
67
67
|
export const TabelaProps = Template.bind({});
|
|
68
68
|
|
|
69
69
|
TabelaProps.args = {
|
|
70
|
-
data:
|
|
70
|
+
data: data,
|
|
71
71
|
footer: footer,
|
|
72
72
|
hasExpand: false,
|
|
73
73
|
hasSelect: false,
|
|
74
|
-
isLoading:
|
|
74
|
+
isLoading: false,
|
|
75
75
|
acoesChildren: (row: any): JSX.Element => (
|
|
76
76
|
<>
|
|
77
77
|
<Botao onClick={() => console.log(row)} tipo={'table'} children={'▶'} />
|