mayak-common-library 0.0.71 → 0.0.73
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.mts +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/index.js +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -111,11 +111,11 @@ interface FromToInputProps {
|
|
|
111
111
|
}
|
|
112
112
|
declare const FromToInput: FC<FromToInputProps>;
|
|
113
113
|
|
|
114
|
-
interface SearchInputProps
|
|
114
|
+
interface SearchInputProps {
|
|
115
115
|
onClick?: (event: MouseEvent<HTMLDivElement>) => void;
|
|
116
116
|
collapse?: boolean;
|
|
117
117
|
}
|
|
118
|
-
declare const SearchInput: <T extends object>(props: SearchInputProps
|
|
118
|
+
declare const SearchInput: <T extends object>(props: SearchInputProps & UseControllerProps<T>) => react_jsx_runtime.JSX.Element;
|
|
119
119
|
|
|
120
120
|
declare const Providers: FC<PropsWithChildren>;
|
|
121
121
|
|
package/dist/index.d.ts
CHANGED
|
@@ -111,11 +111,11 @@ interface FromToInputProps {
|
|
|
111
111
|
}
|
|
112
112
|
declare const FromToInput: FC<FromToInputProps>;
|
|
113
113
|
|
|
114
|
-
interface SearchInputProps
|
|
114
|
+
interface SearchInputProps {
|
|
115
115
|
onClick?: (event: MouseEvent<HTMLDivElement>) => void;
|
|
116
116
|
collapse?: boolean;
|
|
117
117
|
}
|
|
118
|
-
declare const SearchInput: <T extends object>(props: SearchInputProps
|
|
118
|
+
declare const SearchInput: <T extends object>(props: SearchInputProps & UseControllerProps<T>) => react_jsx_runtime.JSX.Element;
|
|
119
119
|
|
|
120
120
|
declare const Providers: FC<PropsWithChildren>;
|
|
121
121
|
|
package/dist/index.js
CHANGED
package/dist/index.mjs
CHANGED