@loxia/mst-viewer 8.1.3-202511131502 → 8.1.3-202511131559

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.
@@ -14,7 +14,7 @@ export declare class RitdelenLijstComponent implements OnDestroy {
14
14
  focusEmitter: EventEmitter<Ritdeel>;
15
15
  keurAlleActiesGoed: EventEmitter<any>;
16
16
  ritdeelViewModels: RitdeelViewModel[];
17
- selectedRitdeel: Ritdeel;
17
+ selectedRitdeel: Ritdeel | undefined;
18
18
  selectedRitdeelActies: Actie[];
19
19
  selectedRitdeelOngeplandeActies: OngeplandeActie[];
20
20
  disableActieKnoppenVanRitdeel: boolean;
@@ -15,9 +15,9 @@ export declare class LaadSignaleringsbeeldenEffect {
15
15
  private editorService;
16
16
  private sbiResource;
17
17
  private connectorService;
18
- private messagesSerivce;
18
+ private messagesService;
19
19
  private SVG_PIXEL_RUIMTE;
20
- constructor(actions$: Actions, store: Store<MstEditorState>, signaleringsBeeldManagerService: SignaleringsBeeldManagerService, editorService: EditorService, sbiResource: SignaleringsbeeldInfoResource, connectorService: ConnectorService, messagesSerivce: MessagesService);
20
+ constructor(actions$: Actions, store: Store<MstEditorState>, signaleringsBeeldManagerService: SignaleringsBeeldManagerService, editorService: EditorService, sbiResource: SignaleringsbeeldInfoResource, connectorService: ConnectorService, messagesService: MessagesService);
21
21
  verwerkRitdelen$: Observable<void> & import("@ngrx/effects").CreateEffectMetadata;
22
22
  laadEnVerwerkSignaleringsbeeldInfo$: Observable<ISignaleringsbeeldInfoDto[]> & import("@ngrx/effects").CreateEffectMetadata;
23
23
  private handleSignaleringsbeeldInfo;
@@ -1,4 +1,5 @@
1
1
  import { SvgInfo } from '@loxia/imx-viewer';
2
+ import { ActionReducerMap } from '@ngrx/store';
2
3
  import { AlgemeneRitDto } from '../../generated/openapi';
3
4
  import { ProgressIndicator } from '../atomic-components/progress-indicator/progress-indicator.entity';
4
5
  import { NieuweRoute } from '../model/nieuwe-route';
@@ -41,9 +42,7 @@ interface ProgressState {
41
42
  progressIndicator?: ProgressIndicator;
42
43
  }
43
44
  export declare const editableReducer: import("@ngrx/store").ActionReducer<boolean, import("@ngrx/store").Action<string>>;
44
- export declare const progressIndicatorReducer: import("@ngrx/store").ActionReducer<{
45
- progressIndicator: {};
46
- }, import("@ngrx/store").Action<string>>;
45
+ export declare const progressIndicatorReducer: import("@ngrx/store").ActionReducer<any, import("@ngrx/store").Action<string>>;
47
46
  export declare const svgInfoReducer: import("@ngrx/store").ActionReducer<SvgInfo[], import("@ngrx/store").Action<string>>;
48
47
  export declare const debugReducer: import("@ngrx/store").ActionReducer<boolean, import("@ngrx/store").Action<string>>;
49
48
  export declare const ritSelectieIdsReducer: import("@ngrx/store").ActionReducer<any, import("@ngrx/store").Action<string>>;
@@ -62,72 +61,12 @@ export declare const beginSeinRightClickableIdsReducer: import("@ngrx/store").Ac
62
61
  export declare const nieuweRouteReducer: import("@ngrx/store").ActionReducer<NieuweRoute, import("@ngrx/store").Action<string>>;
63
62
  export declare const signaleringsbeeldInfoDtosReducer: import("@ngrx/store").ActionReducer<ISignaleringsbeeldInfoDto[], import("@ngrx/store").Action<string>>;
64
63
  export declare const visibleSbInfoDtosReducer: import("@ngrx/store").ActionReducer<ISignaleringsbeeldInfoDto[], import("@ngrx/store").Action<string>>;
65
- export declare const iaVersieReducer: import("@ngrx/store").ActionReducer<{}, import("@ngrx/store").Action<string>>;
64
+ export declare const iaVersieReducer: import("@ngrx/store").ActionReducer<InfraModel, import("@ngrx/store").Action<string>>;
66
65
  export declare const algemeneRitInfoDtoReducer: import("@ngrx/store").ActionReducer<{}, import("@ngrx/store").Action<string>>;
67
66
  export declare const ongeplandeActiesBepaaldReducer: import("@ngrx/store").ActionReducer<boolean, import("@ngrx/store").Action<string>>;
68
- export declare const nieuweBewegingReducer: import("@ngrx/store").ActionReducer<{}, import("@ngrx/store").Action<string>>;
69
- export declare const baseUrlReducer: import("@ngrx/store").ActionReducer<any, import("@ngrx/store").Action<string>>;
70
- export declare const focusIdsReducer: import("@ngrx/store").ActionReducer<{}, import("@ngrx/store").Action<string>>;
71
- export declare const selectedRitdeelIdReducer: import("@ngrx/store").ActionReducer<{}, import("@ngrx/store").Action<string>>;
72
- export declare const storeReducers: {
73
- ritDelen: import("@ngrx/store").ActionReducer<Ritdeel[], ({
74
- ritDelen: Ritdeel[];
75
- paginationSize: number;
76
- iaversieinfo: any;
77
- } & import("@ngrx/store").Action<"[mst] SetRitDelen">) | ({
78
- ritDelen: Ritdeel[];
79
- } & import("@ngrx/store").Action<"[mst] SetRitDelenAfterUpdate">) | ({
80
- ritDelen: Ritdeel[];
81
- } & import("@ngrx/store").Action<"[mst] UpdateRitDelen">) | ({
82
- ritDeel: Ritdeel;
83
- } & import("@ngrx/store").Action<"[mst] ToggleRitdeelZichtbaar">) | ({
84
- ritDeel: Ritdeel;
85
- zichtbaar: boolean;
86
- } & import("@ngrx/store").Action<"[mst] ZetRitdeelZichtbaar">) | ({
87
- ritDeel: Ritdeel;
88
- } & import("@ngrx/store").Action<"[mst] DeleteRitdeel">) | ({
89
- ritDeel: Ritdeel;
90
- actie: Actie;
91
- } & import("@ngrx/store").Action<"[mst] DeleteRitdeelActie">) | ({
92
- ritDeel: Ritdeel;
93
- actie: Actie;
94
- } & import("@ngrx/store").Action<"[mst] AddRitdeelActie">) | ({
95
- zichtbaarheid: boolean;
96
- } & import("@ngrx/store").Action<"[mst] SetZichtbaarheidAlleRitdelen">) | ({
97
- bewegingIds: number[];
98
- } & import("@ngrx/store").Action<"[mst] ToggleZichtbaarheidVoorBewegingen">) | ({
99
- alternatieveRitDeel: import("../model/alternatief-rit-deel").AlternatiefRitDeel;
100
- } & import("@ngrx/store").Action<"[mst] SetAlternatieveRitDelen">) | ({
101
- nieuweRoute: NieuweRoute;
102
- } & import("@ngrx/store").Action<"[mst] RitdeelInvoegen">)>;
103
- ritSelectieIds: import("@ngrx/store").ActionReducer<any, import("@ngrx/store").Action<string>>;
104
- actieOpRitSelectieIds: import("@ngrx/store").ActionReducer<any, import("@ngrx/store").Action<string>>;
105
- ongeplandeActieSelectieIds: import("@ngrx/store").ActionReducer<any, import("@ngrx/store").Action<string>>;
106
- ongeplandeActies: import("@ngrx/store").ActionReducer<ArrayMultimap<string, OngeplandeActie>, import("@ngrx/store").Action<string>>;
107
- gebrokenRitSelectieIds: import("@ngrx/store").ActionReducer<any, import("@ngrx/store").Action<string>>;
108
- alternatievenSelectieIds: import("@ngrx/store").ActionReducer<any, import("@ngrx/store").Action<string>>;
109
- beginSeinSelectieIds: import("@ngrx/store").ActionReducer<any, import("@ngrx/store").Action<string>>;
110
- eindSeinSelectieIds: import("@ngrx/store").ActionReducer<any, import("@ngrx/store").Action<string>>;
111
- alternatievenClickableIds: import("@ngrx/store").ActionReducer<any, import("@ngrx/store").Action<string>>;
112
- eindSeinenClickableIds: import("@ngrx/store").ActionReducer<any, import("@ngrx/store").Action<string>>;
113
- connectorClickableIds: import("@ngrx/store").ActionReducer<any, import("@ngrx/store").Action<string>>;
114
- beginSeinRightClickableIds: import("@ngrx/store").ActionReducer<any, import("@ngrx/store").Action<string>>;
115
- nieuweRoute: import("@ngrx/store").ActionReducer<NieuweRoute, import("@ngrx/store").Action<string>>;
116
- geplandeActies: import("@ngrx/store").ActionReducer<ArrayMultimap<Actie, string>, import("@ngrx/store").Action<string>>;
117
- signaleringsbeeldInfoDtos: import("@ngrx/store").ActionReducer<ISignaleringsbeeldInfoDto[], import("@ngrx/store").Action<string>>;
118
- visibleSbInfoDtos: import("@ngrx/store").ActionReducer<ISignaleringsbeeldInfoDto[], import("@ngrx/store").Action<string>>;
119
- iaVersie: import("@ngrx/store").ActionReducer<{}, import("@ngrx/store").Action<string>>;
120
- algemeneRitInfoDto: import("@ngrx/store").ActionReducer<{}, import("@ngrx/store").Action<string>>;
121
- svgInfos: import("@ngrx/store").ActionReducer<SvgInfo[], import("@ngrx/store").Action<string>>;
122
- debug: import("@ngrx/store").ActionReducer<boolean, import("@ngrx/store").Action<string>>;
123
- editable: import("@ngrx/store").ActionReducer<boolean, import("@ngrx/store").Action<string>>;
124
- ongeplandeActiesBepaald: import("@ngrx/store").ActionReducer<boolean, import("@ngrx/store").Action<string>>;
125
- progressState: import("@ngrx/store").ActionReducer<{
126
- progressIndicator: {};
127
- }, import("@ngrx/store").Action<string>>;
128
- nieuweBewegingen: import("@ngrx/store").ActionReducer<{}, import("@ngrx/store").Action<string>>;
129
- baseUrl: import("@ngrx/store").ActionReducer<any, import("@ngrx/store").Action<string>>;
130
- focusIds: import("@ngrx/store").ActionReducer<{}, import("@ngrx/store").Action<string>>;
131
- selectedRitdeelId: import("@ngrx/store").ActionReducer<{}, import("@ngrx/store").Action<string>>;
132
- };
67
+ export declare const nieuweBewegingReducer: import("@ngrx/store").ActionReducer<Beweging[], import("@ngrx/store").Action<string>>;
68
+ export declare const baseUrlReducer: import("@ngrx/store").ActionReducer<string, import("@ngrx/store").Action<string>>;
69
+ export declare const focusIdsReducer: import("@ngrx/store").ActionReducer<string[], import("@ngrx/store").Action<string>>;
70
+ export declare const selectedRitdeelIdReducer: import("@ngrx/store").ActionReducer<number, import("@ngrx/store").Action<string>>;
71
+ export declare const storeReducers: ActionReducerMap<MstEditorState, import("@ngrx/store").Action<string>>;
133
72
  export {};
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@loxia/mst-viewer",
3
3
  "description": "mstviewer component",
4
- "version": "8.1.3-202511131502",
4
+ "version": "8.1.3-202511131559",
5
5
  "private": false,
6
6
  "publishConfig": {
7
7
  "@loxia:registry": "https://registry.npmjs.org"