@indigina/ui-kit 1.1.134 → 1.1.135
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.
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import { Signal, TemplateRef } from '@angular/core';
|
|
1
|
+
import { OutputEmitterRef, Signal, TemplateRef } from '@angular/core';
|
|
2
|
+
import { DataMoveEvent } from '@progress/kendo-angular-sortable';
|
|
2
3
|
import * as i0 from "@angular/core";
|
|
3
4
|
export declare class KitSortableComponent<T> {
|
|
4
5
|
/**
|
|
@@ -17,8 +18,9 @@ export declare class KitSortableComponent<T> {
|
|
|
17
18
|
* Defines the css class which is applied to the active item.
|
|
18
19
|
*/
|
|
19
20
|
activeItemClass?: string;
|
|
21
|
+
readonly onDragEnd: OutputEmitterRef<DataMoveEvent>;
|
|
20
22
|
readonly itemTemplate: Signal<TemplateRef<HTMLElement> | undefined>;
|
|
21
23
|
get columnsCount(): number | null;
|
|
22
24
|
static ɵfac: i0.ɵɵFactoryDeclaration<KitSortableComponent<any>, never>;
|
|
23
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<KitSortableComponent<any>, "kit-sortable", never, { "items": { "alias": "items"; "required": false; }; "columnCount": { "alias": "columnCount"; "required": false; }; "itemClass": { "alias": "itemClass"; "required": false; }; "activeItemClass": { "alias": "activeItemClass"; "required": false; }; }, {}, ["itemTemplate"], never, true, never>;
|
|
25
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<KitSortableComponent<any>, "kit-sortable", never, { "items": { "alias": "items"; "required": false; }; "columnCount": { "alias": "columnCount"; "required": false; }; "itemClass": { "alias": "itemClass"; "required": false; }; "activeItemClass": { "alias": "activeItemClass"; "required": false; }; }, { "onDragEnd": "onDragEnd"; }, ["itemTemplate"], never, true, never>;
|
|
24
26
|
}
|
|
@@ -17,10 +17,13 @@ export declare class KitGridColumnManagerComponent {
|
|
|
17
17
|
readonly kitButtonKind: typeof KitButtonKind;
|
|
18
18
|
readonly kitButtonIconPosition: typeof KitButtonIconPosition;
|
|
19
19
|
readonly kitSvgIcon: typeof KitSvgIcon;
|
|
20
|
+
readonly hasUnsavedChanges: WritableSignal<boolean>;
|
|
20
21
|
constructor(kitDialogService: KitDialogService, store: Store, translateService: TranslateService, viewContainerRef: ViewContainerRef);
|
|
21
22
|
openColumnsDialog(): void;
|
|
22
23
|
onColumnVisibilityChange(event: boolean, column: KitGridColumnConfig): void;
|
|
23
24
|
applyChanges(): void;
|
|
25
|
+
close(): void;
|
|
26
|
+
checkChanges(): void;
|
|
24
27
|
static ɵfac: i0.ɵɵFactoryDeclaration<KitGridColumnManagerComponent, never>;
|
|
25
28
|
static ɵcmp: i0.ɵɵComponentDeclaration<KitGridColumnManagerComponent, "kit-grid-column-manager", never, {}, {}, never, never, true, never>;
|
|
26
29
|
}
|