@yuuvis/client-framework 3.8.0 → 3.8.2
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/yuuvis-client-framework-forms.mjs +5 -1
- package/fesm2022/yuuvis-client-framework-forms.mjs.map +1 -1
- package/fesm2022/yuuvis-client-framework-metadata-form-defaults.mjs +2 -2
- package/fesm2022/yuuvis-client-framework-metadata-form-defaults.mjs.map +1 -1
- package/fesm2022/yuuvis-client-framework-object-details.mjs +47 -1
- package/fesm2022/yuuvis-client-framework-object-details.mjs.map +1 -1
- package/fesm2022/yuuvis-client-framework-smart-search.mjs +233 -19
- package/fesm2022/yuuvis-client-framework-smart-search.mjs.map +1 -1
- package/fesm2022/yuuvis-client-framework-tile-list.mjs +4 -0
- package/fesm2022/yuuvis-client-framework-tile-list.mjs.map +1 -1
- package/fesm2022/yuuvis-client-framework.mjs +245 -227
- package/fesm2022/yuuvis-client-framework.mjs.map +1 -1
- package/lib/assets/i18n/de.json +31 -24
- package/lib/assets/i18n/en.json +31 -24
- package/package.json +5 -5
- package/types/yuuvis-client-framework-smart-search.d.ts +114 -5
- package/types/yuuvis-client-framework.d.ts +1 -3
|
@@ -43,6 +43,10 @@ class TileActionsMenuComponent {
|
|
|
43
43
|
event.preventDefault();
|
|
44
44
|
if (action.disabled)
|
|
45
45
|
return;
|
|
46
|
+
// stopPropagation (above) prevents the click from bubbling to the tile underneath, but it also
|
|
47
|
+
// suppresses MatMenu's native close-on-item-click. Close the panel explicitly so the action menu
|
|
48
|
+
// does not stay open behind any overlay the action opens (e.g. the bookmark form popup).
|
|
49
|
+
this.matMenu().closed.emit('click');
|
|
46
50
|
this.itemSelect.emit(action);
|
|
47
51
|
}
|
|
48
52
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.12", ngImport: i0, type: TileActionsMenuComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|