@resolveio/client-lib-core 21.5.35 → 21.5.36
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/package.json
CHANGED
|
@@ -2693,6 +2693,7 @@ declare class DatatableComponent extends BaseComponent implements OnChanges, Aft
|
|
|
2693
2693
|
activeHeaderMenuKey: string | null;
|
|
2694
2694
|
headerMenuStep: DatatableHeaderMenuStep;
|
|
2695
2695
|
headerMenuTransitionClass: string;
|
|
2696
|
+
headerFilterOperatorOptions: DatatableColumnFilterOperatorOption[];
|
|
2696
2697
|
headerFilterEditor: {
|
|
2697
2698
|
key: string;
|
|
2698
2699
|
type: DatatableColumnFilterType;
|
|
@@ -2700,10 +2701,15 @@ declare class DatatableComponent extends BaseComponent implements OnChanges, Aft
|
|
|
2700
2701
|
value: any;
|
|
2701
2702
|
valueTo: any;
|
|
2702
2703
|
} | null;
|
|
2704
|
+
headerBooleanFilterOptions: {
|
|
2705
|
+
label: string;
|
|
2706
|
+
value: string;
|
|
2707
|
+
}[];
|
|
2703
2708
|
private searchDebounceHandle;
|
|
2704
2709
|
private headerMenuTransitionHandle;
|
|
2705
2710
|
private lastAutoSearchValue;
|
|
2706
2711
|
private templateChangesSubscription;
|
|
2712
|
+
private filterOperatorOptionsCache;
|
|
2707
2713
|
constructor(_services: ProviderService, _dialog: DialogService, locale: string, datatableDefaultConfig: DatatableDefaultConfig | null, datatableDefaultConfigLegacy: DatatableDefaultConfig | null, jsonPipe: JsonPipe, upperCasePipe: UpperCasePipe, lowerCasePipe: LowerCasePipe, titleCasePipe: TitleCasePipe);
|
|
2708
2714
|
ngOnChanges(changes: SimpleChanges): void;
|
|
2709
2715
|
ngAfterContentInit(): void;
|
|
@@ -2743,7 +2749,6 @@ declare class DatatableComponent extends BaseComponent implements OnChanges, Aft
|
|
|
2743
2749
|
getHeaderMenuTitle(column: DatatableColumn): string;
|
|
2744
2750
|
showFilterMenu(column: DatatableColumn): void;
|
|
2745
2751
|
private initializeHeaderFilterEditor;
|
|
2746
|
-
getHeaderFilterOperatorOptions(column: DatatableColumn): DatatableColumnFilterOperatorOption[];
|
|
2747
2752
|
getHeaderFilterValueFieldType(column: DatatableColumn): 'text' | 'number' | 'date';
|
|
2748
2753
|
isHeaderFilterValueHidden(): boolean;
|
|
2749
2754
|
isHeaderFilterSecondValueVisible(): boolean;
|