@ckb-ccc/connector-react 1.0.17 → 1.0.18
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 +6 -0
- package/README.md +1 -1
- package/package.json +6 -6
- package/prettier.config.mjs +13 -0
package/CHANGELOG.md
CHANGED
package/README.md
CHANGED
|
@@ -44,7 +44,7 @@ Before using the Connector, wrap your UI with the CCC Provider:
|
|
|
44
44
|
<ccc.Provider>{/* Your application */}</ccc.Provider>
|
|
45
45
|
```
|
|
46
46
|
|
|
47
|
-
Check [the document for @ckb-ccc/connector-react](https://
|
|
47
|
+
Check [the document for @ckb-ccc/connector-react](https://api.ckbccc.com/modules/_ckb_ccc_connector_react.index.ccc.html) for more information.
|
|
48
48
|
|
|
49
49
|
<h3 align="center">
|
|
50
50
|
Read more about CCC on <a href="https://docs.ckbccc.com">our website</a> or <a href="https://github.com/ckb-devrel/ccc">GitHub Repo</a>.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ckb-ccc/connector-react",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.18",
|
|
4
4
|
"description": "CCC - CKBer's Codebase. Common Chains Connector UI Component for React",
|
|
5
5
|
"author": "Hanssen0 <hanssen0@hanssen0.com>",
|
|
6
6
|
"license": "MIT",
|
|
@@ -22,10 +22,10 @@
|
|
|
22
22
|
"@eslint/js": "^9.1.1",
|
|
23
23
|
"@types/react": "^18",
|
|
24
24
|
"eslint": "^9.1.0",
|
|
25
|
-
"eslint-config-prettier": "^
|
|
26
|
-
"eslint-plugin-prettier": "^5.1
|
|
27
|
-
"prettier": "^3.
|
|
28
|
-
"prettier-plugin-organize-imports": "^
|
|
25
|
+
"eslint-config-prettier": "^10.1.5",
|
|
26
|
+
"eslint-plugin-prettier": "^5.4.1",
|
|
27
|
+
"prettier": "^3.5.3",
|
|
28
|
+
"prettier-plugin-organize-imports": "^4.1.0",
|
|
29
29
|
"rimraf": "^5.0.5",
|
|
30
30
|
"typescript": "^5.4.5",
|
|
31
31
|
"typescript-eslint": "^7.7.0"
|
|
@@ -35,7 +35,7 @@
|
|
|
35
35
|
},
|
|
36
36
|
"dependencies": {
|
|
37
37
|
"@lit/react": "^1.0.5",
|
|
38
|
-
"@ckb-ccc/connector": "1.0.
|
|
38
|
+
"@ckb-ccc/connector": "1.0.18"
|
|
39
39
|
},
|
|
40
40
|
"peerDependencies": {
|
|
41
41
|
"react": ">=16"
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
// prettier.config.js, .prettierrc.js, prettier.config.mjs, or .prettierrc.mjs
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
* @see https://prettier.io/docs/configuration
|
|
5
|
+
* @type {import("prettier").Config}
|
|
6
|
+
*/
|
|
7
|
+
const config = {
|
|
8
|
+
singleQuote: false,
|
|
9
|
+
trailingComma: "all",
|
|
10
|
+
plugins: [import.meta.resolve("prettier-plugin-organize-imports")],
|
|
11
|
+
};
|
|
12
|
+
|
|
13
|
+
export default config;
|