@foodpilot/foods 0.3.13 → 0.3.14
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.
|
@@ -13,8 +13,7 @@ export type FoodsSelectProps<T> = {
|
|
|
13
13
|
BoxOptionsProps?: SxProps;
|
|
14
14
|
unit?: string;
|
|
15
15
|
};
|
|
16
|
-
type SelectWrapperProps<T> = FoodsSelectProps<T> & ExtraSelectOptions;
|
|
16
|
+
export type SelectWrapperProps<T> = FoodsSelectProps<T> & ExtraSelectOptions;
|
|
17
17
|
export declare const FoodsSelect: <T>(props: SelectWrapperProps<T>) => import("react/jsx-runtime").JSX.Element;
|
|
18
|
-
type SelectWrapperWithServerPaginationProps<T> = Omit<SelectWrapperProps<T>, "disableSearch"> & SearchOptions;
|
|
18
|
+
export type SelectWrapperWithServerPaginationProps<T> = Omit<SelectWrapperProps<T>, "disableSearch"> & SearchOptions;
|
|
19
19
|
export declare const FoodsSelectServerPagination: <T>(props: Omit<SelectWrapperProps<T>, "disableSearch"> & SearchOptions) => import("react/jsx-runtime").JSX.Element;
|
|
20
|
-
export {};
|