@mysten/create-dapp 0.6.2 → 0.6.3

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/CHANGELOG.md CHANGED
@@ -1,5 +1,12 @@
1
1
  # @mysten/create-dapp
2
2
 
3
+ ## 0.6.3
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [2b8355b]
8
+ - @mysten/dapp-kit-react@2.0.0
9
+
3
10
  ## 0.6.2
4
11
 
5
12
  ### Patch Changes
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "author": "Mysten Labs <build@mystenlabs.com>",
4
4
  "description": "A CLI for creating new Sui dApps",
5
5
  "homepage": "https://sdk.mystenlabs.com",
6
- "version": "0.6.2",
6
+ "version": "0.6.3",
7
7
  "license": "Apache-2.0",
8
8
  "files": [
9
9
  "CHANGELOG.md",
@@ -33,9 +33,9 @@
33
33
  "dependencies": {
34
34
  "@types/node": "^25.0.8",
35
35
  "enquirer": "^2.4.1",
36
- "@mysten/dapp-kit-react": "^1.0.1",
37
- "@mysten/sui": "^2.3.0",
38
- "@mysten/codegen": "^0.8.0"
36
+ "@mysten/codegen": "^0.8.2",
37
+ "@mysten/dapp-kit-react": "^2.0.0",
38
+ "@mysten/sui": "^2.5.0"
39
39
  },
40
40
  "sideEffects": false,
41
41
  "bin": "./bin/index.js",
@@ -1,4 +1,4 @@
1
- import { ConnectButton } from "@mysten/dapp-kit-react";
1
+ import { ConnectButton } from "@mysten/dapp-kit-react/ui";
2
2
  import { WalletStatus } from "./WalletStatus";
3
3
 
4
4
  function App() {
@@ -1,4 +1,5 @@
1
- import { ConnectButton, useCurrentAccount } from "@mysten/dapp-kit-react";
1
+ import { useCurrentAccount } from "@mysten/dapp-kit-react";
2
+ import { ConnectButton } from "@mysten/dapp-kit-react/ui";
2
3
  import { isValidSuiObjectId } from "@mysten/sui/utils";
3
4
  import { useState } from "react";
4
5
  import { Counter } from "./Counter";
@@ -227,7 +227,7 @@ export class MoveEnum<
227
227
  > extends BcsEnum<T, Name> {}
228
228
 
229
229
  export class MoveTuple<
230
- T extends readonly BcsType<any>[],
230
+ const T extends readonly BcsType<any>[],
231
231
  const Name extends string,
232
232
  > extends BcsTuple<T, Name> {}
233
233