4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
# File 'lib/phlexi/table/theme.rb', line 4
def self.theme
{
wrapper: nil,
base: nil,
caption: nil,
description: nil,
header: nil,
header_grouping_row: :header_row,
header_grouping_cell: :header_row_cell,
header_row: nil,
header_cell: nil,
body_row: nil,
body_cell: nil,
name_column: nil,
align_start: nil,
align_end: nil,
selection_checkbox: nil,
header_cell_content_wrapper: nil,
header_cell_sort_wrapper: nil,
sort_icon: nil,
sort_icon_active: nil,
sort_icon_inactive: nil,
header_cell_sort_indicator: nil,
sort_index_clear_link: nil,
sort_index_clear_link_text: nil,
sort_index_clear_link_icon: nil
}.freeze
end
|