@proximus/lavender-autocomplete 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
|
@@ -1711,7 +1711,7 @@ var ye = ":host{box-sizing:border-box;display:block}slot[name=body-container]{mi
|
|
|
1711
1711
|
G.replaceSync(ye);
|
|
1712
1712
|
var be = class extends n {
|
|
1713
1713
|
constructor() {
|
|
1714
|
-
super(G), this.template = (
|
|
1714
|
+
super(G), this.template = () => `
|
|
1715
1715
|
<px-container border-radius="none" padding="none">
|
|
1716
1716
|
<px-vstack>
|
|
1717
1717
|
<px-container id="header-container" border-radius="none">
|
|
@@ -1748,15 +1748,6 @@ var be = class extends n {
|
|
|
1748
1748
|
<px-spacer></px-spacer>
|
|
1749
1749
|
</px-hstack>
|
|
1750
1750
|
</px-container>
|
|
1751
|
-
${e ? ` <px-hstack>
|
|
1752
|
-
<px-spacer></px-spacer>
|
|
1753
|
-
<px-container border-radius="none" box-shadow="xl" id="image-sticky-box" border="s" grow="${this.grow}" basis="${this.basis}" border-radius="m">
|
|
1754
|
-
<px-vstack gap="s">
|
|
1755
|
-
<slot name="image-sticky-container"></slot>
|
|
1756
|
-
</px-vstack>
|
|
1757
|
-
</px-container>
|
|
1758
|
-
<px-spacer></px-spacer>
|
|
1759
|
-
</px-hstack>` : ""}
|
|
1760
1751
|
<px-container
|
|
1761
1752
|
id="body-container"
|
|
1762
1753
|
id="main"
|
|
@@ -1813,7 +1804,7 @@ var be = class extends n {
|
|
|
1813
1804
|
</px-container>
|
|
1814
1805
|
</px-vstack>
|
|
1815
1806
|
</px-container>
|
|
1816
|
-
`, this.shadowRoot.innerHTML = this.template(
|
|
1807
|
+
`, this.shadowRoot.innerHTML = this.template();
|
|
1817
1808
|
}
|
|
1818
1809
|
static get observedAttributes() {
|
|
1819
1810
|
return [
|
|
@@ -1849,9 +1840,6 @@ var be = class extends n {
|
|
|
1849
1840
|
get backgroundImage() {
|
|
1850
1841
|
return this.getAttribute("background-image");
|
|
1851
1842
|
}
|
|
1852
|
-
get $imageStickySlot() {
|
|
1853
|
-
return this.querySelector("*[slot=\"image-sticky-container\"]");
|
|
1854
|
-
}
|
|
1855
1843
|
get $main() {
|
|
1856
1844
|
return this.shadowRoot.querySelector("#main");
|
|
1857
1845
|
}
|