@xsolla/xui-context-menu 0.140.0 → 0.141.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/web/index.mjs CHANGED
@@ -326,7 +326,7 @@ var StyledInput = styled4(FilteredInput)`
326
326
  margin: 0;
327
327
  color: ${(props) => props.color || "inherit"};
328
328
  font-size: ${(props) => typeof props.fontSize === "number" ? `${props.fontSize}px` : props.fontSize || "inherit"};
329
- font-family: inherit;
329
+ font-family: ${(props) => props.fontFamily || '"Aktiv Grotesk", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif'};
330
330
  text-align: inherit;
331
331
 
332
332
  &::placeholder {
@@ -361,6 +361,7 @@ var InputPrimitive = forwardRef(
361
361
  style,
362
362
  color,
363
363
  fontSize,
364
+ fontFamily,
364
365
  placeholderTextColor,
365
366
  maxLength,
366
367
  name,
@@ -404,6 +405,7 @@ var InputPrimitive = forwardRef(
404
405
  style,
405
406
  color,
406
407
  fontSize,
408
+ fontFamily,
407
409
  placeholderTextColor,
408
410
  maxLength,
409
411
  "aria-invalid": ariaInvalid,