@rango-dev/widget-embedded 0.45.1-next.3 → 0.45.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/dist/components/NamespaceItem/NamespaceItem.d.ts +4 -0
- package/dist/components/NamespaceItem/NamespaceItem.d.ts.map +1 -0
- package/dist/components/{WalletStatefulConnect/Namespaces.helpers.d.ts → NamespaceItem/NamespaceItem.helpers.d.ts} +1 -1
- package/dist/components/NamespaceItem/NamespaceItem.helpers.d.ts.map +1 -0
- package/dist/components/NamespaceItem/NamespaceItem.styles.d.ts +1450 -0
- package/dist/components/NamespaceItem/NamespaceItem.styles.d.ts.map +1 -0
- package/dist/components/NamespaceItem/NamespaceItem.types.d.ts +13 -0
- package/dist/components/NamespaceItem/NamespaceItem.types.d.ts.map +1 -0
- package/dist/components/{WalletStatefulConnect → NamespaceItem}/NamespaceUnsupportedItem.d.ts +1 -1
- package/dist/components/NamespaceItem/NamespaceUnsupportedItem.d.ts.map +1 -0
- package/dist/components/NamespaceItem/SupportedChainsList.d.ts.map +1 -0
- package/dist/components/NamespaceItem/SupportedChainsList.styles.d.ts.map +1 -0
- package/dist/components/NamespaceItem/SupportedChainsList.types.d.ts.map +1 -0
- package/dist/components/NamespaceItem/index.d.ts +2 -0
- package/dist/components/NamespaceItem/index.d.ts.map +1 -0
- package/dist/components/SwapDetails/RequestIdRow.d.ts +4 -0
- package/dist/components/SwapDetails/RequestIdRow.d.ts.map +1 -0
- package/dist/components/SwapDetails/SwapDateRow.d.ts +4 -0
- package/dist/components/SwapDetails/SwapDateRow.d.ts.map +1 -0
- package/dist/components/SwapDetails/SwapDetails.d.ts.map +1 -1
- package/dist/components/SwapDetails/SwapDetails.types.d.ts +7 -0
- package/dist/components/SwapDetails/SwapDetails.types.d.ts.map +1 -1
- package/dist/components/SwapDetailsModal/SwapDetailsModal.ConnectWallet.d.ts +4 -0
- package/dist/components/SwapDetailsModal/SwapDetailsModal.ConnectWallet.d.ts.map +1 -0
- package/dist/components/SwapDetailsModal/SwapDetailsModal.InstallWallet.d.ts +4 -0
- package/dist/components/SwapDetailsModal/SwapDetailsModal.InstallWallet.d.ts.map +1 -0
- package/dist/components/SwapDetailsModal/SwapDetailsModal.NetworkState.d.ts +4 -0
- package/dist/components/SwapDetailsModal/SwapDetailsModal.NetworkState.d.ts.map +1 -0
- package/dist/components/SwapDetailsModal/SwapDetailsModal.WalletState.d.ts +1 -1
- package/dist/components/SwapDetailsModal/SwapDetailsModal.WalletState.d.ts.map +1 -1
- package/dist/components/SwapDetailsModal/SwapDetailsModal.d.ts.map +1 -1
- package/dist/components/SwapDetailsModal/SwapDetailsModal.styles.d.ts +320 -0
- package/dist/components/SwapDetailsModal/SwapDetailsModal.styles.d.ts.map +1 -1
- package/dist/components/SwapDetailsModal/SwapDetailsModal.types.d.ts +29 -10
- package/dist/components/SwapDetailsModal/SwapDetailsModal.types.d.ts.map +1 -1
- package/dist/components/WalletStatefulConnect/Detached.d.ts.map +1 -1
- package/dist/components/WalletStatefulConnect/NamespaceDetachedItem.d.ts.map +1 -1
- package/dist/components/WalletStatefulConnect/NamespaceListItem.d.ts.map +1 -1
- package/dist/components/WalletStatefulConnect/Namespaces.styles.d.ts +281 -1730
- package/dist/components/WalletStatefulConnect/Namespaces.styles.d.ts.map +1 -1
- package/dist/components/WalletStatefulConnect/Namespaces.types.d.ts +0 -3
- package/dist/components/WalletStatefulConnect/Namespaces.types.d.ts.map +1 -1
- package/dist/index.js +2 -2
- package/dist/index.js.map +4 -4
- package/dist/widget-embedded.build.json +1 -1
- package/package.json +2 -2
- package/src/components/{WalletStatefulConnect/Namespaces.helpers.ts → NamespaceItem/NamespaceItem.helpers.ts} +1 -1
- package/src/components/NamespaceItem/NamespaceItem.styles.ts +93 -0
- package/src/components/NamespaceItem/NamespaceItem.tsx +117 -0
- package/src/components/NamespaceItem/NamespaceItem.types.ts +14 -0
- package/src/components/{WalletStatefulConnect → NamespaceItem}/NamespaceUnsupportedItem.tsx +3 -3
- package/src/components/NamespaceItem/index.ts +1 -0
- package/src/components/SwapDetails/RequestIdRow.tsx +73 -0
- package/src/components/SwapDetails/SwapDateRow.tsx +21 -0
- package/src/components/SwapDetails/SwapDetails.tsx +39 -83
- package/src/components/SwapDetails/SwapDetails.types.ts +7 -0
- package/src/components/SwapDetailsModal/SwapDetailsModal.ConnectWallet.tsx +177 -0
- package/src/components/SwapDetailsModal/SwapDetailsModal.InstallWallet.tsx +52 -0
- package/src/components/SwapDetailsModal/SwapDetailsModal.NetworkState.tsx +17 -0
- package/src/components/SwapDetailsModal/SwapDetailsModal.WalletState.tsx +22 -62
- package/src/components/SwapDetailsModal/SwapDetailsModal.styles.ts +20 -1
- package/src/components/SwapDetailsModal/SwapDetailsModal.tsx +24 -35
- package/src/components/SwapDetailsModal/SwapDetailsModal.types.ts +31 -10
- package/src/components/WalletStatefulConnect/Detached.tsx +2 -1
- package/src/components/WalletStatefulConnect/NamespaceDetachedItem.tsx +19 -105
- package/src/components/WalletStatefulConnect/NamespaceListItem.tsx +9 -34
- package/src/components/WalletStatefulConnect/Namespaces.styles.ts +1 -93
- package/src/components/WalletStatefulConnect/Namespaces.tsx +1 -1
- package/src/components/WalletStatefulConnect/Namespaces.types.tsx +0 -4
- package/dist/components/SwapDetailsModal/SwapDetailsModal.helpers.d.ts +0 -4
- package/dist/components/SwapDetailsModal/SwapDetailsModal.helpers.d.ts.map +0 -1
- package/dist/components/WalletStatefulConnect/NamespaceUnsupportedItem.d.ts.map +0 -1
- package/dist/components/WalletStatefulConnect/Namespaces.helpers.d.ts.map +0 -1
- package/dist/components/WalletStatefulConnect/SupportedChainsList.d.ts.map +0 -1
- package/dist/components/WalletStatefulConnect/SupportedChainsList.styles.d.ts.map +0 -1
- package/dist/components/WalletStatefulConnect/SupportedChainsList.types.d.ts.map +0 -1
- package/src/components/SwapDetailsModal/SwapDetailsModal.helpers.tsx +0 -26
- /package/dist/components/{WalletStatefulConnect → NamespaceItem}/SupportedChainsList.d.ts +0 -0
- /package/dist/components/{WalletStatefulConnect → NamespaceItem}/SupportedChainsList.styles.d.ts +0 -0
- /package/dist/components/{WalletStatefulConnect → NamespaceItem}/SupportedChainsList.types.d.ts +0 -0
- /package/src/components/{WalletStatefulConnect → NamespaceItem}/SupportedChainsList.styles.ts +0 -0
- /package/src/components/{WalletStatefulConnect → NamespaceItem}/SupportedChainsList.tsx +0 -0
- /package/src/components/{WalletStatefulConnect → NamespaceItem}/SupportedChainsList.types.ts +0 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"NamespaceItem.styles.d.ts","sourceRoot":"","sources":["../../../src/components/NamespaceItem/NamespaceItem.styles.ts"],"names":[],"mappings":"AAAA,OAAO,EAAa,KAAK,EAAU,UAAU,EAAE,MAAM,eAAe,CAAC;AAErE,eAAO,MAAM,sBAAsB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;+DA0BjC,CAAC;AAEH,eAAO,MAAM,oBAAoB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;+DAI/B,CAAC;AAEH,eAAO,MAAM,yBAAyB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;+DAgBpC,CAAC;AAEH,eAAO,MAAM,oCAAoC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;+DAM/C,CAAC;AAEH,eAAO,MAAM,iBAAiB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;+DAI5B,CAAC;AAEH,eAAO,MAAM,kBAAkB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;+DAE7B,CAAC;AAEH,eAAO,MAAM,gCAAgC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;+DAM3C,CAAC;AAEH,eAAO,MAAM,uBAAuB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;+DAElC,CAAC;AAEH,eAAO,MAAM,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;+DAQxB,CAAC"}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import type { LegacyNamespaceMeta } from '@rango-dev/wallets-core/legacy';
|
|
2
|
+
export type PropTypes = {
|
|
3
|
+
namespace: LegacyNamespaceMeta;
|
|
4
|
+
error?: string;
|
|
5
|
+
suffix?: React.ReactNode;
|
|
6
|
+
connected?: boolean;
|
|
7
|
+
address?: string | null;
|
|
8
|
+
onClick?: () => void;
|
|
9
|
+
};
|
|
10
|
+
export type NamespaceUnsupportedItemPropTypes = {
|
|
11
|
+
namespace: LegacyNamespaceMeta;
|
|
12
|
+
};
|
|
13
|
+
//# sourceMappingURL=NamespaceItem.types.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"NamespaceItem.types.d.ts","sourceRoot":"","sources":["../../../src/components/NamespaceItem/NamespaceItem.types.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,gCAAgC,CAAC;AAE1E,MAAM,MAAM,SAAS,GAAG;IACtB,SAAS,EAAE,mBAAmB,CAAC;IAC/B,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,MAAM,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;IACzB,SAAS,CAAC,EAAE,OAAO,CAAC;IACpB,OAAO,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACxB,OAAO,CAAC,EAAE,MAAM,IAAI,CAAC;CACtB,CAAC;AAEF,MAAM,MAAM,iCAAiC,GAAG;IAC9C,SAAS,EAAE,mBAAmB,CAAC;CAChC,CAAC"}
|
package/dist/components/{WalletStatefulConnect → NamespaceItem}/NamespaceUnsupportedItem.d.ts
RENAMED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type { NamespaceUnsupportedItemPropTypes } from './
|
|
1
|
+
import type { NamespaceUnsupportedItemPropTypes } from './NamespaceItem.types';
|
|
2
2
|
import React from 'react';
|
|
3
3
|
export declare function NamespaceUnsupportedItem(props: NamespaceUnsupportedItemPropTypes): React.JSX.Element;
|
|
4
4
|
//# sourceMappingURL=NamespaceUnsupportedItem.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"NamespaceUnsupportedItem.d.ts","sourceRoot":"","sources":["../../../src/components/NamespaceItem/NamespaceUnsupportedItem.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,iCAAiC,EAAE,MAAM,uBAAuB,CAAC;AAI/E,OAAO,KAAK,MAAM,OAAO,CAAC;AAY1B,wBAAgB,wBAAwB,CACtC,KAAK,EAAE,iCAAiC,qBAwBzC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"SupportedChainsList.d.ts","sourceRoot":"","sources":["../../../src/components/NamespaceItem/SupportedChainsList.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,6BAA6B,CAAC;AAG7D,OAAO,KAAK,MAAM,OAAO,CAAC;AAW1B,wBAAgB,mBAAmB,CAAC,KAAK,EAAE,SAAS,qBA2CnD"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"SupportedChainsList.styles.d.ts","sourceRoot":"","sources":["../../../src/components/NamespaceItem/SupportedChainsList.styles.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,wBAAwB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;+DAKnC,CAAC;AAEH,eAAO,MAAM,kBAAkB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;+DAe7B,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"SupportedChainsList.types.d.ts","sourceRoot":"","sources":["../../../src/components/NamespaceItem/SupportedChainsList.types.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,aAAa,CAAC;AAElD,MAAM,MAAM,SAAS,GAAG;IACtB,MAAM,EAAE,cAAc,EAAE,CAAC;CAC1B,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/NamespaceItem/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAE,MAAM,iBAAiB,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"RequestIdRow.d.ts","sourceRoot":"","sources":["../../../src/components/SwapDetails/RequestIdRow.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,qBAAqB,CAAC;AAY1D,OAAO,KAAK,MAAM,OAAO,CAAC;AAa1B,wBAAgB,YAAY,CAAC,KAAK,EAAE,cAAc,qBA+CjD"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"SwapDateRow.d.ts","sourceRoot":"","sources":["../../../src/components/SwapDetails/SwapDateRow.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,qBAAqB,CAAC;AAI5D,OAAO,KAAK,MAAM,OAAO,CAAC;AAI1B,wBAAgB,WAAW,CAAC,KAAK,EAAE,gBAAgB,qBAYlD"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"SwapDetails.d.ts","sourceRoot":"","sources":["../../../src/components/SwapDetails/SwapDetails.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,qBAAqB,CAAC;
|
|
1
|
+
{"version":3,"file":"SwapDetails.d.ts","sourceRoot":"","sources":["../../../src/components/SwapDetails/SwapDetails.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,qBAAqB,CAAC;AAmB5D,OAAO,KAAsC,MAAM,OAAO,CAAC;AAsD3D,wBAAgB,WAAW,CAAC,KAAK,EAAE,gBAAgB,qBA4XlD"}
|
|
@@ -5,6 +5,13 @@ export interface SwapDetailsProps {
|
|
|
5
5
|
onDelete: () => void;
|
|
6
6
|
onCancel: () => void;
|
|
7
7
|
}
|
|
8
|
+
export interface RequestIdProps {
|
|
9
|
+
requestId: string;
|
|
10
|
+
}
|
|
11
|
+
export interface SwapDateRowProps {
|
|
12
|
+
date: string;
|
|
13
|
+
isFinished: boolean;
|
|
14
|
+
}
|
|
8
15
|
export interface SwapDetailsPlaceholderPropTypes {
|
|
9
16
|
requestId: string;
|
|
10
17
|
showSkeleton: boolean;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"SwapDetails.types.d.ts","sourceRoot":"","sources":["../../../src/components/SwapDetails/SwapDetails.types.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,aAAa,CAAC;AAE/C,MAAM,WAAW,gBAAgB;IAC/B,IAAI,EAAE,WAAW,CAAC;IAClB,SAAS,EAAE,MAAM,CAAC;IAClB,QAAQ,EAAE,MAAM,IAAI,CAAC;IACrB,QAAQ,EAAE,MAAM,IAAI,CAAC;CACtB;AACD,MAAM,WAAW,+BAA+B;IAC9C,SAAS,EAAE,MAAM,CAAC;IAClB,YAAY,EAAE,OAAO,CAAC;CACvB"}
|
|
1
|
+
{"version":3,"file":"SwapDetails.types.d.ts","sourceRoot":"","sources":["../../../src/components/SwapDetails/SwapDetails.types.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,aAAa,CAAC;AAE/C,MAAM,WAAW,gBAAgB;IAC/B,IAAI,EAAE,WAAW,CAAC;IAClB,SAAS,EAAE,MAAM,CAAC;IAClB,QAAQ,EAAE,MAAM,IAAI,CAAC;IACrB,QAAQ,EAAE,MAAM,IAAI,CAAC;CACtB;AACD,MAAM,WAAW,cAAc;IAC7B,SAAS,EAAE,MAAM,CAAC;CACnB;AACD,MAAM,WAAW,gBAAgB;IAC/B,IAAI,EAAE,MAAM,CAAC;IACb,UAAU,EAAE,OAAO,CAAC;CACrB;AACD,MAAM,WAAW,+BAA+B;IAC9C,SAAS,EAAE,MAAM,CAAC;IAClB,YAAY,EAAE,OAAO,CAAC;CACvB"}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import type { ConnectWalletContentProps } from './SwapDetailsModal.types';
|
|
2
|
+
import React from 'react';
|
|
3
|
+
export declare const ConnectWalletContent: (props: ConnectWalletContentProps) => React.JSX.Element | null;
|
|
4
|
+
//# sourceMappingURL=SwapDetailsModal.ConnectWallet.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"SwapDetailsModal.ConnectWallet.d.ts","sourceRoot":"","sources":["../../../src/components/SwapDetailsModal/SwapDetailsModal.ConnectWallet.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,yBAAyB,EAAE,MAAM,0BAA0B,CAAC;AAc1E,OAAO,KAAmB,MAAM,OAAO,CAAC;AAYxC,eAAO,MAAM,oBAAoB,UAAW,yBAAyB,6BAsJpE,CAAC"}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import type { InstallWalletContentProps } from './SwapDetailsModal.types';
|
|
2
|
+
import React from 'react';
|
|
3
|
+
export declare const InstallWalletContent: (props: InstallWalletContentProps) => React.JSX.Element | null;
|
|
4
|
+
//# sourceMappingURL=SwapDetailsModal.InstallWallet.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"SwapDetailsModal.InstallWallet.d.ts","sourceRoot":"","sources":["../../../src/components/SwapDetailsModal/SwapDetailsModal.InstallWallet.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,yBAAyB,EAAE,MAAM,0BAA0B,CAAC;AAM1E,OAAO,KAAK,MAAM,OAAO,CAAC;AAO1B,eAAO,MAAM,oBAAoB,UAAW,yBAAyB,6BAsCpE,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"SwapDetailsModal.NetworkState.d.ts","sourceRoot":"","sources":["../../../src/components/SwapDetailsModal/SwapDetailsModal.NetworkState.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,wBAAwB,EAAE,MAAM,0BAA0B,CAAC;AAIzE,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,eAAO,MAAM,mBAAmB,UAAW,wBAAwB,sBAUlE,CAAC"}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import type { WalletStateContentProps } from './SwapDetailsModal.types';
|
|
2
2
|
import React from 'react';
|
|
3
|
-
export declare const WalletStateContent: (props: WalletStateContentProps) => React.JSX.Element;
|
|
3
|
+
export declare const WalletStateContent: (props: WalletStateContentProps) => React.JSX.Element | null;
|
|
4
4
|
//# sourceMappingURL=SwapDetailsModal.WalletState.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"SwapDetailsModal.WalletState.d.ts","sourceRoot":"","sources":["../../../src/components/SwapDetailsModal/SwapDetailsModal.WalletState.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,uBAAuB,EAAE,MAAM,0BAA0B,CAAC;
|
|
1
|
+
{"version":3,"file":"SwapDetailsModal.WalletState.d.ts","sourceRoot":"","sources":["../../../src/components/SwapDetailsModal/SwapDetailsModal.WalletState.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,uBAAuB,EAAE,MAAM,0BAA0B,CAAC;AASxE,OAAO,KAAK,MAAM,OAAO,CAAC;AAO1B,eAAO,MAAM,kBAAkB,UAAW,uBAAuB,6BAgChE,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"SwapDetailsModal.d.ts","sourceRoot":"","sources":["../../../src/components/SwapDetailsModal/SwapDetailsModal.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,0BAA0B,CAAC;
|
|
1
|
+
{"version":3,"file":"SwapDetailsModal.d.ts","sourceRoot":"","sources":["../../../src/components/SwapDetailsModal/SwapDetailsModal.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,0BAA0B,CAAC;AAE/D,OAAO,KAAK,MAAM,OAAO,CAAC;AAU1B,wBAAgB,gBAAgB,CAAC,KAAK,EAAE,cAAc,qBAkCrD"}
|
|
@@ -478,4 +478,324 @@ export declare const ProfileBanner: import("@stitches/react/types/styled-compone
|
|
|
478
478
|
zIndices: {};
|
|
479
479
|
transitions: {};
|
|
480
480
|
}, import("@stitches/react/types/config").DefaultThemeMap, {}>>;
|
|
481
|
+
export declare const WalletIcon: import("@stitches/react/types/styled-component").StyledComponent<"div", {}, {
|
|
482
|
+
xs: string;
|
|
483
|
+
sm: string;
|
|
484
|
+
md: string;
|
|
485
|
+
lg: string;
|
|
486
|
+
}, import("@stitches/react/types/css-util").CSS<{
|
|
487
|
+
xs: string;
|
|
488
|
+
sm: string;
|
|
489
|
+
md: string;
|
|
490
|
+
lg: string;
|
|
491
|
+
}, {
|
|
492
|
+
colors: {
|
|
493
|
+
primary: string;
|
|
494
|
+
primary500: string;
|
|
495
|
+
primary550: string;
|
|
496
|
+
secondary: string;
|
|
497
|
+
secondary100: string;
|
|
498
|
+
secondary150: string;
|
|
499
|
+
secondary200: string;
|
|
500
|
+
secondary250: string;
|
|
501
|
+
secondary500: string;
|
|
502
|
+
secondary550: string;
|
|
503
|
+
neutral: string;
|
|
504
|
+
neutral100: string;
|
|
505
|
+
neutral200: string;
|
|
506
|
+
neutral300: string;
|
|
507
|
+
neutral400: string;
|
|
508
|
+
neutral500: string;
|
|
509
|
+
neutral600: string;
|
|
510
|
+
neutral700: string;
|
|
511
|
+
neutral800: string;
|
|
512
|
+
neutral900: string;
|
|
513
|
+
error100: string;
|
|
514
|
+
error300: string;
|
|
515
|
+
error500: string;
|
|
516
|
+
error600: string;
|
|
517
|
+
error700: string;
|
|
518
|
+
warning100: string;
|
|
519
|
+
warning300: string;
|
|
520
|
+
warning500: string;
|
|
521
|
+
warning600: string;
|
|
522
|
+
warning700: string;
|
|
523
|
+
info: string;
|
|
524
|
+
info100: string;
|
|
525
|
+
info300: string;
|
|
526
|
+
info500: string;
|
|
527
|
+
info600: string;
|
|
528
|
+
info700: string;
|
|
529
|
+
success100: string;
|
|
530
|
+
success300: string;
|
|
531
|
+
success500: string;
|
|
532
|
+
success600: string;
|
|
533
|
+
success700: string;
|
|
534
|
+
background: string;
|
|
535
|
+
foreground: string;
|
|
536
|
+
};
|
|
537
|
+
space: {
|
|
538
|
+
0: string;
|
|
539
|
+
5: string;
|
|
540
|
+
10: string;
|
|
541
|
+
15: string;
|
|
542
|
+
20: string;
|
|
543
|
+
25: string;
|
|
544
|
+
30: string;
|
|
545
|
+
40: string;
|
|
546
|
+
46: string;
|
|
547
|
+
50: string;
|
|
548
|
+
60: string;
|
|
549
|
+
70: string;
|
|
550
|
+
80: string;
|
|
551
|
+
90: string;
|
|
552
|
+
100: string;
|
|
553
|
+
2: string;
|
|
554
|
+
4: string;
|
|
555
|
+
6: string;
|
|
556
|
+
8: string;
|
|
557
|
+
12: string;
|
|
558
|
+
16: string;
|
|
559
|
+
24: string;
|
|
560
|
+
28: string;
|
|
561
|
+
32: string;
|
|
562
|
+
36: string;
|
|
563
|
+
};
|
|
564
|
+
radii: {
|
|
565
|
+
xs: string;
|
|
566
|
+
sm: string;
|
|
567
|
+
xm: string;
|
|
568
|
+
md: string;
|
|
569
|
+
xl: string;
|
|
570
|
+
lg: string;
|
|
571
|
+
primary: string;
|
|
572
|
+
secondary: string;
|
|
573
|
+
};
|
|
574
|
+
fontSizes: {
|
|
575
|
+
10: string;
|
|
576
|
+
12: string;
|
|
577
|
+
14: string;
|
|
578
|
+
16: string;
|
|
579
|
+
18: string;
|
|
580
|
+
20: string;
|
|
581
|
+
22: string;
|
|
582
|
+
24: string;
|
|
583
|
+
28: string;
|
|
584
|
+
32: string;
|
|
585
|
+
36: string;
|
|
586
|
+
40: string;
|
|
587
|
+
48: string;
|
|
588
|
+
};
|
|
589
|
+
fonts: {
|
|
590
|
+
primary: string;
|
|
591
|
+
widget: string;
|
|
592
|
+
};
|
|
593
|
+
fontWeights: {
|
|
594
|
+
regular: number;
|
|
595
|
+
medium: number;
|
|
596
|
+
semiBold: number;
|
|
597
|
+
bold: number;
|
|
598
|
+
};
|
|
599
|
+
lineHeights: {
|
|
600
|
+
12: string;
|
|
601
|
+
16: string;
|
|
602
|
+
20: string;
|
|
603
|
+
24: string;
|
|
604
|
+
26: string;
|
|
605
|
+
28: string;
|
|
606
|
+
30: string;
|
|
607
|
+
36: string;
|
|
608
|
+
40: string;
|
|
609
|
+
44: string;
|
|
610
|
+
52: string;
|
|
611
|
+
64: string;
|
|
612
|
+
};
|
|
613
|
+
letterSpacings: {};
|
|
614
|
+
sizes: {
|
|
615
|
+
4: string;
|
|
616
|
+
6: string;
|
|
617
|
+
8: string;
|
|
618
|
+
10: string;
|
|
619
|
+
12: string;
|
|
620
|
+
16: string;
|
|
621
|
+
18: string;
|
|
622
|
+
20: string;
|
|
623
|
+
24: string;
|
|
624
|
+
26: string;
|
|
625
|
+
28: string;
|
|
626
|
+
30: string;
|
|
627
|
+
32: string;
|
|
628
|
+
36: string;
|
|
629
|
+
40: string;
|
|
630
|
+
45: string;
|
|
631
|
+
48: string;
|
|
632
|
+
};
|
|
633
|
+
borderWidths: {};
|
|
634
|
+
borderStyles: {};
|
|
635
|
+
shadows: {
|
|
636
|
+
mainContainer: string;
|
|
637
|
+
};
|
|
638
|
+
zIndices: {};
|
|
639
|
+
transitions: {};
|
|
640
|
+
}, import("@stitches/react/types/config").DefaultThemeMap, {}>>;
|
|
641
|
+
export declare const WalletIconBadgeContainer: import("@stitches/react/types/styled-component").StyledComponent<"span", {}, {
|
|
642
|
+
xs: string;
|
|
643
|
+
sm: string;
|
|
644
|
+
md: string;
|
|
645
|
+
lg: string;
|
|
646
|
+
}, import("@stitches/react/types/css-util").CSS<{
|
|
647
|
+
xs: string;
|
|
648
|
+
sm: string;
|
|
649
|
+
md: string;
|
|
650
|
+
lg: string;
|
|
651
|
+
}, {
|
|
652
|
+
colors: {
|
|
653
|
+
primary: string;
|
|
654
|
+
primary500: string;
|
|
655
|
+
primary550: string;
|
|
656
|
+
secondary: string;
|
|
657
|
+
secondary100: string;
|
|
658
|
+
secondary150: string;
|
|
659
|
+
secondary200: string;
|
|
660
|
+
secondary250: string;
|
|
661
|
+
secondary500: string;
|
|
662
|
+
secondary550: string;
|
|
663
|
+
neutral: string;
|
|
664
|
+
neutral100: string;
|
|
665
|
+
neutral200: string;
|
|
666
|
+
neutral300: string;
|
|
667
|
+
neutral400: string;
|
|
668
|
+
neutral500: string;
|
|
669
|
+
neutral600: string;
|
|
670
|
+
neutral700: string;
|
|
671
|
+
neutral800: string;
|
|
672
|
+
neutral900: string;
|
|
673
|
+
error100: string;
|
|
674
|
+
error300: string;
|
|
675
|
+
error500: string;
|
|
676
|
+
error600: string;
|
|
677
|
+
error700: string;
|
|
678
|
+
warning100: string;
|
|
679
|
+
warning300: string;
|
|
680
|
+
warning500: string;
|
|
681
|
+
warning600: string;
|
|
682
|
+
warning700: string;
|
|
683
|
+
info: string;
|
|
684
|
+
info100: string;
|
|
685
|
+
info300: string;
|
|
686
|
+
info500: string;
|
|
687
|
+
info600: string;
|
|
688
|
+
info700: string;
|
|
689
|
+
success100: string;
|
|
690
|
+
success300: string;
|
|
691
|
+
success500: string;
|
|
692
|
+
success600: string;
|
|
693
|
+
success700: string;
|
|
694
|
+
background: string;
|
|
695
|
+
foreground: string;
|
|
696
|
+
};
|
|
697
|
+
space: {
|
|
698
|
+
0: string;
|
|
699
|
+
5: string;
|
|
700
|
+
10: string;
|
|
701
|
+
15: string;
|
|
702
|
+
20: string;
|
|
703
|
+
25: string;
|
|
704
|
+
30: string;
|
|
705
|
+
40: string;
|
|
706
|
+
46: string;
|
|
707
|
+
50: string;
|
|
708
|
+
60: string;
|
|
709
|
+
70: string;
|
|
710
|
+
80: string;
|
|
711
|
+
90: string;
|
|
712
|
+
100: string;
|
|
713
|
+
2: string;
|
|
714
|
+
4: string;
|
|
715
|
+
6: string;
|
|
716
|
+
8: string;
|
|
717
|
+
12: string;
|
|
718
|
+
16: string;
|
|
719
|
+
24: string;
|
|
720
|
+
28: string;
|
|
721
|
+
32: string;
|
|
722
|
+
36: string;
|
|
723
|
+
};
|
|
724
|
+
radii: {
|
|
725
|
+
xs: string;
|
|
726
|
+
sm: string;
|
|
727
|
+
xm: string;
|
|
728
|
+
md: string;
|
|
729
|
+
xl: string;
|
|
730
|
+
lg: string;
|
|
731
|
+
primary: string;
|
|
732
|
+
secondary: string;
|
|
733
|
+
};
|
|
734
|
+
fontSizes: {
|
|
735
|
+
10: string;
|
|
736
|
+
12: string;
|
|
737
|
+
14: string;
|
|
738
|
+
16: string;
|
|
739
|
+
18: string;
|
|
740
|
+
20: string;
|
|
741
|
+
22: string;
|
|
742
|
+
24: string;
|
|
743
|
+
28: string;
|
|
744
|
+
32: string;
|
|
745
|
+
36: string;
|
|
746
|
+
40: string;
|
|
747
|
+
48: string;
|
|
748
|
+
};
|
|
749
|
+
fonts: {
|
|
750
|
+
primary: string;
|
|
751
|
+
widget: string;
|
|
752
|
+
};
|
|
753
|
+
fontWeights: {
|
|
754
|
+
regular: number;
|
|
755
|
+
medium: number;
|
|
756
|
+
semiBold: number;
|
|
757
|
+
bold: number;
|
|
758
|
+
};
|
|
759
|
+
lineHeights: {
|
|
760
|
+
12: string;
|
|
761
|
+
16: string;
|
|
762
|
+
20: string;
|
|
763
|
+
24: string;
|
|
764
|
+
26: string;
|
|
765
|
+
28: string;
|
|
766
|
+
30: string;
|
|
767
|
+
36: string;
|
|
768
|
+
40: string;
|
|
769
|
+
44: string;
|
|
770
|
+
52: string;
|
|
771
|
+
64: string;
|
|
772
|
+
};
|
|
773
|
+
letterSpacings: {};
|
|
774
|
+
sizes: {
|
|
775
|
+
4: string;
|
|
776
|
+
6: string;
|
|
777
|
+
8: string;
|
|
778
|
+
10: string;
|
|
779
|
+
12: string;
|
|
780
|
+
16: string;
|
|
781
|
+
18: string;
|
|
782
|
+
20: string;
|
|
783
|
+
24: string;
|
|
784
|
+
26: string;
|
|
785
|
+
28: string;
|
|
786
|
+
30: string;
|
|
787
|
+
32: string;
|
|
788
|
+
36: string;
|
|
789
|
+
40: string;
|
|
790
|
+
45: string;
|
|
791
|
+
48: string;
|
|
792
|
+
};
|
|
793
|
+
borderWidths: {};
|
|
794
|
+
borderStyles: {};
|
|
795
|
+
shadows: {
|
|
796
|
+
mainContainer: string;
|
|
797
|
+
};
|
|
798
|
+
zIndices: {};
|
|
799
|
+
transitions: {};
|
|
800
|
+
}, import("@stitches/react/types/config").DefaultThemeMap, {}>>;
|
|
481
801
|
//# sourceMappingURL=SwapDetailsModal.styles.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"SwapDetailsModal.styles.d.ts","sourceRoot":"","sources":["../../../src/components/SwapDetailsModal/SwapDetailsModal.styles.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;+DAG1B,CAAC;AAEH,eAAO,MAAM,mBAAmB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;+DAM9B,CAAC;AAEH,eAAO,MAAM,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;+DAExB,CAAC"}
|
|
1
|
+
{"version":3,"file":"SwapDetailsModal.styles.d.ts","sourceRoot":"","sources":["../../../src/components/SwapDetailsModal/SwapDetailsModal.styles.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;+DAG1B,CAAC;AAEH,eAAO,MAAM,mBAAmB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;+DAM9B,CAAC;AAEH,eAAO,MAAM,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;+DAExB,CAAC;AAEH,eAAO,MAAM,UAAU;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;+DAErB,CAAC;AAEH,eAAO,MAAM,wBAAwB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;+DAanC,CAAC"}
|
|
@@ -1,13 +1,15 @@
|
|
|
1
|
+
import type { TargetNamespace } from '@rango-dev/queue-manager-rango-preset';
|
|
2
|
+
import type { LegacyWalletType } from '@rango-dev/wallets-core/legacy';
|
|
1
3
|
import type { PendingSwap, PendingSwapNetworkStatus } from 'rango-types';
|
|
2
4
|
export type ModalState = Exclude<PendingSwapNetworkStatus, PendingSwapNetworkStatus.WaitingForQueue> | 'delete' | 'cancel' | null;
|
|
3
5
|
export interface ModalPropTypes {
|
|
6
|
+
isOpen: boolean;
|
|
4
7
|
onClose: () => void;
|
|
5
8
|
onCancel: () => void;
|
|
6
9
|
onDelete: () => void;
|
|
7
10
|
state: ModalState;
|
|
8
11
|
swap: PendingSwap;
|
|
9
12
|
message: string;
|
|
10
|
-
walletButtonDisabled: boolean;
|
|
11
13
|
}
|
|
12
14
|
export interface CompleteModalPropTypes {
|
|
13
15
|
open: boolean;
|
|
@@ -29,16 +31,33 @@ export interface CompleteModalPropTypes {
|
|
|
29
31
|
description?: React.ReactNode;
|
|
30
32
|
diagnosisUrl?: string | null;
|
|
31
33
|
}
|
|
32
|
-
export interface
|
|
33
|
-
type: 'loading' | 'warning' | 'success';
|
|
34
|
-
title: string;
|
|
35
|
-
}
|
|
36
|
-
export interface WalletStateContentProps extends ModalNetworkValueTypes {
|
|
34
|
+
export interface WalletStateContentProps {
|
|
37
35
|
swap: PendingSwap;
|
|
38
36
|
message: string;
|
|
39
|
-
|
|
40
|
-
|
|
37
|
+
onClose: () => void;
|
|
38
|
+
}
|
|
39
|
+
export interface NetworkStateContentProps {
|
|
40
|
+
message: string;
|
|
41
|
+
status: 'networkChanged' | 'waitingForNetworkChange';
|
|
42
|
+
}
|
|
43
|
+
export interface InstallWalletContentProps {
|
|
44
|
+
walletType: LegacyWalletType;
|
|
45
|
+
}
|
|
46
|
+
export interface ConnectWalletContentProps {
|
|
47
|
+
wallet: {
|
|
48
|
+
walletType: LegacyWalletType;
|
|
49
|
+
address: string;
|
|
50
|
+
derivationPath?: string;
|
|
51
|
+
};
|
|
52
|
+
namespace: TargetNamespace | null;
|
|
53
|
+
onClose: () => void;
|
|
54
|
+
}
|
|
55
|
+
export interface CancelContentProps {
|
|
56
|
+
onCancel: () => void;
|
|
57
|
+
onClose: () => void;
|
|
58
|
+
}
|
|
59
|
+
export interface DeleteContentProps {
|
|
60
|
+
onDelete: () => void;
|
|
61
|
+
onClose: () => void;
|
|
41
62
|
}
|
|
42
|
-
export type CancelContentProps = Pick<ModalPropTypes, 'onClose' | 'onCancel'>;
|
|
43
|
-
export type DeleteContentProps = Pick<ModalPropTypes, 'onClose' | 'onDelete'>;
|
|
44
63
|
//# sourceMappingURL=SwapDetailsModal.types.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"SwapDetailsModal.types.d.ts","sourceRoot":"","sources":["../../../src/components/SwapDetailsModal/SwapDetailsModal.types.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,WAAW,EAAE,wBAAwB,EAAE,MAAM,aAAa,CAAC;AAEzE,MAAM,MAAM,UAAU,GAClB,OAAO,CAAC,wBAAwB,EAAE,wBAAwB,CAAC,eAAe,CAAC,GAC3E,QAAQ,GACR,QAAQ,GACR,IAAI,CAAC;AACT,MAAM,WAAW,cAAc;IAC7B,OAAO,EAAE,MAAM,IAAI,CAAC;IACpB,QAAQ,EAAE,MAAM,IAAI,CAAC;IACrB,QAAQ,EAAE,MAAM,IAAI,CAAC;IACrB,KAAK,EAAE,UAAU,CAAC;IAClB,IAAI,EAAE,WAAW,CAAC;IAClB,OAAO,EAAE,MAAM,CAAC;
|
|
1
|
+
{"version":3,"file":"SwapDetailsModal.types.d.ts","sourceRoot":"","sources":["../../../src/components/SwapDetailsModal/SwapDetailsModal.types.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,uCAAuC,CAAC;AAC7E,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,gCAAgC,CAAC;AACvE,OAAO,KAAK,EAAE,WAAW,EAAE,wBAAwB,EAAE,MAAM,aAAa,CAAC;AAEzE,MAAM,MAAM,UAAU,GAClB,OAAO,CAAC,wBAAwB,EAAE,wBAAwB,CAAC,eAAe,CAAC,GAC3E,QAAQ,GACR,QAAQ,GACR,IAAI,CAAC;AACT,MAAM,WAAW,cAAc;IAC7B,MAAM,EAAE,OAAO,CAAC;IAChB,OAAO,EAAE,MAAM,IAAI,CAAC;IACpB,QAAQ,EAAE,MAAM,IAAI,CAAC;IACrB,QAAQ,EAAE,MAAM,IAAI,CAAC;IACrB,KAAK,EAAE,UAAU,CAAC;IAClB,IAAI,EAAE,WAAW,CAAC;IAClB,OAAO,EAAE,MAAM,CAAC;CACjB;AAED,MAAM,WAAW,sBAAsB;IACrC,IAAI,EAAE,OAAO,CAAC;IACd,OAAO,EAAE,MAAM,IAAI,CAAC;IACpB,MAAM,EAAE,SAAS,GAAG,QAAQ,CAAC;IAC7B,UAAU,EAAE,MAAM,CAAC;IACnB,SAAS,EAAE,MAAM,CAAC;IAClB,QAAQ,EAAE,MAAM,CAAC;IACjB,YAAY,EAAE,MAAM,CAAC;IACrB,gBAAgB,EAAE,MAAM,CAAC;IACzB,KAAK,EAAE;QACL,WAAW,CAAC,EAAE,MAAM,CAAC;QACrB,KAAK,CAAC,EAAE,MAAM,CAAC;KAChB,CAAC;IACF,KAAK,EAAE;QACL,WAAW,EAAE,MAAM,CAAC;QACpB,KAAK,CAAC,EAAE,MAAM,CAAC;KAChB,CAAC;IACF,WAAW,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;IAC9B,YAAY,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;CAC9B;AAED,MAAM,WAAW,uBAAuB;IACtC,IAAI,EAAE,WAAW,CAAC;IAClB,OAAO,EAAE,MAAM,CAAC;IAChB,OAAO,EAAE,MAAM,IAAI,CAAC;CACrB;AAED,MAAM,WAAW,wBAAwB;IACvC,OAAO,EAAE,MAAM,CAAC;IAChB,MAAM,EAAE,gBAAgB,GAAG,yBAAyB,CAAC;CACtD;AAED,MAAM,WAAW,yBAAyB;IACxC,UAAU,EAAE,gBAAgB,CAAC;CAC9B;AAED,MAAM,WAAW,yBAAyB;IACxC,MAAM,EAAE;QACN,UAAU,EAAE,gBAAgB,CAAC;QAC7B,OAAO,EAAE,MAAM,CAAC;QAChB,cAAc,CAAC,EAAE,MAAM,CAAC;KACzB,CAAC;IACF,SAAS,EAAE,eAAe,GAAG,IAAI,CAAC;IAClC,OAAO,EAAE,MAAM,IAAI,CAAC;CACrB;AAED,MAAM,WAAW,kBAAkB;IACjC,QAAQ,EAAE,MAAM,IAAI,CAAC;IACrB,OAAO,EAAE,MAAM,IAAI,CAAC;CACrB;AAED,MAAM,WAAW,kBAAkB;IACjC,QAAQ,EAAE,MAAM,IAAI,CAAC;IACrB,OAAO,EAAE,MAAM,IAAI,CAAC;CACrB"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Detached.d.ts","sourceRoot":"","sources":["../../../src/components/WalletStatefulConnect/Detached.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,kBAAkB,CAAC;AAIlD,OAAO,KAAK,MAAM,OAAO,CAAC;
|
|
1
|
+
{"version":3,"file":"Detached.d.ts","sourceRoot":"","sources":["../../../src/components/WalletStatefulConnect/Detached.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,kBAAkB,CAAC;AAIlD,OAAO,KAAK,MAAM,OAAO,CAAC;AAO1B,wBAAgB,QAAQ,CAAC,KAAK,EAAE,SAAS,qBA0CxC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"NamespaceDetachedItem.d.ts","sourceRoot":"","sources":["../../../src/components/WalletStatefulConnect/NamespaceDetachedItem.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,8BAA8B,EAAE,MAAM,oBAAoB,CAAC;
|
|
1
|
+
{"version":3,"file":"NamespaceDetachedItem.d.ts","sourceRoot":"","sources":["../../../src/components/WalletStatefulConnect/NamespaceDetachedItem.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,8BAA8B,EAAE,MAAM,oBAAoB,CAAC;AAOzE,OAAO,KAA4C,MAAM,OAAO,CAAC;AAKjE,eAAO,MAAM,qBAAqB,UACzB,8BAA8B,sBA0FtC,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"NamespaceListItem.d.ts","sourceRoot":"","sources":["../../../src/components/WalletStatefulConnect/NamespaceListItem.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,sBAAsB,EAAE,MAAM,oBAAoB,CAAC;AAGjE,OAAO,KAAK,MAAM,OAAO,CAAC;
|
|
1
|
+
{"version":3,"file":"NamespaceListItem.d.ts","sourceRoot":"","sources":["../../../src/components/WalletStatefulConnect/NamespaceListItem.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,sBAAsB,EAAE,MAAM,oBAAoB,CAAC;AAGjE,OAAO,KAAK,MAAM,OAAO,CAAC;AAI1B,wBAAgB,iBAAiB,CAAC,KAAK,EAAE,sBAAsB,qBAgB9D"}
|