@lukso/web-components 1.21.0 → 1.23.0

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 (53) hide show
  1. package/README.md +2 -0
  2. package/dist/components/index.cjs +2 -2
  3. package/dist/components/index.js +2 -2
  4. package/dist/components/lukso-button/index.cjs +1 -1
  5. package/dist/components/lukso-button/index.js +1 -1
  6. package/dist/components/lukso-card/index.cjs +4 -4
  7. package/dist/components/lukso-card/index.js +4 -4
  8. package/dist/components/lukso-icon/icons/switched.d.ts +3 -0
  9. package/dist/components/lukso-icon/icons/switched.d.ts.map +1 -0
  10. package/dist/components/lukso-icon/index.cjs +47 -3
  11. package/dist/components/lukso-icon/index.d.ts.map +1 -1
  12. package/dist/components/lukso-icon/index.js +47 -3
  13. package/dist/components/lukso-input/index.cjs +1 -1
  14. package/dist/components/lukso-input/index.d.ts +2 -2
  15. package/dist/components/lukso-input/index.d.ts.map +1 -1
  16. package/dist/components/lukso-input/index.js +1 -1
  17. package/dist/components/lukso-modal/index.cjs +1 -1
  18. package/dist/components/lukso-modal/index.js +1 -1
  19. package/dist/components/lukso-navbar/index.cjs +1 -1
  20. package/dist/components/lukso-navbar/index.js +1 -1
  21. package/dist/components/lukso-profile/index.cjs +2 -2
  22. package/dist/components/lukso-profile/index.js +2 -2
  23. package/dist/components/lukso-progress/index.cjs +2 -2
  24. package/dist/components/lukso-progress/index.js +2 -2
  25. package/dist/components/lukso-sanitize/index.cjs +1 -1
  26. package/dist/components/lukso-sanitize/index.js +1 -1
  27. package/dist/components/lukso-share/index.cjs +1 -1
  28. package/dist/components/lukso-share/index.js +1 -1
  29. package/dist/components/lukso-tag/index.cjs +2 -2
  30. package/dist/components/lukso-tag/index.js +2 -2
  31. package/dist/components/lukso-terms/index.cjs +2 -2
  32. package/dist/components/lukso-terms/index.js +2 -2
  33. package/dist/components/lukso-test/index.cjs +1 -1
  34. package/dist/components/lukso-test/index.js +1 -1
  35. package/dist/components/lukso-username/index.cjs +2 -2
  36. package/dist/components/lukso-username/index.js +2 -2
  37. package/dist/components/lukso-wizard/index.cjs +1 -1
  38. package/dist/components/lukso-wizard/index.js +1 -1
  39. package/dist/index-2ead6ca2.cjs +59 -0
  40. package/dist/index-e3189942.js +52 -0
  41. package/dist/index.cjs +2 -2
  42. package/dist/index.js +2 -2
  43. package/dist/shared/tailwind-element/index.cjs +1 -1
  44. package/dist/shared/tailwind-element/index.js +1 -1
  45. package/dist/{style-map-e4f9812f.cjs → style-map-3dc9363d.cjs} +1 -1
  46. package/dist/{style-map-0d6345c5.js → style-map-e2dd0466.js} +1 -1
  47. package/dist/styles/main.css +6 -0
  48. package/dist/styles/main.css.map +1 -1
  49. package/package.json +1 -1
  50. package/tools/sass/typography.scss +8 -0
  51. package/tools/styles/main.css +6 -0
  52. package/dist/index-a21672c8.js +0 -52
  53. package/dist/index-a41f869c.cjs +0 -59
package/README.md CHANGED
@@ -38,6 +38,8 @@ import('@lukso/web-components')
38
38
 
39
39
  > Hint: you can make import in root level of your project (`app.vue`) instead of importing in every component.
40
40
 
41
+ > Hint: In Frameworks that use SSR you need to import components only when window object is defined.
42
+
41
43
  Use components in the HTML with following rules:
42
44
 
43
45
  - components are lowercase and with `-` in name i.e `lukso-button`
@@ -17,11 +17,11 @@ const components_luksoTerms_index = require('./lukso-terms/index.cjs');
17
17
  const components_luksoTest_index = require('./lukso-test/index.cjs');
18
18
  const components_luksoUsername_index = require('./lukso-username/index.cjs');
19
19
  const components_luksoWizard_index = require('./lukso-wizard/index.cjs');
20
- const shared_tailwindElement_index = require('../index-a41f869c.cjs');
20
+ const shared_tailwindElement_index = require('../index-2ead6ca2.cjs');
21
21
  require('../directive-db00f5fb.cjs');
