@opentrainticketing/netex-deckplan-editor 1.0.0 → 1.0.2
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/app/App.vue.d.ts +4 -0
- package/dist/app/main.d.ts +1 -0
- package/dist/components/DeckVisualization.vue.d.ts +46 -0
- package/dist/components/DeckplanEditor.vue.d.ts +8 -0
- package/dist/components/ElementCatalog.vue.d.ts +9 -0
- package/dist/components/ObjectProperties.vue.d.ts +19 -0
- package/dist/components/WagonVisualization.vue.d.ts +25 -0
- package/dist/components/XmlViewer.vue.d.ts +23 -0
- package/dist/components/index.d.ts +3 -0
- package/dist/helpers/parser.d.ts +2 -0
- package/dist/index.d.ts +8 -0
- package/dist/netex-deckplan-editor-vue.es.js +2575 -0
- package/dist/netex-deckplan-editor.css +1 -1
- package/dist/netex-deckplan-editor.es.js +3547 -3516
- package/dist/netex-deckplan-editor.umd.js +15 -15
- package/dist/types/netex/actualVehicleEquipment.d.ts +28 -0
- package/dist/types/netex/centroid.d.ts +11 -0
- package/dist/types/netex/deck.d.ts +82 -0
- package/dist/types/netex/deckEntranceCouple.d.ts +25 -0
- package/dist/types/netex/deckEntranceUsage.d.ts +31 -0
- package/dist/types/netex/deckLevel.d.ts +27 -0
- package/dist/types/netex/deckPlan.d.ts +32 -0
- package/dist/types/netex/deckSpaceCapacity.d.ts +18 -0
- package/dist/types/netex/equipment.d.ts +12 -0
- package/dist/types/netex/general.d.ts +30 -0
- package/dist/types/netex/luggageSpot.d.ts +50 -0
- package/dist/types/netex/otherDeckSpace.d.ts +33 -0
- package/dist/types/netex/passengerEntrance.d.ts +114 -0
- package/dist/types/netex/passengerSpace.d.ts +109 -0
- package/dist/types/netex/passengerSpot.d.ts +107 -0
- package/dist/types/netex/polygon.d.ts +5 -0
- package/dist/types/netex/serviceFacilitySet.d.ts +12 -0
- package/dist/types/netex/spotColumn.d.ts +24 -0
- package/dist/types/netex/spotRow.d.ts +24 -0
- package/dist/types/netex/stopAffinity.d.ts +1 -0
- package/dist/types/netex/validityCondition.d.ts +27 -0
- package/dist/types/view/seats.d.ts +8 -0
- package/dist/webcomponent/webcomponent.d.ts +22 -0
- package/package.json +1 -1
|
@@ -0,0 +1,107 @@
|
|
|
1
|
+
import { ActualVehicleEquipment } from './actualVehicleEquipment';
|
|
2
|
+
import { SpotColumnRef as GeneralSpotColumnRef } from './spotColumn';
|
|
3
|
+
import { Centroid as GeneralCentroid } from './centroid';
|
|
4
|
+
import { SpotRowRef as GeneralSpotRowRef } from './spotRow';
|
|
5
|
+
import { PassengerSpotAvailability } from '../view/seats';
|
|
6
|
+
export declare class PassengerSpot {
|
|
7
|
+
static xmlTagName: string;
|
|
8
|
+
attr_id: string;
|
|
9
|
+
attr_version: string;
|
|
10
|
+
Label: string | undefined;
|
|
11
|
+
Orientation: 'backwards' | 'forwards' | 'leftwards' | 'rightwards' | undefined;
|
|
12
|
+
actualVehicleEquipments: ActualVehicleEquipment[] | undefined;
|
|
13
|
+
SpotColumnRef: GeneralSpotColumnRef | undefined;
|
|
14
|
+
SpotRowRef: GeneralSpotRowRef | undefined;
|
|
15
|
+
ByWindow: boolean | undefined;
|
|
16
|
+
ByAisle: boolean | undefined;
|
|
17
|
+
HasPower: boolean | undefined;
|
|
18
|
+
Centroid: GeneralCentroid | undefined;
|
|
19
|
+
Width: number;
|
|
20
|
+
Length: number;
|
|
21
|
+
availability: undefined | PassengerSpotAvailability;
|
|
22
|
+
constructor({ attr_id, attr_version, Label, Orientation, actualVehicleEquipments, SpotColumnRef, SpotRowRef, ByWindow, ByAisle, HasPower, Centroid, Width, Length, }: {
|
|
23
|
+
attr_id: string;
|
|
24
|
+
attr_version: string;
|
|
25
|
+
Label: string;
|
|
26
|
+
Orientation: 'backwards' | 'forwards' | 'leftwards' | 'rightwards';
|
|
27
|
+
actualVehicleEquipments: any[];
|
|
28
|
+
SpotColumnRef: any;
|
|
29
|
+
SpotRowRef: any;
|
|
30
|
+
ByWindow: boolean | undefined;
|
|
31
|
+
ByAisle: boolean | undefined;
|
|
32
|
+
HasPower: boolean | undefined;
|
|
33
|
+
Centroid: any | undefined;
|
|
34
|
+
Width: number | undefined;
|
|
35
|
+
Length: number | undefined;
|
|
36
|
+
});
|
|
37
|
+
toXML(): {
|
|
38
|
+
attr_id: string;
|
|
39
|
+
attr_version: string;
|
|
40
|
+
Label: {
|
|
41
|
+
text_value: string;
|
|
42
|
+
} | undefined;
|
|
43
|
+
Orientation: {
|
|
44
|
+
text_value: "backwards" | "forwards" | "leftwards" | "rightwards";
|
|
45
|
+
} | undefined;
|
|
46
|
+
actualVehicleEquipments: any;
|
|
47
|
+
SpotColumnRef: {
|
|
48
|
+
attr_ref: string;
|
|
49
|
+
attr_version: string;
|
|
50
|
+
} | undefined;
|
|
51
|
+
SpotRowRef: {
|
|
52
|
+
attr_ref: string;
|
|
53
|
+
attr_version: string;
|
|
54
|
+
} | undefined;
|
|
55
|
+
ByWindow: {
|
|
56
|
+
text_value: true;
|
|
57
|
+
} | undefined;
|
|
58
|
+
ByAisle: {
|
|
59
|
+
text_value: true;
|
|
60
|
+
} | undefined;
|
|
61
|
+
HasPower: {
|
|
62
|
+
text_value: true;
|
|
63
|
+
} | undefined;
|
|
64
|
+
Centroid: {
|
|
65
|
+
Location: {
|
|
66
|
+
pos: string;
|
|
67
|
+
};
|
|
68
|
+
} | undefined;
|
|
69
|
+
Width: number;
|
|
70
|
+
Length: number;
|
|
71
|
+
};
|
|
72
|
+
getFillColor(): "lightred" | "lightgreen" | "lightgray" | "black" | "lightyellow";
|
|
73
|
+
getStrokeColor(): "black" | "red" | "green" | "gray" | "#121212";
|
|
74
|
+
getShape(scale: number): {
|
|
75
|
+
x: number;
|
|
76
|
+
y: number;
|
|
77
|
+
width: number;
|
|
78
|
+
height: number;
|
|
79
|
+
fill: string;
|
|
80
|
+
stroke: string;
|
|
81
|
+
strokeWidth: number;
|
|
82
|
+
cornerRadius: number;
|
|
83
|
+
draggable: boolean;
|
|
84
|
+
} | {
|
|
85
|
+
x: number;
|
|
86
|
+
y: number;
|
|
87
|
+
width: number;
|
|
88
|
+
height: number;
|
|
89
|
+
fill: string;
|
|
90
|
+
draggable: boolean;
|
|
91
|
+
stroke?: undefined;
|
|
92
|
+
strokeWidth?: undefined;
|
|
93
|
+
cornerRadius?: undefined;
|
|
94
|
+
};
|
|
95
|
+
}
|
|
96
|
+
export declare class PassengerSpotRef {
|
|
97
|
+
attr_ref: string;
|
|
98
|
+
attr_version: string;
|
|
99
|
+
constructor({ attr_ref, attr_version }: {
|
|
100
|
+
attr_ref: string;
|
|
101
|
+
attr_version: string;
|
|
102
|
+
});
|
|
103
|
+
toXML(): {
|
|
104
|
+
attr_ref: string;
|
|
105
|
+
attr_version: string;
|
|
106
|
+
};
|
|
107
|
+
}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
export declare class SpotColumn {
|
|
2
|
+
attr_id: string;
|
|
3
|
+
label: string;
|
|
4
|
+
constructor({ attr_id, Label }: {
|
|
5
|
+
attr_id: string;
|
|
6
|
+
Label: string;
|
|
7
|
+
});
|
|
8
|
+
toXML(): {
|
|
9
|
+
attr_id: string;
|
|
10
|
+
label: string;
|
|
11
|
+
};
|
|
12
|
+
}
|
|
13
|
+
export declare class SpotColumnRef {
|
|
14
|
+
attr_ref: string;
|
|
15
|
+
attr_version: string;
|
|
16
|
+
constructor({ attr_ref, attr_version }: {
|
|
17
|
+
attr_ref: string;
|
|
18
|
+
attr_version: string;
|
|
19
|
+
});
|
|
20
|
+
toXML(): {
|
|
21
|
+
attr_ref: string;
|
|
22
|
+
attr_version: string;
|
|
23
|
+
};
|
|
24
|
+
}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
export declare class SpotRow {
|
|
2
|
+
attr_id: string;
|
|
3
|
+
label: string;
|
|
4
|
+
constructor({ attr_id, Label }: {
|
|
5
|
+
attr_id: string;
|
|
6
|
+
Label: string;
|
|
7
|
+
});
|
|
8
|
+
toXML(): {
|
|
9
|
+
attr_id: string;
|
|
10
|
+
label: string;
|
|
11
|
+
};
|
|
12
|
+
}
|
|
13
|
+
export declare class SpotRowRef {
|
|
14
|
+
attr_ref: string;
|
|
15
|
+
attr_version: string;
|
|
16
|
+
constructor({ attr_ref, attr_version }: {
|
|
17
|
+
attr_ref: string;
|
|
18
|
+
attr_version: string;
|
|
19
|
+
});
|
|
20
|
+
toXML(): {
|
|
21
|
+
attr_ref: string;
|
|
22
|
+
attr_version: string;
|
|
23
|
+
};
|
|
24
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
export declare class ValidityCondition {
|
|
2
|
+
attr_id: string;
|
|
3
|
+
attr_version: string;
|
|
4
|
+
Name: string;
|
|
5
|
+
constructor({ attr_id, attr_version, Name }: {
|
|
6
|
+
attr_id: string;
|
|
7
|
+
attr_version: string;
|
|
8
|
+
Name: string;
|
|
9
|
+
});
|
|
10
|
+
toXML(): {
|
|
11
|
+
attr_id: string;
|
|
12
|
+
Name: string;
|
|
13
|
+
attr_version: string;
|
|
14
|
+
};
|
|
15
|
+
}
|
|
16
|
+
export declare class ValidityConditionRef {
|
|
17
|
+
attr_ref: string;
|
|
18
|
+
attr_version: string;
|
|
19
|
+
constructor({ attr_ref, attr_version }: {
|
|
20
|
+
attr_ref: string;
|
|
21
|
+
attr_version: string;
|
|
22
|
+
});
|
|
23
|
+
toXML(): {
|
|
24
|
+
attr_ref: string;
|
|
25
|
+
attr_version: string;
|
|
26
|
+
};
|
|
27
|
+
}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
declare const _default: {
|
|
2
|
+
DeckplanEditorElement: import("vue").VueElementConstructor<{}>;
|
|
3
|
+
DeckVisualizationElement: import("vue").VueElementConstructor<import("vue").ExtractPropTypes<{
|
|
4
|
+
deck: {
|
|
5
|
+
type: import("vue").PropType<import("../types/netex/deck").Deck>;
|
|
6
|
+
required: true;
|
|
7
|
+
};
|
|
8
|
+
availability: {
|
|
9
|
+
type: import("vue").PropType<import("../types/view/seats").Availability>;
|
|
10
|
+
};
|
|
11
|
+
scale: {
|
|
12
|
+
type: NumberConstructor;
|
|
13
|
+
required: true;
|
|
14
|
+
};
|
|
15
|
+
selectedElements: {
|
|
16
|
+
type: import("vue").PropType<any[]>;
|
|
17
|
+
default: () => never[];
|
|
18
|
+
};
|
|
19
|
+
}>>;
|
|
20
|
+
parseNeTEx: (xml: string) => import("../types/netex/deckPlan").DeckPlan[];
|
|
21
|
+
};
|
|
22
|
+
export default _default;
|