@xsolla/xui-multi-select 0.102.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.mjs CHANGED
@@ -192,7 +192,7 @@ var Text = ({
192
192
  ...props
193
193
  }) => {
194
194
  let resolvedFontFamily = fontFamily ? fontFamily.split(",")[0].replace(/['"]/g, "").trim() : void 0;
195
- if (resolvedFontFamily === "Pilat Wide Bold") {
195
+ if (resolvedFontFamily === "Pilat Wide" || resolvedFontFamily === "Pilat Wide Bold" || resolvedFontFamily === "Aktiv Grotesk") {
196
196
  resolvedFontFamily = void 0;
197
197
  }
198
198
  const style = {
@@ -971,7 +971,7 @@ var StyledText = styled22.span`
971
971
  color: ${(props) => props.color || "inherit"};
972
972
  font-size: ${(props) => typeof props.fontSize === "number" ? `${props.fontSize}px` : props.fontSize || "inherit"};
973
973
  font-weight: ${(props) => props.fontWeight || "normal"};
974
- font-family: ${(props) => props.fontFamily || '"Pilat Wide Bold", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif !important'};
974
+ font-family: ${(props) => props.fontFamily || '"Aktiv Grotesk", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif'};
975
975
  line-height: ${(props) => typeof props.lineHeight === "number" ? `${props.lineHeight}px` : props.lineHeight || "inherit"};
976
976
  white-space: ${(props) => props.whiteSpace || "normal"};
977
977
  text-align: ${(props) => props.textAlign || "inherit"};