@0xsequence/marketplace-sdk 0.8.0 → 0.8.1
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/.changeset/config.json +1 -1
- package/.changeset/seven-doors-taste.md +5 -0
- package/CHANGELOG.md +6 -0
- package/dist/{chunk-WHFXVREI.js → chunk-A5ACY5YV.js} +2 -2
- package/dist/{chunk-2MSBZYLW.js → chunk-ABSYNRT5.js} +2 -2
- package/dist/{chunk-SBI52HTX.js → chunk-BN36GABQ.js} +9 -6
- package/dist/chunk-BN36GABQ.js.map +1 -0
- package/dist/{chunk-QKGZXS4T.js → chunk-X3QNSQER.js} +6 -6
- package/dist/index.js +5 -5
- package/dist/react/_internal/databeat/index.js +4 -4
- package/dist/react/hooks/index.js +5 -5
- package/dist/react/index.js +8 -8
- package/dist/react/ui/components/collectible-card/index.js +6 -6
- package/dist/react/ui/icons/index.js +1 -1
- package/dist/react/ui/index.js +6 -6
- package/dist/react/ui/modals/_internal/components/actionModal/index.js +4 -4
- package/dist/utils/abi/index.js +5 -5
- package/dist/utils/index.js +5 -5
- package/package.json +1 -1
- package/src/react/ui/modals/BuyModal/Modal.tsx +5 -2
- package/.changeset/fuzzy-forks-smoke.md +0 -5
- package/dist/chunk-SBI52HTX.js.map +0 -1
- /package/dist/{chunk-WHFXVREI.js.map → chunk-A5ACY5YV.js.map} +0 -0
- /package/dist/{chunk-2MSBZYLW.js.map → chunk-ABSYNRT5.js.map} +0 -0
- /package/dist/{chunk-QKGZXS4T.js.map → chunk-X3QNSQER.js.map} +0 -0
package/.changeset/config.json
CHANGED
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import {
|
|
2
2
|
useConfig
|
|
3
|
-
} from "./chunk-
|
|
3
|
+
} from "./chunk-X3QNSQER.js";
|
|
4
4
|
|
|
5
5
|
// src/react/_internal/databeat/index.ts
|
|
6
6
|
import { Databeat } from "@databeat/tracker";
|
|
@@ -50,4 +50,4 @@ export {
|
|
|
50
50
|
DatabeatAnalytics,
|
|
51
51
|
useAnalytics
|
|
52
52
|
};
|
|
53
|
-
//# sourceMappingURL=chunk-
|
|
53
|
+
//# sourceMappingURL=chunk-A5ACY5YV.js.map
|
|
@@ -5,7 +5,7 @@ import {
|
|
|
5
5
|
MODAL_OVERLAY_PROPS,
|
|
6
6
|
useSwitchChainModal,
|
|
7
7
|
useWallet
|
|
8
|
-
} from "./chunk-
|
|
8
|
+
} from "./chunk-X3QNSQER.js";
|
|
9
9
|
|
|
10
10
|
// src/react/ui/modals/_internal/components/actionModal/ActionModal.tsx
|
|
11
11
|
import { Button, Modal, Spinner, Text } from "@0xsequence/design-system";
|
|
@@ -125,4 +125,4 @@ export {
|
|
|
125
125
|
openModal,
|
|
126
126
|
closeModal
|
|
127
127
|
};
|
|
128
|
-
//# sourceMappingURL=chunk-
|
|
128
|
+
//# sourceMappingURL=chunk-ABSYNRT5.js.map
|
|
@@ -2,10 +2,10 @@
|
|
|
2
2
|
|
|
3
3
|
import {
|
|
4
4
|
ActionModal
|
|
5
|
-
} from "./chunk-
|
|
5
|
+
} from "./chunk-ABSYNRT5.js";
|
|
6
6
|
import {
|
|
7
7
|
useAnalytics
|
|
8
|
-
} from "./chunk-
|
|
8
|
+
} from "./chunk-A5ACY5YV.js";
|
|
9
9
|
import {
|
|
10
10
|
BellIcon_default,
|
|
11
11
|
CalendarIcon_default,
|
|
@@ -33,7 +33,7 @@ import {
|
|
|
33
33
|
useSwitchChainModal,
|
|
34
34
|
useTransferTokens,
|
|
35
35
|
useWallet
|
|
36
|
-
} from "./chunk-
|
|
36
|
+
} from "./chunk-X3QNSQER.js";
|
|
37
37
|
import {
|
|
38
38
|
DEFAULT_MARKETPLACE_FEE_PERCENTAGE
|
|
39
39
|
} from "./chunk-Y63BOO6M.js";
|
|
@@ -672,7 +672,7 @@ var BuyModal = () => {
|
|
|
672
672
|
return /* @__PURE__ */ jsx5(BuyModalContent, {});
|
|
673
673
|
};
|
|
674
674
|
var BuyModalContent = () => {
|
|
675
|
-
const { chainId } = useBuyModalProps();
|
|
675
|
+
const { chainId, skipNativeBalanceCheck } = useBuyModalProps();
|
|
676
676
|
const onError = useOnError();
|
|
677
677
|
const { openSelectPaymentModal } = useSelectPaymentModal();
|
|
678
678
|
const quantity = useQuantity();
|
|
@@ -729,7 +729,10 @@ var BuyModalContent = () => {
|
|
|
729
729
|
return /* @__PURE__ */ jsx5(ERC1155QuantityModal, { order });
|
|
730
730
|
}
|
|
731
731
|
if (paymentModalParams) {
|
|
732
|
-
openSelectPaymentModal(
|
|
732
|
+
openSelectPaymentModal({
|
|
733
|
+
...paymentModalParams,
|
|
734
|
+
skipNativeBalanceCheck
|
|
735
|
+
});
|
|
733
736
|
}
|
|
734
737
|
};
|
|
735
738
|
|
|
@@ -5377,4 +5380,4 @@ export {
|
|
|
5377
5380
|
useSellModal,
|
|
5378
5381
|
CollectibleCard
|
|
5379
5382
|
};
|
|
5380
|
-
//# sourceMappingURL=chunk-
|
|
5383
|
+
//# sourceMappingURL=chunk-BN36GABQ.js.map
|