@indigina/ui-kit 1.1.178 → 1.1.179
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/fesm2022/indigina-ui-kit.mjs +6 -4
- package/fesm2022/indigina-ui-kit.mjs.map +1 -1
- package/lib/widgets/kit-grid-management/kit-grid-filters/kit-filter-checkbox/kit-filter-checkbox.component.d.ts +2 -1
- package/lib/widgets/kit-grid-management/kit-grid-filters/kit-grid-filters.model.d.ts +3 -1
- package/package.json +1 -1
|
@@ -9,6 +9,7 @@ export declare class KitFilterCheckboxComponent implements OnInit, OnChanges {
|
|
|
9
9
|
readonly translateKeyPrefix: InputSignal<string>;
|
|
10
10
|
readonly items: ModelSignal<KitFilterListOption[]>;
|
|
11
11
|
readonly showPopupOnInit: InputSignal<boolean>;
|
|
12
|
+
readonly guidField: InputSignal<string>;
|
|
12
13
|
readonly filterRemoved: OutputEmitterRef<void>;
|
|
13
14
|
readonly filterChanged: OutputEmitterRef<KitFilterValue>;
|
|
14
15
|
readonly anchor: Signal<ElementRef>;
|
|
@@ -38,5 +39,5 @@ export declare class KitFilterCheckboxComponent implements OnInit, OnChanges {
|
|
|
38
39
|
private initializeSelectedValues;
|
|
39
40
|
private updateItemsState;
|
|
40
41
|
static ɵfac: i0.ɵɵFactoryDeclaration<KitFilterCheckboxComponent, never>;
|
|
41
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<KitFilterCheckboxComponent, "kit-filter-checkbox", never, { "filter": { "alias": "filter"; "required": true; "isSignal": true; }; "translateKeyPrefix": { "alias": "translateKeyPrefix"; "required": false; "isSignal": true; }; "items": { "alias": "items"; "required": false; "isSignal": true; }; "showPopupOnInit": { "alias": "showPopupOnInit"; "required": false; "isSignal": true; }; }, { "items": "itemsChange"; "filterRemoved": "filterRemoved"; "filterChanged": "filterChanged"; }, never, never, true, never>;
|
|
42
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<KitFilterCheckboxComponent, "kit-filter-checkbox", never, { "filter": { "alias": "filter"; "required": true; "isSignal": true; }; "translateKeyPrefix": { "alias": "translateKeyPrefix"; "required": false; "isSignal": true; }; "items": { "alias": "items"; "required": false; "isSignal": true; }; "showPopupOnInit": { "alias": "showPopupOnInit"; "required": false; "isSignal": true; }; "guidField": { "alias": "guidField"; "required": false; "isSignal": true; }; }, { "items": "itemsChange"; "filterRemoved": "filterRemoved"; "filterChanged": "filterChanged"; }, never, never, true, never>;
|
|
42
43
|
}
|
|
@@ -17,7 +17,8 @@ export declare enum KitFilterType {
|
|
|
17
17
|
DATE = "date",
|
|
18
18
|
TEXT = "text",
|
|
19
19
|
NUMERIC = "numeric",
|
|
20
|
-
NULL = "null"
|
|
20
|
+
NULL = "null",
|
|
21
|
+
GUID = "guid"
|
|
21
22
|
}
|
|
22
23
|
export interface KitFilterListOption<T = string> {
|
|
23
24
|
title: string;
|
|
@@ -27,6 +28,7 @@ export interface KitFilterListOption<T = string> {
|
|
|
27
28
|
interface KitFilterListConfigValue<T> {
|
|
28
29
|
items: KitFilterListOption<T>[];
|
|
29
30
|
translateKeyPrefix: string;
|
|
31
|
+
guidField?: string;
|
|
30
32
|
}
|
|
31
33
|
export type KitFilterListConfig = Record<string, KitFilterListConfigValue<string | boolean | number>>;
|
|
32
34
|
export {};
|