@oicl/openbridge-webcomponents-svelte 2.0.0-next.111 → 2.0.0-next.112
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/navigation-instruments/compass/ObcCompass.svelte +1 -1
- package/dist/navigation-instruments/compass/ObcCompass.svelte.d.ts +1 -1
- package/dist/navigation-instruments/current/ObcCurrent.svelte +10 -0
- package/dist/navigation-instruments/current/ObcCurrent.svelte.d.ts +10 -0
- package/dist/navigation-instruments/rate-of-turn/ObcRateOfTurn.svelte +3 -1
- package/dist/navigation-instruments/rate-of-turn/ObcRateOfTurn.svelte.d.ts +3 -1
- package/package.json +2 -2
|
@@ -94,7 +94,7 @@ rotMaxValue?: number;
|
|
|
94
94
|
/** Color priority: `Priority.enhanced` uses the blue/enhanced color palette, `Priority.regular` (default) uses the standard palette. */
|
|
95
95
|
priority?: Priority;
|
|
96
96
|
priorityElements?: CompassPriorityElement[];
|
|
97
|
-
/** Show compass NSEW labels
|
|
97
|
+
/** Show compass NSEW labels. The north arrow is always shown, independent of this flag. */
|
|
98
98
|
showLabels?: boolean;
|
|
99
99
|
/** When true, labels and north arrow are placed inside the outer ring. */
|
|
100
100
|
tickmarksInside?: boolean;
|
|
@@ -84,7 +84,7 @@ the physical ROT API was introduced. */
|
|
|
84
84
|
/** Color priority: `Priority.enhanced` uses the blue/enhanced color palette, `Priority.regular` (default) uses the standard palette. */
|
|
85
85
|
priority?: Priority;
|
|
86
86
|
priorityElements?: CompassPriorityElement[];
|
|
87
|
-
/** Show compass NSEW labels
|
|
87
|
+
/** Show compass NSEW labels. The north arrow is always shown, independent of this flag. */
|
|
88
88
|
showLabels?: boolean;
|
|
89
89
|
/** When true, labels and north arrow are placed inside the outer ring. */
|
|
90
90
|
tickmarksInside?: boolean;
|
|
@@ -22,6 +22,16 @@ currentSpeed?: number | null;
|
|
|
22
22
|
currentFromDirection?: number | null;
|
|
23
23
|
/** Color priority: `Priority.enhanced` uses the blue/enhanced palette (default: `Priority.regular`). */
|
|
24
24
|
priority?: Priority;
|
|
25
|
+
/** Show the force-graphics band pattern behind the watch face. */
|
|
26
|
+
hasPattern?: boolean;
|
|
27
|
+
/** Wavelength of the pattern bands as a multiplier on the design spacing
|
|
28
|
+
(1 = design, 0.5 = twice as dense). */
|
|
29
|
+
waveLength?: number;
|
|
30
|
+
/** Wave intensity: the peak opacity the pattern bands fade up to (0–1). */
|
|
31
|
+
waveHeight?: number;
|
|
32
|
+
/** Drift speed of the pattern in wavelengths per second, moving with the
|
|
33
|
+
flow (negative drifts against it); 0 keeps the pattern static. */
|
|
34
|
+
waveSpeed?: number;
|
|
25
35
|
/** The image of the vessel. */
|
|
26
36
|
vesselImage?: VesselImage;
|
|
27
37
|
/** Vessel heading in degrees. */
|
|
@@ -15,6 +15,16 @@ rounded and clamped. `null` hides the icon. */
|
|
|
15
15
|
currentFromDirection?: number | null;
|
|
16
16
|
/** Color priority: `Priority.enhanced` uses the blue/enhanced palette (default: `Priority.regular`). */
|
|
17
17
|
priority?: Priority;
|
|
18
|
+
/** Show the force-graphics band pattern behind the watch face. */
|
|
19
|
+
hasPattern?: boolean;
|
|
20
|
+
/** Wavelength of the pattern bands as a multiplier on the design spacing
|
|
21
|
+
(1 = design, 0.5 = twice as dense). */
|
|
22
|
+
waveLength?: number;
|
|
23
|
+
/** Wave intensity: the peak opacity the pattern bands fade up to (0–1). */
|
|
24
|
+
waveHeight?: number;
|
|
25
|
+
/** Drift speed of the pattern in wavelengths per second, moving with the
|
|
26
|
+
flow (negative drifts against it); 0 keeps the pattern static. */
|
|
27
|
+
waveSpeed?: number;
|
|
18
28
|
/** The image of the vessel. */
|
|
19
29
|
vesselImage?: VesselImage;
|
|
20
30
|
/** Vessel heading in degrees. */
|
|
@@ -29,7 +29,9 @@ rotDotAnimationFactor?: number;
|
|
|
29
29
|
/** When `true`, shows a bar in the ring band from the twelve o'clock
|
|
30
30
|
position to the measured rate of turn, with a needle marker at its end
|
|
31
31
|
and sector tickmarks. Pairs with `watchCircleType="double"` for the
|
|
32
|
-
banded face
|
|
32
|
+
banded face — or `"triple"` when `rotPosition` is `innerCircle`, so the
|
|
33
|
+
dots get their inner track too. Driven by `rateOfTurnDegreesPerMinute`
|
|
34
|
+
only. */
|
|
33
35
|
hasTrackBar?: boolean;
|
|
34
36
|
/** Bar-extent reference value in **degrees per minute**: the track bar
|
|
35
37
|
reaches ±`rotArcExtent` when the measured ROT equals ±`rotMaxValue`.
|
|
@@ -23,7 +23,9 @@ keeps the legacy visual feel (≈1 rpm at 20°/min). */
|
|
|
23
23
|
/** When `true`, shows a bar in the ring band from the twelve o'clock
|
|
24
24
|
position to the measured rate of turn, with a needle marker at its end
|
|
25
25
|
and sector tickmarks. Pairs with `watchCircleType="double"` for the
|
|
26
|
-
banded face
|
|
26
|
+
banded face — or `"triple"` when `rotPosition` is `innerCircle`, so the
|
|
27
|
+
dots get their inner track too. Driven by `rateOfTurnDegreesPerMinute`
|
|
28
|
+
only. */
|
|
27
29
|
hasTrackBar?: boolean;
|
|
28
30
|
/** Bar-extent reference value in **degrees per minute**: the track bar
|
|
29
31
|
reaches ±`rotArcExtent` when the measured ROT equals ±`rotMaxValue`.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@oicl/openbridge-webcomponents-svelte",
|
|
3
|
-
"version": "2.0.0-next.
|
|
3
|
+
"version": "2.0.0-next.112",
|
|
4
4
|
"scripts": {
|
|
5
5
|
"dev": "vite dev",
|
|
6
6
|
"build": "vite build && npm run prepack",
|
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
}
|
|
32
32
|
},
|
|
33
33
|
"dependencies": {
|
|
34
|
-
"@oicl/openbridge-webcomponents": "^2.0.0-next.
|
|
34
|
+
"@oicl/openbridge-webcomponents": "^2.0.0-next.111"
|
|
35
35
|
},
|
|
36
36
|
"peerDependencies": {
|
|
37
37
|
"svelte": "^5.0.0"
|