@avalabs/k2-alpine 0.0.0-main-7a74e15 → 0.0.0-main-6edf676

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.
@@ -1,5 +1,5 @@
1
1
  import { SxProps, TextFieldProps, TextFieldVariants } from '@mui/material';
2
- import { GetVariableFontSizeParameters } from 'src/utils/getVariableFontSize';
2
+ import { GetVariableFontSizeParameters } from '../../utils/getVariableFontSize';
3
3
  export type AutosizeTextFieldProps<TVariant extends TextFieldVariants> = TextFieldProps<TVariant> & {
4
4
  readonly value: string;
5
5
  readonly defaultWidth?: number;
@@ -15,6 +15,7 @@ export type CurrencyInputProps = Omit<AutosizeTextFieldProps<'standard'>, 'value
15
15
  value: string;
16
16
  type: ValueType;
17
17
  }) => void;
18
+ readonly description?: string;
18
19
  };
19
20
  export type CurrencySymbolInfo = {
20
21
  readonly symbol: string;