@algorithm-shift/design-system 1.2.93 → 1.2.94
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 +7 -7
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +7 -7
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -27012,7 +27012,7 @@ var TextInput = ({ className, style, ...props }) => {
|
|
|
27012
27012
|
}
|
|
27013
27013
|
}, []);
|
|
27014
27014
|
const handleChange = (e) => {
|
|
27015
|
-
props.onChange?.(e,
|
|
27015
|
+
props.onChange?.(e, props.name || "");
|
|
27016
27016
|
};
|
|
27017
27017
|
return /* @__PURE__ */ (0, import_jsx_runtime20.jsxs)(import_jsx_runtime20.Fragment, { children: [
|
|
27018
27018
|
/* @__PURE__ */ (0, import_jsx_runtime20.jsx)(
|
|
@@ -27054,7 +27054,7 @@ var NumberInput = ({ className, style, ...props }) => {
|
|
|
27054
27054
|
}
|
|
27055
27055
|
}, []);
|
|
27056
27056
|
const handleChange = (e) => {
|
|
27057
|
-
props.onChange?.(e,
|
|
27057
|
+
props.onChange?.(e, props.name || "");
|
|
27058
27058
|
};
|
|
27059
27059
|
return /* @__PURE__ */ (0, import_jsx_runtime21.jsxs)(import_jsx_runtime21.Fragment, { children: [
|
|
27060
27060
|
/* @__PURE__ */ (0, import_jsx_runtime21.jsx)("div", { className: "flex justify-start items-center relative", children: /* @__PURE__ */ (0, import_jsx_runtime21.jsx)(
|
|
@@ -27139,7 +27139,7 @@ var PasswordInput = ({ className, style, ...props }) => {
|
|
|
27139
27139
|
}
|
|
27140
27140
|
}, []);
|
|
27141
27141
|
const handleChange = (e) => {
|
|
27142
|
-
props.onChange?.(e,
|
|
27142
|
+
props.onChange?.(e, props.name || "");
|
|
27143
27143
|
};
|
|
27144
27144
|
return /* @__PURE__ */ (0, import_jsx_runtime23.jsxs)(import_jsx_runtime23.Fragment, { children: [
|
|
27145
27145
|
/* @__PURE__ */ (0, import_jsx_runtime23.jsx)("div", { className: "flex justify-start items-center relative", children: /* @__PURE__ */ (0, import_jsx_runtime23.jsx)(
|
|
@@ -27200,7 +27200,7 @@ var Textarea2 = ({ className, style, ...props }) => {
|
|
|
27200
27200
|
}
|
|
27201
27201
|
}, []);
|
|
27202
27202
|
const handleChange = (e) => {
|
|
27203
|
-
props.onChange?.(e,
|
|
27203
|
+
props.onChange?.(e, props.name || "");
|
|
27204
27204
|
};
|
|
27205
27205
|
return /* @__PURE__ */ (0, import_jsx_runtime25.jsxs)(import_jsx_runtime25.Fragment, { children: [
|
|
27206
27206
|
/* @__PURE__ */ (0, import_jsx_runtime25.jsx)(
|
|
@@ -27242,7 +27242,7 @@ var UrlInput = ({ className, style, ...props }) => {
|
|
|
27242
27242
|
}
|
|
27243
27243
|
}, []);
|
|
27244
27244
|
const handleChange = (e) => {
|
|
27245
|
-
props.onChange?.(e,
|
|
27245
|
+
props.onChange?.(e, props.name || "");
|
|
27246
27246
|
};
|
|
27247
27247
|
return /* @__PURE__ */ (0, import_jsx_runtime26.jsxs)(import_jsx_runtime26.Fragment, { children: [
|
|
27248
27248
|
/* @__PURE__ */ (0, import_jsx_runtime26.jsxs)("div", { className: "flex justify-start items-center relative", children: [
|
|
@@ -28222,7 +28222,7 @@ var SearchInput = ({ className, style, ...props }) => {
|
|
|
28222
28222
|
}
|
|
28223
28223
|
}, []);
|
|
28224
28224
|
const handleChange = (e) => {
|
|
28225
|
-
props.onChange?.(e,
|
|
28225
|
+
props.onChange?.(e, props.name || "");
|
|
28226
28226
|
};
|
|
28227
28227
|
return /* @__PURE__ */ (0, import_jsx_runtime41.jsxs)(import_jsx_runtime41.Fragment, { children: [
|
|
28228
28228
|
/* @__PURE__ */ (0, import_jsx_runtime41.jsx)("div", { className: "flex justify-start items-center relative", children: /* @__PURE__ */ (0, import_jsx_runtime41.jsx)(
|
|
@@ -28646,7 +28646,7 @@ var TextInputGroup = ({ className, style, prepend, append, ...props }) => {
|
|
|
28646
28646
|
}
|
|
28647
28647
|
}, []);
|
|
28648
28648
|
const handleChange = (e) => {
|
|
28649
|
-
props.onChange?.(e,
|
|
28649
|
+
props.onChange?.(e, props.name || "");
|
|
28650
28650
|
};
|
|
28651
28651
|
return /* @__PURE__ */ (0, import_jsx_runtime47.jsxs)(import_jsx_runtime47.Fragment, { children: [
|
|
28652
28652
|
/* @__PURE__ */ (0, import_jsx_runtime47.jsxs)(
|