@mercurjs/dashboard-shared 2.2.0-canary.16 → 2.2.0-canary.18
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 +13 -8
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -12519,6 +12519,7 @@ var FileUpload = ({
|
|
|
12519
12519
|
"input",
|
|
12520
12520
|
{
|
|
12521
12521
|
hidden: true,
|
|
12522
|
+
"aria-label": "File upload",
|
|
12522
12523
|
ref: inputRef,
|
|
12523
12524
|
onChange: handleFileChange,
|
|
12524
12525
|
type: "file",
|
|
@@ -18870,6 +18871,7 @@ var DataGridRowSkeleton = ({
|
|
|
18870
18871
|
"div",
|
|
18871
18872
|
{
|
|
18872
18873
|
role: "gridcell",
|
|
18874
|
+
"aria-label": "Cell input",
|
|
18873
18875
|
style: { width: vc.size },
|
|
18874
18876
|
className: "relative flex items-center border-b border-r p-0 outline-none",
|
|
18875
18877
|
children: /* @__PURE__ */ jsx42("div", { className: "flex h-full w-full items-center px-4", children: /* @__PURE__ */ jsx42("div", { className: "bg-ui-bg-component h-4 w-3/4 animate-pulse rounded" }) })
|
|
@@ -20650,14 +20652,17 @@ var KeyboundForm = React7.forwardRef(({ onSubmit, onKeyDown, ...rest }, ref) =>
|
|
|
20650
20652
|
}
|
|
20651
20653
|
}
|
|
20652
20654
|
};
|
|
20653
|
-
return
|
|
20654
|
-
|
|
20655
|
-
|
|
20656
|
-
|
|
20657
|
-
|
|
20658
|
-
|
|
20659
|
-
|
|
20660
|
-
|
|
20655
|
+
return (
|
|
20656
|
+
// oxlint-disable-next-line jsx-a11y/no-noninteractive-element-interactions
|
|
20657
|
+
/* @__PURE__ */ jsx62(
|
|
20658
|
+
"form",
|
|
20659
|
+
{
|
|
20660
|
+
...rest,
|
|
20661
|
+
onSubmit: handleSubmit,
|
|
20662
|
+
onKeyDown: onKeyDown ?? handleKeyDown,
|
|
20663
|
+
ref
|
|
20664
|
+
}
|
|
20665
|
+
)
|
|
20661
20666
|
);
|
|
20662
20667
|
});
|
|
20663
20668
|
KeyboundForm.displayName = "KeyboundForm";
|