@unifold/connect-react 0.1.21 → 0.1.22
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.d.mts +2 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +439 -111
- package/dist/index.mjs +479 -151
- package/package.json +4 -4
package/dist/index.d.mts
CHANGED
|
@@ -9,6 +9,8 @@ interface UnifoldConnectProviderConfig {
|
|
|
9
9
|
config?: {
|
|
10
10
|
modalTitle?: string;
|
|
11
11
|
hideDepositTracker?: boolean;
|
|
12
|
+
/** Show balance in deposit modal header. Defaults to true */
|
|
13
|
+
showBalanceHeader?: boolean;
|
|
12
14
|
/** Theme appearance: 'light', 'dark', or 'auto' (system preference). Defaults to 'dark' */
|
|
13
15
|
appearance?: ThemeMode | 'auto';
|
|
14
16
|
/** Transfer input variant: 'single_input' or 'double_input'. Defaults to 'double_input' */
|
package/dist/index.d.ts
CHANGED
|
@@ -9,6 +9,8 @@ interface UnifoldConnectProviderConfig {
|
|
|
9
9
|
config?: {
|
|
10
10
|
modalTitle?: string;
|
|
11
11
|
hideDepositTracker?: boolean;
|
|
12
|
+
/** Show balance in deposit modal header. Defaults to true */
|
|
13
|
+
showBalanceHeader?: boolean;
|
|
12
14
|
/** Theme appearance: 'light', 'dark', or 'auto' (system preference). Defaults to 'dark' */
|
|
13
15
|
appearance?: ThemeMode | 'auto';
|
|
14
16
|
/** Transfer input variant: 'single_input' or 'double_input'. Defaults to 'double_input' */
|