@reown/appkit-scaffold-ui 1.1.0 → 1.1.2
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/esm/src/partials/w3m-all-wallets-search/index.js +1 -0
- package/dist/esm/src/partials/w3m-all-wallets-search/index.js.map +1 -1
- package/dist/esm/src/partials/w3m-connecting-wc-mobile/index.js +16 -1
- package/dist/esm/src/partials/w3m-connecting-wc-mobile/index.js.map +1 -1
- package/dist/esm/src/partials/w3m-header/index.js +1 -1
- package/dist/esm/src/partials/w3m-header/index.js.map +1 -1
- package/dist/esm/src/utils/w3m-connecting-widget/index.js +25 -11
- package/dist/esm/src/utils/w3m-connecting-widget/index.js.map +1 -1
- package/dist/esm/src/views/w3m-connecting-wc-view/index.js.map +1 -1
- package/dist/esm/tsconfig.tsbuildinfo +1 -1
- package/dist/types/src/partials/w3m-connecting-wc-mobile/index.d.ts +2 -0
- package/dist/types/src/utils/w3m-connecting-widget/index.d.ts +3 -3
- package/package.json +7 -7
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
import { W3mConnectingWidget } from '../../utils/w3m-connecting-widget/index.js';
|
|
2
2
|
export declare class W3mConnectingWcMobile extends W3mConnectingWidget {
|
|
3
|
+
private btnLabelTimeout?;
|
|
4
|
+
private labelTimeout?;
|
|
3
5
|
constructor();
|
|
4
6
|
disconnectedCallback(): void;
|
|
5
7
|
private onRenderProxy;
|
|
@@ -5,9 +5,7 @@ export declare class W3mConnectingWidget extends LitElement {
|
|
|
5
5
|
protected readonly wallet: import("@reown/appkit-core").WcWallet | undefined;
|
|
6
6
|
protected readonly connector: import("@reown/appkit-core").Connector | undefined;
|
|
7
7
|
protected timeout?: ReturnType<typeof setTimeout>;
|
|
8
|
-
protected secondaryBtnLabel: string;
|
|
9
8
|
protected secondaryBtnIcon: IconType;
|
|
10
|
-
protected secondaryLabel: string;
|
|
11
9
|
protected onConnect?: (() => void) | (() => Promise<void>);
|
|
12
10
|
protected onRender?: (() => void) | (() => Promise<void>);
|
|
13
11
|
protected onAutoConnect?: (() => void) | (() => Promise<void>);
|
|
@@ -15,11 +13,13 @@ export declare class W3mConnectingWidget extends LitElement {
|
|
|
15
13
|
private unsubscribe;
|
|
16
14
|
private imageSrc;
|
|
17
15
|
private name;
|
|
18
|
-
|
|
16
|
+
protected isRetrying: boolean;
|
|
19
17
|
protected uri: string | undefined;
|
|
20
18
|
protected error: boolean | undefined;
|
|
21
19
|
protected ready: boolean;
|
|
22
20
|
private showRetry;
|
|
21
|
+
protected secondaryBtnLabel?: string | undefined;
|
|
22
|
+
protected secondaryLabel: string;
|
|
23
23
|
buffering: boolean;
|
|
24
24
|
isMobile: boolean;
|
|
25
25
|
onRetry?: (() => void) | (() => Promise<void>);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@reown/appkit-scaffold-ui",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.2",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "./dist/esm/exports/index.js",
|
|
6
6
|
"types": "./dist/types/exports/index.d.ts",
|
|
@@ -22,12 +22,12 @@
|
|
|
22
22
|
},
|
|
23
23
|
"dependencies": {
|
|
24
24
|
"lit": "3.1.0",
|
|
25
|
-
"@reown/appkit-common": "1.1.
|
|
26
|
-
"@reown/appkit-core": "1.1.
|
|
27
|
-
"@reown/appkit-siwe": "1.1.
|
|
28
|
-
"@reown/appkit-ui": "1.1.
|
|
29
|
-
"@reown/appkit-utils": "1.1.
|
|
30
|
-
"@reown/appkit-wallet": "1.1.
|
|
25
|
+
"@reown/appkit-common": "1.1.2",
|
|
26
|
+
"@reown/appkit-core": "1.1.2",
|
|
27
|
+
"@reown/appkit-siwe": "1.1.2",
|
|
28
|
+
"@reown/appkit-ui": "1.1.2",
|
|
29
|
+
"@reown/appkit-utils": "1.1.2",
|
|
30
|
+
"@reown/appkit-wallet": "1.1.2"
|
|
31
31
|
},
|
|
32
32
|
"author": "Reown <support@reown.com> (https://reown.com)",
|
|
33
33
|
"license": "Apache-2.0",
|