@solcre-org/core-ui 2.11.26 → 2.11.28
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
|
@@ -283,7 +283,11 @@ declare class DatetimeFieldComponent<T extends DataBaseModelInterface> implement
|
|
|
283
283
|
selectedDate: _angular_core.WritableSignal<Date | null>;
|
|
284
284
|
selectedHour: _angular_core.WritableSignal<number>;
|
|
285
285
|
selectedMinute: _angular_core.WritableSignal<number>;
|
|
286
|
+
private hasHourValue;
|
|
287
|
+
private hasMinuteValue;
|
|
286
288
|
hours: number[];
|
|
289
|
+
isHourPlaceholderVisible: _angular_core.Signal<boolean>;
|
|
290
|
+
isMinutePlaceholderVisible: _angular_core.Signal<boolean>;
|
|
287
291
|
hoursOptions: _angular_core.Signal<{
|
|
288
292
|
value: number;
|
|
289
293
|
label: string;
|
|
@@ -681,7 +685,11 @@ declare class TimeFieldComponent<T extends DataBaseModelInterface> {
|
|
|
681
685
|
ModalMode: typeof ModalMode;
|
|
682
686
|
selectedStartTime: _angular_core.WritableSignal<string | null>;
|
|
683
687
|
selectedEndTime: _angular_core.WritableSignal<string | null>;
|
|
688
|
+
private hasStartValue;
|
|
689
|
+
private hasEndValue;
|
|
684
690
|
config: _angular_core.Signal<TimeFieldConfig>;
|
|
691
|
+
isStartPlaceholderVisible: _angular_core.Signal<boolean>;
|
|
692
|
+
isEndPlaceholderVisible: _angular_core.Signal<boolean>;
|
|
685
693
|
availableOptions: _angular_core.Signal<TimeOption[]>;
|
|
686
694
|
startTimeOptions: _angular_core.Signal<{
|
|
687
695
|
disabled: boolean;
|
|
@@ -1567,6 +1575,9 @@ interface MoreDataConfig<T extends DataBaseModelInterface> {
|
|
|
1567
1575
|
endpoint: string;
|
|
1568
1576
|
key: string;
|
|
1569
1577
|
model: new () => T;
|
|
1578
|
+
isSingleObject?: boolean;
|
|
1579
|
+
customArrayKey?: string;
|
|
1580
|
+
id?: any;
|
|
1570
1581
|
}
|
|
1571
1582
|
|
|
1572
1583
|
interface RowStyleConfig<T extends DataBaseModelInterface> {
|
|
@@ -1767,7 +1778,9 @@ declare class ModelApiService<T extends DataBaseModelInterface> {
|
|
|
1767
1778
|
private buildQueryString;
|
|
1768
1779
|
loadMoreData(configs: MoreDataConfig<any>[]): void;
|
|
1769
1780
|
getMoreData(key: string): any[];
|
|
1781
|
+
getMoreDataSingleObject(key: string): any | null;
|
|
1770
1782
|
getMoreDataObservable(key: string): Observable<any[]>;
|
|
1783
|
+
getMoreDataSingleObjectObservable(key: string): Observable<any | null>;
|
|
1771
1784
|
private callApiWithHeaders;
|
|
1772
1785
|
createItem(endpoint: string, item: T, modelFactory: (json: any) => T): Observable<T>;
|
|
1773
1786
|
updateItem(endpoint: string, id: number | string, item: T, modelFactory: (json: any) => T): Observable<T>;
|
|
@@ -1885,6 +1898,7 @@ declare class GenericTableComponent<T extends DataBaseModelInterface & {
|
|
|
1885
1898
|
tableActionService: TableActionService<T>;
|
|
1886
1899
|
modelApiService: ModelApiService<T>;
|
|
1887
1900
|
loaderService: LoaderService;
|
|
1901
|
+
private router;
|
|
1888
1902
|
private confirmationDialogService;
|
|
1889
1903
|
private permissionService;
|
|
1890
1904
|
private dropdownService;
|
|
@@ -2004,6 +2018,11 @@ declare class GenericTableComponent<T extends DataBaseModelInterface & {
|
|
|
2004
2018
|
column: string;
|
|
2005
2019
|
errors: string[];
|
|
2006
2020
|
}>;
|
|
2021
|
+
private handlePopstate;
|
|
2022
|
+
private handleFilterRequested;
|
|
2023
|
+
private handleCreateRequested;
|
|
2024
|
+
private handleGlobalActionTriggered;
|
|
2025
|
+
onBeforeUnload(event: BeforeUnloadEvent): void;
|
|
2007
2026
|
constructor();
|
|
2008
2027
|
private processDataInput;
|
|
2009
2028
|
ngOnInit(): void;
|