angular-slickgrid 8.5.2 → 8.6.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 +1 -1
- package/esm2022/app/modules/angular-slickgrid/components/angular-slickgrid.component.mjs +79 -81
- package/esm2022/app/modules/angular-slickgrid/modules/angular-slickgrid.module.mjs +4 -4
- package/esm2022/app/modules/angular-slickgrid/services/angularUtil.service.mjs +3 -3
- package/esm2022/app/modules/angular-slickgrid/services/container.service.mjs +3 -3
- package/esm2022/app/modules/angular-slickgrid/services/translater.service.mjs +3 -3
- package/fesm2022/angular-slickgrid.mjs +92 -94
- package/fesm2022/angular-slickgrid.mjs.map +1 -1
- package/package.json +7 -7
|
@@ -169,7 +169,7 @@ export declare class AngularSlickgridComponent<TData = any> implements AfterView
|
|
|
169
169
|
protected loadRowSelectionPresetWhenExists(): void;
|
|
170
170
|
hasBackendInfiniteScroll(gridOptions?: GridOption): boolean;
|
|
171
171
|
protected mergeGridOptions(gridOptions: GridOption): GridOption;
|
|
172
|
-
/** Add a register a new external resource, user could also optional dispose all previous resources before pushing any new resources to the resources array list. */
|
|
172
|
+
/** Add a register of a new external resource, user could also optional dispose all previous resources before pushing any new resources to the resources array list. */
|
|
173
173
|
registerExternalResources(resources: ExternalResource[], disposePreviousResources?: boolean): void;
|
|
174
174
|
resetExternalResources(): void;
|
|
175
175
|
/** Pre-Register any Resource that don't require SlickGrid to be instantiated (for example RxJS Resource & RowDetail) */
|