tickera-angular-components 0.0.1-dev.57 → 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;
|
|
@@ -2222,7 +2222,7 @@ declare class FormInputComponent implements ControlValueAccessor {
|
|
|
2222
2222
|
|
|
2223
2223
|
declare class FormSelectComponent implements ControlValueAccessor {
|
|
2224
2224
|
ngControl: NgControl;
|
|
2225
|
-
|
|
2225
|
+
protected transloco: TranslocoService;
|
|
2226
2226
|
label: string;
|
|
2227
2227
|
name: string;
|
|
2228
2228
|
id: string;
|
|
@@ -2246,7 +2246,6 @@ declare class FormSelectComponent implements ControlValueAccessor {
|
|
|
2246
2246
|
get inputId(): string;
|
|
2247
2247
|
get showError(): boolean;
|
|
2248
2248
|
get errorMessage(): string;
|
|
2249
|
-
get resolvedDefaultOptionLabel(): string;
|
|
2250
2249
|
get fieldGroupClasses(): string;
|
|
2251
2250
|
static ɵfac: i0.ɵɵFactoryDeclaration<FormSelectComponent, [{ optional: true; self: true; }, null]>;
|
|
2252
2251
|
static ɵcmp: i0.ɵɵComponentDeclaration<FormSelectComponent, "form-select", never, { "label": { "alias": "label"; "required": false; }; "name": { "alias": "name"; "required": false; }; "id": { "alias": "id"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "required": { "alias": "required"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "options": { "alias": "options"; "required": false; }; "fieldGroupClass": { "alias": "fieldGroupClass"; "required": false; }; "showDefaultOption": { "alias": "showDefaultOption"; "required": false; }; "defaultOptionLabel": { "alias": "defaultOptionLabel"; "required": false; }; }, {}, never, never, true, never>;
|