reef-knot 7.5.0 → 8.0.0-alpha.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/dist/_virtual/_rolldown/runtime.js +36 -0
- package/dist/index.js +8 -12
- package/dist/packages/connect-wallet-modal.js +11 -2
- package/dist/packages/connectors.js +11 -2
- package/dist/packages/core-react.js +11 -2
- package/dist/packages/ui-react.js +11 -2
- package/dist/packages/wallets.js +11 -2
- package/dist/packages/web3-react.js +11 -2
- package/package.json +17 -15
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
//#region \0rolldown/runtime.js
|
|
2
|
+
var __defProp = Object.defineProperty;
|
|
3
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
4
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
5
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
6
|
+
var __exportAll = (all, no_symbols) => {
|
|
7
|
+
let target = {};
|
|
8
|
+
for (var name in all) {
|
|
9
|
+
__defProp(target, name, {
|
|
10
|
+
get: all[name],
|
|
11
|
+
enumerable: true
|
|
12
|
+
});
|
|
13
|
+
}
|
|
14
|
+
if (!no_symbols) {
|
|
15
|
+
__defProp(target, Symbol.toStringTag, { value: "Module" });
|
|
16
|
+
}
|
|
17
|
+
return target;
|
|
18
|
+
};
|
|
19
|
+
var __copyProps = (to, from, except, desc) => {
|
|
20
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
21
|
+
for (var keys = __getOwnPropNames(from), i = 0, n = keys.length, key; i < n; i++) {
|
|
22
|
+
key = keys[i];
|
|
23
|
+
if (!__hasOwnProp.call(to, key) && key !== except) {
|
|
24
|
+
__defProp(to, key, {
|
|
25
|
+
get: ((k) => from[k]).bind(null, key),
|
|
26
|
+
enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable
|
|
27
|
+
});
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
}
|
|
31
|
+
return to;
|
|
32
|
+
};
|
|
33
|
+
var __reExport = (target, mod, secondTarget) => (__copyProps(target, mod, "default"), secondTarget && __copyProps(secondTarget, mod, "default"));
|
|
34
|
+
|
|
35
|
+
//#endregion
|
|
36
|
+
export { __exportAll, __reExport };
|
package/dist/index.js
CHANGED
|
@@ -1,12 +1,8 @@
|
|
|
1
|
-
import
|
|
2
|
-
|
|
3
|
-
import
|
|
4
|
-
|
|
5
|
-
import
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
export {
|
|
9
|
-
import * as wallets from './packages/wallets.js';
|
|
10
|
-
export { wallets as WalletsList };
|
|
11
|
-
import * as connectors from './packages/connectors.js';
|
|
12
|
-
export { connectors as Connectors };
|
|
1
|
+
import { connect_wallet_modal_exports } from "./packages/connect-wallet-modal.js";
|
|
2
|
+
import { web3_react_exports } from "./packages/web3-react.js";
|
|
3
|
+
import { ui_react_exports } from "./packages/ui-react.js";
|
|
4
|
+
import { core_react_exports } from "./packages/core-react.js";
|
|
5
|
+
import { wallets_exports } from "./packages/wallets.js";
|
|
6
|
+
import { connectors_exports } from "./packages/connectors.js";
|
|
7
|
+
|
|
8
|
+
export { connect_wallet_modal_exports as ConnectWalletModal, connectors_exports as Connectors, core_react_exports as CoreReact, ui_react_exports as UIReact, wallets_exports as WalletsList, web3_react_exports as Web3React };
|
|
@@ -1,2 +1,11 @@
|
|
|
1
|
-
import
|
|
2
|
-
|
|
1
|
+
import { __exportAll, __reExport } from "../_virtual/_rolldown/runtime.js";
|
|
2
|
+
|
|
3
|
+
export * from "@reef-knot/connect-wallet-modal"
|
|
4
|
+
|
|
5
|
+
//#region src/packages/connect-wallet-modal.ts
|
|
6
|
+
var connect_wallet_modal_exports = /* @__PURE__ */ __exportAll({});
|
|
7
|
+
import * as import__reef_knot_connect_wallet_modal from "@reef-knot/connect-wallet-modal";
|
|
8
|
+
__reExport(connect_wallet_modal_exports, import__reef_knot_connect_wallet_modal);
|
|
9
|
+
|
|
10
|
+
//#endregion
|
|
11
|
+
export { connect_wallet_modal_exports };
|
|
@@ -1,2 +1,11 @@
|
|
|
1
|
-
import
|
|
2
|
-
|
|
1
|
+
import { __exportAll, __reExport } from "../_virtual/_rolldown/runtime.js";
|
|
2
|
+
|
|
3
|
+
export * from "@reef-knot/ledger-connector"
|
|
4
|
+
|
|
5
|
+
//#region src/packages/connectors.ts
|
|
6
|
+
var connectors_exports = /* @__PURE__ */ __exportAll({});
|
|
7
|
+
import * as import__reef_knot_ledger_connector from "@reef-knot/ledger-connector";
|
|
8
|
+
__reExport(connectors_exports, import__reef_knot_ledger_connector);
|
|
9
|
+
|
|
10
|
+
//#endregion
|
|
11
|
+
export { connectors_exports };
|
|
@@ -1,2 +1,11 @@
|
|
|
1
|
-
import
|
|
2
|
-
|
|
1
|
+
import { __exportAll, __reExport } from "../_virtual/_rolldown/runtime.js";
|
|
2
|
+
|
|
3
|
+
export * from "@reef-knot/core-react"
|
|
4
|
+
|
|
5
|
+
//#region src/packages/core-react.ts
|
|
6
|
+
var core_react_exports = /* @__PURE__ */ __exportAll({});
|
|
7
|
+
import * as import__reef_knot_core_react from "@reef-knot/core-react";
|
|
8
|
+
__reExport(core_react_exports, import__reef_knot_core_react);
|
|
9
|
+
|
|
10
|
+
//#endregion
|
|
11
|
+
export { core_react_exports };
|
|
@@ -1,2 +1,11 @@
|
|
|
1
|
-
import
|
|
2
|
-
|
|
1
|
+
import { __exportAll, __reExport } from "../_virtual/_rolldown/runtime.js";
|
|
2
|
+
|
|
3
|
+
export * from "@reef-knot/ui-react"
|
|
4
|
+
|
|
5
|
+
//#region src/packages/ui-react.ts
|
|
6
|
+
var ui_react_exports = /* @__PURE__ */ __exportAll({});
|
|
7
|
+
import * as import__reef_knot_ui_react from "@reef-knot/ui-react";
|
|
8
|
+
__reExport(ui_react_exports, import__reef_knot_ui_react);
|
|
9
|
+
|
|
10
|
+
//#endregion
|
|
11
|
+
export { ui_react_exports };
|
package/dist/packages/wallets.js
CHANGED
|
@@ -1,2 +1,11 @@
|
|
|
1
|
-
import
|
|
2
|
-
|
|
1
|
+
import { __exportAll, __reExport } from "../_virtual/_rolldown/runtime.js";
|
|
2
|
+
|
|
3
|
+
export * from "@reef-knot/wallets-list"
|
|
4
|
+
|
|
5
|
+
//#region src/packages/wallets.ts
|
|
6
|
+
var wallets_exports = /* @__PURE__ */ __exportAll({});
|
|
7
|
+
import * as import__reef_knot_wallets_list from "@reef-knot/wallets-list";
|
|
8
|
+
__reExport(wallets_exports, import__reef_knot_wallets_list);
|
|
9
|
+
|
|
10
|
+
//#endregion
|
|
11
|
+
export { wallets_exports };
|
|
@@ -1,2 +1,11 @@
|
|
|
1
|
-
import
|
|
2
|
-
|
|
1
|
+
import { __exportAll, __reExport } from "../_virtual/_rolldown/runtime.js";
|
|
2
|
+
|
|
3
|
+
export * from "@reef-knot/web3-react"
|
|
4
|
+
|
|
5
|
+
//#region src/packages/web3-react.ts
|
|
6
|
+
var web3_react_exports = /* @__PURE__ */ __exportAll({});
|
|
7
|
+
import * as import__reef_knot_web3_react from "@reef-knot/web3-react";
|
|
8
|
+
__reExport(web3_react_exports, import__reef_knot_web3_react);
|
|
9
|
+
|
|
10
|
+
//#endregion
|
|
11
|
+
export { web3_react_exports };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "reef-knot",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "8.0.0-alpha.3",
|
|
4
4
|
"main": "dist/index.js",
|
|
5
5
|
"types": "dist/index.d.ts",
|
|
6
6
|
"exports": {
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
"homepage": "https://github.com/lidofinance/reef-knot",
|
|
26
26
|
"repository": {
|
|
27
27
|
"type": "git",
|
|
28
|
-
"url": "https://github.com/lidofinance/reef-knot.git",
|
|
28
|
+
"url": "git+https://github.com/lidofinance/reef-knot.git",
|
|
29
29
|
"directory": "packages/reef-knot"
|
|
30
30
|
},
|
|
31
31
|
"bugs": {
|
|
@@ -36,19 +36,20 @@
|
|
|
36
36
|
"access": "public"
|
|
37
37
|
},
|
|
38
38
|
"scripts": {
|
|
39
|
-
"build": "
|
|
40
|
-
"dev": "
|
|
41
|
-
"lint": "eslint --ext ts,tsx,js,mjs ."
|
|
39
|
+
"build": "yarn run -T tsdown",
|
|
40
|
+
"dev": "yarn run -T tsdown --watch",
|
|
41
|
+
"lint": "eslint --ext ts,tsx,js,mjs .",
|
|
42
|
+
"typecheck": "tsc --noEmit"
|
|
42
43
|
},
|
|
43
44
|
"dependencies": {
|
|
44
|
-
"@reef-knot/connect-wallet-modal": "
|
|
45
|
-
"@reef-knot/core-react": "
|
|
46
|
-
"@reef-knot/ledger-connector": "
|
|
47
|
-
"@reef-knot/types": "
|
|
48
|
-
"@reef-knot/ui-react": "
|
|
49
|
-
"@reef-knot/wallets-helpers": "
|
|
50
|
-
"@reef-knot/wallets-list": "
|
|
51
|
-
"@reef-knot/web3-react": "
|
|
45
|
+
"@reef-knot/connect-wallet-modal": "8.0.0-alpha.2",
|
|
46
|
+
"@reef-knot/core-react": "7.0.0-alpha.2",
|
|
47
|
+
"@reef-knot/ledger-connector": "5.0.0-alpha.1",
|
|
48
|
+
"@reef-knot/types": "5.0.0-alpha.2",
|
|
49
|
+
"@reef-knot/ui-react": "3.0.0-alpha.2",
|
|
50
|
+
"@reef-knot/wallets-helpers": "3.0.0-alpha.2",
|
|
51
|
+
"@reef-knot/wallets-list": "5.0.0-alpha.2",
|
|
52
|
+
"@reef-knot/web3-react": "7.0.0-alpha.2"
|
|
52
53
|
},
|
|
53
54
|
"peerDependencies": {
|
|
54
55
|
"@lidofinance/lido-ui": "^3.18.0",
|
|
@@ -56,10 +57,11 @@
|
|
|
56
57
|
"react": ">=18",
|
|
57
58
|
"react-dom": ">=18",
|
|
58
59
|
"styled-components": "^5.3.5",
|
|
59
|
-
"viem": ">=2.
|
|
60
|
-
"wagmi": ">=
|
|
60
|
+
"viem": ">=2.44",
|
|
61
|
+
"wagmi": ">=3.3"
|
|
61
62
|
},
|
|
62
63
|
"devDependencies": {
|
|
64
|
+
"build-config": "*",
|
|
63
65
|
"eslint-config-custom": "*"
|
|
64
66
|
}
|
|
65
67
|
}
|