mayak-common-library 0.0.46 → 0.0.47
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 +5 -1
- package/dist/index.mjs +5 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -662,6 +662,10 @@ var SearchInput = (props) => {
|
|
|
662
662
|
props.onClick(event);
|
|
663
663
|
}
|
|
664
664
|
};
|
|
665
|
+
const inputClasses = `
|
|
666
|
+
w-full border rounded-none border-solid normal-case text-accent-dark px-5 h-[38px] gap-x-2 hover:bg-white
|
|
667
|
+
${collapse ? "bg-white border-transparent" : "border-accent-beige"}
|
|
668
|
+
`;
|
|
665
669
|
return /* @__PURE__ */ (0, import_jsx_runtime21.jsx)(
|
|
666
670
|
import_material12.Input,
|
|
667
671
|
__spreadProps(__spreadValues({
|
|
@@ -671,7 +675,7 @@ var SearchInput = (props) => {
|
|
|
671
675
|
startAdornment: /* @__PURE__ */ (0, import_jsx_runtime21.jsx)(import_material12.Stack, { direction: "row", alignItems: "center", children: /* @__PURE__ */ (0, import_jsx_runtime21.jsx)(import_material12.InputAdornment, { position: "start", children: /* @__PURE__ */ (0, import_jsx_runtime21.jsx)(search_default, {}) }) }),
|
|
672
676
|
disableUnderline: true,
|
|
673
677
|
placeholder: "\u041F\u043E\u0448\u0443\u043A \u043F\u043E \u0440\u0430\u0439\u043E\u043D\u0443, \u0432\u0443\u043B\u0438\u0446\u0456, \u0416\u041A",
|
|
674
|
-
className:
|
|
678
|
+
className: inputClasses
|
|
675
679
|
})
|
|
676
680
|
);
|
|
677
681
|
};
|
package/dist/index.mjs
CHANGED
|
@@ -602,6 +602,10 @@ var SearchInput = (props) => {
|
|
|
602
602
|
props.onClick(event);
|
|
603
603
|
}
|
|
604
604
|
};
|
|
605
|
+
const inputClasses = `
|
|
606
|
+
w-full border rounded-none border-solid normal-case text-accent-dark px-5 h-[38px] gap-x-2 hover:bg-white
|
|
607
|
+
${collapse ? "bg-white border-transparent" : "border-accent-beige"}
|
|
608
|
+
`;
|
|
605
609
|
return /* @__PURE__ */ jsx20(
|
|
606
610
|
Input2,
|
|
607
611
|
__spreadProps(__spreadValues({
|
|
@@ -611,7 +615,7 @@ var SearchInput = (props) => {
|
|
|
611
615
|
startAdornment: /* @__PURE__ */ jsx20(Stack3, { direction: "row", alignItems: "center", children: /* @__PURE__ */ jsx20(InputAdornment2, { position: "start", children: /* @__PURE__ */ jsx20(search_default, {}) }) }),
|
|
612
616
|
disableUnderline: true,
|
|
613
617
|
placeholder: "\u041F\u043E\u0448\u0443\u043A \u043F\u043E \u0440\u0430\u0439\u043E\u043D\u0443, \u0432\u0443\u043B\u0438\u0446\u0456, \u0416\u041A",
|
|
614
|
-
className:
|
|
618
|
+
className: inputClasses
|
|
615
619
|
})
|
|
616
620
|
);
|
|
617
621
|
};
|