@funkit/connect 4.0.0 → 4.0.1
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/CHANGELOG.md +23 -0
- package/dist/components/ConnectButton/ConnectButtonRenderer.d.ts +22 -20
- package/dist/components/FunButton/FunButton.d.ts +2 -2
- package/dist/components/FunGuarantees/FunGuarantees.d.ts +1 -1
- package/dist/components/FunKeyValue/FunKeyValue.d.ts +5 -5
- package/dist/components/FunSelectBrokerage/FunSelectBrokerage.d.ts +1 -1
- package/dist/components/FunTooltip/FunTooltip.d.ts +1 -1
- package/dist/components/ModalSelection/ModalSelection.d.ts +1 -1
- package/dist/consts/moonpay.d.ts +8 -1
- package/dist/css/modalTransitionStyles.css.d.ts +4 -4
- package/dist/domains/checkoutFees.d.ts +1 -1
- package/dist/domains/clientMetadata.d.ts +1 -1
- package/dist/domains/paymentMethods.d.ts +3 -5
- package/dist/domains/quote.d.ts +1 -1
- package/dist/hooks/useAllowedAssets.d.ts +8 -0
- package/dist/hooks/useAnimatedNavigation.d.ts +7 -1
- package/dist/hooks/useEffectEvent.d.ts +1 -1
- package/dist/hooks/useMesh.d.ts +2 -2
- package/dist/index.css +74 -118
- package/dist/index.js +1446 -1747
- package/dist/locales/I18n.d.ts +3 -1
- package/dist/modals/CheckoutModal/ConfirmationStep/ConfirmationStep.d.ts +0 -8
- package/dist/modals/CheckoutModal/ConfirmationStep/useQuoteRefresh.d.ts +5 -8
- package/dist/modals/CheckoutModal/ConnectExchange.d.ts +1 -1
- package/dist/modals/CheckoutModal/InputAmount/InputAmountLoading.d.ts +1 -1
- package/dist/modals/CheckoutModal/InputAmount/useCheckoutQuote.d.ts +2 -1
- package/dist/modals/CheckoutModal/MeshVerification.d.ts +1 -1
- package/dist/modals/CheckoutModal/SelectBrokerage.d.ts +1 -1
- package/dist/modals/CheckoutModal/useSourceAssetConfirm.d.ts +3 -7
- package/dist/modals/FunCheckoutHistoryModal/FunCheckoutHistoryContent.d.ts +3 -3
- package/dist/modals/ProfileDetails/ActivityTraversalContext.d.ts +15 -9
- package/dist/modals/ProfileDetails/FunProfileViews/Home/BalanceSection.d.ts +6 -0
- package/dist/modals/ProfileDetails/FunProfileViews/Home/Home.css.d.ts +0 -7
- package/dist/modals/ProfileDetails/FunProfileViews/Home/HomeCheckoutDisplayRow.d.ts +2 -5
- package/dist/modals/ProfileDetails/FunProfileViews/Home/HomeTokenDisplayRow.d.ts +3 -2
- package/dist/modals/ProfileDetails/FunProfileViews/Home/ProfileTitleSection.d.ts +11 -0
- package/dist/modals/ProfileDetails/FunProfileViews/Home/index.d.ts +4 -3
- package/dist/modals/ProfileDetails/ProfileDetails.d.ts +0 -2
- package/dist/providers/FunkitCheckoutContext.d.ts +20 -7
- package/dist/providers/FunkitMeshProvider.d.ts +5 -3
- package/dist/providers/FunkitWeb2Provider.d.ts +16 -8
- package/dist/providers/GeneralWalletProvider.d.ts +9 -4
- package/dist/utils/aborts.d.ts +1 -1
- package/dist/utils/assets.d.ts +2 -2
- package/dist/utils/mesh.d.ts +3 -3
- package/dist/wallets/walletConnectors/index.js +46 -46
- package/package.json +5 -5
- package/dist/modals/ProfileDetails/FunProfileViews/ActivityHistory/ActivityHistory.d.ts +0 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,28 @@
|
|
|
1
1
|
# @funkit/connect
|
|
2
2
|
|
|
3
|
+
## 4.0.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- e43d84c: refactor: move mesh meta to only brokerages
|
|
8
|
+
- a6ee027: fix: fix asset chain icon
|
|
9
|
+
- 4738aae: fix: remove incorrect tab navigation animation in profile details
|
|
10
|
+
- 9ed6697: feat: utilize new animations in all modals
|
|
11
|
+
- 441a08b: refactor: more robust error handling in useCheckoutQuote
|
|
12
|
+
- 99198d5: feat: use assets/allow endpoint
|
|
13
|
+
- f363a3a: refactor: simplify quote refresh interface
|
|
14
|
+
- 78405a8: chore: fix some biome warnings
|
|
15
|
+
- 1b296d9: refactor: fallback chain switched from arbitrum to base
|
|
16
|
+
- ee2a73e: feat: use dollar amounts for LP cost in transaction breakdown
|
|
17
|
+
- Updated dependencies [e43d84c]
|
|
18
|
+
- Updated dependencies [99198d5]
|
|
19
|
+
- Updated dependencies [1b296d9]
|
|
20
|
+
- Updated dependencies [ee2a73e]
|
|
21
|
+
- @funkit/api-base@1.4.0
|
|
22
|
+
- @funkit/core@2.2.7
|
|
23
|
+
- @funkit/utils@1.0.1
|
|
24
|
+
- @funkit/wagmi-tools@3.0.18
|
|
25
|
+
|
|
3
26
|
## 4.0.0
|
|
4
27
|
|
|
5
28
|
### Major Changes
|
|
@@ -1,27 +1,29 @@
|
|
|
1
1
|
import React, { type ReactNode } from 'react';
|
|
2
2
|
import { type AuthenticationStatus } from '../../providers/AuthenticationContext';
|
|
3
|
+
export interface AccountData {
|
|
4
|
+
address: string;
|
|
5
|
+
balanceDecimals?: number;
|
|
6
|
+
balanceFormatted?: string;
|
|
7
|
+
balanceSymbol?: string;
|
|
8
|
+
balanceNativeAmount?: string;
|
|
9
|
+
displayBalance?: string;
|
|
10
|
+
displayName: string;
|
|
11
|
+
displayAvatar: string;
|
|
12
|
+
ensAvatar?: string;
|
|
13
|
+
ensName?: string;
|
|
14
|
+
}
|
|
15
|
+
export interface ChainData {
|
|
16
|
+
hasIcon: boolean;
|
|
17
|
+
iconUrl?: string;
|
|
18
|
+
iconBackground?: string;
|
|
19
|
+
id: number;
|
|
20
|
+
name?: string;
|
|
21
|
+
unsupported?: boolean;
|
|
22
|
+
}
|
|
3
23
|
export interface ConnectButtonRendererProps {
|
|
4
24
|
children: (renderProps: {
|
|
5
|
-
account?:
|
|
6
|
-
|
|
7
|
-
balanceDecimals?: number;
|
|
8
|
-
balanceFormatted?: string;
|
|
9
|
-
balanceSymbol?: string;
|
|
10
|
-
balanceNativeAmount?: string;
|
|
11
|
-
displayBalance?: string;
|
|
12
|
-
displayName: string;
|
|
13
|
-
displayAvatar: string;
|
|
14
|
-
ensAvatar?: string;
|
|
15
|
-
ensName?: string;
|
|
16
|
-
};
|
|
17
|
-
chain?: {
|
|
18
|
-
hasIcon: boolean;
|
|
19
|
-
iconUrl?: string;
|
|
20
|
-
iconBackground?: string;
|
|
21
|
-
id: number;
|
|
22
|
-
name?: string;
|
|
23
|
-
unsupported?: boolean;
|
|
24
|
-
};
|
|
25
|
+
account?: AccountData;
|
|
26
|
+
chain?: ChainData;
|
|
25
27
|
mounted: boolean;
|
|
26
28
|
authenticationStatus?: AuthenticationStatus;
|
|
27
29
|
openAccountModal: () => void;
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
import React from 'react';
|
|
1
|
+
import React, { type MouseEventHandler } from 'react';
|
|
2
2
|
import { type BoxProps } from '../Box/Box';
|
|
3
3
|
export type FunButtonTypes = 'primary' | 'secondary' | 'tertiary';
|
|
4
4
|
export interface FunButtonProps {
|
|
5
5
|
id?: string;
|
|
6
6
|
title: string;
|
|
7
|
-
onClick?:
|
|
7
|
+
onClick?: MouseEventHandler;
|
|
8
8
|
type?: FunButtonTypes;
|
|
9
9
|
isDisabled?: boolean;
|
|
10
10
|
isLoading?: boolean;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import React, { type ReactNode } from 'react';
|
|
1
|
+
import React, { type MouseEventHandler, type ReactNode } from 'react';
|
|
2
2
|
import { type BoxProps } from '../Box/Box';
|
|
3
3
|
import { type TextProps } from '../Text/Text';
|
|
4
4
|
export interface FunKeyValueProps {
|
|
@@ -7,7 +7,7 @@ export interface FunKeyValueProps {
|
|
|
7
7
|
valueIcon?: ReactNode;
|
|
8
8
|
valueText: ReactNode;
|
|
9
9
|
disclaimerText?: string;
|
|
10
|
-
onClick?:
|
|
10
|
+
onClick?: MouseEventHandler | null;
|
|
11
11
|
hasBorder?: boolean;
|
|
12
12
|
keyTextColor?: BoxProps['color'];
|
|
13
13
|
keyTextSize?: TextProps['size'];
|
|
@@ -21,9 +21,9 @@ export interface FunKeyValueProps {
|
|
|
21
21
|
reverseValueItems?: boolean;
|
|
22
22
|
customValueComponent?: ReactNode;
|
|
23
23
|
disclaimerTextColor?: BoxProps['color'];
|
|
24
|
-
backgroundBaseColor?: BoxProps['background']
|
|
25
|
-
borderColorBase?: BoxProps['borderColor']
|
|
26
|
-
borderColorHover?: BoxProps['borderColor']
|
|
24
|
+
backgroundBaseColor?: Extract<BoxProps['background'], string>;
|
|
25
|
+
borderColorBase?: Extract<BoxProps['borderColor'], string>;
|
|
26
|
+
borderColorHover?: Extract<BoxProps['borderColor'], string>;
|
|
27
27
|
paddingY?: BoxProps['paddingY'];
|
|
28
28
|
paddingX?: BoxProps['paddingX'];
|
|
29
29
|
isDisabled?: boolean;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
import { MeshExchangeType } from '~/consts/mesh';
|
|
2
|
+
import type { MeshExchangeType } from '~/consts/mesh';
|
|
3
3
|
import type { FunSelectOption } from '../FunSelect/FunSelect';
|
|
4
4
|
interface FunSelectBrokerageProps {
|
|
5
5
|
onSelect: (value: MeshExchangeType) => void;
|
package/dist/consts/moonpay.d.ts
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
1
|
export declare const MOONPAY_TOKENS_SUPPORTED_REGIONS: {
|
|
2
|
-
[
|
|
2
|
+
[token: string]: {
|
|
3
|
+
isSupportedInUS: boolean;
|
|
4
|
+
notAllowedUSStates: string[];
|
|
5
|
+
notAllowedCountries: string[];
|
|
6
|
+
minBuyAmount: number;
|
|
7
|
+
maxBuyAmount: number;
|
|
8
|
+
precision: number;
|
|
9
|
+
};
|
|
3
10
|
};
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
export declare const animateContentInClass: string;
|
|
2
2
|
export declare const animateContentOutClass: string;
|
|
3
|
-
export declare const
|
|
4
|
-
export declare const
|
|
5
|
-
export declare const
|
|
6
|
-
export declare const
|
|
3
|
+
export declare const slideContentIn: string;
|
|
4
|
+
export declare const slideContentOut: string;
|
|
5
|
+
export declare const slideContentInReverse: string;
|
|
6
|
+
export declare const slideContentOutReverse: string;
|
|
7
7
|
export declare const animateTitleInClass: string;
|
|
8
8
|
export declare const animateTitleOutClass: string;
|
|
@@ -6,7 +6,7 @@ import type { FunkitActiveCheckoutItem } from '../providers/FunkitCheckoutContex
|
|
|
6
6
|
interface BaseCheckoutFees {
|
|
7
7
|
paymentMethod: PaymentMethod;
|
|
8
8
|
marketMakerFeeUsd: number;
|
|
9
|
-
|
|
9
|
+
liquidityProviderFeeUsd: number;
|
|
10
10
|
totalFeesUsd: number;
|
|
11
11
|
/** does not include the gas fee since it can be in a
|
|
12
12
|
* different token than the source token */
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* Make sure it is SERIALIZABLE and BACKWARD COMPATIBLE!!
|
|
6
6
|
*/
|
|
7
7
|
import type { FunkitActiveCheckoutItem, FunkitCheckoutConfig } from '~/providers/FunkitCheckoutContext';
|
|
8
|
-
import { ApiCheckoutClientMetadata } from '@funkit/api-base';
|
|
8
|
+
import type { ApiCheckoutClientMetadata } from '@funkit/api-base';
|
|
9
9
|
/** Historical Checkout Configuration stored in the server
|
|
10
10
|
* This is similar to FunkitCheckoutConfig but with some fields changed to serializable types
|
|
11
11
|
* */
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { PreviewTransferResult } from '@funkit/api-base';
|
|
2
2
|
import type { LinkPayload } from '@meshconnect/web-link-sdk';
|
|
3
|
-
import { MeshExchangeType } from '~/consts/mesh';
|
|
3
|
+
import { type MeshExchangeType } from '~/consts/mesh';
|
|
4
4
|
/** Supported payment methods in FunkitConnect. **/
|
|
5
5
|
export declare enum PaymentMethod {
|
|
6
6
|
/** Moonpay - Credit / Debit Card **/
|
|
@@ -11,7 +11,7 @@ export declare enum PaymentMethod {
|
|
|
11
11
|
BROKERAGE = "brokerage",
|
|
12
12
|
TOKEN_TRANSFER = "token_transfer"
|
|
13
13
|
}
|
|
14
|
-
type
|
|
14
|
+
type MeshMeta = LinkPayload & {
|
|
15
15
|
checkoutMeshNetworkId?: string;
|
|
16
16
|
computedPreviewExpirationMs?: number;
|
|
17
17
|
previewTransferResult?: PreviewTransferResult;
|
|
@@ -19,11 +19,8 @@ type PaymentMethodInfoMeta = LinkPayload & {
|
|
|
19
19
|
/** Full payment method information used in frontend during payment flows. **/
|
|
20
20
|
interface PaymentMethodInfoBase {
|
|
21
21
|
description: string;
|
|
22
|
-
meta: PaymentMethodInfoMeta;
|
|
23
22
|
paymentMethod: PaymentMethod;
|
|
24
23
|
title: string;
|
|
25
|
-
/** Only defined for brokerages */
|
|
26
|
-
brokerType?: MeshExchangeType;
|
|
27
24
|
}
|
|
28
25
|
export interface PaymentMethodCardInfo extends PaymentMethodInfoBase {
|
|
29
26
|
paymentMethod: PaymentMethod.CARD;
|
|
@@ -31,6 +28,7 @@ export interface PaymentMethodCardInfo extends PaymentMethodInfoBase {
|
|
|
31
28
|
export interface PaymentMethodBrokerageInfo extends PaymentMethodInfoBase {
|
|
32
29
|
paymentMethod: PaymentMethod.BROKERAGE;
|
|
33
30
|
brokerType: MeshExchangeType;
|
|
31
|
+
meta: MeshMeta;
|
|
34
32
|
}
|
|
35
33
|
export interface PaymentMethodAccountInfo extends PaymentMethodInfoBase {
|
|
36
34
|
paymentMethod: PaymentMethod.ACCOUNT_BALANCE;
|
package/dist/domains/quote.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { ApiFunkitCheckoutQuoteResult, type CheckoutQuoteResponse } from '@funkit/api-base';
|
|
1
|
+
import { type ApiFunkitCheckoutQuoteResult, type CheckoutQuoteResponse } from '@funkit/api-base';
|
|
2
2
|
import type { Address } from 'viem';
|
|
3
3
|
import type { Config } from 'wagmi';
|
|
4
4
|
import type { FunkitActiveCheckoutItem } from '~/providers/FunkitCheckoutContext';
|
|
@@ -1,4 +1,9 @@
|
|
|
1
1
|
export declare const ANIMATION_DELAY = 75;
|
|
2
|
+
/**
|
|
3
|
+
* @param isInitialStep utilizes the old scale-in for initial display. Based on this boolean and animation state.
|
|
4
|
+
* @returns className to be applied on the animatable content
|
|
5
|
+
*/
|
|
6
|
+
export declare const getContentAnimation: ({ isOut, isReversed, isSkipped }: AnimationState, isInitialStep: boolean) => string | undefined;
|
|
2
7
|
interface AnimatedNavigationResponse<T> {
|
|
3
8
|
animation: AnimationState;
|
|
4
9
|
navigateTo: (page: T, params?: AnimationParams) => void;
|
|
@@ -15,7 +20,8 @@ interface AnimationParams {
|
|
|
15
20
|
skip?: boolean;
|
|
16
21
|
}
|
|
17
22
|
export interface AnimationState {
|
|
18
|
-
isOut: boolean
|
|
23
|
+
isOut: boolean;
|
|
24
|
+
isSkipped: boolean;
|
|
19
25
|
isReversed: boolean;
|
|
20
26
|
}
|
|
21
27
|
export {};
|
package/dist/hooks/useMesh.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { MeshExchangeType } from '~/consts/mesh';
|
|
2
|
-
import { LinkPayload } from '@meshconnect/web-link-sdk';
|
|
3
|
-
import { FunSelectOption } from '../components/FunSelect/FunSelect';
|
|
2
|
+
import type { LinkPayload } from '@meshconnect/web-link-sdk';
|
|
3
|
+
import type { FunSelectOption } from '../components/FunSelect/FunSelect';
|
|
4
4
|
export declare const useSupportedExchanges: () => MeshExchangeType[];
|
|
5
5
|
export declare const useMeshExchanges: ({ fullInfo, iconSize, }: {
|
|
6
6
|
fullInfo?: boolean;
|
package/dist/index.css
CHANGED
|
@@ -6395,65 +6395,6 @@
|
|
|
6395
6395
|
min-height: 56px;
|
|
6396
6396
|
}
|
|
6397
6397
|
|
|
6398
|
-
/* vanilla-extract-css-ns:src/components/FunButton/FunButton.css.ts.vanilla.css?source=QGtleWZyYW1lcyBfMXR5eDVudTcgewogIDAlIHsKICAgIHRyYW5zZm9ybTogcm90YXRlKDBkZWcpOwogIH0KICAzMyUgewogICAgdHJhbnNmb3JtOiByb3RhdGUoMjAwZGVnKTsKICB9CiAgNjYlIHsKICAgIHRyYW5zZm9ybTogcm90YXRlKDE2MGRlZyk7CiAgfQogIDEwMCUgewogICAgdHJhbnNmb3JtOiByb3RhdGUoMTgwZGVnKTsKICB9Cn0KLl8xdHl4NW51MSB7CiAgY3Vyc29yOiBwb2ludGVyOwp9Ci5fMXR5eDVudTE6aG92ZXIgewogIHRleHQtZGVjb3JhdGlvbi1saW5lOiB1bmRlcmxpbmU7Cn0KLl8xdHl4NW51MiB7CiAgdHJhbnNpdGlvbjogYWxsIDE1MG1zIGN1YmljLWJlemllcigwLjMsIDAsIDAuMDYsIDEpOwp9Ci5fMXR5eDVudTM6YWN0aXZlIHsKICB0cmFuc2Zvcm06IHNjYWxlKDAuOTgpOwp9Ci5fMXR5eDVudTQgewogIGN1cnNvcjogcG9pbnRlcjsKfQouXzF0eXg1bnU0OmZvY3VzLXZpc2libGUgewogIGJvcmRlci13aWR0aDogMnB4Owp9Ci5fMXR5eDVudTUgewogIGN1cnNvcjogZGVmYXVsdDsKfQouXzF0eXg1bnU2IHsKICBjdXJzb3I6IG5vdC1hbGxvd2VkOwp9Ci5fMXR5eDVudTggewogIGFuaW1hdGlvbjogXzF0eXg1bnU3IDFzOwp9 */
|
|
6399
|
-
@keyframes _1tyx5nu7 {
|
|
6400
|
-
0% {
|
|
6401
|
-
transform: rotate(0deg);
|
|
6402
|
-
}
|
|
6403
|
-
33% {
|
|
6404
|
-
transform: rotate(200deg);
|
|
6405
|
-
}
|
|
6406
|
-
66% {
|
|
6407
|
-
transform: rotate(160deg);
|
|
6408
|
-
}
|
|
6409
|
-
100% {
|
|
6410
|
-
transform: rotate(180deg);
|
|
6411
|
-
}
|
|
6412
|
-
}
|
|
6413
|
-
[data-rk] ._1tyx5nu1 {
|
|
6414
|
-
cursor: pointer;
|
|
6415
|
-
}
|
|
6416
|
-
[data-rk] ._1tyx5nu1:hover {
|
|
6417
|
-
text-decoration-line: underline;
|
|
6418
|
-
}
|
|
6419
|
-
[data-rk] ._1tyx5nu2 {
|
|
6420
|
-
transition: all 150ms cubic-bezier(0.3, 0, 0.06, 1);
|
|
6421
|
-
}
|
|
6422
|
-
[data-rk] ._1tyx5nu3:active {
|
|
6423
|
-
transform: scale(0.98);
|
|
6424
|
-
}
|
|
6425
|
-
[data-rk] ._1tyx5nu4 {
|
|
6426
|
-
cursor: pointer;
|
|
6427
|
-
}
|
|
6428
|
-
[data-rk] ._1tyx5nu4:focus-visible {
|
|
6429
|
-
border-width: 2px;
|
|
6430
|
-
}
|
|
6431
|
-
[data-rk] ._1tyx5nu5 {
|
|
6432
|
-
cursor: default;
|
|
6433
|
-
}
|
|
6434
|
-
[data-rk] ._1tyx5nu6 {
|
|
6435
|
-
cursor: not-allowed;
|
|
6436
|
-
}
|
|
6437
|
-
[data-rk] ._1tyx5nu8 {
|
|
6438
|
-
animation: _1tyx5nu7 1s;
|
|
6439
|
-
}
|
|
6440
|
-
|
|
6441
|
-
/* vanilla-extract-css-ns:src/components/FunBottomBar/FunBottomBar.css.ts.vanilla.css?source=Lm41cXdpMCB7CiAgcGFkZGluZy10b3A6IDEycHg7CiAgJjpub3QoOmVtcHR5KSA+IDpmaXJzdC1jaGlsZCB7CiAgICBtYXJnaW4tdG9wOiAtNnB4OwogIH0KfQ== */
|
|
6442
|
-
[data-rk] .n5qwi0 {
|
|
6443
|
-
padding-top: 12px;
|
|
6444
|
-
[data-rk] &:not(:empty) > :first-child {
|
|
6445
|
-
margin-top: -6px;
|
|
6446
|
-
}
|
|
6447
|
-
}
|
|
6448
|
-
|
|
6449
|
-
/* vanilla-extract-css-ns:src/components/FunDivider/FunDivider.css.ts.vanilla.css?source=Ll8zZGtkc2MwIHsKICBib3JkZXItd2lkdGg6IDA7CiAgYm9yZGVyLXRvcC13aWR0aDogMXB4OwogIGJvcmRlci1zdHlsZTogc29saWQ7CiAgZmxleDogMTsKfQ== */
|
|
6450
|
-
[data-rk] ._3dkdsc0 {
|
|
6451
|
-
border-width: 0;
|
|
6452
|
-
border-top-width: 1px;
|
|
6453
|
-
border-style: solid;
|
|
6454
|
-
flex: 1;
|
|
6455
|
-
}
|
|
6456
|
-
|
|
6457
6398
|
/* vanilla-extract-css-ns:src/css/modalTransitionStyles.css.ts.vanilla.css?source=#H4sIAAAAAAAAE83U3WqDMBgG4HOv4jsZONAQ2/p/0svYaYyxZDWxRGXthvc+poymtnFu3ZhHBpP35ckHut2zU6GIYDXUze75WGJ4swDwQ/8AaBSRdVEpkUBNSclsjMLHtN+qDoTy5pQARquPN50F4GFz0hvnvCHVWdsxwvsCYaoCiKfk0Q/lGPlXSaN9Y7T3y5I07Mn2gsPRUGmiaGk8f5L+HI2pbwbFnbjJDU40hzPV+bvTif94Ot8bDr3UTF59xuVyQ90t/rUODSWr/gCRXJCGV9LNW9UvEgh9UacXew0XXO7copV0OELbjFM3Y6+cKRujtQPYAYxw4MDwBZ+zBS9LV1Q5S6Co1AtR+ahcEsGSz39Uegaulwj0NGCwROBGA4ZLBPoakCwRGGnAbInAWAOye4All4yoOyRUkxT/KslTq3sHeXaGf/IIAAA= */
|
|
6458
6399
|
@keyframes stgjxl0 {
|
|
6459
6400
|
0% {
|
|
@@ -6584,6 +6525,65 @@
|
|
|
6584
6525
|
animation-name: stgjxld;
|
|
6585
6526
|
}
|
|
6586
6527
|
|
|
6528
|
+
/* vanilla-extract-css-ns:src/components/FunButton/FunButton.css.ts.vanilla.css?source=QGtleWZyYW1lcyBfMXR5eDVudTcgewogIDAlIHsKICAgIHRyYW5zZm9ybTogcm90YXRlKDBkZWcpOwogIH0KICAzMyUgewogICAgdHJhbnNmb3JtOiByb3RhdGUoMjAwZGVnKTsKICB9CiAgNjYlIHsKICAgIHRyYW5zZm9ybTogcm90YXRlKDE2MGRlZyk7CiAgfQogIDEwMCUgewogICAgdHJhbnNmb3JtOiByb3RhdGUoMTgwZGVnKTsKICB9Cn0KLl8xdHl4NW51MSB7CiAgY3Vyc29yOiBwb2ludGVyOwp9Ci5fMXR5eDVudTE6aG92ZXIgewogIHRleHQtZGVjb3JhdGlvbi1saW5lOiB1bmRlcmxpbmU7Cn0KLl8xdHl4NW51MiB7CiAgdHJhbnNpdGlvbjogYWxsIDE1MG1zIGN1YmljLWJlemllcigwLjMsIDAsIDAuMDYsIDEpOwp9Ci5fMXR5eDVudTM6YWN0aXZlIHsKICB0cmFuc2Zvcm06IHNjYWxlKDAuOTgpOwp9Ci5fMXR5eDVudTQgewogIGN1cnNvcjogcG9pbnRlcjsKfQouXzF0eXg1bnU0OmZvY3VzLXZpc2libGUgewogIGJvcmRlci13aWR0aDogMnB4Owp9Ci5fMXR5eDVudTUgewogIGN1cnNvcjogZGVmYXVsdDsKfQouXzF0eXg1bnU2IHsKICBjdXJzb3I6IG5vdC1hbGxvd2VkOwp9Ci5fMXR5eDVudTggewogIGFuaW1hdGlvbjogXzF0eXg1bnU3IDFzOwp9 */
|
|
6529
|
+
@keyframes _1tyx5nu7 {
|
|
6530
|
+
0% {
|
|
6531
|
+
transform: rotate(0deg);
|
|
6532
|
+
}
|
|
6533
|
+
33% {
|
|
6534
|
+
transform: rotate(200deg);
|
|
6535
|
+
}
|
|
6536
|
+
66% {
|
|
6537
|
+
transform: rotate(160deg);
|
|
6538
|
+
}
|
|
6539
|
+
100% {
|
|
6540
|
+
transform: rotate(180deg);
|
|
6541
|
+
}
|
|
6542
|
+
}
|
|
6543
|
+
[data-rk] ._1tyx5nu1 {
|
|
6544
|
+
cursor: pointer;
|
|
6545
|
+
}
|
|
6546
|
+
[data-rk] ._1tyx5nu1:hover {
|
|
6547
|
+
text-decoration-line: underline;
|
|
6548
|
+
}
|
|
6549
|
+
[data-rk] ._1tyx5nu2 {
|
|
6550
|
+
transition: all 150ms cubic-bezier(0.3, 0, 0.06, 1);
|
|
6551
|
+
}
|
|
6552
|
+
[data-rk] ._1tyx5nu3:active {
|
|
6553
|
+
transform: scale(0.98);
|
|
6554
|
+
}
|
|
6555
|
+
[data-rk] ._1tyx5nu4 {
|
|
6556
|
+
cursor: pointer;
|
|
6557
|
+
}
|
|
6558
|
+
[data-rk] ._1tyx5nu4:focus-visible {
|
|
6559
|
+
border-width: 2px;
|
|
6560
|
+
}
|
|
6561
|
+
[data-rk] ._1tyx5nu5 {
|
|
6562
|
+
cursor: default;
|
|
6563
|
+
}
|
|
6564
|
+
[data-rk] ._1tyx5nu6 {
|
|
6565
|
+
cursor: not-allowed;
|
|
6566
|
+
}
|
|
6567
|
+
[data-rk] ._1tyx5nu8 {
|
|
6568
|
+
animation: _1tyx5nu7 1s;
|
|
6569
|
+
}
|
|
6570
|
+
|
|
6571
|
+
/* vanilla-extract-css-ns:src/components/FunBottomBar/FunBottomBar.css.ts.vanilla.css?source=Lm41cXdpMCB7CiAgcGFkZGluZy10b3A6IDEycHg7CiAgJjpub3QoOmVtcHR5KSA+IDpmaXJzdC1jaGlsZCB7CiAgICBtYXJnaW4tdG9wOiAtNnB4OwogIH0KfQ== */
|
|
6572
|
+
[data-rk] .n5qwi0 {
|
|
6573
|
+
padding-top: 12px;
|
|
6574
|
+
[data-rk] &:not(:empty) > :first-child {
|
|
6575
|
+
margin-top: -6px;
|
|
6576
|
+
}
|
|
6577
|
+
}
|
|
6578
|
+
|
|
6579
|
+
/* vanilla-extract-css-ns:src/components/FunDivider/FunDivider.css.ts.vanilla.css?source=Ll8zZGtkc2MwIHsKICBib3JkZXItd2lkdGg6IDA7CiAgYm9yZGVyLXRvcC13aWR0aDogMXB4OwogIGJvcmRlci1zdHlsZTogc29saWQ7CiAgZmxleDogMTsKfQ== */
|
|
6580
|
+
[data-rk] ._3dkdsc0 {
|
|
6581
|
+
border-width: 0;
|
|
6582
|
+
border-top-width: 1px;
|
|
6583
|
+
border-style: solid;
|
|
6584
|
+
flex: 1;
|
|
6585
|
+
}
|
|
6586
|
+
|
|
6587
6587
|
/* vanilla-extract-css-ns:src/components/FunSkeletonLoader/FunSkeletonLoader.css.ts.vanilla.css?source=QGtleWZyYW1lcyBkajB4NjAwIHsKICAwJSB7CiAgICBvcGFjaXR5OiAxOwogIH0KICAxMDAlIHsKICAgIG9wYWNpdHk6IDAuNTsKICB9Cn0KLmRqMHg2MDIgewogIGFuaW1hdGlvbi1kaXJlY3Rpb246IGFsdGVybmF0ZTsKICBhbmltYXRpb24tZHVyYXRpb246IDcwMG1zOwogIGFuaW1hdGlvbi10aW1pbmctZnVuY3Rpb246IGxpbmVhcjsKICBhbmltYXRpb24taXRlcmF0aW9uLWNvdW50OiBpbmZpbml0ZTsKICBhbmltYXRpb24tZmlsbC1tb2RlOiBmb3J3YXJkczsKICBhbmltYXRpb24tbmFtZTogZGoweDYwMDsKfQouZGoweDYwMyB7CiAgZmxleDogMCAwIGF1dG87Cn0= */
|
|
6588
6588
|
@keyframes dj0x600 {
|
|
6589
6589
|
0% {
|
|
@@ -6796,22 +6796,12 @@ input[type=number] {
|
|
|
6796
6796
|
overflow: hidden;
|
|
6797
6797
|
}
|
|
6798
6798
|
|
|
6799
|
-
/* vanilla-extract-css-ns:src/components/FunAssetAvatar/FunAssetAvatar.css.ts.vanilla.css?source=LnV3cmRjMjAgewogIHBvc2l0aW9uOiByZWxhdGl2ZTsKfQoudXdyZGMyMiB7CiAgcG9zaXRpb246IGFic29sdXRlOwogIGJvdHRvbTogMDsKICByaWdodDogMDsKfQ== */
|
|
6800
|
-
[data-rk] .uwrdc20 {
|
|
6801
|
-
position: relative;
|
|
6802
|
-
}
|
|
6803
|
-
[data-rk] .uwrdc22 {
|
|
6804
|
-
position: absolute;
|
|
6805
|
-
bottom: 0;
|
|
6806
|
-
right: 0;
|
|
6807
|
-
}
|
|
6808
|
-
|
|
6809
6799
|
/* vanilla-extract-css-ns:src/css/scrollStyles.css.ts.vanilla.css?source=Ll8xNjNlaG1rMDo6LXdlYmtpdC1zY3JvbGxiYXIgewogIGRpc3BsYXk6IG5vbmU7Cn0= */
|
|
6810
6800
|
[data-rk] ._163ehmk0::-webkit-scrollbar {
|
|
6811
6801
|
display: none;
|
|
6812
6802
|
}
|
|
6813
6803
|
|
|
6814
|
-
/* vanilla-extract-css-ns:src/modals/ProfileDetails/FunProfileViews/Home/Home.css.ts.vanilla.css?source
|
|
6804
|
+
/* vanilla-extract-css-ns:src/modals/ProfileDetails/FunProfileViews/Home/Home.css.ts.vanilla.css?source=QGtleWZyYW1lcyBfMjZobXdzMCB7CiAgMCUgewogICAgb3BhY2l0eTogMC4yOwogIH0KICAxMDAlIHsKICAgIG9wYWNpdHk6IDE7CiAgfQp9CkBrZXlmcmFtZXMgXzI2aG13czEgewogIDAlIHsKICAgIG9wYWNpdHk6IDE7CiAgfQogIDkwJSB7CiAgICBvcGFjaXR5OiAwLjI7CiAgfQogIDEwMCUgewogICAgb3BhY2l0eTogMDsKICB9Cn0KQGtleWZyYW1lcyBfMjZobXdzNCB7CiAgMCUgewogICAgaGVpZ2h0OiA3MCU7CiAgICB0cmFuc2Zvcm06IHNjYWxlKDAuNyk7CiAgICBvcGFjaXR5OiAwLjI7CiAgfQogIDEwMCUgewogICAgaGVpZ2h0OiAxMDAlOwogICAgdHJhbnNmb3JtOiBzY2FsZSgxKTsKICAgIG9wYWNpdHk6IDE7CiAgfQp9Ci5fMjZobXdzMiB7CiAgYW5pbWF0aW9uLWR1cmF0aW9uOiAzMDBtczsKICBhbmltYXRpb24tdGltaW5nLWZ1bmN0aW9uOiBsaW5lYXI7CiAgYW5pbWF0aW9uLWZpbGwtbW9kZTogZm9yd2FyZHM7CiAgYW5pbWF0aW9uLW5hbWU6IF8yNmhtd3MwOwp9Ci5fMjZobXdzMyB7CiAgYW5pbWF0aW9uLWR1cmF0aW9uOiA3NW1zOwogIGFuaW1hdGlvbi10aW1pbmctZnVuY3Rpb246IGxpbmVhcjsKICBhbmltYXRpb24tZmlsbC1tb2RlOiBmb3J3YXJkczsKICBhbmltYXRpb24tbmFtZTogXzI2aG13czE7Cn0KLl8yNmhtd3M1IHsKICAmID4gZGl2IHsKICAgIGFuaW1hdGlvbi1kdXJhdGlvbjogNzVtczsKICAgIGFuaW1hdGlvbi10aW1pbmctZnVuY3Rpb246IGxpbmVhcjsKICAgIGFuaW1hdGlvbi1maWxsLW1vZGU6IGZvcndhcmRzOwogICAgYW5pbWF0aW9uLW5hbWU6IF8yNmhtd3M0OwogIH0KfQ== */
|
|
6815
6805
|
@keyframes _26hmws0 {
|
|
6816
6806
|
0% {
|
|
6817
6807
|
opacity: 0.2;
|
|
@@ -6831,35 +6821,6 @@ input[type=number] {
|
|
|
6831
6821
|
opacity: 0;
|
|
6832
6822
|
}
|
|
6833
6823
|
}
|
|
6834
|
-
@keyframes _26hmws2 {
|
|
6835
|
-
0% {
|
|
6836
|
-
transform: scale(0.7);
|
|
6837
|
-
opacity: 0.2;
|
|
6838
|
-
height: 20%;
|
|
6839
|
-
}
|
|
6840
|
-
100% {
|
|
6841
|
-
transform: scale(1);
|
|
6842
|
-
opacity: 1;
|
|
6843
|
-
height: 100%;
|
|
6844
|
-
}
|
|
6845
|
-
}
|
|
6846
|
-
@keyframes _26hmws3 {
|
|
6847
|
-
0% {
|
|
6848
|
-
transform: scale(1);
|
|
6849
|
-
opacity: 1;
|
|
6850
|
-
height: 100%;
|
|
6851
|
-
}
|
|
6852
|
-
90% {
|
|
6853
|
-
transform: scale(0.8);
|
|
6854
|
-
opacity: 0.2;
|
|
6855
|
-
height: 50%;
|
|
6856
|
-
}
|
|
6857
|
-
100% {
|
|
6858
|
-
transform: scale(0.5);
|
|
6859
|
-
opacity: 0;
|
|
6860
|
-
height: 20%;
|
|
6861
|
-
}
|
|
6862
|
-
}
|
|
6863
6824
|
@keyframes _26hmws4 {
|
|
6864
6825
|
0% {
|
|
6865
6826
|
height: 70%;
|
|
@@ -6872,40 +6833,35 @@ input[type=number] {
|
|
|
6872
6833
|
opacity: 1;
|
|
6873
6834
|
}
|
|
6874
6835
|
}
|
|
6875
|
-
[data-rk] .
|
|
6836
|
+
[data-rk] ._26hmws2 {
|
|
6876
6837
|
animation-duration: 300ms;
|
|
6877
6838
|
animation-timing-function: linear;
|
|
6878
6839
|
animation-fill-mode: forwards;
|
|
6879
6840
|
animation-name: _26hmws0;
|
|
6880
6841
|
}
|
|
6881
|
-
[data-rk] .
|
|
6882
|
-
animation-duration:
|
|
6842
|
+
[data-rk] ._26hmws3 {
|
|
6843
|
+
animation-duration: 75ms;
|
|
6883
6844
|
animation-timing-function: linear;
|
|
6884
6845
|
animation-fill-mode: forwards;
|
|
6885
6846
|
animation-name: _26hmws1;
|
|
6886
6847
|
}
|
|
6887
|
-
[data-rk] .
|
|
6888
|
-
animation-duration: 150ms;
|
|
6889
|
-
animation-timing-function: linear;
|
|
6890
|
-
animation-fill-mode: forwards;
|
|
6891
|
-
animation-name: _26hmws2;
|
|
6892
|
-
}
|
|
6893
|
-
[data-rk] ._26hmws8 {
|
|
6894
|
-
display: flex;
|
|
6895
|
-
flex-direction: column;
|
|
6896
|
-
justify-content: center;
|
|
6848
|
+
[data-rk] ._26hmws5 {
|
|
6897
6849
|
[data-rk] & > div {
|
|
6898
|
-
animation-duration:
|
|
6850
|
+
animation-duration: 75ms;
|
|
6899
6851
|
animation-timing-function: linear;
|
|
6900
6852
|
animation-fill-mode: forwards;
|
|
6901
6853
|
animation-name: _26hmws4;
|
|
6902
6854
|
}
|
|
6903
6855
|
}
|
|
6904
|
-
|
|
6905
|
-
|
|
6906
|
-
|
|
6907
|
-
|
|
6908
|
-
|
|
6856
|
+
|
|
6857
|
+
/* vanilla-extract-css-ns:src/components/FunAssetAvatar/FunAssetAvatar.css.ts.vanilla.css?source=LnV3cmRjMjAgewogIHBvc2l0aW9uOiByZWxhdGl2ZTsKfQoudXdyZGMyMiB7CiAgcG9zaXRpb246IGFic29sdXRlOwogIGJvdHRvbTogMDsKICByaWdodDogMDsKfQ== */
|
|
6858
|
+
[data-rk] .uwrdc20 {
|
|
6859
|
+
position: relative;
|
|
6860
|
+
}
|
|
6861
|
+
[data-rk] .uwrdc22 {
|
|
6862
|
+
position: absolute;
|
|
6863
|
+
bottom: 0;
|
|
6864
|
+
right: 0;
|
|
6909
6865
|
}
|
|
6910
6866
|
|
|
6911
6867
|
/* vanilla-extract-css-ns:src/modals/ProfileDetails/FunProfileViews/Home/HomeCheckoutDisplayRow.css.ts.vanilla.css?source=LnVrY3Q0dDEgewogIG91dGxpbmU6IG5vbmU7Cn0KLnVrY3Q0dDE6Zm9jdXMgewogIG91dGxpbmU6IG5vbmU7Cn0= */
|