@devjuliovilla/jv-ui 1.5.4 → 1.5.5

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@devjuliovilla/jv-ui",
3
- "version": "1.5.4",
3
+ "version": "1.5.5",
4
4
  "description": "Accessibility-first Angular component library — components, forms, data grids, dialogs, layout, services, and i18n infrastructure built with signals and standalone APIs.",
5
5
  "author": "@devjuliovilla",
6
6
  "license": "MIT",
@@ -799,7 +799,7 @@ declare class JvGridComponent<T = any> {
799
799
  protected onActionClick(action: JvGridAction<T>, row: T): void;
800
800
  protected onColumnFilterChange(col: JvGridColumn<T>, value: string): void;
801
801
  protected getRowLabel(row: T, index: number): string;
802
- protected startEdit(row: T, col: JvGridColumn<T>, event: MouseEvent): void;
802
+ protected startEdit(row: T, col: JvGridColumn<T>, event: Event): void;
803
803
  protected commitEdit(row: T, col: JvGridColumn<T>, value: unknown): void;
804
804
  protected cancelEdit(): void;
805
805
  protected onEditValueChange(row: T, col: JvGridColumn<T>, value: string): void;