@loxia/mst-viewer 8.1.3-202511140957 → 8.1.3-202511141109
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/esm2022/lib/components/ritdelen-lijst/ritdelen-lijst.component.mjs +1 -5
- package/esm2022/lib/components/svg-visualisatie/svg-visualisatie.component.mjs +2 -3
- package/esm2022/lib/mst-viewer.module.mjs +5 -5
- package/esm2022/lib/state/actions/actions.mjs +2 -4
- package/esm2022/lib/state/mst-editor-state.mjs +1 -3
- package/fesm2022/loxia-mst-viewer.mjs +80 -88
- package/fesm2022/loxia-mst-viewer.mjs.map +1 -1
- package/lib/state/actions/actions.d.ts +1 -6
- package/lib/state/mst-editor-state.d.ts +0 -2
- package/package.json +1 -1
|
@@ -191,9 +191,6 @@ export declare const bepaalSbInfos: import("@ngrx/store").FunctionWithParameters
|
|
|
191
191
|
ritGewijzigdToegestaan: boolean;
|
|
192
192
|
paginationSize: number;
|
|
193
193
|
} & import("@ngrx/store").Action<"[mst] bepaalSbInfos">> & import("@ngrx/store").Action<"[mst] bepaalSbInfos">;
|
|
194
|
-
export declare const SetSelectedRitdeel: import("@ngrx/store").FunctionWithParametersType<[id: number], {
|
|
195
|
-
id: number;
|
|
196
|
-
} & import("@ngrx/store").Action<"[mst] SetSelectedRitdeel">> & import("@ngrx/store").Action<"[mst] SetSelectedRitdeel">;
|
|
197
194
|
declare const mstActions: ({
|
|
198
195
|
editable: boolean;
|
|
199
196
|
} & import("@ngrx/store").Action<"[mst] SetEditable">) | ({
|
|
@@ -268,8 +265,6 @@ declare const mstActions: ({
|
|
|
268
265
|
ongeplandeActies: Actie[];
|
|
269
266
|
} & import("@ngrx/store").Action<"[progress] KeurAlleActiesGoed">) | ({
|
|
270
267
|
bewegingen: Beweging[];
|
|
271
|
-
} & import("@ngrx/store").Action<"[progress] UpdateRit">)
|
|
272
|
-
id: number;
|
|
273
|
-
} & import("@ngrx/store").Action<"[mst] SetSelectedRitdeel">);
|
|
268
|
+
} & import("@ngrx/store").Action<"[progress] UpdateRit">);
|
|
274
269
|
export type MstActionsUnion = typeof mstActions;
|
|
275
270
|
export {};
|
|
@@ -36,7 +36,6 @@ export interface MstEditorState {
|
|
|
36
36
|
nieuweBewegingen: Beweging[];
|
|
37
37
|
baseUrl: string;
|
|
38
38
|
focusIds: string[];
|
|
39
|
-
selectedRitdeelId: number;
|
|
40
39
|
}
|
|
41
40
|
interface ProgressState {
|
|
42
41
|
progressIndicator?: ProgressIndicator;
|
|
@@ -67,6 +66,5 @@ export declare const ongeplandeActiesBepaaldReducer: import("@ngrx/store").Actio
|
|
|
67
66
|
export declare const nieuweBewegingReducer: import("@ngrx/store").ActionReducer<Beweging[], import("@ngrx/store").Action<string>>;
|
|
68
67
|
export declare const baseUrlReducer: import("@ngrx/store").ActionReducer<string, import("@ngrx/store").Action<string>>;
|
|
69
68
|
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
69
|
export declare const storeReducers: ActionReducerMap<MstEditorState, import("@ngrx/store").Action<string>>;
|
|
72
70
|
export {};
|