@indigina/ui-kit 1.1.311 → 1.1.313
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 +40 -26
- package/fesm2022/indigina-ui-kit.mjs.map +1 -1
- package/index.d.ts +6 -3
- package/package.json +1 -1
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';
|
|
@@ -2407,7 +2407,7 @@ declare class KitPopupComponent implements OnInit, OnDestroy {
|
|
|
2407
2407
|
readonly closed: OutputEmitterRef<void>;
|
|
2408
2408
|
readonly kitButtonKind: typeof KitButtonKind;
|
|
2409
2409
|
readonly kitButtonType: typeof KitButtonType;
|
|
2410
|
-
private popupRef;
|
|
2410
|
+
private readonly popupRef;
|
|
2411
2411
|
get popupHTMLElement(): HTMLElement | null;
|
|
2412
2412
|
get isPopupOpen(): boolean;
|
|
2413
2413
|
get anchorElement(): HTMLElement;
|
|
@@ -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
|
*/
|
|
@@ -2707,6 +2709,7 @@ declare class KitCardComponent {
|
|
|
2707
2709
|
readonly KitButtonKind: typeof KitButtonKind;
|
|
2708
2710
|
readonly KitTooltipPosition: typeof KitTooltipPosition;
|
|
2709
2711
|
toggleList(): void;
|
|
2712
|
+
openItemLink(item: KitCardItem): void;
|
|
2710
2713
|
static ɵfac: i0.ɵɵFactoryDeclaration<KitCardComponent, never>;
|
|
2711
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>;
|
|
2712
2715
|
}
|