@matchain/matchid-sdk-react 0.1.53-alpha.9 → 0.1.55-alpha.0
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/assets/icon/index.d.mts +5 -0
- package/dist/assets/icon/index.d.ts +5 -0
- package/dist/{chunk-X5HGL3ZX.mjs → chunk-36M5ROJI.mjs} +7238 -241
- package/dist/chunk-36M5ROJI.mjs.map +1 -0
- package/dist/chunk-N7NX7Q7M.mjs +97 -0
- package/dist/chunk-N7NX7Q7M.mjs.map +1 -0
- package/dist/components/index.d.mts +6 -0
- package/dist/components/index.d.ts +6 -0
- package/dist/components/index.js +324 -658
- package/dist/components/index.js.map +1 -1
- package/dist/components/index.mjs +9 -15
- package/dist/config/chains/index.d.mts +2 -0
- package/dist/config/chains/index.d.ts +2 -0
- package/dist/hooks/api/index.d.mts +6 -0
- package/dist/hooks/api/index.d.ts +6 -0
- package/dist/hooks/api/index.js +443 -598
- package/dist/hooks/api/index.js.map +1 -1
- package/dist/hooks/api/index.mjs +6 -7
- package/dist/hooks/index.d.mts +11 -0
- package/dist/hooks/index.d.ts +11 -0
- package/dist/hooks/index.js +350 -357
- package/dist/hooks/index.js.map +1 -1
- package/dist/hooks/index.mjs +3 -5
- package/dist/index-6-oVBXRP.d.mts +66 -0
- package/dist/index-CBQXIlWu.d.mts +38 -0
- package/dist/index-CMH6Jesl.d.ts +66 -0
- package/dist/index-CNH7a3bx.d.ts +111 -0
- package/dist/index-CPPDmmz8.d.ts +3327 -0
- package/dist/index-CqKohtvj.d.mts +3327 -0
- package/dist/index-D0Psl8Ue.d.mts +203 -0
- package/dist/index-DXRGMAbv.d.mts +83 -0
- package/dist/index-DXRGMAbv.d.ts +83 -0
- package/dist/index-DbQn4z1l.d.ts +203 -0
- package/dist/index-Es7yJi7T.d.ts +79 -0
- package/dist/index-G15A08DI.d.mts +132 -0
- package/dist/index-MsSYZS38.d.mts +79 -0
- package/dist/index-Y5WRoqzn.d.ts +132 -0
- package/dist/index-a_Qt7NXk.d.mts +111 -0
- package/dist/index-agAVLGF5.d.ts +38 -0
- package/dist/index.css +44 -57
- package/dist/index.d.mts +787 -0
- package/dist/index.d.ts +787 -0
- package/dist/index.js +3881 -4043
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +12 -10
- package/dist/request-B0CyrGFT.d.mts +15 -0
- package/dist/request-B0CyrGFT.d.ts +15 -0
- package/dist/types/index.d.mts +3 -0
- package/dist/types/index.d.ts +3 -0
- package/dist/types-CXzZS0eM.d.mts +424 -0
- package/dist/types-CXzZS0eM.d.ts +424 -0
- package/dist/ui/index.d.mts +7 -0
- package/dist/ui/index.d.ts +7 -0
- package/dist/ui/index.js +920 -160
- package/dist/ui/index.js.map +1 -1
- package/dist/ui/index.mjs +6 -1
- package/dist/utils/index.d.mts +28 -0
- package/dist/utils/index.d.ts +28 -0
- package/example/package.json +1 -0
- package/example/src/App.tsx +23 -27
- package/example/src/pages/Wallet/index.tsx +1 -1
- package/package.json +1 -1
- package/dist/chunk-NCVBLRAJ.mjs +0 -7275
- package/dist/chunk-NCVBLRAJ.mjs.map +0 -1
- package/dist/chunk-X5HGL3ZX.mjs.map +0 -1
- package/example/src/pages/Contact/index.tsx +0 -90
|
@@ -0,0 +1,132 @@
|
|
|
1
|
+
import * as _tanstack_react_query from '@tanstack/react-query';
|
|
2
|
+
import { UseQueryOptions } from '@tanstack/react-query/src/types';
|
|
3
|
+
import { Q as PohZkpassParams, m as UserTransactionType, Z as UserTransactionNextPageParams, $ as WalletAssetType, J as MetaPageType, s as BindItemType, r as BindInfoType, N as PohItemType, U as UserChainType, o as UserAssetToken, n as UserImportTokenType, a0 as WalletChainType, a1 as WalletNFTType } from './types-CXzZS0eM.mjs';
|
|
4
|
+
import { M as MyResponseType, i as isSuccess } from './request-B0CyrGFT.mjs';
|
|
5
|
+
|
|
6
|
+
declare const bindCexApi: (data: {
|
|
7
|
+
cex: string;
|
|
8
|
+
api_key: string;
|
|
9
|
+
api_secret: string;
|
|
10
|
+
api_passphrase?: string;
|
|
11
|
+
}) => Promise<MyResponseType<any>>;
|
|
12
|
+
declare const unBindApi: ({ type }: {
|
|
13
|
+
type: string;
|
|
14
|
+
}) => Promise<MyResponseType<any>>;
|
|
15
|
+
declare const unBindWalletApi: ({ address }: {
|
|
16
|
+
address: string;
|
|
17
|
+
}) => Promise<MyResponseType<any>>;
|
|
18
|
+
declare const verifyPohApi: ({ taskId, schemaId, publicFields, allocatorAddress, publicFieldsHash, allocatorSignature, uHash, validatorAddress, validatorSignature }: PohZkpassParams) => Promise<MyResponseType<any>>;
|
|
19
|
+
declare const chooseIdentityApi: ({ identity }: {
|
|
20
|
+
identity: string;
|
|
21
|
+
}) => Promise<MyResponseType<any>>;
|
|
22
|
+
declare const mintPassportNftApi: () => Promise<MyResponseType<any>>;
|
|
23
|
+
declare const userImportTokenApi: (data: {
|
|
24
|
+
chain_id: string;
|
|
25
|
+
symbol: string;
|
|
26
|
+
address: string;
|
|
27
|
+
decimals: string;
|
|
28
|
+
}) => Promise<MyResponseType<any>>;
|
|
29
|
+
declare const getUserWalletTransactionsApi: (data: {
|
|
30
|
+
address?: string;
|
|
31
|
+
chain_id: string;
|
|
32
|
+
page?: string;
|
|
33
|
+
block_number?: number;
|
|
34
|
+
index?: number;
|
|
35
|
+
items_count?: number;
|
|
36
|
+
}) => Promise<MyResponseType<{
|
|
37
|
+
transactions: UserTransactionType[];
|
|
38
|
+
next_page_params: UserTransactionNextPageParams;
|
|
39
|
+
}>>;
|
|
40
|
+
declare const getWalletAssetListApi: (data: {
|
|
41
|
+
chain_id: string;
|
|
42
|
+
address: string;
|
|
43
|
+
}) => Promise<MyResponseType<{
|
|
44
|
+
asset_list: WalletAssetType[];
|
|
45
|
+
asset_total_balance: string;
|
|
46
|
+
}>>;
|
|
47
|
+
declare const getWalletListApi: (data: {
|
|
48
|
+
page: number;
|
|
49
|
+
page_size: number;
|
|
50
|
+
}) => Promise<MyResponseType<MetaPageType<{
|
|
51
|
+
wallet_list: {
|
|
52
|
+
address: string;
|
|
53
|
+
chain_network: string;
|
|
54
|
+
}[];
|
|
55
|
+
mpc_address: string;
|
|
56
|
+
}>>>;
|
|
57
|
+
|
|
58
|
+
declare function useBindList(options?: Partial<Omit<UseQueryOptions<BindItemType[]>, 'queryKey' | 'queryFn'>>): _tanstack_react_query.UseQueryResult<BindItemType[], Error>;
|
|
59
|
+
declare function useBindInfo(options?: Partial<Omit<UseQueryOptions<BindInfoType>, 'queryKey' | 'queryFn'>>): _tanstack_react_query.UseQueryResult<BindInfoType, Error>;
|
|
60
|
+
|
|
61
|
+
declare const bind_bindCexApi: typeof bindCexApi;
|
|
62
|
+
declare const bind_unBindApi: typeof unBindApi;
|
|
63
|
+
declare const bind_unBindWalletApi: typeof unBindWalletApi;
|
|
64
|
+
declare const bind_useBindInfo: typeof useBindInfo;
|
|
65
|
+
declare const bind_useBindList: typeof useBindList;
|
|
66
|
+
declare namespace bind {
|
|
67
|
+
export { bind_bindCexApi as bindCexApi, bind_unBindApi as unBindApi, bind_unBindWalletApi as unBindWalletApi, bind_useBindInfo as useBindInfo, bind_useBindList as useBindList };
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
declare function usePohList(options?: Partial<Omit<UseQueryOptions<PohItemType[]>, 'queryKey' | 'queryFn'>>): _tanstack_react_query.UseQueryResult<PohItemType[], Error>;
|
|
71
|
+
|
|
72
|
+
declare const poh_usePohList: typeof usePohList;
|
|
73
|
+
declare const poh_verifyPohApi: typeof verifyPohApi;
|
|
74
|
+
declare namespace poh {
|
|
75
|
+
export { poh_usePohList as usePohList, poh_verifyPohApi as verifyPohApi };
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
declare const user_chooseIdentityApi: typeof chooseIdentityApi;
|
|
79
|
+
declare const user_mintPassportNftApi: typeof mintPassportNftApi;
|
|
80
|
+
declare namespace user {
|
|
81
|
+
export { user_chooseIdentityApi as chooseIdentityApi, user_mintPassportNftApi as mintPassportNftApi };
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
declare function useChainListQuery(options?: Partial<Omit<UseQueryOptions<UserChainType[]>, 'queryKey' | 'queryFn'>>): _tanstack_react_query.UseQueryResult<UserChainType[], Error>;
|
|
85
|
+
declare function useAssetListQuery({ chainId, ...options }: {
|
|
86
|
+
chainId: number;
|
|
87
|
+
} & Partial<Omit<UseQueryOptions<UserAssetToken[]>, 'queryKey' | 'queryFn'>>): _tanstack_react_query.UseQueryResult<UserAssetToken[], Error>;
|
|
88
|
+
declare const USER_IMPORT_TOKEN_LIST_KEY = "match-user-import-token-list";
|
|
89
|
+
declare function useImportTokenListQuery({ chainId, ...options }: {
|
|
90
|
+
chainId: number;
|
|
91
|
+
} & Partial<Omit<UseQueryOptions<UserImportTokenType[]>, 'queryKey' | 'queryFn'>>): _tanstack_react_query.UseQueryResult<UserImportTokenType[], Error>;
|
|
92
|
+
declare function useWalletChainListQuery(options?: Partial<Omit<UseQueryOptions<WalletChainType[]>, 'queryKey' | 'queryFn'>>): _tanstack_react_query.UseQueryResult<WalletChainType[], Error>;
|
|
93
|
+
declare function useWalletNftListQuery({ chainId, address, ...options }: {
|
|
94
|
+
chainId: string;
|
|
95
|
+
address: string;
|
|
96
|
+
} & Partial<Omit<UseQueryOptions<WalletNFTType[]>, 'queryKey' | 'queryFn'>>): _tanstack_react_query.UseQueryResult<WalletNFTType[], Error>;
|
|
97
|
+
declare function useWalletAssetListQuery({ chainId, address, ...options }: {
|
|
98
|
+
chainId: string;
|
|
99
|
+
address: string;
|
|
100
|
+
} & Partial<Omit<UseQueryOptions<{
|
|
101
|
+
asset_list: WalletAssetType[];
|
|
102
|
+
asset_total_balance: string;
|
|
103
|
+
} | null>, 'queryKey' | 'queryFn'>>): _tanstack_react_query.UseQueryResult<{
|
|
104
|
+
asset_list: WalletAssetType[];
|
|
105
|
+
asset_total_balance: string;
|
|
106
|
+
} | null, Error>;
|
|
107
|
+
|
|
108
|
+
declare const wallet_USER_IMPORT_TOKEN_LIST_KEY: typeof USER_IMPORT_TOKEN_LIST_KEY;
|
|
109
|
+
declare const wallet_getUserWalletTransactionsApi: typeof getUserWalletTransactionsApi;
|
|
110
|
+
declare const wallet_getWalletAssetListApi: typeof getWalletAssetListApi;
|
|
111
|
+
declare const wallet_getWalletListApi: typeof getWalletListApi;
|
|
112
|
+
declare const wallet_useAssetListQuery: typeof useAssetListQuery;
|
|
113
|
+
declare const wallet_useChainListQuery: typeof useChainListQuery;
|
|
114
|
+
declare const wallet_useImportTokenListQuery: typeof useImportTokenListQuery;
|
|
115
|
+
declare const wallet_useWalletAssetListQuery: typeof useWalletAssetListQuery;
|
|
116
|
+
declare const wallet_useWalletChainListQuery: typeof useWalletChainListQuery;
|
|
117
|
+
declare const wallet_useWalletNftListQuery: typeof useWalletNftListQuery;
|
|
118
|
+
declare const wallet_userImportTokenApi: typeof userImportTokenApi;
|
|
119
|
+
declare namespace wallet {
|
|
120
|
+
export { wallet_USER_IMPORT_TOKEN_LIST_KEY as USER_IMPORT_TOKEN_LIST_KEY, wallet_getUserWalletTransactionsApi as getUserWalletTransactionsApi, wallet_getWalletAssetListApi as getWalletAssetListApi, wallet_getWalletListApi as getWalletListApi, wallet_useAssetListQuery as useAssetListQuery, wallet_useChainListQuery as useChainListQuery, wallet_useImportTokenListQuery as useImportTokenListQuery, wallet_useWalletAssetListQuery as useWalletAssetListQuery, wallet_useWalletChainListQuery as useWalletChainListQuery, wallet_useWalletNftListQuery as useWalletNftListQuery, wallet_userImportTokenApi as userImportTokenApi };
|
|
121
|
+
}
|
|
122
|
+
|
|
123
|
+
declare const index_bind: typeof bind;
|
|
124
|
+
declare const index_isSuccess: typeof isSuccess;
|
|
125
|
+
declare const index_poh: typeof poh;
|
|
126
|
+
declare const index_user: typeof user;
|
|
127
|
+
declare const index_wallet: typeof wallet;
|
|
128
|
+
declare namespace index {
|
|
129
|
+
export { index_bind as bind, index_isSuccess as isSuccess, index_poh as poh, index_user as user, index_wallet as wallet };
|
|
130
|
+
}
|
|
131
|
+
|
|
132
|
+
export { bind as b, index as i, poh as p, user as u, wallet as w };
|
|
@@ -0,0 +1,79 @@
|
|
|
1
|
+
import { B as Button, C as ConfirmModal, F as Field, I as Input, M as Modal, a as ModalWithHeader, O as Overlay, P as Popover } from './index-CBQXIlWu.mjs';
|
|
2
|
+
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
3
|
+
import { v as DrawerProps, a2 as WalletPanelProps, X as UIProps } from './types-CXzZS0eM.mjs';
|
|
4
|
+
import { Hash, Chain } from 'viem';
|
|
5
|
+
import React, { CSSProperties } from 'react';
|
|
6
|
+
|
|
7
|
+
declare function Drawer({ children, showClose, onClose, isOpen, title, zIndex, onBack }: DrawerProps): react_jsx_runtime.JSX.Element;
|
|
8
|
+
|
|
9
|
+
type HashPanelProps = {
|
|
10
|
+
hash?: Hash | null;
|
|
11
|
+
chain?: Chain | null;
|
|
12
|
+
isOpen: boolean;
|
|
13
|
+
onClose: () => void;
|
|
14
|
+
zIndex?: number;
|
|
15
|
+
};
|
|
16
|
+
declare function export_default(props: HashPanelProps): false | react_jsx_runtime.JSX.Element;
|
|
17
|
+
|
|
18
|
+
declare function ModalDrawer({ title, drawerTitleVisible, ...props }: WalletPanelProps): react_jsx_runtime.JSX.Element;
|
|
19
|
+
|
|
20
|
+
declare function Switch({ size, checked, loading, onChange, className, disabled, ...props }: {
|
|
21
|
+
size?: "default" | "sm";
|
|
22
|
+
checked?: boolean;
|
|
23
|
+
loading?: boolean;
|
|
24
|
+
disabled?: boolean;
|
|
25
|
+
onChange?: (checked: boolean) => void;
|
|
26
|
+
} & UIProps): react_jsx_runtime.JSX.Element;
|
|
27
|
+
|
|
28
|
+
declare function AlphaAvatar({ name, size, className, style }: {
|
|
29
|
+
name: string;
|
|
30
|
+
size?: number | "sm" | "default" | "lg";
|
|
31
|
+
} & UIProps): react_jsx_runtime.JSX.Element;
|
|
32
|
+
|
|
33
|
+
declare function Radio({ checked, onChange, size, color, className, style }: {
|
|
34
|
+
checked?: boolean;
|
|
35
|
+
onChange?: () => void;
|
|
36
|
+
size?: number;
|
|
37
|
+
color?: string;
|
|
38
|
+
className?: string;
|
|
39
|
+
style?: CSSProperties;
|
|
40
|
+
}): react_jsx_runtime.JSX.Element;
|
|
41
|
+
|
|
42
|
+
interface SkeletonProps {
|
|
43
|
+
style?: React.CSSProperties;
|
|
44
|
+
className?: string;
|
|
45
|
+
width?: string | number;
|
|
46
|
+
height?: string | number;
|
|
47
|
+
radius?: string | number;
|
|
48
|
+
loading?: boolean;
|
|
49
|
+
children?: React.ReactNode;
|
|
50
|
+
}
|
|
51
|
+
declare const Skeleton: React.FC<SkeletonProps>;
|
|
52
|
+
|
|
53
|
+
type TabsProps = {
|
|
54
|
+
tabs: string[];
|
|
55
|
+
activeTab: number;
|
|
56
|
+
setActiveTab: (tab: number) => void;
|
|
57
|
+
};
|
|
58
|
+
declare function Tabs(props: TabsProps): react_jsx_runtime.JSX.Element;
|
|
59
|
+
|
|
60
|
+
declare const index_AlphaAvatar: typeof AlphaAvatar;
|
|
61
|
+
declare const index_Button: typeof Button;
|
|
62
|
+
declare const index_ConfirmModal: typeof ConfirmModal;
|
|
63
|
+
declare const index_Drawer: typeof Drawer;
|
|
64
|
+
declare const index_Field: typeof Field;
|
|
65
|
+
declare const index_Input: typeof Input;
|
|
66
|
+
declare const index_Modal: typeof Modal;
|
|
67
|
+
declare const index_ModalDrawer: typeof ModalDrawer;
|
|
68
|
+
declare const index_ModalWithHeader: typeof ModalWithHeader;
|
|
69
|
+
declare const index_Overlay: typeof Overlay;
|
|
70
|
+
declare const index_Popover: typeof Popover;
|
|
71
|
+
declare const index_Radio: typeof Radio;
|
|
72
|
+
declare const index_Skeleton: typeof Skeleton;
|
|
73
|
+
declare const index_Switch: typeof Switch;
|
|
74
|
+
declare const index_Tabs: typeof Tabs;
|
|
75
|
+
declare namespace index {
|
|
76
|
+
export { index_AlphaAvatar as AlphaAvatar, index_Button as Button, index_ConfirmModal as ConfirmModal, index_Drawer as Drawer, index_Field as Field, export_default as HashPanel, index_Input as Input, index_Modal as Modal, index_ModalDrawer as ModalDrawer, index_ModalWithHeader as ModalWithHeader, index_Overlay as Overlay, index_Popover as Popover, index_Radio as Radio, index_Skeleton as Skeleton, index_Switch as Switch, index_Tabs as Tabs };
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
export { AlphaAvatar as A, Drawer as D, ModalDrawer as M, Radio as R, Switch as S, Tabs as T, Skeleton as a, export_default as e, index as i };
|
|
@@ -0,0 +1,132 @@
|
|
|
1
|
+
import * as _tanstack_react_query from '@tanstack/react-query';
|
|
2
|
+
import { UseQueryOptions } from '@tanstack/react-query/src/types';
|
|
3
|
+
import { Q as PohZkpassParams, m as UserTransactionType, Z as UserTransactionNextPageParams, $ as WalletAssetType, J as MetaPageType, s as BindItemType, r as BindInfoType, N as PohItemType, U as UserChainType, o as UserAssetToken, n as UserImportTokenType, a0 as WalletChainType, a1 as WalletNFTType } from './types-CXzZS0eM.js';
|
|
4
|
+
import { M as MyResponseType, i as isSuccess } from './request-B0CyrGFT.js';
|
|
5
|
+
|
|
6
|
+
declare const bindCexApi: (data: {
|
|
7
|
+
cex: string;
|
|
8
|
+
api_key: string;
|
|
9
|
+
api_secret: string;
|
|
10
|
+
api_passphrase?: string;
|
|
11
|
+
}) => Promise<MyResponseType<any>>;
|
|
12
|
+
declare const unBindApi: ({ type }: {
|
|
13
|
+
type: string;
|
|
14
|
+
}) => Promise<MyResponseType<any>>;
|
|
15
|
+
declare const unBindWalletApi: ({ address }: {
|
|
16
|
+
address: string;
|
|
17
|
+
}) => Promise<MyResponseType<any>>;
|
|
18
|
+
declare const verifyPohApi: ({ taskId, schemaId, publicFields, allocatorAddress, publicFieldsHash, allocatorSignature, uHash, validatorAddress, validatorSignature }: PohZkpassParams) => Promise<MyResponseType<any>>;
|
|
19
|
+
declare const chooseIdentityApi: ({ identity }: {
|
|
20
|
+
identity: string;
|
|
21
|
+
}) => Promise<MyResponseType<any>>;
|
|
22
|
+
declare const mintPassportNftApi: () => Promise<MyResponseType<any>>;
|
|
23
|
+
declare const userImportTokenApi: (data: {
|
|
24
|
+
chain_id: string;
|
|
25
|
+
symbol: string;
|
|
26
|
+
address: string;
|
|
27
|
+
decimals: string;
|
|
28
|
+
}) => Promise<MyResponseType<any>>;
|
|
29
|
+
declare const getUserWalletTransactionsApi: (data: {
|
|
30
|
+
address?: string;
|
|
31
|
+
chain_id: string;
|
|
32
|
+
page?: string;
|
|
33
|
+
block_number?: number;
|
|
34
|
+
index?: number;
|
|
35
|
+
items_count?: number;
|
|
36
|
+
}) => Promise<MyResponseType<{
|
|
37
|
+
transactions: UserTransactionType[];
|
|
38
|
+
next_page_params: UserTransactionNextPageParams;
|
|
39
|
+
}>>;
|
|
40
|
+
declare const getWalletAssetListApi: (data: {
|
|
41
|
+
chain_id: string;
|
|
42
|
+
address: string;
|
|
43
|
+
}) => Promise<MyResponseType<{
|
|
44
|
+
asset_list: WalletAssetType[];
|
|
45
|
+
asset_total_balance: string;
|
|
46
|
+
}>>;
|
|
47
|
+
declare const getWalletListApi: (data: {
|
|
48
|
+
page: number;
|
|
49
|
+
page_size: number;
|
|
50
|
+
}) => Promise<MyResponseType<MetaPageType<{
|
|
51
|
+
wallet_list: {
|
|
52
|
+
address: string;
|
|
53
|
+
chain_network: string;
|
|
54
|
+
}[];
|
|
55
|
+
mpc_address: string;
|
|
56
|
+
}>>>;
|
|
57
|
+
|
|
58
|
+
declare function useBindList(options?: Partial<Omit<UseQueryOptions<BindItemType[]>, 'queryKey' | 'queryFn'>>): _tanstack_react_query.UseQueryResult<BindItemType[], Error>;
|
|
59
|
+
declare function useBindInfo(options?: Partial<Omit<UseQueryOptions<BindInfoType>, 'queryKey' | 'queryFn'>>): _tanstack_react_query.UseQueryResult<BindInfoType, Error>;
|
|
60
|
+
|
|
61
|
+
declare const bind_bindCexApi: typeof bindCexApi;
|
|
62
|
+
declare const bind_unBindApi: typeof unBindApi;
|
|
63
|
+
declare const bind_unBindWalletApi: typeof unBindWalletApi;
|
|
64
|
+
declare const bind_useBindInfo: typeof useBindInfo;
|
|
65
|
+
declare const bind_useBindList: typeof useBindList;
|
|
66
|
+
declare namespace bind {
|
|
67
|
+
export { bind_bindCexApi as bindCexApi, bind_unBindApi as unBindApi, bind_unBindWalletApi as unBindWalletApi, bind_useBindInfo as useBindInfo, bind_useBindList as useBindList };
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
declare function usePohList(options?: Partial<Omit<UseQueryOptions<PohItemType[]>, 'queryKey' | 'queryFn'>>): _tanstack_react_query.UseQueryResult<PohItemType[], Error>;
|
|
71
|
+
|
|
72
|
+
declare const poh_usePohList: typeof usePohList;
|
|
73
|
+
declare const poh_verifyPohApi: typeof verifyPohApi;
|
|
74
|
+
declare namespace poh {
|
|
75
|
+
export { poh_usePohList as usePohList, poh_verifyPohApi as verifyPohApi };
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
declare const user_chooseIdentityApi: typeof chooseIdentityApi;
|
|
79
|
+
declare const user_mintPassportNftApi: typeof mintPassportNftApi;
|
|
80
|
+
declare namespace user {
|
|
81
|
+
export { user_chooseIdentityApi as chooseIdentityApi, user_mintPassportNftApi as mintPassportNftApi };
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
declare function useChainListQuery(options?: Partial<Omit<UseQueryOptions<UserChainType[]>, 'queryKey' | 'queryFn'>>): _tanstack_react_query.UseQueryResult<UserChainType[], Error>;
|
|
85
|
+
declare function useAssetListQuery({ chainId, ...options }: {
|
|
86
|
+
chainId: number;
|
|
87
|
+
} & Partial<Omit<UseQueryOptions<UserAssetToken[]>, 'queryKey' | 'queryFn'>>): _tanstack_react_query.UseQueryResult<UserAssetToken[], Error>;
|
|
88
|
+
declare const USER_IMPORT_TOKEN_LIST_KEY = "match-user-import-token-list";
|
|
89
|
+
declare function useImportTokenListQuery({ chainId, ...options }: {
|
|
90
|
+
chainId: number;
|
|
91
|
+
} & Partial<Omit<UseQueryOptions<UserImportTokenType[]>, 'queryKey' | 'queryFn'>>): _tanstack_react_query.UseQueryResult<UserImportTokenType[], Error>;
|
|
92
|
+
declare function useWalletChainListQuery(options?: Partial<Omit<UseQueryOptions<WalletChainType[]>, 'queryKey' | 'queryFn'>>): _tanstack_react_query.UseQueryResult<WalletChainType[], Error>;
|
|
93
|
+
declare function useWalletNftListQuery({ chainId, address, ...options }: {
|
|
94
|
+
chainId: string;
|
|
95
|
+
address: string;
|
|
96
|
+
} & Partial<Omit<UseQueryOptions<WalletNFTType[]>, 'queryKey' | 'queryFn'>>): _tanstack_react_query.UseQueryResult<WalletNFTType[], Error>;
|
|
97
|
+
declare function useWalletAssetListQuery({ chainId, address, ...options }: {
|
|
98
|
+
chainId: string;
|
|
99
|
+
address: string;
|
|
100
|
+
} & Partial<Omit<UseQueryOptions<{
|
|
101
|
+
asset_list: WalletAssetType[];
|
|
102
|
+
asset_total_balance: string;
|
|
103
|
+
} | null>, 'queryKey' | 'queryFn'>>): _tanstack_react_query.UseQueryResult<{
|
|
104
|
+
asset_list: WalletAssetType[];
|
|
105
|
+
asset_total_balance: string;
|
|
106
|
+
} | null, Error>;
|
|
107
|
+
|
|
108
|
+
declare const wallet_USER_IMPORT_TOKEN_LIST_KEY: typeof USER_IMPORT_TOKEN_LIST_KEY;
|
|
109
|
+
declare const wallet_getUserWalletTransactionsApi: typeof getUserWalletTransactionsApi;
|
|
110
|
+
declare const wallet_getWalletAssetListApi: typeof getWalletAssetListApi;
|
|
111
|
+
declare const wallet_getWalletListApi: typeof getWalletListApi;
|
|
112
|
+
declare const wallet_useAssetListQuery: typeof useAssetListQuery;
|
|
113
|
+
declare const wallet_useChainListQuery: typeof useChainListQuery;
|
|
114
|
+
declare const wallet_useImportTokenListQuery: typeof useImportTokenListQuery;
|
|
115
|
+
declare const wallet_useWalletAssetListQuery: typeof useWalletAssetListQuery;
|
|
116
|
+
declare const wallet_useWalletChainListQuery: typeof useWalletChainListQuery;
|
|
117
|
+
declare const wallet_useWalletNftListQuery: typeof useWalletNftListQuery;
|
|
118
|
+
declare const wallet_userImportTokenApi: typeof userImportTokenApi;
|
|
119
|
+
declare namespace wallet {
|
|
120
|
+
export { wallet_USER_IMPORT_TOKEN_LIST_KEY as USER_IMPORT_TOKEN_LIST_KEY, wallet_getUserWalletTransactionsApi as getUserWalletTransactionsApi, wallet_getWalletAssetListApi as getWalletAssetListApi, wallet_getWalletListApi as getWalletListApi, wallet_useAssetListQuery as useAssetListQuery, wallet_useChainListQuery as useChainListQuery, wallet_useImportTokenListQuery as useImportTokenListQuery, wallet_useWalletAssetListQuery as useWalletAssetListQuery, wallet_useWalletChainListQuery as useWalletChainListQuery, wallet_useWalletNftListQuery as useWalletNftListQuery, wallet_userImportTokenApi as userImportTokenApi };
|
|
121
|
+
}
|
|
122
|
+
|
|
123
|
+
declare const index_bind: typeof bind;
|
|
124
|
+
declare const index_isSuccess: typeof isSuccess;
|
|
125
|
+
declare const index_poh: typeof poh;
|
|
126
|
+
declare const index_user: typeof user;
|
|
127
|
+
declare const index_wallet: typeof wallet;
|
|
128
|
+
declare namespace index {
|
|
129
|
+
export { index_bind as bind, index_isSuccess as isSuccess, index_poh as poh, index_user as user, index_wallet as wallet };
|
|
130
|
+
}
|
|
131
|
+
|
|
132
|
+
export { bind as b, index as i, poh as p, user as u, wallet as w };
|
|
@@ -0,0 +1,111 @@
|
|
|
1
|
+
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
|
+
import { E as EmailModalProps, b as LoginBoxProps, B as ButtonProps, O as OtherLoginMethodType, R as RecommendLoginMethodType, c as WalletType, P as PopoverPositionType, d as PopoverTypeType, e as LoginPanelProps, f as LoginModalProps, M as ModalWithHeaderProps, g as WalletAssetMergeType, u as useMatchWalletAssetsProps } from './types-CXzZS0eM.mjs';
|
|
3
|
+
import { B as Button, F as Field, I as Input, M as Modal, a as ModalWithHeader, O as Overlay, P as Popover } from './index-CBQXIlWu.mjs';
|
|
4
|
+
import { ReactNode } from 'react';
|
|
5
|
+
|
|
6
|
+
declare function EmailModal({ isOpen, width, onClose, onBack, onLogin }: EmailModalProps): react_jsx_runtime.JSX.Element;
|
|
7
|
+
|
|
8
|
+
declare function LoginBox({ recommendMethods, methods, walletMethods, inModal }: LoginBoxProps): react_jsx_runtime.JSX.Element;
|
|
9
|
+
|
|
10
|
+
declare function LoginButton({ loginRender, methods, recommendMethods, onLoginClick, popoverPosition, popoverType, popoverGap, walletMethods, ...props }: Omit<ButtonProps, 'onClick' | 'highlight'> & {
|
|
11
|
+
loginRender?: ReactNode;
|
|
12
|
+
methods?: OtherLoginMethodType[];
|
|
13
|
+
recommendMethods?: RecommendLoginMethodType[];
|
|
14
|
+
walletMethods?: WalletType[];
|
|
15
|
+
onLoginClick?: () => void;
|
|
16
|
+
popoverPosition?: PopoverPositionType;
|
|
17
|
+
popoverType?: PopoverTypeType;
|
|
18
|
+
popoverGap?: number | string;
|
|
19
|
+
}): react_jsx_runtime.JSX.Element;
|
|
20
|
+
|
|
21
|
+
declare function LoginPanel({ header, onClose, ...props }: LoginPanelProps): react_jsx_runtime.JSX.Element;
|
|
22
|
+
|
|
23
|
+
declare function LoginModal({ isOpen, width, ...props }: LoginModalProps): react_jsx_runtime.JSX.Element;
|
|
24
|
+
|
|
25
|
+
declare function UsernameModal({ title, isOpen, onSuccess, ...props }: ModalWithHeaderProps & {
|
|
26
|
+
onSuccess?: () => void;
|
|
27
|
+
}): react_jsx_runtime.JSX.Element;
|
|
28
|
+
|
|
29
|
+
type EVMModalProps = ModalWithHeaderProps & {
|
|
30
|
+
type?: 'login' | 'bind' | '';
|
|
31
|
+
onSuccess?: () => void;
|
|
32
|
+
};
|
|
33
|
+
declare function EVMModal(props: EVMModalProps): false | react_jsx_runtime.JSX.Element;
|
|
34
|
+
|
|
35
|
+
type TRONConnectModalProps = ModalWithHeaderProps & {
|
|
36
|
+
type?: 'login' | 'bind' | '';
|
|
37
|
+
onSuccess?: () => void;
|
|
38
|
+
};
|
|
39
|
+
declare function TRONModal(props: TRONConnectModalProps): false | react_jsx_runtime.JSX.Element;
|
|
40
|
+
|
|
41
|
+
type TonModalProps = ModalWithHeaderProps & {
|
|
42
|
+
type?: 'login' | 'bind' | '';
|
|
43
|
+
onSuccess?: () => void;
|
|
44
|
+
};
|
|
45
|
+
declare function TONModal(props: TonModalProps): false | react_jsx_runtime.JSX.Element;
|
|
46
|
+
|
|
47
|
+
type BTCConnectModalProps = ModalWithHeaderProps & {
|
|
48
|
+
type?: 'login' | 'bind' | '';
|
|
49
|
+
onSuccess?: () => void;
|
|
50
|
+
};
|
|
51
|
+
declare function BTCModal(props: BTCConnectModalProps): false | react_jsx_runtime.JSX.Element;
|
|
52
|
+
|
|
53
|
+
type WalletModalProps = ModalWithHeaderProps & {
|
|
54
|
+
type?: 'login' | 'bind' | '';
|
|
55
|
+
methods?: WalletType[];
|
|
56
|
+
};
|
|
57
|
+
declare function WalletModal(props: WalletModalProps): false | react_jsx_runtime.JSX.Element;
|
|
58
|
+
|
|
59
|
+
declare function WalletAsset({ onAssetClick, matchWalletAssetsOptions }: {
|
|
60
|
+
onAssetClick?: (asset: WalletAssetMergeType) => () => void;
|
|
61
|
+
matchWalletAssetsOptions?: useMatchWalletAssetsProps;
|
|
62
|
+
}): react_jsx_runtime.JSX.Element;
|
|
63
|
+
|
|
64
|
+
declare function TokenDetail({ onClose, token }: {
|
|
65
|
+
onClose: () => void;
|
|
66
|
+
token: WalletAssetMergeType;
|
|
67
|
+
}): react_jsx_runtime.JSX.Element;
|
|
68
|
+
|
|
69
|
+
declare function TokenSend({ onClose, zIndex, token, onBack }: {
|
|
70
|
+
onBack: () => void;
|
|
71
|
+
onClose: () => void;
|
|
72
|
+
zIndex: number;
|
|
73
|
+
token: WalletAssetMergeType;
|
|
74
|
+
}): react_jsx_runtime.JSX.Element;
|
|
75
|
+
|
|
76
|
+
declare function TokenSendList({ close }: {
|
|
77
|
+
close: () => void;
|
|
78
|
+
}): react_jsx_runtime.JSX.Element;
|
|
79
|
+
|
|
80
|
+
declare function TransactionList({ scrollableTarget }: {
|
|
81
|
+
scrollableTarget?: ReactNode;
|
|
82
|
+
}): react_jsx_runtime.JSX.Element;
|
|
83
|
+
|
|
84
|
+
declare const index_BTCModal: typeof BTCModal;
|
|
85
|
+
declare const index_Button: typeof Button;
|
|
86
|
+
declare const index_EVMModal: typeof EVMModal;
|
|
87
|
+
declare const index_EmailModal: typeof EmailModal;
|
|
88
|
+
declare const index_Field: typeof Field;
|
|
89
|
+
declare const index_Input: typeof Input;
|
|
90
|
+
declare const index_LoginBox: typeof LoginBox;
|
|
91
|
+
declare const index_LoginButton: typeof LoginButton;
|
|
92
|
+
declare const index_LoginModal: typeof LoginModal;
|
|
93
|
+
declare const index_LoginPanel: typeof LoginPanel;
|
|
94
|
+
declare const index_Modal: typeof Modal;
|
|
95
|
+
declare const index_ModalWithHeader: typeof ModalWithHeader;
|
|
96
|
+
declare const index_Overlay: typeof Overlay;
|
|
97
|
+
declare const index_Popover: typeof Popover;
|
|
98
|
+
declare const index_TONModal: typeof TONModal;
|
|
99
|
+
declare const index_TRONModal: typeof TRONModal;
|
|
100
|
+
declare const index_TokenDetail: typeof TokenDetail;
|
|
101
|
+
declare const index_TokenSend: typeof TokenSend;
|
|
102
|
+
declare const index_TokenSendList: typeof TokenSendList;
|
|
103
|
+
declare const index_TransactionList: typeof TransactionList;
|
|
104
|
+
declare const index_UsernameModal: typeof UsernameModal;
|
|
105
|
+
declare const index_WalletAsset: typeof WalletAsset;
|
|
106
|
+
declare const index_WalletModal: typeof WalletModal;
|
|
107
|
+
declare namespace index {
|
|
108
|
+
export { index_BTCModal as BTCModal, index_Button as Button, index_EVMModal as EVMModal, index_EmailModal as EmailModal, index_Field as Field, index_Input as Input, index_LoginBox as LoginBox, index_LoginButton as LoginButton, index_LoginModal as LoginModal, index_LoginPanel as LoginPanel, index_Modal as Modal, index_ModalWithHeader as ModalWithHeader, index_Overlay as Overlay, index_Popover as Popover, index_TONModal as TONModal, index_TRONModal as TRONModal, index_TokenDetail as TokenDetail, index_TokenSend as TokenSend, index_TokenSendList as TokenSendList, index_TransactionList as TransactionList, index_UsernameModal as UsernameModal, index_WalletAsset as WalletAsset, index_WalletModal as WalletModal };
|
|
109
|
+
}
|
|
110
|
+
|
|
111
|
+
export { BTCModal as B, EmailModal as E, LoginBox as L, TRONModal as T, UsernameModal as U, WalletModal as W, LoginButton as a, LoginPanel as b, LoginModal as c, EVMModal as d, TONModal as e, WalletAsset as f, TokenDetail as g, TokenSend as h, index as i, TokenSendList as j, TransactionList as k };
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
|
+
import React, { ReactNode, PropsWithChildren } from 'react';
|
|
3
|
+
import { F as InputProps, B as ButtonProps, K as ModalProps, M as ModalWithHeaderProps, S as PopoverProps } from './types-CXzZS0eM.js';
|
|
4
|
+
|
|
5
|
+
declare function Field({ label, children, error, required, className }: {
|
|
6
|
+
label: ReactNode;
|
|
7
|
+
error?: ReactNode;
|
|
8
|
+
required?: boolean;
|
|
9
|
+
className?: string;
|
|
10
|
+
} & PropsWithChildren): react_jsx_runtime.JSX.Element;
|
|
11
|
+
|
|
12
|
+
declare function Input({ onChange, type, after, className, ...props }: InputProps): react_jsx_runtime.JSX.Element;
|
|
13
|
+
|
|
14
|
+
declare function Button({ size, disabled, loading, children, onClick, highlight, block, type, rounded, className, style, dataset }: ButtonProps & {
|
|
15
|
+
dataset?: {
|
|
16
|
+
[key: string]: string;
|
|
17
|
+
};
|
|
18
|
+
}): react_jsx_runtime.JSX.Element;
|
|
19
|
+
|
|
20
|
+
declare function Modal({ children, isOpen, width, zIndex, className }: ModalProps): react_jsx_runtime.JSX.Element;
|
|
21
|
+
declare function ModalWithHeader({ children, onBack, onClose, title, showBorder, showClose, ...props }: ModalWithHeaderProps): react_jsx_runtime.JSX.Element;
|
|
22
|
+
declare function ConfirmModal({ title, children, onClose, onConfirm, isOpen, confirmText, zIndex }: {
|
|
23
|
+
title?: string;
|
|
24
|
+
onClose: () => void;
|
|
25
|
+
onConfirm: () => Promise<void>;
|
|
26
|
+
isOpen: boolean;
|
|
27
|
+
confirmText?: React.ReactNode;
|
|
28
|
+
zIndex?: number;
|
|
29
|
+
} & PropsWithChildren): react_jsx_runtime.JSX.Element;
|
|
30
|
+
|
|
31
|
+
declare function Popover({ children, content, position, type, className, gap }: PopoverProps): false | "" | 0 | react_jsx_runtime.JSX.Element | null | undefined;
|
|
32
|
+
|
|
33
|
+
declare function Overlay({ isOpen, children, zIndex, }: {
|
|
34
|
+
isOpen?: boolean;
|
|
35
|
+
zIndex?: number;
|
|
36
|
+
} & PropsWithChildren): react_jsx_runtime.JSX.Element;
|
|
37
|
+
|
|
38
|
+
export { Button as B, ConfirmModal as C, Field as F, Input as I, Modal as M, Overlay as O, Popover as P, ModalWithHeader as a };
|
package/dist/index.css
CHANGED
|
@@ -141,7 +141,7 @@ body {
|
|
|
141
141
|
--matchid-wallet-transaction-bg: var(--matchid-white);
|
|
142
142
|
--matchid-wallet-transaction-color: var(--matchid-black);
|
|
143
143
|
/**tab**/
|
|
144
|
-
--matchid-tab-color:var(--matchid-secondary-grey);
|
|
144
|
+
--matchid-tab-color: var(--matchid-secondary-grey);
|
|
145
145
|
--matchid-tab-active-color: var(--matchid-highlight-orange);
|
|
146
146
|
|
|
147
147
|
|
|
@@ -509,6 +509,7 @@ body {
|
|
|
509
509
|
font-weight: 500;
|
|
510
510
|
background: none;
|
|
511
511
|
min-width: 0;
|
|
512
|
+
border:0;
|
|
512
513
|
@media screen and (max-width: 768px) {
|
|
513
514
|
font-size: 16px;
|
|
514
515
|
font-weight: 500;
|
|
@@ -1403,7 +1404,7 @@ body {
|
|
|
1403
1404
|
right: 0px;
|
|
1404
1405
|
bottom: 1px;
|
|
1405
1406
|
@media screen and (max-width: 768px) {
|
|
1406
|
-
|
|
1407
|
+
width: 10px;
|
|
1407
1408
|
height: 10px;
|
|
1408
1409
|
}
|
|
1409
1410
|
}
|
|
@@ -2026,86 +2027,72 @@ body {
|
|
|
2026
2027
|
}
|
|
2027
2028
|
}
|
|
2028
2029
|
|
|
2029
|
-
.matchid-
|
|
2030
|
-
justify-content: space-between;
|
|
2031
|
-
align-items: center;
|
|
2032
|
-
padding:8px 16px;
|
|
2033
|
-
.matchid-contact-item-content{
|
|
2034
|
-
height:48px;
|
|
2035
|
-
display: flex;
|
|
2036
|
-
gap:16px;
|
|
2037
|
-
align-items: center;
|
|
2038
|
-
.matchid-contact-item-avatar{
|
|
2039
|
-
width:48px;
|
|
2040
|
-
height:48px;
|
|
2041
|
-
border-radius: 50%;
|
|
2042
|
-
}
|
|
2043
|
-
.matchid-contact-item-info{
|
|
2044
|
-
display: flex;
|
|
2045
|
-
flex-direction: column;
|
|
2046
|
-
justify-content: space-between;
|
|
2047
|
-
height:100%;
|
|
2048
|
-
.matchid-contact-item-name{
|
|
2049
|
-
font-size: 18px;
|
|
2050
|
-
font-weight: 500;
|
|
2051
|
-
color: var(--matchid-black);
|
|
2052
|
-
}
|
|
2053
|
-
.matchid-contact-item-address{
|
|
2054
|
-
font-size: 14px;
|
|
2055
|
-
color: var(--matchid-secondary-grey);
|
|
2056
|
-
}
|
|
2057
|
-
@media screen and (max-width: 768px) {
|
|
2058
|
-
.matchid-contact-item-name{
|
|
2059
|
-
font-size: 16px;
|
|
2060
|
-
}
|
|
2061
|
-
.matchid-contact-item-address{
|
|
2062
|
-
font-size: 12px;
|
|
2063
|
-
}
|
|
2064
|
-
}
|
|
2065
|
-
}
|
|
2066
|
-
}
|
|
2067
|
-
|
|
2068
|
-
}
|
|
2069
|
-
|
|
2070
|
-
.matchid-nomore{
|
|
2030
|
+
.matchid-nomore {
|
|
2071
2031
|
display: flex;
|
|
2072
2032
|
justify-content: center;
|
|
2073
2033
|
align-items: center;
|
|
2074
2034
|
font-weight: 500;
|
|
2075
2035
|
font-size: 16px;
|
|
2076
2036
|
color: var(--matchid-secondary-grey);
|
|
2077
|
-
padding:20px 0;
|
|
2037
|
+
padding: 20px 0;
|
|
2078
2038
|
@media screen and (max-width: 768px) {
|
|
2079
2039
|
font-size: 14px;
|
|
2080
2040
|
}
|
|
2081
2041
|
}
|
|
2082
2042
|
|
|
2083
|
-
.matchid-tabs{
|
|
2084
|
-
gap:36px;
|
|
2043
|
+
.matchid-tabs {
|
|
2044
|
+
gap: 36px;
|
|
2085
2045
|
align-items: start;
|
|
2086
2046
|
display: flex;
|
|
2087
2047
|
}
|
|
2088
2048
|
|
|
2089
|
-
.matchid-tab{
|
|
2090
|
-
color:var(--matchid-tab-color);
|
|
2091
|
-
font-weight:500;
|
|
2049
|
+
.matchid-tab {
|
|
2050
|
+
color: var(--matchid-tab-color);
|
|
2051
|
+
font-weight: 500;
|
|
2092
2052
|
font-size: 20px;
|
|
2093
2053
|
cursor: pointer;
|
|
2094
2054
|
|
|
2095
2055
|
@media screen and (max-width: 768px) {
|
|
2096
2056
|
font-size: 14px;
|
|
2097
|
-
padding:10px 0;
|
|
2057
|
+
padding: 10px 0;
|
|
2098
2058
|
}
|
|
2099
|
-
|
|
2100
|
-
|
|
2059
|
+
|
|
2060
|
+
&.matchid-tab-active {
|
|
2061
|
+
color: var(--matchid-tab-active-color);
|
|
2101
2062
|
border-bottom: 2px solid var(--matchid-tab-active-color);
|
|
2102
2063
|
}
|
|
2103
2064
|
}
|
|
2104
2065
|
|
|
2105
|
-
.matchid-cursor-pointer{
|
|
2066
|
+
.matchid-cursor-pointer {
|
|
2106
2067
|
cursor: pointer;
|
|
2107
2068
|
}
|
|
2108
2069
|
|
|
2109
|
-
.matchid-remove-box{
|
|
2110
|
-
padding:0px 20px;
|
|
2111
|
-
|
|
2070
|
+
.matchid-remove-box {
|
|
2071
|
+
padding: 0px 20px;
|
|
2072
|
+
min-width: 150px;
|
|
2073
|
+
display: flex;
|
|
2074
|
+
justify-content: center;
|
|
2075
|
+
}
|
|
2076
|
+
|
|
2077
|
+
|
|
2078
|
+
|
|
2079
|
+
.matchid-w-full {
|
|
2080
|
+
width: 100%;
|
|
2081
|
+
}
|
|
2082
|
+
|
|
2083
|
+
.matchid-confirm-modal {
|
|
2084
|
+
display: flex;
|
|
2085
|
+
flex-direction: column;
|
|
2086
|
+
font-size: 14px;
|
|
2087
|
+
color: black;
|
|
2088
|
+
gap: 8px;
|
|
2089
|
+
width: 100%;
|
|
2090
|
+
align-items: center;
|
|
2091
|
+
justify-content: center;
|
|
2092
|
+
@media (min-width: 768px) {
|
|
2093
|
+
font-size: 16px;
|
|
2094
|
+
gap: 12px;
|
|
2095
|
+
}
|
|
2096
|
+
|
|
2097
|
+
}
|
|
2098
|
+
|