@solcre-org/core-ui 2.20.13 → 2.20.15
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
|
@@ -2195,12 +2195,14 @@ interface FilterConfig<T extends DataBaseModelInterface> {
|
|
|
2195
2195
|
conditionalVisibility?: ConditionalVisibility;
|
|
2196
2196
|
checkboxConfig?: CheckboxFieldConfig;
|
|
2197
2197
|
isDeletedFilterKey?: boolean;
|
|
2198
|
+
defaultValue?: any | (() => any);
|
|
2198
2199
|
modes?: Partial<Record<ModalMode, {
|
|
2199
2200
|
validators?: ValidatorFn[];
|
|
2200
2201
|
errorMessages?: {
|
|
2201
2202
|
[key: string]: string;
|
|
2202
2203
|
};
|
|
2203
2204
|
visible?: boolean;
|
|
2205
|
+
defaultValue?: any | (() => any);
|
|
2204
2206
|
}>>;
|
|
2205
2207
|
showOutsideFilterModal?: boolean;
|
|
2206
2208
|
}
|
|
@@ -3058,6 +3060,7 @@ declare class GenericTableComponent<T extends DataBaseModelInterface & {
|
|
|
3058
3060
|
getSortButtonTitle(column: ColumnConfig<T>): string;
|
|
3059
3061
|
private handleSortChange;
|
|
3060
3062
|
private applySortingInMemory;
|
|
3063
|
+
private initializeDefaultFilterValues;
|
|
3061
3064
|
private reloadDataWithCurrentParams;
|
|
3062
3065
|
private getFilterParams;
|
|
3063
3066
|
private getCleanedCustomParams;
|
|
@@ -5661,6 +5664,7 @@ interface SchedulerConfig {
|
|
|
5661
5664
|
locale?: string;
|
|
5662
5665
|
viewMode?: SchedulerViewMode;
|
|
5663
5666
|
timezone?: string;
|
|
5667
|
+
emptySlotEventsDisabled?: boolean;
|
|
5664
5668
|
}
|
|
5665
5669
|
interface SchedulerWeekDay {
|
|
5666
5670
|
date: Date;
|
|
@@ -5731,6 +5735,7 @@ declare class GenericSchedulerComponent implements OnInit, OnDestroy {
|
|
|
5731
5735
|
locale?: string;
|
|
5732
5736
|
viewMode?: SchedulerViewMode;
|
|
5733
5737
|
timezone?: string;
|
|
5738
|
+
emptySlotEventsDisabled?: boolean;
|
|
5734
5739
|
}>;
|
|
5735
5740
|
private getNow;
|
|
5736
5741
|
viewMode: _angular_core.Signal<SchedulerViewMode>;
|