@matchain/matchid-sdk-react 0.1.34 → 0.1.35
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/index.css +406 -235
- package/dist/index.d.mts +12 -4
- package/dist/index.d.ts +12 -4
- package/dist/index.js +160 -116
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +142 -98
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -60,9 +60,9 @@ type ModalWithHeaderProps = ModalProps & {
|
|
|
60
60
|
}
|
|
61
61
|
|
|
62
62
|
type InputProps = {
|
|
63
|
-
placeholder
|
|
64
|
-
value
|
|
65
|
-
onChange
|
|
63
|
+
placeholder?: string,
|
|
64
|
+
value?: string,
|
|
65
|
+
onChange?: (e?: any) => void,
|
|
66
66
|
disabled?: boolean,
|
|
67
67
|
readonly?: boolean
|
|
68
68
|
type?: string
|
|
@@ -298,12 +298,20 @@ declare function useWallet(): UseWalletReturnType;
|
|
|
298
298
|
|
|
299
299
|
declare function useCopyClipboard(timeout?: number): [boolean, (toCopy: string) => void];
|
|
300
300
|
|
|
301
|
+
declare function useDownMd(): boolean;
|
|
302
|
+
|
|
303
|
+
declare const useLayout_useDownMd: typeof useDownMd;
|
|
304
|
+
declare namespace useLayout {
|
|
305
|
+
export { useLayout_useDownMd as useDownMd };
|
|
306
|
+
}
|
|
307
|
+
|
|
301
308
|
declare const index$2_useCopyClipboard: typeof useCopyClipboard;
|
|
309
|
+
declare const index$2_useLayout: typeof useLayout;
|
|
302
310
|
declare const index$2_useMatchEvents: typeof useMatchEvents;
|
|
303
311
|
declare const index$2_useUserInfo: typeof useUserInfo;
|
|
304
312
|
declare const index$2_useWallet: typeof useWallet;
|
|
305
313
|
declare namespace index$2 {
|
|
306
|
-
export { index$2_useCopyClipboard as useCopyClipboard, index$2_useMatchEvents as useMatchEvents, index$2_useUserInfo as useUserInfo, index$2_useWallet as useWallet };
|
|
314
|
+
export { index$2_useCopyClipboard as useCopyClipboard, index$2_useLayout as useLayout, index$2_useMatchEvents as useMatchEvents, index$2_useUserInfo as useUserInfo, index$2_useWallet as useWallet };
|
|
307
315
|
}
|
|
308
316
|
|
|
309
317
|
interface MyResponseType<T> {
|
package/dist/index.d.ts
CHANGED
|
@@ -60,9 +60,9 @@ type ModalWithHeaderProps = ModalProps & {
|
|
|
60
60
|
}
|
|
61
61
|
|
|
62
62
|
type InputProps = {
|
|
63
|
-
placeholder
|
|
64
|
-
value
|
|
65
|
-
onChange
|
|
63
|
+
placeholder?: string,
|
|
64
|
+
value?: string,
|
|
65
|
+
onChange?: (e?: any) => void,
|
|
66
66
|
disabled?: boolean,
|
|
67
67
|
readonly?: boolean
|
|
68
68
|
type?: string
|
|
@@ -298,12 +298,20 @@ declare function useWallet(): UseWalletReturnType;
|
|
|
298
298
|
|
|
299
299
|
declare function useCopyClipboard(timeout?: number): [boolean, (toCopy: string) => void];
|
|
300
300
|
|
|
301
|
+
declare function useDownMd(): boolean;
|
|
302
|
+
|
|
303
|
+
declare const useLayout_useDownMd: typeof useDownMd;
|
|
304
|
+
declare namespace useLayout {
|
|
305
|
+
export { useLayout_useDownMd as useDownMd };
|
|
306
|
+
}
|
|
307
|
+
|
|
301
308
|
declare const index$2_useCopyClipboard: typeof useCopyClipboard;
|
|
309
|
+
declare const index$2_useLayout: typeof useLayout;
|
|
302
310
|
declare const index$2_useMatchEvents: typeof useMatchEvents;
|
|
303
311
|
declare const index$2_useUserInfo: typeof useUserInfo;
|
|
304
312
|
declare const index$2_useWallet: typeof useWallet;
|
|
305
313
|
declare namespace index$2 {
|
|
306
|
-
export { index$2_useCopyClipboard as useCopyClipboard, index$2_useMatchEvents as useMatchEvents, index$2_useUserInfo as useUserInfo, index$2_useWallet as useWallet };
|
|
314
|
+
export { index$2_useCopyClipboard as useCopyClipboard, index$2_useLayout as useLayout, index$2_useMatchEvents as useMatchEvents, index$2_useUserInfo as useUserInfo, index$2_useWallet as useWallet };
|
|
307
315
|
}
|
|
308
316
|
|
|
309
317
|
interface MyResponseType<T> {
|