Skip to content

Commit 257e428

Browse files
Version Packages (#4365)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent 82a30af commit 257e428

File tree

8 files changed

+75
-57
lines changed

8 files changed

+75
-57
lines changed

.changeset/funny-crews-invite.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/heavy-moose-sing.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/honest-poems-fix.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/lucky-turkeys-whisper.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/old-lions-happen.md

Lines changed: 0 additions & 15 deletions
This file was deleted.

.changeset/two-ghosts-bake.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

packages/thirdweb/CHANGELOG.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,31 @@
11
# thirdweb
22

3+
## 5.50.1
4+
5+
### Patch Changes
6+
7+
- [#4388](https://github.com/thirdweb-dev/js/pull/4388) [`82a30af`](https://github.com/thirdweb-dev/js/commit/82a30afd4bced6071d87c5c018a33ecf22c0449e) Thanks [@edwardysun](https://github.com/edwardysun)! - Update setting default source chain and token
8+
9+
- [#4375](https://github.com/thirdweb-dev/js/pull/4375) [`edb95d0`](https://github.com/thirdweb-dev/js/commit/edb95d00ca71385459181ced58117dec6619f6e7) Thanks [@jnsdls](https://github.com/jnsdls)! - [Extensions] expose permission detection logic
10+
11+
- [#4390](https://github.com/thirdweb-dev/js/pull/4390) [`d74e61b`](https://github.com/thirdweb-dev/js/commit/d74e61b58162e97327928f6b5117bed2ec09c1b4) Thanks [@MananTank](https://github.com/MananTank)! - Fix Swap Fees layout in fees drawer in pay UI
12+
13+
- [#4319](https://github.com/thirdweb-dev/js/pull/4319) [`73e5dc7`](https://github.com/thirdweb-dev/js/commit/73e5dc727668fb9c6cf185f16d28d28ab248558a) Thanks [@joaquim-verges](https://github.com/joaquim-verges)! - Fix direct payments to the same wallet
14+
15+
- [#4382](https://github.com/thirdweb-dev/js/pull/4382) [`9e8d3e6`](https://github.com/thirdweb-dev/js/commit/9e8d3e66393acb70fb2209c04628aad663e93e03) Thanks [@MananTank](https://github.com/MananTank)! - Add props for hiding "Send", "Receive" and "Send" buttons in Connect Details Modal UI for `ConnectButton` component. By default, all buttons are visible in the modal.
16+
17+
```tsx
18+
<ConnectButton
19+
detailsModal={{
20+
hideSendFunds: false,
21+
hideReceiveFunds: true,
22+
hideBuyFunds: false,
23+
}}
24+
/>
25+
```
26+
27+
- [#4363](https://github.com/thirdweb-dev/js/pull/4363) [`066aede`](https://github.com/thirdweb-dev/js/commit/066aede2d1bf42201c181a1cd12e1655131d1212) Thanks [@kien-ngo](https://github.com/kien-ngo)! - Allow to specify "from" and "to" props for the ClaimButton
28+
329
## 5.50.0
430

531
### Minor Changes

packages/thirdweb/package.json

Lines changed: 49 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "thirdweb",
3-
"version": "5.50.0",
3+
"version": "5.50.1",
44
"repository": {
55
"type": "git",
66
"url": "git+https://github.com/thirdweb-dev/js.git#main"
@@ -117,22 +117,54 @@
117117
},
118118
"typesVersions": {
119119
"*": {
120-
"adapters/*": ["./dist/types/exports/adapters/*.d.ts"],
121-
"auth": ["./dist/types/exports/auth.d.ts"],
122-
"chains": ["./dist/types/exports/chains.d.ts"],
123-
"contract": ["./dist/types/exports/contract.d.ts"],
124-
"deploys": ["./dist/types/exports/deploys.d.ts"],
125-
"event": ["./dist/types/exports/event.d.ts"],
126-
"extensions/*": ["./dist/types/exports/extensions/*.d.ts"],
127-
"pay": ["./dist/types/exports/pay.d.ts"],
128-
"react": ["./dist/types/exports/react.d.ts"],
129-
"react-native": ["./dist/types/exports/react-native.d.ts"],
130-
"rpc": ["./dist/types/exports/rpc.d.ts"],
131-
"storage": ["./dist/types/exports/storage.d.ts"],
132-
"transaction": ["./dist/types/exports/transaction.d.ts"],
133-
"utils": ["./dist/types/exports/utils.d.ts"],
134-
"wallets": ["./dist/types/exports/wallets.d.ts"],
135-
"wallets/*": ["./dist/types/exports/wallets/*.d.ts"]
120+
"adapters/*": [
121+
"./dist/types/exports/adapters/*.d.ts"
122+
],
123+
"auth": [
124+
"./dist/types/exports/auth.d.ts"
125+
],
126+
"chains": [
127+
"./dist/types/exports/chains.d.ts"
128+
],
129+
"contract": [
130+
"./dist/types/exports/contract.d.ts"
131+
],
132+
"deploys": [
133+
"./dist/types/exports/deploys.d.ts"
134+
],
135+
"event": [
136+
"./dist/types/exports/event.d.ts"
137+
],
138+
"extensions/*": [
139+
"./dist/types/exports/extensions/*.d.ts"
140+
],
141+
"pay": [
142+
"./dist/types/exports/pay.d.ts"
143+
],
144+
"react": [
145+
"./dist/types/exports/react.d.ts"
146+
],
147+
"react-native": [
148+
"./dist/types/exports/react-native.d.ts"
149+
],
150+
"rpc": [
151+
"./dist/types/exports/rpc.d.ts"
152+
],
153+
"storage": [
154+
"./dist/types/exports/storage.d.ts"
155+
],
156+
"transaction": [
157+
"./dist/types/exports/transaction.d.ts"
158+
],
159+
"utils": [
160+
"./dist/types/exports/utils.d.ts"
161+
],
162+
"wallets": [
163+
"./dist/types/exports/wallets.d.ts"
164+
],
165+
"wallets/*": [
166+
"./dist/types/exports/wallets/*.d.ts"
167+
]
136168
}
137169
},
138170
"browser": {

0 commit comments

Comments
 (0)