@proximus/lavender-carousel 2.0.0-alpha.179 → 2.0.0-alpha.180
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.es.js +2 -14
- package/package.json +1 -1
package/dist/index.es.js
CHANGED
|
@@ -410,7 +410,7 @@ var ne = ":host{box-sizing:border-box;display:block}slot[name=body-container]{mi
|
|
|
410
410
|
S.replaceSync(ne);
|
|
411
411
|
var re = class extends n {
|
|
412
412
|
constructor() {
|
|
413
|
-
super(S), this.template = (
|
|
413
|
+
super(S), this.template = () => `
|
|
414
414
|
<px-container border-radius="none" padding="none">
|
|
415
415
|
<px-vstack>
|
|
416
416
|
<px-container id="header-container" border-radius="none">
|
|
@@ -447,15 +447,6 @@ var re = class extends n {
|
|
|
447
447
|
<px-spacer></px-spacer>
|
|
448
448
|
</px-hstack>
|
|
449
449
|
</px-container>
|
|
450
|
-
${e ? ` <px-hstack>
|
|
451
|
-
<px-spacer></px-spacer>
|
|
452
|
-
<px-container border-radius="none" box-shadow="xl" id="image-sticky-box" border="s" grow="${this.grow}" basis="${this.basis}" border-radius="m">
|
|
453
|
-
<px-vstack gap="s">
|
|
454
|
-
<slot name="image-sticky-container"></slot>
|
|
455
|
-
</px-vstack>
|
|
456
|
-
</px-container>
|
|
457
|
-
<px-spacer></px-spacer>
|
|
458
|
-
</px-hstack>` : ""}
|
|
459
450
|
<px-container
|
|
460
451
|
id="body-container"
|
|
461
452
|
id="main"
|
|
@@ -512,7 +503,7 @@ var re = class extends n {
|
|
|
512
503
|
</px-container>
|
|
513
504
|
</px-vstack>
|
|
514
505
|
</px-container>
|
|
515
|
-
`, this.shadowRoot.innerHTML = this.template(
|
|
506
|
+
`, this.shadowRoot.innerHTML = this.template();
|
|
516
507
|
}
|
|
517
508
|
static get observedAttributes() {
|
|
518
509
|
return [
|
|
@@ -548,9 +539,6 @@ var re = class extends n {
|
|
|
548
539
|
get backgroundImage() {
|
|
549
540
|
return this.getAttribute("background-image");
|
|
550
541
|
}
|
|
551
|
-
get $imageStickySlot() {
|
|
552
|
-
return this.querySelector("*[slot=\"image-sticky-container\"]");
|
|
553
|
-
}
|
|
554
542
|
get $main() {
|
|
555
543
|
return this.shadowRoot.querySelector("#main");
|
|
556
544
|
}
|