Class: Tailwinds::Table::Row::PreviewComponent

Inherits:
Tramway::BaseComponent show all
Defined in:
app/components/tailwinds/table/row/preview_component.rb

Overview

Row component for rendering a row in a table

Constant Summary

Constants included from Tramway::Helpers::ViewsHelper

Tramway::Helpers::ViewsHelper::FORM_SIZES

Instance Method Summary collapse

Methods included from Tramway::Helpers::ViewsHelper

#tramway_back_button, #tramway_badge, #tramway_button, #tramway_cell, #tramway_container, #tramway_flash, #tramway_form_for, #tramway_header, #tramway_main_container, #tramway_row, #tramway_table, #tramway_title

Methods included from Tramway::Helpers::ComponentHelper

#component

Methods included from Tramway::Helpers::DecorateHelper

#tramway_decorate

Instance Method Details

#close_button_classesObject



14
15
16
17
18
# File 'app/components/tailwinds/table/row/preview_component.rb', line 14

def close_button_classes
  theme_classes(
    classic: 'absolute top-4 right-4 text-gray-500 hover:text-gray-700'
  )
end

#preview_classesObject



8
9
10
11
12
# File 'app/components/tailwinds/table/row/preview_component.rb', line 8

def preview_classes
  theme_classes(
    classic: 'fixed hidden inset-x-0 bottom-0 shadow-lg z-50 bg-gray-100 animate-roll-up h-1/2'
  )
end