@cal.macconnachie/web-components 2.6.3 → 2.6.5
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.js +19 -6
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -5755,7 +5755,10 @@ class ue extends M {
|
|
|
5755
5755
|
static {
|
|
5756
5756
|
this.styles = B`
|
|
5757
5757
|
:host {
|
|
5758
|
-
display:
|
|
5758
|
+
display: flex;
|
|
5759
|
+
flex-direction: column;
|
|
5760
|
+
flex: 1;
|
|
5761
|
+
min-height: 0;
|
|
5759
5762
|
width: 100%;
|
|
5760
5763
|
position: relative;
|
|
5761
5764
|
overflow-y: auto;
|
|
@@ -7311,11 +7314,18 @@ class Pe extends M {
|
|
|
7311
7314
|
}
|
|
7312
7315
|
|
|
7313
7316
|
:host([active]) {
|
|
7314
|
-
display:
|
|
7317
|
+
display: flex;
|
|
7318
|
+
flex-direction: column;
|
|
7319
|
+
flex: 1;
|
|
7320
|
+
min-height: 0;
|
|
7315
7321
|
}
|
|
7316
7322
|
|
|
7317
7323
|
.base-tab {
|
|
7318
7324
|
width: 100%;
|
|
7325
|
+
display: flex;
|
|
7326
|
+
flex-direction: column;
|
|
7327
|
+
flex: 1;
|
|
7328
|
+
min-height: 0;
|
|
7319
7329
|
}
|
|
7320
7330
|
`;
|
|
7321
7331
|
}
|
|
@@ -7668,17 +7678,20 @@ class ae extends M {
|
|
|
7668
7678
|
.tabs-content {
|
|
7669
7679
|
flex: 1;
|
|
7670
7680
|
min-width: 0;
|
|
7681
|
+
min-height: 0;
|
|
7671
7682
|
animation: fadeIn 0.2s ease-in;
|
|
7672
|
-
overflow
|
|
7673
|
-
|
|
7683
|
+
overflow: hidden;
|
|
7684
|
+
display: flex;
|
|
7685
|
+
flex-direction: column;
|
|
7674
7686
|
}
|
|
7675
7687
|
|
|
7676
7688
|
.base-tabs--vertical .tabs-content {
|
|
7677
7689
|
flex: 1;
|
|
7678
7690
|
min-width: 0;
|
|
7679
7691
|
min-height: 0;
|
|
7680
|
-
overflow
|
|
7681
|
-
|
|
7692
|
+
overflow: hidden;
|
|
7693
|
+
display: flex;
|
|
7694
|
+
flex-direction: column;
|
|
7682
7695
|
}
|
|
7683
7696
|
|
|
7684
7697
|
@keyframes fadeIn {
|