@column-org/wallet-sdk 1.1.2 → 1.1.4

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@column-org/wallet-sdk",
3
- "version": "1.1.2",
3
+ "version": "1.1.4",
4
4
  "description": "Column Wallet Mobile Deep-Link SDK for Movement/Aptos ecosystem",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",
@@ -8,4 +8,4 @@ if (typeof global.Buffer === 'undefined') {
8
8
 
9
9
  export * from './ColumnWalletSDK';
10
10
  export * from './ColumnShared';
11
- export * from './ui/native/ColumnWalletModal';
11
+ export { ColumnWalletModal } from './ui/native/ColumnWalletModal';
@@ -56,8 +56,10 @@ export function ColumnWalletModal({ visible, onClose, onConnect, sdk }: Props) {
56
56
 
57
57
  <TouchableOpacity style={styles.walletOption} onPress={handleConnect}>
58
58
  <View style={styles.walletIconContainer}>
59
- {/* Embed default SVG or icon here if possible, for now using simple view */}
60
- <View style={styles.walletIcon} />
59
+ <Image
60
+ source={require('../../assets/Column.png')}
61
+ style={styles.walletIconImage}
62
+ />
61
63
  </View>
62
64
  <View style={styles.walletInfo}>
63
65
  <Text style={styles.walletName}>Column Wallet</Text>
@@ -127,11 +129,10 @@ const styles = StyleSheet.create({
127
129
  alignItems: 'center',
128
130
  marginRight: 16,
129
131
  },
130
- walletIcon: {
131
- width: 20,
132
- height: 20,
133
- backgroundColor: '#000',
134
- borderRadius: 10,
132
+ walletIconImage: {
133
+ width: 24,
134
+ height: 24,
135
+ resizeMode: 'contain',
135
136
  },
136
137
  walletInfo: {
137
138
  flex: 1,