New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@web3modal/ui

Package Overview
Dependencies
Maintainers
4
Versions
374
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@web3modal/ui - npm Package Compare versions

Comparing version 2.0.0-d873f5c to 2.0.0-d8cdbe6

dist/_types/src/components/w3m-box-button/index.d.ts

3

dist/_types/index.d.ts
import './src/components';
import './src/partials';
import './src/views';
export * from './src/components/w3m-modal';
export * from './src/partials/w3m-account-button';
export * from './src/partials/w3m-connect-button';
export * from './src/partials/w3m-core-button';
export * from './src/partials/w3m-modal';
export * from './src/partials/w3m-network-switch';

@@ -0,3 +1,4 @@

import './w3m-box-button';
import './w3m-button';
import './w3m-modal';
import './w3m-button-big';
import './w3m-modal-backcard';

@@ -15,4 +16,4 @@ import './w3m-modal-content';

import './w3m-text';
import './w3m-view-all-wallets-button';
import './w3m-token-image';
import './w3m-wallet-button';
import './w3m-wallet-image';
import type { TemplateResult } from 'lit';
import { LitElement } from 'lit';
type Variant = 'fill' | 'ghost';
export declare class W3mButton extends LitElement {
static styles: any[];
variant?: Variant;
disabled?: boolean | undefined;

@@ -18,2 +16,1 @@ iconLeft?: TemplateResult<2>;

}
export {};

@@ -8,2 +8,3 @@ import type { TemplateResult } from 'lit';

actionIcon?: TemplateResult<2>;
border: boolean;
private backBtnTemplate;

@@ -10,0 +11,0 @@ private actionBtnTemplate;

import { LitElement } from 'lit';
export declare class W3mNetworkImage extends LitElement {
static styles: any[];
src: string;
chainId: string;
protected render(): import("lit-html").TemplateResult<1>;

@@ -6,0 +6,0 @@ }

import { LitElement } from 'lit';
export declare class W3mSpinner extends LitElement {
static styles: any;
size?: number;
color?: string;
static styles: any[];
protected render(): import("lit-html").TemplateResult<1>;

@@ -7,0 +5,0 @@ }

@@ -9,2 +9,5 @@ import { LitElement } from 'lit';

src?: string;
installed?: boolean | undefined;
recent?: boolean | undefined;
private sublabelTemplate;
protected render(): import("lit-html").TemplateResult<1>;

@@ -11,0 +14,0 @@ }

import './w3m-account-button';
import './w3m-account-network-button';
import './w3m-address-text';
import './w3m-android-wallet-selection';
import './w3m-avatar';
import './w3m-balance';
import './w3m-connect-button';
import './w3m-core-button';
import './w3m-desktop-wallet-selection';
import './w3m-legal-notice';
import './w3m-mobile-wallet-selection';
import './w3m-modal';
import './w3m-network-switch';
import './w3m-view-all-wallets-button';
import './w3m-walletconnect-qr';
import { LitElement } from 'lit';
export declare class W3mAccountButton extends LitElement {
static styles: any[];
constructor();
balance?: 'hide' | 'show';
private onOpen;
private accountTemplate;
protected render(): import("lit-html").TemplateResult<1>;

@@ -5,0 +9,0 @@ }

@@ -6,3 +6,3 @@ import { LitElement } from 'lit';

label?: string | undefined;
icon?: boolean | undefined;
icon?: 'hide' | 'show';
constructor();

@@ -9,0 +9,0 @@ disconnectedCallback(): void;

@@ -5,6 +5,7 @@ import { LitElement } from 'lit';

label?: string | undefined;
icon?: boolean | undefined;
icon?: 'hide' | 'show';
balance?: 'hide' | 'show';
constructor();
disconnectedCallback(): void;
private readonly accountUnsub?;
private readonly unsubscribeAccount?;
protected render(): import("lit-html").TemplateResult<1>;

@@ -11,0 +12,0 @@ }

