ngx-lite-form 1.4.3 → 1.4.4
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 +10 -3
- package/fesm2022/ngx-lite-form.mjs +34 -28
- package/fesm2022/ngx-lite-form.mjs.map +1 -1
- package/index.d.ts +3 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -472,6 +472,7 @@ declare class LiteTable<T = any> {
|
|
|
472
472
|
direction: SortDirection;
|
|
473
473
|
}>;
|
|
474
474
|
selectionChange: _angular_core.OutputEmitterRef<T[]>;
|
|
475
|
+
rowClick: _angular_core.OutputEmitterRef<T>;
|
|
475
476
|
private internalSortState;
|
|
476
477
|
private selectedRows;
|
|
477
478
|
openMenuIndex: number | null;
|
|
@@ -488,13 +489,14 @@ declare class LiteTable<T = any> {
|
|
|
488
489
|
areAllVisibleSelected(): boolean;
|
|
489
490
|
isSomeVisibleSelected(): boolean;
|
|
490
491
|
toggleSelectAllVisible(checked: boolean): void;
|
|
492
|
+
onRowClick(row: T): void;
|
|
491
493
|
toggleMenu(rowIndex: number, event?: MouseEvent): void;
|
|
492
494
|
onMenuItemClick(action: string, row: T, event?: MouseEvent): void;
|
|
493
495
|
onDocumentClick(): void;
|
|
494
496
|
onSort(column: TableColumn): void;
|
|
495
497
|
getSortDirection(columnKey: string): SortDirection;
|
|
496
498
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<LiteTable<any>, never>;
|
|
497
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<LiteTable<any>, "lite-table", never, { "table": { "alias": "table"; "required": true; "isSignal": true; }; }, { "pageChange": "pageChange"; "itemsPerPageChange": "itemsPerPageChange"; "menuAction": "menuAction"; "sortChange": "sortChange"; "selectionChange": "selectionChange"; }, never, never, true, never>;
|
|
499
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<LiteTable<any>, "lite-table", never, { "table": { "alias": "table"; "required": true; "isSignal": true; }; }, { "pageChange": "pageChange"; "itemsPerPageChange": "itemsPerPageChange"; "menuAction": "menuAction"; "sortChange": "sortChange"; "selectionChange": "selectionChange"; "rowClick": "rowClick"; }, never, never, true, never>;
|
|
498
500
|
}
|
|
499
501
|
|
|
500
502
|
interface LitePanelAction {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ngx-lite-form",
|
|
3
|
-
"version": "1.4.
|
|
3
|
+
"version": "1.4.4",
|
|
4
4
|
"description": "Lightweight Angular 20+ form library with 15+ standalone components: input, textarea, select, multi-select, radio, checkbox, password, date picker, datetime picker, file upload, data table, pagination, modal panel, loading indicators, and toast notifications",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"angular",
|