Closed williamweckl closed 1 year ago
I'm seeing that probably the issue was already solved by https://github.com/akira/exq_ui/commit/3c03bbaa7caaaee9f5983ba36025bf302424c13d .
Maybe you just need to release an updated of the lib at hex.pm. :)
@akira could you cut a release
@ananthakumaran sorry missed this!. I just released v0.13.0.
Also, FYI, I added github workflow to cut release on new tag pushes which can be used in future.
After an update of live view dep of my app, I got this error:
Using LiveView 0.17 there was some warnings of the function
live_component
being deprecated. Looks like they have removed it at the new version.Instead of using
<%= live_component SomeComponent, id: "someid" %>
ExqUI need to be changed to use<.live_component module={SomeComponent} id="someid" />
.The change was being made at 0.17.0 according to their changelog: https://github.com/phoenixframework/phoenix_live_view/blob/master/CHANGELOG.md#enhancements-9