@indigina/ui-kit 1.1.327 → 1.1.328
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 +31 -12
- package/fesm2022/indigina-ui-kit.mjs.map +1 -1
- package/index.d.ts +3 -2
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -3882,7 +3882,8 @@ declare class KitFilterCheckboxComponent implements OnInit, OnChanges {
|
|
|
3882
3882
|
title: string;
|
|
3883
3883
|
value: string;
|
|
3884
3884
|
}[]>;
|
|
3885
|
-
readonly
|
|
3885
|
+
readonly groupedItems: Signal<KitFilterListOption<string[]>[]>;
|
|
3886
|
+
readonly visibleItems: Signal<KitFilterListOption<string[]>[]>;
|
|
3886
3887
|
readonly kitTooltipPosition: typeof KitTooltipPosition;
|
|
3887
3888
|
readonly kitPillTheme: typeof KitPillTheme;
|
|
3888
3889
|
readonly kitTextboxSize: typeof KitTextboxSize;
|
|
@@ -3901,7 +3902,7 @@ declare class KitFilterCheckboxComponent implements OnInit, OnChanges {
|
|
|
3901
3902
|
close(): void;
|
|
3902
3903
|
buildTranslateKey(value: string): string;
|
|
3903
3904
|
toggleAll(isChecked: boolean): void;
|
|
3904
|
-
onChange(): void;
|
|
3905
|
+
onChange(isChecked: boolean, values: string[]): void;
|
|
3905
3906
|
private initializeSelectedValues;
|
|
3906
3907
|
private updateItemsState;
|
|
3907
3908
|
static ɵfac: i0.ɵɵFactoryDeclaration<KitFilterCheckboxComponent, never>;
|