@data-c/ui 0.2.37 → 0.2.38
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/index.d.ts +4 -1
- package/dist/index.js +7 -7
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -886,6 +886,7 @@ type AutocompleteProps<T = any> = {
|
|
|
886
886
|
disableCloseOnSelect?: boolean;
|
|
887
887
|
readonly?: boolean;
|
|
888
888
|
multiple?: boolean;
|
|
889
|
+
endAdornment?: React__default.ReactElement;
|
|
889
890
|
} & TextFieldProps$1;
|
|
890
891
|
declare function Autocomplete<T = any>(props: AutocompleteProps<T>): react_jsx_runtime.JSX.Element;
|
|
891
892
|
|
|
@@ -903,7 +904,9 @@ interface TransporterRootProps<T> {
|
|
|
903
904
|
}
|
|
904
905
|
declare function TransporterRoot<T = any>(props: TransporterRootProps<T>): react_jsx_runtime.JSX.Element;
|
|
905
906
|
|
|
906
|
-
type TransporterTextFieldProps = {
|
|
907
|
+
type TransporterTextFieldProps = {
|
|
908
|
+
endAdornment?: React.ReactElement;
|
|
909
|
+
} & Omit<AutocompleteProps, 'onChange' | 'value'>;
|
|
907
910
|
declare function TransporterTextField(props: TransporterTextFieldProps): react_jsx_runtime.JSX.Element;
|
|
908
911
|
|
|
909
912
|
type TransporterStore<T> = {
|