Sha256: 124445180f8d48ac4b2905d0aca85841184b0e49442914af69b9a5c7e51849c3

Contents?: true

Size: 1.84 KB

Versions: 5

Compression:

Stored size: 1.84 KB

Contents

<div data-controller="ui--sheet" id="<%= options[:id] %>">
  <div data-action="click->ui--sheet#open"><%= content_for(:sheet_trigger) %></div>

  <%= render "components/ui/shared/backdrop", as: "modal" %>

  <div
    role="dialog"
    data-state="closed"
    data-ui--sheet-target="dialog"
    class="data-[state=closed]:hidden data-[state=open]:block fixed z-50 gap-4 bg-background p-6 shadow-lg
        transition ease-in-out data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:duration-300 data-[state=open]:duration-500
        inset-y-0 <%= direction_class(options[:direction]) %> h-full <%= options[:width] %> border-l data-[state=closed]:slide-out-to-<%= options[:direction] %> data-[state=open]:slide-in-from-<%= options[:direction] %> sm:max-w-sm" tabindex="-1"
    style="pointer-events: auto">
      <div data-ui--sheet-target="content"><%= content_for(:sheet_content) %></div>
      <button
        data-ui--sheet-target="closeButton"
        type="button"
        class="absolute right-4 top-4 rounded-sm opacity-70 ring-offset-background transition-opacity hover:opacity-100 focus:outline-none focus:ring-2 focus:ring-ring focus:ring-offset-2 disabled:pointer-events-none data-[state=open]:bg-accent data-[state=open]:text-muted-foreground">
        <svg
          xmlns="http://www.w3.org/2000/svg"
          width="24"
          height="24"
          viewBox="0 0 24 24"
          fill="none"
          stroke="currentColor"
          stroke-width="2"
          stroke-linecap="round"
          stroke-linejoin="round"
          class="h-4 w-4">
          <line
            x1="18"
            x2="6"
            y1="6"
            y2="18"></line>
          <line
            x1="6"
            x2="18"
            y1="6"
            y2="18"></line>
        </svg>
        <span class="sr-only">Close</span>
      </button>
  </div>
</div>

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
shadcn-ui-0.0.10 app/views/components/ui/_sheet.html.erb
shadcn-ui-0.0.8 app/views/components/ui/_sheet.html.erb
shadcn-ui-0.0.5 app/views/components/ui/_sheet.html.erb
shadcn-ui-0.0.4 app/views/components/ui/_sheet.html.erb
shadcn-ui-0.0.3 app/views/components/ui/_sheet.html.erb