43 lines
2.2 KiB
Text
43 lines
2.2 KiB
Text
-- | `Web` module is an abstraction over most HTML-related code in order
|
|
-- | to have a consistent style through all the website.
|
|
module Web
|
|
( module Web.Basics
|
|
, module Web.Box
|
|
, module Web.Button
|
|
, module Web.Checkbox
|
|
, module Web.Column
|
|
, module Web.Data
|
|
, module Web.Field
|
|
, module Web.Header
|
|
, module Web.Hero
|
|
, module Web.Input
|
|
, module Web.Level
|
|
, module Web.Modal
|
|
, module Web.Notification
|
|
, module Web.Section
|
|
, module Web.Tab
|
|
, module Web.Table
|
|
, module Web.Tag
|
|
, module Web.Tile
|
|
, module Web.Warning
|
|
) where
|
|
|
|
import Web.Basics
|
|
import Web.Box (box, box_, box_with_tag)
|
|
import Web.Button (alert_btn, alert_btn_abbr, btn, btn_, btn_abbr, btn_abbr_, btn_add, btn_delete, btn_delete_ro, btn_modify, btn_modify_ro, btn_readonly, btn_ro, btn_save, btn_validation, btn_validation_, cancel_button, delete_btn)
|
|
import Web.Checkbox (checkbox)
|
|
import Web.Column (column, column_, columns, columns_)
|
|
import Web.Data (data_target)
|
|
import Web.Field (btn_labeled, div_field, div_field_, div_field_content, div_field_label, error_field_entry, field_entry, new_domain_field, option, select, selection, selection', selection_field, selection_field', selection_field'', side_text_above_input)
|
|
import Web.Header (h1, h3, h4, title, subtitle)
|
|
import Web.Hero (hero, hero_danger, hero_danger_txt, small_hero)
|
|
import Web.Input (box_input, box_input_, box_password, box_password_, email_input, field_inner, input_classes, input_with_side_text, password_input, password_input_confirmation, password_input_new, render_input, token_input, username_input)
|
|
import Web.Level (level)
|
|
import Web.Modal (modal, modal_, modal_background, modal_body, modal_card_large, modal_foot, modal_header)
|
|
import Web.Notification (error_box, notification, notification', notification_block', notification_danger, notification_danger', notification_danger_block', notification_primary, notification_primary', notification_success, notification_warning, notification_warning')
|
|
import Web.Section (section_medium, section_small)
|
|
import Web.Tab (fancy_tabs, tab_entry, tabs)
|
|
import Web.Table (table, table_)
|
|
import Web.Tag (tag, tag_ro, tags, tag_light_info)
|
|
import Web.Tile (tile, tile_, tile_danger, tile_warning)
|
|
import Web.Warning (big_website_warning)
|