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

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.mjs CHANGED
@@ -14,7 +14,7 @@ import {
14
14
  ui_exports,
15
15
  useMatch,
16
16
  wagmiConfig
17
- } from "./chunk-2Q5NZXUB.mjs";
17
+ } from "./chunk-ZOBAUYIZ.mjs";
18
18
  import "./chunk-JX73EY6V.mjs";
19
19
  import "./chunk-IZOOVZAD.mjs";
20
20
  import "./chunk-UA6XHZHX.mjs";
@@ -1,5 +1,5 @@
1
- export { B as Button, C as ConfirmModal, F as Field, I as Input, M as Modal, a as ModalWithHeader, O as Overlay, P as Popover } from '../index-CBDXC17Y.mjs';
2
- export { A as AlphaAvatar, D as Drawer, e as HashPanel, M as ModalDrawer, R as Radio, a as Skeleton, S as Switch, T as Tabs } from '../index-DjctI-Fl.mjs';
1
+ export { B as Button, C as ConfirmModal, F as Field, I as Input, M as Modal, a as ModalWithHeader, O as Overlay, P as Popover } from '../index-CaMDtQcV.mjs';
2
+ export { A as AlphaAvatar, D as Drawer, e as HashPanel, M as ModalDrawer, R as Radio, a as Skeleton, S as Switch, T as Tabs } from '../index-rk7ZjmRF.mjs';
3
3
  import 'react/jsx-runtime';
4
4
  import 'react';
5
5
  import '../types-DvqfFAbp.mjs';
@@ -1,5 +1,5 @@
1
- export { B as Button, C as ConfirmModal, F as Field, I as Input, M as Modal, a as ModalWithHeader, O as Overlay, P as Popover } from '../index-ijV5Kx6q.js';
2
- export { A as AlphaAvatar, D as Drawer, e as HashPanel, M as ModalDrawer, R as Radio, a as Skeleton, S as Switch, T as Tabs } from '../index-qKVfqZ0X.js';
1
+ export { B as Button, C as ConfirmModal, F as Field, I as Input, M as Modal, a as ModalWithHeader, O as Overlay, P as Popover } from '../index-DqIQL1Es.js';
2
+ export { A as AlphaAvatar, D as Drawer, e as HashPanel, M as ModalDrawer, R as Radio, a as Skeleton, S as Switch, T as Tabs } from '../index-C7a1Hfcx.js';
3
3
  import 'react/jsx-runtime';
4
4
  import 'react';
5
5
  import '../types-DvqfFAbp.js';
package/dist/ui/index.js CHANGED
@@ -299,7 +299,8 @@ function Button({
299
299
  type = "button",
300
300
  rounded = true,
301
301
  className = "",
302
- style = {}
302
+ style = {},
303
+ dataset = {}
303
304
  }) {
304
305
  const onAction = () => {
305
306
  if (!disabled && !loading) {
@@ -316,6 +317,7 @@ function Button({
316
317
  ...style
317
318
  },
318
319
  onClick: onAction,
320
+ ...dataset,
319
321
  children: loading ? /* @__PURE__ */ (0, import_jsx_runtime51.jsx)(LoadingIcon_default, { className: "matchid-btn-loading-icon", color: "var(--matchid-btn-loading-color)" }) : children
320
322
  }
321
323
  );