@indigina/ui-kit 1.1.512 → 1.1.513
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
|
@@ -4715,13 +4715,6 @@ declare enum KitUserSettingsKeys {
|
|
|
4715
4715
|
FilterDetails = "filterDetails"
|
|
4716
4716
|
}
|
|
4717
4717
|
|
|
4718
|
-
interface KitFilterSelectorItem {
|
|
4719
|
-
title: string;
|
|
4720
|
-
field: string;
|
|
4721
|
-
disabled?: boolean;
|
|
4722
|
-
filterType?: KitFilterType;
|
|
4723
|
-
}
|
|
4724
|
-
|
|
4725
4718
|
interface UserApplication {
|
|
4726
4719
|
name: string;
|
|
4727
4720
|
url: string | null;
|
|
@@ -4758,6 +4751,13 @@ interface KitUser {
|
|
|
4758
4751
|
loading: boolean;
|
|
4759
4752
|
}
|
|
4760
4753
|
|
|
4754
|
+
interface KitFilterSelectorItem {
|
|
4755
|
+
title: string;
|
|
4756
|
+
field: string;
|
|
4757
|
+
disabled?: boolean;
|
|
4758
|
+
filterType?: KitFilterType;
|
|
4759
|
+
}
|
|
4760
|
+
|
|
4761
4761
|
declare class KitGridFiltersComponent {
|
|
4762
4762
|
private readonly store;
|
|
4763
4763
|
private readonly kitGridUrlStateService;
|
|
@@ -4777,6 +4777,7 @@ declare class KitGridFiltersComponent {
|
|
|
4777
4777
|
applyFilter(filter: KitFilterItem, values: KitFilterValue): void;
|
|
4778
4778
|
buildFilterSelectorItem(item: KitGridColumnConfig, filters: KitFilterItem[]): KitFilterSelectorItem;
|
|
4779
4779
|
useUserTimeZone(filter: KitFilterItem): boolean;
|
|
4780
|
+
isLocalDateColumn(filter: KitFilterItem): boolean;
|
|
4780
4781
|
getDateFilterConstraint(filter: KitFilterItem): KitDateFilterConstraint | undefined;
|
|
4781
4782
|
private isFilterSelectorItemDisabled;
|
|
4782
4783
|
static ɵfac: i0.ɵɵFactoryDeclaration<KitGridFiltersComponent, never>;
|