@oicl/openbridge-webcomponents-svelte 2.0.0-next.136 → 2.0.0-next.138
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/hydraulic-check-valve/ObcHydraulicCheckValve.svelte +35 -0
- package/dist/automation/hydraulic-check-valve/ObcHydraulicCheckValve.svelte.d.ts +19 -0
- package/dist/automation/hydraulic-valve-4-3/ObcHydraulicValve43.svelte +39 -0
- package/dist/automation/hydraulic-valve-4-3/ObcHydraulicValve43.svelte.d.ts +28 -0
- package/dist/automation/hydraulic-valve-x-2/ObcHydraulicValveX2.svelte +39 -0
- package/dist/automation/hydraulic-valve-x-2/ObcHydraulicValveX2.svelte.d.ts +28 -0
- package/dist/automation/shuffle-button/ObcShuffleButtonBase.svelte +37 -0
- package/dist/automation/shuffle-button/ObcShuffleButtonBase.svelte.d.ts +21 -0
- package/dist/components/alert-subsystem-counter/ObcAlertSubsystemCounter.svelte +52 -0
- package/dist/components/alert-subsystem-counter/ObcAlertSubsystemCounter.svelte.d.ts +31 -0
- package/dist/index.d.ts +5 -0
- package/dist/index.js +5 -0
- package/package.json +2 -2
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
|
|
2
|
+
<script lang="ts">
|
|
3
|
+
|
|
4
|
+
import '@oicl/openbridge-webcomponents/dist/automation/hydraulic-check-valve/hydraulic-check-valve.js';
|
|
5
|
+
import { setProperties } from "../../util.js";
|
|
6
|
+
|
|
7
|
+
import type { Snippet } from 'svelte';
|
|
8
|
+
|
|
9
|
+
export interface Props {
|
|
10
|
+
class?: string;
|
|
11
|
+
style?: string;
|
|
12
|
+
/** Accessible name for the symbol. */
|
|
13
|
+
ariaLabel?: string;
|
|
14
|
+
/** Rotates the symbol 90° counter-clockwise to match a vertical flow path. */
|
|
15
|
+
vertical?: boolean
|
|
16
|
+
}
|
|
17
|
+
export interface Events {
|
|
18
|
+
|
|
19
|
+
}
|
|
20
|
+
export interface Slots {
|
|
21
|
+
children?: Snippet
|
|
22
|
+
}
|
|
23
|
+
const { class: className, style, children, ...props} = $props<Props & Events & Slots>();
|
|
24
|
+
|
|
25
|
+
</script>
|
|
26
|
+
<obc-hydraulic-check-valve
|
|
27
|
+
use:setProperties={props}
|
|
28
|
+
class={className}
|
|
29
|
+
style={style}
|
|
30
|
+
>
|
|
31
|
+
|
|
32
|
+
{#if children}
|
|
33
|
+
{@render children()}
|
|
34
|
+
{/if}
|
|
35
|
+
</obc-hydraulic-check-valve>
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import '@oicl/openbridge-webcomponents/dist/automation/hydraulic-check-valve/hydraulic-check-valve.js';
|
|
2
|
+
import type { Snippet } from 'svelte';
|
|
3
|
+
export interface Props {
|
|
4
|
+
class?: string;
|
|
5
|
+
style?: string;
|
|
6
|
+
/** Accessible name for the symbol. */
|
|
7
|
+
ariaLabel?: string;
|
|
8
|
+
/** Rotates the symbol 90° counter-clockwise to match a vertical flow path. */
|
|
9
|
+
vertical?: boolean;
|
|
10
|
+
}
|
|
11
|
+
export interface Events {
|
|
12
|
+
}
|
|
13
|
+
export interface Slots {
|
|
14
|
+
children?: Snippet;
|
|
15
|
+
}
|
|
16
|
+
type $$ComponentProps = Props & Events & Slots;
|
|
17
|
+
declare const ObcHydraulicCheckValve: import("svelte").Component<$$ComponentProps, {}, "">;
|
|
18
|
+
type ObcHydraulicCheckValve = ReturnType<typeof ObcHydraulicCheckValve>;
|
|
19
|
+
export default ObcHydraulicCheckValve;
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
|
|
2
|
+
<script lang="ts">
|
|
3
|
+
export type {PositionSelectedDetail, HydraulicValve43Type} from '@oicl/openbridge-webcomponents/dist/automation/hydraulic-valve-4-3/hydraulic-valve-4-3.js';
|
|
4
|
+
import '@oicl/openbridge-webcomponents/dist/automation/hydraulic-valve-4-3/hydraulic-valve-4-3.js';
|
|
5
|
+
import { setProperties, forwardEvents } from "../../util.js";
|
|
6
|
+
import type {PositionSelectedDetail, HydraulicValve43Type} from '@oicl/openbridge-webcomponents/dist/automation/hydraulic-valve-4-3/hydraulic-valve-4-3.js';
|
|
7
|
+
import type { Snippet } from 'svelte';
|
|
8
|
+
|
|
9
|
+
export interface Props {
|
|
10
|
+
class?: string;
|
|
11
|
+
style?: string;
|
|
12
|
+
/** Zero-based index of the currently selected position. Out-of-range values are clamped. */
|
|
13
|
+
selectedPosition?: number;
|
|
14
|
+
/** Lays the control out vertically: positions stack top to bottom and the position symbols rotate 90° counter-clockwise to match a vertical flow path. */
|
|
15
|
+
vertical?: boolean;
|
|
16
|
+
/** Accessible name for the control. */
|
|
17
|
+
ariaLabel?: string;
|
|
18
|
+
/** Center-position symbol variant. */
|
|
19
|
+
type?: HydraulicValve43Type
|
|
20
|
+
}
|
|
21
|
+
export interface Events {
|
|
22
|
+
onPositionSelected?: (event: CustomEvent<PositionSelectedDetail>) => void
|
|
23
|
+
}
|
|
24
|
+
export interface Slots {
|
|
25
|
+
children?: Snippet
|
|
26
|
+
}
|
|
27
|
+
const {onPositionSelected, class: className, style, children, ...props} = $props<Props & Events & Slots>();
|
|
28
|
+
|
|
29
|
+
</script>
|
|
30
|
+
<obc-hydraulic-valve-4-3
|
|
31
|
+
use:setProperties={props}
|
|
32
|
+
class={className}
|
|
33
|
+
style={style}
|
|
34
|
+
use:forwardEvents={{'position-selected': onPositionSelected}} >
|
|
35
|
+
|
|
36
|
+
{#if children}
|
|
37
|
+
{@render children()}
|
|
38
|
+
{/if}
|
|
39
|
+
</obc-hydraulic-valve-4-3>
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import '@oicl/openbridge-webcomponents/dist/automation/hydraulic-valve-4-3/hydraulic-valve-4-3.js';
|
|
2
|
+
import type { PositionSelectedDetail, HydraulicValve43Type } from '@oicl/openbridge-webcomponents/dist/automation/hydraulic-valve-4-3/hydraulic-valve-4-3.js';
|
|
3
|
+
import type { Snippet } from 'svelte';
|
|
4
|
+
export interface Props {
|
|
5
|
+
class?: string;
|
|
6
|
+
style?: string;
|
|
7
|
+
/** Zero-based index of the currently selected position. Out-of-range values are clamped. */
|
|
8
|
+
selectedPosition?: number;
|
|
9
|
+
/** Lays the control out vertically: positions stack top to bottom and the position symbols rotate 90° counter-clockwise to match a vertical flow path. */
|
|
10
|
+
vertical?: boolean;
|
|
11
|
+
/** Accessible name for the control. */
|
|
12
|
+
ariaLabel?: string;
|
|
13
|
+
/** Center-position symbol variant. */
|
|
14
|
+
type?: HydraulicValve43Type;
|
|
15
|
+
}
|
|
16
|
+
export interface Events {
|
|
17
|
+
onPositionSelected?: (event: CustomEvent<PositionSelectedDetail>) => void;
|
|
18
|
+
}
|
|
19
|
+
export interface Slots {
|
|
20
|
+
children?: Snippet;
|
|
21
|
+
}
|
|
22
|
+
type $$ComponentProps = Props & Events & Slots;
|
|
23
|
+
declare const ObcHydraulicValve43: import("svelte").Component<$$ComponentProps, {
|
|
24
|
+
PositionSelectedDetail: typeof PositionSelectedDetail;
|
|
25
|
+
HydraulicValve43Type: typeof HydraulicValve43Type;
|
|
26
|
+
}, "">;
|
|
27
|
+
type ObcHydraulicValve43 = ReturnType<typeof ObcHydraulicValve43>;
|
|
28
|
+
export default ObcHydraulicValve43;
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
|
|
2
|
+
<script lang="ts">
|
|
3
|
+
export type {PositionSelectedDetail, HydraulicValveX2Type} from '@oicl/openbridge-webcomponents/dist/automation/hydraulic-valve-x-2/hydraulic-valve-x-2.js';
|
|
4
|
+
import '@oicl/openbridge-webcomponents/dist/automation/hydraulic-valve-x-2/hydraulic-valve-x-2.js';
|
|
5
|
+
import { setProperties, forwardEvents } from "../../util.js";
|
|
6
|
+
import type {PositionSelectedDetail, HydraulicValveX2Type} from '@oicl/openbridge-webcomponents/dist/automation/hydraulic-valve-x-2/hydraulic-valve-x-2.js';
|
|
7
|
+
import type { Snippet } from 'svelte';
|
|
8
|
+
|
|
9
|
+
export interface Props {
|
|
10
|
+
class?: string;
|
|
11
|
+
style?: string;
|
|
12
|
+
/** Zero-based index of the currently selected position. Out-of-range values are clamped. */
|
|
13
|
+
selectedPosition?: number;
|
|
14
|
+
/** Lays the control out vertically: positions stack top to bottom and the position symbols rotate 90° counter-clockwise to match a vertical flow path. */
|
|
15
|
+
vertical?: boolean;
|
|
16
|
+
/** Accessible name for the control. */
|
|
17
|
+
ariaLabel?: string;
|
|
18
|
+
/** Port/position configuration. */
|
|
19
|
+
type?: HydraulicValveX2Type
|
|
20
|
+
}
|
|
21
|
+
export interface Events {
|
|
22
|
+
onPositionSelected?: (event: CustomEvent<PositionSelectedDetail>) => void
|
|
23
|
+
}
|
|
24
|
+
export interface Slots {
|
|
25
|
+
children?: Snippet
|
|
26
|
+
}
|
|
27
|
+
const {onPositionSelected, class: className, style, children, ...props} = $props<Props & Events & Slots>();
|
|
28
|
+
|
|
29
|
+
</script>
|
|
30
|
+
<obc-hydraulic-valve-x-2
|
|
31
|
+
use:setProperties={props}
|
|
32
|
+
class={className}
|
|
33
|
+
style={style}
|
|
34
|
+
use:forwardEvents={{'position-selected': onPositionSelected}} >
|
|
35
|
+
|
|
36
|
+
{#if children}
|
|
37
|
+
{@render children()}
|
|
38
|
+
{/if}
|
|
39
|
+
</obc-hydraulic-valve-x-2>
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import '@oicl/openbridge-webcomponents/dist/automation/hydraulic-valve-x-2/hydraulic-valve-x-2.js';
|
|
2
|
+
import type { PositionSelectedDetail, HydraulicValveX2Type } from '@oicl/openbridge-webcomponents/dist/automation/hydraulic-valve-x-2/hydraulic-valve-x-2.js';
|
|
3
|
+
import type { Snippet } from 'svelte';
|
|
4
|
+
export interface Props {
|
|
5
|
+
class?: string;
|
|
6
|
+
style?: string;
|
|
7
|
+
/** Zero-based index of the currently selected position. Out-of-range values are clamped. */
|
|
8
|
+
selectedPosition?: number;
|
|
9
|
+
/** Lays the control out vertically: positions stack top to bottom and the position symbols rotate 90° counter-clockwise to match a vertical flow path. */
|
|
10
|
+
vertical?: boolean;
|
|
11
|
+
/** Accessible name for the control. */
|
|
12
|
+
ariaLabel?: string;
|
|
13
|
+
/** Port/position configuration. */
|
|
14
|
+
type?: HydraulicValveX2Type;
|
|
15
|
+
}
|
|
16
|
+
export interface Events {
|
|
17
|
+
onPositionSelected?: (event: CustomEvent<PositionSelectedDetail>) => void;
|
|
18
|
+
}
|
|
19
|
+
export interface Slots {
|
|
20
|
+
children?: Snippet;
|
|
21
|
+
}
|
|
22
|
+
type $$ComponentProps = Props & Events & Slots;
|
|
23
|
+
declare const ObcHydraulicValveX2: import("svelte").Component<$$ComponentProps, {
|
|
24
|
+
PositionSelectedDetail: typeof PositionSelectedDetail;
|
|
25
|
+
HydraulicValveX2Type: typeof HydraulicValveX2Type;
|
|
26
|
+
}, "">;
|
|
27
|
+
type ObcHydraulicValveX2 = ReturnType<typeof ObcHydraulicValveX2>;
|
|
28
|
+
export default ObcHydraulicValveX2;
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
|
|
2
|
+
<script lang="ts">
|
|
3
|
+
|
|
4
|
+
import '@oicl/openbridge-webcomponents/dist/automation/shuffle-button/shuffle-button-base.js';
|
|
5
|
+
import { setProperties } from "../../util.js";
|
|
6
|
+
|
|
7
|
+
import type { Snippet } from 'svelte';
|
|
8
|
+
|
|
9
|
+
export interface Props {
|
|
10
|
+
class?: string;
|
|
11
|
+
style?: string;
|
|
12
|
+
/** Zero-based index of the currently selected position. Out-of-range values are clamped. */
|
|
13
|
+
selectedPosition?: number;
|
|
14
|
+
/** Lays the control out vertically: positions stack top to bottom and the position symbols rotate 90° counter-clockwise to match a vertical flow path. */
|
|
15
|
+
vertical?: boolean;
|
|
16
|
+
/** Accessible name for the radio group (the control is icon-only). Concrete components override the default with a device-specific name. */
|
|
17
|
+
ariaLabel?: string
|
|
18
|
+
}
|
|
19
|
+
export interface Events {
|
|
20
|
+
|
|
21
|
+
}
|
|
22
|
+
export interface Slots {
|
|
23
|
+
children?: Snippet
|
|
24
|
+
}
|
|
25
|
+
const { class: className, style, children, ...props} = $props<Props & Events & Slots>();
|
|
26
|
+
|
|
27
|
+
</script>
|
|
28
|
+
<undefined
|
|
29
|
+
use:setProperties={props}
|
|
30
|
+
class={className}
|
|
31
|
+
style={style}
|
|
32
|
+
>
|
|
33
|
+
|
|
34
|
+
{#if children}
|
|
35
|
+
{@render children()}
|
|
36
|
+
{/if}
|
|
37
|
+
</undefined>
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import '@oicl/openbridge-webcomponents/dist/automation/shuffle-button/shuffle-button-base.js';
|
|
2
|
+
import type { Snippet } from 'svelte';
|
|
3
|
+
export interface Props {
|
|
4
|
+
class?: string;
|
|
5
|
+
style?: string;
|
|
6
|
+
/** Zero-based index of the currently selected position. Out-of-range values are clamped. */
|
|
7
|
+
selectedPosition?: number;
|
|
8
|
+
/** Lays the control out vertically: positions stack top to bottom and the position symbols rotate 90° counter-clockwise to match a vertical flow path. */
|
|
9
|
+
vertical?: boolean;
|
|
10
|
+
/** Accessible name for the radio group (the control is icon-only). Concrete components override the default with a device-specific name. */
|
|
11
|
+
ariaLabel?: string;
|
|
12
|
+
}
|
|
13
|
+
export interface Events {
|
|
14
|
+
}
|
|
15
|
+
export interface Slots {
|
|
16
|
+
children?: Snippet;
|
|
17
|
+
}
|
|
18
|
+
type $$ComponentProps = Props & Events & Slots;
|
|
19
|
+
declare const ObcShuffleButtonBase: import("svelte").Component<$$ComponentProps, {}, "">;
|
|
20
|
+
type ObcShuffleButtonBase = ReturnType<typeof ObcShuffleButtonBase>;
|
|
21
|
+
export default ObcShuffleButtonBase;
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
|
|
2
|
+
<script lang="ts">
|
|
3
|
+
export type {ObcAlertSubsystemCounterOrientation} from '@oicl/openbridge-webcomponents/dist/components/alert-subsystem-counter/alert-subsystem-counter.js';
|
|
4
|
+
import '@oicl/openbridge-webcomponents/dist/components/alert-subsystem-counter/alert-subsystem-counter.js';
|
|
5
|
+
import { setProperties } from "../../util.js";
|
|
6
|
+
import type {ObcAlertSubsystemCounterOrientation} from '@oicl/openbridge-webcomponents/dist/components/alert-subsystem-counter/alert-subsystem-counter.js';
|
|
7
|
+
import type { Snippet } from 'svelte';
|
|
8
|
+
|
|
9
|
+
export interface Props {
|
|
10
|
+
class?: string;
|
|
11
|
+
style?: string;
|
|
12
|
+
/** The subsystem label. Pass a full title or an abbreviation as plain text. */
|
|
13
|
+
label?: string;
|
|
14
|
+
/** Layout direction: `horizontal` (default) keeps icon, label and badges in one row; `vertical` moves the badges (or empty text) to a line below the label. */
|
|
15
|
+
orientation?: ObcAlertSubsystemCounterOrientation;
|
|
16
|
+
/** Whether the subsystem has active alerts. `true` shows the label bold and renders the `badges` slot; `false` mutes the label and shows `emptyText` instead of the badges. */
|
|
17
|
+
hasAlert?: boolean;
|
|
18
|
+
/**
|
|
19
|
+
* Text shown in the trailing area when `hasAlert` is `false`.
|
|
20
|
+
*
|
|
21
|
+
* Available when `hasAlert==false`.
|
|
22
|
+
*/
|
|
23
|
+
emptyText?: string
|
|
24
|
+
}
|
|
25
|
+
export interface Events {
|
|
26
|
+
|
|
27
|
+
}
|
|
28
|
+
export interface Slots {
|
|
29
|
+
icon?: Snippet;
|
|
30
|
+
badges?: Snippet
|
|
31
|
+
}
|
|
32
|
+
const { class: className, style, icon, badges, ...props} = $props<Props & Events & Slots>();
|
|
33
|
+
|
|
34
|
+
</script>
|
|
35
|
+
<obc-alert-subsystem-counter
|
|
36
|
+
use:setProperties={props}
|
|
37
|
+
class={className}
|
|
38
|
+
style={style}
|
|
39
|
+
>
|
|
40
|
+
|
|
41
|
+
{#if icon}
|
|
42
|
+
<div slot="icon">
|
|
43
|
+
{@render icon()}
|
|
44
|
+
</div>
|
|
45
|
+
{/if}
|
|
46
|
+
|
|
47
|
+
{#if badges}
|
|
48
|
+
<div slot="badges">
|
|
49
|
+
{@render badges()}
|
|
50
|
+
</div>
|
|
51
|
+
{/if}
|
|
52
|
+
</obc-alert-subsystem-counter>
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import '@oicl/openbridge-webcomponents/dist/components/alert-subsystem-counter/alert-subsystem-counter.js';
|
|
2
|
+
import type { ObcAlertSubsystemCounterOrientation } from '@oicl/openbridge-webcomponents/dist/components/alert-subsystem-counter/alert-subsystem-counter.js';
|
|
3
|
+
import type { Snippet } from 'svelte';
|
|
4
|
+
export interface Props {
|
|
5
|
+
class?: string;
|
|
6
|
+
style?: string;
|
|
7
|
+
/** The subsystem label. Pass a full title or an abbreviation as plain text. */
|
|
8
|
+
label?: string;
|
|
9
|
+
/** Layout direction: `horizontal` (default) keeps icon, label and badges in one row; `vertical` moves the badges (or empty text) to a line below the label. */
|
|
10
|
+
orientation?: ObcAlertSubsystemCounterOrientation;
|
|
11
|
+
/** Whether the subsystem has active alerts. `true` shows the label bold and renders the `badges` slot; `false` mutes the label and shows `emptyText` instead of the badges. */
|
|
12
|
+
hasAlert?: boolean;
|
|
13
|
+
/**
|
|
14
|
+
* Text shown in the trailing area when `hasAlert` is `false`.
|
|
15
|
+
*
|
|
16
|
+
* Available when `hasAlert==false`.
|
|
17
|
+
*/
|
|
18
|
+
emptyText?: string;
|
|
19
|
+
}
|
|
20
|
+
export interface Events {
|
|
21
|
+
}
|
|
22
|
+
export interface Slots {
|
|
23
|
+
icon?: Snippet;
|
|
24
|
+
badges?: Snippet;
|
|
25
|
+
}
|
|
26
|
+
type $$ComponentProps = Props & Events & Slots;
|
|
27
|
+
declare const ObcAlertSubsystemCounter: import("svelte").Component<$$ComponentProps, {
|
|
28
|
+
ObcAlertSubsystemCounterOrientation: typeof ObcAlertSubsystemCounterOrientation;
|
|
29
|
+
}, "">;
|
|
30
|
+
type ObcAlertSubsystemCounter = ReturnType<typeof ObcAlertSubsystemCounter>;
|
|
31
|
+
export default ObcAlertSubsystemCounter;
|
package/dist/index.d.ts
CHANGED
|
@@ -53,7 +53,10 @@ export { default as ObcGround } from './automation/ground/ObcGround.svelte';
|
|
|
53
53
|
export { default as ObcHeatExchanger } from './automation/heat-exchanger/ObcHeatExchanger.svelte';
|
|
54
54
|
export { default as ObcHeatPump } from './automation/heat-pump/ObcHeatPump.svelte';
|
|
55
55
|
export { default as ObcHorizontalLine } from './automation/horizontal-line/ObcHorizontalLine.svelte';
|
|
56
|
+
export { default as ObcHydraulicCheckValve } from './automation/hydraulic-check-valve/ObcHydraulicCheckValve.svelte';
|
|
56
57
|
export { default as ObcHydraulicSeparator } from './automation/hydraulic-separator/ObcHydraulicSeparator.svelte';
|
|
58
|
+
export { default as ObcHydraulicValve43 } from './automation/hydraulic-valve-4-3/ObcHydraulicValve43.svelte';
|
|
59
|
+
export { default as ObcHydraulicValveX2 } from './automation/hydraulic-valve-x-2/ObcHydraulicValveX2.svelte';
|
|
57
60
|
export { default as ObcIndicatorBattery } from './automation/indicator-battery/ObcIndicatorBattery.svelte';
|
|
58
61
|
export { default as ObcIndicatorEngine } from './automation/indicator-engine/ObcIndicatorEngine.svelte';
|
|
59
62
|
export { default as ObcIndicatorGenerator } from './automation/indicator-generator/ObcIndicatorGenerator.svelte';
|
|
@@ -66,6 +69,7 @@ export { default as ObcMotor } from './automation/motor/ObcMotor.svelte';
|
|
|
66
69
|
export { default as ObcPump } from './automation/pump/ObcPump.svelte';
|
|
67
70
|
export { default as ObcResistor } from './automation/resistor/ObcResistor.svelte';
|
|
68
71
|
export { default as ObcRouter } from './automation/router/ObcRouter.svelte';
|
|
72
|
+
export { default as ObcShuffleButtonBase } from './automation/shuffle-button/ObcShuffleButtonBase.svelte';
|
|
69
73
|
export { default as ObcSource } from './automation/source/ObcSource.svelte';
|
|
70
74
|
export { default as ObcAbstractSpecialtyTank } from './automation/specialty-tank/ObcAbstractSpecialtyTank.svelte';
|
|
71
75
|
export { default as ObcSwitch } from './automation/switch/ObcSwitch.svelte';
|
|
@@ -105,6 +109,7 @@ export { default as ObcAlertIcon } from './components/alert-icon/ObcAlertIcon.sv
|
|
|
105
109
|
export { default as ObcAlertListDetails } from './components/alert-list-details/ObcAlertListDetails.svelte';
|
|
106
110
|
export { default as ObcAlertMenu } from './components/alert-menu/ObcAlertMenu.svelte';
|
|
107
111
|
export { default as ObcAlertMenuItem } from './components/alert-menu-item/ObcAlertMenuItem.svelte';
|
|
112
|
+
export { default as ObcAlertSubsystemCounter } from './components/alert-subsystem-counter/ObcAlertSubsystemCounter.svelte';
|
|
108
113
|
export { default as ObcAppButton } from './components/app-button/ObcAppButton.svelte';
|
|
109
114
|
export { default as ObcAppMenu } from './components/app-menu/ObcAppMenu.svelte';
|
|
110
115
|
export { default as ObcAttachmentListItem } from './components/attachment-list-item/ObcAttachmentListItem.svelte';
|
package/dist/index.js
CHANGED
|
@@ -53,7 +53,10 @@ export { default as ObcGround } from './automation/ground/ObcGround.svelte';
|
|
|
53
53
|
export { default as ObcHeatExchanger } from './automation/heat-exchanger/ObcHeatExchanger.svelte';
|
|
54
54
|
export { default as ObcHeatPump } from './automation/heat-pump/ObcHeatPump.svelte';
|
|
55
55
|
export { default as ObcHorizontalLine } from './automation/horizontal-line/ObcHorizontalLine.svelte';
|
|
56
|
+
export { default as ObcHydraulicCheckValve } from './automation/hydraulic-check-valve/ObcHydraulicCheckValve.svelte';
|
|
56
57
|
export { default as ObcHydraulicSeparator } from './automation/hydraulic-separator/ObcHydraulicSeparator.svelte';
|
|
58
|
+
export { default as ObcHydraulicValve43 } from './automation/hydraulic-valve-4-3/ObcHydraulicValve43.svelte';
|
|
59
|
+
export { default as ObcHydraulicValveX2 } from './automation/hydraulic-valve-x-2/ObcHydraulicValveX2.svelte';
|
|
57
60
|
export { default as ObcIndicatorBattery } from './automation/indicator-battery/ObcIndicatorBattery.svelte';
|
|
58
61
|
export { default as ObcIndicatorEngine } from './automation/indicator-engine/ObcIndicatorEngine.svelte';
|
|
59
62
|
export { default as ObcIndicatorGenerator } from './automation/indicator-generator/ObcIndicatorGenerator.svelte';
|
|
@@ -66,6 +69,7 @@ export { default as ObcMotor } from './automation/motor/ObcMotor.svelte';
|
|
|
66
69
|
export { default as ObcPump } from './automation/pump/ObcPump.svelte';
|
|
67
70
|
export { default as ObcResistor } from './automation/resistor/ObcResistor.svelte';
|
|
68
71
|
export { default as ObcRouter } from './automation/router/ObcRouter.svelte';
|
|
72
|
+
export { default as ObcShuffleButtonBase } from './automation/shuffle-button/ObcShuffleButtonBase.svelte';
|
|
69
73
|
export { default as ObcSource } from './automation/source/ObcSource.svelte';
|
|
70
74
|
export { default as ObcAbstractSpecialtyTank } from './automation/specialty-tank/ObcAbstractSpecialtyTank.svelte';
|
|
71
75
|
export { default as ObcSwitch } from './automation/switch/ObcSwitch.svelte';
|
|
@@ -105,6 +109,7 @@ export { default as ObcAlertIcon } from './components/alert-icon/ObcAlertIcon.sv
|
|
|
105
109
|
export { default as ObcAlertListDetails } from './components/alert-list-details/ObcAlertListDetails.svelte';
|
|
106
110
|
export { default as ObcAlertMenu } from './components/alert-menu/ObcAlertMenu.svelte';
|
|
107
111
|
export { default as ObcAlertMenuItem } from './components/alert-menu-item/ObcAlertMenuItem.svelte';
|
|
112
|
+
export { default as ObcAlertSubsystemCounter } from './components/alert-subsystem-counter/ObcAlertSubsystemCounter.svelte';
|
|
108
113
|
export { default as ObcAppButton } from './components/app-button/ObcAppButton.svelte';
|
|
109
114
|
export { default as ObcAppMenu } from './components/app-menu/ObcAppMenu.svelte';
|
|
110
115
|
export { default as ObcAttachmentListItem } from './components/attachment-list-item/ObcAttachmentListItem.svelte';
|
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.138",
|
|
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.138"
|
|
35
35
|
},
|
|
36
36
|
"peerDependencies": {
|
|
37
37
|
"svelte": "^5.0.0"
|