@oicl/openbridge-webcomponents-svelte 2.0.0-next.3 → 2.0.0-next.5
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/ar/{building-blocks/poi → poi}/ObcPoi.svelte +6 -6
- package/dist/ar/{building-blocks/poi → poi}/ObcPoi.svelte.d.ts +3 -3
- package/dist/ar/{poi-aton → poi}/ObcPoiAton.svelte +6 -4
- package/dist/ar/{poi-aton → poi}/ObcPoiAton.svelte.d.ts +5 -4
- package/dist/ar/{poi-data → poi}/ObcPoiData.svelte +5 -5
- package/dist/ar/{poi-data → poi}/ObcPoiData.svelte.d.ts +6 -6
- package/dist/ar/{poi-vessel → poi}/ObcPoiVessel.svelte +3 -3
- package/dist/ar/{poi-vessel → poi}/ObcPoiVessel.svelte.d.ts +2 -2
- package/dist/ar/{building-blocks/poi/ObcPoiBase.svelte → poi/PoiBase.svelte} +9 -10
- package/dist/ar/{building-blocks/poi/ObcPoiBase.svelte.d.ts → poi/PoiBase.svelte.d.ts} +8 -9
- package/dist/ar/{building-blocks/poi-button → poi-button}/ObcPoiButton.svelte +4 -4
- package/dist/ar/{building-blocks/poi-button → poi-button}/ObcPoiButton.svelte.d.ts +2 -2
- package/dist/ar/{poi-button-aton → poi-button}/ObcPoiButtonAton.svelte +6 -4
- package/dist/ar/{poi-button-aton → poi-button}/ObcPoiButtonAton.svelte.d.ts +5 -4
- package/dist/ar/{poi-button-data → poi-button}/ObcPoiButtonData.svelte +5 -5
- package/dist/ar/{poi-button-data → poi-button}/ObcPoiButtonData.svelte.d.ts +6 -6
- package/dist/ar/{poi-button-vessel → poi-button}/ObcPoiButtonVessel.svelte +3 -3
- package/dist/ar/{poi-button-vessel → poi-button}/ObcPoiButtonVessel.svelte.d.ts +2 -2
- package/dist/ar/poi-controller/ObcPoiController.svelte +14 -5
- package/dist/ar/poi-controller/ObcPoiController.svelte.d.ts +2 -1
- package/dist/ar/{building-blocks/poi-object/ObcAbstractPoiObject.svelte → poi-object/AbstractPoiObject.svelte} +5 -5
- package/dist/ar/poi-object/AbstractPoiObject.svelte.d.ts +22 -0
- package/dist/ar/{building-blocks/poi-object → poi-object}/ObcPoiObject.svelte +4 -4
- package/dist/ar/{building-blocks/poi-object → poi-object}/ObcPoiObject.svelte.d.ts +2 -2
- package/dist/ar/{poi-object-aton → poi-object}/ObcPoiObjectAton.svelte +3 -3
- package/dist/ar/{poi-object-aton → poi-object}/ObcPoiObjectAton.svelte.d.ts +2 -2
- package/dist/ar/{poi-object-data → poi-object}/ObcPoiObjectData.svelte +3 -3
- package/dist/ar/{poi-object-data → poi-object}/ObcPoiObjectData.svelte.d.ts +2 -2
- package/dist/ar/{poi-object-vessel → poi-object}/ObcPoiObjectVessel.svelte +3 -3
- package/dist/ar/{poi-object-vessel → poi-object}/ObcPoiObjectVessel.svelte.d.ts +2 -2
- package/dist/index.d.ts +14 -14
- package/dist/index.js +14 -14
- package/package.json +2 -2
- package/dist/ar/building-blocks/poi-object/ObcAbstractPoiObject.svelte.d.ts +0 -21
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
|
|
2
2
|
<script lang="ts">
|
|
3
|
-
export type {ObcPoiType, ObcPoiValue, ObcPoiState} from '@oicl/openbridge-webcomponents/dist/ar/
|
|
4
|
-
export type {ObcPoiButtonType, ObcPoiButtonDataItem} from '@oicl/openbridge-webcomponents/dist/ar/
|
|
3
|
+
export type {ObcPoiType, ObcPoiValue, ObcPoiState} from '@oicl/openbridge-webcomponents/dist/ar/poi/poi.js';
|
|
4
|
+
export type {ObcPoiButtonType, ObcPoiButtonDataItem} from '@oicl/openbridge-webcomponents/dist/ar/poi-button/poi-button.js';
|
|
5
5
|
export type {ObcPoiPointerType, ObcPoiPointerState} from '@oicl/openbridge-webcomponents/dist/ar/building-blocks/poi-pointer/poi-pointer.js';
|
|
6
|
-
import '@oicl/openbridge-webcomponents/dist/ar/
|
|
7
|
-
import { setProperties } from "
|
|
8
|
-
import type {ObcPoiType, ObcPoiValue, ObcPoiState} from '@oicl/openbridge-webcomponents/dist/ar/
|
|
9
|
-
import type {ObcPoiButtonType, ObcPoiButtonDataItem} from '@oicl/openbridge-webcomponents/dist/ar/
|
|
6
|
+
import '@oicl/openbridge-webcomponents/dist/ar/poi/poi.js';
|
|
7
|
+
import { setProperties } from "../../util.js";
|
|
8
|
+
import type {ObcPoiType, ObcPoiValue, ObcPoiState} from '@oicl/openbridge-webcomponents/dist/ar/poi/poi.js';
|
|
9
|
+
import type {ObcPoiButtonType, ObcPoiButtonDataItem} from '@oicl/openbridge-webcomponents/dist/ar/poi-button/poi-button.js';
|
|
10
10
|
import type {ObcPoiPointerType, ObcPoiPointerState} from '@oicl/openbridge-webcomponents/dist/ar/building-blocks/poi-pointer/poi-pointer.js';
|
|
11
11
|
import type { Snippet } from 'svelte';
|
|
12
12
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import '@oicl/openbridge-webcomponents/dist/ar/
|
|
2
|
-
import type { ObcPoiType, ObcPoiValue, ObcPoiState } from '@oicl/openbridge-webcomponents/dist/ar/
|
|
3
|
-
import type { ObcPoiButtonType, ObcPoiButtonDataItem } from '@oicl/openbridge-webcomponents/dist/ar/
|
|
1
|
+
import '@oicl/openbridge-webcomponents/dist/ar/poi/poi.js';
|
|
2
|
+
import type { ObcPoiType, ObcPoiValue, ObcPoiState } from '@oicl/openbridge-webcomponents/dist/ar/poi/poi.js';
|
|
3
|
+
import type { ObcPoiButtonType, ObcPoiButtonDataItem } from '@oicl/openbridge-webcomponents/dist/ar/poi-button/poi-button.js';
|
|
4
4
|
import type { ObcPoiPointerType, ObcPoiPointerState } from '@oicl/openbridge-webcomponents/dist/ar/building-blocks/poi-pointer/poi-pointer.js';
|
|
5
5
|
import type { Snippet } from 'svelte';
|
|
6
6
|
export interface Props {
|
|
@@ -1,9 +1,11 @@
|
|
|
1
1
|
|
|
2
2
|
<script lang="ts">
|
|
3
|
-
export type {ObcPoiObjectAtonType, ObcPoiObjectAtonStyle
|
|
4
|
-
|
|
3
|
+
export type {ObcPoiObjectAtonType, ObcPoiObjectAtonStyle} from '@oicl/openbridge-webcomponents/dist/ar/poi-object/poi-object-aton.js';
|
|
4
|
+
export type {ObcPoiObjectState} from '@oicl/openbridge-webcomponents/dist/ar/poi-object/poi-object.js';
|
|
5
|
+
import '@oicl/openbridge-webcomponents/dist/ar/poi/poi-aton.js';
|
|
5
6
|
import { setProperties } from "../../util.js";
|
|
6
|
-
import type {ObcPoiObjectAtonType, ObcPoiObjectAtonStyle
|
|
7
|
+
import type {ObcPoiObjectAtonType, ObcPoiObjectAtonStyle} from '@oicl/openbridge-webcomponents/dist/ar/poi-object/poi-object-aton.js';
|
|
8
|
+
import type {ObcPoiObjectState} from '@oicl/openbridge-webcomponents/dist/ar/poi-object/poi-object.js';
|
|
7
9
|
import type { Snippet } from 'svelte';
|
|
8
10
|
|
|
9
11
|
export interface Props {
|
|
@@ -11,7 +13,7 @@
|
|
|
11
13
|
style?: string;
|
|
12
14
|
atonType?: ObcPoiObjectAtonType;
|
|
13
15
|
atonStyle?: ObcPoiObjectAtonStyle;
|
|
14
|
-
atonState?:
|
|
16
|
+
atonState?: ObcPoiObjectState | null;
|
|
15
17
|
atonInteractive?: boolean
|
|
16
18
|
}
|
|
17
19
|
export interface Events {
|
|
@@ -1,12 +1,13 @@
|
|
|
1
|
-
import '@oicl/openbridge-webcomponents/dist/ar/poi
|
|
2
|
-
import type { ObcPoiObjectAtonType, ObcPoiObjectAtonStyle
|
|
1
|
+
import '@oicl/openbridge-webcomponents/dist/ar/poi/poi-aton.js';
|
|
2
|
+
import type { ObcPoiObjectAtonType, ObcPoiObjectAtonStyle } from '@oicl/openbridge-webcomponents/dist/ar/poi-object/poi-object-aton.js';
|
|
3
|
+
import type { ObcPoiObjectState } from '@oicl/openbridge-webcomponents/dist/ar/poi-object/poi-object.js';
|
|
3
4
|
import type { Snippet } from 'svelte';
|
|
4
5
|
export interface Props {
|
|
5
6
|
class?: string;
|
|
6
7
|
style?: string;
|
|
7
8
|
atonType?: ObcPoiObjectAtonType;
|
|
8
9
|
atonStyle?: ObcPoiObjectAtonStyle;
|
|
9
|
-
atonState?:
|
|
10
|
+
atonState?: ObcPoiObjectState | null;
|
|
10
11
|
atonInteractive?: boolean;
|
|
11
12
|
}
|
|
12
13
|
export interface Events {
|
|
@@ -20,7 +21,7 @@ type $$ComponentProps = Props & Events & Slots;
|
|
|
20
21
|
declare const ObcPoiAton: import("svelte").Component<$$ComponentProps, {
|
|
21
22
|
ObcPoiObjectAtonType: typeof ObcPoiObjectAtonType;
|
|
22
23
|
ObcPoiObjectAtonStyle: typeof ObcPoiObjectAtonStyle;
|
|
23
|
-
|
|
24
|
+
ObcPoiObjectState: typeof ObcPoiObjectState;
|
|
24
25
|
}, "">;
|
|
25
26
|
type ObcPoiAton = ReturnType<typeof ObcPoiAton>;
|
|
26
27
|
export default ObcPoiAton;
|
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
|
|
2
2
|
<script lang="ts">
|
|
3
|
-
export type {
|
|
4
|
-
import '@oicl/openbridge-webcomponents/dist/ar/poi
|
|
3
|
+
export type {ObcPoiObjectStyle, ObcPoiObjectState} from '@oicl/openbridge-webcomponents/dist/ar/poi-object/poi-object.js';
|
|
4
|
+
import '@oicl/openbridge-webcomponents/dist/ar/poi/poi-data.js';
|
|
5
5
|
import { setProperties } from "../../util.js";
|
|
6
|
-
import type {
|
|
6
|
+
import type {ObcPoiObjectStyle, ObcPoiObjectState} from '@oicl/openbridge-webcomponents/dist/ar/poi-object/poi-object.js';
|
|
7
7
|
import type { Snippet } from 'svelte';
|
|
8
8
|
|
|
9
9
|
export interface Props {
|
|
10
10
|
class?: string;
|
|
11
11
|
style?: string;
|
|
12
|
-
dataStyle?:
|
|
13
|
-
dataState?:
|
|
12
|
+
dataStyle?: ObcPoiObjectStyle;
|
|
13
|
+
dataState?: ObcPoiObjectState | null;
|
|
14
14
|
dataInteractive?: boolean
|
|
15
15
|
}
|
|
16
16
|
export interface Events {
|
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
import '@oicl/openbridge-webcomponents/dist/ar/poi
|
|
2
|
-
import type {
|
|
1
|
+
import '@oicl/openbridge-webcomponents/dist/ar/poi/poi-data.js';
|
|
2
|
+
import type { ObcPoiObjectStyle, ObcPoiObjectState } from '@oicl/openbridge-webcomponents/dist/ar/poi-object/poi-object.js';
|
|
3
3
|
import type { Snippet } from 'svelte';
|
|
4
4
|
export interface Props {
|
|
5
5
|
class?: string;
|
|
6
6
|
style?: string;
|
|
7
|
-
dataStyle?:
|
|
8
|
-
dataState?:
|
|
7
|
+
dataStyle?: ObcPoiObjectStyle;
|
|
8
|
+
dataState?: ObcPoiObjectState | null;
|
|
9
9
|
dataInteractive?: boolean;
|
|
10
10
|
}
|
|
11
11
|
export interface Events {
|
|
@@ -17,8 +17,8 @@ export interface Slots {
|
|
|
17
17
|
}
|
|
18
18
|
type $$ComponentProps = Props & Events & Slots;
|
|
19
19
|
declare const ObcPoiData: import("svelte").Component<$$ComponentProps, {
|
|
20
|
-
|
|
21
|
-
|
|
20
|
+
ObcPoiObjectStyle: typeof ObcPoiObjectStyle;
|
|
21
|
+
ObcPoiObjectState: typeof ObcPoiObjectState;
|
|
22
22
|
}, "">;
|
|
23
23
|
type ObcPoiData = ReturnType<typeof ObcPoiData>;
|
|
24
24
|
export default ObcPoiData;
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
|
|
2
2
|
<script lang="ts">
|
|
3
|
-
export type {ObcPoiObjectVesselType, ObcPoiObjectVesselStyle, ObcPoiObjectVesselState} from '@oicl/openbridge-webcomponents/dist/ar/poi-object
|
|
4
|
-
import '@oicl/openbridge-webcomponents/dist/ar/poi
|
|
3
|
+
export type {ObcPoiObjectVesselType, ObcPoiObjectVesselStyle, ObcPoiObjectVesselState} from '@oicl/openbridge-webcomponents/dist/ar/poi-object/poi-object-vessel.js';
|
|
4
|
+
import '@oicl/openbridge-webcomponents/dist/ar/poi/poi-vessel.js';
|
|
5
5
|
import { setProperties } from "../../util.js";
|
|
6
|
-
import type {ObcPoiObjectVesselType, ObcPoiObjectVesselStyle, ObcPoiObjectVesselState} from '@oicl/openbridge-webcomponents/dist/ar/poi-object
|
|
6
|
+
import type {ObcPoiObjectVesselType, ObcPoiObjectVesselStyle, ObcPoiObjectVesselState} from '@oicl/openbridge-webcomponents/dist/ar/poi-object/poi-object-vessel.js';
|
|
7
7
|
import type { Snippet } from 'svelte';
|
|
8
8
|
|
|
9
9
|
export interface Props {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import '@oicl/openbridge-webcomponents/dist/ar/poi
|
|
2
|
-
import type { ObcPoiObjectVesselType, ObcPoiObjectVesselStyle, ObcPoiObjectVesselState } from '@oicl/openbridge-webcomponents/dist/ar/poi-object
|
|
1
|
+
import '@oicl/openbridge-webcomponents/dist/ar/poi/poi-vessel.js';
|
|
2
|
+
import type { ObcPoiObjectVesselType, ObcPoiObjectVesselStyle, ObcPoiObjectVesselState } from '@oicl/openbridge-webcomponents/dist/ar/poi-object/poi-object-vessel.js';
|
|
3
3
|
import type { Snippet } from 'svelte';
|
|
4
4
|
export interface Props {
|
|
5
5
|
class?: string;
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
|
|
2
2
|
<script lang="ts">
|
|
3
|
-
export type {ObcPoiType, ObcPoiValue, ObcPoiState} from '@oicl/openbridge-webcomponents/dist/ar/
|
|
4
|
-
export type {ObcPoiButtonType, ObcPoiButtonDataItem} from '@oicl/openbridge-webcomponents/dist/ar/
|
|
3
|
+
export type {ObcPoiType, ObcPoiValue, ObcPoiState} from '@oicl/openbridge-webcomponents/dist/ar/poi/poi.js';
|
|
4
|
+
export type {ObcPoiButtonType, ObcPoiButtonDataItem} from '@oicl/openbridge-webcomponents/dist/ar/poi-button/poi-button.js';
|
|
5
5
|
export type {ObcPoiPointerType, ObcPoiPointerState} from '@oicl/openbridge-webcomponents/dist/ar/building-blocks/poi-pointer/poi-pointer.js';
|
|
6
|
-
import '@oicl/openbridge-webcomponents/dist/ar/
|
|
7
|
-
import { setProperties } from "
|
|
8
|
-
import type {ObcPoiType, ObcPoiValue, ObcPoiState} from '@oicl/openbridge-webcomponents/dist/ar/
|
|
9
|
-
import type {ObcPoiButtonType, ObcPoiButtonDataItem} from '@oicl/openbridge-webcomponents/dist/ar/
|
|
6
|
+
import '@oicl/openbridge-webcomponents/dist/ar/poi/poi-base.js';
|
|
7
|
+
import { setProperties } from "../../util.js";
|
|
8
|
+
import type {ObcPoiType, ObcPoiValue, ObcPoiState} from '@oicl/openbridge-webcomponents/dist/ar/poi/poi.js';
|
|
9
|
+
import type {ObcPoiButtonType, ObcPoiButtonDataItem} from '@oicl/openbridge-webcomponents/dist/ar/poi-button/poi-button.js';
|
|
10
10
|
import type {ObcPoiPointerType, ObcPoiPointerState} from '@oicl/openbridge-webcomponents/dist/ar/building-blocks/poi-pointer/poi-pointer.js';
|
|
11
11
|
import type { Snippet } from 'svelte';
|
|
12
12
|
|
|
@@ -30,13 +30,12 @@ import type {ObcPoiPointerType, ObcPoiPointerState} from '@oicl/openbridge-webco
|
|
|
30
30
|
y?: number;
|
|
31
31
|
buttonY?: number | null;
|
|
32
32
|
fixedTarget?: boolean;
|
|
33
|
-
buttonOffsetX?: number;
|
|
34
|
-
targetOffsetX?: number;
|
|
35
33
|
boxWidth?: number | null;
|
|
36
34
|
boxHeight?: number | null;
|
|
37
|
-
lineCompensationY?: number;
|
|
38
35
|
outsideAngle?: number;
|
|
39
|
-
animatePosition?: boolean
|
|
36
|
+
animatePosition?: boolean;
|
|
37
|
+
buttonOffsetX?: number;
|
|
38
|
+
targetOffsetX?: number
|
|
40
39
|
}
|
|
41
40
|
export interface Events {
|
|
42
41
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import '@oicl/openbridge-webcomponents/dist/ar/
|
|
2
|
-
import type { ObcPoiType, ObcPoiValue, ObcPoiState } from '@oicl/openbridge-webcomponents/dist/ar/
|
|
3
|
-
import type { ObcPoiButtonType, ObcPoiButtonDataItem } from '@oicl/openbridge-webcomponents/dist/ar/
|
|
1
|
+
import '@oicl/openbridge-webcomponents/dist/ar/poi/poi-base.js';
|
|
2
|
+
import type { ObcPoiType, ObcPoiValue, ObcPoiState } from '@oicl/openbridge-webcomponents/dist/ar/poi/poi.js';
|
|
3
|
+
import type { ObcPoiButtonType, ObcPoiButtonDataItem } from '@oicl/openbridge-webcomponents/dist/ar/poi-button/poi-button.js';
|
|
4
4
|
import type { ObcPoiPointerType, ObcPoiPointerState } from '@oicl/openbridge-webcomponents/dist/ar/building-blocks/poi-pointer/poi-pointer.js';
|
|
5
5
|
import type { Snippet } from 'svelte';
|
|
6
6
|
export interface Props {
|
|
@@ -23,13 +23,12 @@ export interface Props {
|
|
|
23
23
|
y?: number;
|
|
24
24
|
buttonY?: number | null;
|
|
25
25
|
fixedTarget?: boolean;
|
|
26
|
-
buttonOffsetX?: number;
|
|
27
|
-
targetOffsetX?: number;
|
|
28
26
|
boxWidth?: number | null;
|
|
29
27
|
boxHeight?: number | null;
|
|
30
|
-
lineCompensationY?: number;
|
|
31
28
|
outsideAngle?: number;
|
|
32
29
|
animatePosition?: boolean;
|
|
30
|
+
buttonOffsetX?: number;
|
|
31
|
+
targetOffsetX?: number;
|
|
33
32
|
}
|
|
34
33
|
export interface Events {
|
|
35
34
|
}
|
|
@@ -37,7 +36,7 @@ export interface Slots {
|
|
|
37
36
|
children?: Snippet;
|
|
38
37
|
}
|
|
39
38
|
type $$ComponentProps = Props & Events & Slots;
|
|
40
|
-
declare const
|
|
39
|
+
declare const PoiBase: import("svelte").Component<$$ComponentProps, {
|
|
41
40
|
ObcPoiType: typeof ObcPoiType;
|
|
42
41
|
ObcPoiValue: typeof ObcPoiValue;
|
|
43
42
|
ObcPoiState: typeof ObcPoiState;
|
|
@@ -46,5 +45,5 @@ declare const ObcPoiBase: import("svelte").Component<$$ComponentProps, {
|
|
|
46
45
|
ObcPoiPointerType: typeof ObcPoiPointerType;
|
|
47
46
|
ObcPoiPointerState: typeof ObcPoiPointerState;
|
|
48
47
|
}, "">;
|
|
49
|
-
type
|
|
50
|
-
export default
|
|
48
|
+
type PoiBase = ReturnType<typeof PoiBase>;
|
|
49
|
+
export default PoiBase;
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
|
|
2
2
|
<script lang="ts">
|
|
3
|
-
export type {ObcPoiButtonLayout, ObcPoiButtonState, PoiButtonVisualState, ObcPoiButtonType, ObcPoiButtonDataItem} from '@oicl/openbridge-webcomponents/dist/ar/
|
|
4
|
-
import '@oicl/openbridge-webcomponents/dist/ar/
|
|
5
|
-
import { setProperties } from "
|
|
6
|
-
import type {ObcPoiButtonLayout, ObcPoiButtonState, PoiButtonVisualState, ObcPoiButtonType, ObcPoiButtonDataItem} from '@oicl/openbridge-webcomponents/dist/ar/
|
|
3
|
+
export type {ObcPoiButtonLayout, ObcPoiButtonState, PoiButtonVisualState, ObcPoiButtonType, ObcPoiButtonDataItem} from '@oicl/openbridge-webcomponents/dist/ar/poi-button/poi-button.js';
|
|
4
|
+
import '@oicl/openbridge-webcomponents/dist/ar/poi-button/poi-button.js';
|
|
5
|
+
import { setProperties } from "../../util.js";
|
|
6
|
+
import type {ObcPoiButtonLayout, ObcPoiButtonState, PoiButtonVisualState, ObcPoiButtonType, ObcPoiButtonDataItem} from '@oicl/openbridge-webcomponents/dist/ar/poi-button/poi-button.js';
|
|
7
7
|
import type { Snippet } from 'svelte';
|
|
8
8
|
|
|
9
9
|
export interface Props {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import '@oicl/openbridge-webcomponents/dist/ar/
|
|
2
|
-
import type { ObcPoiButtonLayout, ObcPoiButtonState, PoiButtonVisualState, ObcPoiButtonType, ObcPoiButtonDataItem } from '@oicl/openbridge-webcomponents/dist/ar/
|
|
1
|
+
import '@oicl/openbridge-webcomponents/dist/ar/poi-button/poi-button.js';
|
|
2
|
+
import type { ObcPoiButtonLayout, ObcPoiButtonState, PoiButtonVisualState, ObcPoiButtonType, ObcPoiButtonDataItem } from '@oicl/openbridge-webcomponents/dist/ar/poi-button/poi-button.js';
|
|
3
3
|
import type { Snippet } from 'svelte';
|
|
4
4
|
export interface Props {
|
|
5
5
|
class?: string;
|
|
@@ -1,9 +1,11 @@
|
|
|
1
1
|
|
|
2
2
|
<script lang="ts">
|
|
3
|
-
export type {ObcPoiObjectAtonType, ObcPoiObjectAtonStyle
|
|
4
|
-
|
|
3
|
+
export type {ObcPoiObjectAtonType, ObcPoiObjectAtonStyle} from '@oicl/openbridge-webcomponents/dist/ar/poi-object/poi-object-aton.js';
|
|
4
|
+
export type {ObcPoiObjectState} from '@oicl/openbridge-webcomponents/dist/ar/poi-object/poi-object.js';
|
|
5
|
+
import '@oicl/openbridge-webcomponents/dist/ar/poi-button/poi-button-aton.js';
|
|
5
6
|
import { setProperties } from "../../util.js";
|
|
6
|
-
import type {ObcPoiObjectAtonType, ObcPoiObjectAtonStyle
|
|
7
|
+
import type {ObcPoiObjectAtonType, ObcPoiObjectAtonStyle} from '@oicl/openbridge-webcomponents/dist/ar/poi-object/poi-object-aton.js';
|
|
8
|
+
import type {ObcPoiObjectState} from '@oicl/openbridge-webcomponents/dist/ar/poi-object/poi-object.js';
|
|
7
9
|
import type { Snippet } from 'svelte';
|
|
8
10
|
|
|
9
11
|
export interface Props {
|
|
@@ -11,7 +13,7 @@
|
|
|
11
13
|
style?: string;
|
|
12
14
|
atonType?: ObcPoiObjectAtonType;
|
|
13
15
|
atonStyle?: ObcPoiObjectAtonStyle;
|
|
14
|
-
atonState?:
|
|
16
|
+
atonState?: ObcPoiObjectState | null;
|
|
15
17
|
atonInteractive?: boolean
|
|
16
18
|
}
|
|
17
19
|
export interface Events {
|
|
@@ -1,12 +1,13 @@
|
|
|
1
|
-
import '@oicl/openbridge-webcomponents/dist/ar/poi-button
|
|
2
|
-
import type { ObcPoiObjectAtonType, ObcPoiObjectAtonStyle
|
|
1
|
+
import '@oicl/openbridge-webcomponents/dist/ar/poi-button/poi-button-aton.js';
|
|
2
|
+
import type { ObcPoiObjectAtonType, ObcPoiObjectAtonStyle } from '@oicl/openbridge-webcomponents/dist/ar/poi-object/poi-object-aton.js';
|
|
3
|
+
import type { ObcPoiObjectState } from '@oicl/openbridge-webcomponents/dist/ar/poi-object/poi-object.js';
|
|
3
4
|
import type { Snippet } from 'svelte';
|
|
4
5
|
export interface Props {
|
|
5
6
|
class?: string;
|
|
6
7
|
style?: string;
|
|
7
8
|
atonType?: ObcPoiObjectAtonType;
|
|
8
9
|
atonStyle?: ObcPoiObjectAtonStyle;
|
|
9
|
-
atonState?:
|
|
10
|
+
atonState?: ObcPoiObjectState | null;
|
|
10
11
|
atonInteractive?: boolean;
|
|
11
12
|
}
|
|
12
13
|
export interface Events {
|
|
@@ -20,7 +21,7 @@ type $$ComponentProps = Props & Events & Slots;
|
|
|
20
21
|
declare const ObcPoiButtonAton: import("svelte").Component<$$ComponentProps, {
|
|
21
22
|
ObcPoiObjectAtonType: typeof ObcPoiObjectAtonType;
|
|
22
23
|
ObcPoiObjectAtonStyle: typeof ObcPoiObjectAtonStyle;
|
|
23
|
-
|
|
24
|
+
ObcPoiObjectState: typeof ObcPoiObjectState;
|
|
24
25
|
}, "">;
|
|
25
26
|
type ObcPoiButtonAton = ReturnType<typeof ObcPoiButtonAton>;
|
|
26
27
|
export default ObcPoiButtonAton;
|
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
|
|
2
2
|
<script lang="ts">
|
|
3
|
-
export type {
|
|
4
|
-
import '@oicl/openbridge-webcomponents/dist/ar/poi-button
|
|
3
|
+
export type {ObcPoiObjectStyle, ObcPoiObjectState} from '@oicl/openbridge-webcomponents/dist/ar/poi-object/poi-object.js';
|
|
4
|
+
import '@oicl/openbridge-webcomponents/dist/ar/poi-button/poi-button-data.js';
|
|
5
5
|
import { setProperties } from "../../util.js";
|
|
6
|
-
import type {
|
|
6
|
+
import type {ObcPoiObjectStyle, ObcPoiObjectState} from '@oicl/openbridge-webcomponents/dist/ar/poi-object/poi-object.js';
|
|
7
7
|
import type { Snippet } from 'svelte';
|
|
8
8
|
|
|
9
9
|
export interface Props {
|
|
10
10
|
class?: string;
|
|
11
11
|
style?: string;
|
|
12
|
-
dataStyle?:
|
|
13
|
-
dataState?:
|
|
12
|
+
dataStyle?: ObcPoiObjectStyle;
|
|
13
|
+
dataState?: ObcPoiObjectState | null;
|
|
14
14
|
dataInteractive?: boolean
|
|
15
15
|
}
|
|
16
16
|
export interface Events {
|
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
import '@oicl/openbridge-webcomponents/dist/ar/poi-button
|
|
2
|
-
import type {
|
|
1
|
+
import '@oicl/openbridge-webcomponents/dist/ar/poi-button/poi-button-data.js';
|
|
2
|
+
import type { ObcPoiObjectStyle, ObcPoiObjectState } from '@oicl/openbridge-webcomponents/dist/ar/poi-object/poi-object.js';
|
|
3
3
|
import type { Snippet } from 'svelte';
|
|
4
4
|
export interface Props {
|
|
5
5
|
class?: string;
|
|
6
6
|
style?: string;
|
|
7
|
-
dataStyle?:
|
|
8
|
-
dataState?:
|
|
7
|
+
dataStyle?: ObcPoiObjectStyle;
|
|
8
|
+
dataState?: ObcPoiObjectState | null;
|
|
9
9
|
dataInteractive?: boolean;
|
|
10
10
|
}
|
|
11
11
|
export interface Events {
|
|
@@ -17,8 +17,8 @@ export interface Slots {
|
|
|
17
17
|
}
|
|
18
18
|
type $$ComponentProps = Props & Events & Slots;
|
|
19
19
|
declare const ObcPoiButtonData: import("svelte").Component<$$ComponentProps, {
|
|
20
|
-
|
|
21
|
-
|
|
20
|
+
ObcPoiObjectStyle: typeof ObcPoiObjectStyle;
|
|
21
|
+
ObcPoiObjectState: typeof ObcPoiObjectState;
|
|
22
22
|
}, "">;
|
|
23
23
|
type ObcPoiButtonData = ReturnType<typeof ObcPoiButtonData>;
|
|
24
24
|
export default ObcPoiButtonData;
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
|
|
2
2
|
<script lang="ts">
|
|
3
|
-
export type {ObcPoiObjectVesselType, ObcPoiObjectVesselStyle, ObcPoiObjectVesselState} from '@oicl/openbridge-webcomponents/dist/ar/poi-object
|
|
4
|
-
import '@oicl/openbridge-webcomponents/dist/ar/poi-button
|
|
3
|
+
export type {ObcPoiObjectVesselType, ObcPoiObjectVesselStyle, ObcPoiObjectVesselState} from '@oicl/openbridge-webcomponents/dist/ar/poi-object/poi-object-vessel.js';
|
|
4
|
+
import '@oicl/openbridge-webcomponents/dist/ar/poi-button/poi-button-vessel.js';
|
|
5
5
|
import { setProperties } from "../../util.js";
|
|
6
|
-
import type {ObcPoiObjectVesselType, ObcPoiObjectVesselStyle, ObcPoiObjectVesselState} from '@oicl/openbridge-webcomponents/dist/ar/poi-object
|
|
6
|
+
import type {ObcPoiObjectVesselType, ObcPoiObjectVesselStyle, ObcPoiObjectVesselState} from '@oicl/openbridge-webcomponents/dist/ar/poi-object/poi-object-vessel.js';
|
|
7
7
|
import type { Snippet } from 'svelte';
|
|
8
8
|
|
|
9
9
|
export interface Props {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import '@oicl/openbridge-webcomponents/dist/ar/poi-button
|
|
2
|
-
import type { ObcPoiObjectVesselType, ObcPoiObjectVesselStyle, ObcPoiObjectVesselState } from '@oicl/openbridge-webcomponents/dist/ar/poi-object
|
|
1
|
+
import '@oicl/openbridge-webcomponents/dist/ar/poi-button/poi-button-vessel.js';
|
|
2
|
+
import type { ObcPoiObjectVesselType, ObcPoiObjectVesselStyle, ObcPoiObjectVesselState } from '@oicl/openbridge-webcomponents/dist/ar/poi-object/poi-object-vessel.js';
|
|
3
3
|
import type { Snippet } from 'svelte';
|
|
4
4
|
export interface Props {
|
|
5
5
|
class?: string;
|
|
@@ -21,9 +21,10 @@
|
|
|
21
21
|
|
|
22
22
|
}
|
|
23
23
|
export interface Slots {
|
|
24
|
-
|
|
24
|
+
media?: Snippet;
|
|
25
|
+
stack?: Snippet
|
|
25
26
|
}
|
|
26
|
-
const { class: className, style,
|
|
27
|
+
const { class: className, style, media, stack, ...props} = $props<Props & Events & Slots>();
|
|
27
28
|
|
|
28
29
|
</script>
|
|
29
30
|
<obc-poi-controller
|
|
@@ -32,7 +33,15 @@
|
|
|
32
33
|
style={style}
|
|
33
34
|
>
|
|
34
35
|
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
36
|
+
{#if media}
|
|
37
|
+
<div slot="media">
|
|
38
|
+
{@render media()}
|
|
39
|
+
</div>
|
|
40
|
+
{/if}
|
|
41
|
+
|
|
42
|
+
{#if stack}
|
|
43
|
+
<div slot="stack">
|
|
44
|
+
{@render stack()}
|
|
45
|
+
</div>
|
|
46
|
+
{/if}
|
|
38
47
|
</obc-poi-controller>
|
|
@@ -15,7 +15,8 @@ export interface Props {
|
|
|
15
15
|
export interface Events {
|
|
16
16
|
}
|
|
17
17
|
export interface Slots {
|
|
18
|
-
|
|
18
|
+
media?: Snippet;
|
|
19
|
+
stack?: Snippet;
|
|
19
20
|
}
|
|
20
21
|
type $$ComponentProps = Props & Events & Slots;
|
|
21
22
|
declare const ObcPoiController: import("svelte").Component<$$ComponentProps, {
|
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
|
|
2
2
|
<script lang="ts">
|
|
3
|
-
export type {ObcPoiObjectState} from '@oicl/openbridge-webcomponents/dist/ar/
|
|
4
|
-
import '@oicl/openbridge-webcomponents/dist/ar/
|
|
5
|
-
import { setProperties } from "
|
|
6
|
-
import type {ObcPoiObjectState} from '@oicl/openbridge-webcomponents/dist/ar/
|
|
3
|
+
export type {ObcPoiObjectStyle, ObcPoiObjectState} from '@oicl/openbridge-webcomponents/dist/ar/poi-object/poi-object.js';
|
|
4
|
+
import '@oicl/openbridge-webcomponents/dist/ar/poi-object/abstract-poi-object.js';
|
|
5
|
+
import { setProperties } from "../../util.js";
|
|
6
|
+
import type {ObcPoiObjectStyle, ObcPoiObjectState} from '@oicl/openbridge-webcomponents/dist/ar/poi-object/poi-object.js';
|
|
7
7
|
import type { Snippet } from 'svelte';
|
|
8
8
|
|
|
9
9
|
export interface Props {
|
|
10
10
|
class?: string;
|
|
11
11
|
style?: string;
|
|
12
|
-
objectStyle?:
|
|
12
|
+
objectStyle?: ObcPoiObjectStyle;
|
|
13
13
|
state?: ObcPoiObjectState;
|
|
14
14
|
interactive?: boolean
|
|
15
15
|
}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import '@oicl/openbridge-webcomponents/dist/ar/poi-object/abstract-poi-object.js';
|
|
2
|
+
import type { ObcPoiObjectStyle, ObcPoiObjectState } from '@oicl/openbridge-webcomponents/dist/ar/poi-object/poi-object.js';
|
|
3
|
+
import type { Snippet } from 'svelte';
|
|
4
|
+
export interface Props {
|
|
5
|
+
class?: string;
|
|
6
|
+
style?: string;
|
|
7
|
+
objectStyle?: ObcPoiObjectStyle;
|
|
8
|
+
state?: ObcPoiObjectState;
|
|
9
|
+
interactive?: boolean;
|
|
10
|
+
}
|
|
11
|
+
export interface Events {
|
|
12
|
+
}
|
|
13
|
+
export interface Slots {
|
|
14
|
+
children?: Snippet;
|
|
15
|
+
}
|
|
16
|
+
type $$ComponentProps = Props & Events & Slots;
|
|
17
|
+
declare const AbstractPoiObject: import("svelte").Component<$$ComponentProps, {
|
|
18
|
+
ObcPoiObjectStyle: typeof ObcPoiObjectStyle;
|
|
19
|
+
ObcPoiObjectState: typeof ObcPoiObjectState;
|
|
20
|
+
}, "">;
|
|
21
|
+
type AbstractPoiObject = ReturnType<typeof AbstractPoiObject>;
|
|
22
|
+
export default AbstractPoiObject;
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
|
|
2
2
|
<script lang="ts">
|
|
3
|
-
export type {ObcPoiObjectType, ObcPoiObjectStyle, ObcPoiObjectState} from '@oicl/openbridge-webcomponents/dist/ar/
|
|
4
|
-
import '@oicl/openbridge-webcomponents/dist/ar/
|
|
5
|
-
import { setProperties } from "
|
|
6
|
-
import type {ObcPoiObjectType, ObcPoiObjectStyle, ObcPoiObjectState} from '@oicl/openbridge-webcomponents/dist/ar/
|
|
3
|
+
export type {ObcPoiObjectType, ObcPoiObjectStyle, ObcPoiObjectState} from '@oicl/openbridge-webcomponents/dist/ar/poi-object/poi-object.js';
|
|
4
|
+
import '@oicl/openbridge-webcomponents/dist/ar/poi-object/poi-object.js';
|
|
5
|
+
import { setProperties } from "../../util.js";
|
|
6
|
+
import type {ObcPoiObjectType, ObcPoiObjectStyle, ObcPoiObjectState} from '@oicl/openbridge-webcomponents/dist/ar/poi-object/poi-object.js';
|
|
7
7
|
import type { Snippet } from 'svelte';
|
|
8
8
|
|
|
9
9
|
export interface Props {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import '@oicl/openbridge-webcomponents/dist/ar/
|
|
2
|
-
import type { ObcPoiObjectType, ObcPoiObjectStyle, ObcPoiObjectState } from '@oicl/openbridge-webcomponents/dist/ar/
|
|
1
|
+
import '@oicl/openbridge-webcomponents/dist/ar/poi-object/poi-object.js';
|
|
2
|
+
import type { ObcPoiObjectType, ObcPoiObjectStyle, ObcPoiObjectState } from '@oicl/openbridge-webcomponents/dist/ar/poi-object/poi-object.js';
|
|
3
3
|
import type { Snippet } from 'svelte';
|
|
4
4
|
export interface Props {
|
|
5
5
|
class?: string;
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
|
|
2
2
|
<script lang="ts">
|
|
3
|
-
export type {ObcPoiObjectAtonType, ObcPoiObjectAtonStyle} from '@oicl/openbridge-webcomponents/dist/ar/poi-object
|
|
4
|
-
import '@oicl/openbridge-webcomponents/dist/ar/poi-object
|
|
3
|
+
export type {ObcPoiObjectAtonType, ObcPoiObjectAtonStyle} from '@oicl/openbridge-webcomponents/dist/ar/poi-object/poi-object-aton.js';
|
|
4
|
+
import '@oicl/openbridge-webcomponents/dist/ar/poi-object/poi-object-aton.js';
|
|
5
5
|
import { setProperties } from "../../util.js";
|
|
6
|
-
import type {ObcPoiObjectAtonType, ObcPoiObjectAtonStyle} from '@oicl/openbridge-webcomponents/dist/ar/poi-object
|
|
6
|
+
import type {ObcPoiObjectAtonType, ObcPoiObjectAtonStyle} from '@oicl/openbridge-webcomponents/dist/ar/poi-object/poi-object-aton.js';
|
|
7
7
|
import type { Snippet } from 'svelte';
|
|
8
8
|
|
|
9
9
|
export interface Props {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import '@oicl/openbridge-webcomponents/dist/ar/poi-object
|
|
2
|
-
import type { ObcPoiObjectAtonType, ObcPoiObjectAtonStyle } from '@oicl/openbridge-webcomponents/dist/ar/poi-object
|
|
1
|
+
import '@oicl/openbridge-webcomponents/dist/ar/poi-object/poi-object-aton.js';
|
|
2
|
+
import type { ObcPoiObjectAtonType, ObcPoiObjectAtonStyle } from '@oicl/openbridge-webcomponents/dist/ar/poi-object/poi-object-aton.js';
|
|
3
3
|
import type { Snippet } from 'svelte';
|
|
4
4
|
export interface Props {
|
|
5
5
|
class?: string;
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
|
|
2
2
|
<script lang="ts">
|
|
3
|
-
export type {ObcPoiObjectType} from '@oicl/openbridge-webcomponents/dist/ar/
|
|
4
|
-
import '@oicl/openbridge-webcomponents/dist/ar/poi-object
|
|
3
|
+
export type {ObcPoiObjectType} from '@oicl/openbridge-webcomponents/dist/ar/poi-object/poi-object.js';
|
|
4
|
+
import '@oicl/openbridge-webcomponents/dist/ar/poi-object/poi-object-data.js';
|
|
5
5
|
import { setProperties } from "../../util.js";
|
|
6
|
-
import type {ObcPoiObjectType} from '@oicl/openbridge-webcomponents/dist/ar/
|
|
6
|
+
import type {ObcPoiObjectType} from '@oicl/openbridge-webcomponents/dist/ar/poi-object/poi-object.js';
|
|
7
7
|
import type { Snippet } from 'svelte';
|
|
8
8
|
|
|
9
9
|
export interface Props {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import '@oicl/openbridge-webcomponents/dist/ar/poi-object
|
|
2
|
-
import type { ObcPoiObjectType } from '@oicl/openbridge-webcomponents/dist/ar/
|
|
1
|
+
import '@oicl/openbridge-webcomponents/dist/ar/poi-object/poi-object-data.js';
|
|
2
|
+
import type { ObcPoiObjectType } from '@oicl/openbridge-webcomponents/dist/ar/poi-object/poi-object.js';
|
|
3
3
|
import type { Snippet } from 'svelte';
|
|
4
4
|
export interface Props {
|
|
5
5
|
class?: string;
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
|
|
2
2
|
<script lang="ts">
|
|
3
|
-
export type {ObcPoiObjectVesselType} from '@oicl/openbridge-webcomponents/dist/ar/poi-object
|
|
4
|
-
import '@oicl/openbridge-webcomponents/dist/ar/poi-object
|
|
3
|
+
export type {ObcPoiObjectVesselType} from '@oicl/openbridge-webcomponents/dist/ar/poi-object/poi-object-vessel.js';
|
|
4
|
+
import '@oicl/openbridge-webcomponents/dist/ar/poi-object/poi-object-vessel.js';
|
|
5
5
|
import { setProperties } from "../../util.js";
|
|
6
|
-
import type {ObcPoiObjectVesselType} from '@oicl/openbridge-webcomponents/dist/ar/poi-object
|
|
6
|
+
import type {ObcPoiObjectVesselType} from '@oicl/openbridge-webcomponents/dist/ar/poi-object/poi-object-vessel.js';
|
|
7
7
|
import type { Snippet } from 'svelte';
|
|
8
8
|
|
|
9
9
|
export interface Props {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import '@oicl/openbridge-webcomponents/dist/ar/poi-object
|
|
2
|
-
import type { ObcPoiObjectVesselType } from '@oicl/openbridge-webcomponents/dist/ar/poi-object
|
|
1
|
+
import '@oicl/openbridge-webcomponents/dist/ar/poi-object/poi-object-vessel.js';
|
|
2
|
+
import type { ObcPoiObjectVesselType } from '@oicl/openbridge-webcomponents/dist/ar/poi-object/poi-object-vessel.js';
|
|
3
3
|
import type { Snippet } from 'svelte';
|
|
4
4
|
export interface Props {
|
|
5
5
|
class?: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -1,30 +1,30 @@
|
|
|
1
|
-
export { default as ObcPoiBase } from './ar/building-blocks/poi/ObcPoiBase.svelte';
|
|
2
|
-
export { default as ObcPoi } from './ar/building-blocks/poi/ObcPoi.svelte';
|
|
3
|
-
export { default as ObcPoiButton } from './ar/building-blocks/poi-button/ObcPoiButton.svelte';
|
|
4
1
|
export { default as ObcPoiGraphicLine } from './ar/building-blocks/poi-graphic-line/ObcPoiGraphicLine.svelte';
|
|
5
2
|
export { default as ObcPoiHeader } from './ar/building-blocks/poi-header/ObcPoiHeader.svelte';
|
|
6
3
|
export { default as ObcPoiLine } from './ar/building-blocks/poi-line/ObcPoiLine.svelte';
|
|
7
|
-
export { default as ObcAbstractPoiObject } from './ar/building-blocks/poi-object/ObcAbstractPoiObject.svelte';
|
|
8
|
-
export { default as ObcPoiObject } from './ar/building-blocks/poi-object/ObcPoiObject.svelte';
|
|
9
4
|
export { default as ObcPoiPointer } from './ar/building-blocks/poi-pointer/ObcPoiPointer.svelte';
|
|
10
5
|
export { default as ObcPoiSelectionFrame } from './ar/building-blocks/poi-selection-frame/ObcPoiSelectionFrame.svelte';
|
|
11
6
|
export { default as ObcRulerPointer } from './ar/building-blocks/ruler-pointer/ObcRulerPointer.svelte';
|
|
12
7
|
export { default as ObcChartObjectVesselButton } from './ar/chart-object-vessel-button/ObcChartObjectVesselButton.svelte';
|
|
13
|
-
export { default as ObcPoiAton } from './ar/poi
|
|
14
|
-
export { default as
|
|
15
|
-
export { default as
|
|
16
|
-
export { default as
|
|
8
|
+
export { default as ObcPoiAton } from './ar/poi/ObcPoiAton.svelte';
|
|
9
|
+
export { default as PoiBase } from './ar/poi/PoiBase.svelte';
|
|
10
|
+
export { default as ObcPoiData } from './ar/poi/ObcPoiData.svelte';
|
|
11
|
+
export { default as ObcPoiVessel } from './ar/poi/ObcPoiVessel.svelte';
|
|
12
|
+
export { default as ObcPoi } from './ar/poi/ObcPoi.svelte';
|
|
13
|
+
export { default as ObcPoiButtonAton } from './ar/poi-button/ObcPoiButtonAton.svelte';
|
|
14
|
+
export { default as ObcPoiButtonData } from './ar/poi-button/ObcPoiButtonData.svelte';
|
|
15
|
+
export { default as ObcPoiButtonVessel } from './ar/poi-button/ObcPoiButtonVessel.svelte';
|
|
16
|
+
export { default as ObcPoiButton } from './ar/poi-button/ObcPoiButton.svelte';
|
|
17
17
|
export { default as ObcPoiCard } from './ar/poi-card/ObcPoiCard.svelte';
|
|
18
18
|
export { default as ObcPoiCardHeader } from './ar/poi-card-header/ObcPoiCardHeader.svelte';
|
|
19
19
|
export { default as ObcPoiController } from './ar/poi-controller/ObcPoiController.svelte';
|
|
20
|
-
export { default as ObcPoiData } from './ar/poi-data/ObcPoiData.svelte';
|
|
21
20
|
export { default as ObcPoiGroup } from './ar/poi-group/ObcPoiGroup.svelte';
|
|
22
21
|
export { default as ObcPoiLayer } from './ar/poi-layer/ObcPoiLayer.svelte';
|
|
23
22
|
export { default as ObcPoiLayerStack } from './ar/poi-layer-stack/ObcPoiLayerStack.svelte';
|
|
24
|
-
export { default as
|
|
25
|
-
export { default as
|
|
26
|
-
export { default as
|
|
27
|
-
export { default as
|
|
23
|
+
export { default as AbstractPoiObject } from './ar/poi-object/AbstractPoiObject.svelte';
|
|
24
|
+
export { default as ObcPoiObjectAton } from './ar/poi-object/ObcPoiObjectAton.svelte';
|
|
25
|
+
export { default as ObcPoiObjectData } from './ar/poi-object/ObcPoiObjectData.svelte';
|
|
26
|
+
export { default as ObcPoiObjectVessel } from './ar/poi-object/ObcPoiObjectVessel.svelte';
|
|
27
|
+
export { default as ObcPoiObject } from './ar/poi-object/ObcPoiObject.svelte';
|
|
28
28
|
export { default as ObcAnalogValve } from './automation/analog-valve/ObcAnalogValve.svelte';
|
|
29
29
|
export { default as ObcAutomationBadge } from './automation/automation-badge/ObcAutomationBadge.svelte';
|
|
30
30
|
export { default as ObcAbstractAutomationButtonMotorized } from './automation/automation-button/ObcAbstractAutomationButtonMotorized.svelte';
|
package/dist/index.js
CHANGED
|
@@ -1,30 +1,30 @@
|
|
|
1
|
-
export { default as ObcPoiBase } from './ar/building-blocks/poi/ObcPoiBase.svelte';
|
|
2
|
-
export { default as ObcPoi } from './ar/building-blocks/poi/ObcPoi.svelte';
|
|
3
|
-
export { default as ObcPoiButton } from './ar/building-blocks/poi-button/ObcPoiButton.svelte';
|
|
4
1
|
export { default as ObcPoiGraphicLine } from './ar/building-blocks/poi-graphic-line/ObcPoiGraphicLine.svelte';
|
|
5
2
|
export { default as ObcPoiHeader } from './ar/building-blocks/poi-header/ObcPoiHeader.svelte';
|
|
6
3
|
export { default as ObcPoiLine } from './ar/building-blocks/poi-line/ObcPoiLine.svelte';
|
|
7
|
-
export { default as ObcAbstractPoiObject } from './ar/building-blocks/poi-object/ObcAbstractPoiObject.svelte';
|
|
8
|
-
export { default as ObcPoiObject } from './ar/building-blocks/poi-object/ObcPoiObject.svelte';
|
|
9
4
|
export { default as ObcPoiPointer } from './ar/building-blocks/poi-pointer/ObcPoiPointer.svelte';
|
|
10
5
|
export { default as ObcPoiSelectionFrame } from './ar/building-blocks/poi-selection-frame/ObcPoiSelectionFrame.svelte';
|
|
11
6
|
export { default as ObcRulerPointer } from './ar/building-blocks/ruler-pointer/ObcRulerPointer.svelte';
|
|
12
7
|
export { default as ObcChartObjectVesselButton } from './ar/chart-object-vessel-button/ObcChartObjectVesselButton.svelte';
|
|
13
|
-
export { default as ObcPoiAton } from './ar/poi
|
|
14
|
-
export { default as
|
|
15
|
-
export { default as
|
|
16
|
-
export { default as
|
|
8
|
+
export { default as ObcPoiAton } from './ar/poi/ObcPoiAton.svelte';
|
|
9
|
+
export { default as PoiBase } from './ar/poi/PoiBase.svelte';
|
|
10
|
+
export { default as ObcPoiData } from './ar/poi/ObcPoiData.svelte';
|
|
11
|
+
export { default as ObcPoiVessel } from './ar/poi/ObcPoiVessel.svelte';
|
|
12
|
+
export { default as ObcPoi } from './ar/poi/ObcPoi.svelte';
|
|
13
|
+
export { default as ObcPoiButtonAton } from './ar/poi-button/ObcPoiButtonAton.svelte';
|
|
14
|
+
export { default as ObcPoiButtonData } from './ar/poi-button/ObcPoiButtonData.svelte';
|
|
15
|
+
export { default as ObcPoiButtonVessel } from './ar/poi-button/ObcPoiButtonVessel.svelte';
|
|
16
|
+
export { default as ObcPoiButton } from './ar/poi-button/ObcPoiButton.svelte';
|
|
17
17
|
export { default as ObcPoiCard } from './ar/poi-card/ObcPoiCard.svelte';
|
|
18
18
|
export { default as ObcPoiCardHeader } from './ar/poi-card-header/ObcPoiCardHeader.svelte';
|
|
19
19
|
export { default as ObcPoiController } from './ar/poi-controller/ObcPoiController.svelte';
|
|
20
|
-
export { default as ObcPoiData } from './ar/poi-data/ObcPoiData.svelte';
|
|
21
20
|
export { default as ObcPoiGroup } from './ar/poi-group/ObcPoiGroup.svelte';
|
|
22
21
|
export { default as ObcPoiLayer } from './ar/poi-layer/ObcPoiLayer.svelte';
|
|
23
22
|
export { default as ObcPoiLayerStack } from './ar/poi-layer-stack/ObcPoiLayerStack.svelte';
|
|
24
|
-
export { default as
|
|
25
|
-
export { default as
|
|
26
|
-
export { default as
|
|
27
|
-
export { default as
|
|
23
|
+
export { default as AbstractPoiObject } from './ar/poi-object/AbstractPoiObject.svelte';
|
|
24
|
+
export { default as ObcPoiObjectAton } from './ar/poi-object/ObcPoiObjectAton.svelte';
|
|
25
|
+
export { default as ObcPoiObjectData } from './ar/poi-object/ObcPoiObjectData.svelte';
|
|
26
|
+
export { default as ObcPoiObjectVessel } from './ar/poi-object/ObcPoiObjectVessel.svelte';
|
|
27
|
+
export { default as ObcPoiObject } from './ar/poi-object/ObcPoiObject.svelte';
|
|
28
28
|
export { default as ObcAnalogValve } from './automation/analog-valve/ObcAnalogValve.svelte';
|
|
29
29
|
export { default as ObcAutomationBadge } from './automation/automation-badge/ObcAutomationBadge.svelte';
|
|
30
30
|
export { default as ObcAbstractAutomationButtonMotorized } from './automation/automation-button/ObcAbstractAutomationButtonMotorized.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.5",
|
|
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.4"
|
|
35
35
|
},
|
|
36
36
|
"peerDependencies": {
|
|
37
37
|
"svelte": "^5.0.0"
|
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
import '@oicl/openbridge-webcomponents/dist/ar/building-blocks/poi-object/abstract-poi-object.js';
|
|
2
|
-
import type { ObcPoiObjectState } from '@oicl/openbridge-webcomponents/dist/ar/building-blocks/poi-object/poi-object.js';
|
|
3
|
-
import type { Snippet } from 'svelte';
|
|
4
|
-
export interface Props {
|
|
5
|
-
class?: string;
|
|
6
|
-
style?: string;
|
|
7
|
-
objectStyle?: string;
|
|
8
|
-
state?: ObcPoiObjectState;
|
|
9
|
-
interactive?: boolean;
|
|
10
|
-
}
|
|
11
|
-
export interface Events {
|
|
12
|
-
}
|
|
13
|
-
export interface Slots {
|
|
14
|
-
children?: Snippet;
|
|
15
|
-
}
|
|
16
|
-
type $$ComponentProps = Props & Events & Slots;
|
|
17
|
-
declare const ObcAbstractPoiObject: import("svelte").Component<$$ComponentProps, {
|
|
18
|
-
ObcPoiObjectState: typeof ObcPoiObjectState;
|
|
19
|
-
}, "">;
|
|
20
|
-
type ObcAbstractPoiObject = ReturnType<typeof ObcAbstractPoiObject>;
|
|
21
|
-
export default ObcAbstractPoiObject;
|