mytek-components 1.0.1 → 1.0.2
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 +4 -3
- package/dist/index.js.map +1 -1
- package/dist/index.umd.cjs +4 -3
- package/dist/index.umd.cjs.map +1 -1
- package/package.json +1 -1
- package/dist/index.css +0 -1
package/dist/index.js
CHANGED
|
@@ -17157,7 +17157,7 @@ const CustomInput = ({
|
|
|
17157
17157
|
// </Button>
|
|
17158
17158
|
// )}
|
|
17159
17159
|
// </>
|
|
17160
|
-
/* @__PURE__ */ jsxRuntimeExports.jsxs("div", { className: "flex items-center
|
|
17160
|
+
/* @__PURE__ */ jsxRuntimeExports.jsxs("div", { className: "flex items-center border border-[#12AB5B] overflow-hidden rounded-md", children: [
|
|
17161
17161
|
prefix && /* @__PURE__ */ jsxRuntimeExports.jsx("span", { className: "px-2 bg-white text-gray-700 border-r border-[#12AB5B]", children: prefix }),
|
|
17162
17162
|
/* @__PURE__ */ jsxRuntimeExports.jsx(
|
|
17163
17163
|
"input",
|
|
@@ -17178,7 +17178,7 @@ const CustomInput = ({
|
|
|
17178
17178
|
{
|
|
17179
17179
|
type: "button",
|
|
17180
17180
|
onClick: () => setShowPassword(!showPassword),
|
|
17181
|
-
className: "px-2 bg-white text-gray-500",
|
|
17181
|
+
className: "px-2 bg-white text-gray-500 border-l border-[#12AB5B]",
|
|
17182
17182
|
children: showPassword ? /* @__PURE__ */ jsxRuntimeExports.jsx(FiEye, {}) : /* @__PURE__ */ jsxRuntimeExports.jsx(FiEyeOff, {})
|
|
17183
17183
|
}
|
|
17184
17184
|
),
|
|
@@ -17187,7 +17187,8 @@ const CustomInput = ({
|
|
|
17187
17187
|
{
|
|
17188
17188
|
onClick: button == null ? void 0 : button.onClick,
|
|
17189
17189
|
disabled: enable,
|
|
17190
|
-
className: `px-
|
|
17190
|
+
className: `px-4 py-2 text-white ${backgroundColor2 || "bg-blue-600"} border-l border-[#12AB5B] rounded-r-md`,
|
|
17191
|
+
style: { height: height2 },
|
|
17191
17192
|
children: button.loader ? "..." : button.label
|
|
17192
17193
|
}
|
|
17193
17194
|
)
|