angular-slickgrid 7.3.0 → 7.3.1
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 -3
- package/esm2022/app/modules/angular-slickgrid/components/angular-slickgrid.component.mjs +8 -20
- 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 +20 -32
- package/fesm2022/angular-slickgrid.mjs.map +1 -1
- package/package.json +7 -7
|
@@ -21,7 +21,7 @@ export declare class AngularSlickgridComponent<TData = any> implements AfterView
|
|
|
21
21
|
protected readonly translate: TranslateService;
|
|
22
22
|
protected readonly translaterService: TranslaterService;
|
|
23
23
|
protected forRootConfig: GridOption;
|
|
24
|
-
protected _dataset?:
|
|
24
|
+
protected _dataset?: TData[] | null;
|
|
25
25
|
protected _columnDefinitions: Column[];
|
|
26
26
|
protected _currentDatasetLength: number;
|
|
27
27
|
protected _eventHandler: SlickEventHandler;
|
|
@@ -192,8 +192,6 @@ export declare class AngularSlickgridComponent<TData = any> implements AfterView
|
|
|
192
192
|
* then take back "editor.model" and make it the new "editor" so that SlickGrid Editor Factory still works
|
|
193
193
|
*/
|
|
194
194
|
protected swapInternalEditorToSlickGridFactoryEditor(columnDefinitions: Column[]): any[];
|
|
195
|
-
protected translateColumnHeaderTitleKeys(): void;
|
|
196
|
-
protected translateColumnGroupKeys(): void;
|
|
197
195
|
/**
|
|
198
196
|
* Update the "internalColumnEditor.collection" property.
|
|
199
197
|
* Since this is called after the async call resolves, the pointer will not be the same as the "column" argument passed.
|