@xsolla/xui-multi-select 0.103.0 → 0.104.0
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/native/index.js +2 -2
- package/native/index.js.map +1 -1
- package/native/index.mjs +2 -2
- package/native/index.mjs.map +1 -1
- package/package.json +5 -5
- package/web/index.js +2 -2
- package/web/index.js.map +1 -1
- package/web/index.mjs +2 -2
- package/web/index.mjs.map +1 -1
package/native/index.js
CHANGED
|
@@ -224,7 +224,7 @@ var Text = ({
|
|
|
224
224
|
...props
|
|
225
225
|
}) => {
|
|
226
226
|
let resolvedFontFamily = fontFamily ? fontFamily.split(",")[0].replace(/['"]/g, "").trim() : void 0;
|
|
227
|
-
if (resolvedFontFamily === "Pilat Wide Bold") {
|
|
227
|
+
if (resolvedFontFamily === "Pilat Wide" || resolvedFontFamily === "Pilat Wide Bold" || resolvedFontFamily === "Aktiv Grotesk") {
|
|
228
228
|
resolvedFontFamily = void 0;
|
|
229
229
|
}
|
|
230
230
|
const style = {
|
|
@@ -998,7 +998,7 @@ var StyledText = import_styled_components4.default.span`
|
|
|
998
998
|
color: ${(props) => props.color || "inherit"};
|
|
999
999
|
font-size: ${(props) => typeof props.fontSize === "number" ? `${props.fontSize}px` : props.fontSize || "inherit"};
|
|
1000
1000
|
font-weight: ${(props) => props.fontWeight || "normal"};
|
|
1001
|
-
font-family: ${(props) => props.fontFamily || '"
|
|
1001
|
+
font-family: ${(props) => props.fontFamily || '"Aktiv Grotesk", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif'};
|
|
1002
1002
|
line-height: ${(props) => typeof props.lineHeight === "number" ? `${props.lineHeight}px` : props.lineHeight || "inherit"};
|
|
1003
1003
|
white-space: ${(props) => props.whiteSpace || "normal"};
|
|
1004
1004
|
text-align: ${(props) => props.textAlign || "inherit"};
|