@oicl/openbridge-webcomponents 2.0.0-next.98 → 2.0.0-next.99
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/bundle/openbridge-webcomponents.bundle.js +14 -10
- package/bundle/openbridge-webcomponents.bundle.js.map +1 -1
- package/dist/navigation-instruments/readout/readout.css.js +11 -9
- package/dist/navigation-instruments/readout/readout.css.js.map +1 -1
- package/dist/navigation-instruments/readout/readout.d.ts.map +1 -1
- package/dist/navigation-instruments/readout/readout.js +3 -1
- package/dist/navigation-instruments/readout/readout.js.map +1 -1
- package/package.json +1 -1
|
@@ -56304,6 +56304,14 @@ obc-readout-block {
|
|
|
56304
56304
|
align-self: center;
|
|
56305
56305
|
}
|
|
56306
56306
|
|
|
56307
|
+
.label-only:is(.readout.direction-horizontal .meta.meta-stacked) {
|
|
56308
|
+
align-self: flex-start;
|
|
56309
|
+
}
|
|
56310
|
+
|
|
56311
|
+
.unit-only:is(.readout.direction-horizontal .meta.meta-stacked) {
|
|
56312
|
+
align-self: flex-end;
|
|
56313
|
+
}
|
|
56314
|
+
|
|
56307
56315
|
.label {
|
|
56308
56316
|
color: var(--obc-readout-label-color, var(--element-neutral-color));
|
|
56309
56317
|
}
|
|
@@ -56656,9 +56664,7 @@ obc-readout-block {
|
|
|
56656
56664
|
--_readout-trim: var(
|
|
56657
56665
|
--instrument-components-readout-new-group-horizontal-regular-horizontal-trim-padding
|
|
56658
56666
|
);
|
|
56659
|
-
--_readout-value-gap:
|
|
56660
|
-
--instrument-components-readout-new-group-horizontal-regular-horizontal-value-container-gap
|
|
56661
|
-
);
|
|
56667
|
+
--_readout-value-gap: 0;
|
|
56662
56668
|
--_readout-value-pad-v: var(
|
|
56663
56669
|
--instrument-components-readout-new-group-horizontal-regular-value-container-padding-vertical
|
|
56664
56670
|
);
|
|
@@ -56680,9 +56686,7 @@ obc-readout-block {
|
|
|
56680
56686
|
--_readout-trim: var(
|
|
56681
56687
|
--instrument-components-readout-new-group-horizontal-medium-horizontal-trim-padding
|
|
56682
56688
|
);
|
|
56683
|
-
--_readout-value-gap:
|
|
56684
|
-
--instrument-components-readout-new-group-horizontal-medium-horizontal-value-container-gap
|
|
56685
|
-
);
|
|
56689
|
+
--_readout-value-gap: 0;
|
|
56686
56690
|
--_readout-value-pad-v: var(
|
|
56687
56691
|
--instrument-components-readout-new-group-horizontal-medium-value-container-padding-vertical
|
|
56688
56692
|
);
|
|
@@ -56701,9 +56705,7 @@ obc-readout-block {
|
|
|
56701
56705
|
--_readout-trim: var(
|
|
56702
56706
|
--instrument-components-readout-new-group-horizontal-enhanced-horizontal-trim-padding
|
|
56703
56707
|
);
|
|
56704
|
-
--_readout-value-gap:
|
|
56705
|
-
--instrument-components-readout-new-group-horizontal-enhanced-value-container-gap
|
|
56706
|
-
);
|
|
56708
|
+
--_readout-value-gap: 4px;
|
|
56707
56709
|
--_readout-value-pad-v: var(
|
|
56708
56710
|
--instrument-components-readout-new-group-horizontal-enhanced-value-container-padding
|
|
56709
56711
|
);
|
|
@@ -63023,7 +63025,9 @@ let ObcReadout = class extends i$4 {
|
|
|
63023
63025
|
class=${e$1({
|
|
63024
63026
|
meta: true,
|
|
63025
63027
|
"meta-inline": !stacked,
|
|
63026
|
-
"meta-stacked": stacked
|
|
63028
|
+
"meta-stacked": stacked,
|
|
63029
|
+
"label-only": !!this.label && !this.unit,
|
|
63030
|
+
"unit-only": !!this.unit && !this.label
|
|
63027
63031
|
})}
|
|
63028
63032
|
part="meta-wrapper"
|
|
63029
63033
|
>
|