@indigina/ui-kit 1.1.271 → 1.1.272
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
|
@@ -183,7 +183,8 @@ declare enum KitSvgIcon {
|
|
|
183
183
|
MANAGEMENT = "management",
|
|
184
184
|
INVENTORY = "inventory",
|
|
185
185
|
LOGO_DARK_THEME = "logo-dark-theme",
|
|
186
|
-
FILE_BARCODE = "file-barcode"
|
|
186
|
+
FILE_BARCODE = "file-barcode",
|
|
187
|
+
BACKSPACE = "backspace"
|
|
187
188
|
}
|
|
188
189
|
declare enum KitSvgIconType {
|
|
189
190
|
FILL = "fill",
|
|
@@ -3899,12 +3900,13 @@ declare class KitGridSearchComponent implements AfterViewInit {
|
|
|
3899
3900
|
private readonly store;
|
|
3900
3901
|
private readonly kitGridUrlStateService;
|
|
3901
3902
|
readonly kitSearchBarComponent: Signal<KitSearchBarComponent>;
|
|
3903
|
+
readonly toggleSearch: OutputEmitterRef<boolean>;
|
|
3902
3904
|
readonly gridState$: Observable<KitGridDataState>;
|
|
3903
3905
|
ngAfterViewInit(): void;
|
|
3904
3906
|
closeButtonClick(): void;
|
|
3905
3907
|
closeSearch(): void;
|
|
3906
3908
|
static ɵfac: i0.ɵɵFactoryDeclaration<KitGridSearchComponent, never>;
|
|
3907
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<KitGridSearchComponent, "kit-grid-search", never, {}, {}, never, never, true, never>;
|
|
3909
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<KitGridSearchComponent, "kit-grid-search", never, {}, { "toggleSearch": "toggleSearch"; }, never, never, true, never>;
|
|
3908
3910
|
}
|
|
3909
3911
|
|
|
3910
3912
|
declare class KitGridColumnManagerComponent {
|
|
@@ -3912,6 +3914,7 @@ declare class KitGridColumnManagerComponent {
|
|
|
3912
3914
|
private readonly store;
|
|
3913
3915
|
private readonly translateService;
|
|
3914
3916
|
private readonly viewContainerRef;
|
|
3917
|
+
readonly showLabel: InputSignal<boolean>;
|
|
3915
3918
|
readonly dialogContent: Signal<TemplateRef<unknown>>;
|
|
3916
3919
|
readonly updatedColumns: WritableSignal<KitGridColumnConfig[]>;
|
|
3917
3920
|
readonly kitButtonType: typeof KitButtonType;
|
|
@@ -3925,7 +3928,7 @@ declare class KitGridColumnManagerComponent {
|
|
|
3925
3928
|
close(): void;
|
|
3926
3929
|
checkChanges(): void;
|
|
3927
3930
|
static ɵfac: i0.ɵɵFactoryDeclaration<KitGridColumnManagerComponent, never>;
|
|
3928
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<KitGridColumnManagerComponent, "kit-grid-column-manager", never, {}, {}, never, never, true, never>;
|
|
3931
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<KitGridColumnManagerComponent, "kit-grid-column-manager", never, { "showLabel": { "alias": "showLabel"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
3929
3932
|
}
|
|
3930
3933
|
|
|
3931
3934
|
declare class KitGridDetailsButtonComponent {
|
|
@@ -3967,6 +3970,7 @@ declare class KitEntityGridComponent<T> {
|
|
|
3967
3970
|
readonly showBreadcrumbs: InputSignal<boolean>;
|
|
3968
3971
|
readonly pageSizes: InputSignal<boolean | number[] | undefined>;
|
|
3969
3972
|
readonly gridViewChanged: OutputEmitterRef<void>;
|
|
3973
|
+
readonly searchIsOpen: WritableSignal<boolean>;
|
|
3970
3974
|
readonly kitGridComponent: Signal<KitGridComponent<T> | undefined>;
|
|
3971
3975
|
readonly gridExportComponent: Signal<KitGridExportComponent<T> | undefined>;
|
|
3972
3976
|
readonly columns: Signal<readonly KitGridColumnComponent[]>;
|