tickera-angular-components 0.0.1-dev.91 → 0.0.1-dev.93

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.
@@ -3168,12 +3168,20 @@ class PerformanceBookingDataService {
3168
3168
  setRoomMap(roomMap) {
3169
3169
  this._roomMap.set(roomMap);
3170
3170
  }
3171
+ setAllRenderData(data) {
3172
+ this._allRenderData.set(data);
3173
+ }
3171
3174
  setPerformance(performance) {
3172
3175
  this._performance.set(performance);
3173
3176
  }
3174
3177
  setShow(show) {
3175
3178
  this._show.set(show);
3176
3179
  }
3180
+ setHallFloors(data) {
3181
+ const selectedHallFloor = data.length > 0 ? data[0] : null;
3182
+ this._hallFloors.set(data);
3183
+ this._selectedHallFloor.set(selectedHallFloor);
3184
+ }
3177
3185
  setSelectedHallFloor(id) {
3178
3186
  const hallFloor = this._hallFloors().find((hallFloor) => hallFloor.id === id);
3179
3187
  this._selectedHallFloor.set(hallFloor ?? null);