@rango-dev/widget-embedded 0.50.1-next.3 → 0.50.1-next.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": "@rango-dev/widget-embedded",
|
|
3
|
-
"version": "0.50.1-next.
|
|
3
|
+
"version": "0.50.1-next.4",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"source": "./src/index.ts",
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
"@rango-dev/queue-manager-rango-preset": "^0.52.1-next.2",
|
|
31
31
|
"@rango-dev/queue-manager-react": "^0.32.0",
|
|
32
32
|
"@rango-dev/signer-solana": "^0.44.0",
|
|
33
|
-
"@rango-dev/ui": "^0.53.1-next.
|
|
33
|
+
"@rango-dev/ui": "^0.53.1-next.3",
|
|
34
34
|
"@rango-dev/wallets-core": "^0.49.1-next.2",
|
|
35
35
|
"@rango-dev/wallets-react": "^0.36.1-next.2",
|
|
36
36
|
"@rango-dev/wallets-shared": "^0.50.1-next.2",
|
|
@@ -82,7 +82,6 @@ export function DerivationPath(props: PropTypes) {
|
|
|
82
82
|
|
|
83
83
|
return (
|
|
84
84
|
<>
|
|
85
|
-
<Divider size={20} />
|
|
86
85
|
<MessageBox
|
|
87
86
|
type="info"
|
|
88
87
|
title={i18n.t('Select Derivation Path')}
|
|
@@ -95,8 +94,12 @@ export function DerivationPath(props: PropTypes) {
|
|
|
95
94
|
icon={<Image src={image} size={45} />}
|
|
96
95
|
/>
|
|
97
96
|
|
|
98
|
-
<InputsContainer>
|
|
99
|
-
<InputLabel
|
|
97
|
+
<InputsContainer className="_derivation_path_inputs_container">
|
|
98
|
+
<InputLabel
|
|
99
|
+
variant="body"
|
|
100
|
+
size="xsmall"
|
|
101
|
+
color="$neutral600"
|
|
102
|
+
className="_derivation_path_input_label">
|
|
100
103
|
{i18n.t('Choose Derivation Path Template')}
|
|
101
104
|
</InputLabel>
|
|
102
105
|
<Select
|
|
@@ -111,7 +114,11 @@ export function DerivationPath(props: PropTypes) {
|
|
|
111
114
|
styles={{ trigger: derivationPathInputStyles }}
|
|
112
115
|
/>
|
|
113
116
|
<Divider size={20} />
|
|
114
|
-
<InputLabel
|
|
117
|
+
<InputLabel
|
|
118
|
+
variant="body"
|
|
119
|
+
size="xsmall"
|
|
120
|
+
color="$neutral600"
|
|
121
|
+
className="_derivation_path_input_label">
|
|
115
122
|
{isCustomOptionSelected
|
|
116
123
|
? i18n.t('Enter Path')
|
|
117
124
|
: i18n.t('Enter Index')}
|