22
22
  require('../state-a62a7d5d.cjs');
23
23
  require('../index-7dc05ee5.cjs');
24
- require('../style-map-e4f9812f.cjs');
24
+ require('../style-map-3dc9363d.cjs');
25
25
 
26
26
 
27
27
 
@@ -13,8 +13,8 @@ export { LuksoTerms } from './lukso-terms/index.js';
13
13
  export { LuksoTest } from './lukso-test/index.js';
14
14
  export { LuksoUsername } from './lukso-username/index.js';
15
15
  export { LuksoWizard } from './lukso-wizard/index.js';
16
- export { a as TailwindElement, T as TailwindStyledElement } from '../index-a21672c8.js';
16
+ export { a as TailwindElement, T as TailwindStyledElement } from '../index-e3189942.js';
17
17
  import '../directive-9ec64c08.js';
18
18
  import '../state-7fde94d1.js';
19
19
  import '../index-714323c9.js';
20
- import '../style-map-0d6345c5.js';
20
+ import '../style-map-e2dd0466.js';
@@ -2,7 +2,7 @@
2
2
 
3
3
  Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
4
4
 
5
- const shared_tailwindElement_index = require('../../index-a41f869c.cjs');
5
+ const shared_tailwindElement_index = require('../../index-2ead6ca2.cjs');
6
6
  const directive = require('../../directive-db00f5fb.cjs');
7
7
  const state = require('../../state-a62a7d5d.cjs');
8
8
  const index = require('../../index-7dc05ee5.cjs');
@@ -1,4 +1,4 @@
1
- import { T as TailwindStyledElement, x } from '../../index-a21672c8.js';
1
+ import { T as TailwindStyledElement, x } from '../../index-e3189942.js';
2
2
  import { e, a as e$1 } from '../../directive-9ec64c08.js';
3
3
  import { t } from '../../state-7fde94d1.js';
4
4
  import { c as customClassMap } from '../../index-714323c9.js';
@@ -2,9 +2,9 @@
2
2
 
3
3
  Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
4
4
 
5
- const shared_tailwindElement_index = require('../../index-a41f869c.cjs');
5
+ const shared_tailwindElement_index = require('../../index-2ead6ca2.cjs');
6
6
  const directive = require('../../directive-db00f5fb.cjs');
7
- const styleMap = require('../../style-map-e4f9812f.cjs');
7
+ const styleMap = require('../../style-map-3dc9363d.cjs');
8
8
  const index = require('../../index-7dc05ee5.cjs');
9
9
  require('../lukso-profile/index.cjs');
10
10
 
@@ -54,7 +54,7 @@ exports.LuksoCard = class LuksoCard extends shared_tailwindElement_index.Tailwin
54
54
  return shared_tailwindElement_index.x`
55
55
  <div
56
56
  data-testid="card"
57
- class="bg-neutral-98 grid grid-rows-[auto,1fr] ${index.customClassMap({
57
+ class="bg-neutral-100 grid grid-rows-[auto,1fr] ${index.customClassMap({
58
58
  [this.defaultStyles]: !this.customClass,
59
59
  [this.customClass]: !!this.customClass,
60
60
  ["w-[362px]"]: this.isFixedWidth,
@@ -75,7 +75,7 @@ exports.LuksoCard = class LuksoCard extends shared_tailwindElement_index.Tailwin
75
75
  return shared_tailwindElement_index.x`
76
76
  <div
77
77
  data-testid="card"
78
- class="bg-neutral-98 grid grid-rows-[auto,1fr] ${index.customClassMap({
78
+ class="bg-neutral-100 grid grid-rows-[auto,1fr] ${index.customClassMap({
79
79
  [this.defaultStyles]: !this.customClass,
80
80
  [this.customClass]: !!this.customClass,
81
81
  ["w-[362px]"]: this.isFixedWidth,
@@ -1,6 +1,6 @@
1
- import { T as TailwindStyledElement, x } from '../../index-a21672c8.js';
1
+ import { T as TailwindStyledElement, x } from '../../index-e3189942.js';
2
2
  import { e, a as e$1 } from '../../directive-9ec64c08.js';
3
- import { o } from '../../style-map-0d6345c5.js';
3
+ import { o } from '../../style-map-e2dd0466.js';
4
4
  import { c as customClassMap } from '../../index-714323c9.js';
5
5
  import '../lukso-profile/index.js';
6
6
 
