@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/README.md +268 -99
- package/fesm2022/devjuliovilla-jv-ui.mjs +696 -674
- package/fesm2022/devjuliovilla-jv-ui.mjs.map +1 -1
- package/package.json +1 -1
- package/types/devjuliovilla-jv-ui.d.ts +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@devjuliovilla/jv-ui",
|
|
3
|
-
"version": "1.5.
|
|
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:
|
|
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;
|