@data-c/ui 0.2.36 → 0.2.37
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 +3 -10
- package/dist/index.js +6 -6
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -875,25 +875,18 @@ declare const Page: {
|
|
|
875
875
|
Content: typeof PageContent;
|
|
876
876
|
};
|
|
877
877
|
|
|
878
|
-
|
|
878
|
+
type AutocompleteProps<T = any> = {
|
|
879
879
|
onDoubleClick?: () => void;
|
|
880
880
|
onChange?: (value: T | T[] | null) => void;
|
|
881
881
|
value?: T | null;
|
|
882
882
|
options: Array<T>;
|
|
883
883
|
renderValue?: (value: T) => string;
|
|
884
884
|
onSearchChange?: (query: string, reason: AutocompleteInputChangeReason) => void;
|
|
885
|
-
label?: string;
|
|
886
885
|
isLoading?: boolean;
|
|
887
|
-
|
|
888
|
-
helperText?: string;
|
|
889
|
-
error?: boolean;
|
|
890
|
-
required?: boolean;
|
|
891
|
-
disabled?: boolean;
|
|
892
|
-
autoFocus?: boolean;
|
|
886
|
+
disableCloseOnSelect?: boolean;
|
|
893
887
|
readonly?: boolean;
|
|
894
888
|
multiple?: boolean;
|
|
895
|
-
|
|
896
|
-
}
|
|
889
|
+
} & TextFieldProps$1;
|
|
897
890
|
declare function Autocomplete<T = any>(props: AutocompleteProps<T>): react_jsx_runtime.JSX.Element;
|
|
898
891
|
|
|
899
892
|
interface TransporterContainerProps {
|