@@ -50,7 +50,7 @@ let LuksoCard = class extends TailwindStyledElement(style) {
50
50
  return x`
51
51
  <div
52
52
  data-testid="card"
53
- class="bg-neutral-98 grid grid-rows-[auto,1fr] ${customClassMap({
53
+ class="bg-neutral-100 grid grid-rows-[auto,1fr] ${customClassMap({
54
54
  [this.defaultStyles]: !this.customClass,
55
55
  [this.customClass]: !!this.customClass,
56
56
  ["w-[362px]"]: this.isFixedWidth,
@@ -71,7 +71,7 @@ let LuksoCard = class extends TailwindStyledElement(style) {
71
71
  return x`
72
72
  <div
73
73
  data-testid="card"
74
- class="bg-neutral-98 grid grid-rows-[auto,1fr] ${customClassMap({
74
+ class="bg-neutral-100 grid grid-rows-[auto,1fr] ${customClassMap({
75
75
  [this.defaultStyles]: !this.customClass,
76
76
  [this.customClass]: !!this.customClass,
77
77
  ["w-[362px]"]: this.isFixedWidth,
@@ -0,0 +1,3 @@
1
+ import { IconOptions } from '../../../components/lukso-icon/index.js';
2
+ export declare const switched: (options: IconOptions) => import("lit-html").TemplateResult<1>;
3
+ //# sourceMappingURL=switched.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"switched.d.ts","sourceRoot":"","sources":["../../../../../../src/components/lukso-icon/icons/switched.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,WAAW,EAAE,MAAM,kCAAkC,CAAA;AAE9D,eAAO,MAAM,QAAQ,YAAa,WAAW,yCAyC5C,CAAA"}
@@ -2,9 +2,9 @@
2
2
 
3
3
  Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
4
4
 
5
- const shared_tailwindElement_index = require('../../index-a41f869c.cjs');
5
+ const shared_tailwindElement_index = require('../../index-2ead6ca2.cjs');
6
6
  const directive = require('../../directive-db00f5fb.cjs');
7
- const styleMap = require('../../style-map-e4f9812f.cjs');
7
+ const styleMap = require('../../style-map-3dc9363d.cjs');
8
8
 
9
9
  const style = ":host {\n display: inline-flex\n}";
10
10
 
@@ -4424,6 +4424,49 @@ const desktopSharp = (options) => {
4424
4424
  </svg> `;
4425
4425
  };
4426
4426
 
4427
+ const switched = (options) => {
4428
+ return shared_tailwindElement_index.x`<svg
4429
+ width="24"
4430
+ height="24"
4431
+ viewBox="0 0 24 24"
4432
+ fill="none"
4433
+ xmlns="http://www.w3.org/2000/svg"
4434
+ style=${styleMap.o({
4435
+ width: `${options.width}px`,
4436
+ height: `${options.height}px`
4437
+ })}
4438
+ >
4439
+ <path
4440
+ d="M7.82847 15.1716C6.53981 16.4603 5 18 5 18L7.82843 20.8284"
4441
+ stroke="var(--${options.color})"
4442
+ stroke-width="${options.strokeWidth}"
4443
+ stroke-linecap="round"
4444
+ stroke-linejoin="round"
4445
+ />
4446
+ <path
4447
+ d="M16.1715 8.82838C17.4602 7.53972 19 6 19 6L16.1716 3.17157"
4448
+ stroke="var(--${options.color})"
4449
+ stroke-width="${options.strokeWidth}"
4450
+ stroke-linecap="round"
4451
+ stroke-linejoin="round"
4452
+ />
4453
+ <path
4454
+ d="M12.1176 12H16C17.6569 12 19 13.3431 19 15V15C19 16.6569 17.6569 18 16 18H6"
4455
+ stroke="var(--${options.color})"
4456
+ stroke-width="${options.strokeWidth}"
4457
+ stroke-linecap="round"
4458
+ stroke-linejoin="round"
4459
+ />
4460
+ <path
4461
+ d="M18 6H9C7.34315 6 6 7.34315 6 9V9C6 10.6569 7.34315 12 9 12H13"
4462
+ stroke="var(--${options.color})"
4463
+ stroke-width="${options.strokeWidth}"
4464
+ stroke-linecap="round"
4465
+ stroke-linejoin="round"
4466
+ />
4467
+ </svg> `;
4468
+ };
4469
+
4427
4470
  var __defProp = Object.defineProperty;
4428
4471
  var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
4429
4472
  var __decorateClass = (decorators, target, key, kind) => {
@@ -4552,7 +4595,8 @@ const iconMap = {
4552
4595
  "pulse-dot": pulseDot,
4553
4596
  "progress-complete": progressComplete,
4554
4597
  "complete-filled-fade-in": completeFilledFadeIn,
4555
- "desktop-sharp": desktopSharp
4598
+ "desktop-sharp": desktopSharp,
4599
+ switched
4556
4600
  };
4557
4601
  exports.LuksoIcon = class LuksoIcon extends shared_tailwindElement_index.TailwindStyledElement(style) {
4558
4602
  constructor() {
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/components/lukso-icon/index.ts"],"names":[],"mappings":"AA2HA,MAAM,MAAM,WAAW,GAAG;IACxB,KAAK,EAAE,MAAM,CAAA;IACb,MAAM,EAAE,MAAM,CAAA;IACd,KAAK,EAAE,MAAM,CAAA;IACb,WAAW,EAAE,MAAM,CAAA;IACnB,cAAc,CAAC,EAAE,MAAM,CAAA;CACxB,CAAA;AAED,MAAM,MAAM,QAAQ,GAAG,OAAO,GAAG,QAAQ,GAAG,OAAO,GAAG,SAAS,GAAG,UAAU,CAAA;;AAgI5E,qBACa,SAAU,SAAQ,cAA4B;IAEzD,IAAI,SAAK;IAGT,IAAI,SAAW;IAGf,KAAK,SAAe;IAGpB,cAAc,SAAK;IAEnB,OAAO,CAAC,KAAK,CA0BZ;IAED,MAAM;CAuBP;AAED,OAAO,CAAC,MAAM,CAAC;IACb,UAAU,qBAAqB;QAC7B,YAAY,EAAE,SAAS,CAAA;KACxB;CACF"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/components/lukso-icon/index.ts"],"names":[],"mappings":"AA4HA,MAAM,MAAM,WAAW,GAAG;IACxB,KAAK,EAAE,MAAM,CAAA;IACb,MAAM,EAAE,MAAM,CAAA;IACd,KAAK,EAAE,MAAM,CAAA;IACb,WAAW,EAAE,MAAM,CAAA;IACnB,cAAc,CAAC,EAAE,MAAM,CAAA;CACxB,CAAA;AAED,MAAM,MAAM,QAAQ,GAAG,OAAO,GAAG,QAAQ,GAAG,OAAO,GAAG,SAAS,GAAG,UAAU,CAAA;;AAiI5E,qBACa,SAAU,SAAQ,cAA4B;IAEzD,IAAI,SAAK;IAGT,IAAI,SAAW;IAGf,KAAK,SAAe;IAGpB,cAAc,SAAK;IAEnB,OAAO,CAAC,KAAK,CA0BZ;IAED,MAAM;CAuBP;AAED,OAAO,CAAC,MAAM,CAAC;IACb,UAAU,qBAAqB;QAC7B,YAAY,EAAE,SAAS,CAAA;KACxB;CACF"}
@@ -1,6 +1,6 @@
1
- import { x, T as TailwindStyledElement } from '../../index-a21672c8.js';
1
+ import { x, T as TailwindStyledElement } from '../../index-e3189942.js';
2
2
  import { e, a as e$1 } from '../../directive-9ec64c08.js';
3
- import { o } from '../../style-map-0d6345c5.js';
3
+ import { o } from '../../style-map-e2dd0466.js';
4
4
 
5
5
  const style = ":host {\n display: inline-flex\n}";
6
6
 
@@ -4420,6 +4420,49 @@ const desktopSharp = (options) => {
4420
4420
  </svg> `;
4421
4421
  };
4422
4422
 
4423
+ const switched = (options) => {
4424
+ return x`<svg
4425
+ width="24"
4426
+ height="24"
4427
+ viewBox="0 0 24 24"
4428
+ fill="none"
4429
+ xmlns="http://www.w3.org/2000/svg"
4430
+ style=${o({
4431
+ width: `${options.width}px`,
4432
+ height: `${options.height}px`
4433
+ })}
4434
+ >
4435
+ <path
4436
+ d="M7.82847 15.1716C6.53981 16.4603 5 18 5 18L7.82843 20.8284"
4437
+ stroke="var(--${options.color})"
4438
+ stroke-width="${options.strokeWidth}"
4439
+ stroke-linecap="round"
4440
+ stroke-linejoin="round"
4441
+ />
4442
+ <path
4443
+ d="M16.1715 8.82838C17.4602 7.53972 19 6 19 6L16.1716 3.17157"
4444
+ stroke="var(--${options.color})"
4445
+ stroke-width="${options.strokeWidth}"
4446
+ stroke-linecap="round"
4447
+ stroke-linejoin="round"
4448
+ />
4449
+ <path
4450
+ d="M12.1176 12H16C17.6569 12 19 13.3431 19 15V15C19 16.6569 17.6569 18 16 18H6"
4451
+ stroke="var(--${options.color})"
4452
+ stroke-width="${options.strokeWidth}"
4453
+ stroke-linecap="round"
4454
+ stroke-linejoin="round"
4455
+ />
4456
+ <path
4457
+ d="M18 6H9C7.34315 6 6 7.34315 6 9V9C6 10.6569 7.34315 12 9 12H13"
4458
+ stroke="var(--${options.color})"
4459
+ stroke-width="${options.strokeWidth}"
4460
+ stroke-linecap="round"
4461
+ stroke-linejoin="round"
4462
+ />
4463
+ </svg> `;
4464
+ };
4465
+
4423
4466
  var __defProp = Object.defineProperty;
4424
4467
  var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
4425
4468
  var __decorateClass = (decorators, target, key, kind) => {
@@ -4548,7 +4591,8 @@ const iconMap = {
4548
4591
  "pulse-dot": pulseDot,
4549
4592
  "progress-complete": progressComplete,
4550
4593
  "complete-filled-fade-in": completeFilledFadeIn,
4551
- "desktop-sharp": desktopSharp
4594
+ "desktop-sharp": desktopSharp,
4595
+ switched
4552
4596
  };
4553
4597
  let LuksoIcon = class extends TailwindStyledElement(style) {
4554
4598
  constructor() {
@@ -2,7 +2,7 @@
2
2
 
3
3
  Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
4
4
 
5
- const shared_tailwindElement_index = require('../../index-a41f869c.cjs');
5
+ const shared_tailwindElement_index = require('../../index-2ead6ca2.cjs');
6
6
  const directive = require('../../directive-db00f5fb.cjs');
7
7
  const state = require('../../state-a62a7d5d.cjs');
8
8
  const index = require('../../index-7dc05ee5.cjs');
@@ -7,8 +7,8 @@ export declare class LuksoInput extends TailwindElement {
7
7
  label: string;
8
8
  autocomplete: string;
9
9
  id: string;
10
- ref: any;
11
- accept: any;
10
+ ref: string | undefined;
11
+ accept: string | undefined;
12
12
  description: string;
13
13
  error: string;
14
14
  unit: string;
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/components/lukso-input/index.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,eAAe,EAAE,MAAM,2BAA2B,CAAA;AAG3D,qBACa,UAAW,SAAQ,eAAe;IAE7C,KAAK,SAAK;IAGV,IAAI,SAAK;IAGT,IAAI,SAAS;IAGb,WAAW,SAAK;IAGhB,KAAK,SAAK;IAGV,YAAY,SAAO;IAGnB,EAAE,SAAK;IAGP,GAAG,MAAY;IAGf,MAAM,MAAY;IAGlB,WAAW,SAAK;IAGhB,KAAK,SAAK;IAGV,IAAI,SAAK;IAGT,WAAW,SAAK;IAGhB,WAAW,UAAQ;IAGnB,UAAU,UAAQ;IAGlB,UAAU,UAAQ;IAGlB,SAAS,UAAQ;IAGjB,GAAG,EAAE,MAAM,GAAG,SAAS,CAAY;IAGnC,GAAG,EAAE,MAAM,GAAG,SAAS,CAAY;IAGnC,OAAO,CAAC,QAAQ,CAAQ;IAGxB,OAAO,CAAC,YAAY,CAAQ;IAE5B,OAAO,CAAC,kBAAkB,CAE4C;IAEtE,OAAO,CAAC,iBAAiB,CAG0B;IAGnD,aAAa;IA2Cb,aAAa;IAUb,mBAAmB;IAQnB,aAAa;IAMb,YAAY;IAgBZ,OAAO,CAAC,WAAW;IAKnB,OAAO,CAAC,UAAU;IAelB,OAAO,CAAC,YAAY;IAapB,OAAO,CAAC,WAAW;IAanB,OAAO,CAAC,WAAW;IAanB,OAAO,CAAC,aAAa;IAarB,OAAO,CAAC,cAAc;IAatB,OAAO,CAAC,eAAe;IAIvB,OAAO,CAAC,cAAc;IAMtB,MAAM;CAYP;AAED,OAAO,CAAC,MAAM,CAAC;IACb,UAAU,qBAAqB;QAC7B,aAAa,EAAE,UAAU,CAAA;KAC1B;CACF"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/components/lukso-input/index.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,eAAe,EAAE,MAAM,2BAA2B,CAAA;AAG3D,qBACa,UAAW,SAAQ,eAAe;IAE7C,KAAK,SAAK;IAGV,IAAI,SAAK;IAGT,IAAI,SAAS;IAGb,WAAW,SAAK;IAGhB,KAAK,SAAK;IAGV,YAAY,SAAO;IAGnB,EAAE,SAAK;IAGP,GAAG,EAAE,MAAM,GAAG,SAAS,CAAY;IAGnC,MAAM,EAAE,MAAM,GAAG,SAAS,CAAY;IAGtC,WAAW,SAAK;IAGhB,KAAK,SAAK;IAGV,IAAI,SAAK;IAGT,WAAW,SAAK;IAGhB,WAAW,UAAQ;IAGnB,UAAU,UAAQ;IAGlB,UAAU,UAAQ;IAGlB,SAAS,UAAQ;IAGjB,GAAG,EAAE,MAAM,GAAG,SAAS,CAAY;IAGnC,GAAG,EAAE,MAAM,GAAG,SAAS,CAAY;IAGnC,OAAO,CAAC,QAAQ,CAAQ;IAGxB,OAAO,CAAC,YAAY,CAAQ;IAE5B,OAAO,CAAC,kBAAkB,CAE4C;IAEtE,OAAO,CAAC,iBAAiB,CAG0B;IAGnD,aAAa;IA2Cb,aAAa;IAUb,mBAAmB;IAQnB,aAAa;IAMb,YAAY;IAgBZ,OAAO,CAAC,WAAW;IAKnB,OAAO,CAAC,UAAU;IAelB,OAAO,CAAC,YAAY;IAapB,OAAO,CAAC,WAAW;IAanB,OAAO,CAAC,WAAW;IAanB,OAAO,CAAC,aAAa;IAarB,OAAO,CAAC,cAAc;IAatB,OAAO,CAAC,eAAe;IAIvB,OAAO,CAAC,cAAc;IAMtB,MAAM;CAYP;AAED,OAAO,CAAC,MAAM,CAAC;IACb,UAAU,qBAAqB;QAC7B,aAAa,EAAE,UAAU,CAAA;KAC1B;CACF"}
@@ -1,4 +1,4 @@
1
- import { a as TailwindElement, x, A } from '../../index-a21672c8.js';
1
+ import { a as TailwindElement, x, A } from '../../index-e3189942.js';
2
2
  import { e, a as e$1 } from '../../directive-9ec64c08.js';
3
3
  import { t } from '../../state-7fde94d1.js';
4
4
  import { c as customClassMap } from '../../index-714323c9.js';
@@ -2,7 +2,7 @@
2
2
 
3
3
  Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
4
4
 
5
- const shared_tailwindElement_index = require('../../index-a41f869c.cjs');
5
+ const shared_tailwindElement_index = require('../../index-2ead6ca2.cjs');
6
6
  const directive = require('../../directive-db00f5fb.cjs');
7
7
  const index = require('../../index-7dc05ee5.cjs');
8
8
 
@@ -1,4 +1,4 @@
1
- import { a as TailwindElement, x } from '../../index-a21672c8.js';
1
+ import { a as TailwindElement, x } from '../../index-e3189942.js';
2
2
  import { e, a as e$1 } from '../../directive-9ec64c08.js';
3
3
  import { c as customClassMap } from '../../index-714323c9.js';
4
4
 
@@ -2,7 +2,7 @@
2
2
 
3
3
  Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
4
4
 
5
- const shared_tailwindElement_index = require('../../index-a41f869c.cjs');
5
+ const shared_tailwindElement_index = require('../../index-2ead6ca2.cjs');
6
6
  const directive = require('../../directive-db00f5fb.cjs');
7
7
  const state = require('../../state-a62a7d5d.cjs');
8
8
  const index = require('../../index-7dc05ee5.cjs');
@@ -1,4 +1,4 @@
1
- import { a as TailwindElement, x } from '../../index-a21672c8.js';
1
+ import { a as TailwindElement, x } from '../../index-e3189942.js';
2
2
  import { e, a as e$1 } from '../../directive-9ec64c08.js';
3
3
  import { t } from '../../state-7fde94d1.js';
4
4
  import { c as customClassMap } from '../../index-714323c9.js';
@@ -2,9 +2,9 @@
2
2
 
3
3
  Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
4
4
 
5
- const shared_tailwindElement_index = require('../../index-a41f869c.cjs');
5
+ const shared_tailwindElement_index = require('../../index-2ead6ca2.cjs');
6
6
  const directive = require('../../directive-db00f5fb.cjs');
7
- const styleMap = require('../../style-map-e4f9812f.cjs');
7
+ const styleMap = require('../../style-map-3dc9363d.cjs');
8
8
 
9
9
  var commonjsGlobal = typeof globalThis !== 'undefined' ? globalThis : typeof window !== 'undefined' ? window : typeof global !== 'undefined' ? global : typeof self !== 'undefined' ? self : {};
10
10
 
@@ -1,6 +1,6 @@
1
- import { a as TailwindElement, x } from '../../index-a21672c8.js';
1
+ import { a as TailwindElement, x } from '../../index-e3189942.js';
2
2
  import { e, a as e$1 } from '../../directive-9ec64c08.js';
3
- import { o } from '../../style-map-0d6345c5.js';
3
+ import { o } from '../../style-map-e2dd0466.js';
4
4
 
5
5
  var commonjsGlobal = typeof globalThis !== 'undefined' ? globalThis : typeof window !== 'undefined' ? window : typeof global !== 'undefined' ? global : typeof self !== 'undefined' ? self : {};
6
6
 
@@ -2,9 +2,9 @@
2
2
 
3
3
  Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
4
4
 
5
- const shared_tailwindElement_index = require('../../index-a41f869c.cjs');
5
+ const shared_tailwindElement_index = require('../../index-2ead6ca2.cjs');
6
6
  const directive = require('../../directive-db00f5fb.cjs');
7
- const styleMap = require('../../style-map-e4f9812f.cjs');
7
+ const styleMap = require('../../style-map-3dc9363d.cjs');
8
8
  const index = require('../../index-7dc05ee5.cjs');
9
9
 
10
10
  var __defProp = Object.defineProperty;
@@ -1,6 +1,6 @@
1
- import { a as TailwindElement, x } from '../../index-a21672c8.js';
1
+ import { a as TailwindElement, x } from '../../index-e3189942.js';
2
2
  import { e, a as e$1 } from '../../directive-9ec64c08.js';
3
- import { o } from '../../style-map-0d6345c5.js';
3
+ import { o } from '../../style-map-e2dd0466.js';
4
4
  import { c as customClassMap } from '../../index-714323c9.js';
5
5
 
6
6
  var __defProp = Object.defineProperty;
@@ -2,7 +2,7 @@
2
2
 
3
3
  Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
4
4
 
5
- const shared_tailwindElement_index = require('../../index-a41f869c.cjs');
5
+ const shared_tailwindElement_index = require('../../index-2ead6ca2.cjs');
6
6
  const directive = require('../../directive-db00f5fb.cjs');
7
7
 
8
8
  /**
@@ -1,4 +1,4 @@
1
- import { A, b as T, a as TailwindElement, x } from '../../index-a21672c8.js';
1
+ import { A, b as T, a as TailwindElement, x } from '../../index-e3189942.js';
2
2
  import { i, t, b as e$1, e as e$2, a as e$3 } from '../../directive-9ec64c08.js';
3
3
 
4
4
  /**
@@ -2,7 +2,7 @@
2
2
 
3
3
  Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
4
4
 
5
- const shared_tailwindElement_index = require('../../index-a41f869c.cjs');
5
+ const shared_tailwindElement_index = require('../../index-2ead6ca2.cjs');
6
6
  const directive = require('../../directive-db00f5fb.cjs');
7
7
  const index = require('../../index-7dc05ee5.cjs');
8
8
 
@@ -1,4 +1,4 @@
1
- import { T as TailwindStyledElement, x } from '../../index-a21672c8.js';
1
+ import { T as TailwindStyledElement, x } from '../../index-e3189942.js';
2
2
  import { e, a as e$1 } from '../../directive-9ec64c08.js';
3
3
  import { c as customClassMap } from '../../index-714323c9.js';
4
4
 
@@ -2,9 +2,9 @@
2
2
 
3
3
  Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
4
4
 
5
- const shared_tailwindElement_index = require('../../index-a41f869c.cjs');
5
+ const shared_tailwindElement_index = require('../../index-2ead6ca2.cjs');
6
6
  const directive = require('../../directive-db00f5fb.cjs');
7
- const styleMap = require('../../style-map-e4f9812f.cjs');
7
+ const styleMap = require('../../style-map-3dc9363d.cjs');
8
8
  const index = require('../../index-7dc05ee5.cjs');
9
9
 
10
10
  var __defProp = Object.defineProperty;
@@ -1,6 +1,6 @@
1
- import { a as TailwindElement, x } from '../../index-a21672c8.js';
1
+ import { a as TailwindElement, x } from '../../index-e3189942.js';
2
2
  import { e, a as e$1 } from '../../directive-9ec64c08.js';
3
- import { o } from '../../style-map-0d6345c5.js';
3
+ import { o } from '../../style-map-e2dd0466.js';
4
4
  import { c as customClassMap } from '../../index-714323c9.js';
5
5
 
6
6
  var __defProp = Object.defineProperty;
@@ -2,13 +2,13 @@
2
2
 
3
3
  Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
4
4
 
5
- const shared_tailwindElement_index = require('../../index-a41f869c.cjs');
5
+ const shared_tailwindElement_index = require('../../index-2ead6ca2.cjs');
6
6
  const directive = require('../../directive-db00f5fb.cjs');
7
7
  const state = require('../../state-a62a7d5d.cjs');
8
8
  const index = require('../../index-7dc05ee5.cjs');
9
9
  require('../lukso-icon/index.cjs');
10
10
  require('../lukso-sanitize/index.cjs');
11
- require('../../style-map-e4f9812f.cjs');
11
+ require('../../style-map-3dc9363d.cjs');
12
12
 
13
13
  const style = ":host {\n display: flex;\n height: 100%\n}";
14
14
 
@@ -1,10 +1,10 @@
1
- import { T as TailwindStyledElement, x } from '../../index-a21672c8.js';
1
+ import { T as TailwindStyledElement, x } from '../../index-e3189942.js';
2
2
  import { e, a as e$1 } from '../../directive-9ec64c08.js';
3
3
  import { t } from '../../state-7fde94d1.js';
4
4
  import { c as customClassMap } from '../../index-714323c9.js';
5
5
  import '../lukso-icon/index.js';
6
6
  import '../lukso-sanitize/index.js';
7
- import '../../style-map-0d6345c5.js';
7
+ import '../../style-map-e2dd0466.js';
8
8
 
9
9
  const style = ":host {\n display: flex;\n height: 100%\n}";
10
10
 
@@ -2,7 +2,7 @@
2
2
 
3
3
  Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
4
4
 
5
- const shared_tailwindElement_index = require('../../index-a41f869c.cjs');
5
+ const shared_tailwindElement_index = require('../../index-2ead6ca2.cjs');
6
6
  const directive = require('../../directive-db00f5fb.cjs');
7
7
 
8
8
  /**
@@ -1,4 +1,4 @@
1
- import { b as T$1, T as TailwindStyledElement, x as x$2 } from '../../index-a21672c8.js';
1
+ import { b as T$1, T as TailwindStyledElement, x as x$2 } from '../../index-e3189942.js';
2
2
  import { b as e$3, i as i$3, t as t$3, e as e$4, a as e$5 } from '../../directive-9ec64c08.js';
3
3
 
4
4
  /**
@@ -2,9 +2,9 @@
2
2
 
3
3
  Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
4
4
 
5
- const shared_tailwindElement_index = require('../../index-a41f869c.cjs');
5
+ const shared_tailwindElement_index = require('../../index-2ead6ca2.cjs');
6
6
  const directive = require('../../directive-db00f5fb.cjs');
7
- const styleMap = require('../../style-map-e4f9812f.cjs');
7
+ const styleMap = require('../../style-map-3dc9363d.cjs');
8
8
  const index = require('../../index-7dc05ee5.cjs');
9
9
 
10
10
  const sliceAddress = (address, startSliceBy = 6, endSliceBy) => {
@@ -1,6 +1,6 @@
1
- import { a as TailwindElement, x } from '../../index-a21672c8.js';
1
+ import { a as TailwindElement, x } from '../../index-e3189942.js';
2
2
  import { e, a as e$1 } from '../../directive-9ec64c08.js';
3
- import { o } from '../../style-map-0d6345c5.js';
3
+ import { o } from '../../style-map-e2dd0466.js';
4
4
  import { c as customClassMap } from '../../index-714323c9.js';
5
5
 
6
6
  const sliceAddress = (address, startSliceBy = 6, endSliceBy) => {
@@ -2,7 +2,7 @@
2
2
 
3
3
  Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
4
4
 
5
- const shared_tailwindElement_index = require('../../index-a41f869c.cjs');
5
+ const shared_tailwindElement_index = require('../../index-2ead6ca2.cjs');
6
6
  const directive = require('../../directive-db00f5fb.cjs');
7
7
  const index = require('../../index-7dc05ee5.cjs');
8
8
 
@@ -1,4 +1,4 @@
1
- import { Z, b as T, a as TailwindElement, x } from '../../index-a21672c8.js';
1
+ import { Z, b as T, a as TailwindElement, x } from '../../index-e3189942.js';
2
2
  import { b as e, i, t, e as e$1, a as e$2 } from '../../directive-9ec64c08.js';
3
3
  import { c as customClassMap } from '../../index-714323c9.js';
4
4