@dev-blinq/ui-systems 1.0.108 → 1.0.109
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/components/CustomInput/CustomInputProps.d.ts +2 -0
- package/dist/index.js +25 -25
- package/dist/index.mjs +16 -14
- package/dist/style.css +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -1482,28 +1482,30 @@ const ec = [
|
|
|
1482
1482
|
disabled: n = !1,
|
|
1483
1483
|
label: t = "",
|
|
1484
1484
|
errExists: a = !1,
|
|
1485
|
-
|
|
1486
|
-
|
|
1487
|
-
|
|
1488
|
-
|
|
1489
|
-
|
|
1490
|
-
|
|
1485
|
+
errorMsg: i = "",
|
|
1486
|
+
placeholder: l,
|
|
1487
|
+
leftIcon: s,
|
|
1488
|
+
rightIcon: d,
|
|
1489
|
+
style: o,
|
|
1490
|
+
onAction: c,
|
|
1491
|
+
...x
|
|
1491
1492
|
}) => {
|
|
1492
|
-
const
|
|
1493
|
+
const u = {
|
|
1493
1494
|
designType: r,
|
|
1494
|
-
placeholder:
|
|
1495
|
+
placeholder: l,
|
|
1495
1496
|
disabled: n,
|
|
1496
1497
|
errExists: a,
|
|
1497
|
-
leftIcon:
|
|
1498
|
-
rightIcon:
|
|
1499
|
-
style:
|
|
1500
|
-
onAction:
|
|
1498
|
+
leftIcon: s,
|
|
1499
|
+
rightIcon: d,
|
|
1500
|
+
style: o,
|
|
1501
|
+
onAction: c,
|
|
1501
1502
|
// application if type is action
|
|
1502
|
-
props:
|
|
1503
|
+
props: x
|
|
1503
1504
|
};
|
|
1504
1505
|
return /* @__PURE__ */ E.jsxs("div", { children: [
|
|
1505
1506
|
t && /* @__PURE__ */ E.jsx(ir, { category: "text", Size: "sm", bold: "semibold", children: t }),
|
|
1506
|
-
/* @__PURE__ */ E.jsx(ws, { ...
|
|
1507
|
+
/* @__PURE__ */ E.jsx(ws, { ...u }),
|
|
1508
|
+
a && /* @__PURE__ */ E.jsx("p", { className: "error-message-input", children: i })
|
|
1507
1509
|
] });
|
|
1508
1510
|
}, $d = ({
|
|
1509
1511
|
placeholder: e,
|