@arsedizioni/ars-utils 18.2.145 → 18.2.147
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/clipper.common/common/definitions.d.ts +17 -3
- package/clipper.ui/ui/document-manager/document-manager.d.ts +1 -1
- package/clipper.ui/ui/search-result-manager/search-result-manager.d.ts +4 -0
- package/esm2022/clipper.common/common/definitions.mjs +16 -8
- package/esm2022/clipper.common/common/services/clipper.service.mjs +2 -1
- package/esm2022/clipper.ui/ui/document-manager/document-manager.mjs +1 -1
- package/esm2022/clipper.ui/ui/search-result-manager/search-result-manager.mjs +9 -1
- package/fesm2022/arsedizioni-ars-utils-clipper.common.mjs +16 -7
- package/fesm2022/arsedizioni-ars-utils-clipper.common.mjs.map +1 -1
- package/fesm2022/arsedizioni-ars-utils-clipper.ui.mjs +8 -0
- package/fesm2022/arsedizioni-ars-utils-clipper.ui.mjs.map +1 -1
- package/package.json +12 -12
|
@@ -1203,6 +1203,14 @@ class ClipperSearchResultManager extends ClipperDocumentManager {
|
|
|
1203
1203
|
this.changeDetector.markForCheck();
|
|
1204
1204
|
}
|
|
1205
1205
|
/**
|
|
1206
|
+
* Save current document list or just the selected documents as a csv
|
|
1207
|
+
*/
|
|
1208
|
+
exportResults() {
|
|
1209
|
+
if (this.snapshot?.total > 0 || this.hasAnySelection()) {
|
|
1210
|
+
this.exportItems(this.getSeletectIds(), this.filterParams);
|
|
1211
|
+
}
|
|
1212
|
+
}
|
|
1213
|
+
/**
|
|
1206
1214
|
* Return item state css class
|
|
1207
1215
|
* @param item : the item to evaluate
|
|
1208
1216
|
*/
|