@opentrainticketing/netex-deckplan-editor 1.0.6 → 1.0.8

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/index.d.ts CHANGED
@@ -1,5 +1,6 @@
1
1
  import { type App } from 'vue';
2
2
  import { parseNeTEx } from './helpers/parser';
3
+ import { type Availability, PassengerSpotAvailability } from './types/view/seats';
3
4
  import '@/assets/lib.css';
4
5
  declare function install(app: App): void;
5
6
  declare const _default: {
@@ -8,4 +9,4 @@ declare const _default: {
8
9
  export default _default;
9
10
  export * from './components/editor';
10
11
  export * from './components/renderer';
11
- export { parseNeTEx };
12
+ export { parseNeTEx, type Availability, PassengerSpotAvailability };
@@ -2636,6 +2636,7 @@ export {
2636
2636
  et as DeckVisualization,
2637
2637
  js as DeckplanEditor,
2638
2638
  nn as DeckplanRenderer,
2639
+ fe as PassengerSpotAvailability,
2639
2640
  tt as WagonVisualization,
2640
2641
  an as default,
2641
2642
  qs as parseNeTEx
@@ -10,7 +10,7 @@ declare const _default: {
10
10
  required: true;
11
11
  };
12
12
  availability: {
13
- type: import("vue").PropType<import("../types/view/seats").Availability>;
13
+ type: import("vue").PropType<import("..").Availability>;
14
14
  };
15
15
  }>>;
16
16
  parseNeTEx: (xml: string) => import("../types/netex/deckPlan").DeckPlan[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@opentrainticketing/netex-deckplan-editor",
3
- "version": "1.0.6",
3
+ "version": "1.0.8",
4
4
  "private": false,
5
5
  "type": "module",
6
6
  "main": "./dist/netex-deckplan-editor-vue.es.js",