angular-slickgrid 4.0.0 → 4.1.0
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/app/modules/angular-slickgrid/components/angular-slickgrid.component.d.ts +2 -3
- package/app/modules/angular-slickgrid/extensions/slickRowDetailView.d.ts +3 -3
- package/esm2020/app/modules/angular-slickgrid/components/angular-slickgrid.component.mjs +6 -7
- package/esm2020/app/modules/angular-slickgrid/extensions/slickRowDetailView.mjs +3 -4
- package/esm2020/app/modules/angular-slickgrid/modules/angular-slickgrid.module.mjs +4 -4
- package/esm2020/app/modules/angular-slickgrid/services/angularUtil.service.mjs +3 -3
- package/esm2020/app/modules/angular-slickgrid/services/bsDropdown.service.mjs +3 -3
- package/esm2020/app/modules/angular-slickgrid/services/container.service.mjs +3 -3
- package/esm2020/app/modules/angular-slickgrid/services/translater.service.mjs +3 -3
- package/fesm2015/angular-slickgrid.mjs +22 -22
- package/fesm2015/angular-slickgrid.mjs.map +1 -1
- package/fesm2020/angular-slickgrid.mjs +22 -22
- package/fesm2020/angular-slickgrid.mjs.map +1 -1
- package/package.json +10 -10
|
@@ -8,8 +8,7 @@ import 'slickgrid/slick.grid';
|
|
|
8
8
|
import 'slickgrid/slick.dataview';
|
|
9
9
|
import { AfterViewInit, ApplicationRef, ChangeDetectorRef, ElementRef, OnDestroy } from '@angular/core';
|
|
10
10
|
import { TranslateService } from '@ngx-translate/core';
|
|
11
|
-
import {
|
|
12
|
-
import { BackendServiceApi, Column, ExternalResource, Locale, Metrics, Pagination, ServicePagination, SlickDataView, SlickEventHandler, SlickGrid, BackendUtilityService, CollectionService, ExtensionService, ExtensionUtility, FilterFactory, FilterService, GridEventService, GridService, GridStateService, GroupingAndColspanService, PaginationService, ResizerService, RxJsFacade, SharedService, SlickGroupItemMetadataProvider, SortService, TreeDataService } from '@slickgrid-universal/common';
|
|
11
|
+
import { BackendServiceApi, Column, EventSubscription, ExternalResource, Locale, Metrics, Pagination, ServicePagination, SlickDataView, SlickEventHandler, SlickGrid, BackendUtilityService, CollectionService, ExtensionService, ExtensionUtility, FilterFactory, FilterService, GridEventService, GridService, GridStateService, GroupingAndColspanService, PaginationService, ResizerService, RxJsFacade, SharedService, SlickGroupItemMetadataProvider, SortService, TreeDataService } from '@slickgrid-universal/common';
|
|
13
12
|
import { SlickEmptyWarningComponent } from '@slickgrid-universal/empty-warning-component';
|
|
14
13
|
import { SlickFooterComponent } from '@slickgrid-universal/custom-footer-component';
|
|
15
14
|
import { SlickPaginationComponent } from '@slickgrid-universal/pagination-component';
|
|
@@ -56,7 +55,7 @@ export declare class AngularSlickgridComponent implements AfterViewInit, OnDestr
|
|
|
56
55
|
gridOptions: GridOption;
|
|
57
56
|
paginationService: PaginationService;
|
|
58
57
|
};
|
|
59
|
-
subscriptions:
|
|
58
|
+
subscriptions: EventSubscription[];
|
|
60
59
|
slickEmptyWarning?: SlickEmptyWarningComponent;
|
|
61
60
|
slickFooter?: SlickFooterComponent;
|
|
62
61
|
slickPagination?: SlickPaginationComponent;
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import 'slickgrid/plugins/slick.rowdetailview';
|
|
2
2
|
import 'slickgrid/plugins/slick.rowselectionmodel';
|
|
3
3
|
import { ApplicationRef, ComponentRef, Type, ViewContainerRef } from '@angular/core';
|
|
4
|
-
import { RxJsFacade, SlickEventHandler, SlickGrid, SlickRowSelectionModel } from '@slickgrid-universal/common';
|
|
4
|
+
import { EventSubscription, RxJsFacade, SlickEventHandler, SlickGrid, SlickRowSelectionModel } from '@slickgrid-universal/common';
|
|
5
5
|
import { EventPubSubService } from '@slickgrid-universal/event-pub-sub';
|
|
6
6
|
import { SlickRowDetailView as UniversalSlickRowDetailView } from '@slickgrid-universal/row-detail-view-plugin';
|
|
7
|
-
import { Observable, Subject
|
|
7
|
+
import { Observable, Subject } from 'rxjs';
|
|
8
8
|
import { GridOption, RowDetailView } from '../models/index';
|
|
9
9
|
import { AngularUtilService } from '../services/angularUtil.service';
|
|
10
10
|
export interface CreatedView {
|
|
@@ -23,7 +23,7 @@ export declare class SlickRowDetailView extends UniversalSlickRowDetailView {
|
|
|
23
23
|
protected _preloadComponent: Type<object> | undefined;
|
|
24
24
|
protected _views: CreatedView[];
|
|
25
25
|
protected _viewComponent: Type<object>;
|
|
26
|
-
protected _subscriptions:
|
|
26
|
+
protected _subscriptions: EventSubscription[];
|
|
27
27
|
protected _userProcessFn: (item: any) => Promise<any> | Observable<any> | Subject<any>;
|
|
28
28
|
constructor(angularUtilService: AngularUtilService, appRef: ApplicationRef, eventPubSubService: EventPubSubService, gridContainerElement: HTMLDivElement, rxjs?: RxJsFacade);
|
|
29
29
|
get addonOptions(): import("@slickgrid-universal/common").RowDetailViewOption;
|