import { LitElement } from 'lit';
export declare class W3mDesktopWalletSelection extends LitElement {
static styles: any[];
private onCoinbaseWallet;
private onDesktopWallet;
private onInjectedWallet;
private onMetaMask;
private onInstallConnector;
private onConnectorWallet;

@@ -12,2 +11,3 @@ private desktopWalletsTemplate;

private connectorWalletsTemplate;
private recentWalletTemplate;
protected render(): import("lit-html").TemplateResult<1>;

@@ -14,0 +14,0 @@ }

@@ -9,2 +9,3 @@ import { LitElement } from 'lit';

private connectorWalletsTemplate;
private recentWalletTemplate;
protected render(): import("lit-html").TemplateResult<1>;

@@ -11,0 +12,0 @@ }

@@ -7,3 +7,3 @@ import { LitElement } from 'lit';

private get overlayEl();
private getConnectionUri;
private createConnectionAndWait;
protected render(): import("lit-html").TemplateResult<1>;

@@ -10,0 +10,0 @@ }

import type { TemplateResult } from 'lit';
import QRCodeUtil from 'qrcode';
export declare function getMatrix(value: string, errorCorrectionLevel: QRCodeUtil.QRCodeErrorCorrectionLevel): any;
export declare function getDots(uri: string, size: number, logoSize: number, theme: 'dark' | 'light'): TemplateResult<1 | 2>[];
export declare const QrCodeUtil: {
generate(uri: string, size: number, logoSize: number, theme: 'dark' | 'light'): TemplateResult<1 | 2>[];
};

@@ -1,3 +0,2 @@

import './w3m-coinbase-extension-connector-view';
import './w3m-coinbase-mobile-connector-view';
import './w3m-account-view';
import './w3m-connect-wallet-view';

@@ -8,6 +7,7 @@ import './w3m-desktop-connector-view';

import './w3m-injected-connector-view';
import './w3m-metamask-connector-view';
import './w3m-install-connector-view';
import './w3m-qrcode-view';
import './w3m-select-network-view';
import './w3m-switch-network-view';
import './w3m-wallet-explorer-view';
import './w3m-wallet-filter-view';
import { LitElement } from 'lit';
export declare class W3mConnectWalletView extends LitElement {
static styles: import("lit").CSSResult[];
private viewTemplate;
protected render(): import("lit-html").TemplateResult<1>;

@@ -5,0 +6,0 @@ }

import { LitElement } from 'lit';
export declare class W3mDesktopConnectorView extends LitElement {
static styles: any[];
private uri;
constructor();
private getRouterData;
private onOpenHref;
private onConnect;
private onMobile;
private onInstall;
private onFormatAndRedirect;
private createConnectionAndWait;
private onConnectWithMobile;
private onGoToWallet;
protected render(): import("lit-html").TemplateResult<1>;

@@ -11,0 +12,0 @@ }

@@ -16,4 +16,6 @@ import { LitElement } from 'lit';

private onConnectPlatform;
private onConnectExtension;
private readonly searchDebounce;
private onSearchChange;
private coinbaseConnectorTemplate;
protected render(): import("lit-html").TemplateResult<1>;

@@ -20,0 +22,0 @@ }

{
"name": "@web3modal/ui",
"version": "2.0.0-d873f5c",
"version": "2.0.0-d8cdbe6",
"main": "dist/index.js",

@@ -19,5 +19,5 @@ "type": "module",

"dependencies": {
"@web3modal/core": "2.0.0-d873f5c",
"lit": "2.4.1",
"motion": "10.14.3",
"@web3modal/core": "2.0.0-d8cdbe6",
"lit": "2.5.0",
"motion": "10.15.3",
"qrcode": "1.5.1"

@@ -27,4 +27,4 @@ },

"@types/qrcode": "1.5.0",
"eslint-plugin-lit": "1.6.1",
"eslint-plugin-wc": "1.3.2"
"eslint-plugin-lit": "1.7.2",
"eslint-plugin-wc": "1.4.0"
},

@@ -31,0 +31,0 @@ "keywords": [

@@ -12,3 +12,3 @@ ### 📚 [Documentation](https://docs.walletconnect.com/2.0/introduction/web3modal/about)

<p align="center">
<img src="./.github/assets/header.png" alt="" border="0">
<img src="./.github/assets/header.jpg" alt="" border="0">
</p>

@@ -15,0 +15,0 @@

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc