@rango-dev/widget-embedded 0.23.1-next.7 → 0.23.1-next.9
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/components/Layout/Layout.styles.d.ts.map +1 -1
- package/dist/components/common/ActivateTabAlert/ActivateTabAlert.d.ts.map +1 -1
- package/dist/index.js +2 -2
- package/dist/index.js.map +3 -3
- package/dist/pages/Home.d.ts.map +1 -1
- package/package.json +6 -6
- package/src/components/Layout/Layout.styles.ts +3 -0
- package/src/components/Layout/Layout.tsx +4 -4
- package/src/components/common/ActivateTabAlert/ActivateTabAlert.tsx +2 -4
- package/src/pages/Home.tsx +3 -0
package/dist/pages/Home.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Home.d.ts","sourceRoot":"","sources":["../../src/pages/Home.tsx"],"names":[],"mappings":"AAEA,OAAO,KAA8B,MAAM,OAAO,CAAC;
|
|
1
|
+
{"version":3,"file":"Home.d.ts","sourceRoot":"","sources":["../../src/pages/Home.tsx"],"names":[],"mappings":"AAEA,OAAO,KAA8B,MAAM,OAAO,CAAC;AA2BnD,eAAO,MAAM,6BAA6B,MAAM,CAAC;AAEjD,wBAAgB,IAAI,sBAsLnB"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rango-dev/widget-embedded",
|
|
3
|
-
"version": "0.23.1-next.
|
|
3
|
+
"version": "0.23.1-next.9",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"source": "./src/index.ts",
|
|
@@ -21,13 +21,13 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@lingui/core": "4.2.1",
|
|
23
23
|
"@lingui/react": "4.2.1",
|
|
24
|
-
"@rango-dev/provider-all": "^0.28.1-next.
|
|
24
|
+
"@rango-dev/provider-all": "^0.28.1-next.1",
|
|
25
25
|
"@rango-dev/queue-manager-core": "^0.26.0",
|
|
26
|
-
"@rango-dev/queue-manager-rango-preset": "^0.28.1-next.
|
|
26
|
+
"@rango-dev/queue-manager-rango-preset": "^0.28.1-next.2",
|
|
27
27
|
"@rango-dev/queue-manager-react": "^0.26.0",
|
|
28
|
-
"@rango-dev/ui": "^0.29.1-next.
|
|
29
|
-
"@rango-dev/wallets-react": "^0.14.0",
|
|
30
|
-
"@rango-dev/wallets-shared": "^0.28.0",
|
|
28
|
+
"@rango-dev/ui": "^0.29.1-next.7",
|
|
29
|
+
"@rango-dev/wallets-react": "^0.14.1-next.0",
|
|
30
|
+
"@rango-dev/wallets-shared": "^0.28.1-next.0",
|
|
31
31
|
"bignumber.js": "^9.1.1",
|
|
32
32
|
"copy-to-clipboard": "^3.3.3",
|
|
33
33
|
"dayjs": "^1.11.7",
|
|
@@ -138,13 +138,13 @@ function Layout(props: PropsWithChildren<PropTypes>) {
|
|
|
138
138
|
|
|
139
139
|
<Footer>
|
|
140
140
|
<div className="footer__content">
|
|
141
|
-
{footer}
|
|
142
141
|
{tabManagerInitiated && !isActiveTab && (
|
|
143
|
-
|
|
144
|
-
<Divider size={12} />
|
|
142
|
+
<div className="footer__alert">
|
|
145
143
|
<ActivateTabAlert onActivateTab={onActivateTab} />
|
|
146
|
-
|
|
144
|
+
<Divider size={10} />
|
|
145
|
+
</div>
|
|
147
146
|
)}
|
|
147
|
+
{footer}
|
|
148
148
|
</div>
|
|
149
149
|
|
|
150
150
|
<Divider size={12} />
|
|
@@ -13,14 +13,12 @@ export function ActivateTabAlert(props: PropTypes) {
|
|
|
13
13
|
variant="contained"
|
|
14
14
|
size="xxsmall"
|
|
15
15
|
type="warning">
|
|
16
|
-
{i18n.t('Activate')}
|
|
16
|
+
{i18n.t('Activate this tab')}
|
|
17
17
|
</Button>
|
|
18
18
|
}
|
|
19
19
|
type="warning"
|
|
20
20
|
variant="alarm"
|
|
21
|
-
title={i18n.t(
|
|
22
|
-
'Another tab is open and handles transactions. You can activate this tab.'
|
|
23
|
-
)}
|
|
21
|
+
title={i18n.t('Another tab is open and handles transactions.')}
|
|
24
22
|
/>
|
|
25
23
|
);
|
|
26
24
|
}
|
package/src/pages/Home.tsx
CHANGED