Christian Blavier
Christian Blavier
You can also override `neotoma` dependency right from your mix file: ``` {:neotoma, "~> 1.7.3", manager: :rebar3, override: true}, ```
It sure looks non trivial 😅 I'm quite skilled in Elixir, but haven't been coding anything in C++ for 20y. Still I would really like to help, so please drop...
Hey, your use case sounds legit, so we have to make it work :) Let me think about it and we'll figure something out!
I didn't have much time to work on this, but I think we need a generic solution that would work for any component initialized in a hidden state, such as...
Thank you, it's indeed a more versatile solution 👍 I'll start working on it next week.
I started prototyping the feature. Looking good so far! ```elixir defmodule Storybook.Components.Modal do use PhxLiveStorybook.Entry, :component def function, do: &PhxLiveStorybookSampleWeb.Components.Modal.modal/1 def template do """ Open modal """ end def stories...
I extended this solution to also work with components that don't rely on JS commands but need external assigns, like a modal that takes a `show={true}` or `show={false}` assign to...
I'm also a bit worried about datatypes and had to do some _special handling_ for booleans but I don't want to overcomplicate if this is not required (that's already quite...
I just figured out that types are actually defined in story attributes 🤦♂️ So if we are using: `phx-click="set-story-assign/story_id/temperature/42.2"` within a story declaring a matching attribute, then `"42.2"` is casted...