angular-slickgrid 7.0.3 → 7.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/README.md +3 -0
- package/app/modules/angular-slickgrid/components/angular-slickgrid.component.d.ts +4 -2
- package/esm2022/app/modules/angular-slickgrid/components/angular-slickgrid.component.mjs +16 -6
- package/fesm2022/angular-slickgrid.mjs +15 -5
- package/fesm2022/angular-slickgrid.mjs.map +1 -1
- package/package.json +8 -8
package/README.md
CHANGED
|
@@ -16,6 +16,9 @@ One of the best JavasSript datagrid [SlickGrid](https://github.com/mleibman/Slic
|
|
|
16
16
|
### License
|
|
17
17
|
[MIT License](LICENSE)
|
|
18
18
|
|
|
19
|
+
## Documentation
|
|
20
|
+
A new [Documentation](https://ghiscoding.gitbook.io/angular-slickgrid/getting-started/quick-start) website is powered by GitBook.
|
|
21
|
+
|
|
19
22
|
## Installation
|
|
20
23
|
A good starting point is the **[Docs - Quick Start](https://ghiscoding.gitbook.io/angular-slickgrid/getting-started/quick-start)** and/or simply clone the [Angular-Slickgrid Demos](https://github.com/ghiscoding/angular-slickgrid-demos) repository. Please review all documentation and closed issues before opening any new issue, also consider asking installation and/or general questions on [Stack Overflow](https://stackoverflow.com/search?tab=newest&q=slickgrid) unless you think there's a bug with the library.
|
|
21
24
|
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { AfterViewInit, ApplicationRef, ChangeDetectorRef, ElementRef, EventEmitter, OnDestroy } from '@angular/core';
|
|
1
|
+
import { AfterViewInit, ApplicationRef, ChangeDetectorRef, ElementRef, EventEmitter, OnDestroy, TemplateRef } from '@angular/core';
|
|
2
2
|
import { TranslateService } from '@ngx-translate/core';
|
|
3
3
|
import { BackendServiceApi, Column, EventSubscription, ExternalResource, Locale, Metrics, Pagination, RxJsFacade, ServicePagination, SlickDataView, SlickEventHandler, SlickGrid } from '@slickgrid-universal/common';
|
|
4
4
|
import { ExtensionUtility, SlickGroupItemMetadataProvider, BackendUtilityService, CollectionService, ExtensionService, FilterFactory, FilterService, GridEventService, GridService, GridStateService, GroupingAndColspanService, PaginationService, ResizerService, SharedService, SortService, TreeDataService } from '@slickgrid-universal/common';
|
|
@@ -91,6 +91,8 @@ export declare class AngularSlickgridComponent<TData = any> implements AfterView
|
|
|
91
91
|
set isDatasetInitialized(isInitialized: boolean);
|
|
92
92
|
set isDatasetHierarchicalInitialized(isInitialized: boolean);
|
|
93
93
|
get registeredResources(): ExternalResource[];
|
|
94
|
+
slickgridHeader?: TemplateRef<any>;
|
|
95
|
+
slickgridFooter?: TemplateRef<any>;
|
|
94
96
|
constructor(angularUtilService: AngularUtilService, appRef: ApplicationRef, cd: ChangeDetectorRef, containerService: ContainerService, elm: ElementRef, translate: TranslateService, translaterService: TranslaterService, forRootConfig: GridOption, externalServices: ExternalTestingDependencies);
|
|
95
97
|
ngAfterViewInit(): void;
|
|
96
98
|
ngOnDestroy(): void;
|
|
@@ -197,5 +199,5 @@ export declare class AngularSlickgridComponent<TData = any> implements AfterView
|
|
|
197
199
|
*/
|
|
198
200
|
protected updateEditorCollection<T = any>(column: Column<T>, newCollection: T[]): void;
|
|
199
201
|
static ɵfac: i0.ɵɵFactoryDeclaration<AngularSlickgridComponent<any>, [null, null, null, null, null, { optional: true; }, { optional: true; }, null, null]>;
|
|
200
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AngularSlickgridComponent<any>, "angular-slickgrid", never, { "customDataView": { "alias": "customDataView"; "required": false; }; "gridId": { "alias": "gridId"; "required": false; }; "gridOptions": { "alias": "gridOptions"; "required": false; }; "paginationOptions": { "alias": "paginationOptions"; "required": false; }; "columnDefinitions": { "alias": "columnDefinitions"; "required": false; }; "dataset": { "alias": "dataset"; "required": false; }; "datasetHierarchical": { "alias": "datasetHierarchical"; "required": false; }; }, { "columnDefinitionsChange": "columnDefinitionsChange"; },
|
|
202
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AngularSlickgridComponent<any>, "angular-slickgrid", never, { "customDataView": { "alias": "customDataView"; "required": false; }; "gridId": { "alias": "gridId"; "required": false; }; "gridOptions": { "alias": "gridOptions"; "required": false; }; "paginationOptions": { "alias": "paginationOptions"; "required": false; }; "columnDefinitions": { "alias": "columnDefinitions"; "required": false; }; "dataset": { "alias": "dataset"; "required": false; }; "datasetHierarchical": { "alias": "datasetHierarchical"; "required": false; }; }, { "columnDefinitionsChange": "columnDefinitionsChange"; }, ["slickgridHeader", "slickgridFooter"], never, false, never>;
|
|
201
203
|
}
|