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 CHANGED
@@ -111,11 +111,11 @@ interface FromToInputProps {
111
111
  }
112
112
  declare const FromToInput: FC<FromToInputProps>;
113
113
 
114
- interface SearchInputProps<T> {
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<T> & UseControllerProps<T>) => react_jsx_runtime.JSX.Element;
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<T> {
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<T> & UseControllerProps<T>) => react_jsx_runtime.JSX.Element;
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
@@ -335,7 +335,7 @@ var SelectPro = ({
335
335
  ref: btn,
336
336
  onClick: handleClick,
337
337
  onClose: handleClose,
338
- collapse: open
338
+ collapse: open ? "true" : void 0
339
339
  }) : /* @__PURE__ */ (0, import_jsx_runtime8.jsxs)(
340
340
  import_material4.Button,
341
341
  {
package/dist/index.mjs CHANGED
@@ -276,7 +276,7 @@ var SelectPro = ({
276
276
  ref: btn,
277
277
  onClick: handleClick,
278
278
  onClose: handleClose,
279
- collapse: open
279
+ collapse: open ? "true" : void 0
280
280
  }) : /* @__PURE__ */ jsxs3(
281
281
  Button2,
282
282
  {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mayak-common-library",
3
- "version": "0.0.71",
3
+ "version": "0.0.73",
4
4
  "private": false,
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",