@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.
- package/dist/{chunk-2Q5NZXUB.mjs → chunk-WNDUHFQX.mjs} +6 -4
- package/dist/chunk-WNDUHFQX.mjs.map +1 -0
- package/dist/components/index.d.mts +2 -2
- package/dist/components/index.d.ts +2 -2
- package/dist/components/index.js +5 -3
- package/dist/components/index.js.map +1 -1
- package/dist/components/index.mjs +1 -1
- package/dist/hooks/api/index.js +2 -2
- package/dist/hooks/api/index.js.map +1 -1
- package/dist/hooks/api/index.mjs +1 -1
- package/dist/hooks/index.js +3 -1
- package/dist/hooks/index.js.map +1 -1
- package/dist/hooks/index.mjs +1 -1
- package/dist/{index-qKVfqZ0X.d.ts → index-C7a1Hfcx.d.ts} +1 -1
- package/dist/{index-CBDXC17Y.d.mts → index-CaMDtQcV.d.mts} +5 -1
- package/dist/{index-DgPcDFXk.d.ts → index-DQjZSiFX.d.ts} +1 -1
- package/dist/{index-D5ql_Egx.d.mts → index-Dee6qqWc.d.mts} +1 -1
- package/dist/{index-ijV5Kx6q.d.ts → index-DqIQL1Es.d.ts} +5 -1
- package/dist/{index-DjctI-Fl.d.mts → index-rk7ZjmRF.d.mts} +1 -1
- package/dist/index.d.mts +3 -3
- package/dist/index.d.ts +3 -3
- package/dist/index.js +5 -3
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1 -1
- package/dist/ui/index.d.mts +2 -2
- package/dist/ui/index.d.ts +2 -2
- package/dist/ui/index.js +3 -1
- package/dist/ui/index.js.map +1 -1
- package/dist/ui/index.mjs +1 -1
- package/package.json +1 -1
- package/dist/chunk-2Q5NZXUB.mjs.map +0 -1
package/dist/hooks/api/index.mjs
CHANGED
package/dist/hooks/index.js
CHANGED
|
@@ -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
|
);
|