@alaarab/ogrid-angular-material 2.0.8 → 2.0.9

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.
@@ -37,12 +37,14 @@ let PopoverCellEditorComponent = class PopoverCellEditorComponent {
37
37
  const col = this.column();
38
38
  if (!container || !this.showEditor() || typeof col.cellEditor !== 'function')
39
39
  return;
40
+ // eslint-disable-next-line @typescript-eslint/no-explicit-any
40
41
  const EditorComponent = col.cellEditor; // ComponentType
41
42
  const componentRef = createComponent(EditorComponent, {
42
43
  environmentInjector: this.envInjector,
43
44
  elementInjector: this.injector,
44
45
  });
45
46
  // Pass props to component instance
47
+ // eslint-disable-next-line @typescript-eslint/no-explicit-any
46
48
  Object.assign(componentRef.instance, props);
47
49
  componentRef.changeDetectorRef.detectChanges();
48
50
  // Append to DOM
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@alaarab/ogrid-angular-material",
3
- "version": "2.0.8",
3
+ "version": "2.0.9",
4
4
  "description": "OGrid Angular Material – MatTable-based data grid with sorting, filtering, pagination, column chooser, and CSV export.",
5
5
  "main": "dist/esm/index.js",
6
6
  "module": "dist/esm/index.js",
@@ -35,7 +35,7 @@
35
35
  "node": ">=18"
36
36
  },
37
37
  "dependencies": {
38
- "@alaarab/ogrid-angular": "2.0.7"
38
+ "@alaarab/ogrid-angular": "2.0.9"
39
39
  },
40
40
  "peerDependencies": {
41
41
  "@angular/cdk": "^21.0.0",