@tracktor/design-system 4.20.3 → 4.20.4
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.
|
@@ -2,5 +2,11 @@
|
|
|
2
2
|
* TextField with auto-sizing width based on content
|
|
3
3
|
* Automatically adjusts width to fit the input value, placeholder, or default value
|
|
4
4
|
*/
|
|
5
|
-
declare const TextFieldAutosize: import('react').ForwardRefExoticComponent<(Omit<import('@mui/material').FilledTextFieldProps
|
|
5
|
+
declare const TextFieldAutosize: import('react').ForwardRefExoticComponent<(Omit<import('@mui/material').FilledTextFieldProps & {
|
|
6
|
+
maxWidth?: number;
|
|
7
|
+
}, "ref"> | Omit<import('@mui/material').OutlinedTextFieldProps & {
|
|
8
|
+
maxWidth?: number;
|
|
9
|
+
}, "ref"> | Omit<import('@mui/material').StandardTextFieldProps & {
|
|
10
|
+
maxWidth?: number;
|
|
11
|
+
}, "ref">) & import('react').RefAttributes<HTMLDivElement>>;
|
|
6
12
|
export default TextFieldAutosize;
|