@lukso/up-connector 0.7.9 → 0.7.10-dev.2b7df2e

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.js CHANGED
@@ -7,7 +7,7 @@ import {
7
7
  EMBEDDED_WALLET_URL_PROD,
8
8
  UP_EXTENSION_ID,
9
9
  setupLuksoConnector
10
- } from "./chunk-PKYHZ2HN.js";
10
+ } from "./chunk-KY4FUPVF.js";
11
11
  import {
12
12
  DraggableAvatar,
13
13
  createAvatar
@@ -29,7 +29,7 @@ import {
29
29
  setupWagmi,
30
30
  wagmiService,
31
31
  watchConnection
32
- } from "./chunk-H4DVQ5E2.js";
32
+ } from "./chunk-RT3VD5WR.js";
33
33
  import "./chunk-EUXUH3YW.js";
34
34
 
35
35
  // src/connector.ts
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lukso/up-connector",
3
- "version": "0.7.9",
3
+ "version": "0.7.10-dev.2b7df2e",
4
4
  "description": "Universal Profile connector with draggable avatar and connection modal",
5
5
  "main": "./dist/index.cjs",
6
6
  "module": "./dist/index.js",
@@ -77,15 +77,15 @@
77
77
  "dependencies": {
78
78
  "@lit/task": "^1.0.3",
79
79
  "@lukso/up-provider": "0.3.7",
80
- "@lukso/web-components": "^1.172.18",
80
+ "@lukso/web-components": "^1.172.20",
81
81
  "debug": "^4.4.3",
82
82
  "lit": "3.3.1",
83
- "ws": "^8.18.3",
83
+ "ws": "^8.19.0",
84
84
  "zxcvbn": "^4.4.2",
85
- "@lukso/passkey-auth": "1.2.5",
86
- "@lukso/core": "1.2.7",
87
- "@lukso/transaction-view-core": "0.6.5",
88
- "@lukso/transaction-view-headless": "0.4.5"
85
+ "@lukso/core": "1.2.8-dev.2b7df2e",
86
+ "@lukso/passkey-auth": "1.2.6-dev.2b7df2e",
87
+ "@lukso/transaction-view-core": "0.6.6-dev.2b7df2e",
88
+ "@lukso/transaction-view-headless": "0.4.6-dev.2b7df2e"
89
89
  },
90
90
  "peerDependencies": {
91
91
  "@wagmi/connectors": "^7.0.0",
@@ -107,15 +107,15 @@
107
107
  "@tailwindcss/typography": "^0.5.19",
108
108
  "@types/debug": "^4.1.12",
109
109
  "@types/zxcvbn": "^4.4.5",
110
- "@wagmi/connectors": "^7.0.3",
111
- "@wagmi/core": "^3.0.1",
110
+ "@wagmi/connectors": "^7.0.6",
111
+ "@wagmi/core": "^3.0.2",
112
112
  "autoprefixer": "^10.4.23",
113
113
  "postcss": "^8.5.6",
114
114
  "postcss-import": "^16.1.1",
115
115
  "tailwindcss": "^3.4.19",
116
116
  "tsup": "^8.5.1",
117
117
  "typescript": "^5.9.3",
118
- "viem": "^2.43.3",
118
+ "viem": "^2.43.5",
119
119
  "vitest": "^4.0.16"
120
120
  },
121
121
  "tsup": {
@@ -291,6 +291,7 @@ export class ConnectionView extends withTheme(
291
291
  name=${iconName}
292
292
  size=${this.device?.isMobile ? 'small' : 'medium'}
293
293
  class="mr-2"
294
+ color="${this.theme === 'dark' ? 'neutral-100' : 'neutral-20'}"
294
295
  secondary-color="${this.theme === 'dark' ? 'neutral-20' : 'neutral-100'}"
295
296
  ></lukso-icon>
296
297
  ${label}
@@ -330,6 +330,7 @@ export class EoaConnectionView extends withTheme(
330
330
  return keyed(
331
331
  wallet.slug,
332
332
  html`<lukso-button
333
+ .theme=${this.theme}
333
334
  variant="secondary"
334
335
  size=${this.device?.isMobile ? 'medium' : 'large'}
335
336
  is-full-width
@@ -347,9 +348,10 @@ export class EoaConnectionView extends withTheme(
347
348
  ${
348
349
  isInstalled
349
350
  ? html`<lukso-tag
350
- size="x-small"
351
+ size="${this.device?.isMobile ? 'x-small' : 'small'}"
351
352
  text-color="green-45"
352
- background-color="green-85"
353
+ background-color="${this.theme === 'dark' ? 'neutral-20' : 'neutral-100'}"
354
+ border-color="green-45"
353
355
  >
354
356
  ${this.formatMessage('connect_modal_installed')}
355
357
  </lukso-tag>`