@funkit/connect 5.5.14 → 5.5.16
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 +38 -0
- package/dist/components/FunPayments/FunPaymentMethods.d.ts +8 -8
- package/dist/components/Icons/EtherFiIcon.d.ts +4 -0
- package/dist/components/ReceiveAmount/ReceiveAmount.d.ts +10 -0
- package/dist/consts/customers.d.ts +1 -0
- package/dist/domains/asset.d.ts +2 -1
- package/dist/domains/fees.d.ts +1 -0
- package/dist/domains/paymentMethods.d.ts +1 -0
- package/dist/domains/quote.d.ts +1 -1
- package/dist/domains/relay.d.ts +5 -0
- package/dist/{modals/CheckoutModal/InputAmount → hooks}/useAssetPrice.d.ts +10 -6
- package/dist/hooks/usePaymentMethodIcon.d.ts +1 -6
- package/dist/index.css +4 -1
- package/dist/index.js +1361 -1176
- package/dist/modals/CheckoutModal/ConfirmationStep/CheckoutPrimaryInfo.d.ts +2 -3
- package/dist/modals/CheckoutModal/LoadingAccount.d.ts +4 -4
- package/dist/modals/CheckoutModal/SourceChange/DefiPurchaseSection.d.ts +7 -0
- package/dist/modals/CheckoutModal/stepTransition.d.ts +4 -1
- package/dist/providers/FunkitCheckoutContext.d.ts +2 -0
- package/dist/providers/FunkitHistoryContext.d.ts +1 -1
- package/dist/themes/darkTheme.js +1 -1
- package/dist/themes/lightTheme.js +1 -1
- package/dist/utils/assets.d.ts +0 -1
- package/dist/utils/flags/config.d.ts +5 -16
- package/dist/utils/moonpay.d.ts +2 -5
- package/dist/wallets/walletConnectors/bifrostWallet/bifrostWallet.js +2 -2
- package/dist/wallets/walletConnectors/bitgetWallet/bitgetWallet.js +2 -2
- package/dist/wallets/walletConnectors/bybitWallet/bybitWallet.js +2 -2
- package/dist/wallets/walletConnectors/clvWallet/clvWallet.js +2 -2
- package/dist/wallets/walletConnectors/coin98Wallet/coin98Wallet.js +2 -2
- package/dist/wallets/walletConnectors/coreWallet/coreWallet.js +2 -2
- package/dist/wallets/walletConnectors/foxWallet/foxWallet.js +2 -2
- package/dist/wallets/walletConnectors/frontierWallet/frontierWallet.js +2 -2
- package/dist/wallets/walletConnectors/gateWallet/gateWallet.js +2 -2
- package/dist/wallets/walletConnectors/index.js +47 -47
- package/dist/wallets/walletConnectors/metaMaskWallet/metaMaskWallet.js +2 -2
- package/dist/wallets/walletConnectors/okxWallet/okxWallet.js +2 -2
- package/dist/wallets/walletConnectors/rainbowWallet/rainbowWallet.js +2 -2
- package/dist/wallets/walletConnectors/roninWallet/roninWallet.js +2 -2
- package/dist/wallets/walletConnectors/safepalWallet/safepalWallet.js +2 -2
- package/dist/wallets/walletConnectors/subWallet/subWallet.js +2 -2
- package/dist/wallets/walletConnectors/tokenPocketWallet/tokenPocketWallet.js +2 -2
- package/dist/wallets/walletConnectors/trustWallet/trustWallet.js +2 -2
- package/dist/wallets/walletConnectors/zerionWallet/zerionWallet.js +2 -2
- package/package.json +6 -6
- package/dist/{chunk-ICCAQZHZ.js → chunk-DMCSGHKQ.js} +1 -1
- package/dist/{chunk-RN4I4Y57.js → chunk-UQVBCTN3.js} +1 -1
|
@@ -1,11 +1,10 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
import type { FunkitCheckoutQuoteResult } from '~/domains/quote';
|
|
3
2
|
import type { FunkitCheckoutConfig } from '~/providers/FunkitCheckoutContext';
|
|
4
3
|
interface CheckoutPrimaryInfoProps {
|
|
5
4
|
showTokenAmount?: boolean;
|
|
6
5
|
config: FunkitCheckoutConfig;
|
|
7
|
-
|
|
6
|
+
usdAmount?: number;
|
|
8
7
|
isLoading?: boolean;
|
|
9
8
|
}
|
|
10
|
-
export declare function CheckoutPrimaryInfo({ showTokenAmount,
|
|
9
|
+
export declare function CheckoutPrimaryInfo({ showTokenAmount, usdAmount, config, isLoading, }: CheckoutPrimaryInfoProps): React.JSX.Element;
|
|
11
10
|
export {};
|
|
@@ -6,17 +6,17 @@ type WithNewUser<T> = T & {
|
|
|
6
6
|
newUser?: boolean;
|
|
7
7
|
};
|
|
8
8
|
export type LoadingAccountNext = WithNewUser<{
|
|
9
|
-
|
|
9
|
+
chosenPaymentMethod: PaymentMethod.ACCOUNT_BALANCE;
|
|
10
10
|
paymentMethodInfo: PaymentMethodAccountInfo;
|
|
11
11
|
} | {
|
|
12
|
-
|
|
12
|
+
chosenPaymentMethod: PaymentMethod.BROKERAGE;
|
|
13
13
|
paymentMethodInfo: PaymentMethodBrokerageInfo;
|
|
14
14
|
} | {
|
|
15
|
-
|
|
15
|
+
chosenPaymentMethod: PaymentMethod.VIRTUAL_BANK;
|
|
16
16
|
paymentMethodInfo: PaymentMethodVirtualBankInfo;
|
|
17
17
|
} | {
|
|
18
18
|
/** Can be set to null to skip auto payment method selection */
|
|
19
|
-
|
|
19
|
+
chosenPaymentMethod: null | PaymentMethod.TOKEN_TRANSFER;
|
|
20
20
|
paymentMethodInfo?: ConnectablePaymentMethodInfo;
|
|
21
21
|
}>;
|
|
22
22
|
export declare const LoadingAccountInfo: ModalStepInfo<FunCheckoutStep.LOADING_ACCOUNT>;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import type { FunkitCheckoutConfig } from '~/providers/FunkitCheckoutContext';
|
|
3
|
+
interface DefiPurchaseSectionProps {
|
|
4
|
+
config: FunkitCheckoutConfig;
|
|
5
|
+
}
|
|
6
|
+
export declare const DefiPurchaseSection: ({ config }: DefiPurchaseSectionProps) => React.JSX.Element;
|
|
7
|
+
export {};
|
|
@@ -28,6 +28,8 @@ export interface CheckoutModalCommonState {
|
|
|
28
28
|
isSoftHidden: boolean;
|
|
29
29
|
/** Whether checkout should not be allowed to continue due to security reasons*/
|
|
30
30
|
isBlocked?: boolean;
|
|
31
|
+
/** Whether checkout is started in a defi mode which has various flow implications (most importantly targetAssetAmount must be set and is not editable throughout the checkout)*/
|
|
32
|
+
isDefiMode: boolean;
|
|
31
33
|
targetChainId: string;
|
|
32
34
|
}
|
|
33
35
|
export interface ModalStepComponentProps<S extends FunCheckoutStep = FunCheckoutStep> {
|
|
@@ -65,6 +67,7 @@ export declare enum FunCheckoutStep {
|
|
|
65
67
|
interface ModalStepInput<S extends FunCheckoutStep> {
|
|
66
68
|
state: CheckoutModalState<S>;
|
|
67
69
|
apiKey: string;
|
|
70
|
+
isDefiMode?: boolean;
|
|
68
71
|
}
|
|
69
72
|
export type ModalStepInfo<S extends FunCheckoutStep> = {
|
|
70
73
|
Component: ComponentType<ModalStepComponentProps<S>>;
|
|
@@ -75,7 +78,7 @@ export type ModalStepInfo<S extends FunCheckoutStep> = {
|
|
|
75
78
|
onNext(state: CheckoutModalState<S>, payload: NextPayload<S>): CheckoutModalState;
|
|
76
79
|
showFullHeight?: boolean;
|
|
77
80
|
/** Defaults to checkoutItem.initSettings.config.modalTitle (returning undefined uses default) */
|
|
78
|
-
title?(textCustomizations: FunkitTextCustomizationsConfig): string | undefined;
|
|
81
|
+
title?(textCustomizations: FunkitTextCustomizationsConfig, isDefiMode: boolean): string | undefined;
|
|
79
82
|
/** If title is not defined in config nor with the title() function, this is used instead. Defaults to 'Checkout' */
|
|
80
83
|
fallbackTitle?: string;
|
|
81
84
|
};
|
|
@@ -39,6 +39,8 @@ export interface FunkitCheckoutConfig extends Omit<ApiFunkitCheckoutConfig, 'gen
|
|
|
39
39
|
checkoutItemAmount?: number;
|
|
40
40
|
/** amount of source token. it is not baseUnit **/
|
|
41
41
|
withdrawalSourceTokenBalance?: () => number;
|
|
42
|
+
/** Whether checkout should be started in Defi mode, which has various flow implications (most importantly targetAssetAmount must be set and is not editable throughout the checkout) */
|
|
43
|
+
isDefiMode?: boolean;
|
|
42
44
|
/** *****************************
|
|
43
45
|
* Miscellaneous configurations *
|
|
44
46
|
********************************/
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { type CheckoutHistoryItem, type DirectExecution } from '@funkit/api-base';
|
|
2
2
|
import React, { type ReactNode } from 'react';
|
|
3
|
-
import type
|
|
3
|
+
import { type Address, type Hex } from 'viem';
|
|
4
4
|
import { type MergedCheckoutHistoryItem } from '../utils/checkout';
|
|
5
5
|
import { type PurifiedCheckoutHistoryItem } from '../utils/purifyCheckoutHistoryItem';
|
|
6
6
|
export type { HistoricalCheckoutItem, ServerCheckoutConfig, } from '~/domains/clientMetadata';
|
package/dist/themes/darkTheme.js
CHANGED
package/dist/utils/assets.d.ts
CHANGED
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import type { FunkitCheckoutConfig } from '../providers/FunkitCheckoutContext';
|
|
2
2
|
export type { AssetHoldingsItem, AssetHoldingsMap, KnownAssetHoldingsItem, } from '~/domains/wallet';
|
|
3
|
-
export declare const ASSETS_LOW_VALUE_THRESHOLD = 0.1;
|
|
4
3
|
export declare const getNormalizedTokenBalance: (tokenBalance: bigint | number | string, decimals: number) => number;
|
|
5
4
|
/**
|
|
6
5
|
*
|
|
@@ -230,22 +230,7 @@ export declare const flagConfig: {
|
|
|
230
230
|
};
|
|
231
231
|
enable_brokerage: {
|
|
232
232
|
type: "boolean";
|
|
233
|
-
default_value:
|
|
234
|
-
overrides: ({
|
|
235
|
-
if_any: {
|
|
236
|
-
key: "userId";
|
|
237
|
-
type: "isAnyOf";
|
|
238
|
-
values: string[];
|
|
239
|
-
}[];
|
|
240
|
-
value: true;
|
|
241
|
-
} | {
|
|
242
|
-
if_any: {
|
|
243
|
-
key: "apiKey";
|
|
244
|
-
type: "isAnyOf";
|
|
245
|
-
values: string[];
|
|
246
|
-
}[];
|
|
247
|
-
value: false;
|
|
248
|
-
})[];
|
|
233
|
+
default_value: false;
|
|
249
234
|
};
|
|
250
235
|
enable_meld_payment: {
|
|
251
236
|
type: "boolean";
|
|
@@ -306,4 +291,8 @@ export declare const flagConfig: {
|
|
|
306
291
|
type: "string";
|
|
307
292
|
default_value: string;
|
|
308
293
|
};
|
|
294
|
+
withdrawal_exclude_chains: {
|
|
295
|
+
type: "string";
|
|
296
|
+
default_value: string;
|
|
297
|
+
};
|
|
309
298
|
};
|
package/dist/utils/moonpay.d.ts
CHANGED
|
@@ -1,12 +1,9 @@
|
|
|
1
1
|
export declare const MINIMUM_MOONPAY_DEPOSIT_AMOUNT_USD = 35;
|
|
2
2
|
export declare const MAXIMUM_MOONPAY_DEPOSIT_AMOUNT_USD = 10000;
|
|
3
3
|
export declare const generateMoonpayCurrencyCode: (tokenSymbol: string, chainId: string) => string;
|
|
4
|
-
export declare function checkAmountForMoonpay(amountUsd: number): {
|
|
4
|
+
export declare function checkAmountForMoonpay(amountUsd: number, isDefiMode?: boolean): {
|
|
5
5
|
readonly isInvalid: true;
|
|
6
|
-
readonly message:
|
|
7
|
-
} | {
|
|
8
|
-
readonly isInvalid: true;
|
|
9
|
-
readonly message: "$10000 maximum exceeded for the selected payment method.";
|
|
6
|
+
readonly message: string;
|
|
10
7
|
} | {
|
|
11
8
|
readonly isInvalid: false;
|
|
12
9
|
readonly message?: undefined;
|
|
@@ -7,91 +7,91 @@ import {
|
|
|
7
7
|
} from "./chunk-JROWU5BP.js";
|
|
8
8
|
import {
|
|
9
9
|
zerionWallet
|
|
10
|
-
} from "./chunk-
|
|
10
|
+
} from "./chunk-ETTNDQQG.js";
|
|
11
|
+
import {
|
|
12
|
+
subWallet
|
|
13
|
+
} from "./chunk-4UM4GTKZ.js";
|
|
11
14
|
import {
|
|
12
15
|
tahoWallet
|
|
13
16
|
} from "./chunk-6P2EMPZI.js";
|
|
14
|
-
import {
|
|
15
|
-
safepalWallet
|
|
16
|
-
} from "./chunk-MSFKSQBY.js";
|
|
17
17
|
import {
|
|
18
18
|
talismanWallet
|
|
19
19
|
} from "./chunk-ABFSXBE6.js";
|
|
20
|
+
import {
|
|
21
|
+
tokenPocketWallet
|
|
22
|
+
} from "./chunk-FRGSRLTS.js";
|
|
20
23
|
import {
|
|
21
24
|
tokenaryWallet
|
|
22
25
|
} from "./chunk-SLOIIJGP.js";
|
|
23
26
|
import {
|
|
24
|
-
|
|
25
|
-
} from "./chunk-
|
|
27
|
+
trustWallet
|
|
28
|
+
} from "./chunk-IPOC2VJX.js";
|
|
26
29
|
import {
|
|
27
30
|
uniswapWallet
|
|
28
31
|
} from "./chunk-LH7BMNFZ.js";
|
|
29
32
|
import {
|
|
30
33
|
walletConnectWallet
|
|
31
34
|
} from "./chunk-NP5QGWNL.js";
|
|
32
|
-
import {
|
|
33
|
-
trustWallet
|
|
34
|
-
} from "./chunk-ISIBREBO.js";
|
|
35
35
|
import {
|
|
36
36
|
phantomWallet
|
|
37
37
|
} from "./chunk-ZSVTX6EK.js";
|
|
38
38
|
import {
|
|
39
|
-
|
|
40
|
-
} from "./chunk-
|
|
39
|
+
rabbyWallet
|
|
40
|
+
} from "./chunk-BVX4XGNP.js";
|
|
41
41
|
import {
|
|
42
42
|
rainbowWallet
|
|
43
|
-
} from "./chunk-
|
|
43
|
+
} from "./chunk-MOOBCMMB.js";
|
|
44
44
|
import {
|
|
45
45
|
ramperWallet
|
|
46
46
|
} from "./chunk-PIUNLQJG.js";
|
|
47
|
+
import {
|
|
48
|
+
roninWallet
|
|
49
|
+
} from "./chunk-25VW5TZP.js";
|
|
47
50
|
import {
|
|
48
51
|
safeWallet
|
|
49
52
|
} from "./chunk-BQQQL6UD.js";
|
|
50
|
-
import {
|
|
51
|
-
roninWallet
|
|
52
|
-
} from "./chunk-63YLN6R5.js";
|
|
53
53
|
import {
|
|
54
54
|
safeheronWallet
|
|
55
55
|
} from "./chunk-R6RWZRFF.js";
|
|
56
56
|
import {
|
|
57
|
-
|
|
58
|
-
} from "./chunk-
|
|
59
|
-
import {
|
|
60
|
-
metaMaskWallet
|
|
61
|
-
} from "./chunk-G73C6P5P.js";
|
|
57
|
+
safepalWallet
|
|
58
|
+
} from "./chunk-6LPM6LUQ.js";
|
|
62
59
|
import {
|
|
63
60
|
ledgerWallet
|
|
64
61
|
} from "./chunk-BRBKM4PW.js";
|
|
62
|
+
import {
|
|
63
|
+
metaMaskWallet
|
|
64
|
+
} from "./chunk-N2NIIUW6.js";
|
|
65
65
|
import {
|
|
66
66
|
mewWallet
|
|
67
67
|
} from "./chunk-V57WLZEE.js";
|
|
68
|
+
import {
|
|
69
|
+
okxWallet
|
|
70
|
+
} from "./chunk-3U3BMEH5.js";
|
|
68
71
|
import {
|
|
69
72
|
oktoWallet
|
|
70
73
|
} from "./chunk-ADIXAKUL.js";
|
|
71
74
|
import {
|
|
72
|
-
|
|
73
|
-
} from "./chunk-
|
|
75
|
+
oneInchWallet
|
|
76
|
+
} from "./chunk-OESTDX6I.js";
|
|
74
77
|
import {
|
|
75
78
|
omniWallet
|
|
76
79
|
} from "./chunk-7CUY5G6R.js";
|
|
77
80
|
import {
|
|
78
|
-
|
|
79
|
-
} from "./chunk-
|
|
80
|
-
import {
|
|
81
|
-
rabbyWallet
|
|
82
|
-
} from "./chunk-BVX4XGNP.js";
|
|
81
|
+
oneKeyWallet
|
|
82
|
+
} from "./chunk-4AD7VI2P.js";
|
|
83
83
|
import {
|
|
84
84
|
foxWallet
|
|
85
|
-
} from "./chunk-
|
|
85
|
+
} from "./chunk-XYBEMO3C.js";
|
|
86
86
|
import {
|
|
87
87
|
frameWallet
|
|
88
88
|
} from "./chunk-ZMYVTWDF.js";
|
|
89
89
|
import {
|
|
90
90
|
frontierWallet
|
|
91
|
-
} from "./chunk-
|
|
91
|
+
} from "./chunk-HKV7EMYZ.js";
|
|
92
92
|
import {
|
|
93
93
|
gateWallet
|
|
94
|
-
} from "./chunk-
|
|
94
|
+
} from "./chunk-3NC26XLM.js";
|
|
95
95
|
import {
|
|
96
96
|
imTokenWallet
|
|
97
97
|
} from "./chunk-COZ7MIQS.js";
|
|
@@ -102,38 +102,38 @@ import {
|
|
|
102
102
|
kresusWallet
|
|
103
103
|
} from "./chunk-MJXPRJZT.js";
|
|
104
104
|
import {
|
|
105
|
-
|
|
106
|
-
} from "./chunk-
|
|
107
|
-
import {
|
|
108
|
-
coin98Wallet
|
|
109
|
-
} from "./chunk-DTRYS3MO.js";
|
|
105
|
+
braveWallet
|
|
106
|
+
} from "./chunk-PB254NQ4.js";
|
|
110
107
|
import {
|
|
111
108
|
clvWallet
|
|
112
|
-
} from "./chunk-
|
|
109
|
+
} from "./chunk-LEXSM5KI.js";
|
|
113
110
|
import {
|
|
114
111
|
coinbaseWallet
|
|
115
112
|
} from "./chunk-H4IRCEZN.js";
|
|
116
113
|
import {
|
|
117
|
-
|
|
118
|
-
} from "./chunk-
|
|
114
|
+
coin98Wallet
|
|
115
|
+
} from "./chunk-KFFJPS5R.js";
|
|
119
116
|
import {
|
|
120
|
-
|
|
121
|
-
} from "./chunk-
|
|
117
|
+
coreWallet
|
|
118
|
+
} from "./chunk-JXP2QPW7.js";
|
|
122
119
|
import {
|
|
123
120
|
dawnWallet
|
|
124
121
|
} from "./chunk-LN7OD5EC.js";
|
|
122
|
+
import {
|
|
123
|
+
desigWallet
|
|
124
|
+
} from "./chunk-CTU6JCOK.js";
|
|
125
125
|
import {
|
|
126
126
|
enkryptWallet
|
|
127
127
|
} from "./chunk-SJTXS4ZW.js";
|
|
128
128
|
import {
|
|
129
129
|
argentWallet
|
|
130
130
|
} from "./chunk-WSQ2YJO2.js";
|
|
131
|
-
import {
|
|
132
|
-
bitgetWallet
|
|
133
|
-
} from "./chunk-A5APNTGL.js";
|
|
134
131
|
import {
|
|
135
132
|
bifrostWallet
|
|
136
|
-
} from "./chunk-
|
|
133
|
+
} from "./chunk-545L7Y4M.js";
|
|
134
|
+
import {
|
|
135
|
+
bitgetWallet
|
|
136
|
+
} from "./chunk-7GSNBOD3.js";
|
|
137
137
|
import {
|
|
138
138
|
bitskiWallet
|
|
139
139
|
} from "./chunk-P74YPRF6.js";
|
|
@@ -143,11 +143,11 @@ import {
|
|
|
143
143
|
import {
|
|
144
144
|
bloomWallet
|
|
145
145
|
} from "./chunk-S27IADFU.js";
|
|
146
|
-
import "./chunk-23WIEY36.js";
|
|
147
146
|
import {
|
|
148
|
-
|
|
149
|
-
} from "./chunk-
|
|
147
|
+
bybitWallet
|
|
148
|
+
} from "./chunk-W5O4YSZN.js";
|
|
150
149
|
import "./chunk-WRA2DVJ7.js";
|
|
150
|
+
import "./chunk-23WIEY36.js";
|
|
151
151
|
export {
|
|
152
152
|
argentWallet,
|
|
153
153
|
bifrostWallet,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@funkit/connect",
|
|
3
|
-
"version": "5.5.
|
|
3
|
+
"version": "5.5.16",
|
|
4
4
|
"description": "Funkit Connect SDK elevates DeFi apps via web2 sign-ins and one-click checkouts.",
|
|
5
5
|
"files": [
|
|
6
6
|
"dist",
|
|
@@ -88,12 +88,12 @@
|
|
|
88
88
|
"ua-parser-js": "^1.0.37",
|
|
89
89
|
"use-debounce": "^10.0.5",
|
|
90
90
|
"uuid": "^9.0.1",
|
|
91
|
-
"@funkit/api-base": "1.9.6",
|
|
92
|
-
"@funkit/core": "2.3.28",
|
|
93
91
|
"@funkit/chains": "0.3.3",
|
|
94
|
-
"@funkit/
|
|
95
|
-
"@funkit/
|
|
96
|
-
"@funkit/
|
|
92
|
+
"@funkit/api-base": "1.9.8",
|
|
93
|
+
"@funkit/core": "2.3.30",
|
|
94
|
+
"@funkit/utils": "1.1.6",
|
|
95
|
+
"@funkit/fun-relay": "0.1.10",
|
|
96
|
+
"@funkit/wagmi-tools": "3.0.52"
|
|
97
97
|
},
|
|
98
98
|
"repository": {
|
|
99
99
|
"type": "git",
|
|
@@ -81,8 +81,8 @@ var darkTheme = ({
|
|
|
81
81
|
buttonTextTertiary: "#FFF",
|
|
82
82
|
buttonTextDisabledTertiary: "rgba(255, 255, 255, 0.65)",
|
|
83
83
|
buttonBackground: "#FFF",
|
|
84
|
-
buttonBackgroundPressed: "#FFF",
|
|
85
84
|
buttonBackgroundHover: "#f2f2f2",
|
|
85
|
+
buttonBackgroundPressed: "#FFF",
|
|
86
86
|
buttonBackgroundDisabled: "rgba(255, 255, 255, 0.65)",
|
|
87
87
|
buttonTextSecondaryDisabled: "rgba(255, 255, 255, 0.65)",
|
|
88
88
|
buttonTextSecondary: "#FFFFFF",
|
|
@@ -81,8 +81,8 @@ var lightTheme = ({
|
|
|
81
81
|
buttonTextTertiary: "#000",
|
|
82
82
|
buttonTextDisabledTertiary: "rgba(0, 0, 0, 0.5)",
|
|
83
83
|
buttonBackground: "#000",
|
|
84
|
-
buttonBackgroundPressed: "#000",
|
|
85
84
|
buttonBackgroundHover: "#333333",
|
|
85
|
+
buttonBackgroundPressed: "#000",
|
|
86
86
|
buttonBackgroundDisabled: "rgba(0, 0, 0, 0.5)",
|
|
87
87
|
buttonTextSecondaryDisabled: "rgba(0, 0, 0, 0.5)",
|
|
88
88
|
buttonTextSecondary: "#000000",
|