reef-knot 0.5.1 → 1.0.0
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/README.md +3 -0
- package/dist/index.d.ts +7 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +12 -0
- package/dist/packages/connect-wallet-modal.d.ts +2 -0
- package/dist/packages/connect-wallet-modal.d.ts.map +1 -0
- package/dist/packages/connect-wallet-modal.js +2 -0
- package/dist/packages/core-react.d.ts +2 -0
- package/dist/packages/core-react.d.ts.map +1 -0
- package/dist/packages/core-react.js +2 -0
- package/dist/packages/ui-react.d.ts +2 -0
- package/dist/packages/ui-react.d.ts.map +1 -0
- package/dist/packages/ui-react.js +2 -0
- package/dist/packages/wallets-icons.d.ts +2 -0
- package/dist/packages/wallets-icons.d.ts.map +1 -0
- package/dist/packages/wallets-icons.js +2 -0
- package/dist/packages/wallets.d.ts +2 -0
- package/dist/packages/wallets.d.ts.map +1 -0
- package/dist/packages/wallets.js +2 -0
- package/dist/packages/web3-react.d.ts +2 -0
- package/dist/packages/web3-react.d.ts.map +1 -0
- package/dist/packages/web3-react.js +2 -0
- package/package.json +33 -8
- package/dist/cjs/index.d.ts +0 -5
- package/dist/cjs/index.d.ts.map +0 -1
- package/dist/cjs/index.js +0 -46
- package/dist/esm/index.d.ts +0 -5
- package/dist/esm/index.d.ts.map +0 -1
- package/dist/esm/index.js +0 -6
package/README.md
CHANGED
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
export * as ConnectWalletModal from './packages/connect-wallet-modal';
|
|
2
|
+
export * as Web3React from './packages/web3-react';
|
|
3
|
+
export * as UIReact from './packages/ui-react';
|
|
4
|
+
export * as WalletsIcons from './packages/wallets-icons';
|
|
5
|
+
export * as CoreReact from './packages/core-react';
|
|
6
|
+
export * as WalletsList from './packages/wallets';
|
|
7
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,kBAAkB,MAAM,iCAAiC,CAAC;AACtE,OAAO,KAAK,SAAS,MAAM,uBAAuB,CAAC;AACnD,OAAO,KAAK,OAAO,MAAM,qBAAqB,CAAC;AAC/C,OAAO,KAAK,YAAY,MAAM,0BAA0B,CAAC;AACzD,OAAO,KAAK,SAAS,MAAM,uBAAuB,CAAC;AACnD,OAAO,KAAK,WAAW,MAAM,oBAAoB,CAAC"}
|
package/dist/index.js
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import * as connectWalletModal from './packages/connect-wallet-modal.js';
|
|
2
|
+
export { connectWalletModal as ConnectWalletModal };
|
|
3
|
+
import * as web3React from './packages/web3-react.js';
|
|
4
|
+
export { web3React as Web3React };
|
|
5
|
+
import * as uiReact from './packages/ui-react.js';
|
|
6
|
+
export { uiReact as UIReact };
|
|
7
|
+
import * as walletsIcons from './packages/wallets-icons.js';
|
|
8
|
+
export { walletsIcons as WalletsIcons };
|
|
9
|
+
import * as coreReact from './packages/core-react.js';
|
|
10
|
+
export { coreReact as CoreReact };
|
|
11
|
+
import * as wallets from './packages/wallets.js';
|
|
12
|
+
export { wallets as WalletsList };
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"connect-wallet-modal.d.ts","sourceRoot":"","sources":["../../src/packages/connect-wallet-modal.ts"],"names":[],"mappings":"AAAA,cAAc,iCAAiC,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"core-react.d.ts","sourceRoot":"","sources":["../../src/packages/core-react.ts"],"names":[],"mappings":"AAAA,cAAc,uBAAuB,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ui-react.d.ts","sourceRoot":"","sources":["../../src/packages/ui-react.ts"],"names":[],"mappings":"AAAA,cAAc,qBAAqB,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"wallets-icons.d.ts","sourceRoot":"","sources":["../../src/packages/wallets-icons.ts"],"names":[],"mappings":"AAAA,cAAc,0BAA0B,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"wallets.d.ts","sourceRoot":"","sources":["../../src/packages/wallets.ts"],"names":[],"mappings":"AAAA,cAAc,yBAAyB,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"web3-react.d.ts","sourceRoot":"","sources":["../../src/packages/web3-react.ts"],"names":[],"mappings":"AAAA,cAAc,uBAAuB,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,13 +1,36 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "reef-knot",
|
|
3
|
-
"version": "0.
|
|
4
|
-
"main": "dist/
|
|
5
|
-
"
|
|
6
|
-
"
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"main": "dist/index.js",
|
|
5
|
+
"types": "dist/index.d.ts",
|
|
6
|
+
"exports": {
|
|
7
|
+
".": "./dist/index.js",
|
|
8
|
+
"./*": "./dist/packages/*.js"
|
|
9
|
+
},
|
|
10
|
+
"typesVersions": {
|
|
11
|
+
"*": {
|
|
12
|
+
".": [
|
|
13
|
+
"dist/index.d.ts"
|
|
14
|
+
],
|
|
15
|
+
"*": [
|
|
16
|
+
"dist/packages/*"
|
|
17
|
+
]
|
|
18
|
+
}
|
|
19
|
+
},
|
|
20
|
+
"type": "module",
|
|
7
21
|
"files": [
|
|
8
22
|
"dist"
|
|
9
23
|
],
|
|
10
24
|
"license": "MIT",
|
|
25
|
+
"homepage": "https://github.com/lidofinance/reef-knot",
|
|
26
|
+
"repository": {
|
|
27
|
+
"type": "git",
|
|
28
|
+
"url": "https://github.com/lidofinance/reef-knot.git",
|
|
29
|
+
"directory": "packages/reef-knot"
|
|
30
|
+
},
|
|
31
|
+
"bugs": {
|
|
32
|
+
"url": "https://github.com/lidofinance/reef-knot/issues"
|
|
33
|
+
},
|
|
11
34
|
"publishConfig": {
|
|
12
35
|
"registry": "https://registry.npmjs.org/",
|
|
13
36
|
"access": "public"
|
|
@@ -17,9 +40,11 @@
|
|
|
17
40
|
"dev": "dev=on rollup -c -w"
|
|
18
41
|
},
|
|
19
42
|
"dependencies": {
|
|
20
|
-
"@reef-knot/connect-wallet-modal": "0.
|
|
21
|
-
"@reef-knot/web3-react": "0.
|
|
22
|
-
"@reef-knot/ui-react": "0.
|
|
23
|
-
"@reef-knot/wallets-icons": "0.
|
|
43
|
+
"@reef-knot/connect-wallet-modal": "1.0.0",
|
|
44
|
+
"@reef-knot/web3-react": "1.0.0",
|
|
45
|
+
"@reef-knot/ui-react": "1.0.0",
|
|
46
|
+
"@reef-knot/wallets-icons": "1.0.0",
|
|
47
|
+
"@reef-knot/core-react": "1.0.0",
|
|
48
|
+
"@reef-knot/wallets-list": "1.0.0"
|
|
24
49
|
}
|
|
25
50
|
}
|
package/dist/cjs/index.d.ts
DELETED
package/dist/cjs/index.d.ts.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,iCAAiC,CAAC;AAChD,cAAc,uBAAuB,CAAC;AACtC,OAAO,KAAK,OAAO,MAAM,qBAAqB,CAAC;AAC/C,OAAO,KAAK,YAAY,MAAM,0BAA0B,CAAC"}
|
package/dist/cjs/index.js
DELETED
|
@@ -1,46 +0,0 @@
|
|
|
1
|
-
'use strict';
|
|
2
|
-
|
|
3
|
-
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
|
-
|
|
5
|
-
var connectWalletModal = require('@reef-knot/connect-wallet-modal');
|
|
6
|
-
var web3React = require('@reef-knot/web3-react');
|
|
7
|
-
var uiReact = require('@reef-knot/ui-react');
|
|
8
|
-
var walletsIcons = require('@reef-knot/wallets-icons');
|
|
9
|
-
|
|
10
|
-
function _interopNamespace(e) {
|
|
11
|
-
if (e && e.__esModule) return e;
|
|
12
|
-
var n = Object.create(null);
|
|
13
|
-
if (e) {
|
|
14
|
-
Object.keys(e).forEach(function (k) {
|
|
15
|
-
if (k !== 'default') {
|
|
16
|
-
var d = Object.getOwnPropertyDescriptor(e, k);
|
|
17
|
-
Object.defineProperty(n, k, d.get ? d : {
|
|
18
|
-
enumerable: true,
|
|
19
|
-
get: function () { return e[k]; }
|
|
20
|
-
});
|
|
21
|
-
}
|
|
22
|
-
});
|
|
23
|
-
}
|
|
24
|
-
n["default"] = e;
|
|
25
|
-
return Object.freeze(n);
|
|
26
|
-
}
|
|
27
|
-
|
|
28
|
-
var uiReact__namespace = /*#__PURE__*/_interopNamespace(uiReact);
|
|
29
|
-
var walletsIcons__namespace = /*#__PURE__*/_interopNamespace(walletsIcons);
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
exports.uiReact = uiReact__namespace;
|
|
34
|
-
exports.walletsIcons = walletsIcons__namespace;
|
|
35
|
-
Object.keys(connectWalletModal).forEach(function (k) {
|
|
36
|
-
if (k !== 'default' && !exports.hasOwnProperty(k)) Object.defineProperty(exports, k, {
|
|
37
|
-
enumerable: true,
|
|
38
|
-
get: function () { return connectWalletModal[k]; }
|
|
39
|
-
});
|
|
40
|
-
});
|
|
41
|
-
Object.keys(web3React).forEach(function (k) {
|
|
42
|
-
if (k !== 'default' && !exports.hasOwnProperty(k)) Object.defineProperty(exports, k, {
|
|
43
|
-
enumerable: true,
|
|
44
|
-
get: function () { return web3React[k]; }
|
|
45
|
-
});
|
|
46
|
-
});
|
package/dist/esm/index.d.ts
DELETED
package/dist/esm/index.d.ts.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,iCAAiC,CAAC;AAChD,cAAc,uBAAuB,CAAC;AACtC,OAAO,KAAK,OAAO,MAAM,qBAAqB,CAAC;AAC/C,OAAO,KAAK,YAAY,MAAM,0BAA0B,CAAC"}
|
package/dist/esm/index.js
DELETED