According to [`<wl-dialog>` documentation](https://github.com/andreasbm/weightless/tree/master/src/lib/dialog), 2 events should be dispatched: - `didhide` and - `didshow`. However, when I use the dialog, my event handlers for these 2 events are not called. eg. ```html <wl-dialog @didhide="${handleDialogClosed}" @didshow="${handleDialogOpened}" ...> </wl-dialog> ``` I've accidentally tried with `@didHide` and it works. No luck for `@didShow`.