tickera-angular-components 0.0.1-dev.195 → 0.0.1-dev.196

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
@@ -1733,7 +1733,8 @@ interface PriceZonesResponseInterface {
1733
1733
  }
1734
1734
 
1735
1735
  interface FindAllPriceZoneParams {
1736
- roomMapId?: number;
1736
+ room_map_id?: number;
1737
+ show_ids?: number[];
1737
1738
  page?: number;
1738
1739
  search?: string;
1739
1740
  limit?: number;
@@ -2256,8 +2257,8 @@ declare class PriceZoneService {
2256
2257
  private priceZonesSubject;
2257
2258
  priceZones$: Observable<PriceZone[]>;
2258
2259
  constructor(apiService: ApiService);
2259
- fetchPriceZones({ roomMapId, page, search, limit, }?: FindAllPriceZoneParams): Observable<PriceZonesResponseInterface>;
2260
- loadPriceZones({ roomMapId, page, search, limit }?: FindAllPriceZoneParams): void;
2260
+ fetchPriceZones(params?: FindAllPriceZoneParams): Observable<PriceZonesResponseInterface>;
2261
+ loadPriceZones(params?: FindAllPriceZoneParams): void;
2261
2262
  getCurrentPriceZones(): PriceZone[];
2262
2263
  fetchOneById(id: number): Observable<PriceZoneResponse>;
2263
2264
  createOne(data: PriceZone): Observable<any>;
@@ -4012,7 +4013,7 @@ declare class ShowMultiSelectComponent implements OnInit, OnDestroy, ControlValu
4012
4013
  static ɵcmp: i0.ɵɵComponentDeclaration<ShowMultiSelectComponent, "show-multi-select", never, { "label": { "alias": "label"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; }, {}, never, never, true, never>;
4013
4014
  }
4014
4015
 
4015
- declare class PriceZoneSelectComponent implements OnInit, OnDestroy, ControlValueAccessor, Validator {
4016
+ declare class PriceZoneSelectComponent implements OnInit, OnChanges, OnDestroy, ControlValueAccessor, Validator {
4016
4017
  private platformId;
4017
4018
  private priceZoneService;
4018
4019
  label: string;
@@ -4023,6 +4024,7 @@ declare class PriceZoneSelectComponent implements OnInit, OnDestroy, ControlValu
4023
4024
  showError: boolean;
4024
4025
  customClass: string;
4025
4026
  control?: AbstractControl | null;
4027
+ showIds: number[];
4026
4028
  priceZoneChange: EventEmitter<number | null>;
4027
4029
  priceZones: WritableSignal<SelectOption[]>;
4028
4030
  loading: WritableSignal<boolean>;
@@ -4034,6 +4036,7 @@ declare class PriceZoneSelectComponent implements OnInit, OnDestroy, ControlValu
4034
4036
  onTouched: any;
4035
4037
  constructor(platformId: string, priceZoneService: PriceZoneService);
4036
4038
  ngOnInit(): void;
4039
+ ngOnChanges(changes: SimpleChanges): void;
4037
4040
  get formControl(): FormControl;
4038
4041
  ngOnDestroy(): void;
4039
4042
  onSearchChange(search: string): void;
@@ -4046,7 +4049,7 @@ declare class PriceZoneSelectComponent implements OnInit, OnDestroy, ControlValu
4046
4049
  } | null;
4047
4050
  get isInvalid(): boolean;
4048
4051
  static ɵfac: i0.ɵɵFactoryDeclaration<PriceZoneSelectComponent, never>;
4049
- static ɵcmp: i0.ɵɵComponentDeclaration<PriceZoneSelectComponent, "price-zone-select", never, { "label": { "alias": "label"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "name": { "alias": "name"; "required": false; }; "required": { "alias": "required"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "showError": { "alias": "showError"; "required": false; }; "customClass": { "alias": "customClass"; "required": false; }; "control": { "alias": "control"; "required": false; }; }, { "priceZoneChange": "priceZoneChange"; }, never, never, true, never>;
4052
+ static ɵcmp: i0.ɵɵComponentDeclaration<PriceZoneSelectComponent, "price-zone-select", never, { "label": { "alias": "label"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "name": { "alias": "name"; "required": false; }; "required": { "alias": "required"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "showError": { "alias": "showError"; "required": false; }; "customClass": { "alias": "customClass"; "required": false; }; "control": { "alias": "control"; "required": false; }; "showIds": { "alias": "showIds"; "required": false; }; }, { "priceZoneChange": "priceZoneChange"; }, never, never, true, never>;
4050
4053
  }
4051
4054
 
4052
4055
  declare class PerformanceTicketStatusBadgeComponent {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tickera-angular-components",
3
- "version": "0.0.1-dev.195",
3
+ "version": "0.0.1-dev.196",
4
4
  "description": "Angular 20 standalone component library for Tickera backoffice system",
5
5
  "license": "MIT",
6
6
  "repository": {