@youngonesworks/ui 0.1.50 → 0.1.52
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.js
CHANGED
|
@@ -110066,14 +110066,13 @@ const ScrollToTop = ({ scrollToTopTitle }) => {
|
|
|
110066
110066
|
|
|
110067
110067
|
//#endregion
|
|
110068
110068
|
//#region src/components/searchInput/index.tsx
|
|
110069
|
-
const SearchInput = ({ placeholder }) => /* @__PURE__ */ jsx(TextInput, {
|
|
110069
|
+
const SearchInput = ({ placeholder, value, onChange, className, rightSection,...props }) => /* @__PURE__ */ jsx(TextInput, {
|
|
110070
110070
|
placeholder,
|
|
110071
|
-
className: "w-full lg:w-auto lg:min-w-[23.75rem]",
|
|
110072
|
-
rightSection: /* @__PURE__ */ jsx(
|
|
110073
|
-
|
|
110074
|
-
|
|
110075
|
-
|
|
110076
|
-
})
|
|
110071
|
+
className: className || "w-full lg:w-auto lg:min-w-[23.75rem]",
|
|
110072
|
+
rightSection: rightSection || /* @__PURE__ */ jsx(Fragment$1, {}),
|
|
110073
|
+
value,
|
|
110074
|
+
onChange,
|
|
110075
|
+
...props
|
|
110077
110076
|
});
|
|
110078
110077
|
|
|
110079
110078
|
//#endregion
|