@avalabs/k2-alpine 0.0.0-main-83df864 → 0.0.0-main-465b5f9
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/components/AutosizeTextField/types.d.ts +1 -1
- package/dist/components/Icons/Sell.d.ts +2 -0
- package/dist/components/Icons/index.d.ts +3 -0
- package/dist/index.cjs +5 -5
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.ts +2 -0
- package/dist/index.js +2296 -2134
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { SxProps, TextFieldProps, TextFieldVariants } from '@mui/material';
|
|
2
|
-
import { GetVariableFontSizeParameters } from '
|
|
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;
|
|
@@ -112,6 +112,9 @@ export declare const StakeIcon: import('react').ComponentType<IconBaseProps & {
|
|
|
112
112
|
export declare const SwapIcon: import('react').ComponentType<IconBaseProps & {
|
|
113
113
|
sx?: SxProps;
|
|
114
114
|
} & import('../..').WithSxProps>;
|
|
115
|
+
export declare const SellIcon: import('react').ComponentType<IconBaseProps & {
|
|
116
|
+
sx?: SxProps;
|
|
117
|
+
} & import('../..').WithSxProps>;
|
|
115
118
|
/**
|
|
116
119
|
* Tool Icons
|
|
117
120
|
*/
|