@kodaris/krubble-components 1.0.66 → 1.0.68
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/custom-elements.json +3 -3
- package/dist/dialog/dialog.d.ts.map +1 -1
- package/dist/dialog/dialog.js +9 -1
- package/dist/dialog/dialog.js.map +1 -1
- package/dist/krubble-components.bundled.js +9 -1
- package/dist/krubble-components.bundled.js.map +1 -1
- package/dist/krubble-components.bundled.min.js +9 -1
- package/dist/krubble-components.bundled.min.js.map +1 -1
- package/dist/krubble-components.umd.js +9 -1
- package/dist/krubble-components.umd.js.map +1 -1
- package/dist/krubble-components.umd.min.js +9 -1
- package/dist/krubble-components.umd.min.js.map +1 -1
- package/package.json +1 -1
|
@@ -1623,7 +1623,7 @@
|
|
|
1623
1623
|
<div class="backdrop" @click=${this._handleBackdropClick}></div>
|
|
1624
1624
|
<div class="dialog" style=${o$1({ width: this.width })}>
|
|
1625
1625
|
${this.label ? b `<div class="dialog__header"><div class="dialog__header-label">${this.label}</div></div>` : ''}
|
|
1626
|
-
|
|
1626
|
+
<div class="dialog__body">${this._contentElement ? this._contentElement : b `<slot></slot>`}</div>
|
|
1627
1627
|
</div>
|
|
1628
1628
|
`;
|
|
1629
1629
|
}
|
|
@@ -1654,6 +1654,7 @@
|
|
|
1654
1654
|
border: 1px solid rgba(0, 0, 0, 0.1);
|
|
1655
1655
|
border-radius: 12px;
|
|
1656
1656
|
box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
|
|
1657
|
+
height: 100%;
|
|
1657
1658
|
max-height: 90vh;
|
|
1658
1659
|
overflow: hidden;
|
|
1659
1660
|
display: flex;
|
|
@@ -1686,6 +1687,13 @@
|
|
|
1686
1687
|
font-size: 18px;
|
|
1687
1688
|
font-weight: 600;
|
|
1688
1689
|
}
|
|
1690
|
+
|
|
1691
|
+
.dialog__body {
|
|
1692
|
+
flex: 1;
|
|
1693
|
+
min-height: 0;
|
|
1694
|
+
display: flex;
|
|
1695
|
+
flex-direction: column;
|
|
1696
|
+
}
|
|
1689
1697
|
`;
|
|
1690
1698
|
__decorate$i([
|
|
1691
1699
|
r$1()
|