@reown/appkit-cdn 1.3.1 → 1.3.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.
Files changed (32) hide show
  1. package/dist/{appkit-DkdkTbJy.js → appkit-CL0OgGE3.js} +970 -710
  2. package/dist/{appkit-DkdkTbJy.js.map → appkit-CL0OgGE3.js.map} +1 -1
  3. package/dist/appkit.js +8 -8
  4. package/dist/{ccip-DLENYyuh.js → ccip-DwyKipDA.js} +2 -2
  5. package/dist/{ccip-DLENYyuh.js.map → ccip-DwyKipDA.js.map} +1 -1
  6. package/dist/{hooks.module-CZdrzkF3.js → hooks.module-BMAiCsjR.js} +2 -2
  7. package/dist/{hooks.module-CZdrzkF3.js.map → hooks.module-BMAiCsjR.js.map} +1 -1
  8. package/dist/{index-D_KUcJhf.js → index-BBqHRRQx.js} +3 -3
  9. package/dist/{index-D_KUcJhf.js.map → index-BBqHRRQx.js.map} +1 -1
  10. package/dist/{index-DH0cOZlK.js → index-BPtkh3Hr.js} +3 -3
  11. package/dist/{index-DH0cOZlK.js.map → index-BPtkh3Hr.js.map} +1 -1
  12. package/dist/{index-DLCOOH_O.js → index-BYa2Fgkb.js} +8 -6
  13. package/dist/{index-DLCOOH_O.js.map → index-BYa2Fgkb.js.map} +1 -1
  14. package/dist/{index-AR0b1xd1.js → index-B_CdL_vf.js} +3 -3
  15. package/dist/{index-AR0b1xd1.js.map → index-B_CdL_vf.js.map} +1 -1
  16. package/dist/{index-COzyUuJF.js → index-BkJs1o-3.js} +3 -3
  17. package/dist/{index-COzyUuJF.js.map → index-BkJs1o-3.js.map} +1 -1
  18. package/dist/{index-BRlqbOuz.js → index-DDV7C-Dq.js} +2 -2
  19. package/dist/{index-BRlqbOuz.js.map → index-DDV7C-Dq.js.map} +1 -1
  20. package/dist/{index-C0vs6EaC.js → index-Do5F_UHc.js} +2 -2
  21. package/dist/{index-C0vs6EaC.js.map → index-Do5F_UHc.js.map} +1 -1
  22. package/dist/{index-UmRa0AKq.js → index-t51apqeL.js} +3 -3
  23. package/dist/{index-UmRa0AKq.js.map → index-t51apqeL.js.map} +1 -1
  24. package/dist/{index.es-ohtoPMXU.js → index.es-j3RJkSKj.js} +3 -3
  25. package/dist/{index.es-ohtoPMXU.js.map → index.es-j3RJkSKj.js.map} +1 -1
  26. package/dist/{metamask-sdk-CfeFsbiM.js → metamask-sdk-CzIVh3NN.js} +2 -2
  27. package/dist/{metamask-sdk-CfeFsbiM.js.map → metamask-sdk-CzIVh3NN.js.map} +1 -1
  28. package/dist/{native-BWr1yTvD.js → native-heDj6rAL.js} +2 -2
  29. package/dist/{native-BWr1yTvD.js.map → native-heDj6rAL.js.map} +1 -1
  30. package/dist/{w3m-modal-BnrhpO6B.js → w3m-modal-B_Hh2Aq8.js} +5 -5
  31. package/dist/{w3m-modal-BnrhpO6B.js.map → w3m-modal-B_Hh2Aq8.js.map} +1 -1
  32. package/package.json +7 -7
