@mercurjs/dashboard-shared 2.2.0-canary.15 → 2.2.0-canary.17

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.
Files changed (2) hide show
  1. package/dist/index.js +13 -8
  2. 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 /* @__PURE__ */ jsx62(
20654
- "form",
20655
- {
20656
- ...rest,
20657
- onSubmit: handleSubmit,
20658
- onKeyDown: onKeyDown ?? handleKeyDown,
20659
- ref
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";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mercurjs/dashboard-shared",
3
- "version": "2.2.0-canary.15",
3
+ "version": "2.2.0-canary.17",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "https://github.com/mercurjs/mercur",