@oicl/openbridge-webcomponents-svelte 2.0.0-next.61 → 2.0.0-next.63
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 +3 -3
- package/dist/automation/automation-tank/ObcAutomationTank.svelte.d.ts +3 -3
- package/dist/integration-systems/integration-vessel-menu/ObcIntegrationVesselMenu.svelte +9 -61
- package/dist/integration-systems/integration-vessel-menu/ObcIntegrationVesselMenu.svelte.d.ts +3 -12
- package/package.json +2 -2
|
@@ -31,9 +31,9 @@ import type {AutomationButtonBadgeControl, AutomationButtonBadgeAlert, Automatio
|
|
|
31
31
|
orientation?: TankOrientation;
|
|
32
32
|
compact?: boolean;
|
|
33
33
|
/** Host positioning model — see `TankPositioning` for details. Defaults to
|
|
34
|
-
`
|
|
35
|
-
|
|
36
|
-
|
|
34
|
+
`button` (host fills parent container, 100% × 100%, no anchor offset).
|
|
35
|
+
Set to `point` for the legacy P&ID canvas mode (fixed default dimensions
|
|
36
|
+
+ top-center anchor offset). */
|
|
37
37
|
positioning?: TankPositioning;
|
|
38
38
|
/** Static (display-only) variant. Always rendered at the compact size; the
|
|
39
39
|
inner chart/bar is hidden, the bordered area is filled with
|
|
@@ -19,9 +19,9 @@ export interface Props {
|
|
|
19
19
|
orientation?: TankOrientation;
|
|
20
20
|
compact?: boolean;
|
|
21
21
|
/** Host positioning model — see `TankPositioning` for details. Defaults to
|
|
22
|
-
`
|
|
23
|
-
|
|
24
|
-
|
|
22
|
+
`button` (host fills parent container, 100% × 100%, no anchor offset).
|
|
23
|
+
Set to `point` for the legacy P&ID canvas mode (fixed default dimensions
|
|
24
|
+
+ top-center anchor offset). */
|
|
25
25
|
positioning?: TankPositioning;
|
|
26
26
|
/** Static (display-only) variant. Always rendered at the compact size; the
|
|
27
27
|
inner chart/bar is hidden, the bordered area is filled with
|
|
@@ -9,81 +9,29 @@
|
|
|
9
9
|
export interface Props {
|
|
10
10
|
class?: string;
|
|
11
11
|
style?: string;
|
|
12
|
-
|
|
12
|
+
/** Hide the alarm list, ensuring it doesn't take space (display: none). */
|
|
13
|
+
hideAlarmList?: boolean
|
|
13
14
|
}
|
|
14
15
|
export interface Events {
|
|
15
|
-
|
|
16
|
-
onButton2Click?: (event: CustomEvent<unknown>) => void;
|
|
17
|
-
onButton3Click?: (event: CustomEvent<unknown>) => void
|
|
16
|
+
|
|
18
17
|
}
|
|
19
18
|
export interface Slots {
|
|
20
|
-
|
|
21
|
-
title?: Snippet;
|
|
22
|
-
button1LeadingIcon?: Snippet;
|
|
23
|
-
button1Label?: Snippet;
|
|
24
|
-
button2LeadingIcon?: Snippet;
|
|
25
|
-
button2Label?: Snippet;
|
|
26
|
-
button3LeadingIcon?: Snippet;
|
|
27
|
-
button3Label?: Snippet;
|
|
19
|
+
buttons?: Snippet;
|
|
28
20
|
content?: Snippet;
|
|
29
21
|
alarms?: Snippet
|
|
30
22
|
}
|
|
31
|
-
const {
|
|
23
|
+
const { class: className, style, buttons, content, alarms, ...props} = $props<Props & Events & Slots>();
|
|
32
24
|
|
|
33
25
|
</script>
|
|
34
26
|
<obc-integration-vessel-menu
|
|
35
27
|
use:setProperties={props}
|
|
36
28
|
class={className}
|
|
37
29
|
style={style}
|
|
38
|
-
|
|
39
|
-
onbutton2-click={onButton2Click}
|
|
40
|
-
onbutton3-click={onButton3Click} >
|
|
30
|
+
>
|
|
41
31
|
|
|
42
|
-
{#if
|
|
43
|
-
<div slot="
|
|
44
|
-
{@render
|
|
45
|
-
</div>
|
|
46
|
-
{/if}
|
|
47
|
-
|
|
48
|
-
{#if title}
|
|
49
|
-
<div slot="title">
|
|
50
|
-
{@render title()}
|
|
51
|
-
</div>
|
|
52
|
-
{/if}
|
|
53
|
-
|
|
54
|
-
{#if button1LeadingIcon}
|
|
55
|
-
<div slot="button-1-leading-icon">
|
|
56
|
-
{@render button1LeadingIcon()}
|
|
57
|
-
</div>
|
|
58
|
-
{/if}
|
|
59
|
-
|
|
60
|
-
{#if button1Label}
|
|
61
|
-
<div slot="button-1-label">
|
|
62
|
-
{@render button1Label()}
|
|
63
|
-
</div>
|
|
64
|
-
{/if}
|
|
65
|
-
|
|
66
|
-
{#if button2LeadingIcon}
|
|
67
|
-
<div slot="button-2-leading-icon">
|
|
68
|
-
{@render button2LeadingIcon()}
|
|
69
|
-
</div>
|
|
70
|
-
{/if}
|
|
71
|
-
|
|
72
|
-
{#if button2Label}
|
|
73
|
-
<div slot="button-2-label">
|
|
74
|
-
{@render button2Label()}
|
|
75
|
-
</div>
|
|
76
|
-
{/if}
|
|
77
|
-
|
|
78
|
-
{#if button3LeadingIcon}
|
|
79
|
-
<div slot="button-3-leading-icon">
|
|
80
|
-
{@render button3LeadingIcon()}
|
|
81
|
-
</div>
|
|
82
|
-
{/if}
|
|
83
|
-
|
|
84
|
-
{#if button3Label}
|
|
85
|
-
<div slot="button-3-label">
|
|
86
|
-
{@render button3Label()}
|
|
32
|
+
{#if buttons}
|
|
33
|
+
<div slot="buttons">
|
|
34
|
+
{@render buttons()}
|
|
87
35
|
</div>
|
|
88
36
|
{/if}
|
|
89
37
|
|
package/dist/integration-systems/integration-vessel-menu/ObcIntegrationVesselMenu.svelte.d.ts
CHANGED
|
@@ -3,22 +3,13 @@ import type { Snippet } from 'svelte';
|
|
|
3
3
|
export interface Props {
|
|
4
4
|
class?: string;
|
|
5
5
|
style?: string;
|
|
6
|
-
|
|
6
|
+
/** Hide the alarm list, ensuring it doesn't take space (display: none). */
|
|
7
|
+
hideAlarmList?: boolean;
|
|
7
8
|
}
|
|
8
9
|
export interface Events {
|
|
9
|
-
onButton1Click?: (event: CustomEvent<unknown>) => void;
|
|
10
|
-
onButton2Click?: (event: CustomEvent<unknown>) => void;
|
|
11
|
-
onButton3Click?: (event: CustomEvent<unknown>) => void;
|
|
12
10
|
}
|
|
13
11
|
export interface Slots {
|
|
14
|
-
|
|
15
|
-
title?: Snippet;
|
|
16
|
-
button1LeadingIcon?: Snippet;
|
|
17
|
-
button1Label?: Snippet;
|
|
18
|
-
button2LeadingIcon?: Snippet;
|
|
19
|
-
button2Label?: Snippet;
|
|
20
|
-
button3LeadingIcon?: Snippet;
|
|
21
|
-
button3Label?: Snippet;
|
|
12
|
+
buttons?: Snippet;
|
|
22
13
|
content?: Snippet;
|
|
23
14
|
alarms?: Snippet;
|
|
24
15
|
}
|
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.63",
|
|
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.62"
|
|
35
35
|
},
|
|
36
36
|
"peerDependencies": {
|
|
37
37
|
"svelte": "^5.0.0"
|