@@ -5385,6 +5385,7 @@ const BlockchainApiController = {
5385
5385
  const state$l = proxy({
5386
5386
  message: "",
5387
5387
  variant: "success",
5388
+ svg: void 0,
5388
5389
  open: false
5389
5390
  });
5390
5391
  const SnackController = {
@@ -5393,29 +5394,34 @@ const SnackController = {
5393
5394
  return subscribeKey(state$l, key2, callback);
5394
5395
  },
5395
5396
  showLoading(message) {
5396
- this._showMessage(message, "loading");
5397
+ this._showMessage({ message, variant: "loading" });
5397
5398
  },
5398
5399
  showSuccess(message) {
5399
- this._showMessage(message, "success");
5400
+ this._showMessage({ message, variant: "success" });
5401
+ },
5402
+ showSvg(message, svg) {
5403
+ this._showMessage({ message, svg });
5400
5404
  },
5401
5405
  showError(message) {
5402
5406
  const errorMessage = CoreHelperUtil.parseError(message);
5403
- this._showMessage(errorMessage, "error");
5407
+ this._showMessage({ message: errorMessage, variant: "error" });
5404
5408
  },
5405
5409
  hide() {
5406
5410
  state$l.open = false;
5407
5411
  },
5408
- _showMessage(message, variant) {
5412
+ _showMessage({ message, svg, variant = "success" }) {
5409
5413
  if (state$l.open) {
5410
5414
  state$l.open = false;
5411
5415
  setTimeout(() => {
5412
5416
  state$l.message = message;
5413
5417
  state$l.variant = variant;
5418
+ state$l.svg = svg;
5414
5419
  state$l.open = true;
5415
5420
  }, 150);
5416
5421
  } else {
5417
5422
  state$l.message = message;
5418
5423
  state$l.variant = variant;
5424
+ state$l.svg = svg;
5419
5425
  state$l.open = true;
5420
5426
  }
5421
5427
  }
@@ -12532,6 +12538,7 @@ const SwapController = {
12532
12538
  type: "track",
12533
12539
  event: "SWAP_ERROR",
12534
12540
  properties: {
12541
+ message: (error == null ? void 0 : error.shortMessage) || (error == null ? void 0 : error.message) || "Unknown",
12535
12542
  network: ((_j = ChainController.state.activeCaipNetwork) == null ? void 0 : _j.caipNetworkId) || "",
12536
12543
  swapFromToken: ((_k = this.state.sourceToken) == null ? void 0 : _k.symbol) || "",
12537
12544
  swapToToken: ((_l = this.state.toToken) == null ? void 0 : _l.symbol) || "",
@@ -13262,12 +13269,12 @@ const ApiController = {
13262
13269
  subscribeKey(key2, callback) {
13263
13270
  return subscribeKey(state$9, key2, callback);
13264
13271
  },
13265
- _getApiHeaders() {
13272
+ _getSdkProperties() {
13266
13273
  const { projectId, sdkType, sdkVersion } = OptionsController.state;
13267
13274
  return {
13268
- "x-project-id": projectId,
13269
- "x-sdk-type": sdkType || "appkit",
13270
- "x-sdk-version": sdkVersion || "html-wagmi-4.2.2"
13275
+ projectId,
13276
+ st: sdkType || "appkit",
13277
+ sv: sdkVersion || "html-wagmi-4.2.2"
13271
13278
  };
13272
13279
  },
13273
13280
  _filterOutExtensions(wallets2) {
@@ -13278,27 +13285,27 @@ const ApiController = {
13278
13285
  },
13279
13286
  async _fetchWalletImage(imageId) {
13280
13287
  const imageUrl = `${api$1.baseUrl}/getWalletImage/${imageId}`;
13281
- const blob2 = await api$1.getBlob({ path: imageUrl, headers: ApiController._getApiHeaders() });
13288
+ const blob2 = await api$1.getBlob({ path: imageUrl, params: ApiController._getSdkProperties() });
13282
13289
  AssetController.setWalletImage(imageId, URL.createObjectURL(blob2));
13283
13290
  },
13284
13291
  async _fetchNetworkImage(imageId) {
13285
13292
  const imageUrl = `${api$1.baseUrl}/public/getAssetImage/${imageId}`;
13286
- const blob2 = await api$1.getBlob({ path: imageUrl, headers: ApiController._getApiHeaders() });
13293
+ const blob2 = await api$1.getBlob({ path: imageUrl, params: ApiController._getSdkProperties() });
13287
13294
  AssetController.setNetworkImage(imageId, URL.createObjectURL(blob2));
13288
13295
  },
13289
13296
  async _fetchConnectorImage(imageId) {
13290
13297
  const imageUrl = `${api$1.baseUrl}/public/getAssetImage/${imageId}`;
13291
- const blob2 = await api$1.getBlob({ path: imageUrl, headers: ApiController._getApiHeaders() });
13298
+ const blob2 = await api$1.getBlob({ path: imageUrl, params: ApiController._getSdkProperties() });
13292
13299
  AssetController.setConnectorImage(imageId, URL.createObjectURL(blob2));
13293
13300
  },
13294
13301
  async _fetchCurrencyImage(countryCode) {
13295
13302
  const imageUrl = `${api$1.baseUrl}/public/getCurrencyImage/${countryCode}`;
13296
- const blob2 = await api$1.getBlob({ path: imageUrl, headers: ApiController._getApiHeaders() });
13303
+ const blob2 = await api$1.getBlob({ path: imageUrl, params: ApiController._getSdkProperties() });
13297
13304
  AssetController.setCurrencyImage(countryCode, URL.createObjectURL(blob2));
13298
13305
  },
13299
13306
  async _fetchTokenImage(symbol) {
13300
13307
  const imageUrl = `${api$1.baseUrl}/public/getTokenImage/${symbol}`;
13301
- const blob2 = await api$1.getBlob({ path: imageUrl, headers: ApiController._getApiHeaders() });
13308
+ const blob2 = await api$1.getBlob({ path: imageUrl, params: ApiController._getSdkProperties() });
13302
13309
  AssetController.setTokenImage(symbol, URL.createObjectURL(blob2));
13303
13310
  },
13304
13311
  async fetchNetworkImages() {
@@ -13324,8 +13331,8 @@ const ApiController = {
13324
13331
  if (featuredWalletIds == null ? void 0 : featuredWalletIds.length) {
13325
13332
  const { data: data2 } = await api$1.get({
13326
13333
  path: "/getWallets",
13327
- headers: ApiController._getApiHeaders(),
13328
13334
  params: {
13335
+ ...ApiController._getSdkProperties(),
13329
13336
  page: "1",
13330
13337
  entries: (featuredWalletIds == null ? void 0 : featuredWalletIds.length) ? String(featuredWalletIds.length) : recommendedEntries,
13331
13338
  include: featuredWalletIds == null ? void 0 : featuredWalletIds.join(",")
@@ -13344,8 +13351,8 @@ const ApiController = {
13344
13351
  const exclude = [...excludeWalletIds ?? [], ...featuredWalletIds ?? []].filter(Boolean);
13345
13352
  const { data: data2, count } = await api$1.get({
13346
13353
  path: "/getWallets",
13347
- headers: ApiController._getApiHeaders(),
13348
13354
  params: {
13355
+ ...ApiController._getSdkProperties(),
13349
13356
  page: "1",
13350
13357
  chains: (_a3 = ChainController.state.activeCaipNetwork) == null ? void 0 : _a3.caipNetworkId,
13351
13358
  entries: recommendedEntries,
@@ -13372,8 +13379,8 @@ const ApiController = {
13372
13379
  ].filter(Boolean);
13373
13380
  const { data: data2, count } = await api$1.get({
13374
13381
  path: "/getWallets",
13375
- headers: ApiController._getApiHeaders(),
13376
13382
  params: {
13383
+ ...ApiController._getSdkProperties(),
13377
13384
  page: String(page),
13378
13385
  entries,
13379
13386
  chains: (_a3 = ChainController.state.activeCaipNetwork) == null ? void 0 : _a3.caipNetworkId,
@@ -13391,8 +13398,8 @@ const ApiController = {
13391
13398
  var _a3;
13392
13399
  const { data: data2 } = await api$1.get({
13393
13400
  path: "/getWallets",
13394
- headers: ApiController._getApiHeaders(),
13395
13401
  params: {
13402
+ ...ApiController._getSdkProperties(),
13396
13403
  page: "1",
13397
13404
  entries: String(ids.length),
13398
13405
  chains: (_a3 = ChainController.state.activeCaipNetwork) == null ? void 0 : _a3.caipNetworkId,
@@ -13407,22 +13414,28 @@ const ApiController = {
13407
13414
  });
13408
13415
  }
13409
13416
  },
13410
- async searchWallet({ search }) {
13417
+ async searchWallet({ search, badge }) {
13411
13418
  var _a3;
13412
13419
  const { includeWalletIds, excludeWalletIds } = OptionsController.state;
13413
13420
  state$9.search = [];
13414
13421
  const { data: data2 } = await api$1.get({
13415
13422
  path: "/getWallets",
13416
- headers: ApiController._getApiHeaders(),
13417
13423
  params: {
13424
+ ...ApiController._getSdkProperties(),
13418
13425
  page: "1",
13419
13426
  entries: "100",
13420
13427
  search: search == null ? void 0 : search.trim(),
13428
+ badge_type: badge,
13421
13429
  chains: (_a3 = ChainController.state.activeCaipNetwork) == null ? void 0 : _a3.caipNetworkId,
13422
13430
  include: includeWalletIds == null ? void 0 : includeWalletIds.join(","),
13423
13431
  exclude: excludeWalletIds == null ? void 0 : excludeWalletIds.join(",")
13424
13432
  }
13425
13433
  });
13434
+ EventsController.sendEvent({
13435
+ type: "track",
13436
+ event: "SEARCH_WALLET",
13437
+ properties: { badge: badge ?? "", search: search ?? "" }
13438
+ });
13426
13439
  const images = data2.map((w2) => w2.image_id).filter(Boolean);
13427
13440
  await Promise.allSettled([
13428
13441
  ...images.map((id) => ApiController._fetchWalletImage(id)),
@@ -13452,7 +13465,7 @@ const ApiController = {
13452
13465
  async fetchAnalyticsConfig() {
13453
13466
  const { isAnalyticsEnabled } = await api$1.get({
13454
13467
  path: "/getAnalyticsConfig",
13455
- headers: ApiController._getApiHeaders()
13468
+ params: ApiController._getSdkProperties()
13456
13469
  });
13457
13470
  OptionsController.setFeatures({ analytics: isAnalyticsEnabled });
13458
13471
  }
@@ -15570,7 +15583,7 @@ function customElement(tagName) {
15570
15583
  return typeof classOrDescriptor === "function" ? legacyCustomElement(tagName, classOrDescriptor) : standardCustomElement(tagName, classOrDescriptor);
15571
15584
  };
15572
15585
  }
15573
- const styles$2i = i$6`
15586
+ const styles$2k = i$6`
15574
15587
  :host {
15575
15588
  display: block;
15576
15589
  border-radius: clamp(0px, var(--wui-border-radius-l), 44px);
@@ -15579,7 +15592,7 @@ const styles$2i = i$6`
15579
15592
  overflow: hidden;
15580
15593
  }
15581
15594
  `;
15582
- var __decorate$2W = function(decorators, target, key2, desc) {
15595
+ var __decorate$2Y = function(decorators, target, key2, desc) {
15583
15596
  var c2 = arguments.length, r3 = c2 < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key2) : desc, d4;
15584
15597
  if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
15585
15598
  r3 = Reflect.decorate(decorators, target, key2, desc);
@@ -15594,8 +15607,8 @@ let WuiCard = class WuiCard2 extends r$6 {
15594
15607
  return x$3`<slot></slot>`;
15595
15608
  }
15596
15609
  };
15597
- WuiCard.styles = [resetStyles, styles$2i];
15598
- WuiCard = __decorate$2W([
15610
+ WuiCard.styles = [resetStyles, styles$2k];
15611
+ WuiCard = __decorate$2Y([
15599
15612
  customElement("wui-card")
15600
15613
  ], WuiCard);
15601
15614
  /**
@@ -15638,7 +15651,7 @@ function n$5(t2) {
15638
15651
  function r$4(r3) {
15639
15652
  return n$5({ ...r3, state: true, attribute: false });
15640
15653
  }
15641
- const styles$2h = i$6`
15654
+ const styles$2j = i$6`
15642
15655
  :host {
15643
15656
  display: flex;
15644
15657
  aspect-ratio: 1 / 1;
@@ -16438,6 +16451,14 @@ const walletConnectLightBrownSvg = b$1`
16438
16451
  </defs>
16439
16452
  </svg>
16440
16453
  `;
16454
+ const walletConnectBrownSvg = b$1`
16455
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
16456
+ <circle cx="11" cy="11" r="11" transform="matrix(-1 0 0 1 23 1)" fill="#202020"/>
16457
+ <circle cx="11" cy="11" r="11.5" transform="matrix(-1 0 0 1 23 1)" stroke="#C7B994" stroke-opacity="0.7"/>
16458
+ <path d="M15.4523 11.0686L16.7472 9.78167C13.8205 6.87297 10.1838 6.87297 7.25708 9.78167L8.55201 11.0686C10.7779 8.85645 13.2279 8.85645 15.4538 11.0686H15.4523Z" fill="#C7B994"/>
16459
+ <path d="M15.0199 14.067L12 11.0656L8.98 14.067L5.96004 11.0656L4.66663 12.3511L8.98 16.6393L12 13.638L15.0199 16.6393L19.3333 12.3511L18.0399 11.0656L15.0199 14.067Z" fill="#C7B994"/>
16460
+ </svg>
16461
+ `;
16441
16462
  const warningCircleSvg = b$1`<svg fill="none" viewBox="0 0 20 20">
16442
16463
  <path
16443
16464
  fill="currentColor"
@@ -16484,7 +16505,7 @@ const exclamationTriangleSvg = b$1`<svg width="16" height="16" viewBox="0 0 16 1
16484
16505
  <path d="M15.0162 11.6312L9.55059 2.13937C9.39228 1.86862 9.16584 1.64405 8.8938 1.48798C8.62176 1.33192 8.3136 1.2498 7.99997 1.2498C7.68634 1.2498 7.37817 1.33192 7.10613 1.48798C6.83409 1.64405 6.60765 1.86862 6.44934 2.13937L0.983716 11.6312C0.830104 11.894 0.749146 12.1928 0.749146 12.4972C0.749146 12.8015 0.830104 13.1004 0.983716 13.3631C1.14027 13.6352 1.3664 13.8608 1.63889 14.0166C1.91139 14.1725 2.22044 14.253 2.53434 14.25H13.4656C13.7793 14.2528 14.0881 14.1721 14.3603 14.0163C14.6326 13.8604 14.8585 13.635 15.015 13.3631C15.1688 13.1005 15.2499 12.8017 15.2502 12.4973C15.2504 12.193 15.1696 11.8941 15.0162 11.6312ZM13.7162 12.6125C13.6908 12.6558 13.6541 12.6914 13.6101 12.7157C13.5661 12.7399 13.5164 12.7517 13.4662 12.75H2.53434C2.48415 12.7517 2.43442 12.7399 2.39042 12.7157C2.34641 12.6914 2.30976 12.6558 2.28434 12.6125C2.26278 12.5774 2.25137 12.5371 2.25137 12.4959C2.25137 12.4548 2.26278 12.4144 2.28434 12.3794L7.74997 2.88749C7.77703 2.84583 7.81408 2.8116 7.85774 2.7879C7.9014 2.7642 7.95029 2.75178 7.99997 2.75178C8.04964 2.75178 8.09854 2.7642 8.1422 2.7879C8.18586 2.8116 8.2229 2.84583 8.24997 2.88749L13.715 12.3794C13.7367 12.4143 13.7483 12.4546 13.7486 12.4958C13.7488 12.5369 13.7376 12.5773 13.7162 12.6125ZM7.24997 8.49999V6.49999C7.24997 6.30108 7.32898 6.11031 7.46964 5.96966C7.61029 5.82901 7.80105 5.74999 7.99997 5.74999C8.19888 5.74999 8.38964 5.82901 8.5303 5.96966C8.67095 6.11031 8.74997 6.30108 8.74997 6.49999V8.49999C8.74997 8.6989 8.67095 8.88967 8.5303 9.03032C8.38964 9.17097 8.19888 9.24999 7.99997 9.24999C7.80105 9.24999 7.61029 9.17097 7.46964 9.03032C7.32898 8.88967 7.24997 8.6989 7.24997 8.49999ZM8.99997 11C8.99997 11.1978 8.94132 11.3911 8.83144 11.5556C8.72155 11.72 8.56538 11.8482 8.38265 11.9239C8.19992 11.9996 7.99886 12.0194 7.80488 11.9808C7.6109 11.9422 7.43271 11.847 7.29286 11.7071C7.15301 11.5672 7.05777 11.3891 7.01918 11.1951C6.9806 11.0011 7.0004 10.8 7.07609 10.6173C7.15177 10.4346 7.27995 10.2784 7.4444 10.1685C7.60885 10.0586 7.80219 9.99999 7.99997 9.99999C8.26518 9.99999 8.51954 10.1053 8.70707 10.2929C8.89461 10.4804 8.99997 10.7348 8.99997 11Z" fill="currentColor"/>
16485
16506
  </svg>
16486
16507
  `;
16487
- var __decorate$2V = function(decorators, target, key2, desc) {
16508
+ var __decorate$2X = function(decorators, target, key2, desc) {
16488
16509
  var c2 = arguments.length, r3 = c2 < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key2) : desc, d4;
16489
16510
  if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
16490
16511
  r3 = Reflect.decorate(decorators, target, key2, desc);
@@ -16565,6 +16586,7 @@ const svgOptions$1 = {
16565
16586
  wallet: walletSvg,
16566
16587
  walletConnect: walletConnectSvg,
16567
16588
  walletConnectLightBrown: walletConnectLightBrownSvg,
16589
+ walletConnectBrown: walletConnectBrownSvg,
16568
16590
  walletPlaceholder: walletPlaceholderSvg,
16569
16591
  warningCircle: warningCircleSvg,
16570
16592
  x: xSvg,
@@ -16586,20 +16608,20 @@ let WuiIcon = class WuiIcon2 extends r$6 {
16586
16608
  return x$3`${svgOptions$1[this.name]}`;
16587
16609
  }
16588
16610
  };
16589
- WuiIcon.styles = [resetStyles, colorStyles, styles$2h];
16590
- __decorate$2V([
16611
+ WuiIcon.styles = [resetStyles, colorStyles, styles$2j];
16612
+ __decorate$2X([
16591
16613
  n$5()
16592
16614
  ], WuiIcon.prototype, "size", void 0);
16593
- __decorate$2V([
16615
+ __decorate$2X([
16594
16616
  n$5()
16595
16617
  ], WuiIcon.prototype, "name", void 0);
16596
- __decorate$2V([
16618
+ __decorate$2X([
16597
16619
  n$5()
16598
16620
  ], WuiIcon.prototype, "color", void 0);
16599
- WuiIcon = __decorate$2V([
16621
+ WuiIcon = __decorate$2X([
16600
16622
  customElement("wui-icon")
16601
16623
  ], WuiIcon);
16602
- const styles$2g = i$6`
16624
+ const styles$2i = i$6`
16603
16625
  :host {
16604
16626
  display: block;
16605
16627
  width: var(--local-width);
@@ -16615,7 +16637,7 @@ const styles$2g = i$6`
16615
16637
  border-radius: inherit;
16616
16638
  }
16617
16639
  `;
16618
- var __decorate$2U = function(decorators, target, key2, desc) {
16640
+ var __decorate$2W = function(decorators, target, key2, desc) {
16619
16641
  var c2 = arguments.length, r3 = c2 < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key2) : desc, d4;
16620
16642
  if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
16621
16643
  r3 = Reflect.decorate(decorators, target, key2, desc);
@@ -16643,20 +16665,20 @@ let WuiImage = class WuiImage2 extends r$6 {
16643
16665
  this.dispatchEvent(new CustomEvent("onLoadError", { bubbles: true, composed: true }));
16644
16666
  }
16645
16667
  };
16646
- WuiImage.styles = [resetStyles, colorStyles, styles$2g];
16647
- __decorate$2U([
16668
+ WuiImage.styles = [resetStyles, colorStyles, styles$2i];
16669
+ __decorate$2W([
16648
16670
  n$5()
16649
16671
  ], WuiImage.prototype, "src", void 0);
16650
- __decorate$2U([
16672
+ __decorate$2W([
16651
16673
  n$5()
16652
16674
  ], WuiImage.prototype, "alt", void 0);
16653
- __decorate$2U([
16675
+ __decorate$2W([
16654
16676
  n$5()
16655
16677
  ], WuiImage.prototype, "size", void 0);
16656
- WuiImage = __decorate$2U([
16678
+ WuiImage = __decorate$2W([
16657
16679
  customElement("wui-image")
16658
16680
  ], WuiImage);
16659
- const styles$2f = i$6`
16681
+ const styles$2h = i$6`
16660
16682
  :host {
16661
16683
  display: block;
16662
16684
  width: var(--wui-box-size-lg);
@@ -16685,7 +16707,7 @@ const styles$2f = i$6`
16685
16707
  }
16686
16708
  }
16687
16709
  `;
16688
- var __decorate$2T = function(decorators, target, key2, desc) {
16710
+ var __decorate$2V = function(decorators, target, key2, desc) {
16689
16711
  var c2 = arguments.length, r3 = c2 < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key2) : desc, d4;
16690
16712
  if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
16691
16713
  r3 = Reflect.decorate(decorators, target, key2, desc);
@@ -16708,11 +16730,11 @@ let WuiLoadingHexagon = class WuiLoadingHexagon2 extends r$6 {
16708
16730
  `;
16709
16731
  }
16710
16732
  };
16711
- WuiLoadingHexagon.styles = [resetStyles, styles$2f];
16712
- WuiLoadingHexagon = __decorate$2T([
16733
+ WuiLoadingHexagon.styles = [resetStyles, styles$2h];
16734
+ WuiLoadingHexagon = __decorate$2V([
16713
16735
  customElement("wui-loading-hexagon")
16714
16736
  ], WuiLoadingHexagon);
16715
- const styles$2e = i$6`
16737
+ const styles$2g = i$6`
16716
16738
  :host {
16717
16739
  display: flex;
16718
16740
  }
@@ -16781,7 +16803,7 @@ const styles$2e = i$6`
16781
16803
  }
16782
16804
  }
16783
16805
  `;
16784
- var __decorate$2S = function(decorators, target, key2, desc) {
16806
+ var __decorate$2U = function(decorators, target, key2, desc) {
16785
16807
  var c2 = arguments.length, r3 = c2 < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key2) : desc, d4;
16786
16808
  if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
16787
16809
  r3 = Reflect.decorate(decorators, target, key2, desc);
@@ -16805,17 +16827,17 @@ let WuiLoadingSpinner = class WuiLoadingSpinner2 extends r$6 {
16805
16827
  </svg>`;
16806
16828
  }
16807
16829
  };
16808
- WuiLoadingSpinner.styles = [resetStyles, styles$2e];
16809
- __decorate$2S([
16830
+ WuiLoadingSpinner.styles = [resetStyles, styles$2g];
16831
+ __decorate$2U([
16810
16832
  n$5()
16811
16833
  ], WuiLoadingSpinner.prototype, "color", void 0);
16812
- __decorate$2S([
16834
+ __decorate$2U([
16813
16835
  n$5()
16814
16836
  ], WuiLoadingSpinner.prototype, "size", void 0);
16815
- WuiLoadingSpinner = __decorate$2S([
16837
+ WuiLoadingSpinner = __decorate$2U([
16816
16838
  customElement("wui-loading-spinner")
16817
16839
  ], WuiLoadingSpinner);
16818
- const styles$2d = i$6`
16840
+ const styles$2f = i$6`
16819
16841
  :host {
16820
16842
  display: block;
16821
16843
  width: var(--wui-box-size-md);
@@ -16841,7 +16863,7 @@ const styles$2d = i$6`
16841
16863
  }
16842
16864
  }
16843
16865
  `;
16844
- var __decorate$2R = function(decorators, target, key2, desc) {
16866
+ var __decorate$2T = function(decorators, target, key2, desc) {
16845
16867
  var c2 = arguments.length, r3 = c2 < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key2) : desc, d4;
16846
16868
  if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
16847
16869
  r3 = Reflect.decorate(decorators, target, key2, desc);
@@ -16881,14 +16903,14 @@ let WuiLoadingThumbnail = class WuiLoadingThumbnail2 extends r$6 {
16881
16903
  `;
16882
16904
  }
16883
16905
  };
16884
- WuiLoadingThumbnail.styles = [resetStyles, styles$2d];
16885
- __decorate$2R([
16906
+ WuiLoadingThumbnail.styles = [resetStyles, styles$2f];
16907
+ __decorate$2T([
16886
16908
  n$5({ type: Number })
16887
16909
  ], WuiLoadingThumbnail.prototype, "radius", void 0);
16888
- WuiLoadingThumbnail = __decorate$2R([
16910
+ WuiLoadingThumbnail = __decorate$2T([
16889
16911
  customElement("wui-loading-thumbnail")
16890
16912
  ], WuiLoadingThumbnail);
16891
- const styles$2c = i$6`
16913
+ const styles$2e = i$6`
16892
16914
  :host {
16893
16915
  display: block;
16894
16916
  box-shadow: inset 0 0 0 1px var(--wui-color-gray-glass-005);
@@ -16929,7 +16951,7 @@ const styles$2c = i$6`
16929
16951
  }
16930
16952
  }
16931
16953
  `;
16932
- var __decorate$2Q = function(decorators, target, key2, desc) {
16954
+ var __decorate$2S = function(decorators, target, key2, desc) {
16933
16955
  var c2 = arguments.length, r3 = c2 < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key2) : desc, d4;
16934
16956
  if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
16935
16957
  r3 = Reflect.decorate(decorators, target, key2, desc);
@@ -16956,20 +16978,20 @@ let WuiShimmer = class WuiShimmer2 extends r$6 {
16956
16978
  return x$3`<slot></slot>`;
16957
16979
  }
16958
16980
  };
16959
- WuiShimmer.styles = [styles$2c];
16960
- __decorate$2Q([
16981
+ WuiShimmer.styles = [styles$2e];
16982
+ __decorate$2S([
16961
16983
  n$5()
16962
16984
  ], WuiShimmer.prototype, "width", void 0);
16963
- __decorate$2Q([
16985
+ __decorate$2S([
16964
16986
  n$5()
16965
16987
  ], WuiShimmer.prototype, "height", void 0);
16966
- __decorate$2Q([
16988
+ __decorate$2S([
16967
16989
  n$5()
16968
16990
  ], WuiShimmer.prototype, "borderRadius", void 0);
16969
- __decorate$2Q([
16991
+ __decorate$2S([
16970
16992
  n$5()
16971
16993
  ], WuiShimmer.prototype, "variant", void 0);
16972
- WuiShimmer = __decorate$2Q([
16994
+ WuiShimmer = __decorate$2S([
16973
16995
  customElement("wui-shimmer")
16974
16996
  ], WuiShimmer);
16975
16997
  /**
@@ -17026,7 +17048,7 @@ const e$2 = e$3(class extends i$2 {
17026
17048
  return T$2;
17027
17049
  }
17028
17050
  });
17029
- const styles$2b = i$6`
17051
+ const styles$2d = i$6`
17030
17052
  :host {
17031
17053
  display: inline-flex !important;
17032
17054
  }
@@ -17161,7 +17183,7 @@ const styles$2b = i$6`
17161
17183
  opacity: 0.4;
17162
17184
  }
17163
17185
  `;
17164
- var __decorate$2P = function(decorators, target, key2, desc) {
17186
+ var __decorate$2R = function(decorators, target, key2, desc) {
17165
17187
  var c2 = arguments.length, r3 = c2 < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key2) : desc, d4;
17166
17188
  if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
17167
17189
  r3 = Reflect.decorate(decorators, target, key2, desc);
@@ -17192,20 +17214,20 @@ let WuiText = class WuiText2 extends r$6 {
17192
17214
  return x$3`<slot class=${e$2(classes)}></slot>`;
17193
17215
  }
17194
17216
  };
17195
- WuiText.styles = [resetStyles, styles$2b];
17196
- __decorate$2P([
17217
+ WuiText.styles = [resetStyles, styles$2d];
17218
+ __decorate$2R([
17197
17219
  n$5()
17198
17220
  ], WuiText.prototype, "variant", void 0);
17199
- __decorate$2P([
17221
+ __decorate$2R([
17200
17222
  n$5()
17201
17223
  ], WuiText.prototype, "color", void 0);
17202
- __decorate$2P([
17224
+ __decorate$2R([
17203
17225
  n$5()
17204
17226
  ], WuiText.prototype, "align", void 0);
17205
- __decorate$2P([
17227
+ __decorate$2R([
17206
17228
  n$5()
17207
17229
  ], WuiText.prototype, "lineClamp", void 0);
17208
- WuiText = __decorate$2P([
17230
+ WuiText = __decorate$2R([
17209
17231
  customElement("wui-text")
17210
17232
  ], WuiText);
17211
17233
  const browserSvg = b$1`<svg fill="none" viewBox="0 0 60 60">
@@ -17731,7 +17753,7 @@ const meldSvg = b$1`<svg width="40" height="42" viewBox="0 0 40 42" fill="none">
17731
17753
  </linearGradient>
17732
17754
  </defs>
17733
17755
  </svg>`;
17734
- const styles$2a = i$6`
17756
+ const styles$2c = i$6`
17735
17757
  :host {
17736
17758
  display: block;
17737
17759
  width: var(--local-size);
@@ -17768,7 +17790,7 @@ const solanaSvg = b$1`<svg fill="none" viewBox="0 0 80 80">
17768
17790
  <clipPath id="a"><path fill="#fff" d="M0 0h80v80H0z" /></clipPath>
17769
17791
  </defs>
17770
17792
  </svg> `;
17771
- var __decorate$2O = function(decorators, target, key2, desc) {
17793
+ var __decorate$2Q = function(decorators, target, key2, desc) {
17772
17794
  var c2 = arguments.length, r3 = c2 < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key2) : desc, d4;
17773
17795
  if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
17774
17796
  r3 = Reflect.decorate(decorators, target, key2, desc);
@@ -17816,14 +17838,14 @@ let WuiVisual = class WuiVisual2 extends r$6 {
17816
17838
  return x$3`${svgOptions[this.name]}`;
17817
17839
  }
17818
17840
  };
17819
- WuiVisual.styles = [resetStyles, styles$2a];
17820
- __decorate$2O([
17841
+ WuiVisual.styles = [resetStyles, styles$2c];
17842
+ __decorate$2Q([
17821
17843
  n$5()
17822
17844
  ], WuiVisual.prototype, "name", void 0);
17823
- __decorate$2O([
17845
+ __decorate$2Q([
17824
17846
  n$5()
17825
17847
  ], WuiVisual.prototype, "size", void 0);
17826
- WuiVisual = __decorate$2O([
17848
+ WuiVisual = __decorate$2Q([
17827
17849
  customElement("wui-visual")
17828
17850
  ], WuiVisual);
17829
17851
  /**
@@ -17943,14 +17965,14 @@ const UiHelperUtil = {
17943
17965
  });
17944
17966
  }
17945
17967
  };
17946
- const styles$29 = i$6`
17968
+ const styles$2b = i$6`
17947
17969
  :host {
17948
17970
  display: flex;
17949
17971
  width: inherit;
17950
17972
  height: inherit;
17951
17973
  }
17952
17974
  `;
17953
- var __decorate$2N = function(decorators, target, key2, desc) {
17975
+ var __decorate$2P = function(decorators, target, key2, desc) {
17954
17976
  var c2 = arguments.length, r3 = c2 < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key2) : desc, d4;
17955
17977
  if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
17956
17978
  r3 = Reflect.decorate(decorators, target, key2, desc);
@@ -17985,47 +18007,47 @@ let WuiFlex = class WuiFlex2 extends r$6 {
17985
18007
  return x$3`<slot></slot>`;
17986
18008
  }
17987
18009
  };
17988
- WuiFlex.styles = [resetStyles, styles$29];
17989
- __decorate$2N([
18010
+ WuiFlex.styles = [resetStyles, styles$2b];
18011
+ __decorate$2P([
17990
18012
  n$5()
17991
18013
  ], WuiFlex.prototype, "flexDirection", void 0);
17992
- __decorate$2N([
18014
+ __decorate$2P([
17993
18015
  n$5()
17994
18016
  ], WuiFlex.prototype, "flexWrap", void 0);
17995
- __decorate$2N([
18017
+ __decorate$2P([
17996
18018
  n$5()
17997
18019
  ], WuiFlex.prototype, "flexBasis", void 0);
17998
- __decorate$2N([
18020
+ __decorate$2P([
17999
18021
  n$5()
18000
18022
  ], WuiFlex.prototype, "flexGrow", void 0);
18001
- __decorate$2N([
18023
+ __decorate$2P([
18002
18024
  n$5()
18003
18025
  ], WuiFlex.prototype, "flexShrink", void 0);
18004
- __decorate$2N([
18026
+ __decorate$2P([
18005
18027
  n$5()
18006
18028
  ], WuiFlex.prototype, "alignItems", void 0);
18007
- __decorate$2N([
18029
+ __decorate$2P([
18008
18030
  n$5()
18009
18031
  ], WuiFlex.prototype, "justifyContent", void 0);
18010
- __decorate$2N([
18032
+ __decorate$2P([
18011
18033
  n$5()
18012
18034
  ], WuiFlex.prototype, "columnGap", void 0);
18013
- __decorate$2N([
18035
+ __decorate$2P([
18014
18036
  n$5()
18015
18037
  ], WuiFlex.prototype, "rowGap", void 0);
18016
- __decorate$2N([
18038
+ __decorate$2P([
18017
18039
  n$5()
18018
18040
  ], WuiFlex.prototype, "gap", void 0);
18019
- __decorate$2N([
18041
+ __decorate$2P([
18020
18042
  n$5()
18021
18043
  ], WuiFlex.prototype, "padding", void 0);
18022
- __decorate$2N([
18044
+ __decorate$2P([
18023
18045
  n$5()
18024
18046
  ], WuiFlex.prototype, "margin", void 0);
18025
- WuiFlex = __decorate$2N([
18047
+ WuiFlex = __decorate$2P([
18026
18048
  customElement("wui-flex")
18027
18049
  ], WuiFlex);
18028
- const styles$28 = i$6`
18050
+ const styles$2a = i$6`
18029
18051
  :host {
18030
18052
  display: block;
18031
18053
  width: var(--local-width);
@@ -18100,7 +18122,7 @@ const styles$28 = i$6`
18100
18122
  );
18101
18123
  }
18102
18124
  `;
18103
- var __decorate$2M = function(decorators, target, key2, desc) {
18125
+ var __decorate$2O = function(decorators, target, key2, desc) {
18104
18126
  var c2 = arguments.length, r3 = c2 < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key2) : desc, d4;
18105
18127
  if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
18106
18128
  r3 = Reflect.decorate(decorators, target, key2, desc);
@@ -18140,23 +18162,23 @@ let WuiAvatar = class WuiAvatar2 extends r$6 {
18140
18162
  return null;
18141
18163
  }
18142
18164
  };
18143
- WuiAvatar.styles = [resetStyles, styles$28];
18144
- __decorate$2M([
18165
+ WuiAvatar.styles = [resetStyles, styles$2a];
18166
+ __decorate$2O([
18145
18167
  n$5()
18146
18168
  ], WuiAvatar.prototype, "imageSrc", void 0);
18147
- __decorate$2M([
18169
+ __decorate$2O([
18148
18170
  n$5()
18149
18171
  ], WuiAvatar.prototype, "alt", void 0);
18150
- __decorate$2M([
18172
+ __decorate$2O([
18151
18173
  n$5()
18152
18174
  ], WuiAvatar.prototype, "address", void 0);
18153
- __decorate$2M([
18175
+ __decorate$2O([
18154
18176
  n$5()
18155
18177
  ], WuiAvatar.prototype, "size", void 0);
18156
- WuiAvatar = __decorate$2M([
18178
+ WuiAvatar = __decorate$2O([
18157
18179
  customElement("wui-avatar")
18158
18180
  ], WuiAvatar);
18159
- const styles$27 = i$6`
18181
+ const styles$29 = i$6`
18160
18182
  :host {
18161
18183
  display: inline-flex;
18162
18184
  justify-content: center;
@@ -18179,7 +18201,7 @@ const styles$27 = i$6`
18179
18201
  }
18180
18202
  }
18181
18203
  `;
18182
- var __decorate$2L = function(decorators, target, key2, desc) {
18204
+ var __decorate$2N = function(decorators, target, key2, desc) {
18183
18205
  var c2 = arguments.length, r3 = c2 < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key2) : desc, d4;
18184
18206
  if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
18185
18207
  r3 = Reflect.decorate(decorators, target, key2, desc);
@@ -18225,35 +18247,35 @@ let WuiIconBox = class WuiIconBox2 extends r$6 {
18225
18247
  return x$3` <wui-icon color=${this.iconColor} size=${iconSize} name=${this.icon}></wui-icon> `;
18226
18248
  }
18227
18249
  };
18228
- WuiIconBox.styles = [resetStyles, elementStyles, styles$27];
18229
- __decorate$2L([
18250
+ WuiIconBox.styles = [resetStyles, elementStyles, styles$29];
18251
+ __decorate$2N([
18230
18252
  n$5()
18231
18253
  ], WuiIconBox.prototype, "size", void 0);
18232
- __decorate$2L([
18254
+ __decorate$2N([
18233
18255
  n$5()
18234
18256
  ], WuiIconBox.prototype, "backgroundColor", void 0);
18235
- __decorate$2L([
18257
+ __decorate$2N([
18236
18258
  n$5()
18237
18259
  ], WuiIconBox.prototype, "iconColor", void 0);
18238
- __decorate$2L([
18260
+ __decorate$2N([
18239
18261
  n$5()
18240
18262
  ], WuiIconBox.prototype, "iconSize", void 0);
18241
- __decorate$2L([
18263
+ __decorate$2N([
18242
18264
  n$5()
18243
18265
  ], WuiIconBox.prototype, "background", void 0);
18244
- __decorate$2L([
18266
+ __decorate$2N([
18245
18267
  n$5({ type: Boolean })
18246
18268
  ], WuiIconBox.prototype, "border", void 0);
18247
- __decorate$2L([
18269
+ __decorate$2N([
18248
18270
  n$5()
18249
18271
  ], WuiIconBox.prototype, "borderColor", void 0);
18250
- __decorate$2L([
18272
+ __decorate$2N([
18251
18273
  n$5()
18252
18274
  ], WuiIconBox.prototype, "icon", void 0);
18253
- WuiIconBox = __decorate$2L([
18275
+ WuiIconBox = __decorate$2N([
18254
18276
  customElement("wui-icon-box")
18255
18277
  ], WuiIconBox);
18256
- const styles$26 = i$6`
18278
+ const styles$28 = i$6`
18257
18279
  :host {
18258
18280
  display: block;
18259
18281
  }
@@ -18356,7 +18378,7 @@ const styles$26 = i$6`
18356
18378
  }
18357
18379
  }
18358
18380
  `;
18359
- var __decorate$2K = function(decorators, target, key2, desc) {
18381
+ var __decorate$2M = function(decorators, target, key2, desc) {
18360
18382
  var c2 = arguments.length, r3 = c2 < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key2) : desc, d4;
18361
18383
  if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
18362
18384
  r3 = Reflect.decorate(decorators, target, key2, desc);
@@ -18431,38 +18453,38 @@ let WuiAccountButton = class WuiAccountButton2 extends r$6 {
18431
18453
  return null;
18432
18454
  }
18433
18455
  };
18434
- WuiAccountButton.styles = [resetStyles, elementStyles, styles$26];
18435
- __decorate$2K([
18456
+ WuiAccountButton.styles = [resetStyles, elementStyles, styles$28];
18457
+ __decorate$2M([
18436
18458
  n$5()
18437
18459
  ], WuiAccountButton.prototype, "networkSrc", void 0);
18438
- __decorate$2K([
18460
+ __decorate$2M([
18439
18461
  n$5()
18440
18462
  ], WuiAccountButton.prototype, "avatarSrc", void 0);
18441
- __decorate$2K([
18463
+ __decorate$2M([
18442
18464
  n$5()
18443
18465
  ], WuiAccountButton.prototype, "balance", void 0);
18444
- __decorate$2K([
18466
+ __decorate$2M([
18445
18467
  n$5({ type: Boolean })
18446
18468
  ], WuiAccountButton.prototype, "isUnsupportedChain", void 0);
18447
- __decorate$2K([
18469
+ __decorate$2M([
18448
18470
  n$5({ type: Boolean })
18449
18471
  ], WuiAccountButton.prototype, "disabled", void 0);
18450
- __decorate$2K([
18472
+ __decorate$2M([
18451
18473
  n$5()
18452
18474
  ], WuiAccountButton.prototype, "address", void 0);
18453
- __decorate$2K([
18475
+ __decorate$2M([
18454
18476
  n$5()
18455
18477
  ], WuiAccountButton.prototype, "profileName", void 0);
18456
- __decorate$2K([
18478
+ __decorate$2M([
18457
18479
  n$5()
18458
18480
  ], WuiAccountButton.prototype, "charsStart", void 0);
18459
- __decorate$2K([
18481
+ __decorate$2M([
18460
18482
  n$5()
18461
18483
  ], WuiAccountButton.prototype, "charsEnd", void 0);
18462
- WuiAccountButton = __decorate$2K([
18484
+ WuiAccountButton = __decorate$2M([
18463
18485
  customElement("wui-account-button")
18464
18486
  ], WuiAccountButton);
18465
- const styles$25 = i$6`
18487
+ const styles$27 = i$6`
18466
18488
  :host {
18467
18489
  position: relative;
18468
18490
  background-color: var(--wui-color-gray-glass-002);
@@ -18541,7 +18563,7 @@ const styles$25 = i$6`
18541
18563
  padding: 1px;
18542
18564
  }
18543
18565
  `;
18544
- var __decorate$2J = function(decorators, target, key2, desc) {
18566
+ var __decorate$2L = function(decorators, target, key2, desc) {
18545
18567
  var c2 = arguments.length, r3 = c2 < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key2) : desc, d4;
18546
18568
  if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
18547
18569
  r3 = Reflect.decorate(decorators, target, key2, desc);
@@ -18598,29 +18620,29 @@ let WuiWalletImage = class WuiWalletImage2 extends r$6 {
18598
18620
  ></wui-icon>`;
18599
18621
  }
18600
18622
  };
18601
- WuiWalletImage.styles = [resetStyles, styles$25];
18602
- __decorate$2J([
18623
+ WuiWalletImage.styles = [resetStyles, styles$27];
18624
+ __decorate$2L([
18603
18625
  n$5()
18604
18626
  ], WuiWalletImage.prototype, "size", void 0);
18605
- __decorate$2J([
18627
+ __decorate$2L([
18606
18628
  n$5()
18607
18629
  ], WuiWalletImage.prototype, "name", void 0);
18608
- __decorate$2J([
18630
+ __decorate$2L([
18609
18631
  n$5()
18610
18632
  ], WuiWalletImage.prototype, "imageSrc", void 0);
18611
- __decorate$2J([
18633
+ __decorate$2L([
18612
18634
  n$5()
18613
18635
  ], WuiWalletImage.prototype, "walletIcon", void 0);
18614
- __decorate$2J([
18636
+ __decorate$2L([
18615
18637
  n$5({ type: Boolean })
18616
18638
  ], WuiWalletImage.prototype, "installed", void 0);
18617
- __decorate$2J([
18639
+ __decorate$2L([
18618
18640
  n$5()
18619
18641
  ], WuiWalletImage.prototype, "badgeSize", void 0);
18620
- WuiWalletImage = __decorate$2J([
18642
+ WuiWalletImage = __decorate$2L([
18621
18643
  customElement("wui-wallet-image")
18622
18644
  ], WuiWalletImage);
18623
- const styles$24 = i$6`
18645
+ const styles$26 = i$6`
18624
18646
  :host {
18625
18647
  position: relative;
18626
18648
  border-radius: var(--wui-border-radius-xxs);
@@ -18666,7 +18688,7 @@ const styles$24 = i$6`
18666
18688
  display: flex;
18667
18689
  }
18668
18690
  `;
18669
- var __decorate$2I = function(decorators, target, key2, desc) {
18691
+ var __decorate$2K = function(decorators, target, key2, desc) {
18670
18692
  var c2 = arguments.length, r3 = c2 < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key2) : desc, d4;
18671
18693
  if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
18672
18694
  r3 = Reflect.decorate(decorators, target, key2, desc);
@@ -18704,14 +18726,14 @@ let WuiAllWalletsImage = class WuiAllWalletsImage2 extends r$6 {
18704
18726
  </wui-flex>`;
18705
18727
  }
18706
18728
  };
18707
- WuiAllWalletsImage.styles = [resetStyles, styles$24];
18708
- __decorate$2I([
18729
+ WuiAllWalletsImage.styles = [resetStyles, styles$26];
18730
+ __decorate$2K([
18709
18731
  n$5({ type: Array })
18710
18732
  ], WuiAllWalletsImage.prototype, "walletImages", void 0);
18711
- WuiAllWalletsImage = __decorate$2I([
18733
+ WuiAllWalletsImage = __decorate$2K([
18712
18734
  customElement("wui-all-wallets-image")
18713
18735
  ], WuiAllWalletsImage);
18714
- const styles$23 = i$6`
18736
+ const styles$25 = i$6`
18715
18737
  :host {
18716
18738
  width: var(--local-width);
18717
18739
  position: relative;
@@ -18907,7 +18929,7 @@ const styles$23 = i$6`
18907
18929
  opacity: var(--local-opacity-000);
18908
18930
  }
18909
18931
  `;
18910
- var __decorate$2H = function(decorators, target, key2, desc) {
18932
+ var __decorate$2J = function(decorators, target, key2, desc) {
18911
18933
  var c2 = arguments.length, r3 = c2 < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key2) : desc, d4;
18912
18934
  if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
18913
18935
  r3 = Reflect.decorate(decorators, target, key2, desc);
@@ -18987,35 +19009,35 @@ let WuiButton = class WuiButton2 extends r$6 {
18987
19009
  return x$3``;
18988
19010
  }
18989
19011
  };
18990
- WuiButton.styles = [resetStyles, elementStyles, styles$23];
18991
- __decorate$2H([
19012
+ WuiButton.styles = [resetStyles, elementStyles, styles$25];
19013
+ __decorate$2J([
18992
19014
  n$5()
18993
19015
  ], WuiButton.prototype, "size", void 0);
18994
- __decorate$2H([
19016
+ __decorate$2J([
18995
19017
  n$5({ type: Boolean })
18996
19018
  ], WuiButton.prototype, "disabled", void 0);
18997
- __decorate$2H([
19019
+ __decorate$2J([
18998
19020
  n$5({ type: Boolean })
18999
19021
  ], WuiButton.prototype, "fullWidth", void 0);
19000
- __decorate$2H([
19022
+ __decorate$2J([
19001
19023
  n$5({ type: Boolean })
19002
19024
  ], WuiButton.prototype, "loading", void 0);
19003
- __decorate$2H([
19025
+ __decorate$2J([
19004
19026
  n$5()
19005
19027
  ], WuiButton.prototype, "variant", void 0);
19006
- __decorate$2H([
19028
+ __decorate$2J([
19007
19029
  n$5({ type: Boolean })
19008
19030
  ], WuiButton.prototype, "hasIconLeft", void 0);
19009
- __decorate$2H([
19031
+ __decorate$2J([
19010
19032
  n$5({ type: Boolean })
19011
19033
  ], WuiButton.prototype, "hasIconRight", void 0);
19012
- __decorate$2H([
19034
+ __decorate$2J([
19013
19035
  n$5()
19014
19036
  ], WuiButton.prototype, "borderRadius", void 0);
19015
- __decorate$2H([
19037
+ __decorate$2J([
19016
19038
  n$5()
19017
19039
  ], WuiButton.prototype, "textVariant", void 0);
19018
- WuiButton = __decorate$2H([
19040
+ WuiButton = __decorate$2J([
19019
19041
  customElement("wui-button")
19020
19042
  ], WuiButton);
19021
19043
  const networkSvgMd = b$1`<svg viewBox="0 0 48 54" fill="none">
@@ -19023,12 +19045,12 @@ const networkSvgMd = b$1`<svg viewBox="0 0 48 54" fill="none">
19023
19045
  d="M43.4605 10.7248L28.0485 1.61089C25.5438 0.129705 22.4562 0.129705 19.9515 1.61088L4.53951 10.7248C2.03626 12.2051 0.5 14.9365 0.5 17.886V36.1139C0.5 39.0635 2.03626 41.7949 4.53951 43.2752L19.9515 52.3891C22.4562 53.8703 25.5438 53.8703 28.0485 52.3891L43.4605 43.2752C45.9637 41.7949 47.5 39.0635 47.5 36.114V17.8861C47.5 14.9365 45.9637 12.2051 43.4605 10.7248Z"
19024
19046
  />
19025
19047
  </svg>`;
19026
- const styles$22 = i$6`
19048
+ const styles$24 = i$6`
19027
19049
  :host {
19028
19050
  display: flex;
19029
19051
  flex-direction: column;
19030
19052
  align-items: center;
19031
- width: 76px;
19053
+ width: 104px;
19032
19054
  row-gap: var(--wui-spacing-xs);
19033
19055
  padding: var(--wui-spacing-xs) 10px;
19034
19056
  background-color: var(--wui-color-gray-glass-002);
@@ -19053,8 +19075,14 @@ const styles$22 = i$6`
19053
19075
  stroke: var(--wui-color-gray-glass-010);
19054
19076
  stroke-width: 1px;
19055
19077
  }
19078
+
19079
+ @media (max-width: 350px) {
19080
+ :host {
19081
+ width: 100%;
19082
+ }
19083
+ }
19056
19084
  `;
19057
- var __decorate$2G = function(decorators, target, key2, desc) {
19085
+ var __decorate$2I = function(decorators, target, key2, desc) {
19058
19086
  var c2 = arguments.length, r3 = c2 < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key2) : desc, d4;
19059
19087
  if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
19060
19088
  r3 = Reflect.decorate(decorators, target, key2, desc);
@@ -19088,11 +19116,11 @@ let WuiCardSelectLoader = class WuiCardSelectLoader2 extends r$6 {
19088
19116
  return x$3`<wui-shimmer width="56px" height="56px" borderRadius="xs"></wui-shimmer>`;
19089
19117
  }
19090
19118
  };
19091
- WuiCardSelectLoader.styles = [resetStyles, elementStyles, styles$22];
19092
- __decorate$2G([
19119
+ WuiCardSelectLoader.styles = [resetStyles, elementStyles, styles$24];
19120
+ __decorate$2I([
19093
19121
  n$5()
19094
19122
  ], WuiCardSelectLoader.prototype, "type", void 0);
19095
- WuiCardSelectLoader = __decorate$2G([
19123
+ WuiCardSelectLoader = __decorate$2I([
19096
19124
  customElement("wui-card-select-loader")
19097
19125
  ], WuiCardSelectLoader);
19098
19126
  const networkSvgSm = b$1`
@@ -19107,7 +19135,7 @@ const networkSvgLg = b$1`<svg width="86" height="96" fill="none">
19107
19135
  d="M78.3244 18.926L50.1808 2.45078C45.7376 -0.150261 40.2624 -0.150262 35.8192 2.45078L7.6756 18.926C3.23322 21.5266 0.5 26.3301 0.5 31.5248V64.4752C0.5 69.6699 3.23322 74.4734 7.6756 77.074L35.8192 93.5492C40.2624 96.1503 45.7376 96.1503 50.1808 93.5492L78.3244 77.074C82.7668 74.4734 85.5 69.6699 85.5 64.4752V31.5248C85.5 26.3301 82.7668 21.5266 78.3244 18.926Z"
19108
19136
  />
19109
19137
  </svg>`;
19110
- const styles$21 = i$6`
19138
+ const styles$23 = i$6`
19111
19139
  :host {
19112
19140
  position: relative;
19113
19141
  border-radius: inherit;
@@ -19152,7 +19180,7 @@ const styles$21 = i$6`
19152
19180
  height: var(--local-icon-size);
19153
19181
  }
19154
19182
  `;
19155
- var __decorate$2F = function(decorators, target, key2, desc) {
19183
+ var __decorate$2H = function(decorators, target, key2, desc) {
19156
19184
  var c2 = arguments.length, r3 = c2 < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key2) : desc, d4;
19157
19185
  if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
19158
19186
  r3 = Reflect.decorate(decorators, target, key2, desc);
@@ -19207,29 +19235,29 @@ let WuiNetworkImage = class WuiNetworkImage2 extends r$6 {
19207
19235
  return x$3`<wui-icon size="inherit" color="fg-200" name="networkPlaceholder"></wui-icon>`;
19208
19236
  }
19209
19237
  };
19210
- WuiNetworkImage.styles = [resetStyles, styles$21];
19211
- __decorate$2F([
19238
+ WuiNetworkImage.styles = [resetStyles, styles$23];
19239
+ __decorate$2H([
19212
19240
  n$5()
19213
19241
  ], WuiNetworkImage.prototype, "size", void 0);
19214
- __decorate$2F([
19242
+ __decorate$2H([
19215
19243
  n$5()
19216
19244
  ], WuiNetworkImage.prototype, "name", void 0);
19217
- __decorate$2F([
19245
+ __decorate$2H([
19218
19246
  n$5({ type: Object })
19219
19247
  ], WuiNetworkImage.prototype, "networkImagesBySize", void 0);
19220
- __decorate$2F([
19248
+ __decorate$2H([
19221
19249
  n$5()
19222
19250
  ], WuiNetworkImage.prototype, "imageSrc", void 0);
19223
- __decorate$2F([
19251
+ __decorate$2H([
19224
19252
  n$5({ type: Boolean })
19225
19253
  ], WuiNetworkImage.prototype, "selected", void 0);
19226
- __decorate$2F([
19254
+ __decorate$2H([
19227
19255
  n$5({ type: Boolean })
19228
19256
  ], WuiNetworkImage.prototype, "round", void 0);
19229
- WuiNetworkImage = __decorate$2F([
19257
+ WuiNetworkImage = __decorate$2H([
19230
19258
  customElement("wui-network-image")
19231
19259
  ], WuiNetworkImage);
19232
- const styles$20 = i$6`
19260
+ const styles$22 = i$6`
19233
19261
  button {
19234
19262
  flex-direction: column;
19235
19263
  width: 76px;
@@ -19266,7 +19294,7 @@ const styles$20 = i$6`
19266
19294
  background-color: var(--wui-color-accent-glass-010);
19267
19295
  }
19268
19296
  `;
19269
- var __decorate$2E = function(decorators, target, key2, desc) {
19297
+ var __decorate$2G = function(decorators, target, key2, desc) {
19270
19298
  var c2 = arguments.length, r3 = c2 < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key2) : desc, d4;
19271
19299
  if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
19272
19300
  r3 = Reflect.decorate(decorators, target, key2, desc);
@@ -19319,29 +19347,29 @@ let WuiCardSelect = class WuiCardSelect2 extends r$6 {
19319
19347
  `;
19320
19348
  }
19321
19349
  };
19322
- WuiCardSelect.styles = [resetStyles, elementStyles, styles$20];
19323
- __decorate$2E([
19350
+ WuiCardSelect.styles = [resetStyles, elementStyles, styles$22];
19351
+ __decorate$2G([
19324
19352
  n$5()
19325
19353
  ], WuiCardSelect.prototype, "name", void 0);
19326
- __decorate$2E([
19354
+ __decorate$2G([
19327
19355
  n$5()
19328
19356
  ], WuiCardSelect.prototype, "type", void 0);
19329
- __decorate$2E([
19357
+ __decorate$2G([
19330
19358
  n$5()
19331
19359
  ], WuiCardSelect.prototype, "imageSrc", void 0);
19332
- __decorate$2E([
19360
+ __decorate$2G([
19333
19361
  n$5({ type: Boolean })
19334
19362
  ], WuiCardSelect.prototype, "disabled", void 0);
19335
- __decorate$2E([
19363
+ __decorate$2G([
19336
19364
  n$5({ type: Boolean })
19337
19365
  ], WuiCardSelect.prototype, "selected", void 0);
19338
- __decorate$2E([
19366
+ __decorate$2G([
19339
19367
  n$5({ type: Boolean })
19340
19368
  ], WuiCardSelect.prototype, "installed", void 0);
19341
- WuiCardSelect = __decorate$2E([
19369
+ WuiCardSelect = __decorate$2G([
19342
19370
  customElement("wui-card-select")
19343
19371
  ], WuiCardSelect);
19344
- const styles$1$ = i$6`
19372
+ const styles$21 = i$6`
19345
19373
  a {
19346
19374
  border: 1px solid var(--wui-color-gray-glass-010);
19347
19375
  border-radius: var(--wui-border-radius-3xl);
@@ -19523,7 +19551,7 @@ const styles$1$ = i$6`
19523
19551
  background-color: var(--wui-color-error-glass-020);
19524
19552
  }
19525
19553
  `;
19526
- var __decorate$2D = function(decorators, target, key2, desc) {
19554
+ var __decorate$2F = function(decorators, target, key2, desc) {
19527
19555
  var c2 = arguments.length, r3 = c2 < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key2) : desc, d4;
19528
19556
  if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
19529
19557
  r3 = Reflect.decorate(decorators, target, key2, desc);
@@ -19579,35 +19607,35 @@ let WuiChip = class WuiChip2 extends r$6 {
19579
19607
  return null;
19580
19608
  }
19581
19609
  };
19582
- WuiChip.styles = [resetStyles, elementStyles, styles$1$];
19583
- __decorate$2D([
19610
+ WuiChip.styles = [resetStyles, elementStyles, styles$21];
19611
+ __decorate$2F([
19584
19612
  n$5()
19585
19613
  ], WuiChip.prototype, "variant", void 0);
19586
- __decorate$2D([
19614
+ __decorate$2F([
19587
19615
  n$5()
19588
19616
  ], WuiChip.prototype, "imageSrc", void 0);
19589
- __decorate$2D([
19617
+ __decorate$2F([
19590
19618
  n$5()
19591
19619
  ], WuiChip.prototype, "imageIcon", void 0);
19592
- __decorate$2D([
19620
+ __decorate$2F([
19593
19621
  n$5()
19594
19622
  ], WuiChip.prototype, "imageIconSize", void 0);
19595
- __decorate$2D([
19623
+ __decorate$2F([
19596
19624
  n$5({ type: Boolean })
19597
19625
  ], WuiChip.prototype, "disabled", void 0);
19598
- __decorate$2D([
19626
+ __decorate$2F([
19599
19627
  n$5()
19600
19628
  ], WuiChip.prototype, "icon", void 0);
19601
- __decorate$2D([
19629
+ __decorate$2F([
19602
19630
  n$5()
19603
19631
  ], WuiChip.prototype, "href", void 0);
19604
- __decorate$2D([
19632
+ __decorate$2F([
19605
19633
  n$5()
19606
19634
  ], WuiChip.prototype, "text", void 0);
19607
- WuiChip = __decorate$2D([
19635
+ WuiChip = __decorate$2F([
19608
19636
  customElement("wui-chip")
19609
19637
  ], WuiChip);
19610
- const styles$1_ = i$6`
19638
+ const styles$20 = i$6`
19611
19639
  :host {
19612
19640
  position: relative;
19613
19641
  display: block;
@@ -19704,7 +19732,7 @@ const styles$1_ = i$6`
19704
19732
  height: 12px;
19705
19733
  }
19706
19734
  `;
19707
- var __decorate$2C = function(decorators, target, key2, desc) {
19735
+ var __decorate$2E = function(decorators, target, key2, desc) {
19708
19736
  var c2 = arguments.length, r3 = c2 < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key2) : desc, d4;
19709
19737
  if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
19710
19738
  r3 = Reflect.decorate(decorators, target, key2, desc);
@@ -19738,24 +19766,24 @@ let WuiConnectButton = class WuiConnectButton2 extends r$6 {
19738
19766
  return x$3`<wui-loading-spinner size=${this.size} color="accent-100"></wui-loading-spinner>`;
19739
19767
  }
19740
19768
  };
19741
- WuiConnectButton.styles = [resetStyles, elementStyles, styles$1_];
19742
- __decorate$2C([
19769
+ WuiConnectButton.styles = [resetStyles, elementStyles, styles$20];
19770
+ __decorate$2E([
19743
19771
  n$5()
19744
19772
  ], WuiConnectButton.prototype, "size", void 0);
19745
- __decorate$2C([
19773
+ __decorate$2E([
19746
19774
  n$5({ type: Boolean })
19747
19775
  ], WuiConnectButton.prototype, "loading", void 0);
19748
- WuiConnectButton = __decorate$2C([
19776
+ WuiConnectButton = __decorate$2E([
19749
19777
  customElement("wui-connect-button")
19750
19778
  ], WuiConnectButton);
19751
- const styles$1Z = i$6`
19779
+ const styles$1$ = i$6`
19752
19780
  wui-flex {
19753
19781
  width: 100%;
19754
19782
  background-color: var(--wui-color-gray-glass-002);
19755
19783
  border-radius: var(--wui-border-radius-xs);
19756
19784
  }
19757
19785
  `;
19758
- var __decorate$2B = function(decorators, target, key2, desc) {
19786
+ var __decorate$2D = function(decorators, target, key2, desc) {
19759
19787
  var c2 = arguments.length, r3 = c2 < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key2) : desc, d4;
19760
19788
  if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
19761
19789
  r3 = Reflect.decorate(decorators, target, key2, desc);
@@ -19786,20 +19814,20 @@ let WuiCtaButton = class WuiCtaButton2 extends r$6 {
19786
19814
  `;
19787
19815
  }
19788
19816
  };
19789
- WuiCtaButton.styles = [resetStyles, elementStyles, styles$1Z];
19790
- __decorate$2B([
19817
+ WuiCtaButton.styles = [resetStyles, elementStyles, styles$1$];
19818
+ __decorate$2D([
19791
19819
  n$5({ type: Boolean })
19792
19820
  ], WuiCtaButton.prototype, "disabled", void 0);
19793
- __decorate$2B([
19821
+ __decorate$2D([
19794
19822
  n$5()
19795
19823
  ], WuiCtaButton.prototype, "label", void 0);
19796
- __decorate$2B([
19824
+ __decorate$2D([
19797
19825
  n$5()
19798
19826
  ], WuiCtaButton.prototype, "buttonLabel", void 0);
19799
- WuiCtaButton = __decorate$2B([
19827
+ WuiCtaButton = __decorate$2D([
19800
19828
  customElement("wui-cta-button")
19801
19829
  ], WuiCtaButton);
19802
- const styles$1Y = i$6`
19830
+ const styles$1_ = i$6`
19803
19831
  :host {
19804
19832
  display: block;
19805
19833
  padding: var(--wui-spacing-l) var(--wui-spacing-m);
@@ -19808,7 +19836,7 @@ const styles$1Y = i$6`
19808
19836
  width: 100%;
19809
19837
  }
19810
19838
  `;
19811
- var __decorate$2A = function(decorators, target, key2, desc) {
19839
+ var __decorate$2C = function(decorators, target, key2, desc) {
19812
19840
  var c2 = arguments.length, r3 = c2 < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key2) : desc, d4;
19813
19841
  if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
19814
19842
  r3 = Reflect.decorate(decorators, target, key2, desc);
@@ -19827,11 +19855,11 @@ let WuiDetailsGroup = class WuiDetailsGroup2 extends r$6 {
19827
19855
  `;
19828
19856
  }
19829
19857
  };
19830
- WuiDetailsGroup.styles = [resetStyles, elementStyles, styles$1Y];
19831
- WuiDetailsGroup = __decorate$2A([
19858
+ WuiDetailsGroup.styles = [resetStyles, elementStyles, styles$1_];
19859
+ WuiDetailsGroup = __decorate$2C([
19832
19860
  customElement("wui-details-group")
19833
19861
  ], WuiDetailsGroup);
19834
- const styles$1X = i$6`
19862
+ const styles$1Z = i$6`
19835
19863
  :host {
19836
19864
  display: flex;
19837
19865
  flex-direction: row;
@@ -19840,7 +19868,7 @@ const styles$1X = i$6`
19840
19868
  border-radius: var(--wui-border-radius-xs);
19841
19869
  }
19842
19870
  `;
19843
- var __decorate$2z = function(decorators, target, key2, desc) {
19871
+ var __decorate$2B = function(decorators, target, key2, desc) {
19844
19872
  var c2 = arguments.length, r3 = c2 < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key2) : desc, d4;
19845
19873
  if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
19846
19874
  r3 = Reflect.decorate(decorators, target, key2, desc);
@@ -19866,14 +19894,14 @@ let WuiDetailsGroupItem = class WuiDetailsGroupItem2 extends r$6 {
19866
19894
  `;
19867
19895
  }
19868
19896
  };
19869
- WuiDetailsGroupItem.styles = [resetStyles, elementStyles, styles$1X];
19870
- __decorate$2z([
19897
+ WuiDetailsGroupItem.styles = [resetStyles, elementStyles, styles$1Z];
19898
+ __decorate$2B([
19871
19899
  n$5()
19872
19900
  ], WuiDetailsGroupItem.prototype, "name", void 0);
19873
- WuiDetailsGroupItem = __decorate$2z([
19901
+ WuiDetailsGroupItem = __decorate$2B([
19874
19902
  customElement("wui-details-group-item")
19875
19903
  ], WuiDetailsGroupItem);
19876
- const styles$1W = i$6`
19904
+ const styles$1Y = i$6`
19877
19905
  :host {
19878
19906
  z-index: calc(var(--w3m-z-index) + 1);
19879
19907
  width: 200px;
@@ -19889,7 +19917,7 @@ const styles$1W = i$6`
19889
19917
  0px 14px 64px -4px rgba(0, 0, 0, 0.12);
19890
19918
  }
19891
19919
  `;
19892
- var __decorate$2y = function(decorators, target, key2, desc) {
19920
+ var __decorate$2A = function(decorators, target, key2, desc) {
19893
19921
  var c2 = arguments.length, r3 = c2 < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key2) : desc, d4;
19894
19922
  if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
19895
19923
  r3 = Reflect.decorate(decorators, target, key2, desc);
@@ -19925,14 +19953,14 @@ let WuiDropdownMenu = class WuiDropdownMenu2 extends r$6 {
19925
19953
  `;
19926
19954
  }
19927
19955
  };
19928
- WuiDropdownMenu.styles = [resetStyles, elementStyles, styles$1W];
19929
- __decorate$2y([
19956
+ WuiDropdownMenu.styles = [resetStyles, elementStyles, styles$1Y];
19957
+ __decorate$2A([
19930
19958
  n$5({ type: Array })
19931
19959
  ], WuiDropdownMenu.prototype, "actions", void 0);
19932
- __decorate$2y([
19960
+ __decorate$2A([
19933
19961
  n$5({ type: Boolean })
19934
19962
  ], WuiDropdownMenu.prototype, "isOpen", void 0);
19935
- WuiDropdownMenu = __decorate$2y([
19963
+ WuiDropdownMenu = __decorate$2A([
19936
19964
  customElement("wui-dropdown-menu")
19937
19965
  ], WuiDropdownMenu);
19938
19966
  /**
@@ -20049,7 +20077,7 @@ const o$2 = /* @__PURE__ */ new WeakMap(), n$3 = e$3(class extends f$5 {
20049
20077
  this.rt(this.ct);
20050
20078
  }
20051
20079
  });
20052
- const styles$1V = i$6`
20080
+ const styles$1X = i$6`
20053
20081
  :host {
20054
20082
  position: relative;
20055
20083
  width: 100%;
@@ -20233,7 +20261,7 @@ const styles$1V = i$6`
20233
20261
  right: 0px;
20234
20262
  }
20235
20263
  `;
20236
- var __decorate$2x = function(decorators, target, key2, desc) {
20264
+ var __decorate$2z = function(decorators, target, key2, desc) {
20237
20265
  var c2 = arguments.length, r3 = c2 < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key2) : desc, d4;
20238
20266
  if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
20239
20267
  r3 = Reflect.decorate(decorators, target, key2, desc);
@@ -20295,38 +20323,38 @@ let WuiInputText = class WuiInputText2 extends r$6 {
20295
20323
  }));
20296
20324
  }
20297
20325
  };
20298
- WuiInputText.styles = [resetStyles, elementStyles, styles$1V];
20299
- __decorate$2x([
20326
+ WuiInputText.styles = [resetStyles, elementStyles, styles$1X];
20327
+ __decorate$2z([
20300
20328
  n$5()
20301
20329
  ], WuiInputText.prototype, "size", void 0);
20302
- __decorate$2x([
20330
+ __decorate$2z([
20303
20331
  n$5()
20304
20332
  ], WuiInputText.prototype, "icon", void 0);
20305
- __decorate$2x([
20333
+ __decorate$2z([
20306
20334
  n$5({ type: Boolean })
20307
20335
  ], WuiInputText.prototype, "disabled", void 0);
20308
- __decorate$2x([
20336
+ __decorate$2z([
20309
20337
  n$5()
20310
20338
  ], WuiInputText.prototype, "placeholder", void 0);
20311
- __decorate$2x([
20339
+ __decorate$2z([
20312
20340
  n$5()
20313
20341
  ], WuiInputText.prototype, "type", void 0);
20314
- __decorate$2x([
20342
+ __decorate$2z([
20315
20343
  n$5()
20316
20344
  ], WuiInputText.prototype, "keyHint", void 0);
20317
- __decorate$2x([
20345
+ __decorate$2z([
20318
20346
  n$5()
20319
20347
  ], WuiInputText.prototype, "value", void 0);
20320
- __decorate$2x([
20348
+ __decorate$2z([
20321
20349
  n$5()
20322
20350
  ], WuiInputText.prototype, "inputRightPadding", void 0);
20323
- __decorate$2x([
20351
+ __decorate$2z([
20324
20352
  n$5()
20325
20353
  ], WuiInputText.prototype, "tabIdx", void 0);
20326
- WuiInputText = __decorate$2x([
20354
+ WuiInputText = __decorate$2z([
20327
20355
  customElement("wui-input-text")
20328
20356
  ], WuiInputText);
20329
- const styles$1U = i$6`
20357
+ const styles$1W = i$6`
20330
20358
  :host {
20331
20359
  position: relative;
20332
20360
  display: inline-block;
@@ -20336,7 +20364,7 @@ const styles$1U = i$6`
20336
20364
  margin: var(--wui-spacing-xxs) var(--wui-spacing-m) var(--wui-spacing-0) var(--wui-spacing-m);
20337
20365
  }
20338
20366
  `;
20339
- var __decorate$2w = function(decorators, target, key2, desc) {
20367
+ var __decorate$2y = function(decorators, target, key2, desc) {
20340
20368
  var c2 = arguments.length, r3 = c2 < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key2) : desc, d4;
20341
20369
  if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
20342
20370
  r3 = Reflect.decorate(decorators, target, key2, desc);
@@ -20373,23 +20401,23 @@ let WuiEmailInput = class WuiEmailInput2 extends r$6 {
20373
20401
  return null;
20374
20402
  }
20375
20403
  };
20376
- WuiEmailInput.styles = [resetStyles, styles$1U];
20377
- __decorate$2w([
20404
+ WuiEmailInput.styles = [resetStyles, styles$1W];
20405
+ __decorate$2y([
20378
20406
  n$5()
20379
20407
  ], WuiEmailInput.prototype, "errorMessage", void 0);
20380
- __decorate$2w([
20408
+ __decorate$2y([
20381
20409
  n$5({ type: Boolean })
20382
20410
  ], WuiEmailInput.prototype, "disabled", void 0);
20383
- __decorate$2w([
20411
+ __decorate$2y([
20384
20412
  n$5()
20385
20413
  ], WuiEmailInput.prototype, "value", void 0);
20386
- __decorate$2w([
20414
+ __decorate$2y([
20387
20415
  n$5()
20388
20416
  ], WuiEmailInput.prototype, "tabIdx", void 0);
20389
- WuiEmailInput = __decorate$2w([
20417
+ WuiEmailInput = __decorate$2y([
20390
20418
  customElement("wui-email-input")
20391
20419
  ], WuiEmailInput);
20392
- const styles$1T = i$6`
20420
+ const styles$1V = i$6`
20393
20421
  :host {
20394
20422
  position: relative;
20395
20423
  width: 100%;
@@ -20408,7 +20436,7 @@ const styles$1T = i$6`
20408
20436
  text-align: right;
20409
20437
  }
20410
20438
  `;
20411
- var __decorate$2v = function(decorators, target, key2, desc) {
20439
+ var __decorate$2x = function(decorators, target, key2, desc) {
20412
20440
  var c2 = arguments.length, r3 = c2 < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key2) : desc, d4;
20413
20441
  if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
20414
20442
  r3 = Reflect.decorate(decorators, target, key2, desc);
@@ -20454,23 +20482,23 @@ let WuiEnsInput = class WuiEnsInput2 extends r$6 {
20454
20482
  return null;
20455
20483
  }
20456
20484
  };
20457
- WuiEnsInput.styles = [resetStyles, styles$1T];
20458
- __decorate$2v([
20485
+ WuiEnsInput.styles = [resetStyles, styles$1V];
20486
+ __decorate$2x([
20459
20487
  n$5()
20460
20488
  ], WuiEnsInput.prototype, "errorMessage", void 0);
20461
- __decorate$2v([
20489
+ __decorate$2x([
20462
20490
  n$5({ type: Boolean })
20463
20491
  ], WuiEnsInput.prototype, "disabled", void 0);
20464
- __decorate$2v([
20492
+ __decorate$2x([
20465
20493
  n$5()
20466
20494
  ], WuiEnsInput.prototype, "value", void 0);
20467
- __decorate$2v([
20495
+ __decorate$2x([
20468
20496
  n$5({ type: Boolean })
20469
20497
  ], WuiEnsInput.prototype, "loading", void 0);
20470
- WuiEnsInput = __decorate$2v([
20498
+ WuiEnsInput = __decorate$2x([
20471
20499
  customElement("wui-ens-input")
20472
20500
  ], WuiEnsInput);
20473
- const styles$1S = i$6`
20501
+ const styles$1U = i$6`
20474
20502
  button {
20475
20503
  border-radius: var(--local-border-radius);
20476
20504
  color: var(--wui-color-fg-100);
@@ -20495,7 +20523,7 @@ const styles$1S = i$6`
20495
20523
  background-color: transparent;
20496
20524
  }
20497
20525
  `;
20498
- var __decorate$2u = function(decorators, target, key2, desc) {
20526
+ var __decorate$2w = function(decorators, target, key2, desc) {
20499
20527
  var c2 = arguments.length, r3 = c2 < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key2) : desc, d4;
20500
20528
  if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
20501
20529
  r3 = Reflect.decorate(decorators, target, key2, desc);
@@ -20527,23 +20555,23 @@ let WuiIconLink = class WuiIconLink2 extends r$6 {
20527
20555
  `;
20528
20556
  }
20529
20557
  };
20530
- WuiIconLink.styles = [resetStyles, elementStyles, colorStyles, styles$1S];
20531
- __decorate$2u([
20558
+ WuiIconLink.styles = [resetStyles, elementStyles, colorStyles, styles$1U];
20559
+ __decorate$2w([
20532
20560
  n$5()
20533
20561
  ], WuiIconLink.prototype, "size", void 0);
20534
- __decorate$2u([
20562
+ __decorate$2w([
20535
20563
  n$5({ type: Boolean })
20536
20564
  ], WuiIconLink.prototype, "disabled", void 0);
20537
- __decorate$2u([
20565
+ __decorate$2w([
20538
20566
  n$5()
20539
20567
  ], WuiIconLink.prototype, "icon", void 0);
20540
- __decorate$2u([
20568
+ __decorate$2w([
20541
20569
  n$5()
20542
20570
  ], WuiIconLink.prototype, "iconColor", void 0);
20543
- WuiIconLink = __decorate$2u([
20571
+ WuiIconLink = __decorate$2w([
20544
20572
  customElement("wui-icon-link")
20545
20573
  ], WuiIconLink);
20546
- const styles$1R = i$6`
20574
+ const styles$1T = i$6`
20547
20575
  button {
20548
20576
  background-color: var(--wui-color-fg-300);
20549
20577
  border-radius: var(--wui-border-radius-4xs);
@@ -20574,7 +20602,7 @@ const styles$1R = i$6`
20574
20602
  }
20575
20603
  }
20576
20604
  `;
20577
- var __decorate$2t = function(decorators, target, key2, desc) {
20605
+ var __decorate$2v = function(decorators, target, key2, desc) {
20578
20606
  var c2 = arguments.length, r3 = c2 < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key2) : desc, d4;
20579
20607
  if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
20580
20608
  r3 = Reflect.decorate(decorators, target, key2, desc);
@@ -20597,14 +20625,14 @@ let WuiInputElement = class WuiInputElement2 extends r$6 {
20597
20625
  `;
20598
20626
  }
20599
20627
  };
20600
- WuiInputElement.styles = [resetStyles, elementStyles, styles$1R];
20601
- __decorate$2t([
20628
+ WuiInputElement.styles = [resetStyles, elementStyles, styles$1T];
20629
+ __decorate$2v([
20602
20630
  n$5()
20603
20631
  ], WuiInputElement.prototype, "icon", void 0);
20604
- WuiInputElement = __decorate$2t([
20632
+ WuiInputElement = __decorate$2v([
20605
20633
  customElement("wui-input-element")
20606
20634
  ], WuiInputElement);
20607
- const styles$1Q = i$6`
20635
+ const styles$1S = i$6`
20608
20636
  :host {
20609
20637
  position: relative;
20610
20638
  display: inline-block;
@@ -20664,7 +20692,7 @@ const styles$1Q = i$6`
20664
20692
  }
20665
20693
  }
20666
20694
  `;
20667
- var __decorate$2s = function(decorators, target, key2, desc) {
20695
+ var __decorate$2u = function(decorators, target, key2, desc) {
20668
20696
  var c2 = arguments.length, r3 = c2 < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key2) : desc, d4;
20669
20697
  if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
20670
20698
  r3 = Reflect.decorate(decorators, target, key2, desc);
@@ -20691,17 +20719,17 @@ let WuiInputNumeric = class WuiInputNumeric2 extends r$6 {
20691
20719
  /> `;
20692
20720
  }
20693
20721
  };
20694
- WuiInputNumeric.styles = [resetStyles, elementStyles, styles$1Q];
20695
- __decorate$2s([
20722
+ WuiInputNumeric.styles = [resetStyles, elementStyles, styles$1S];
20723
+ __decorate$2u([
20696
20724
  n$5({ type: Boolean })
20697
20725
  ], WuiInputNumeric.prototype, "disabled", void 0);
20698
- __decorate$2s([
20726
+ __decorate$2u([
20699
20727
  n$5({ type: String })
20700
20728
  ], WuiInputNumeric.prototype, "value", void 0);
20701
- WuiInputNumeric = __decorate$2s([
20729
+ WuiInputNumeric = __decorate$2u([
20702
20730
  customElement("wui-input-numeric")
20703
20731
  ], WuiInputNumeric);
20704
- const styles$1P = i$6`
20732
+ const styles$1R = i$6`
20705
20733
  button {
20706
20734
  padding: var(--wui-spacing-4xs) var(--wui-spacing-xxs);
20707
20735
  border-radius: var(--wui-border-radius-3xs);
@@ -20718,7 +20746,7 @@ const styles$1P = i$6`
20718
20746
  background-color: var(--wui-color-gray-glass-005);
20719
20747
  }
20720
20748
  `;
20721
- var __decorate$2r = function(decorators, target, key2, desc) {
20749
+ var __decorate$2t = function(decorators, target, key2, desc) {
20722
20750
  var c2 = arguments.length, r3 = c2 < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key2) : desc, d4;
20723
20751
  if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
20724
20752
  r3 = Reflect.decorate(decorators, target, key2, desc);
@@ -20747,20 +20775,20 @@ let WuiLink = class WuiLink2 extends r$6 {
20747
20775
  `;
20748
20776
  }
20749
20777
  };
20750
- WuiLink.styles = [resetStyles, elementStyles, styles$1P];
20751
- __decorate$2r([
20778
+ WuiLink.styles = [resetStyles, elementStyles, styles$1R];
20779
+ __decorate$2t([
20752
20780
  n$5()
20753
20781
  ], WuiLink.prototype, "tabIdx", void 0);
20754
- __decorate$2r([
20782
+ __decorate$2t([
20755
20783
  n$5({ type: Boolean })
20756
20784
  ], WuiLink.prototype, "disabled", void 0);
20757
- __decorate$2r([
20785
+ __decorate$2t([
20758
20786
  n$5()
20759
20787
  ], WuiLink.prototype, "color", void 0);
20760
- WuiLink = __decorate$2r([
20788
+ WuiLink = __decorate$2t([
20761
20789
  customElement("wui-link")
20762
20790
  ], WuiLink);
20763
- const styles$1O = i$6`
20791
+ const styles$1Q = i$6`
20764
20792
  button {
20765
20793
  column-gap: var(--wui-spacing-s);
20766
20794
  padding: 11px 18px 11px var(--wui-spacing-s);
@@ -20845,7 +20873,7 @@ const styles$1O = i$6`
20845
20873
  transform: translateY(-50%);
20846
20874
  }
20847
20875
  `;
20848
- var __decorate$2q = function(decorators, target, key2, desc) {
20876
+ var __decorate$2s = function(decorators, target, key2, desc) {
20849
20877
  var c2 = arguments.length, r3 = c2 < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key2) : desc, d4;
20850
20878
  if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
20851
20879
  r3 = Reflect.decorate(decorators, target, key2, desc);
@@ -20921,38 +20949,38 @@ let WuiListItem = class WuiListItem2 extends r$6 {
20921
20949
  return null;
20922
20950
  }
20923
20951
  };
20924
- WuiListItem.styles = [resetStyles, elementStyles, styles$1O];
20925
- __decorate$2q([
20952
+ WuiListItem.styles = [resetStyles, elementStyles, styles$1Q];
20953
+ __decorate$2s([
20926
20954
  n$5()
20927
20955
  ], WuiListItem.prototype, "icon", void 0);
20928
- __decorate$2q([
20956
+ __decorate$2s([
20929
20957
  n$5()
20930
20958
  ], WuiListItem.prototype, "iconSize", void 0);
20931
- __decorate$2q([
20959
+ __decorate$2s([
20932
20960
  n$5()
20933
20961
  ], WuiListItem.prototype, "tabIdx", void 0);
20934
- __decorate$2q([
20962
+ __decorate$2s([
20935
20963
  n$5()
20936
20964
  ], WuiListItem.prototype, "variant", void 0);
20937
- __decorate$2q([
20965
+ __decorate$2s([
20938
20966
  n$5()
20939
20967
  ], WuiListItem.prototype, "iconVariant", void 0);
20940
- __decorate$2q([
20968
+ __decorate$2s([
20941
20969
  n$5({ type: Boolean })
20942
20970
  ], WuiListItem.prototype, "disabled", void 0);
20943
- __decorate$2q([
20971
+ __decorate$2s([
20944
20972
  n$5()
20945
20973
  ], WuiListItem.prototype, "imageSrc", void 0);
20946
- __decorate$2q([
20974
+ __decorate$2s([
20947
20975
  n$5()
20948
20976
  ], WuiListItem.prototype, "alt", void 0);
20949
- __decorate$2q([
20977
+ __decorate$2s([
20950
20978
  n$5({ type: Boolean })
20951
20979
  ], WuiListItem.prototype, "chevron", void 0);
20952
- __decorate$2q([
20980
+ __decorate$2s([
20953
20981
  n$5({ type: Boolean })
20954
20982
  ], WuiListItem.prototype, "loading", void 0);
20955
- WuiListItem = __decorate$2q([
20983
+ WuiListItem = __decorate$2s([
20956
20984
  customElement("wui-list-item")
20957
20985
  ], WuiListItem);
20958
20986
  var TransactionTypePastTense;
@@ -20976,7 +21004,7 @@ var TransactionTypePastTense;
20976
21004
  TransactionTypePastTense2["unstake"] = "unstaked";
20977
21005
  TransactionTypePastTense2["withdraw"] = "withdrawn";
20978
21006
  })(TransactionTypePastTense || (TransactionTypePastTense = {}));
20979
- const styles$1N = i$6`
21007
+ const styles$1P = i$6`
20980
21008
  :host > wui-flex {
20981
21009
  display: flex;
20982
21010
  justify-content: center;
@@ -21035,7 +21063,7 @@ const styles$1N = i$6`
21035
21063
  clip-path: inset(0px 0px 0px calc(50% + 2px));
21036
21064
  }
21037
21065
  `;
21038
- var __decorate$2p = function(decorators, target, key2, desc) {
21066
+ var __decorate$2r = function(decorators, target, key2, desc) {
21039
21067
  var c2 = arguments.length, r3 = c2 < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key2) : desc, d4;
21040
21068
  if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
21041
21069
  r3 = Reflect.decorate(decorators, target, key2, desc);
@@ -21140,29 +21168,29 @@ let WuiTransactionVisual = class WuiTransactionVisual2 extends r$6 {
21140
21168
  }
21141
21169
  }
21142
21170
  };
21143
- WuiTransactionVisual.styles = [styles$1N];
21144
- __decorate$2p([
21171
+ WuiTransactionVisual.styles = [styles$1P];
21172
+ __decorate$2r([
21145
21173
  n$5()
21146
21174
  ], WuiTransactionVisual.prototype, "type", void 0);
21147
- __decorate$2p([
21175
+ __decorate$2r([
21148
21176
  n$5()
21149
21177
  ], WuiTransactionVisual.prototype, "status", void 0);
21150
- __decorate$2p([
21178
+ __decorate$2r([
21151
21179
  n$5()
21152
21180
  ], WuiTransactionVisual.prototype, "direction", void 0);
21153
- __decorate$2p([
21181
+ __decorate$2r([
21154
21182
  n$5({ type: Boolean })
21155
21183
  ], WuiTransactionVisual.prototype, "onlyDirectionIcon", void 0);
21156
- __decorate$2p([
21184
+ __decorate$2r([
21157
21185
  n$5({ type: Array })
21158
21186
  ], WuiTransactionVisual.prototype, "images", void 0);
21159
- __decorate$2p([
21187
+ __decorate$2r([
21160
21188
  n$5({ type: Object })
21161
21189
  ], WuiTransactionVisual.prototype, "secondImage", void 0);
21162
- WuiTransactionVisual = __decorate$2p([
21190
+ WuiTransactionVisual = __decorate$2r([
21163
21191
  customElement("wui-transaction-visual")
21164
21192
  ], WuiTransactionVisual);
21165
- const styles$1M = i$6`
21193
+ const styles$1O = i$6`
21166
21194
  :host > wui-flex:first-child {
21167
21195
  align-items: center;
21168
21196
  column-gap: var(--wui-spacing-s);
@@ -21206,7 +21234,7 @@ const styles$1M = i$6`
21206
21234
  -webkit-line-clamp: 1;
21207
21235
  }
21208
21236
  `;
21209
- var __decorate$2o = function(decorators, target, key2, desc) {
21237
+ var __decorate$2q = function(decorators, target, key2, desc) {
21210
21238
  var c2 = arguments.length, r3 = c2 < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key2) : desc, d4;
21211
21239
  if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
21212
21240
  r3 = Reflect.decorate(decorators, target, key2, desc);
@@ -21268,41 +21296,41 @@ let WuiTransactionListItem = class WuiTransactionListItem2 extends r$6 {
21268
21296
  ` : null;
21269
21297
  }
21270
21298
  };
21271
- WuiTransactionListItem.styles = [resetStyles, styles$1M];
21272
- __decorate$2o([
21299
+ WuiTransactionListItem.styles = [resetStyles, styles$1O];
21300
+ __decorate$2q([
21273
21301
  n$5()
21274
21302
  ], WuiTransactionListItem.prototype, "type", void 0);
21275
- __decorate$2o([
21303
+ __decorate$2q([
21276
21304
  n$5({ type: Array })
21277
21305
  ], WuiTransactionListItem.prototype, "descriptions", void 0);
21278
- __decorate$2o([
21306
+ __decorate$2q([
21279
21307
  n$5()
21280
21308
  ], WuiTransactionListItem.prototype, "date", void 0);
21281
- __decorate$2o([
21309
+ __decorate$2q([
21282
21310
  n$5({ type: Boolean })
21283
21311
  ], WuiTransactionListItem.prototype, "onlyDirectionIcon", void 0);
21284
- __decorate$2o([
21312
+ __decorate$2q([
21285
21313
  n$5()
21286
21314
  ], WuiTransactionListItem.prototype, "status", void 0);
21287
- __decorate$2o([
21315
+ __decorate$2q([
21288
21316
  n$5()
21289
21317
  ], WuiTransactionListItem.prototype, "direction", void 0);
21290
- __decorate$2o([
21318
+ __decorate$2q([
21291
21319
  n$5({ type: Array })
21292
21320
  ], WuiTransactionListItem.prototype, "images", void 0);
21293
- __decorate$2o([
21321
+ __decorate$2q([
21294
21322
  n$5({ type: Array })
21295
21323
  ], WuiTransactionListItem.prototype, "price", void 0);
21296
- __decorate$2o([
21324
+ __decorate$2q([
21297
21325
  n$5({ type: Array })
21298
21326
  ], WuiTransactionListItem.prototype, "amount", void 0);
21299
- __decorate$2o([
21327
+ __decorate$2q([
21300
21328
  n$5({ type: Array })
21301
21329
  ], WuiTransactionListItem.prototype, "symbol", void 0);
21302
- WuiTransactionListItem = __decorate$2o([
21330
+ WuiTransactionListItem = __decorate$2q([
21303
21331
  customElement("wui-transaction-list-item")
21304
21332
  ], WuiTransactionListItem);
21305
- const styles$1L = i$6`
21333
+ const styles$1N = i$6`
21306
21334
  :host > wui-flex:first-child {
21307
21335
  column-gap: var(--wui-spacing-s);
21308
21336
  padding: 7px var(--wui-spacing-l) 7px var(--wui-spacing-xs);
@@ -21314,7 +21342,7 @@ const styles$1L = i$6`
21314
21342
  flex: 1;
21315
21343
  }
21316
21344
  `;
21317
- var __decorate$2n = function(decorators, target, key2, desc) {
21345
+ var __decorate$2p = function(decorators, target, key2, desc) {
21318
21346
  var c2 = arguments.length, r3 = c2 < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key2) : desc, d4;
21319
21347
  if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
21320
21348
  r3 = Reflect.decorate(decorators, target, key2, desc);
@@ -21338,11 +21366,11 @@ let WuiTransactionListItemLoader = class WuiTransactionListItemLoader2 extends r
21338
21366
  `;
21339
21367
  }
21340
21368
  };
21341
- WuiTransactionListItemLoader.styles = [resetStyles, styles$1L];
21342
- WuiTransactionListItemLoader = __decorate$2n([
21369
+ WuiTransactionListItemLoader.styles = [resetStyles, styles$1N];
21370
+ WuiTransactionListItemLoader = __decorate$2p([
21343
21371
  customElement("wui-transaction-list-item-loader")
21344
21372
  ], WuiTransactionListItemLoader);
21345
- const styles$1K = i$6`
21373
+ const styles$1M = i$6`
21346
21374
  :host {
21347
21375
  display: flex;
21348
21376
  justify-content: center;
@@ -21384,7 +21412,7 @@ const styles$1K = i$6`
21384
21412
  transform: translateY(2%);
21385
21413
  }
21386
21414
  `;
21387
- var __decorate$2m = function(decorators, target, key2, desc) {
21415
+ var __decorate$2o = function(decorators, target, key2, desc) {
21388
21416
  var c2 = arguments.length, r3 = c2 < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key2) : desc, d4;
21389
21417
  if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
21390
21418
  r3 = Reflect.decorate(decorators, target, key2, desc);
@@ -21411,17 +21439,17 @@ let WuiTag = class WuiTag2 extends r$6 {
21411
21439
  `;
21412
21440
  }
21413
21441
  };
21414
- WuiTag.styles = [resetStyles, styles$1K];
21415
- __decorate$2m([
21442
+ WuiTag.styles = [resetStyles, styles$1M];
21443
+ __decorate$2o([
21416
21444
  n$5()
21417
21445
  ], WuiTag.prototype, "variant", void 0);
21418
- __decorate$2m([
21446
+ __decorate$2o([
21419
21447
  n$5()
21420
21448
  ], WuiTag.prototype, "size", void 0);
21421
- WuiTag = __decorate$2m([
21449
+ WuiTag = __decorate$2o([
21422
21450
  customElement("wui-tag")
21423
21451
  ], WuiTag);
21424
- const styles$1J = i$6`
21452
+ const styles$1L = i$6`
21425
21453
  button {
21426
21454
  column-gap: var(--wui-spacing-s);
21427
21455
  padding: 7px var(--wui-spacing-l) 7px var(--wui-spacing-xs);
@@ -21450,7 +21478,7 @@ const styles$1J = i$6`
21450
21478
  color: var(--wui-color-fg-200) !important;
21451
21479
  }
21452
21480
  `;
21453
- var __decorate$2l = function(decorators, target, key2, desc) {
21481
+ var __decorate$2n = function(decorators, target, key2, desc) {
21454
21482
  var c2 = arguments.length, r3 = c2 < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key2) : desc, d4;
21455
21483
  if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
21456
21484
  r3 = Reflect.decorate(decorators, target, key2, desc);
@@ -21510,44 +21538,44 @@ let WuiListWallet = class WuiListWallet2 extends r$6 {
21510
21538
  return null;
21511
21539
  }
21512
21540
  };
21513
- WuiListWallet.styles = [resetStyles, elementStyles, styles$1J];
21514
- __decorate$2l([
21541
+ WuiListWallet.styles = [resetStyles, elementStyles, styles$1L];
21542
+ __decorate$2n([
21515
21543
  n$5({ type: Array })
21516
21544
  ], WuiListWallet.prototype, "walletImages", void 0);
21517
- __decorate$2l([
21545
+ __decorate$2n([
21518
21546
  n$5()
21519
21547
  ], WuiListWallet.prototype, "imageSrc", void 0);
21520
- __decorate$2l([
21548
+ __decorate$2n([
21521
21549
  n$5()
21522
21550
  ], WuiListWallet.prototype, "name", void 0);
21523
- __decorate$2l([
21551
+ __decorate$2n([
21524
21552
  n$5()
21525
21553
  ], WuiListWallet.prototype, "tagLabel", void 0);
21526
- __decorate$2l([
21554
+ __decorate$2n([
21527
21555
  n$5()
21528
21556
  ], WuiListWallet.prototype, "tagVariant", void 0);
21529
- __decorate$2l([
21557
+ __decorate$2n([
21530
21558
  n$5()
21531
21559
  ], WuiListWallet.prototype, "icon", void 0);
21532
- __decorate$2l([
21560
+ __decorate$2n([
21533
21561
  n$5()
21534
21562
  ], WuiListWallet.prototype, "walletIcon", void 0);
21535
- __decorate$2l([
21563
+ __decorate$2n([
21536
21564
  n$5()
21537
21565
  ], WuiListWallet.prototype, "tabIdx", void 0);
21538
- __decorate$2l([
21566
+ __decorate$2n([
21539
21567
  n$5({ type: Boolean })
21540
21568
  ], WuiListWallet.prototype, "installed", void 0);
21541
- __decorate$2l([
21569
+ __decorate$2n([
21542
21570
  n$5({ type: Boolean })
21543
21571
  ], WuiListWallet.prototype, "disabled", void 0);
21544
- __decorate$2l([
21572
+ __decorate$2n([
21545
21573
  n$5({ type: Boolean })
21546
21574
  ], WuiListWallet.prototype, "showAllWallets", void 0);
21547
- WuiListWallet = __decorate$2l([
21575
+ WuiListWallet = __decorate$2n([
21548
21576
  customElement("wui-list-wallet")
21549
21577
  ], WuiListWallet);
21550
- const styles$1I = i$6`
21578
+ const styles$1K = i$6`
21551
21579
  :host {
21552
21580
  display: flex;
21553
21581
  justify-content: center;
@@ -21564,7 +21592,7 @@ const styles$1I = i$6`
21564
21592
  height: 100%;
21565
21593
  }
21566
21594
  `;
21567
- var __decorate$2k = function(decorators, target, key2, desc) {
21595
+ var __decorate$2m = function(decorators, target, key2, desc) {
21568
21596
  var c2 = arguments.length, r3 = c2 < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key2) : desc, d4;
21569
21597
  if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
21570
21598
  r3 = Reflect.decorate(decorators, target, key2, desc);
@@ -21583,14 +21611,14 @@ let WuiLogo = class WuiLogo2 extends r$6 {
21583
21611
  return x$3`<wui-icon color="inherit" size="inherit" name=${this.logo}></wui-icon> `;
21584
21612
  }
21585
21613
  };
21586
- WuiLogo.styles = [resetStyles, styles$1I];
21587
- __decorate$2k([
21614
+ WuiLogo.styles = [resetStyles, styles$1K];
21615
+ __decorate$2m([
21588
21616
  n$5()
21589
21617
  ], WuiLogo.prototype, "logo", void 0);
21590
- WuiLogo = __decorate$2k([
21618
+ WuiLogo = __decorate$2m([
21591
21619
  customElement("wui-logo")
21592
21620
  ], WuiLogo);
21593
- const styles$1H = i$6`
21621
+ const styles$1J = i$6`
21594
21622
  :host {
21595
21623
  display: block;
21596
21624
  width: 100%;
@@ -21603,7 +21631,7 @@ const styles$1H = i$6`
21603
21631
  border-radius: var(--wui-border-radius-xs);
21604
21632
  }
21605
21633
  `;
21606
- var __decorate$2j = function(decorators, target, key2, desc) {
21634
+ var __decorate$2l = function(decorators, target, key2, desc) {
21607
21635
  var c2 = arguments.length, r3 = c2 < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key2) : desc, d4;
21608
21636
  if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
21609
21637
  r3 = Reflect.decorate(decorators, target, key2, desc);
@@ -21628,20 +21656,20 @@ let WuiLogoSelect = class WuiLogoSelect2 extends r$6 {
21628
21656
  `;
21629
21657
  }
21630
21658
  };
21631
- WuiLogoSelect.styles = [resetStyles, elementStyles, styles$1H];
21632
- __decorate$2j([
21659
+ WuiLogoSelect.styles = [resetStyles, elementStyles, styles$1J];
21660
+ __decorate$2l([
21633
21661
  n$5()
21634
21662
  ], WuiLogoSelect.prototype, "logo", void 0);
21635
- __decorate$2j([
21663
+ __decorate$2l([
21636
21664
  n$5({ type: Boolean })
21637
21665
  ], WuiLogoSelect.prototype, "disabled", void 0);
21638
- __decorate$2j([
21666
+ __decorate$2l([
21639
21667
  n$5()
21640
21668
  ], WuiLogoSelect.prototype, "tabIdx", void 0);
21641
- WuiLogoSelect = __decorate$2j([
21669
+ WuiLogoSelect = __decorate$2l([
21642
21670
  customElement("wui-logo-select")
21643
21671
  ], WuiLogoSelect);
21644
- const styles$1G = i$6`
21672
+ const styles$1I = i$6`
21645
21673
  :host {
21646
21674
  display: block;
21647
21675
  }
@@ -21681,7 +21709,7 @@ const styles$1G = i$6`
21681
21709
  box-shadow: 0 0 0 2px var(--wui-color-gray-glass-005);
21682
21710
  }
21683
21711
  `;
21684
- var __decorate$2i = function(decorators, target, key2, desc) {
21712
+ var __decorate$2k = function(decorators, target, key2, desc) {
21685
21713
  var c2 = arguments.length, r3 = c2 < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key2) : desc, d4;
21686
21714
  if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
21687
21715
  r3 = Reflect.decorate(decorators, target, key2, desc);
@@ -21732,26 +21760,26 @@ let WuiNetworkButton = class WuiNetworkButton2 extends r$6 {
21732
21760
  `;
21733
21761
  }
21734
21762
  };
21735
- WuiNetworkButton.styles = [resetStyles, elementStyles, styles$1G];
21736
- __decorate$2i([
21763
+ WuiNetworkButton.styles = [resetStyles, elementStyles, styles$1I];
21764
+ __decorate$2k([
21737
21765
  n$5()
21738
21766
  ], WuiNetworkButton.prototype, "imageSrc", void 0);
21739
- __decorate$2i([
21767
+ __decorate$2k([
21740
21768
  n$5({ type: Boolean })
21741
21769
  ], WuiNetworkButton.prototype, "isUnsupportedChain", void 0);
21742
- __decorate$2i([
21770
+ __decorate$2k([
21743
21771
  n$5({ type: Boolean })
21744
21772
  ], WuiNetworkButton.prototype, "disabled", void 0);
21745
- WuiNetworkButton = __decorate$2i([
21773
+ WuiNetworkButton = __decorate$2k([
21746
21774
  customElement("wui-network-button")
21747
21775
  ], WuiNetworkButton);
21748
- const styles$1F = i$6`
21776
+ const styles$1H = i$6`
21749
21777
  :host {
21750
21778
  position: relative;
21751
21779
  display: block;
21752
21780
  }
21753
21781
  `;
21754
- var __decorate$2h = function(decorators, target, key2, desc) {
21782
+ var __decorate$2j = function(decorators, target, key2, desc) {
21755
21783
  var c2 = arguments.length, r3 = c2 < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key2) : desc, d4;
21756
21784
  if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
21757
21785
  r3 = Reflect.decorate(decorators, target, key2, desc);
@@ -21931,17 +21959,17 @@ let WuiOtp = class WuiOtp2 extends r$6 {
21931
21959
  }));
21932
21960
  }
21933
21961
  };
21934
- WuiOtp.styles = [resetStyles, styles$1F];
21935
- __decorate$2h([
21962
+ WuiOtp.styles = [resetStyles, styles$1H];
21963
+ __decorate$2j([
21936
21964
  n$5({ type: Number })
21937
21965
  ], WuiOtp.prototype, "length", void 0);
21938
- __decorate$2h([
21966
+ __decorate$2j([
21939
21967
  n$5({ type: String })
21940
21968
  ], WuiOtp.prototype, "otp", void 0);
21941
- __decorate$2h([
21969
+ __decorate$2j([
21942
21970
  r$4()
21943
21971
  ], WuiOtp.prototype, "values", void 0);
21944
- WuiOtp = __decorate$2h([
21972
+ WuiOtp = __decorate$2j([
21945
21973
  customElement("wui-otp")
21946
21974
  ], WuiOtp);
21947
21975
  var browser$f = {};
@@ -24085,7 +24113,7 @@ const QrCodeUtil = {
24085
24113
  return dots;
24086
24114
  }
24087
24115
  };
24088
- const styles$1E = i$6`
24116
+ const styles$1G = i$6`
24089
24117
  :host {
24090
24118
  position: relative;
24091
24119
  user-select: none;
@@ -24132,7 +24160,7 @@ const styles$1E = i$6`
24132
24160
  transform: translateY(-50%) translateX(-50%) scale(0.25);
24133
24161
  }
24134
24162
  `;
24135
- var __decorate$2g = function(decorators, target, key2, desc) {
24163
+ var __decorate$2i = function(decorators, target, key2, desc) {
24136
24164
  var c2 = arguments.length, r3 = c2 < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key2) : desc, d4;
24137
24165
  if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
24138
24166
  r3 = Reflect.decorate(decorators, target, key2, desc);
@@ -24182,39 +24210,39 @@ let WuiQrCode = class WuiQrCode2 extends r$6 {
24182
24210
  return x$3`<wui-icon size="inherit" color="inherit" name="walletConnect"></wui-icon>`;
24183
24211
  }
24184
24212
  };
24185
- WuiQrCode.styles = [resetStyles, styles$1E];
24186
- __decorate$2g([
24213
+ WuiQrCode.styles = [resetStyles, styles$1G];
24214
+ __decorate$2i([
24187
24215
  n$5()
24188
24216
  ], WuiQrCode.prototype, "uri", void 0);
24189
- __decorate$2g([
24217
+ __decorate$2i([
24190
24218
  n$5({ type: Number })
24191
24219
  ], WuiQrCode.prototype, "size", void 0);
24192
- __decorate$2g([
24220
+ __decorate$2i([
24193
24221
  n$5()
24194
24222
  ], WuiQrCode.prototype, "theme", void 0);
24195
- __decorate$2g([
24223
+ __decorate$2i([
24196
24224
  n$5()
24197
24225
  ], WuiQrCode.prototype, "imageSrc", void 0);
24198
- __decorate$2g([
24226
+ __decorate$2i([
24199
24227
  n$5()
24200
24228
  ], WuiQrCode.prototype, "alt", void 0);
24201
- __decorate$2g([
24229
+ __decorate$2i([
24202
24230
  n$5({ type: Boolean })
24203
24231
  ], WuiQrCode.prototype, "arenaClear", void 0);
24204
- __decorate$2g([
24232
+ __decorate$2i([
24205
24233
  n$5({ type: Boolean })
24206
24234
  ], WuiQrCode.prototype, "farcaster", void 0);
24207
- WuiQrCode = __decorate$2g([
24235
+ WuiQrCode = __decorate$2i([
24208
24236
  customElement("wui-qr-code")
24209
24237
  ], WuiQrCode);
24210
- const styles$1D = i$6`
24238
+ const styles$1F = i$6`
24211
24239
  :host {
24212
24240
  position: relative;
24213
24241
  display: inline-block;
24214
24242
  width: 100%;
24215
24243
  }
24216
24244
  `;
24217
- var __decorate$2f = function(decorators, target, key2, desc) {
24245
+ var __decorate$2h = function(decorators, target, key2, desc) {
24218
24246
  var c2 = arguments.length, r3 = c2 < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key2) : desc, d4;
24219
24247
  if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
24220
24248
  r3 = Reflect.decorate(decorators, target, key2, desc);
@@ -24253,11 +24281,11 @@ let WuiSearchBar = class WuiSearchBar2 extends r$6 {
24253
24281
  }
24254
24282
  }
24255
24283
  };
24256
- WuiSearchBar.styles = [resetStyles, styles$1D];
24257
- WuiSearchBar = __decorate$2f([
24284
+ WuiSearchBar.styles = [resetStyles, styles$1F];
24285
+ WuiSearchBar = __decorate$2h([
24258
24286
  customElement("wui-search-bar")
24259
24287
  ], WuiSearchBar);
24260
- const styles$1C = i$6`
24288
+ const styles$1E = i$6`
24261
24289
  :host {
24262
24290
  display: flex;
24263
24291
  column-gap: var(--wui-spacing-s);
@@ -24278,7 +24306,7 @@ const styles$1C = i$6`
24278
24306
  margin-left: var(--wui-spacing-3xs);
24279
24307
  }
24280
24308
  `;
24281
- var __decorate$2e = function(decorators, target, key2, desc) {
24309
+ var __decorate$2g = function(decorators, target, key2, desc) {
24282
24310
  var c2 = arguments.length, r3 = c2 < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key2) : desc, d4;
24283
24311
  if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
24284
24312
  r3 = Reflect.decorate(decorators, target, key2, desc);
@@ -24296,43 +24324,56 @@ let WuiSnackbar = class WuiSnackbar2 extends r$6 {
24296
24324
  this.icon = "checkmark";
24297
24325
  this.message = "";
24298
24326
  this.loading = false;
24327
+ this.iconType = "default";
24299
24328
  }
24300
24329
  render() {
24301
24330
  return x$3`
24302
- ${this.loading ? x$3`<wui-loading-spinner size="md" color="accent-100"></wui-loading-spinner>` : x$3`<wui-icon-box
24303
- size="sm"
24304
- iconSize="xs"
24305
- iconColor=${this.iconColor}
24306
- backgroundColor=${this.backgroundColor}
24307
- icon=${this.icon}
24308
- background="opaque"
24309
- ></wui-icon-box>`}
24331
+ ${this.templateIcon()}
24310
24332
  <wui-text variant="paragraph-500" color="fg-100" data-testid="wui-snackbar-message"
24311
24333
  >${this.message}</wui-text
24312
24334
  >
24313
24335
  `;
24314
24336
  }
24337
+ templateIcon() {
24338
+ if (this.loading) {
24339
+ return x$3`<wui-loading-spinner size="md" color="accent-100"></wui-loading-spinner>`;
24340
+ }
24341
+ if (this.iconType === "default") {
24342
+ return x$3`<wui-icon size="xl" color=${this.iconColor} name=${this.icon}></wui-icon>`;
24343
+ }
24344
+ return x$3`<wui-icon-box
24345
+ size="sm"
24346
+ iconSize="xs"
24347
+ iconColor=${this.iconColor}
24348
+ backgroundColor=${this.backgroundColor}
24349
+ icon=${this.icon}
24350
+ background="opaque"
24351
+ ></wui-icon-box>`;
24352
+ }
24315
24353
  };
24316
- WuiSnackbar.styles = [resetStyles, styles$1C];
24317
- __decorate$2e([
24354
+ WuiSnackbar.styles = [resetStyles, styles$1E];
24355
+ __decorate$2g([
24318
24356
  n$5()
24319
24357
  ], WuiSnackbar.prototype, "backgroundColor", void 0);
24320
- __decorate$2e([
24358
+ __decorate$2g([
24321
24359
  n$5()
24322
24360
  ], WuiSnackbar.prototype, "iconColor", void 0);
24323
- __decorate$2e([
24361
+ __decorate$2g([
24324
24362
  n$5()
24325
24363
  ], WuiSnackbar.prototype, "icon", void 0);
24326
- __decorate$2e([
24364
+ __decorate$2g([
24327
24365
  n$5()
24328
24366
  ], WuiSnackbar.prototype, "message", void 0);
24329
- __decorate$2e([
24367
+ __decorate$2g([
24330
24368
  n$5()
24331
24369
  ], WuiSnackbar.prototype, "loading", void 0);
24332
- WuiSnackbar = __decorate$2e([
24370
+ __decorate$2g([
24371
+ n$5()
24372
+ ], WuiSnackbar.prototype, "iconType", void 0);
24373
+ WuiSnackbar = __decorate$2g([
24333
24374
  customElement("wui-snackbar")
24334
24375
  ], WuiSnackbar);
24335
- const styles$1B = i$6`
24376
+ const styles$1D = i$6`
24336
24377
  :host {
24337
24378
  display: flex;
24338
24379
  align-items: center;
@@ -24365,7 +24406,7 @@ const styles$1B = i$6`
24365
24406
  background-color: var(--local-icon-bg-value);
24366
24407
  }
24367
24408
  `;
24368
- var __decorate$2d = function(decorators, target, key2, desc) {
24409
+ var __decorate$2f = function(decorators, target, key2, desc) {
24369
24410
  var c2 = arguments.length, r3 = c2 < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key2) : desc, d4;
24370
24411
  if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
24371
24412
  r3 = Reflect.decorate(decorators, target, key2, desc);
@@ -24416,23 +24457,23 @@ let WuiAlertBar = class WuiAlertBar2 extends r$6 {
24416
24457
  AlertController.close();
24417
24458
  }
24418
24459
  };
24419
- WuiAlertBar.styles = [resetStyles, styles$1B];
24420
- __decorate$2d([
24460
+ WuiAlertBar.styles = [resetStyles, styles$1D];
24461
+ __decorate$2f([
24421
24462
  n$5()
24422
24463
  ], WuiAlertBar.prototype, "message", void 0);
24423
- __decorate$2d([
24464
+ __decorate$2f([
24424
24465
  n$5()
24425
24466
  ], WuiAlertBar.prototype, "backgroundColor", void 0);
24426
- __decorate$2d([
24467
+ __decorate$2f([
24427
24468
  n$5()
24428
24469
  ], WuiAlertBar.prototype, "iconColor", void 0);
24429
- __decorate$2d([
24470
+ __decorate$2f([
24430
24471
  n$5()
24431
24472
  ], WuiAlertBar.prototype, "icon", void 0);
24432
- WuiAlertBar = __decorate$2d([
24473
+ WuiAlertBar = __decorate$2f([
24433
24474
  customElement("wui-alertbar")
24434
24475
  ], WuiAlertBar);
24435
- const styles$1A = i$6`
24476
+ const styles$1C = i$6`
24436
24477
  :host {
24437
24478
  display: inline-flex;
24438
24479
  background-color: var(--wui-color-gray-glass-002);
@@ -24544,7 +24585,7 @@ const styles$1A = i$6`
24544
24585
  border-radius: var(--wui-border-radius-3xl);
24545
24586
  }
24546
24587
  `;
24547
- var __decorate$2c = function(decorators, target, key2, desc) {
24588
+ var __decorate$2e = function(decorators, target, key2, desc) {
24548
24589
  var c2 = arguments.length, r3 = c2 < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key2) : desc, d4;
24549
24590
  if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
24550
24591
  r3 = Reflect.decorate(decorators, target, key2, desc);
@@ -24646,32 +24687,32 @@ let WuiTabs = class WuiTabs2 extends r$6 {
24646
24687
  }
24647
24688
  }
24648
24689
  };
24649
- WuiTabs.styles = [resetStyles, elementStyles, styles$1A];
24650
- __decorate$2c([
24690
+ WuiTabs.styles = [resetStyles, elementStyles, styles$1C];
24691
+ __decorate$2e([
24651
24692
  n$5({ type: Array })
24652
24693
  ], WuiTabs.prototype, "tabs", void 0);
24653
- __decorate$2c([
24694
+ __decorate$2e([
24654
24695
  n$5()
24655
24696
  ], WuiTabs.prototype, "onTabChange", void 0);
24656
- __decorate$2c([
24697
+ __decorate$2e([
24657
24698
  n$5({ type: Array })
24658
24699
  ], WuiTabs.prototype, "buttons", void 0);
24659
- __decorate$2c([
24700
+ __decorate$2e([
24660
24701
  n$5({ type: Boolean })
24661
24702
  ], WuiTabs.prototype, "disabled", void 0);
24662
- __decorate$2c([
24703
+ __decorate$2e([
24663
24704
  n$5()
24664
24705
  ], WuiTabs.prototype, "localTabWidth", void 0);
24665
- __decorate$2c([
24706
+ __decorate$2e([
24666
24707
  r$4()
24667
24708
  ], WuiTabs.prototype, "activeTab", void 0);
24668
- __decorate$2c([
24709
+ __decorate$2e([
24669
24710
  r$4()
24670
24711
  ], WuiTabs.prototype, "isDense", void 0);
24671
- WuiTabs = __decorate$2c([
24712
+ WuiTabs = __decorate$2e([
24672
24713
  customElement("wui-tabs")
24673
24714
  ], WuiTabs);
24674
- const styles$1z = i$6`
24715
+ const styles$1B = i$6`
24675
24716
  :host {
24676
24717
  display: block;
24677
24718
  }
@@ -24694,7 +24735,7 @@ const styles$1z = i$6`
24694
24735
  box-shadow: inset 0 0 0 1px var(--wui-color-gray-glass-010);
24695
24736
  }
24696
24737
  `;
24697
- var __decorate$2b = function(decorators, target, key2, desc) {
24738
+ var __decorate$2d = function(decorators, target, key2, desc) {
24698
24739
  var c2 = arguments.length, r3 = c2 < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key2) : desc, d4;
24699
24740
  if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
24700
24741
  r3 = Reflect.decorate(decorators, target, key2, desc);
@@ -24731,17 +24772,17 @@ let WuiTokenButton = class WuiTokenButton2 extends r$6 {
24731
24772
  `;
24732
24773
  }
24733
24774
  };
24734
- WuiTokenButton.styles = [resetStyles, elementStyles, styles$1z];
24735
- __decorate$2b([
24775
+ WuiTokenButton.styles = [resetStyles, elementStyles, styles$1B];
24776
+ __decorate$2d([
24736
24777
  n$5()
24737
24778
  ], WuiTokenButton.prototype, "imageSrc", void 0);
24738
- __decorate$2b([
24779
+ __decorate$2d([
24739
24780
  n$5()
24740
24781
  ], WuiTokenButton.prototype, "text", void 0);
24741
- WuiTokenButton = __decorate$2b([
24782
+ WuiTokenButton = __decorate$2d([
24742
24783
  customElement("wui-token-button")
24743
24784
  ], WuiTokenButton);
24744
- const styles$1y = i$6`
24785
+ const styles$1A = i$6`
24745
24786
  :host {
24746
24787
  display: block;
24747
24788
  padding: 9px var(--wui-spacing-s) 10px var(--wui-spacing-s);
@@ -24795,7 +24836,7 @@ const styles$1y = i$6`
24795
24836
  transform: translate(65%, -50%) rotate(270deg);
24796
24837
  }
24797
24838
  `;
24798
- var __decorate$2a = function(decorators, target, key2, desc) {
24839
+ var __decorate$2c = function(decorators, target, key2, desc) {
24799
24840
  var c2 = arguments.length, r3 = c2 < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key2) : desc, d4;
24800
24841
  if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
24801
24842
  r3 = Reflect.decorate(decorators, target, key2, desc);
@@ -24823,20 +24864,20 @@ let WuiTooltip = class WuiTooltip2 extends r$6 {
24823
24864
  <wui-text color="inherit" variant="small-500">${this.message}</wui-text>`;
24824
24865
  }
24825
24866
  };
24826
- WuiTooltip.styles = [resetStyles, elementStyles, styles$1y];
24827
- __decorate$2a([
24867
+ WuiTooltip.styles = [resetStyles, elementStyles, styles$1A];
24868
+ __decorate$2c([
24828
24869
  n$5()
24829
24870
  ], WuiTooltip.prototype, "placement", void 0);
24830
- __decorate$2a([
24871
+ __decorate$2c([
24831
24872
  n$5()
24832
24873
  ], WuiTooltip.prototype, "variant", void 0);
24833
- __decorate$2a([
24874
+ __decorate$2c([
24834
24875
  n$5()
24835
24876
  ], WuiTooltip.prototype, "message", void 0);
24836
- WuiTooltip = __decorate$2a([
24877
+ WuiTooltip = __decorate$2c([
24837
24878
  customElement("wui-tooltip")
24838
24879
  ], WuiTooltip);
24839
- const styles$1x = i$6`
24880
+ const styles$1z = i$6`
24840
24881
  :host {
24841
24882
  height: 60px;
24842
24883
  min-height: 60px;
@@ -24913,7 +24954,7 @@ const styles$1x = i$6`
24913
24954
  height: 36px;
24914
24955
  }
24915
24956
  `;
24916
- var __decorate$29 = function(decorators, target, key2, desc) {
24957
+ var __decorate$2b = function(decorators, target, key2, desc) {
24917
24958
  var c2 = arguments.length, r3 = c2 < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key2) : desc, d4;
24918
24959
  if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
24919
24960
  r3 = Reflect.decorate(decorators, target, key2, desc);
@@ -24998,32 +25039,32 @@ let WuiTokenListItem = class WuiTokenListItem2 extends r$6 {
24998
25039
  this.imageError = true;
24999
25040
  }
25000
25041
  };
25001
- WuiTokenListItem.styles = [resetStyles, elementStyles, styles$1x];
25002
- __decorate$29([
25042
+ WuiTokenListItem.styles = [resetStyles, elementStyles, styles$1z];
25043
+ __decorate$2b([
25003
25044
  n$5()
25004
25045
  ], WuiTokenListItem.prototype, "imageSrc", void 0);
25005
- __decorate$29([
25046
+ __decorate$2b([
25006
25047
  n$5()
25007
25048
  ], WuiTokenListItem.prototype, "name", void 0);
25008
- __decorate$29([
25049
+ __decorate$2b([
25009
25050
  n$5()
25010
25051
  ], WuiTokenListItem.prototype, "symbol", void 0);
25011
- __decorate$29([
25052
+ __decorate$2b([
25012
25053
  n$5()
25013
25054
  ], WuiTokenListItem.prototype, "price", void 0);
25014
- __decorate$29([
25055
+ __decorate$2b([
25015
25056
  n$5()
25016
25057
  ], WuiTokenListItem.prototype, "amount", void 0);
25017
- __decorate$29([
25058
+ __decorate$2b([
25018
25059
  r$4()
25019
25060
  ], WuiTokenListItem.prototype, "visible", void 0);
25020
- __decorate$29([
25061
+ __decorate$2b([
25021
25062
  r$4()
25022
25063
  ], WuiTokenListItem.prototype, "imageError", void 0);
25023
- WuiTokenListItem = __decorate$29([
25064
+ WuiTokenListItem = __decorate$2b([
25024
25065
  customElement("wui-token-list-item")
25025
25066
  ], WuiTokenListItem);
25026
- const styles$1w = i$6`
25067
+ const styles$1y = i$6`
25027
25068
  :host {
25028
25069
  display: flex;
25029
25070
  justify-content: center;
@@ -25040,7 +25081,7 @@ const styles$1w = i$6`
25040
25081
  height: 32px;
25041
25082
  }
25042
25083
  `;
25043
- var __decorate$28 = function(decorators, target, key2, desc) {
25084
+ var __decorate$2a = function(decorators, target, key2, desc) {
25044
25085
  var c2 = arguments.length, r3 = c2 < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key2) : desc, d4;
25045
25086
  if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
25046
25087
  r3 = Reflect.decorate(decorators, target, key2, desc);
@@ -25067,20 +25108,20 @@ let WuiVisualThumbnail = class WuiVisualThumbnail2 extends r$6 {
25067
25108
  ></wui-icon>`;
25068
25109
  }
25069
25110
  };
25070
- WuiVisualThumbnail.styles = [resetStyles, styles$1w];
25071
- __decorate$28([
25111
+ WuiVisualThumbnail.styles = [resetStyles, styles$1y];
25112
+ __decorate$2a([
25072
25113
  n$5()
25073
25114
  ], WuiVisualThumbnail.prototype, "imageSrc", void 0);
25074
- __decorate$28([
25115
+ __decorate$2a([
25075
25116
  n$5()
25076
25117
  ], WuiVisualThumbnail.prototype, "alt", void 0);
25077
- __decorate$28([
25118
+ __decorate$2a([
25078
25119
  n$5({ type: Boolean })
25079
25120
  ], WuiVisualThumbnail.prototype, "borderRadiusFull", void 0);
25080
- WuiVisualThumbnail = __decorate$28([
25121
+ WuiVisualThumbnail = __decorate$2a([
25081
25122
  customElement("wui-visual-thumbnail")
25082
25123
  ], WuiVisualThumbnail);
25083
- const styles$1v = i$6`
25124
+ const styles$1x = i$6`
25084
25125
  :host {
25085
25126
  display: block;
25086
25127
  }
@@ -25104,7 +25145,7 @@ const styles$1v = i$6`
25104
25145
  background-color: var(--wui-color-accent-glass-020) !important;
25105
25146
  }
25106
25147
  `;
25107
- var __decorate$27 = function(decorators, target, key2, desc) {
25148
+ var __decorate$29 = function(decorators, target, key2, desc) {
25108
25149
  var c2 = arguments.length, r3 = c2 < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key2) : desc, d4;
25109
25150
  if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
25110
25151
  r3 = Reflect.decorate(decorators, target, key2, desc);
@@ -25144,20 +25185,20 @@ let WuiNoticeCard = class WuiNoticeCard2 extends r$6 {
25144
25185
  `;
25145
25186
  }
25146
25187
  };
25147
- WuiNoticeCard.styles = [resetStyles, elementStyles, styles$1v];
25148
- __decorate$27([
25188
+ WuiNoticeCard.styles = [resetStyles, elementStyles, styles$1x];
25189
+ __decorate$29([
25149
25190
  n$5()
25150
25191
  ], WuiNoticeCard.prototype, "label", void 0);
25151
- __decorate$27([
25192
+ __decorate$29([
25152
25193
  n$5()
25153
25194
  ], WuiNoticeCard.prototype, "description", void 0);
25154
- __decorate$27([
25195
+ __decorate$29([
25155
25196
  n$5()
25156
25197
  ], WuiNoticeCard.prototype, "icon", void 0);
25157
- WuiNoticeCard = __decorate$27([
25198
+ WuiNoticeCard = __decorate$29([
25158
25199
  customElement("wui-notice-card")
25159
25200
  ], WuiNoticeCard);
25160
- const styles$1u = i$6`
25201
+ const styles$1w = i$6`
25161
25202
  button {
25162
25203
  height: auto;
25163
25204
  position: relative;
@@ -25199,7 +25240,7 @@ const styles$1u = i$6`
25199
25240
  overflow-wrap: anywhere;
25200
25241
  }
25201
25242
  `;
25202
- var __decorate$26 = function(decorators, target, key2, desc) {
25243
+ var __decorate$28 = function(decorators, target, key2, desc) {
25203
25244
  var c2 = arguments.length, r3 = c2 < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key2) : desc, d4;
25204
25245
  if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
25205
25246
  r3 = Reflect.decorate(decorators, target, key2, desc);
@@ -25299,17 +25340,17 @@ let WuiListAccordion = class WuiListAccordion2 extends r$6 {
25299
25340
  return null;
25300
25341
  }
25301
25342
  };
25302
- WuiListAccordion.styles = [resetStyles, elementStyles, styles$1u];
25303
- __decorate$26([
25343
+ WuiListAccordion.styles = [resetStyles, elementStyles, styles$1w];
25344
+ __decorate$28([
25304
25345
  n$5()
25305
25346
  ], WuiListAccordion.prototype, "textTitle", void 0);
25306
- __decorate$26([
25347
+ __decorate$28([
25307
25348
  n$5()
25308
25349
  ], WuiListAccordion.prototype, "overflowedContent", void 0);
25309
- WuiListAccordion = __decorate$26([
25350
+ WuiListAccordion = __decorate$28([
25310
25351
  customElement("wui-list-accordion")
25311
25352
  ], WuiListAccordion);
25312
- const styles$1t = i$6`
25353
+ const styles$1v = i$6`
25313
25354
  :host {
25314
25355
  display: flex;
25315
25356
  column-gap: var(--wui-spacing-s);
@@ -25331,7 +25372,7 @@ const styles$1t = i$6`
25331
25372
  height: var(--wui-icon-size-lg);
25332
25373
  }
25333
25374
  `;
25334
- var __decorate$25 = function(decorators, target, key2, desc) {
25375
+ var __decorate$27 = function(decorators, target, key2, desc) {
25335
25376
  var c2 = arguments.length, r3 = c2 < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key2) : desc, d4;
25336
25377
  if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
25337
25378
  r3 = Reflect.decorate(decorators, target, key2, desc);
@@ -25367,20 +25408,20 @@ let WuiListContent = class WuiListContent2 extends r$6 {
25367
25408
  return x$3`<wui-icon size="inherit" color="fg-200" name="networkPlaceholder"></wui-icon>`;
25368
25409
  }
25369
25410
  };
25370
- WuiListContent.styles = [resetStyles, elementStyles, styles$1t];
25371
- __decorate$25([
25411
+ WuiListContent.styles = [resetStyles, elementStyles, styles$1v];
25412
+ __decorate$27([
25372
25413
  n$5()
25373
25414
  ], WuiListContent.prototype, "imageSrc", void 0);
25374
- __decorate$25([
25415
+ __decorate$27([
25375
25416
  n$5()
25376
25417
  ], WuiListContent.prototype, "textTitle", void 0);
25377
- __decorate$25([
25418
+ __decorate$27([
25378
25419
  n$5()
25379
25420
  ], WuiListContent.prototype, "textValue", void 0);
25380
- WuiListContent = __decorate$25([
25421
+ WuiListContent = __decorate$27([
25381
25422
  customElement("wui-list-content")
25382
25423
  ], WuiListContent);
25383
- const styles$1s = i$6`
25424
+ const styles$1u = i$6`
25384
25425
  button {
25385
25426
  column-gap: var(--wui-spacing-s);
25386
25427
  padding: 7px var(--wui-spacing-l) 7px var(--wui-spacing-xs);
@@ -25425,7 +25466,7 @@ const styles$1s = i$6`
25425
25466
  color: var(--wui-color-fg-300);
25426
25467
  }
25427
25468
  `;
25428
- var __decorate$24 = function(decorators, target, key2, desc) {
25469
+ var __decorate$26 = function(decorators, target, key2, desc) {
25429
25470
  var c2 = arguments.length, r3 = c2 < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key2) : desc, d4;
25430
25471
  if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
25431
25472
  r3 = Reflect.decorate(decorators, target, key2, desc);
@@ -25475,26 +25516,26 @@ let WuiListNetwork = class WuiListNetwork2 extends r$6 {
25475
25516
  return null;
25476
25517
  }
25477
25518
  };
25478
- WuiListNetwork.styles = [resetStyles, elementStyles, styles$1s];
25479
- __decorate$24([
25519
+ WuiListNetwork.styles = [resetStyles, elementStyles, styles$1u];
25520
+ __decorate$26([
25480
25521
  n$5()
25481
25522
  ], WuiListNetwork.prototype, "imageSrc", void 0);
25482
- __decorate$24([
25523
+ __decorate$26([
25483
25524
  n$5()
25484
25525
  ], WuiListNetwork.prototype, "name", void 0);
25485
- __decorate$24([
25526
+ __decorate$26([
25486
25527
  n$5({ type: Boolean })
25487
25528
  ], WuiListNetwork.prototype, "disabled", void 0);
25488
- __decorate$24([
25529
+ __decorate$26([
25489
25530
  n$5({ type: Boolean })
25490
25531
  ], WuiListNetwork.prototype, "selected", void 0);
25491
- __decorate$24([
25532
+ __decorate$26([
25492
25533
  n$5({ type: Boolean })
25493
25534
  ], WuiListNetwork.prototype, "transparent", void 0);
25494
- WuiListNetwork = __decorate$24([
25535
+ WuiListNetwork = __decorate$26([
25495
25536
  customElement("wui-list-network")
25496
25537
  ], WuiListNetwork);
25497
- const styles$1r = i$6`
25538
+ const styles$1t = i$6`
25498
25539
  :host {
25499
25540
  display: flex;
25500
25541
  flex-direction: column;
@@ -25517,7 +25558,7 @@ const styles$1r = i$6`
25517
25558
  height: var(--wui-icon-size-lg);
25518
25559
  }
25519
25560
  `;
25520
- var __decorate$23 = function(decorators, target, key2, desc) {
25561
+ var __decorate$25 = function(decorators, target, key2, desc) {
25521
25562
  var c2 = arguments.length, r3 = c2 < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key2) : desc, d4;
25522
25563
  if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
25523
25564
  r3 = Reflect.decorate(decorators, target, key2, desc);
@@ -25565,26 +25606,26 @@ let WuiListWalletTransaction = class WuiListWalletTransaction2 extends r$6 {
25565
25606
  return x$3`<wui-icon size="inherit" color="fg-200" name="networkPlaceholder"></wui-icon>`;
25566
25607
  }
25567
25608
  };
25568
- WuiListWalletTransaction.styles = [resetStyles, elementStyles, styles$1r];
25569
- __decorate$23([
25609
+ WuiListWalletTransaction.styles = [resetStyles, elementStyles, styles$1t];
25610
+ __decorate$25([
25570
25611
  n$5()
25571
25612
  ], WuiListWalletTransaction.prototype, "amount", void 0);
25572
- __decorate$23([
25613
+ __decorate$25([
25573
25614
  n$5()
25574
25615
  ], WuiListWalletTransaction.prototype, "networkCurreny", void 0);
25575
- __decorate$23([
25616
+ __decorate$25([
25576
25617
  n$5()
25577
25618
  ], WuiListWalletTransaction.prototype, "networkImageUrl", void 0);
25578
- __decorate$23([
25619
+ __decorate$25([
25579
25620
  n$5()
25580
25621
  ], WuiListWalletTransaction.prototype, "receiverAddress", void 0);
25581
- __decorate$23([
25622
+ __decorate$25([
25582
25623
  n$5()
25583
25624
  ], WuiListWalletTransaction.prototype, "addressExplorerUrl", void 0);
25584
- WuiListWalletTransaction = __decorate$23([
25625
+ WuiListWalletTransaction = __decorate$25([
25585
25626
  customElement("wui-list-wallet-transaction")
25586
25627
  ], WuiListWalletTransaction);
25587
- const styles$1q = i$6`
25628
+ const styles$1s = i$6`
25588
25629
  button {
25589
25630
  display: flex;
25590
25631
  gap: var(--wui-spacing-3xs);
@@ -25607,7 +25648,7 @@ const styles$1q = i$6`
25607
25648
  }
25608
25649
  }
25609
25650
  `;
25610
- var __decorate$22 = function(decorators, target, key2, desc) {
25651
+ var __decorate$24 = function(decorators, target, key2, desc) {
25611
25652
  var c2 = arguments.length, r3 = c2 < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key2) : desc, d4;
25612
25653
  if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
25613
25654
  r3 = Reflect.decorate(decorators, target, key2, desc);
@@ -25629,14 +25670,14 @@ let WuiPromo = class WuiPromo2 extends r$6 {
25629
25670
  </button>`;
25630
25671
  }
25631
25672
  };
25632
- WuiPromo.styles = [resetStyles, elementStyles, styles$1q];
25633
- __decorate$22([
25673
+ WuiPromo.styles = [resetStyles, elementStyles, styles$1s];
25674
+ __decorate$24([
25634
25675
  n$5()
25635
25676
  ], WuiPromo.prototype, "text", void 0);
25636
- WuiPromo = __decorate$22([
25677
+ WuiPromo = __decorate$24([
25637
25678
  customElement("wui-promo")
25638
25679
  ], WuiPromo);
25639
- const styles$1p = i$6`
25680
+ const styles$1r = i$6`
25640
25681
  span {
25641
25682
  font-weight: 500;
25642
25683
  font-size: 40px;
@@ -25650,7 +25691,7 @@ const styles$1p = i$6`
25650
25691
  color: var(--wui-color-fg-200);
25651
25692
  }
25652
25693
  `;
25653
- var __decorate$21 = function(decorators, target, key2, desc) {
25694
+ var __decorate$23 = function(decorators, target, key2, desc) {
25654
25695
  var c2 = arguments.length, r3 = c2 < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key2) : desc, d4;
25655
25696
  if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
25656
25697
  r3 = Reflect.decorate(decorators, target, key2, desc);
@@ -25670,17 +25711,17 @@ let WuiBalance = class WuiBalance2 extends r$6 {
25670
25711
  return x$3`<span>$${this.dollars}<span class="pennies">.${this.pennies}</span></span>`;
25671
25712
  }
25672
25713
  };
25673
- WuiBalance.styles = [resetStyles, styles$1p];
25674
- __decorate$21([
25714
+ WuiBalance.styles = [resetStyles, styles$1r];
25715
+ __decorate$23([
25675
25716
  n$5()
25676
25717
  ], WuiBalance.prototype, "dollars", void 0);
25677
- __decorate$21([
25718
+ __decorate$23([
25678
25719
  n$5()
25679
25720
  ], WuiBalance.prototype, "pennies", void 0);
25680
- WuiBalance = __decorate$21([
25721
+ WuiBalance = __decorate$23([
25681
25722
  customElement("wui-balance")
25682
25723
  ], WuiBalance);
25683
- const styles$1o = i$6`
25724
+ const styles$1q = i$6`
25684
25725
  button {
25685
25726
  background-color: var(--wui-color-gray-glass-002);
25686
25727
  border-radius: var(--wui-border-radius-3xl);
@@ -25715,7 +25756,7 @@ const styles$1o = i$6`
25715
25756
  background-color: var(--wui-color-bg-250);
25716
25757
  }
25717
25758
  `;
25718
- var __decorate$20 = function(decorators, target, key2, desc) {
25759
+ var __decorate$22 = function(decorators, target, key2, desc) {
25719
25760
  var c2 = arguments.length, r3 = c2 < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key2) : desc, d4;
25720
25761
  if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
25721
25762
  r3 = Reflect.decorate(decorators, target, key2, desc);
@@ -25771,26 +25812,26 @@ let WuiProfileButton = class WuiProfileButton2 extends r$6 {
25771
25812
  `;
25772
25813
  }
25773
25814
  };
25774
- WuiProfileButton.styles = [resetStyles, elementStyles, styles$1o];
25775
- __decorate$20([
25815
+ WuiProfileButton.styles = [resetStyles, elementStyles, styles$1q];
25816
+ __decorate$22([
25776
25817
  n$5()
25777
25818
  ], WuiProfileButton.prototype, "networkSrc", void 0);
25778
- __decorate$20([
25819
+ __decorate$22([
25779
25820
  n$5()
25780
25821
  ], WuiProfileButton.prototype, "avatarSrc", void 0);
25781
- __decorate$20([
25822
+ __decorate$22([
25782
25823
  n$5()
25783
25824
  ], WuiProfileButton.prototype, "profileName", void 0);
25784
- __decorate$20([
25825
+ __decorate$22([
25785
25826
  n$5()
25786
25827
  ], WuiProfileButton.prototype, "address", void 0);
25787
- __decorate$20([
25828
+ __decorate$22([
25788
25829
  n$5()
25789
25830
  ], WuiProfileButton.prototype, "icon", void 0);
25790
- WuiProfileButton = __decorate$20([
25831
+ WuiProfileButton = __decorate$22([
25791
25832
  customElement("wui-profile-button")
25792
25833
  ], WuiProfileButton);
25793
- const styles$1n = i$6`
25834
+ const styles$1p = i$6`
25794
25835
  button {
25795
25836
  background-color: var(--wui-color-gray-glass-002);
25796
25837
  border-radius: var(--wui-border-radius-3xl);
@@ -25825,7 +25866,7 @@ const styles$1n = i$6`
25825
25866
  background-color: var(--wui-color-bg-250);
25826
25867
  }
25827
25868
  `;
25828
- var __decorate$1$ = function(decorators, target, key2, desc) {
25869
+ var __decorate$21 = function(decorators, target, key2, desc) {
25829
25870
  var c2 = arguments.length, r3 = c2 < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key2) : desc, d4;
25830
25871
  if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
25831
25872
  r3 = Reflect.decorate(decorators, target, key2, desc);
@@ -25887,29 +25928,29 @@ let WuiProfileButtonV2 = class WuiProfileButtonV22 extends r$6 {
25887
25928
  `;
25888
25929
  }
25889
25930
  };
25890
- WuiProfileButtonV2.styles = [resetStyles, elementStyles, styles$1n];
25891
- __decorate$1$([
25931
+ WuiProfileButtonV2.styles = [resetStyles, elementStyles, styles$1p];
25932
+ __decorate$21([
25892
25933
  n$5()
25893
25934
  ], WuiProfileButtonV2.prototype, "avatarSrc", void 0);
25894
- __decorate$1$([
25935
+ __decorate$21([
25895
25936
  n$5()
25896
25937
  ], WuiProfileButtonV2.prototype, "profileName", void 0);
25897
- __decorate$1$([
25938
+ __decorate$21([
25898
25939
  n$5()
25899
25940
  ], WuiProfileButtonV2.prototype, "address", void 0);
25900
- __decorate$1$([
25941
+ __decorate$21([
25901
25942
  n$5()
25902
25943
  ], WuiProfileButtonV2.prototype, "icon", void 0);
25903
- __decorate$1$([
25944
+ __decorate$21([
25904
25945
  n$5()
25905
25946
  ], WuiProfileButtonV2.prototype, "onProfileClick", void 0);
25906
- __decorate$1$([
25947
+ __decorate$21([
25907
25948
  n$5()
25908
25949
  ], WuiProfileButtonV2.prototype, "onCopyClick", void 0);
25909
- WuiProfileButtonV2 = __decorate$1$([
25950
+ WuiProfileButtonV2 = __decorate$21([
25910
25951
  customElement("wui-profile-button-v2")
25911
25952
  ], WuiProfileButtonV2);
25912
- const styles$1m = i$6`
25953
+ const styles$1o = i$6`
25913
25954
  button {
25914
25955
  border: none;
25915
25956
  border-radius: var(--wui-border-radius-3xl);
@@ -26029,7 +26070,7 @@ const styles$1m = i$6`
26029
26070
  pointer-events: none;
26030
26071
  }
26031
26072
  `;
26032
- var __decorate$1_ = function(decorators, target, key2, desc) {
26073
+ var __decorate$20 = function(decorators, target, key2, desc) {
26033
26074
  var c2 = arguments.length, r3 = c2 < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key2) : desc, d4;
26034
26075
  if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
26035
26076
  r3 = Reflect.decorate(decorators, target, key2, desc);
@@ -26064,29 +26105,29 @@ let WuiChipButton = class WuiChipButton2 extends r$6 {
26064
26105
  `;
26065
26106
  }
26066
26107
  };
26067
- WuiChipButton.styles = [resetStyles, elementStyles, styles$1m];
26068
- __decorate$1_([
26108
+ WuiChipButton.styles = [resetStyles, elementStyles, styles$1o];
26109
+ __decorate$20([
26069
26110
  n$5()
26070
26111
  ], WuiChipButton.prototype, "variant", void 0);
26071
- __decorate$1_([
26112
+ __decorate$20([
26072
26113
  n$5()
26073
26114
  ], WuiChipButton.prototype, "imageSrc", void 0);
26074
- __decorate$1_([
26115
+ __decorate$20([
26075
26116
  n$5({ type: Boolean })
26076
26117
  ], WuiChipButton.prototype, "disabled", void 0);
26077
- __decorate$1_([
26118
+ __decorate$20([
26078
26119
  n$5()
26079
26120
  ], WuiChipButton.prototype, "icon", void 0);
26080
- __decorate$1_([
26121
+ __decorate$20([
26081
26122
  n$5()
26082
26123
  ], WuiChipButton.prototype, "size", void 0);
26083
- __decorate$1_([
26124
+ __decorate$20([
26084
26125
  n$5()
26085
26126
  ], WuiChipButton.prototype, "text", void 0);
26086
- WuiChipButton = __decorate$1_([
26127
+ WuiChipButton = __decorate$20([
26087
26128
  customElement("wui-chip-button")
26088
26129
  ], WuiChipButton);
26089
- const styles$1l = i$6`
26130
+ const styles$1n = i$6`
26090
26131
  button {
26091
26132
  display: flex;
26092
26133
  gap: var(--wui-spacing-xl);
@@ -26114,7 +26155,7 @@ const styles$1l = i$6`
26114
26155
  0 0 0 3px var(--wui-color-modal-bg);
26115
26156
  }
26116
26157
  `;
26117
- var __decorate$1Z = function(decorators, target, key2, desc) {
26158
+ var __decorate$1$ = function(decorators, target, key2, desc) {
26118
26159
  var c2 = arguments.length, r3 = c2 < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key2) : desc, d4;
26119
26160
  if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
26120
26161
  r3 = Reflect.decorate(decorators, target, key2, desc);
@@ -26148,17 +26189,17 @@ let WuiCompatibleNetwork = class WuiCompatibleNetwork2 extends r$6 {
26148
26189
  </wui-flex>`;
26149
26190
  }
26150
26191
  };
26151
- WuiCompatibleNetwork.styles = [resetStyles, elementStyles, styles$1l];
26152
- __decorate$1Z([
26192
+ WuiCompatibleNetwork.styles = [resetStyles, elementStyles, styles$1n];
26193
+ __decorate$1$([
26153
26194
  n$5({ type: Array })
26154
26195
  ], WuiCompatibleNetwork.prototype, "networkImages", void 0);
26155
- __decorate$1Z([
26196
+ __decorate$1$([
26156
26197
  n$5()
26157
26198
  ], WuiCompatibleNetwork.prototype, "text", void 0);
26158
- WuiCompatibleNetwork = __decorate$1Z([
26199
+ WuiCompatibleNetwork = __decorate$1$([
26159
26200
  customElement("wui-compatible-network")
26160
26201
  ], WuiCompatibleNetwork);
26161
- const styles$1k = i$6`
26202
+ const styles$1m = i$6`
26162
26203
  wui-flex {
26163
26204
  width: 100%;
26164
26205
  background-color: var(--wui-color-gray-glass-005);
@@ -26167,7 +26208,7 @@ const styles$1k = i$6`
26167
26208
  var(--wui-spacing-1xs);
26168
26209
  }
26169
26210
  `;
26170
- var __decorate$1Y = function(decorators, target, key2, desc) {
26211
+ var __decorate$1_ = function(decorators, target, key2, desc) {
26171
26212
  var c2 = arguments.length, r3 = c2 < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key2) : desc, d4;
26172
26213
  if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
26173
26214
  r3 = Reflect.decorate(decorators, target, key2, desc);
@@ -26198,17 +26239,17 @@ let WuiBanner = class WuiBanner2 extends r$6 {
26198
26239
  `;
26199
26240
  }
26200
26241
  };
26201
- WuiBanner.styles = [resetStyles, elementStyles, styles$1k];
26202
- __decorate$1Y([
26242
+ WuiBanner.styles = [resetStyles, elementStyles, styles$1m];
26243
+ __decorate$1_([
26203
26244
  n$5()
26204
26245
  ], WuiBanner.prototype, "icon", void 0);
26205
- __decorate$1Y([
26246
+ __decorate$1_([
26206
26247
  n$5()
26207
26248
  ], WuiBanner.prototype, "text", void 0);
26208
- WuiBanner = __decorate$1Y([
26249
+ WuiBanner = __decorate$1_([
26209
26250
  customElement("wui-banner")
26210
26251
  ], WuiBanner);
26211
- const styles$1j = i$6`
26252
+ const styles$1l = i$6`
26212
26253
  wui-flex {
26213
26254
  width: 100%;
26214
26255
  background-color: var(--wui-color-gray-glass-005);
@@ -26217,7 +26258,7 @@ const styles$1j = i$6`
26217
26258
  var(--wui-spacing-1xs);
26218
26259
  }
26219
26260
  `;
26220
- var __decorate$1X = function(decorators, target, key2, desc) {
26261
+ var __decorate$1Z = function(decorators, target, key2, desc) {
26221
26262
  var c2 = arguments.length, r3 = c2 < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key2) : desc, d4;
26222
26263
  if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
26223
26264
  r3 = Reflect.decorate(decorators, target, key2, desc);
@@ -26243,20 +26284,20 @@ let WuiBannerImg = class WuiBannerImg2 extends r$6 {
26243
26284
  `;
26244
26285
  }
26245
26286
  };
26246
- WuiBannerImg.styles = [resetStyles, elementStyles, styles$1j];
26247
- __decorate$1X([
26287
+ WuiBannerImg.styles = [resetStyles, elementStyles, styles$1l];
26288
+ __decorate$1Z([
26248
26289
  n$5()
26249
26290
  ], WuiBannerImg.prototype, "imageSrc", void 0);
26250
- __decorate$1X([
26291
+ __decorate$1Z([
26251
26292
  n$5()
26252
26293
  ], WuiBannerImg.prototype, "text", void 0);
26253
- __decorate$1X([
26294
+ __decorate$1Z([
26254
26295
  n$5()
26255
26296
  ], WuiBannerImg.prototype, "size", void 0);
26256
- WuiBannerImg = __decorate$1X([
26297
+ WuiBannerImg = __decorate$1Z([
26257
26298
  customElement("wui-banner-img")
26258
26299
  ], WuiBannerImg);
26259
- const styles$1i = i$6`
26300
+ const styles$1k = i$6`
26260
26301
  button {
26261
26302
  padding: 6.5px var(--wui-spacing-l) 6.5px var(--wui-spacing-xs);
26262
26303
  display: flex;
@@ -26281,7 +26322,7 @@ const styles$1i = i$6`
26281
26322
  border-radius: var(--wui-border-radius-3xl);
26282
26323
  }
26283
26324
  `;
26284
- var __decorate$1W = function(decorators, target, key2, desc) {
26325
+ var __decorate$1Y = function(decorators, target, key2, desc) {
26285
26326
  var c2 = arguments.length, r3 = c2 < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key2) : desc, d4;
26286
26327
  if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
26287
26328
  r3 = Reflect.decorate(decorators, target, key2, desc);
@@ -26324,29 +26365,29 @@ let WuiListToken = class WuiListToken2 extends r$6 {
26324
26365
  return x$3`<wui-icon name="coinPlaceholder" color="fg-100"></wui-icon>`;
26325
26366
  }
26326
26367
  };
26327
- WuiListToken.styles = [resetStyles, elementStyles, styles$1i];
26328
- __decorate$1W([
26368
+ WuiListToken.styles = [resetStyles, elementStyles, styles$1k];
26369
+ __decorate$1Y([
26329
26370
  n$5()
26330
26371
  ], WuiListToken.prototype, "tokenName", void 0);
26331
- __decorate$1W([
26372
+ __decorate$1Y([
26332
26373
  n$5()
26333
26374
  ], WuiListToken.prototype, "tokenImageUrl", void 0);
26334
- __decorate$1W([
26375
+ __decorate$1Y([
26335
26376
  n$5({ type: Number })
26336
26377
  ], WuiListToken.prototype, "tokenValue", void 0);
26337
- __decorate$1W([
26378
+ __decorate$1Y([
26338
26379
  n$5()
26339
26380
  ], WuiListToken.prototype, "tokenAmount", void 0);
26340
- __decorate$1W([
26381
+ __decorate$1Y([
26341
26382
  n$5()
26342
26383
  ], WuiListToken.prototype, "tokenCurrency", void 0);
26343
- __decorate$1W([
26384
+ __decorate$1Y([
26344
26385
  n$5({ type: Boolean })
26345
26386
  ], WuiListToken.prototype, "clickable", void 0);
26346
- WuiListToken = __decorate$1W([
26387
+ WuiListToken = __decorate$1Y([
26347
26388
  customElement("wui-list-token")
26348
26389
  ], WuiListToken);
26349
- const styles$1h = i$6`
26390
+ const styles$1j = i$6`
26350
26391
  button {
26351
26392
  width: 100%;
26352
26393
  display: flex;
@@ -26367,7 +26408,7 @@ const styles$1h = i$6`
26367
26408
  width: auto;
26368
26409
  }
26369
26410
  `;
26370
- var __decorate$1V = function(decorators, target, key2, desc) {
26411
+ var __decorate$1X = function(decorators, target, key2, desc) {
26371
26412
  var c2 = arguments.length, r3 = c2 < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key2) : desc, d4;
26372
26413
  if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
26373
26414
  r3 = Reflect.decorate(decorators, target, key2, desc);
@@ -26415,32 +26456,32 @@ let WuiListDescription = class WuiListDescription2 extends r$6 {
26415
26456
  return x$3`<wui-text variant="paragraph-500" color="fg-100">${this.text}</wui-text>`;
26416
26457
  }
26417
26458
  };
26418
- WuiListDescription.styles = [resetStyles, elementStyles, styles$1h];
26419
- __decorate$1V([
26459
+ WuiListDescription.styles = [resetStyles, elementStyles, styles$1j];
26460
+ __decorate$1X([
26420
26461
  n$5()
26421
26462
  ], WuiListDescription.prototype, "icon", void 0);
26422
- __decorate$1V([
26463
+ __decorate$1X([
26423
26464
  n$5()
26424
26465
  ], WuiListDescription.prototype, "text", void 0);
26425
- __decorate$1V([
26466
+ __decorate$1X([
26426
26467
  n$5()
26427
26468
  ], WuiListDescription.prototype, "description", void 0);
26428
- __decorate$1V([
26469
+ __decorate$1X([
26429
26470
  n$5()
26430
26471
  ], WuiListDescription.prototype, "tag", void 0);
26431
- __decorate$1V([
26472
+ __decorate$1X([
26432
26473
  n$5()
26433
26474
  ], WuiListDescription.prototype, "iconBackgroundColor", void 0);
26434
- __decorate$1V([
26475
+ __decorate$1X([
26435
26476
  n$5()
26436
26477
  ], WuiListDescription.prototype, "iconColor", void 0);
26437
- __decorate$1V([
26478
+ __decorate$1X([
26438
26479
  n$5({ type: Boolean })
26439
26480
  ], WuiListDescription.prototype, "disabled", void 0);
26440
- WuiListDescription = __decorate$1V([
26481
+ WuiListDescription = __decorate$1X([
26441
26482
  customElement("wui-list-description")
26442
26483
  ], WuiListDescription);
26443
- const styles$1g = i$6`
26484
+ const styles$1i = i$6`
26444
26485
  :host {
26445
26486
  position: relative;
26446
26487
  display: inline-block;
@@ -26477,7 +26518,7 @@ const styles$1g = i$6`
26477
26518
  `;
26478
26519
  const specialCharactersRegex = /[.*+?^${}()|[\]\\]/gu;
26479
26520
  const numbersRegex = /[0-9,.]/u;
26480
- var __decorate$1U = function(decorators, target, key2, desc) {
26521
+ var __decorate$1W = function(decorators, target, key2, desc) {
26481
26522
  var c2 = arguments.length, r3 = c2 < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key2) : desc, d4;
26482
26523
  if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
26483
26524
  r3 = Reflect.decorate(decorators, target, key2, desc);
@@ -26531,20 +26572,20 @@ let WuiInputAmount = class WuiInputAmount2 extends r$6 {
26531
26572
  }));
26532
26573
  }
26533
26574
  };
26534
- WuiInputAmount.styles = [resetStyles, elementStyles, styles$1g];
26535
- __decorate$1U([
26575
+ WuiInputAmount.styles = [resetStyles, elementStyles, styles$1i];
26576
+ __decorate$1W([
26536
26577
  n$5({ type: Boolean })
26537
26578
  ], WuiInputAmount.prototype, "disabled", void 0);
26538
- __decorate$1U([
26579
+ __decorate$1W([
26539
26580
  n$5({ type: String })
26540
26581
  ], WuiInputAmount.prototype, "value", void 0);
26541
- __decorate$1U([
26582
+ __decorate$1W([
26542
26583
  n$5({ type: String })
26543
26584
  ], WuiInputAmount.prototype, "placeholder", void 0);
26544
- WuiInputAmount = __decorate$1U([
26585
+ WuiInputAmount = __decorate$1W([
26545
26586
  customElement("wui-input-amount")
26546
26587
  ], WuiInputAmount);
26547
- const styles$1f = i$6`
26588
+ const styles$1h = i$6`
26548
26589
  :host {
26549
26590
  display: flex;
26550
26591
  gap: var(--wui-spacing-xs);
@@ -26566,7 +26607,7 @@ const styles$1f = i$6`
26566
26607
  box-shadow: 0 0 0 2px var(--wui-color-gray-glass-002);
26567
26608
  }
26568
26609
  `;
26569
- var __decorate$1T = function(decorators, target, key2, desc) {
26610
+ var __decorate$1V = function(decorators, target, key2, desc) {
26570
26611
  var c2 = arguments.length, r3 = c2 < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key2) : desc, d4;
26571
26612
  if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
26572
26613
  r3 = Reflect.decorate(decorators, target, key2, desc);
@@ -26596,23 +26637,23 @@ let WuiPreviewItem = class WuiPreviewItem2 extends r$6 {
26596
26637
  return x$3`<wui-icon size="inherit" color="fg-200" name="networkPlaceholder"></wui-icon>`;
26597
26638
  }
26598
26639
  };
26599
- WuiPreviewItem.styles = [resetStyles, elementStyles, styles$1f];
26600
- __decorate$1T([
26640
+ WuiPreviewItem.styles = [resetStyles, elementStyles, styles$1h];
26641
+ __decorate$1V([
26601
26642
  n$5()
26602
26643
  ], WuiPreviewItem.prototype, "text", void 0);
26603
- __decorate$1T([
26644
+ __decorate$1V([
26604
26645
  n$5()
26605
26646
  ], WuiPreviewItem.prototype, "address", void 0);
26606
- __decorate$1T([
26647
+ __decorate$1V([
26607
26648
  n$5()
26608
26649
  ], WuiPreviewItem.prototype, "imageSrc", void 0);
26609
- __decorate$1T([
26650
+ __decorate$1V([
26610
26651
  n$5({ type: Boolean })
26611
26652
  ], WuiPreviewItem.prototype, "isAddress", void 0);
26612
- WuiPreviewItem = __decorate$1T([
26653
+ WuiPreviewItem = __decorate$1V([
26613
26654
  customElement("wui-preview-item")
26614
26655
  ], WuiPreviewItem);
26615
- const styles$1e = i$6`
26656
+ const styles$1g = i$6`
26616
26657
  button {
26617
26658
  padding: 6.5px var(--wui-spacing-l) 6.5px var(--wui-spacing-xs);
26618
26659
  display: flex;
@@ -26654,7 +26695,7 @@ const styles$1e = i$6`
26654
26695
  background-color: var(--wui-color-bg-125);
26655
26696
  }
26656
26697
  `;
26657
- var __decorate$1S = function(decorators, target, key2, desc) {
26698
+ var __decorate$1U = function(decorators, target, key2, desc) {
26658
26699
  var c2 = arguments.length, r3 = c2 < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key2) : desc, d4;
26659
26700
  if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
26660
26701
  r3 = Reflect.decorate(decorators, target, key2, desc);
@@ -26744,23 +26785,23 @@ let WuiListAccount = class WuiListAccount2 extends r$6 {
26744
26785
  return label;
26745
26786
  }
26746
26787
  };
26747
- WuiListAccount.styles = [resetStyles, elementStyles, styles$1e];
26748
- __decorate$1S([
26788
+ WuiListAccount.styles = [resetStyles, elementStyles, styles$1g];
26789
+ __decorate$1U([
26749
26790
  n$5()
26750
26791
  ], WuiListAccount.prototype, "accountAddress", void 0);
26751
- __decorate$1S([
26792
+ __decorate$1U([
26752
26793
  n$5()
26753
26794
  ], WuiListAccount.prototype, "accountType", void 0);
26754
- __decorate$1S([
26795
+ __decorate$1U([
26755
26796
  n$5({ type: Boolean })
26756
26797
  ], WuiListAccount.prototype, "selected", void 0);
26757
- __decorate$1S([
26798
+ __decorate$1U([
26758
26799
  n$5({ type: Function })
26759
26800
  ], WuiListAccount.prototype, "onSelect", void 0);
26760
- WuiListAccount = __decorate$1S([
26801
+ WuiListAccount = __decorate$1U([
26761
26802
  customElement("wui-list-account")
26762
26803
  ], WuiListAccount);
26763
- const styles$1d = i$6`
26804
+ const styles$1f = i$6`
26764
26805
  :host {
26765
26806
  position: relative;
26766
26807
  }
@@ -26798,7 +26839,7 @@ const styles$1d = i$6`
26798
26839
  }
26799
26840
  }
26800
26841
  `;
26801
- var __decorate$1R = function(decorators, target, key2, desc) {
26842
+ var __decorate$1T = function(decorators, target, key2, desc) {
26802
26843
  var c2 = arguments.length, r3 = c2 < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key2) : desc, d4;
26803
26844
  if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
26804
26845
  r3 = Reflect.decorate(decorators, target, key2, desc);
@@ -26820,17 +26861,17 @@ let WuiIconButton = class WuiIconButton2 extends r$6 {
26820
26861
  </button>`;
26821
26862
  }
26822
26863
  };
26823
- WuiIconButton.styles = [resetStyles, elementStyles, styles$1d];
26824
- __decorate$1R([
26864
+ WuiIconButton.styles = [resetStyles, elementStyles, styles$1f];
26865
+ __decorate$1T([
26825
26866
  n$5()
26826
26867
  ], WuiIconButton.prototype, "text", void 0);
26827
- __decorate$1R([
26868
+ __decorate$1T([
26828
26869
  n$5()
26829
26870
  ], WuiIconButton.prototype, "icon", void 0);
26830
- WuiIconButton = __decorate$1R([
26871
+ WuiIconButton = __decorate$1T([
26831
26872
  customElement("wui-icon-button")
26832
26873
  ], WuiIconButton);
26833
- const styles$1c = i$6`
26874
+ const styles$1e = i$6`
26834
26875
  button {
26835
26876
  column-gap: var(--wui-spacing-s);
26836
26877
  padding: 16.5px var(--wui-spacing-l) 16.5px var(--wui-spacing-xs);
@@ -26847,7 +26888,7 @@ const styles$1c = i$6`
26847
26888
  color: var(--wui-color-gray-glass-015);
26848
26889
  }
26849
26890
  `;
26850
- var __decorate$1Q = function(decorators, target, key2, desc) {
26891
+ var __decorate$1S = function(decorators, target, key2, desc) {
26851
26892
  var c2 = arguments.length, r3 = c2 < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key2) : desc, d4;
26852
26893
  if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
26853
26894
  r3 = Reflect.decorate(decorators, target, key2, desc);
@@ -26872,20 +26913,20 @@ let WuiListButton = class WuiListButton2 extends r$6 {
26872
26913
  `;
26873
26914
  }
26874
26915
  };
26875
- WuiListButton.styles = [resetStyles, elementStyles, styles$1c];
26876
- __decorate$1Q([
26916
+ WuiListButton.styles = [resetStyles, elementStyles, styles$1e];
26917
+ __decorate$1S([
26877
26918
  n$5()
26878
26919
  ], WuiListButton.prototype, "text", void 0);
26879
- __decorate$1Q([
26920
+ __decorate$1S([
26880
26921
  n$5({ type: Boolean })
26881
26922
  ], WuiListButton.prototype, "disabled", void 0);
26882
- __decorate$1Q([
26923
+ __decorate$1S([
26883
26924
  n$5()
26884
26925
  ], WuiListButton.prototype, "tabIdx", void 0);
26885
- WuiListButton = __decorate$1Q([
26926
+ WuiListButton = __decorate$1S([
26886
26927
  customElement("wui-list-button")
26887
26928
  ], WuiListButton);
26888
- const styles$1b = i$6`
26929
+ const styles$1d = i$6`
26889
26930
  button {
26890
26931
  column-gap: var(--wui-spacing-s);
26891
26932
  padding: 7px var(--wui-spacing-l) 7px var(--wui-spacing-xs);
@@ -26921,7 +26962,7 @@ const styles$1b = i$6`
26921
26962
  color: var(--wui-color-gray-glass-015);
26922
26963
  }
26923
26964
  `;
26924
- var __decorate$1P = function(decorators, target, key2, desc) {
26965
+ var __decorate$1R = function(decorators, target, key2, desc) {
26925
26966
  var c2 = arguments.length, r3 = c2 < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key2) : desc, d4;
26926
26967
  if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
26927
26968
  r3 = Reflect.decorate(decorators, target, key2, desc);
@@ -26961,26 +27002,26 @@ let WuiListSocial = class WuiListSocial2 extends r$6 {
26961
27002
  return null;
26962
27003
  }
26963
27004
  };
26964
- WuiListSocial.styles = [resetStyles, elementStyles, styles$1b];
26965
- __decorate$1P([
27005
+ WuiListSocial.styles = [resetStyles, elementStyles, styles$1d];
27006
+ __decorate$1R([
26966
27007
  n$5()
26967
27008
  ], WuiListSocial.prototype, "logo", void 0);
26968
- __decorate$1P([
27009
+ __decorate$1R([
26969
27010
  n$5()
26970
27011
  ], WuiListSocial.prototype, "name", void 0);
26971
- __decorate$1P([
27012
+ __decorate$1R([
26972
27013
  n$5()
26973
27014
  ], WuiListSocial.prototype, "align", void 0);
26974
- __decorate$1P([
27015
+ __decorate$1R([
26975
27016
  n$5()
26976
27017
  ], WuiListSocial.prototype, "tabIdx", void 0);
26977
- __decorate$1P([
27018
+ __decorate$1R([
26978
27019
  n$5({ type: Boolean })
26979
27020
  ], WuiListSocial.prototype, "disabled", void 0);
26980
- WuiListSocial = __decorate$1P([
27021
+ WuiListSocial = __decorate$1R([
26981
27022
  customElement("wui-list-social")
26982
27023
  ], WuiListSocial);
26983
- const styles$1a = i$6`
27024
+ const styles$1c = i$6`
26984
27025
  button {
26985
27026
  display: block;
26986
27027
  display: flex;
@@ -27010,7 +27051,7 @@ const styles$1a = i$6`
27010
27051
  background-color: var(--wui-color-gray-glass-005);
27011
27052
  }
27012
27053
  `;
27013
- var __decorate$1O = function(decorators, target, key2, desc) {
27054
+ var __decorate$1Q = function(decorators, target, key2, desc) {
27014
27055
  var c2 = arguments.length, r3 = c2 < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key2) : desc, d4;
27015
27056
  if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
27016
27057
  r3 = Reflect.decorate(decorators, target, key2, desc);
@@ -27044,14 +27085,14 @@ let WuiSelect = class WuiSelect2 extends r$6 {
27044
27085
  ></wui-icon-box>`;
27045
27086
  }
27046
27087
  };
27047
- WuiSelect.styles = [resetStyles, elementStyles, colorStyles, styles$1a];
27048
- __decorate$1O([
27088
+ WuiSelect.styles = [resetStyles, elementStyles, colorStyles, styles$1c];
27089
+ __decorate$1Q([
27049
27090
  n$5()
27050
27091
  ], WuiSelect.prototype, "imageSrc", void 0);
27051
- WuiSelect = __decorate$1O([
27092
+ WuiSelect = __decorate$1Q([
27052
27093
  customElement("wui-select")
27053
27094
  ], WuiSelect);
27054
- const styles$19 = i$6`
27095
+ const styles$1b = i$6`
27055
27096
  label {
27056
27097
  display: flex;
27057
27098
  align-items: center;
@@ -27106,7 +27147,7 @@ const styles$19 = i$6`
27106
27147
  opacity: 1;
27107
27148
  }
27108
27149
  `;
27109
- var __decorate$1N = function(decorators, target, key2, desc) {
27150
+ var __decorate$1P = function(decorators, target, key2, desc) {
27110
27151
  var c2 = arguments.length, r3 = c2 < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key2) : desc, d4;
27111
27152
  if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
27112
27153
  r3 = Reflect.decorate(decorators, target, key2, desc);
@@ -27147,13 +27188,176 @@ let WuiCheckBox = class WuiCheckBox2 extends r$6 {
27147
27188
  }));
27148
27189
  }
27149
27190
  };
27150
- WuiCheckBox.styles = [resetStyles, styles$19];
27151
- __decorate$1N([
27191
+ WuiCheckBox.styles = [resetStyles, styles$1b];
27192
+ __decorate$1P([
27152
27193
  n$5({ type: Boolean })
27153
27194
  ], WuiCheckBox.prototype, "checked", void 0);
27154
- WuiCheckBox = __decorate$1N([
27195
+ WuiCheckBox = __decorate$1P([
27155
27196
  customElement("wui-checkbox")
27156
27197
  ], WuiCheckBox);
27198
+ const styles$1a = i$6`
27199
+ :host {
27200
+ display: flex;
27201
+ align-items: center;
27202
+ justify-content: center;
27203
+ }
27204
+
27205
+ label {
27206
+ position: relative;
27207
+ display: inline-block;
27208
+ width: 32px;
27209
+ height: 22px;
27210
+ }
27211
+
27212
+ input {
27213
+ width: 0;
27214
+ height: 0;
27215
+ opacity: 0;
27216
+ }
27217
+
27218
+ span {
27219
+ position: absolute;
27220
+ cursor: pointer;
27221
+ top: 0;
27222
+ left: 0;
27223
+ right: 0;
27224
+ bottom: 0;
27225
+ background-color: var(--wui-color-blue-100);
27226
+ border-width: 1px;
27227
+ border-style: solid;
27228
+ border-color: var(--wui-color-gray-glass-002);
27229
+ border-radius: 999px;
27230
+ transition:
27231
+ background-color var(--wui-ease-inout-power-1) var(--wui-duration-md),
27232
+ border-color var(--wui-ease-inout-power-1) var(--wui-duration-md);
27233
+ will-change: background-color, border-color;
27234
+ }
27235
+
27236
+ span:before {
27237
+ position: absolute;
27238
+ content: '';
27239
+ height: 16px;
27240
+ width: 16px;
27241
+ left: 3px;
27242
+ top: 2px;
27243
+ background-color: var(--wui-color-inverse-100);
27244
+ transition: transform var(--wui-ease-inout-power-1) var(--wui-duration-lg);
27245
+ will-change: transform;
27246
+ border-radius: 50%;
27247
+ }
27248
+
27249
+ input:checked + span {
27250
+ border-color: var(--wui-color-gray-glass-005);
27251
+ background-color: var(--wui-color-blue-100);
27252
+ }
27253
+
27254
+ input:not(:checked) + span {
27255
+ background-color: var(--wui-color-gray-glass-010);
27256
+ }
27257
+
27258
+ input:checked + span:before {
27259
+ transform: translateX(calc(100% - 7px));
27260
+ }
27261
+ `;
27262
+ var __decorate$1O = function(decorators, target, key2, desc) {
27263
+ var c2 = arguments.length, r3 = c2 < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key2) : desc, d4;
27264
+ if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
27265
+ r3 = Reflect.decorate(decorators, target, key2, desc);
27266
+ else
27267
+ for (var i4 = decorators.length - 1; i4 >= 0; i4--)
27268
+ if (d4 = decorators[i4])
27269
+ r3 = (c2 < 3 ? d4(r3) : c2 > 3 ? d4(target, key2, r3) : d4(target, key2)) || r3;
27270
+ return c2 > 3 && r3 && Object.defineProperty(target, key2, r3), r3;
27271
+ };
27272
+ let WuiSwitch = class WuiSwitch2 extends r$6 {
27273
+ constructor() {
27274
+ super(...arguments);
27275
+ this.inputElementRef = e$1();
27276
+ this.checked = void 0;
27277
+ }
27278
+ render() {
27279
+ return x$3`
27280
+ <label>
27281
+ <input
27282
+ ${n$3(this.inputElementRef)}
27283
+ type="checkbox"
27284
+ ?checked=${o$4(this.checked)}
27285
+ @change=${this.dispatchChangeEvent.bind(this)}
27286
+ />
27287
+ <span></span>
27288
+ </label>
27289
+ `;
27290
+ }
27291
+ dispatchChangeEvent() {
27292
+ var _a3;
27293
+ this.dispatchEvent(new CustomEvent("switchChange", {
27294
+ detail: (_a3 = this.inputElementRef.value) == null ? void 0 : _a3.checked,
27295
+ bubbles: true,
27296
+ composed: true
27297
+ }));
27298
+ }
27299
+ };
27300
+ WuiSwitch.styles = [resetStyles, elementStyles, colorStyles, styles$1a];
27301
+ __decorate$1O([
27302
+ n$5({ type: Boolean })
27303
+ ], WuiSwitch.prototype, "checked", void 0);
27304
+ WuiSwitch = __decorate$1O([
27305
+ customElement("wui-switch")
27306
+ ], WuiSwitch);
27307
+ const styles$19 = i$6`
27308
+ :host {
27309
+ height: 100%;
27310
+ }
27311
+
27312
+ button {
27313
+ display: flex;
27314
+ align-items: center;
27315
+ justify-content: center;
27316
+ column-gap: var(--wui-spacing-1xs);
27317
+ padding: var(--wui-spacing-xs) var(--wui-spacing-s);
27318
+ background-color: var(--wui-color-gray-glass-002);
27319
+ border-radius: var(--wui-border-radius-xs);
27320
+ box-shadow: inset 0 0 0 1px var(--wui-color-gray-glass-002);
27321
+ transition: background-color var(--wui-ease-out-power-1) var(--wui-duration-md);
27322
+ will-change: background-color;
27323
+ cursor: pointer;
27324
+ }
27325
+
27326
+ wui-switch {
27327
+ pointer-events: none;
27328
+ }
27329
+ `;
27330
+ var __decorate$1N = function(decorators, target, key2, desc) {
27331
+ var c2 = arguments.length, r3 = c2 < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key2) : desc, d4;
27332
+ if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
27333
+ r3 = Reflect.decorate(decorators, target, key2, desc);
27334
+ else
27335
+ for (var i4 = decorators.length - 1; i4 >= 0; i4--)
27336
+ if (d4 = decorators[i4])
27337
+ r3 = (c2 < 3 ? d4(r3) : c2 > 3 ? d4(target, key2, r3) : d4(target, key2)) || r3;
27338
+ return c2 > 3 && r3 && Object.defineProperty(target, key2, r3), r3;
27339
+ };
27340
+ let WuiCertifiedSwitch = class WuiCertifiedSwitch2 extends r$6 {
27341
+ constructor() {
27342
+ super(...arguments);
27343
+ this.checked = void 0;
27344
+ }
27345
+ render() {
27346
+ return x$3`
27347
+ <button>
27348
+ <wui-icon size="xl" name="walletConnectBrown"></wui-icon>
27349
+ <wui-switch ?checked=${o$4(this.checked)}></wui-switch>
27350
+ </button>
27351
+ `;
27352
+ }
27353
+ };
27354
+ WuiCertifiedSwitch.styles = [resetStyles, elementStyles, styles$19];
27355
+ __decorate$1N([
27356
+ n$5({ type: Boolean })
27357
+ ], WuiCertifiedSwitch.prototype, "checked", void 0);
27358
+ WuiCertifiedSwitch = __decorate$1N([
27359
+ customElement("wui-certified-switch")
27360
+ ], WuiCertifiedSwitch);
27157
27361
  const styles$18 = i$6`
27158
27362
  :host {
27159
27363
  display: grid;
@@ -32834,7 +33038,7 @@ async function call$4(client, args) {
32834
33038
  return { data: response };
32835
33039
  } catch (err) {
32836
33040
  const data3 = getRevertErrorData$1(err);
32837
- const { offchainLookup: offchainLookup2, offchainLookupSignature: offchainLookupSignature2 } = await import("./ccip-DLENYyuh.js");
33041
+ const { offchainLookup: offchainLookup2, offchainLookupSignature: offchainLookupSignature2 } = await import("./ccip-DwyKipDA.js");
32838
33042
  if (client.ccipRead !== false && (data3 == null ? void 0 : data3.slice(0, 10)) === offchainLookupSignature2 && to2)
32839
33043
  return { data: await offchainLookup2(client, { data: data3, to: to2 }) };
32840
33044
  if (deploylessCall && (data3 == null ? void 0 : data3.slice(0, 10)) === "0x101bb98d")
@@ -93101,7 +93305,7 @@ class UniversalAdapterClient {
93101
93305
  (_k = this.appKit) == null ? void 0 : _k.setClientId(clientId);
93102
93306
  }
93103
93307
  if (siweConfig && isSiweEnabled && siweParams && isProviderSupported && isSiweParamsValid && ChainController.state.activeChain === ConstantsUtil$3.CHAIN.EVM) {
93104
- const { SIWEController, getDidChainId, getDidAddress } = await import("./index-D_KUcJhf.js");
93308
+ const { SIWEController, getDidChainId, getDidAddress } = await import("./index-BBqHRRQx.js");
93105
93309
  const chains = (_l = this.caipNetworks) == null ? void 0 : _l.filter((network) => network.chainNamespace === ConstantsUtil$3.CHAIN.EVM).map((chain) => chain.caipNetworkId);
93106
93310
  siweParams.chains = (_m = this.caipNetworks) == null ? void 0 : _m.filter((network) => network.chainNamespace === ConstantsUtil$3.CHAIN.EVM).map((chain) => chain.id);
93107
93311
  const result = await WalletConnectProvider2.authenticate({
@@ -93149,7 +93353,7 @@ class UniversalAdapterClient {
93149
93353
  var _a3, _b2, _c, _d;
93150
93354
  SafeLocalStorage.removeItem(SafeLocalStorageKeys.WALLET_ID);
93151
93355
  if ((_a3 = siweConfig == null ? void 0 : siweConfig.options) == null ? void 0 : _a3.signOutOnDisconnect) {
93152
- const { SIWEController } = await import("./index-D_KUcJhf.js");
93356
+ const { SIWEController } = await import("./index-BBqHRRQx.js");
93153
93357
  await SIWEController.signOut();
93154
93358
  }
93155
93359
  await ((_b2 = this.walletConnectProvider) == null ? void 0 : _b2.disconnect());
@@ -93858,7 +94062,7 @@ class AppKit {
93858
94062
  const evmAdapter = (_a3 = options.adapters) == null ? void 0 : _a3.find((adapter) => adapter.chainNamespace === ConstantsUtil$3.CHAIN.EVM);
93859
94063
  if (evmAdapter) {
93860
94064
  if (options.siweConfig) {
93861
- const { SIWEController } = await import("./index-D_KUcJhf.js");
94065
+ const { SIWEController } = await import("./index-BBqHRRQx.js");
93862
94066
  SIWEController.setSIWEClient(options.siweConfig);
93863
94067
  }
93864
94068
  }
@@ -93928,8 +94132,8 @@ class AppKit {
93928
94132
  isInitialized = true;
93929
94133
  this.initPromise = new Promise(async (resolve) => {
93930
94134
  await Promise.all([
93931
- import("./index-DLCOOH_O.js"),
93932
- import("./w3m-modal-BnrhpO6B.js")
94135
+ import("./index-BYa2Fgkb.js"),
94136
+ import("./w3m-modal-B_Hh2Aq8.js")
93933
94137
  ]);
93934
94138
  const modal = document.createElement("w3m-modal");
93935
94139
  if (!OptionsController.state.disableAppend) {
@@ -93941,7 +94145,7 @@ class AppKit {
93941
94145
  return this.initPromise;
93942
94146
  }
93943
94147
  }
93944
- const PACKAGE_VERSION = "1.3.1";
94148
+ const PACKAGE_VERSION = "1.3.2";
93945
94149
  var __decorate$1J = function(decorators, target, key2, desc) {
93946
94150
  var c2 = arguments.length, r3 = c2 < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key2) : desc, d4;
93947
94151
  if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
@@ -95078,16 +95282,35 @@ let W3mAllWalletsView = class W3mAllWalletsView2 extends r$6 {
95078
95282
  render() {
95079
95283
  const isSearch = this.search.length >= 2;
95080
95284
  return x$3`
95081
- <wui-flex .padding=${["0", "s", "s", "s"]} gap="s">
95285
+ <wui-flex .padding=${["0", "s", "s", "s"]} gap="xs">
95082
95286
  <wui-search-bar @inputChange=${this.onInputChange.bind(this)}></wui-search-bar>
95287
+ <wui-certified-switch
95288
+ ?checked=${this.badge}
95289
+ @click=${this.onClick.bind(this)}
95290
+ data-testid="wui-certified-switch"
95291
+ ></wui-certified-switch>
95083
95292
  ${this.qrButtonTemplate()}
95084
95293
  </wui-flex>
95085
- ${isSearch ? x$3`<w3m-all-wallets-search query=${this.search}></w3m-all-wallets-search>` : x$3`<w3m-all-wallets-list></w3m-all-wallets-list>`}
95294
+ ${isSearch || this.badge ? x$3`<w3m-all-wallets-search
95295
+ query=${this.search}
95296
+ badge=${o$4(this.badge)}
95297
+ ></w3m-all-wallets-search>` : x$3`<w3m-all-wallets-list badge=${o$4(this.badge)}></w3m-all-wallets-list>`}
95086
95298
  `;
95087
95299
  }
95088
95300
  onInputChange(event) {
95089
95301
  this.onDebouncedSearch(event.detail);
95090
95302
  }
95303
+ onClick() {
95304
+ if (this.badge === "certified") {
95305
+ this.badge = void 0;
95306
+ return;
95307
+ }
95308
+ this.badge = "certified";
95309
+ SnackController.showSvg("Only WalletConnect certified", {
95310
+ icon: "walletConnectBrown",
95311
+ iconColor: "accent-100"
95312
+ });
95313
+ }
95091
95314
  qrButtonTemplate() {
95092
95315
  if (CoreHelperUtil.isMobile()) {
95093
95316
  return x$3`
@@ -95113,6 +95336,9 @@ let W3mAllWalletsView = class W3mAllWalletsView2 extends r$6 {
95113
95336
  __decorate$1B([
95114
95337
  r$4()
95115
95338
  ], W3mAllWalletsView.prototype, "search", void 0);
95339
+ __decorate$1B([
95340
+ r$4()
95341
+ ], W3mAllWalletsView.prototype, "badge", void 0);
95116
95342
  W3mAllWalletsView = __decorate$1B([
95117
95343
  customElement("w3m-all-wallets-view")
95118
95344
  ], W3mAllWalletsView);
@@ -95420,8 +95646,8 @@ const styles$11 = i$6`
95420
95646
  to bottom,
95421
95647
  rgba(0, 0, 0, calc(1 - var(--connect-scroll--top-opacity))) 0px,
95422
95648
  rgba(200, 200, 200, calc(1 - var(--connect-scroll--top-opacity))) 1px,
95423
- black 140px,
95424
- black calc(100% - 140px),
95649
+ black 40px,
95650
+ black calc(100% - 40px),
95425
95651
  rgba(155, 155, 155, calc(1 - var(--connect-scroll--bottom-opacity))) calc(100% - 1px),
95426
95652
  rgba(0, 0, 0, calc(1 - var(--connect-scroll--bottom-opacity))) 100%
95427
95653
  );
@@ -101766,12 +101992,12 @@ const styles$x = i$6`
101766
101992
  overflow: scroll;
101767
101993
  scrollbar-width: none;
101768
101994
  grid-auto-rows: min-content;
101769
- grid-template-columns: repeat(auto-fill, 76px);
101995
+ grid-template-columns: repeat(auto-fill, 104px);
101770
101996
  }
101771
101997
 
101772
- @media (max-width: 435px) {
101998
+ @media (max-width: 350px) {
101773
101999
  wui-grid {
101774
- grid-template-columns: repeat(auto-fill, 77px);
102000
+ grid-template-columns: repeat(2, 1fr);
101775
102001
  }
101776
102002
  }
101777
102003
 
@@ -101982,9 +102208,10 @@ const styles$w = i$6`
101982
102208
  flex-direction: column;
101983
102209
  justify-content: center;
101984
102210
  align-items: center;
101985
- width: 76px;
102211
+ cursor: pointer;
102212
+ width: 104px;
101986
102213
  row-gap: var(--wui-spacing-xs);
101987
- padding: var(--wui-spacing-xs) var(--wui-spacing-0);
102214
+ padding: var(--wui-spacing-s) var(--wui-spacing-0);
101988
102215
  background-color: var(--wui-color-gray-glass-002);
101989
102216
  border-radius: clamp(0px, var(--wui-border-radius-xs), 20px);
101990
102217
  will-change: background-color, color;
@@ -101992,20 +102219,24 @@ const styles$w = i$6`
101992
102219
  border: none;
101993
102220
  }
101994
102221
 
101995
- button > wui-text {
102222
+ button > wui-flex > wui-text {
101996
102223
  color: var(--wui-color-fg-100);
101997
- max-width: var(--wui-icon-box-size-xl);
102224
+ max-width: 86px;
101998
102225
  white-space: nowrap;
101999
102226
  overflow: hidden;
102000
102227
  text-overflow: ellipsis;
102001
102228
  justify-content: center;
102002
102229
  }
102003
102230
 
102231
+ button > wui-flex > wui-text.certified {
102232
+ max-width: 66px;
102233
+ }
102234
+
102004
102235
  button:hover:enabled {
102005
102236
  background-color: var(--wui-color-gray-glass-005);
102006
102237
  }
102007
102238
 
102008
- button:disabled > wui-text {
102239
+ button:disabled > wui-flex > wui-text {
102009
102240
  color: var(--wui-color-gray-glass-015);
102010
102241
  }
102011
102242
 
@@ -102022,6 +102253,12 @@ const styles$w = i$6`
102022
102253
  [data-selected='true']:active:enabled {
102023
102254
  background-color: var(--wui-color-accent-glass-010);
102024
102255
  }
102256
+
102257
+ @media (max-width: 350px) {
102258
+ button {
102259
+ width: 100%;
102260
+ }
102261
+ }
102025
102262
  `;
102026
102263
  var __decorate$Q = function(decorators, target, key2, desc) {
102027
102264
  var c2 = arguments.length, r3 = c2 < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key2) : desc, d4;
@@ -102059,11 +102296,20 @@ let W3mAllWalletsListItem = class W3mAllWalletsListItem2 extends r$6 {
102059
102296
  this.observer.disconnect();
102060
102297
  }
102061
102298
  render() {
102062
- var _a3;
102299
+ var _a3, _b2;
102300
+ const certified = ((_a3 = this.wallet) == null ? void 0 : _a3.badge_type) === "certified";
102063
102301
  return x$3`
102064
102302
  <button ontouchstart>
102065
102303
  ${this.imageTemplate()}
102066
- <wui-text variant="tiny-500" color="inherit">${(_a3 = this.wallet) == null ? void 0 : _a3.name}</wui-text>
102304
+ <wui-flex flexDirection="row" alignItems="center" justifyContent="center" gap="3xs">
102305
+ <wui-text
102306
+ variant="tiny-500"
102307
+ color="inherit"
102308
+ class=${o$4(certified ? "certified" : void 0)}
102309
+ >${(_b2 = this.wallet) == null ? void 0 : _b2.name}</wui-text
102310
+ >
102311
+ ${certified ? x$3`<wui-icon size="sm" name="walletConnectBrown"></wui-icon>` : null}
102312
+ </wui-flex>
102067
102313
  </button>
102068
102314
  `;
102069
102315
  }
@@ -102126,6 +102372,7 @@ const styles$v = i$6`
102126
102372
  overflow: scroll;
102127
102373
  scrollbar-width: none;
102128
102374
  grid-auto-rows: min-content;
102375
+ grid-template-columns: repeat(auto-fill, 104px);
102129
102376
  }
102130
102377
 
102131
102378
  wui-grid[data-scroll='false'] {
@@ -102140,6 +102387,12 @@ const styles$v = i$6`
102140
102387
  justify-content: center;
102141
102388
  align-items: center;
102142
102389
  }
102390
+
102391
+ @media (max-width: 350px) {
102392
+ wui-grid {
102393
+ grid-template-columns: repeat(2, 1fr);
102394
+ }
102395
+ }
102143
102396
  `;
102144
102397
  var __decorate$P = function(decorators, target, key2, desc) {
102145
102398
  var c2 = arguments.length, r3 = c2 < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key2) : desc, d4;
@@ -102155,6 +102408,7 @@ let W3mAllWalletsSearch = class W3mAllWalletsSearch2 extends r$6 {
102155
102408
  constructor() {
102156
102409
  super(...arguments);
102157
102410
  this.prevQuery = "";
102411
+ this.prevBadge = void 0;
102158
102412
  this.loading = true;
102159
102413
  this.query = "";
102160
102414
  }
@@ -102163,10 +102417,11 @@ let W3mAllWalletsSearch = class W3mAllWalletsSearch2 extends r$6 {
102163
102417
  return this.loading ? x$3`<wui-loading-spinner color="accent-100"></wui-loading-spinner>` : this.walletsTemplate();
102164
102418
  }
102165
102419
  async onSearch() {
102166
- if (this.query.trim() !== this.prevQuery.trim()) {
102420
+ if (this.query.trim() !== this.prevQuery.trim() || this.badge !== this.prevBadge) {
102167
102421
  this.prevQuery = this.query;
102422
+ this.prevBadge = this.badge;
102168
102423
  this.loading = true;
102169
- await ApiController.searchWallet({ search: this.query });
102424
+ await ApiController.searchWallet({ search: this.query, badge: this.badge });
102170
102425
  this.loading = false;
102171
102426
  }
102172
102427
  }
@@ -102190,9 +102445,9 @@ let W3mAllWalletsSearch = class W3mAllWalletsSearch2 extends r$6 {
102190
102445
  return x$3`
102191
102446
  <wui-grid
102192
102447
  .padding=${["0", "s", "s", "s"]}
102193
- gridTemplateColumns="repeat(4, 1fr)"
102194
102448
  rowGap="l"
102195
102449
  columnGap="xs"
102450
+ justifyContent="space-between"
102196
102451
  >
102197
102452
  ${wallets2.map((wallet) => x$3`
102198
102453
  <w3m-all-wallets-list-item
@@ -102220,6 +102475,9 @@ __decorate$P([
102220
102475
  __decorate$P([
102221
102476
  n$5()
102222
102477
  ], W3mAllWalletsSearch.prototype, "query", void 0);
102478
+ __decorate$P([
102479
+ n$5()
102480
+ ], W3mAllWalletsSearch.prototype, "badge", void 0);
102223
102481
  W3mAllWalletsSearch = __decorate$P([
102224
102482
  customElement("w3m-all-wallets-search")
102225
102483
  ], W3mAllWalletsSearch);
@@ -103497,7 +103755,7 @@ let W3mHeader = class W3mHeader2 extends r$6 {
103497
103755
  }
103498
103756
  async onClose() {
103499
103757
  if (this.isSiweEnabled) {
103500
- const { SIWEController } = await import("./index-D_KUcJhf.js");
103758
+ const { SIWEController } = await import("./index-BBqHRRQx.js");
103501
103759
  const isApproveSignScreen = RouterController.state.view === "ApproveTransaction";
103502
103760
  const isUnauthenticated = SIWEController.state.status !== "success";
103503
103761
  if (isUnauthenticated && isApproveSignScreen) {
@@ -104528,14 +104786,15 @@ let W3mSnackBar = class W3mSnackBar2 extends r$6 {
104528
104786
  this.unsubscribe.forEach((unsubscribe) => unsubscribe());
104529
104787
  }
104530
104788
  render() {
104531
- const { message, variant } = SnackController.state;
104789
+ const { message, variant, svg } = SnackController.state;
104532
104790
  const preset = presets$1[variant];
104791
+ const { icon, iconColor } = svg ?? preset ?? {};
104533
104792
  return x$3`
104534
104793
  <wui-snackbar
104535
104794
  message=${message}
104536
104795
  backgroundColor=${preset == null ? void 0 : preset.backgroundColor}
104537
- iconColor=${preset == null ? void 0 : preset.iconColor}
104538
- icon=${preset == null ? void 0 : preset.icon}
104796
+ iconColor=${iconColor}
104797
+ icon=${icon}
104539
104798
  .loading=${variant === "loading"}
104540
104799
  ></wui-snackbar>
104541
104800
  `;
@@ -111704,7 +111963,7 @@ function version4$1(parameters) {
111704
111963
  async getProvider() {
111705
111964
  if (!walletProvider) {
111706
111965
  const CoinbaseWalletSDK = await (async () => {
111707
- const { default: SDK } = await import("./index-UmRa0AKq.js").then((n5) => n5.i);
111966
+ const { default: SDK } = await import("./index-t51apqeL.js").then((n5) => n5.i);
111708
111967
  if (typeof SDK !== "function" && typeof SDK.default === "function")
111709
111968
  return SDK.default;
111710
111969
  return SDK;
@@ -111883,7 +112142,7 @@ function version3$1(parameters) {
111883
112142
  var _a3;
111884
112143
  if (!walletProvider) {
111885
112144
  const CoinbaseWalletSDK = await (async () => {
111886
- const { default: SDK } = await import("./index-COzyUuJF.js").then((n5) => n5.i);
112145
+ const { default: SDK } = await import("./index-BkJs1o-3.js").then((n5) => n5.i);
111887
112146
  if (typeof SDK !== "function" && typeof SDK.default === "function")
111888
112147
  return SDK.default;
111889
112148
  return SDK;
@@ -112256,7 +112515,7 @@ class WagmiAdapter {
112256
112515
  const siweConfig = (_k = this.options) == null ? void 0 : _k.siweConfig;
112257
112516
  if (isSiweEnabled && isProviderSupported && isSiweParamsValid && siweConfig) {
112258
112517
  await connector.setRequestedChainsIds(siweParams.chains);
112259
- const { SIWEController, getDidChainId, getDidAddress } = await import("./index-D_KUcJhf.js");
112518
+ const { SIWEController, getDidChainId, getDidAddress } = await import("./index-BBqHRRQx.js");
112260
112519
  const chains = (_l = this.caipNetworks) == null ? void 0 : _l.filter((network) => network.chainNamespace === "eip155").map((chain) => chain.caipNetworkId);
112261
112520
  siweParams.chains = (_m = this.caipNetworks) == null ? void 0 : _m.filter((network) => network.chainNamespace === "eip155").map((chain) => chain.id);
112262
112521
  const result = await provider.authenticate({
@@ -112344,7 +112603,7 @@ class WagmiAdapter {
112344
112603
  var _a4, _b3, _c2, _d2, _e2;
112345
112604
  await disconnect$1(this.wagmiConfig);
112346
112605
  if ((_c2 = (_b3 = (_a4 = this.options) == null ? void 0 : _a4.siweConfig) == null ? void 0 : _b3.options) == null ? void 0 : _c2.signOutOnDisconnect) {
112347
- const { SIWEController } = await import("./index-D_KUcJhf.js");
112606
+ const { SIWEController } = await import("./index-BBqHRRQx.js");
112348
112607
  await SIWEController.signOut();
112349
112608
  }
112350
112609
  SafeLocalStorage.removeItem(SafeLocalStorageKeys.WALLET_ID);
@@ -112755,6 +113014,7 @@ class WagmiAdapter {
112755
113014
  var _a4, _b2;
112756
113015
  const shouldSkip = ConstantsUtil$1.AUTH_CONNECTOR_ID === id;
112757
113016
  if (!shouldSkip) {
113017
+ const injectedConnector = id === ConstantsUtil$1.INJECTED_CONNECTOR_ID;
112758
113018
  w3mConnectors.push({
112759
113019
  id,
112760
113020
  explorerId: PresetsUtil.ConnectorExplorerIds[id],
@@ -112762,9 +113022,7 @@ class WagmiAdapter {
112762
113022
  name: PresetsUtil.ConnectorNamesMap[id] ?? name2,
112763
113023
  imageId: PresetsUtil.ConnectorImageIds[id],
112764
113024
  type: PresetsUtil.ConnectorTypesMap[type2] ?? "EXTERNAL",
112765
- info: {
112766
- rdns: id
112767
- },
113025
+ info: injectedConnector ? void 0 : { rdns: id },
112768
113026
  chain: this.chainNamespace
112769
113027
  });
112770
113028
  }
@@ -134041,7 +134299,7 @@ async function getWebSocketRpcClient(url, options = {}) {
134041
134299
  const { keepAlive, reconnect: reconnect2 } = options;
134042
134300
  return getSocketRpcClient({
134043
134301
  async getSocket({ onClose, onError, onOpen, onResponse }) {
134044
- const WebSocket2 = await import("./native-BWr1yTvD.js").then((module) => module.WebSocket);
134302
+ const WebSocket2 = await import("./native-heDj6rAL.js").then((module) => module.WebSocket);
134045
134303
  const socket = new WebSocket2(url);
134046
134304
  function onClose_() {
134047
134305
  onClose();
@@ -140227,7 +140485,7 @@ function version4(parameters) {
140227
140485
  async getProvider() {
140228
140486
  if (!walletProvider) {
140229
140487
  const CoinbaseWalletSDK = await (async () => {
140230
- const { default: SDK } = await import("./index-UmRa0AKq.js").then((n5) => n5.i);
140488
+ const { default: SDK } = await import("./index-t51apqeL.js").then((n5) => n5.i);
140231
140489
  if (typeof SDK !== "function" && typeof SDK.default === "function")
140232
140490
  return SDK.default;
140233
140491
  return SDK;
@@ -140406,7 +140664,7 @@ function version3(parameters) {
140406
140664
  var _a3;
140407
140665
  if (!walletProvider) {
140408
140666
  const CoinbaseWalletSDK = await (async () => {
140409
- const { default: SDK } = await import("./index-COzyUuJF.js").then((n5) => n5.i);
140667
+ const { default: SDK } = await import("./index-BkJs1o-3.js").then((n5) => n5.i);
140410
140668
  if (typeof SDK !== "function" && typeof SDK.default === "function")
140411
140669
  return SDK.default;
140412
140670
  return SDK;
@@ -140612,7 +140870,7 @@ function metaMask(parameters = {}) {
140612
140870
  async getProvider() {
140613
140871
  async function initProvider() {
140614
140872
  const MetaMaskSDK = await (async () => {
140615
- const { default: SDK } = await import("./metamask-sdk-CfeFsbiM.js").then((n5) => n5.m);
140873
+ const { default: SDK } = await import("./metamask-sdk-CzIVh3NN.js").then((n5) => n5.m);
140616
140874
  if (typeof SDK !== "function" && typeof SDK.default === "function")
140617
140875
  return SDK.default;
140618
140876
  return SDK;
@@ -140843,14 +141101,14 @@ function safe(parameters = {}) {
140843
141101
  if (!isIframe)
140844
141102
  return;
140845
141103
  if (!provider_) {
140846
- const { default: SDK } = await import("./index-BRlqbOuz.js");
141104
+ const { default: SDK } = await import("./index-DDV7C-Dq.js");
140847
141105
  const sdk = new SDK(parameters);
140848
141106
  const safe2 = await withTimeout(() => sdk.safe.getInfo(), {
140849
141107
  timeout: parameters.unstable_getInfoTimeout ?? 10
140850
141108
  });
140851
141109
  if (!safe2)
140852
141110
  throw new Error("Could not load Safe information");
140853
- const { SafeAppProvider } = await import("./index-C0vs6EaC.js").then((n5) => n5.i);
141111
+ const { SafeAppProvider } = await import("./index-Do5F_UHc.js").then((n5) => n5.i);
140854
141112
  provider_ = new SafeAppProvider(safe2, sdk);
140855
141113
  }
140856
141114
  return provider_;
@@ -141019,7 +141277,7 @@ function walletConnect(parameters) {
141019
141277
  const optionalChains = config2.chains.map((x3) => x3.id);
141020
141278
  if (!optionalChains.length)
141021
141279
  return;
141022
- const { EthereumProvider } = await import("./index.es-ohtoPMXU.js");
141280
+ const { EthereumProvider } = await import("./index.es-j3RJkSKj.js");
141023
141281
  return await EthereumProvider.init({
141024
141282
  ...parameters,
141025
141283
  disableProviderPing: true,
@@ -141269,7 +141527,7 @@ export {
141269
141527
  WuiIconBox as Z,
141270
141528
  WuiIconLink as _,
141271
141529
  subscribe as a,
141272
- require_stream_readable$1 as a$,
141530
+ getAugmentedNamespace as a$,
141273
141531
  WuiInputNumeric as a0,
141274
141532
  WuiInputText as a1,
141275
141533
  WuiLink as a2,
@@ -141291,22 +141549,22 @@ export {
141291
141549
  WuiListSocial as aI,
141292
141550
  WuiSelect as aJ,
141293
141551
  WuiCheckBox as aK,
141294
- WuiFlex as aL,
141295
- WuiGrid as aM,
141296
- WuiSeparator as aN,
141297
- ApiController as aO,
141298
- CoreHelperUtil as aP,
141299
- ConstantsUtil$3 as aQ,
141300
- ThemeController as aR,
141301
- Buffer$7 as aS,
141302
- sha_jsExports as aT,
141303
- commonjsGlobal as aU,
141304
- eventemitter3Exports as aV,
141305
- getDefaultExportFromCjs$2 as aW,
141306
- bnExports as aX,
141307
- eventsExports as aY,
141308
- getAugmentedNamespace as aZ,
141309
- process$1 as a_,
141552
+ WuiSwitch as aL,
141553
+ WuiCertifiedSwitch as aM,
141554
+ WuiFlex as aN,
141555
+ WuiGrid as aO,
141556
+ WuiSeparator as aP,
141557
+ ApiController as aQ,
141558
+ CoreHelperUtil as aR,
141559
+ ConstantsUtil$3 as aS,
141560
+ ThemeController as aT,
141561
+ Buffer$7 as aU,
141562
+ sha_jsExports as aV,
141563
+ commonjsGlobal as aW,
141564
+ eventemitter3Exports as aX,
141565
+ getDefaultExportFromCjs$2 as aY,
141566
+ bnExports as aZ,
141567
+ eventsExports as a_,
141310
141568
  WuiNetworkImage as aa,
141311
141569
  WuiOtp as ab,
141312
141570
  WuiQrCode as ac,
@@ -141334,39 +141592,41 @@ export {
141334
141592
  WuiCompatibleNetwork as ay,
141335
141593
  WuiBanner as az,
141336
141594
  r$6 as b,
141337
- require_stream_writable$1 as b0,
141338
- require_stream_duplex$1 as b1,
141339
- _stream_transform$1 as b2,
141340
- _stream_passthrough$1 as b3,
141341
- endOfStream as b4,
141342
- pipeline_1 as b5,
141343
- keccak_256 as b6,
141344
- formatAbiItem$1 as b7,
141345
- Wo as b8,
141346
- Ev as b9,
141347
- Nr$1 as ba,
141348
- er$1 as bb,
141349
- isAddress$1 as bc,
141350
- InvalidAddressError$1 as bd,
141351
- BaseError$4 as be,
141352
- getUrl$1 as bf,
141353
- stringify$4 as bg,
141354
- decodeErrorResult$1 as bh,
141355
- call$4 as bi,
141356
- concat$2 as bj,
141357
- encodeAbiParameters$1 as bk,
141358
- HttpRequestError$1 as bl,
141359
- isHex$1 as bm,
141360
- global$1 as bn,
141361
- snapshot$1 as bo,
141362
- browser$f as bp,
141363
- createAppKit as bq,
141364
- networks as br,
141365
- WagmiAdapter as bs,
141366
- SolanaAdapter as bt,
141367
- index$3 as bu,
141368
- index as bv,
141369
- index$1 as bw,
141595
+ process$1 as b0,
141596
+ require_stream_readable$1 as b1,
141597
+ require_stream_writable$1 as b2,
141598
+ require_stream_duplex$1 as b3,
141599
+ _stream_transform$1 as b4,
141600
+ _stream_passthrough$1 as b5,
141601
+ endOfStream as b6,
141602
+ pipeline_1 as b7,
141603
+ keccak_256 as b8,
141604
+ formatAbiItem$1 as b9,
141605
+ Wo as ba,
141606
+ Ev as bb,
141607
+ Nr$1 as bc,
141608
+ er$1 as bd,
141609
+ isAddress$1 as be,
141610
+ InvalidAddressError$1 as bf,
141611
+ BaseError$4 as bg,
141612
+ getUrl$1 as bh,
141613
+ stringify$4 as bi,
141614
+ decodeErrorResult$1 as bj,
141615
+ call$4 as bk,
141616
+ concat$2 as bl,
141617
+ encodeAbiParameters$1 as bm,
141618
+ HttpRequestError$1 as bn,
141619
+ isHex$1 as bo,
141620
+ global$1 as bp,
141621
+ snapshot$1 as bq,
141622
+ browser$f as br,
141623
+ createAppKit as bs,
141624
+ networks as bt,
141625
+ WagmiAdapter as bu,
141626
+ SolanaAdapter as bv,
141627
+ index$3 as bw,
141628
+ index as bx,
141629
+ index$1 as by,
141370
141630
  customElement as c,
141371
141631
  r$4 as d,
141372
141632
  ConnectionController as e,
@@ -141392,4 +141652,4 @@ export {
141392
141652
  WuiVisual as y,
141393
141653
  WuiAccountButton as z
141394
141654
  };
141395
- //# sourceMappingURL=appkit-DkdkTbJy.js.map
141655
+ //# sourceMappingURL=appkit-CL0OgGE3.js.map