@codetectonics/mantle 1.2.3 → 1.2.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/index.d.ts CHANGED
@@ -1700,14 +1700,14 @@ interface ListPageService {
1700
1700
  noun(): string;
1701
1701
  listColumns(): ListPageColumn[];
1702
1702
  searchFields(): DynamicFormField[];
1703
+ onListContentLoaded(content: any[]): void;
1703
1704
  listPageExportOptions(): ListPageExportOption[];
1704
1705
  listPageBulkExportOptions(): ListPageBulkExportOption[];
1705
1706
  additionalListPageButtons(): ListPageButton[];
1706
1707
  getList(params: WebApiListRequest): Observable<WebApiListResponse>;
1707
1708
  onRecordChecked(record: any): void;
1708
1709
  onRecordUnchecked(record: any): void;
1709
- onCheckAll(records: any[]): void;
1710
- onUncheckAll(): void;
1710
+ isRowSelectable(record: any): boolean;
1711
1711
  openParent(): void;
1712
1712
  openRecord(record: any): void;
1713
1713
  openForm(record?: any, initData?: any): void;
@@ -3139,13 +3139,13 @@ declare class FeatureConfigService implements WebApiCrudAdapter, WebsocketAdapte
3139
3139
  beforeSave(value: any): void;
3140
3140
  onSaveSuccess(response: WebApiSaveResponse): void;
3141
3141
  onSaveFailure(response: WebApiSaveResponse): void;
3142
+ onListContentLoaded(content: any[]): void;
3142
3143
  listPageExportOptions(): ListPageExportOption[];
3143
3144
  listPageBulkExportOptions(): ListPageBulkExportOption[];
3144
3145
  additionalListPageButtons(): ListPageButton[];
3145
3146
  onRecordChecked(record: any): void;
3146
3147
  onRecordUnchecked(record: any): void;
3147
- onCheckAll(records: any[]): void;
3148
- onUncheckAll(): void;
3148
+ isRowSelectable(record: any): boolean;
3149
3149
  }
3150
3150
 
3151
3151
  interface ExportPageService {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@codetectonics/mantle",
3
- "version": "1.2.3",
3
+ "version": "1.2.4",
4
4
  "dependencies": {
5
5
  "@angular/animations": "^20",
6
6
  "@angular/cdk": "^20",