tickera-angular-components 0.0.1-dev.58 → 0.0.1-dev.59
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/index.d.ts
CHANGED
|
@@ -1801,11 +1801,8 @@ declare class PerformanceBookingDataService {
|
|
|
1801
1801
|
private _roomMap;
|
|
1802
1802
|
private _hallFloors;
|
|
1803
1803
|
private _selectedHallFloor;
|
|
1804
|
-
private _selectedTicketIds;
|
|
1805
1804
|
private _allRenderData;
|
|
1806
1805
|
private _stageConfig;
|
|
1807
|
-
readonly selectedCount: i0.Signal<number>;
|
|
1808
|
-
readonly selectedTicketIds: i0.Signal<Set<number>>;
|
|
1809
1806
|
readonly show: i0.Signal<Show | null>;
|
|
1810
1807
|
readonly hallFloors: i0.Signal<HallFloor[]>;
|
|
1811
1808
|
readonly selectedHallFloor: i0.Signal<HallFloor | null>;
|
|
@@ -1816,6 +1813,9 @@ declare class PerformanceBookingDataService {
|
|
|
1816
1813
|
readonly roomMap: i0.Signal<RoomMap | null>;
|
|
1817
1814
|
readonly renderData: i0.Signal<ElementRenderData[]>;
|
|
1818
1815
|
setPerformanceBookingData({ data }: PerformanceBookingDataResponse): void;
|
|
1816
|
+
setRoomMap(roomMap: RoomMap | null): void;
|
|
1817
|
+
setPerformance(performance: Performance | null): void;
|
|
1818
|
+
setShow(show: Show | null): void;
|
|
1819
1819
|
setSelectedHallFloor(id: number): void;
|
|
1820
1820
|
updateStageConfig(data: {
|
|
1821
1821
|
[x: string]: any;
|