@arsedizioni/ars-utils 19.0.83 → 19.0.85
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/fesm2022/arsedizioni-ars-utils-clipper.ui.mjs +4 -2
- package/fesm2022/arsedizioni-ars-utils-clipper.ui.mjs.map +1 -1
- package/fesm2022/arsedizioni-ars-utils-tinymce.mjs +3 -1
- package/fesm2022/arsedizioni-ars-utils-tinymce.mjs.map +1 -1
- package/fesm2022/arsedizioni-ars-utils-ui.application.mjs +7 -7
- package/fesm2022/arsedizioni-ars-utils-ui.application.mjs.map +1 -1
- package/package.json +1 -1
- package/ui.application/ui/components/file-input/file-input.component.d.ts +1 -1
- package/ui.application/ui/components/filter-bar/filter-bar.component.d.ts +1 -1
|
@@ -952,7 +952,9 @@ class ClipperDocumentComponent extends ClipperDocumentManager {
|
|
|
952
952
|
if (this.closing) {
|
|
953
953
|
this.closing.emit();
|
|
954
954
|
}
|
|
955
|
-
|
|
955
|
+
setTimeout(() => {
|
|
956
|
+
this.dialogRef.close();
|
|
957
|
+
}, 500);
|
|
956
958
|
}
|
|
957
959
|
/**
|
|
958
960
|
* Navigate to a new document
|
|
@@ -3244,7 +3246,7 @@ class ClipperBrowserComponent extends ClipperSearchResultManager {
|
|
|
3244
3246
|
*/
|
|
3245
3247
|
selectFilter(item) {
|
|
3246
3248
|
if (item && item.value.data) {
|
|
3247
|
-
this.filterSelector().select(item);
|
|
3249
|
+
this.filterSelector().select(item, false);
|
|
3248
3250
|
const filter = JSON.parse(item.value.data);
|
|
3249
3251
|
this.filterParams.searchId = item.value.id;
|
|
3250
3252
|
this.filterParams.searchName = item.value.name;
|