Slide-over

A side panel that will slide over your document.

<.slideover close_event={JS.push("assign", value: %{variation_id: :default_slideover, show: false})} title="I open on the left 👈" theme={:default}>
  <:body>Hello world</:body>
</.slideover>
<.slideover close_event={JS.push("assign", value: %{variation_id: :right_slideover, show: false})} position={:right} title="I open on the right 👉" theme={:default}>
  <:body>Hello world</:body>
</.slideover>
<.slideover close_event={JS.push("assign", value: %{variation_id: [:group, :left_slideover], show: false})} title="I open on the left 👈" theme={:default}>
  <:body>Left slide-over</:body>
</.slideover>
<.slideover close_event={JS.push("assign", value: %{variation_id: [:group, :right_slideover], show: false})} position={:right} title="I open on the right 👉" theme={:default}>
  <:body>Right slide-over</:body>
</.slideover>