@oicl/openbridge-webcomponents 2.0.0-next.122 → 2.0.0-next.124
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 +19 -0
- package/bundle/openbridge-webcomponents.bundle.js.map +1 -1
- package/dist/navigation-instruments/compass-sector/compass-sector.css.js +10 -0
- package/dist/navigation-instruments/compass-sector/compass-sector.css.js.map +1 -1
- package/dist/navigation-instruments/thruster/thruster.d.ts.map +1 -1
- package/dist/navigation-instruments/thruster/thruster.js +1 -0
- package/dist/navigation-instruments/thruster/thruster.js.map +1 -1
- package/dist/navigation-instruments/watch/watch.css.js +4 -0
- package/dist/navigation-instruments/watch/watch.css.js.map +1 -1
- package/dist/navigation-instruments/watch-flat/watch-flat.css.js +4 -0
- package/dist/navigation-instruments/watch-flat/watch-flat.css.js.map +1 -1
- package/package.json +1 -1
|
@@ -52599,6 +52599,10 @@ const compentStyle$15 = i$7`* {
|
|
|
52599
52599
|
overflow: hidden;
|
|
52600
52600
|
}
|
|
52601
52601
|
|
|
52602
|
+
svg {
|
|
52603
|
+
display: block;
|
|
52604
|
+
}
|
|
52605
|
+
|
|
52602
52606
|
.label {
|
|
52603
52607
|
font-family: var(--global-typography-font-family);
|
|
52604
52608
|
font-weight: var(--global-typography-ui-body-font-weight);
|
|
@@ -210045,6 +210049,7 @@ ObcThruster.styles = i$7`
|
|
|
210045
210049
|
}
|
|
210046
210050
|
|
|
210047
210051
|
.container > svg {
|
|
210052
|
+
display: block;
|
|
210048
210053
|
height: 100%;
|
|
210049
210054
|
width: 100%;
|
|
210050
210055
|
}
|
|
@@ -211508,6 +211513,10 @@ const compentStyle$a = i$7`* {
|
|
|
211508
211513
|
box-sizing: border-box;
|
|
211509
211514
|
}
|
|
211510
211515
|
|
|
211516
|
+
svg {
|
|
211517
|
+
display: block;
|
|
211518
|
+
}
|
|
211519
|
+
|
|
211511
211520
|
.label {
|
|
211512
211521
|
font-family: var(--global-typography-font-family);
|
|
211513
211522
|
font-weight: var(--global-typography-ui-body-font-weight);
|
|
@@ -212671,6 +212680,16 @@ const componentStyle$h = i$7`* {
|
|
|
212671
212680
|
display: block;
|
|
212672
212681
|
width: 100%;
|
|
212673
212682
|
height: 100%;
|
|
212683
|
+
/* Clips the rotated overlay <svg transform="rotate(...)">, whose corners
|
|
212684
|
+
swing outside the host and leak arc pixels in wide layouts (same
|
|
212685
|
+
protection obc-watch has had since #994). Known trade-off: the HDG/COG
|
|
212686
|
+
arrow apexes previously painted 1-2px past the host's top edge and are
|
|
212687
|
+
now shaved flat at the box edge — imperceptible at normal viewing.
|
|
212688
|
+
TODO(designer): if the shave is unwanted, the frame needs headroom so
|
|
212689
|
+
the arrow tips fit inside the box — see "Host clipping & the arrow-apex
|
|
212690
|
+
shave" in docs/agents/watch-radial-instruments.md before changing
|
|
212691
|
+
(interacts with the #1021/#1049 label-reserve geometry). */
|
|
212692
|
+
overflow: hidden;
|
|
212674
212693
|
}
|
|
212675
212694
|
`;
|
|
212676
212695
|
function hdgVectorArt(colorName) {
|