@oicl/openbridge-webcomponents-svelte 2.0.0-next.55 → 2.0.0-next.57
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/automation/automation-tank/ObcAutomationTank.svelte +70 -5
- package/dist/automation/automation-tank/ObcAutomationTank.svelte.d.ts +10 -1
- package/dist/navigation-instruments/compass-sector/ObcCompassSector.svelte +5 -1
- package/dist/navigation-instruments/compass-sector/ObcCompassSector.svelte.d.ts +4 -0
- package/dist/navigation-instruments/pitch/ObcPitch.svelte +14 -0
- package/dist/navigation-instruments/pitch/ObcPitch.svelte.d.ts +14 -0
- package/dist/navigation-instruments/pitch-roll/ObcPitchRoll.svelte +3 -0
- package/dist/navigation-instruments/pitch-roll/ObcPitchRoll.svelte.d.ts +3 -0
- package/dist/navigation-instruments/roll/ObcRoll.svelte +14 -0
- package/dist/navigation-instruments/roll/ObcRoll.svelte.d.ts +14 -0
- package/dist/navigation-instruments/rot-sector/ObcRotSector.svelte +4 -1
- package/dist/navigation-instruments/rot-sector/ObcRotSector.svelte.d.ts +3 -0
- package/package.json +2 -2
|
@@ -135,9 +135,18 @@ badgeControl?: AutomationButtonBadgeControl;
|
|
|
135
135
|
|
|
136
136
|
}
|
|
137
137
|
export interface Slots {
|
|
138
|
-
|
|
138
|
+
badges?: Snippet;
|
|
139
|
+
tagSnippet?: Snippet;
|
|
140
|
+
readoutSnippet?: Snippet;
|
|
141
|
+
maxValue?: Snippet;
|
|
142
|
+
unit?: Snippet;
|
|
143
|
+
currentValue?: Snippet;
|
|
144
|
+
rich?: Snippet;
|
|
145
|
+
alertIcon?: Snippet;
|
|
146
|
+
alertLabel?: Snippet;
|
|
147
|
+
alertTimer?: Snippet
|
|
139
148
|
}
|
|
140
|
-
const { class: className, style,
|
|
149
|
+
const { class: className, style, badges, tagSnippet, readoutSnippet, maxValue, unit, currentValue, rich, alertIcon, alertLabel, alertTimer, ...props} = $props<Props & Events & Slots>();
|
|
141
150
|
|
|
142
151
|
</script>
|
|
143
152
|
<obc-automation-tank
|
|
@@ -146,7 +155,63 @@ badgeControl?: AutomationButtonBadgeControl;
|
|
|
146
155
|
style={style}
|
|
147
156
|
>
|
|
148
157
|
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
158
|
+
{#if badges}
|
|
159
|
+
<div slot="badges">
|
|
160
|
+
{@render badges()}
|
|
161
|
+
</div>
|
|
162
|
+
{/if}
|
|
163
|
+
|
|
164
|
+
{#if tagSnippet}
|
|
165
|
+
<div slot="tag">
|
|
166
|
+
{@render tagSnippet()}
|
|
167
|
+
</div>
|
|
168
|
+
{/if}
|
|
169
|
+
|
|
170
|
+
{#if readoutSnippet}
|
|
171
|
+
<div slot="readout">
|
|
172
|
+
{@render readoutSnippet()}
|
|
173
|
+
</div>
|
|
174
|
+
{/if}
|
|
175
|
+
|
|
176
|
+
{#if maxValue}
|
|
177
|
+
<div slot="max-value">
|
|
178
|
+
{@render maxValue()}
|
|
179
|
+
</div>
|
|
180
|
+
{/if}
|
|
181
|
+
|
|
182
|
+
{#if unit}
|
|
183
|
+
<div slot="unit">
|
|
184
|
+
{@render unit()}
|
|
185
|
+
</div>
|
|
186
|
+
{/if}
|
|
187
|
+
|
|
188
|
+
{#if currentValue}
|
|
189
|
+
<div slot="current-value">
|
|
190
|
+
{@render currentValue()}
|
|
191
|
+
</div>
|
|
192
|
+
{/if}
|
|
193
|
+
|
|
194
|
+
{#if rich}
|
|
195
|
+
<div slot="rich">
|
|
196
|
+
{@render rich()}
|
|
197
|
+
</div>
|
|
198
|
+
{/if}
|
|
199
|
+
|
|
200
|
+
{#if alertIcon}
|
|
201
|
+
<div slot="alert-icon">
|
|
202
|
+
{@render alertIcon()}
|
|
203
|
+
</div>
|
|
204
|
+
{/if}
|
|
205
|
+
|
|
206
|
+
{#if alertLabel}
|
|
207
|
+
<div slot="alert-label">
|
|
208
|
+
{@render alertLabel()}
|
|
209
|
+
</div>
|
|
210
|
+
{/if}
|
|
211
|
+
|
|
212
|
+
{#if alertTimer}
|
|
213
|
+
<div slot="alert-timer">
|
|
214
|
+
{@render alertTimer()}
|
|
215
|
+
</div>
|
|
216
|
+
{/if}
|
|
152
217
|
</obc-automation-tank>
|
|
@@ -123,7 +123,16 @@ matching the positional convention used by `ObcAbstractAutomationButton`
|
|
|
123
123
|
export interface Events {
|
|
124
124
|
}
|
|
125
125
|
export interface Slots {
|
|
126
|
-
|
|
126
|
+
badges?: Snippet;
|
|
127
|
+
tagSnippet?: Snippet;
|
|
128
|
+
readoutSnippet?: Snippet;
|
|
129
|
+
maxValue?: Snippet;
|
|
130
|
+
unit?: Snippet;
|
|
131
|
+
currentValue?: Snippet;
|
|
132
|
+
rich?: Snippet;
|
|
133
|
+
alertIcon?: Snippet;
|
|
134
|
+
alertLabel?: Snippet;
|
|
135
|
+
alertTimer?: Snippet;
|
|
127
136
|
}
|
|
128
137
|
type $$ComponentProps = Props & Events & Slots;
|
|
129
138
|
declare const ObcAutomationTank: import("svelte").Component<$$ComponentProps, {
|
|
@@ -53,7 +53,11 @@ rotMaxValue?: number;
|
|
|
53
53
|
priority?: Priority;
|
|
54
54
|
priorityElements?: CompassSectorPriorityElement[];
|
|
55
55
|
tickmarksInside?: boolean;
|
|
56
|
-
zoomToFitArc?: boolean
|
|
56
|
+
zoomToFitArc?: boolean;
|
|
57
|
+
/** When `true`, shows a centered `<obc-readout>` under the arc displaying the
|
|
58
|
+
heading (label `HDG`, unit `DEG`). The value color follows the HDG entry in
|
|
59
|
+
`priorityElements`, matching the HDG arrow. */
|
|
60
|
+
hasReadout?: boolean
|
|
57
61
|
}
|
|
58
62
|
export interface Events {
|
|
59
63
|
onNone?: (event: CustomEvent<unknown>) => void
|
|
@@ -46,6 +46,10 @@ with the introduction of `rateOfTurnDegreesPerMinute`. */
|
|
|
46
46
|
priorityElements?: CompassSectorPriorityElement[];
|
|
47
47
|
tickmarksInside?: boolean;
|
|
48
48
|
zoomToFitArc?: boolean;
|
|
49
|
+
/** When `true`, shows a centered `<obc-readout>` under the arc displaying the
|
|
50
|
+
heading (label `HDG`, unit `DEG`). The value color follows the HDG entry in
|
|
51
|
+
`priorityElements`, matching the HDG arrow. */
|
|
52
|
+
hasReadout?: boolean;
|
|
49
53
|
}
|
|
50
54
|
export interface Events {
|
|
51
55
|
onNone?: (event: CustomEvent<unknown>) => void;
|
|
@@ -1,9 +1,13 @@
|
|
|
1
1
|
|
|
2
2
|
<script lang="ts">
|
|
3
3
|
export type {VesselImage} from '@oicl/openbridge-webcomponents/dist/navigation-instruments/watch/watch.js';
|
|
4
|
+
export type {ObcPitchType} from '@oicl/openbridge-webcomponents/dist/navigation-instruments/pitch/pitch.js';
|
|
5
|
+
export type {Priority} from '@oicl/openbridge-webcomponents/dist/navigation-instruments/types.js';
|
|
4
6
|
import '@oicl/openbridge-webcomponents/dist/navigation-instruments/pitch/pitch.js';
|
|
5
7
|
import { setProperties } from "../../util.js";
|
|
6
8
|
import type {VesselImage} from '@oicl/openbridge-webcomponents/dist/navigation-instruments/watch/watch.js';
|
|
9
|
+
import type {ObcPitchType} from '@oicl/openbridge-webcomponents/dist/navigation-instruments/pitch/pitch.js';
|
|
10
|
+
import type {Priority} from '@oicl/openbridge-webcomponents/dist/navigation-instruments/types.js';
|
|
7
11
|
import type { Snippet } from 'svelte';
|
|
8
12
|
|
|
9
13
|
export interface Props {
|
|
@@ -16,6 +20,16 @@
|
|
|
16
20
|
maxPitchAdvice?: number | undefined;
|
|
17
21
|
triggerPitchAdvice?: boolean;
|
|
18
22
|
zoomToFitArc?: boolean;
|
|
23
|
+
/** When `true`, the centre shows an `<obc-readout>` with the pitch value
|
|
24
|
+
(label `Pitch`, unit `DEG`) instead of the horizon line, rotating indicator
|
|
25
|
+
and vessel. Default `false`. */
|
|
26
|
+
hasReadout?: boolean;
|
|
27
|
+
/** `single-scale` shows one arc on the right (default); `dual-scale` also
|
|
28
|
+
shows the scale on the opposite (left) arc (the indicator's opposite end). */
|
|
29
|
+
type?: ObcPitchType;
|
|
30
|
+
/** Colour palette for the scale fill / indicator and the readout value:
|
|
31
|
+
`regular` (default) or `enhanced`. */
|
|
32
|
+
priority?: Priority;
|
|
19
33
|
/** Half-extent of the watch arc in degrees. The arc spans `90° ± arcAngle`
|
|
20
34
|
and pitch values are placed at their true position within it. Default
|
|
21
35
|
`45` reproduces the historical 90°-wide arc.
|
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
import '@oicl/openbridge-webcomponents/dist/navigation-instruments/pitch/pitch.js';
|
|
2
2
|
import type { VesselImage } from '@oicl/openbridge-webcomponents/dist/navigation-instruments/watch/watch.js';
|
|
3
|
+
import type { ObcPitchType } from '@oicl/openbridge-webcomponents/dist/navigation-instruments/pitch/pitch.js';
|
|
4
|
+
import type { Priority } from '@oicl/openbridge-webcomponents/dist/navigation-instruments/types.js';
|
|
3
5
|
import type { Snippet } from 'svelte';
|
|
4
6
|
export interface Props {
|
|
5
7
|
class?: string;
|
|
@@ -11,6 +13,16 @@ export interface Props {
|
|
|
11
13
|
maxPitchAdvice?: number | undefined;
|
|
12
14
|
triggerPitchAdvice?: boolean;
|
|
13
15
|
zoomToFitArc?: boolean;
|
|
16
|
+
/** When `true`, the centre shows an `<obc-readout>` with the pitch value
|
|
17
|
+
(label `Pitch`, unit `DEG`) instead of the horizon line, rotating indicator
|
|
18
|
+
and vessel. Default `false`. */
|
|
19
|
+
hasReadout?: boolean;
|
|
20
|
+
/** `single-scale` shows one arc on the right (default); `dual-scale` also
|
|
21
|
+
shows the scale on the opposite (left) arc (the indicator's opposite end). */
|
|
22
|
+
type?: ObcPitchType;
|
|
23
|
+
/** Colour palette for the scale fill / indicator and the readout value:
|
|
24
|
+
`regular` (default) or `enhanced`. */
|
|
25
|
+
priority?: Priority;
|
|
14
26
|
/** Half-extent of the watch arc in degrees. The arc spans `90° ± arcAngle`
|
|
15
27
|
and pitch values are placed at their true position within it. Default
|
|
16
28
|
`45` reproduces the historical 90°-wide arc.
|
|
@@ -30,6 +42,8 @@ export interface Slots {
|
|
|
30
42
|
type $$ComponentProps = Props & Events & Slots;
|
|
31
43
|
declare const ObcPitch: import("svelte").Component<$$ComponentProps, {
|
|
32
44
|
VesselImage: typeof VesselImage;
|
|
45
|
+
ObcPitchType: typeof ObcPitchType;
|
|
46
|
+
Priority: typeof Priority;
|
|
33
47
|
}, "">;
|
|
34
48
|
type ObcPitch = ReturnType<typeof ObcPitch>;
|
|
35
49
|
export default ObcPitch;
|
|
@@ -28,6 +28,9 @@ import type {PitchRollPriorityElement} from '@oicl/openbridge-webcomponents/dist
|
|
|
28
28
|
triggerRollAdvice?: boolean;
|
|
29
29
|
priority?: Priority;
|
|
30
30
|
priorityElements?: PitchRollPriorityElement[];
|
|
31
|
+
/** When `true`, the centre shows two stacked `<obc-readout>`s (pitch above
|
|
32
|
+
roll) instead of the vessel images. Default `false`. */
|
|
33
|
+
hasReadout?: boolean;
|
|
31
34
|
zoomToFitArc?: boolean;
|
|
32
35
|
/** Half-extent of each of the four watch arcs in degrees, measured from the
|
|
33
36
|
arc's natural center (0°/90°/180°/270°). Each arc spans
|
|
@@ -21,6 +21,9 @@ export interface Props {
|
|
|
21
21
|
triggerRollAdvice?: boolean;
|
|
22
22
|
priority?: Priority;
|
|
23
23
|
priorityElements?: PitchRollPriorityElement[];
|
|
24
|
+
/** When `true`, the centre shows two stacked `<obc-readout>`s (pitch above
|
|
25
|
+
roll) instead of the vessel images. Default `false`. */
|
|
26
|
+
hasReadout?: boolean;
|
|
24
27
|
zoomToFitArc?: boolean;
|
|
25
28
|
/** Half-extent of each of the four watch arcs in degrees, measured from the
|
|
26
29
|
arc's natural center (0°/90°/180°/270°). Each arc spans
|
|
@@ -1,9 +1,13 @@
|
|
|
1
1
|
|
|
2
2
|
<script lang="ts">
|
|
3
3
|
export type {VesselImage} from '@oicl/openbridge-webcomponents/dist/navigation-instruments/watch/watch.js';
|
|
4
|
+
export type {ObcRollType} from '@oicl/openbridge-webcomponents/dist/navigation-instruments/roll/roll.js';
|
|
5
|
+
export type {Priority} from '@oicl/openbridge-webcomponents/dist/navigation-instruments/types.js';
|
|
4
6
|
import '@oicl/openbridge-webcomponents/dist/navigation-instruments/roll/roll.js';
|
|
5
7
|
import { setProperties } from "../../util.js";
|
|
6
8
|
import type {VesselImage} from '@oicl/openbridge-webcomponents/dist/navigation-instruments/watch/watch.js';
|
|
9
|
+
import type {ObcRollType} from '@oicl/openbridge-webcomponents/dist/navigation-instruments/roll/roll.js';
|
|
10
|
+
import type {Priority} from '@oicl/openbridge-webcomponents/dist/navigation-instruments/types.js';
|
|
7
11
|
import type { Snippet } from 'svelte';
|
|
8
12
|
|
|
9
13
|
export interface Props {
|
|
@@ -17,6 +21,16 @@
|
|
|
17
21
|
maxRollAdvice?: number | undefined;
|
|
18
22
|
triggerRollAdvice?: boolean;
|
|
19
23
|
zoomToFitArc?: boolean;
|
|
24
|
+
/** When `true`, the centre shows an `<obc-readout>` with the roll value
|
|
25
|
+
(label `Roll`, unit `DEG`) instead of the horizon line, rotating indicator
|
|
26
|
+
and vessel. Default `false`. */
|
|
27
|
+
hasReadout?: boolean;
|
|
28
|
+
/** `single-scale` shows one arc at the bottom (default); `dual-scale` also
|
|
29
|
+
shows the scale on the top arc (the indicator's opposite end). */
|
|
30
|
+
type?: ObcRollType;
|
|
31
|
+
/** Colour palette for the scale fill / indicator and the readout value:
|
|
32
|
+
`regular` (default) or `enhanced`. */
|
|
33
|
+
priority?: Priority;
|
|
20
34
|
/** Half-extent of the watch arc in degrees. The arc spans `180° ± arcAngle`
|
|
21
35
|
and roll values are placed at their true position within it. Default
|
|
22
36
|
`45` reproduces the historical 90°-wide arc.
|
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
import '@oicl/openbridge-webcomponents/dist/navigation-instruments/roll/roll.js';
|
|
2
2
|
import type { VesselImage } from '@oicl/openbridge-webcomponents/dist/navigation-instruments/watch/watch.js';
|
|
3
|
+
import type { ObcRollType } from '@oicl/openbridge-webcomponents/dist/navigation-instruments/roll/roll.js';
|
|
4
|
+
import type { Priority } from '@oicl/openbridge-webcomponents/dist/navigation-instruments/types.js';
|
|
3
5
|
import type { Snippet } from 'svelte';
|
|
4
6
|
export interface Props {
|
|
5
7
|
class?: string;
|
|
@@ -12,6 +14,16 @@ export interface Props {
|
|
|
12
14
|
maxRollAdvice?: number | undefined;
|
|
13
15
|
triggerRollAdvice?: boolean;
|
|
14
16
|
zoomToFitArc?: boolean;
|
|
17
|
+
/** When `true`, the centre shows an `<obc-readout>` with the roll value
|
|
18
|
+
(label `Roll`, unit `DEG`) instead of the horizon line, rotating indicator
|
|
19
|
+
and vessel. Default `false`. */
|
|
20
|
+
hasReadout?: boolean;
|
|
21
|
+
/** `single-scale` shows one arc at the bottom (default); `dual-scale` also
|
|
22
|
+
shows the scale on the top arc (the indicator's opposite end). */
|
|
23
|
+
type?: ObcRollType;
|
|
24
|
+
/** Colour palette for the scale fill / indicator and the readout value:
|
|
25
|
+
`regular` (default) or `enhanced`. */
|
|
26
|
+
priority?: Priority;
|
|
15
27
|
/** Half-extent of the watch arc in degrees. The arc spans `180° ± arcAngle`
|
|
16
28
|
and roll values are placed at their true position within it. Default
|
|
17
29
|
`45` reproduces the historical 90°-wide arc.
|
|
@@ -31,6 +43,8 @@ export interface Slots {
|
|
|
31
43
|
type $$ComponentProps = Props & Events & Slots;
|
|
32
44
|
declare const ObcRoll: import("svelte").Component<$$ComponentProps, {
|
|
33
45
|
VesselImage: typeof VesselImage;
|
|
46
|
+
ObcRollType: typeof ObcRollType;
|
|
47
|
+
Priority: typeof Priority;
|
|
34
48
|
}, "">;
|
|
35
49
|
type ObcRoll = ReturnType<typeof ObcRoll>;
|
|
36
50
|
export default ObcRoll;
|
|
@@ -32,7 +32,10 @@ tertiaryTickmarkInterval?: number | undefined;
|
|
|
32
32
|
tickmarkStyle?: TickmarkStyle;
|
|
33
33
|
advices?: GaugeRadialAdvice[];
|
|
34
34
|
zoomToFitArc?: boolean;
|
|
35
|
-
rotArcExtent?: number
|
|
35
|
+
rotArcExtent?: number;
|
|
36
|
+
/** When `true`, shows a centered `<obc-readout>` (label `ROT`, unit `DEG/min`)
|
|
37
|
+
under the arc with the current rate-of-turn value. Default `false`. */
|
|
38
|
+
hasReadout?: boolean
|
|
36
39
|
}
|
|
37
40
|
export interface Events {
|
|
38
41
|
|
|
@@ -26,6 +26,9 @@ When undefined or <= 0, no tertiary tickmarks are shown. */
|
|
|
26
26
|
advices?: GaugeRadialAdvice[];
|
|
27
27
|
zoomToFitArc?: boolean;
|
|
28
28
|
rotArcExtent?: number;
|
|
29
|
+
/** When `true`, shows a centered `<obc-readout>` (label `ROT`, unit `DEG/min`)
|
|
30
|
+
under the arc with the current rate-of-turn value. Default `false`. */
|
|
31
|
+
hasReadout?: boolean;
|
|
29
32
|
}
|
|
30
33
|
export interface Events {
|
|
31
34
|
}
|
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.57",
|
|
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.56"
|
|
35
35
|
},
|
|
36
36
|
"peerDependencies": {
|
|
37
37
|
"svelte": "^5.0.0"
|