nuxeo-development-framework 5.1.4 → 5.1.6
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/bundles/nuxeo-development-framework.umd.js +15 -32
- package/bundles/nuxeo-development-framework.umd.js.map +1 -1
- package/esm2015/lib/components/custom-toastr/components/custom-toastr/custom-toastr.component.js +4 -22
- package/esm2015/lib/components/documents/components/document-upload/document-upload.component.js +2 -2
- package/esm2015/lib/components/dynamic-table/dynamic-table/dynamic-table.component.js +2 -2
- package/esm2015/lib/components/table/table/table.component.js +9 -10
- package/fesm2015/nuxeo-development-framework.js +13 -32
- package/fesm2015/nuxeo-development-framework.js.map +1 -1
- package/lib/components/custom-toastr/components/custom-toastr/custom-toastr.component.d.ts +1 -1
- package/lib/components/table/table/table.component.d.ts +3 -1
- package/package.json +1 -1
|
@@ -17,7 +17,7 @@ export declare class CustomToastrComponent extends Toast implements OnInit {
|
|
|
17
17
|
private onDestroy$;
|
|
18
18
|
constructor(_environment: Record<string, any>, toastrService: ToastrService, toastPackage: ToastPackage, translate: TranslateService, userPreferenceService?: UserPreferencesService);
|
|
19
19
|
ngOnInit(): void;
|
|
20
|
-
|
|
20
|
+
clear(): void;
|
|
21
21
|
static ɵfac: i0.ɵɵFactoryDeclaration<CustomToastrComponent, never>;
|
|
22
22
|
static ɵcmp: i0.ɵɵComponentDeclaration<CustomToastrComponent, "cts-custom-toastr", never, {}, {}, never, never>;
|
|
23
23
|
}
|
|
@@ -114,7 +114,9 @@ export declare class TableComponent implements OnInit, OnChanges {
|
|
|
114
114
|
rowDetails(event: any): void;
|
|
115
115
|
iconSelected(event: MouseEvent, row: any): void;
|
|
116
116
|
performAction(singleRow: any, actionType: any): void;
|
|
117
|
-
onSelect(
|
|
117
|
+
onSelect({ selected }: {
|
|
118
|
+
selected: any;
|
|
119
|
+
}): void;
|
|
118
120
|
onSort(event: any): void;
|
|
119
121
|
assignTableColumns(event: any): void;
|
|
120
122
|
onResize(width: any): void;
|