@granto-umbrella/umbrella-components 3.0.11 → 3.0.13
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
|
@@ -26,7 +26,7 @@ export const ItemWrap = styled.li`
|
|
|
26
26
|
left: 11px;
|
|
27
27
|
top: 34px;
|
|
28
28
|
bottom: 0;
|
|
29
|
-
width:
|
|
29
|
+
width: 3px;
|
|
30
30
|
height: 100%;
|
|
31
31
|
background-color: ${primitiveColors.gray[200]};
|
|
32
32
|
}
|
|
@@ -92,21 +92,20 @@ export const Dot = styled.span<{
|
|
|
92
92
|
|
|
93
93
|
export const Card = styled.div`
|
|
94
94
|
background: #fff;
|
|
95
|
-
padding: 0px
|
|
95
|
+
padding: 0px 8px;
|
|
96
96
|
margin-top: -4px;
|
|
97
97
|
`;
|
|
98
98
|
|
|
99
99
|
export const Title = styled.h4`
|
|
100
100
|
margin: 0 0 4px 0;
|
|
101
|
-
font-size: ${typographyTokens.fontSizes.
|
|
101
|
+
font-size: ${typographyTokens.fontSizes.headingL};
|
|
102
102
|
color: ${semanticColors.global.text.default.enabled};
|
|
103
103
|
font-weight: ${typographyTokens.fontWeights.semibold};
|
|
104
104
|
`;
|
|
105
105
|
|
|
106
106
|
export const Sub = styled.div`
|
|
107
|
-
margin-top: 16px;
|
|
108
107
|
color: ${semanticColors.global.text.subtitle.enabled};
|
|
109
|
-
font-size:
|
|
108
|
+
font-size: 14px;
|
|
110
109
|
`;
|
|
111
110
|
|
|
112
111
|
export const Row = styled.div`
|
|
@@ -33,7 +33,9 @@ export const Timeline: React.FC<TimelineProps> = ({
|
|
|
33
33
|
ariaLabel="Carregando ponto da linha do tempo"
|
|
34
34
|
/>
|
|
35
35
|
<Card>
|
|
36
|
-
<
|
|
36
|
+
<Title>
|
|
37
|
+
<Skeleton variant="text" width="60%" height={32} />
|
|
38
|
+
</Title>
|
|
37
39
|
|
|
38
40
|
<Sub>
|
|
39
41
|
<Skeleton variant="text" width="40%" height={18} />
|