Mitchell Marino mitchell
  • Joined on 2024-01-30
mitchell closed issue MarinoDev/leptos_form_tool#22 2024-06-19 14:40:21 +00:00
Add tooltip field to controls
mitchell pushed to main at MarinoDev/leptos_form_tool 2024-06-19 14:13:25 +00:00
mitchell pushed to main at MarinoDev/leptos_form_tool 2024-06-18 23:30:19 +00:00
5f4358277e add docs and refactor GFStyle
mitchell commented on issue MarinoDev/leptos_form_tool#18 2024-06-18 23:27:05 +00:00
Implement a style

Check the shipping_scheulder inputs that we have defined to make sure we are getting everything that is possible

mitchell commented on issue MarinoDev/leptos_form_tool#23 2024-06-18 23:26:40 +00:00
Dynamic Select Options

Check that this works, and perhaps integrate signals to make it responsive.

mitchell pushed to main at MarinoDev/leptos_form_tool 2024-06-18 20:42:28 +00:00
1dc93d69f4 update docs
mitchell closed issue MarinoDev/leptos_form_tool#14 2024-06-18 20:28:24 +00:00
Send the data through the action instead of relying on the FromFormData
mitchell closed issue MarinoDev/leptos_form_tool#28 2024-06-18 20:27:51 +00:00
Add contextless versions of the builders
mitchell pushed to main at MarinoDev/leptos_form_tool 2024-06-18 20:27:43 +00:00
e16b7fc9cb add another way to build the form
mitchell pushed to main at MarinoDev/leptos_form_tool 2024-06-18 19:57:49 +00:00
18a99ec181 add context and non-context version of the controls
mitchell closed issue MarinoDev/leptos_form_tool#29 2024-06-18 19:20:55 +00:00
Form is submitable when parse fails but validation succeeds.
mitchell commented on issue MarinoDev/leptos_form_tool#29 2024-06-18 19:20:53 +00:00
Form is submitable when parse fails but validation succeeds.

fixed by checking the current validation state. This technically allows a case where if the initial value of the form data fails to parse (only possible if data doesn't round trip) then that will…

mitchell closed issue MarinoDev/leptos_form_tool#12 2024-06-18 19:18:58 +00:00
Add support for conditional rendering
mitchell commented on issue MarinoDev/leptos_form_tool#12 2024-06-18 19:18:54 +00:00
Add support for conditional rendering

Conditional validation is now done

mitchell pushed to main at MarinoDev/leptos_form_tool 2024-06-18 19:18:41 +00:00
89375a5b0c conditional validation
mitchell pushed to main at MarinoDev/leptos_form_tool 2024-06-18 18:10:52 +00:00
bbde4d6331 context is now a Rc
mitchell commented on issue MarinoDev/leptos_form_tool#12 2024-06-18 18:10:29 +00:00
Add support for conditional rendering

Lastly, we need to only run the validation if the component is showing

mitchell commented on issue MarinoDev/leptos_form_tool#12 2024-06-18 17:59:06 +00:00
Add support for conditional rendering

Making the view a closure and moving that closure inside the show worked! Show When now works.

mitchell pushed to main at MarinoDev/leptos_form_tool 2024-06-18 17:58:03 +00:00
da84bdbb27 Conditional Rendering WORKS!
mitchell commented on issue MarinoDev/leptos_form_tool#12 2024-06-18 16:14:52 +00:00
Add support for conditional rendering

Conditional Rendering implemented, but has hydration issues.

Most likely this is happening because no matter weather the show is true or not, we are still rendering the view, but then only…