@matchain/matchid-sdk-react 0.1.53-alpha.21 → 0.1.53-alpha.23

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.
@@ -5,7 +5,7 @@ import {
5
5
  poh_exports,
6
6
  user_exports,
7
7
  wallet_exports
8
- } from "../../chunk-2Q5NZXUB.mjs";
8
+ } from "../../chunk-WNDUHFQX.mjs";
9
9
  import "../../chunk-JX73EY6V.mjs";
10
10
  import "../../chunk-IZOOVZAD.mjs";
11
11
  import "../../chunk-UA6XHZHX.mjs";
@@ -866,7 +866,8 @@ function Button({
866
866
  type = "button",
867
867
  rounded = true,
868
868
  className = "",
869
- style = {}
869
+ style = {},
870
+ dataset = {}
870
871
  }) {
871
872
  const onAction = () => {
872
873
  if (!disabled && !loading) {
@@ -883,6 +884,7 @@ function Button({
883
884
  ...style
884
885
  },
885
886
  onClick: onAction,
887
+ ...dataset,
886
888
  children: loading ? /* @__PURE__ */ (0, import_jsx_runtime55.jsx)(LoadingIcon_default, { className: "matchid-btn-loading-icon", color: "var(--matchid-btn-loading-color)" }) : children
887
889
  }
888
890
  );