polkahub 0.3.1 → 0.4.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/dist/index.js +2 -2
- package/dist/src/index.d.ts +9 -9
- package/package.json +16 -16
package/dist/index.js
CHANGED
|
@@ -8,8 +8,8 @@ export * from '@polkahub/proxy';
|
|
|
8
8
|
export * from '@polkahub/read-only';
|
|
9
9
|
export { SelectAccount, SelectAccountField, createSelectedAccountPlugin, selectedAccountPluginId, useSelectedAccount } from '@polkahub/select-account';
|
|
10
10
|
export * from '@polkahub/state';
|
|
11
|
-
export
|
|
11
|
+
export { ManageVault, VaultTxModal, createPolkadotVaultProvider, polkadotVaultProviderId } from '@polkahub/vault';
|
|
12
12
|
export * from '@polkahub/wallet-connect';
|
|
13
|
-
export { PolkaHubModal, PolkaHubModalTrigger, openSelectAccount, usePolkaHubModalState } from './PolkaHubModal.js';
|
|
14
13
|
export { AddressInput } from './AddressInput.js';
|
|
14
|
+
export { PolkaHubModal, PolkaHubModalTrigger, openSelectAccount, usePolkaHubModalState } from './PolkaHubModal.js';
|
|
15
15
|
//# sourceMappingURL=index.js.map
|
package/dist/src/index.d.ts
CHANGED
|
@@ -11,11 +11,19 @@ export * from '@polkahub/read-only';
|
|
|
11
11
|
import { SelectedAccountButton } from '@polkahub/select-account';
|
|
12
12
|
export { SelectAccount, SelectAccountField, SelectedAccountPlugin, createSelectedAccountPlugin, selectedAccountPluginId, useSelectedAccount } from '@polkahub/select-account';
|
|
13
13
|
export * from '@polkahub/state';
|
|
14
|
-
export
|
|
14
|
+
export { ManageVault, PolkadotVaultAccount, PolkadotVaultProvider, VaultAccountInfo, VaultTxModal, createPolkadotVaultProvider, polkadotVaultProviderId } from '@polkahub/vault';
|
|
15
15
|
export * from '@polkahub/wallet-connect';
|
|
16
16
|
import * as react from 'react';
|
|
17
17
|
import { FC, PropsWithChildren, ComponentProps, ReactNode } from 'react';
|
|
18
18
|
|
|
19
|
+
declare const AddressInput: FC<{
|
|
20
|
+
value?: AccountAddress | null;
|
|
21
|
+
onChange?: (value: AccountAddress | null) => void;
|
|
22
|
+
disableClear?: boolean;
|
|
23
|
+
className?: string;
|
|
24
|
+
triggerClassName?: string;
|
|
25
|
+
}>;
|
|
26
|
+
|
|
19
27
|
declare const PolkaHubModalTrigger: FC;
|
|
20
28
|
declare const openSelectAccount: () => void;
|
|
21
29
|
declare const PolkaHubModal: FC<PropsWithChildren<{
|
|
@@ -35,12 +43,4 @@ declare const usePolkaHubModalState: (onClose?: () => void) => {
|
|
|
35
43
|
}[]>>;
|
|
36
44
|
};
|
|
37
45
|
|
|
38
|
-
declare const AddressInput: FC<{
|
|
39
|
-
value?: AccountAddress | null;
|
|
40
|
-
onChange?: (value: AccountAddress | null) => void;
|
|
41
|
-
disableClear?: boolean;
|
|
42
|
-
className?: string;
|
|
43
|
-
triggerClassName?: string;
|
|
44
|
-
}>;
|
|
45
|
-
|
|
46
46
|
export { AddressInput, PolkaHubModal, PolkaHubModalTrigger, openSelectAccount, usePolkaHubModalState };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "polkahub",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.4.0",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"type": "module",
|
|
@@ -25,27 +25,27 @@
|
|
|
25
25
|
"dependencies": {
|
|
26
26
|
"@react-rxjs/core": "^0.10.8",
|
|
27
27
|
"@react-rxjs/utils": "^0.9.7",
|
|
28
|
-
"lucide-react": "^0.
|
|
29
|
-
"@polkahub/
|
|
30
|
-
"@polkahub/
|
|
31
|
-
"@polkahub/
|
|
32
|
-
"@polkahub/
|
|
33
|
-
"@polkahub/
|
|
34
|
-
"@polkahub/
|
|
35
|
-
"@polkahub/
|
|
36
|
-
"@polkahub/
|
|
37
|
-
"@polkahub/select-account": "0.3.
|
|
38
|
-
"@polkahub/state": "0.3.
|
|
39
|
-
"@polkahub/
|
|
40
|
-
"@polkahub/
|
|
41
|
-
"@polkahub/wallet-connect": "0.3.
|
|
28
|
+
"lucide-react": "^0.554.0",
|
|
29
|
+
"@polkahub/ledger": "0.3.2",
|
|
30
|
+
"@polkahub/mimir": "0.3.2",
|
|
31
|
+
"@polkahub/pjs-wallet": "0.3.2",
|
|
32
|
+
"@polkahub/plugin": "0.3.2",
|
|
33
|
+
"@polkahub/context": "0.3.2",
|
|
34
|
+
"@polkahub/multisig": "0.3.2",
|
|
35
|
+
"@polkahub/proxy": "0.3.2",
|
|
36
|
+
"@polkahub/read-only": "0.3.2",
|
|
37
|
+
"@polkahub/select-account": "0.3.2",
|
|
38
|
+
"@polkahub/state": "0.3.2",
|
|
39
|
+
"@polkahub/ui-components": "0.3.2",
|
|
40
|
+
"@polkahub/vault": "0.4.0",
|
|
41
|
+
"@polkahub/wallet-connect": "0.3.2"
|
|
42
42
|
},
|
|
43
43
|
"peerDependencies": {
|
|
44
44
|
"@types/react": "^19.2.2",
|
|
45
45
|
"react": "^19.2.0"
|
|
46
46
|
},
|
|
47
47
|
"devDependencies": {
|
|
48
|
-
"@types/react": "^19.2.
|
|
48
|
+
"@types/react": "^19.2.6",
|
|
49
49
|
"react": "^19.2.0"
|
|
50
50
|
},
|
|
51
51
|
"scripts": {
|