tickera-angular-components 0.0.1-dev.196 → 0.0.1-dev.197
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
|
@@ -870,6 +870,7 @@ interface PriceZone extends Auditable {
|
|
|
870
870
|
is_active: boolean;
|
|
871
871
|
elements: any[];
|
|
872
872
|
room_map_id: number | null;
|
|
873
|
+
room_map?: RoomMap;
|
|
873
874
|
}
|
|
874
875
|
|
|
875
876
|
interface NumerationConfig {
|
|
@@ -3563,14 +3564,14 @@ declare class FileUploadPreviewComponent {
|
|
|
3563
3564
|
interface AsyncSelectConfig<T = any> {
|
|
3564
3565
|
load: (params?: {
|
|
3565
3566
|
search?: string;
|
|
3566
|
-
parentId?: number;
|
|
3567
|
+
parentId?: number | number[];
|
|
3567
3568
|
}) => Observable<T>;
|
|
3568
3569
|
map: (response: T) => SelectOption[];
|
|
3569
3570
|
}
|
|
3570
3571
|
declare class AsyncSelectComponent implements OnInit, OnDestroy, OnChanges, ControlValueAccessor {
|
|
3571
3572
|
config?: AsyncSelectConfig<any>;
|
|
3572
3573
|
items: SelectOption[];
|
|
3573
|
-
parentId?: number | null;
|
|
3574
|
+
parentId?: number | number[] | null;
|
|
3574
3575
|
label: string;
|
|
3575
3576
|
placeholder: string;
|
|
3576
3577
|
name: string;
|
|
@@ -3602,6 +3603,7 @@ declare class AsyncSelectComponent implements OnInit, OnDestroy, OnChanges, Cont
|
|
|
3602
3603
|
private searchMode;
|
|
3603
3604
|
private loadAndMap;
|
|
3604
3605
|
private fetchData;
|
|
3606
|
+
private hasParentId;
|
|
3605
3607
|
private handleParentIdChange;
|
|
3606
3608
|
onSearch(event: any): void;
|
|
3607
3609
|
onSelectChange(value: any): void;
|