@indigina/ui-kit 1.1.580 → 1.1.582
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/package.json
CHANGED
|
@@ -3621,6 +3621,7 @@ declare class KitScrollNavigationComponent implements AfterViewInit, OnInit {
|
|
|
3621
3621
|
private handleSectionChanges;
|
|
3622
3622
|
private setLastSectionMinHeight;
|
|
3623
3623
|
private calculateLastSectionMinHeight;
|
|
3624
|
+
private getActiveSectionIndex;
|
|
3624
3625
|
static ɵfac: i0.ɵɵFactoryDeclaration<KitScrollNavigationComponent, never>;
|
|
3625
3626
|
static ɵcmp: i0.ɵɵComponentDeclaration<KitScrollNavigationComponent, "kit-scroll-navigation", never, { "isNavigationBtnDisabled": { "alias": "isNavigationBtnDisabled"; "required": false; "isSignal": true; }; "dropdownDefaultText": { "alias": "dropdownDefaultText"; "required": false; "isSignal": true; }; }, {}, ["sections"], never, true, never>;
|
|
3626
3627
|
}
|
|
@@ -5193,6 +5194,7 @@ declare class KitEntityGridComponent<T> implements OnInit {
|
|
|
5193
5194
|
readonly showSelectedRowsOnlyRequested: WritableSignal<boolean>;
|
|
5194
5195
|
readonly canShowSelectedRowsView: Signal<boolean>;
|
|
5195
5196
|
readonly selectedRowsViewLabel: Signal<string>;
|
|
5197
|
+
readonly displayedGridResults: Signal<KitDataResult<T> | undefined>;
|
|
5196
5198
|
readonly drawPdf: Signal<KitKendoDrawPdf<T> | undefined>;
|
|
5197
5199
|
readonly filters$: Observable<KitFilterItem[]>;
|
|
5198
5200
|
readonly gridState: Signal<KitGridDataState>;
|
|
@@ -5205,6 +5207,10 @@ declare class KitEntityGridComponent<T> implements OnInit {
|
|
|
5205
5207
|
readonly kitButtonKind: typeof KitButtonKind;
|
|
5206
5208
|
readonly isExporting: WritableSignal<boolean>;
|
|
5207
5209
|
readonly archiveModeEnabled: WritableSignal<boolean>;
|
|
5210
|
+
readonly resolveExportedData: () => Observable<{
|
|
5211
|
+
data: T[];
|
|
5212
|
+
total: number;
|
|
5213
|
+
}>;
|
|
5208
5214
|
private hasInitializedResetSelectionTracking;
|
|
5209
5215
|
private previousSearch;
|
|
5210
5216
|
private previousFilterSignature;
|
|
@@ -5220,7 +5226,8 @@ declare class KitEntityGridComponent<T> implements OnInit {
|
|
|
5220
5226
|
onRefreshButtonClick(): void;
|
|
5221
5227
|
onSelectedRowsViewToggle(): void;
|
|
5222
5228
|
onSelectionChange(event: KitGridSelectionChangeEvent): void;
|
|
5223
|
-
|
|
5229
|
+
private getSelectedRowsExportData;
|
|
5230
|
+
private getRowKey;
|
|
5224
5231
|
private getFilterSignature;
|
|
5225
5232
|
private resetSelectedRowsState;
|
|
5226
5233
|
static ɵfac: i0.ɵɵFactoryDeclaration<KitEntityGridComponent<any>, never>;
|