@lukso/web-components 1.60.0 → 1.60.1
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.
|
@@ -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
|
>
|
|
@@ -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%"}`
|