Reputation: 223
We tried to upgrade aurelia-dialog from beta.3.0.0 to rc.1.0.3 and found that 2 problems in all our dialog views:
The header does not have width 100% as it was before, it only shows header text, looks like "width:-webkit-fit-content" affected this.
The dialog body became transparent, so we see underlying elements.
How to we avoid this?
Upvotes: 0
Views: 122
Reputation: 1110
Since rc.1 they switched their 'ai' prefix to 'ux', so now you have to type <ux-dialog>
instead of <ai-dialog>
This is probably the reason your layout isn't rendering right.
You can see the changelog here
Upvotes: 0