@lukso/web-components 1.60.0 → 1.60.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.
@@ -83,7 +83,7 @@ exports.LuksoCard = class LuksoCard extends shared_tailwindElement_index.Tailwin
83
83
  }
84
84
  backgroundImageOrGradient() {
85
85
  if (this.backgroundUrl) {
86
- return `url(${this.backgroundUrl})`;
86
+ return `url('${this.backgroundUrl}')`;
87
87
  }
88
88
  let gradientStart = "#24354210";
89
89
  let gradientEnd = "#24354220";
@@ -278,7 +278,7 @@ exports.LuksoCard = class LuksoCard extends shared_tailwindElement_index.Tailwin
278
278
  >
279
279
  <div
280
280
  style=${styleMap.o({
281
- backgroundImage: `url(${this.backgroundUrl})`
281
+ backgroundImage: `url('${this.backgroundUrl}')`
282
282
  })}
283
283
  class="h-full w-full -mb-6 bg-center bg-cover rounded-24 relative"
284
284
  >
@@ -79,7 +79,7 @@ let LuksoCard = class extends TailwindStyledElement(style) {
79
79
  }
80
80
  backgroundImageOrGradient() {
81
81
  if (this.backgroundUrl) {
82
- return `url(${this.backgroundUrl})`;
82
+ return `url('${this.backgroundUrl}')`;
83
83
  }
84
84
  let gradientStart = "#24354210";
85
85
  let gradientEnd = "#24354220";
@@ -274,7 +274,7 @@ let LuksoCard = class extends TailwindStyledElement(style) {
274
274
  >
275
275
  <div
276
276
  style=${o({
277
- backgroundImage: `url(${this.backgroundUrl})`
277
+ backgroundImage: `url('${this.backgroundUrl}')`
278
278
  })}
279
279
  class="h-full w-full -mb-6 bg-center bg-cover rounded-24 relative"
280
280
  >
@@ -514,7 +514,7 @@ exports.LuksoProfile = class LuksoProfile extends shared_tailwindElement_index.T
514
514
  <div
515
515
  data-testid="profile"
516
516
  style=${styleMap.o({
517
- backgroundImage: `url(${this.defaultProfileUrl})`,
517
+ backgroundImage: `url('${this.defaultProfileUrl}')`,
518
518
  width: `${this.profileImageSize()}px`,
519
519
  height: `${this.profileImageSize()}px`,
520
520
  borderRadius: `${this.isSquare ? this.squareRoundingSize() + "px" : "50%"}`
@@ -524,7 +524,7 @@ exports.LuksoProfile = class LuksoProfile extends shared_tailwindElement_index.T
524
524
  >
525
525
  <div
526
526
  style=${styleMap.o({
527
- backgroundImage: `url(${this.profileUrl})`,
527
+ backgroundImage: `url('${this.profileUrl}')`,
528
528
  width: `${this.profileImageSize()}px`,
529
529
  height: `${this.profileImageSize()}px`,
530
530
  borderRadius: `${this.isSquare ? this.squareRoundingSize() + "px" : "50%"}`
@@ -510,7 +510,7 @@ let LuksoProfile = class extends TailwindElement {
510
510
  <div
511
511
  data-testid="profile"
512
512
  style=${o({
513
- backgroundImage: `url(${this.defaultProfileUrl})`,
513
+ backgroundImage: `url('${this.defaultProfileUrl}')`,
514
514
  width: `${this.profileImageSize()}px`,
515
515
  height: `${this.profileImageSize()}px`,
516
516
  borderRadius: `${this.isSquare ? this.squareRoundingSize() + "px" : "50%"}`
@@ -520,7 +520,7 @@ let LuksoProfile = class extends TailwindElement {
520
520
  >
521
521
  <div
522
522
  style=${o({
523
- backgroundImage: `url(${this.profileUrl})`,
523
+ backgroundImage: `url('${this.profileUrl}')`,
524
524
  width: `${this.profileImageSize()}px`,
525
525
  height: `${this.profileImageSize()}px`,
526
526
  borderRadius: `${this.isSquare ? this.squareRoundingSize() + "px" : "50%"}`
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lukso/web-components",
3
- "version": "1.60.0",
3
+ "version": "1.60.2",
4
4
  "type": "module",
5
5
  "files": [
6
6
  "dist",