@column-org/wallet-sdk 1.1.5 → 1.1.7
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/Column-LINBKAMV.png +0 -0
- package/dist/index.d.mts +18 -1
- package/dist/index.d.ts +18 -1
- package/dist/index.js +1121 -2
- package/dist/index.mjs +1143 -3
- package/package.json +1 -1
- package/src/index.native.ts +1 -0
- package/src/index.ts +2 -0
- package/src/ui/native/ColumnWalletNative.ts +44 -0
|
Binary file
|
package/dist/index.d.mts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import * as nacl from 'tweetnacl';
|
|
2
|
+
import React from 'react';
|
|
2
3
|
|
|
3
4
|
interface ColumnSDKConfig {
|
|
4
5
|
appUrl?: string;
|
|
@@ -69,4 +70,20 @@ declare class ColumnWalletWeb extends ColumnWalletSDK {
|
|
|
69
70
|
openConnectModal(): void;
|
|
70
71
|
}
|
|
71
72
|
|
|
72
|
-
|
|
73
|
+
/**
|
|
74
|
+
* Enhanced SDK Class specifically for React Native / Expo environments
|
|
75
|
+
*/
|
|
76
|
+
declare class ColumnWalletNative extends ColumnWalletSDK {
|
|
77
|
+
constructor(config: ColumnSDKConfig);
|
|
78
|
+
private static autoDetectMetadata;
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
interface Props {
|
|
82
|
+
visible: boolean;
|
|
83
|
+
onClose: () => void;
|
|
84
|
+
onConnect: () => void;
|
|
85
|
+
sdk: ColumnWalletSDK;
|
|
86
|
+
}
|
|
87
|
+
declare function ColumnWalletModal({ visible, onClose, onConnect, sdk }: Props): React.JSX.Element;
|
|
88
|
+
|
|
89
|
+
export { ColumnCrypto, type ColumnSDKConfig, ColumnWalletModal, ColumnWalletNative, ColumnWalletSDK, ColumnWalletWeb };
|
package/dist/index.d.ts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import * as nacl from 'tweetnacl';
|
|
2
|
+
import React from 'react';
|
|
2
3
|
|
|
3
4
|
interface ColumnSDKConfig {
|
|
4
5
|
appUrl?: string;
|
|
@@ -69,4 +70,20 @@ declare class ColumnWalletWeb extends ColumnWalletSDK {
|
|
|
69
70
|
openConnectModal(): void;
|
|
70
71
|
}
|
|
71
72
|
|
|
72
|
-
|
|
73
|
+
/**
|
|
74
|
+
* Enhanced SDK Class specifically for React Native / Expo environments
|
|
75
|
+
*/
|
|
76
|
+
declare class ColumnWalletNative extends ColumnWalletSDK {
|
|
77
|
+
constructor(config: ColumnSDKConfig);
|
|
78
|
+
private static autoDetectMetadata;
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
interface Props {
|
|
82
|
+
visible: boolean;
|
|
83
|
+
onClose: () => void;
|
|
84
|
+
onConnect: () => void;
|
|
85
|
+
sdk: ColumnWalletSDK;
|
|
86
|
+
}
|
|
87
|
+
declare function ColumnWalletModal({ visible, onClose, onConnect, sdk }: Props): React.JSX.Element;
|
|
88
|
+
|
|
89
|
+
export { ColumnCrypto, type ColumnSDKConfig, ColumnWalletModal, ColumnWalletNative, ColumnWalletSDK, ColumnWalletWeb };
|