@data-c/ui 0.2.47 → 0.2.49
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 -3
- package/dist/index.js +8 -8
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -515,10 +515,9 @@ declare const Dialog: {
|
|
|
515
515
|
Confirm: typeof DialogConfirm;
|
|
516
516
|
};
|
|
517
517
|
|
|
518
|
-
interface FilterAdvancedActionsContainerProps {
|
|
519
|
-
children: React__default.ReactNode;
|
|
518
|
+
interface FilterAdvancedActionsContainerProps extends StackProps {
|
|
520
519
|
}
|
|
521
|
-
declare function FilterAdvancedActionsContainer({ children, }: FilterAdvancedActionsContainerProps): react_jsx_runtime.JSX.Element;
|
|
520
|
+
declare function FilterAdvancedActionsContainer({ children, ...rest }: FilterAdvancedActionsContainerProps): react_jsx_runtime.JSX.Element;
|
|
522
521
|
|
|
523
522
|
declare function FilterAdvancedButton(): react_jsx_runtime.JSX.Element;
|
|
524
523
|
|
|
@@ -1023,6 +1022,7 @@ type AutocompleteProps<T = any> = {
|
|
|
1023
1022
|
onChange?: (value: T | T[] | null) => void;
|
|
1024
1023
|
value?: T | null;
|
|
1025
1024
|
options: Array<T>;
|
|
1025
|
+
filterOptions?: (options: T[], state: any) => T[];
|
|
1026
1026
|
renderValue?: (value: T) => string;
|
|
1027
1027
|
onSearchChange?: (query: string, reason: AutocompleteInputChangeReason) => void;
|
|
1028
1028
|
isLoading?: boolean;
|
|
@@ -1049,6 +1049,7 @@ declare function TransporterRoot<T = any>(props: TransporterRootProps<T>): react
|
|
|
1049
1049
|
|
|
1050
1050
|
type TransporterTextFieldProps = {
|
|
1051
1051
|
endAdornment?: React.ReactElement;
|
|
1052
|
+
disableLocalFiltering?: boolean;
|
|
1052
1053
|
} & Omit<AutocompleteProps, 'onChange' | 'value'>;
|
|
1053
1054
|
declare function TransporterTextField(props: TransporterTextFieldProps): react_jsx_runtime.JSX.Element;
|
|
1054
1055
|
|