mayak-common-library 0.0.70 → 0.0.72
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 +2 -2
- package/dist/index.mjs +2 -2
- 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
|
@@ -378,8 +378,8 @@ var SelectPro = ({
|
|
|
378
378
|
{
|
|
379
379
|
sx: {
|
|
380
380
|
position: "absolute",
|
|
381
|
-
width: freeChildWidth ? "fit-content" : !fullContainerWidth && btn ? btn.offsetWidth : "
|
|
382
|
-
left: fullContainerWidth ? 0 : "initial",
|
|
381
|
+
width: freeChildWidth ? "fit-content" : !fullContainerWidth && btn ? btn.offsetWidth : "115%",
|
|
382
|
+
// left: fullContainerWidth ? 0 : "initial",
|
|
383
383
|
right: fullContainerWidth ? 0 : "initial",
|
|
384
384
|
top: overButton ? 0 : "initial"
|
|
385
385
|
},
|
package/dist/index.mjs
CHANGED
|
@@ -319,8 +319,8 @@ var SelectPro = ({
|
|
|
319
319
|
{
|
|
320
320
|
sx: {
|
|
321
321
|
position: "absolute",
|
|
322
|
-
width: freeChildWidth ? "fit-content" : !fullContainerWidth && btn ? btn.offsetWidth : "
|
|
323
|
-
left: fullContainerWidth ? 0 : "initial",
|
|
322
|
+
width: freeChildWidth ? "fit-content" : !fullContainerWidth && btn ? btn.offsetWidth : "115%",
|
|
323
|
+
// left: fullContainerWidth ? 0 : "initial",
|
|
324
324
|
right: fullContainerWidth ? 0 : "initial",
|
|
325
325
|
top: overButton ? 0 : "initial"
|
|
326
326
|
},
|