@julseb-lib/react 0.0.84 → 0.0.85
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.cjs.js +42 -34
- package/dist/index.es.js +82 -62
- package/dist/index.umd.js +38 -30
- package/dist/lib/components/Text/styles.tsx +22 -0
- package/package.json +1 -1
|
@@ -157,6 +157,17 @@ const StyledUl = styled.ul<ILibTextStyle>`
|
|
|
157
157
|
$color,
|
|
158
158
|
$linkColor,
|
|
159
159
|
})}
|
|
160
|
+
|
|
161
|
+
li {
|
|
162
|
+
${({ $textAlign, $color, $linkColor }) =>
|
|
163
|
+
TextBaseMixin({
|
|
164
|
+
$fontSize: "body",
|
|
165
|
+
$fontWeight: "regular",
|
|
166
|
+
$textAlign,
|
|
167
|
+
$color,
|
|
168
|
+
$linkColor,
|
|
169
|
+
})}
|
|
170
|
+
}
|
|
160
171
|
`
|
|
161
172
|
|
|
162
173
|
const StyledOl = styled.ol<ILibTextStyle>`
|
|
@@ -169,6 +180,17 @@ const StyledOl = styled.ol<ILibTextStyle>`
|
|
|
169
180
|
$color,
|
|
170
181
|
$linkColor,
|
|
171
182
|
})}
|
|
183
|
+
|
|
184
|
+
li {
|
|
185
|
+
${({ $textAlign, $color, $linkColor }) =>
|
|
186
|
+
TextBaseMixin({
|
|
187
|
+
$fontSize: "body",
|
|
188
|
+
$fontWeight: "regular",
|
|
189
|
+
$textAlign,
|
|
190
|
+
$color,
|
|
191
|
+
$linkColor,
|
|
192
|
+
})}
|
|
193
|
+
}
|
|
172
194
|
`
|
|
173
195
|
|
|
174
196
|
const StyledDl = styled.dl<ILibTextStyle>`
|