formanitor 0.1.0 → 0.1.1
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.cjs +4 -4
- package/dist/index.cjs.map +1 -1
- package/dist/index.mjs +4 -4
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -4181,7 +4181,7 @@ var FormFileUploadWidget = ({
|
|
|
4181
4181
|
)
|
|
4182
4182
|
}
|
|
4183
4183
|
),
|
|
4184
|
-
listLayout && rows.length > 0 ? /* @__PURE__ */ jsxRuntime.jsx("ul", { className: "flex flex-col gap-2 mt-
|
|
4184
|
+
listLayout && rows.length > 0 ? /* @__PURE__ */ jsxRuntime.jsx("ul", { className: "flex flex-col gap-2 mt-5 list-none p-0 m-0", children: rows.map((row) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
4185
4185
|
"li",
|
|
4186
4186
|
{
|
|
4187
4187
|
className: "flex items-center justify-between rounded-md bg-white/50 px-3 py-2.5 text-sm text-[#191919] font-normal tracking-[-0.28px]",
|
|
@@ -4192,9 +4192,9 @@ var FormFileUploadWidget = ({
|
|
|
4192
4192
|
{
|
|
4193
4193
|
type: "button",
|
|
4194
4194
|
disabled: disabled || isUploading,
|
|
4195
|
-
onClick: () => removeFileAt(row.index),
|
|
4196
|
-
className: "flex h-8 w-8 shrink-0 items-center justify-center rounded-full bg-gray-400 text-white hover:bg-gray-500 disabled:opacity-50",
|
|
4197
4195
|
"aria-label": `Remove ${row.label}`,
|
|
4196
|
+
onClick: () => removeFileAt(row.index),
|
|
4197
|
+
className: "flex h-6 w-6 shrink-0 items-center justify-center rounded-full bg-gray-400 text-white hover:bg-gray-500 disabled:opacity-50",
|
|
4198
4198
|
children: /* @__PURE__ */ jsxRuntime.jsx(lucideReact.X, { size: 14, strokeWidth: 2.5 })
|
|
4199
4199
|
}
|
|
4200
4200
|
)
|
|
@@ -16233,7 +16233,7 @@ var FormControls = ({
|
|
|
16233
16233
|
"div",
|
|
16234
16234
|
{
|
|
16235
16235
|
className: cn(
|
|
16236
|
-
"flex gap-4 border-t
|
|
16236
|
+
"flex gap-4 border-t p-4 items-center",
|
|
16237
16237
|
showWorkflowStatus ? "justify-between" : useWideActions ? "flex-col sm:flex-row sm:justify-stretch sm:gap-4" : "justify-end",
|
|
16238
16238
|
className
|
|
16239
16239
|
),
|