@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/{chunk-2Q5NZXUB.mjs → chunk-ZOBAUYIZ.mjs} +4 -2
- package/dist/chunk-ZOBAUYIZ.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 +3 -1
- package/dist/components/index.js.map +1 -1
- package/dist/components/index.mjs +1 -1
- 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 +3 -1
- 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/index.mjs
CHANGED
package/dist/ui/index.d.mts
CHANGED
|
@@ -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-
|
|
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-
|
|
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';
|
package/dist/ui/index.d.ts
CHANGED
|
@@ -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-
|
|
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-
|
|
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
|
);
|