@rango-dev/widget-embedded 0.19.1-next.0 → 0.19.1-next.2

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.19.1-next.0",
3
+ "version": "0.19.1-next.2",
4
4
  "license": "MIT",
5
5
  "type": "module",
6
6
  "source": "./src/index.ts",
@@ -47,4 +47,4 @@
47
47
  "publishConfig": {
48
48
  "access": "public"
49
49
  }
50
- }
50
+ }
package/readme.md CHANGED
@@ -1,3 +1,3 @@
1
1
  # @rango-dev/widget-embedded
2
2
 
3
- Rango Widget
3
+ Rango Embedded Widget
@@ -109,6 +109,7 @@ export const SummaryContainer = styled('div', {
109
109
  });
110
110
 
111
111
  export const summaryStyles = css({
112
+ width: '100%',
112
113
  padding: '$15 $15 $10 $15',
113
114
  cursor: 'default',
114
115
  });
package/src/index.ts CHANGED
@@ -36,11 +36,7 @@ import type {
36
36
  WalletState,
37
37
  WalletType,
38
38
  } from '@rango-dev/wallets-shared';
39
- import type {
40
- PendingSwap,
41
- PendingSwapNetworkStatus,
42
- PendingSwapStep,
43
- } from 'rango-types';
39
+ import type { PendingSwap, PendingSwapStep } from 'rango-types';
44
40
 
45
41
  import {
46
42
  MainEvents,
@@ -56,6 +52,7 @@ import {
56
52
  Events as WalletEvents,
57
53
  } from '@rango-dev/wallets-react';
58
54
  import { Networks, WalletTypes } from '@rango-dev/wallets-shared';
55
+ import { PendingSwapNetworkStatus } from 'rango-types';
59
56
 
60
57
  import { WidgetWallets } from './containers/Wallets';
61
58
  import { Widget } from './containers/Widget';