@indigina/ui-kit 1.1.310 → 1.1.312
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
|
@@ -12,10 +12,10 @@ import { FileInfo } from '@progress/kendo-angular-upload';
|
|
|
12
12
|
import { BehaviorSubject, Observable } from 'rxjs';
|
|
13
13
|
import { PopupSettings as PopupSettings$1 } from '@progress/kendo-angular-popup';
|
|
14
14
|
import { SelectEvent } from '@progress/kendo-angular-layout';
|
|
15
|
+
import { NavigationExtras, QueryParamsHandling, CanActivateFn } from '@angular/router';
|
|
15
16
|
import { RowClassArgs, PageChangeEvent, DetailExpandEvent, DetailCollapseEvent, CellClickEvent, ExcelExportEvent, GridComponent, PagerSettings } from '@progress/kendo-angular-grid';
|
|
16
17
|
import { SortDescriptor, FilterDescriptor, CompositeFilterDescriptor } from '@progress/kendo-data-query';
|
|
17
18
|
import { PDFOptions, PaperSize } from '@progress/kendo-drawing/dist/npm/pdf';
|
|
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';
|
|
@@ -2672,15 +2672,17 @@ interface KitCard {
|
|
|
2672
2672
|
}
|
|
2673
2673
|
interface KitCardItem {
|
|
2674
2674
|
label: string;
|
|
2675
|
-
link:
|
|
2675
|
+
link: string[];
|
|
2676
2676
|
count?: number;
|
|
2677
2677
|
icon?: KitSvgIcon;
|
|
2678
2678
|
iconType?: KitSvgIconType;
|
|
2679
2679
|
tooltip?: string;
|
|
2680
2680
|
disabled?: boolean;
|
|
2681
|
+
navigationExtras?: NavigationExtras;
|
|
2681
2682
|
}
|
|
2682
2683
|
|
|
2683
2684
|
declare class KitCardComponent {
|
|
2685
|
+
private readonly router;
|
|
2684
2686
|
/**
|
|
2685
2687
|
* Defines card data
|
|
2686
2688
|
*/
|
|
@@ -2693,6 +2695,7 @@ declare class KitCardComponent {
|
|
|
2693
2695
|
* Defines whether the items list will be expanded
|
|
2694
2696
|
*/
|
|
2695
2697
|
itemsExpanded: boolean;
|
|
2698
|
+
hideToggle: boolean;
|
|
2696
2699
|
/**
|
|
2697
2700
|
* An action which is emitted when action button clicked
|
|
2698
2701
|
*/
|
|
@@ -2706,8 +2709,9 @@ declare class KitCardComponent {
|
|
|
2706
2709
|
readonly KitButtonKind: typeof KitButtonKind;
|
|
2707
2710
|
readonly KitTooltipPosition: typeof KitTooltipPosition;
|
|
2708
2711
|
toggleList(): void;
|
|
2712
|
+
openItemLink(item: KitCardItem): void;
|
|
2709
2713
|
static ɵfac: i0.ɵɵFactoryDeclaration<KitCardComponent, never>;
|
|
2710
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<KitCardComponent, "kit-card", never, { "data": { "alias": "data"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; "itemsExpanded": { "alias": "itemsExpanded"; "required": false; }; }, { "buttonClicked": "buttonClicked"; "toggleClicked": "toggleClicked"; }, never, never, true, never>;
|
|
2714
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<KitCardComponent, "kit-card", never, { "data": { "alias": "data"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; "itemsExpanded": { "alias": "itemsExpanded"; "required": false; }; "hideToggle": { "alias": "hideToggle"; "required": false; }; }, { "buttonClicked": "buttonClicked"; "toggleClicked": "toggleClicked"; }, never, never, true, never>;
|
|
2711
2715
|
}
|
|
2712
2716
|
|
|
2713
2717
|
interface KitBreadcrumbsItem {
|