@indigina/ui-kit 1.1.289 → 1.1.291
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
|
@@ -15,7 +15,7 @@ import { SelectEvent } from '@progress/kendo-angular-layout';
|
|
|
15
15
|
import { RowClassArgs, PageChangeEvent, DetailExpandEvent, DetailCollapseEvent, CellClickEvent, ExcelExportEvent, GridComponent, PagerSettings } from '@progress/kendo-angular-grid';
|
|
16
16
|
import { SortDescriptor, FilterDescriptor, CompositeFilterDescriptor } from '@progress/kendo-data-query';
|
|
17
17
|
import { PDFOptions, PaperSize } from '@progress/kendo-drawing/dist/npm/pdf';
|
|
18
|
-
import { NavigationExtras, CanActivateFn } from '@angular/router';
|
|
18
|
+
import { NavigationExtras, QueryParamsHandling, CanActivateFn } from '@angular/router';
|
|
19
19
|
import { Store, StateContext, StateToken } from '@ngxs/store';
|
|
20
20
|
import { DataMoveEvent } from '@progress/kendo-angular-sortable';
|
|
21
21
|
import { InterpolatableTranslationObject, TranslateLoader, TranslationObject } from '@ngx-translate/core';
|
|
@@ -3899,6 +3899,7 @@ declare class KitGridExportComponent<T> {
|
|
|
3899
3899
|
readonly kitButtonType: typeof KitButtonType;
|
|
3900
3900
|
readonly kitButtonKind: typeof KitButtonKind;
|
|
3901
3901
|
readonly kitRadioButtonType: typeof KitRadioButtonType;
|
|
3902
|
+
readonly kitTooltipPosition: typeof KitTooltipPosition;
|
|
3902
3903
|
gridExportOptions: KitRadioButton<GridExportOptions>[];
|
|
3903
3904
|
isGridExporting: WritableSignal<boolean>;
|
|
3904
3905
|
get exportedColumns(): KitGridColumnConfig[];
|
|
@@ -3971,6 +3972,7 @@ declare class KitGridColumnManagerComponent {
|
|
|
3971
3972
|
readonly kitButtonIconPosition: typeof KitButtonIconPosition;
|
|
3972
3973
|
readonly kitSvgIcon: typeof KitSvgIcon;
|
|
3973
3974
|
readonly hasUnsavedChanges: WritableSignal<boolean>;
|
|
3975
|
+
readonly kitTooltipPosition: typeof KitTooltipPosition;
|
|
3974
3976
|
openColumnsDialog(): void;
|
|
3975
3977
|
onColumnVisibilityChange(event: boolean, column: KitGridColumnConfig): void;
|
|
3976
3978
|
applyChanges(): void;
|
|
@@ -3982,11 +3984,12 @@ declare class KitGridColumnManagerComponent {
|
|
|
3982
3984
|
|
|
3983
3985
|
declare class KitGridDetailsButtonComponent {
|
|
3984
3986
|
readonly link: InputSignal<string>;
|
|
3987
|
+
readonly queryParamsHandling: InputSignal<QueryParamsHandling | undefined>;
|
|
3985
3988
|
readonly kitTooltipPosition: typeof KitTooltipPosition;
|
|
3986
3989
|
readonly kitSvgIcon: typeof KitSvgIcon;
|
|
3987
3990
|
readonly kitSvgIconType: typeof KitSvgIconType;
|
|
3988
3991
|
static ɵfac: i0.ɵɵFactoryDeclaration<KitGridDetailsButtonComponent, never>;
|
|
3989
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<KitGridDetailsButtonComponent, "kit-grid-details-button", never, { "link": { "alias": "link"; "required": true; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
3992
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<KitGridDetailsButtonComponent, "kit-grid-details-button", never, { "link": { "alias": "link"; "required": true; "isSignal": true; }; "queryParamsHandling": { "alias": "queryParamsHandling"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
3990
3993
|
}
|
|
3991
3994
|
|
|
3992
3995
|
declare const KIT_DATE_FORMAT: string;
|
|
@@ -4020,6 +4023,7 @@ declare class KitEntityGridComponent<T> {
|
|
|
4020
4023
|
readonly pageSizes: InputSignal<boolean | number[] | undefined>;
|
|
4021
4024
|
readonly gridViewChanged: OutputEmitterRef<void>;
|
|
4022
4025
|
readonly rowClassFn: InputSignal<((context: KitGridRowClassArgs) => Record<string, boolean>) | undefined>;
|
|
4026
|
+
readonly kitTooltipPosition: typeof KitTooltipPosition;
|
|
4023
4027
|
readonly searchIsOpen: WritableSignal<boolean>;
|
|
4024
4028
|
readonly kitGridComponent: Signal<KitGridComponent<T> | undefined>;
|
|
4025
4029
|
readonly gridExportComponent: Signal<KitGridExportComponent<T> | undefined>;
|