playbook_ui 2.7.2 → 2.8.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/app/controllers/playbook/application_controller.rb +2 -0
- data/app/controllers/playbook/guides_controller.rb +3 -0
- data/app/controllers/playbook/pages_controller.rb +21 -21
- data/app/helpers/playbook/application_helper.rb +2 -0
- data/app/helpers/playbook/layout_helper.rb +7 -5
- data/app/helpers/playbook/pb_doc_helper.rb +17 -15
- data/app/helpers/playbook/pb_kit_helper.rb +11 -9
- data/app/helpers/playbook/redcarpet_helper.rb +41 -44
- data/app/pb_kits/playbook/packs/application.js +6 -4
- data/app/pb_kits/playbook/packs/examples.js +62 -2
- data/app/pb_kits/playbook/packs/index.js +57 -0
- data/app/pb_kits/playbook/packs/kits.js +18 -0
- data/app/pb_kits/playbook/packs/pb_bar_graph.js +4 -0
- data/app/pb_kits/playbook/packs/pb_dashboard_value.js +4 -0
- data/app/pb_kits/playbook/packs/pb_date.js +4 -0
- data/app/pb_kits/playbook/packs/pb_icon.js +4 -0
- data/app/pb_kits/playbook/packs/pb_icon_circle.js +4 -0
- data/app/pb_kits/playbook/packs/pb_icon_value.js +4 -0
- data/app/pb_kits/playbook/packs/pb_label_value.js +4 -0
- data/app/pb_kits/playbook/packs/pb_line_graph.js +4 -0
- data/app/pb_kits/playbook/packs/pb_message.js +4 -0
- data/app/pb_kits/playbook/packs/pb_online_status.js +4 -0
- data/app/pb_kits/playbook/packs/pb_pill.js +4 -0
- data/app/pb_kits/playbook/packs/pb_progress_simple.js +4 -0
- data/app/pb_kits/playbook/packs/pb_star_rating.js +4 -0
- data/app/pb_kits/playbook/packs/pb_time.js +4 -0
- data/app/pb_kits/playbook/packs/pb_timestamp.js +4 -0
- data/app/pb_kits/playbook/packs/pb_title_count.js +4 -0
- data/app/pb_kits/playbook/packs/pb_title_detail.js +4 -0
- data/app/pb_kits/playbook/packs/pb_user.js +4 -0
- data/app/pb_kits/playbook/packs/pb_user_badge.js +4 -0
- data/app/pb_kits/playbook/packs/site_styles/_kit_style_index.scss +19 -1
- data/app/pb_kits/playbook/packs/site_styles/_scaffold.scss +1 -1
- data/app/pb_kits/playbook/packs/site_styles/_site-style.scss +4 -4
- data/app/pb_kits/playbook/packs/site_styles/docs/_kit_doc.scss +16 -3
- data/app/pb_kits/playbook/packs/site_styles/docs/_markdown.scss +7 -7
- data/app/pb_kits/playbook/packs/site_styles/docs/_spacing_tokens.scss +2 -2
- data/app/pb_kits/playbook/pb_avatar/_avatar.html.erb +7 -3
- data/app/pb_kits/playbook/pb_avatar/_avatar.jsx +1 -1
- data/app/pb_kits/playbook/pb_avatar/_avatar.scss +73 -30
- data/app/pb_kits/playbook/pb_avatar/avatar.rb +39 -42
- data/app/pb_kits/playbook/pb_avatar/docs/_avatar_default.html.erb +42 -5
- data/app/pb_kits/playbook/pb_avatar/docs/_avatar_status.html.erb +32 -0
- data/app/pb_kits/playbook/pb_avatar/docs/example.yml +1 -0
- data/app/pb_kits/playbook/pb_bar_graph/_bar_graph.html.erb +19 -0
- data/app/pb_kits/playbook/pb_bar_graph/_bar_graph.jsx +21 -0
- data/app/pb_kits/playbook/pb_bar_graph/_bar_graph.scss +3 -0
- data/app/pb_kits/playbook/pb_bar_graph/barGraphSettings.js +24 -0
- data/app/pb_kits/playbook/pb_bar_graph/bar_graph.rb +86 -0
- data/app/pb_kits/playbook/pb_bar_graph/docs/_bar_graph_default.html.erb +20 -0
- data/app/pb_kits/playbook/pb_bar_graph/docs/_bar_graph_default.jsx +12 -0
- data/app/pb_kits/playbook/pb_bar_graph/docs/example.yml +9 -0
- data/app/pb_kits/playbook/pb_bar_graph/docs/index.js +1 -0
- data/app/pb_kits/playbook/pb_body/_body.html.erb +6 -4
- data/app/pb_kits/playbook/pb_body/_body.scss +11 -31
- data/app/pb_kits/playbook/pb_body/_body_mixins.scss +53 -0
- data/app/pb_kits/playbook/pb_body/body.rb +61 -38
- data/app/pb_kits/playbook/pb_body/docs/_body_dark.html.erb +19 -3
- data/app/pb_kits/playbook/pb_body/docs/_body_light.html.erb +21 -3
- data/app/pb_kits/playbook/pb_button/_button.html.erb +19 -8
- data/app/pb_kits/playbook/pb_button/_button.scss +23 -47
- data/app/pb_kits/playbook/pb_button/_button_mixins.scss +116 -0
- data/app/pb_kits/playbook/pb_button/button.rb +95 -51
- data/app/pb_kits/playbook/pb_button/docs/_button_accessibility.html.erb +1 -0
- data/app/pb_kits/playbook/pb_button/docs/_button_block_content.html.erb +4 -0
- data/app/pb_kits/playbook/pb_button/docs/_button_default.html.erb +4 -0
- data/app/pb_kits/playbook/pb_button/docs/_button_default_dark.html.erb +4 -0
- data/app/pb_kits/playbook/pb_button/docs/_button_full_width.html.erb +1 -0
- data/app/pb_kits/playbook/pb_button/docs/_button_link.html.erb +3 -0
- data/app/pb_kits/playbook/pb_button/docs/_button_loading.html.erb +3 -0
- data/app/pb_kits/playbook/pb_button/docs/example.yml +7 -3
- data/app/pb_kits/playbook/pb_caption/_caption.html.erb +5 -2
- data/app/pb_kits/playbook/pb_caption/_caption.scss +9 -1
- data/app/pb_kits/playbook/pb_caption/_caption_mixin.scss +10 -13
- data/app/pb_kits/playbook/pb_caption/caption.rb +35 -40
- data/app/pb_kits/playbook/pb_card/_card.html.erb +3 -2
- data/app/pb_kits/playbook/pb_card/_card.scss +20 -1
- data/app/pb_kits/playbook/pb_card/card.rb +34 -9
- data/app/pb_kits/playbook/pb_card/docs/_card_light.html.erb +1 -1
- data/app/pb_kits/playbook/pb_dashboard/commonSettings.js +84 -0
- data/app/pb_kits/playbook/pb_dashboard/pbChartPlugin.js +120 -0
- data/app/pb_kits/playbook/pb_dashboard/pbChartsLightTheme.js +162 -0
- data/app/pb_kits/playbook/pb_dashboard_value/_dashboard_value.html.erb +8 -0
- data/app/pb_kits/playbook/pb_dashboard_value/_dashboard_value.jsx +21 -0
- data/app/pb_kits/playbook/pb_dashboard_value/_dashboard_value.scss +10 -0
- data/app/pb_kits/playbook/pb_dashboard_value/_dashboard_value_mixins.scss +12 -0
- data/app/pb_kits/playbook/pb_dashboard_value/child_kits/_stat_change.html.erb +6 -0
- data/app/pb_kits/playbook/pb_dashboard_value/child_kits/_stat_label.html.erb +6 -0
- data/app/pb_kits/playbook/pb_dashboard_value/child_kits/_stat_value.html.erb +10 -0
- data/app/pb_kits/playbook/pb_dashboard_value/child_kits/_stat_value.scss +7 -0
- data/app/pb_kits/playbook/pb_dashboard_value/dashboardValueSettings.js +47 -0
- data/app/pb_kits/playbook/pb_dashboard_value/dashboard_value.rb +79 -0
- data/app/pb_kits/playbook/pb_dashboard_value/docs/_dashboard_value_align.html.erb +23 -0
- data/app/pb_kits/playbook/pb_dashboard_value/docs/_dashboard_value_change.html.erb +15 -0
- data/app/pb_kits/playbook/pb_dashboard_value/docs/_dashboard_value_default.html.erb +21 -0
- data/app/pb_kits/playbook/pb_dashboard_value/docs/_dashboard_value_default.jsx +12 -0
- data/app/pb_kits/playbook/pb_dashboard_value/docs/_dashboard_value_label.html.erb +19 -0
- data/app/pb_kits/playbook/pb_dashboard_value/docs/example.yml +11 -0
- data/app/pb_kits/playbook/pb_dashboard_value/docs/index.js +1 -0
- data/app/pb_kits/playbook/pb_dashboard_value/stat_change.rb +93 -0
- data/app/pb_kits/playbook/pb_dashboard_value/stat_label.rb +53 -0
- data/app/pb_kits/playbook/pb_dashboard_value/stat_value.rb +63 -0
- data/app/pb_kits/playbook/pb_date/_date.html.erb +6 -0
- data/app/pb_kits/playbook/pb_date/_date.jsx +21 -0
- data/app/pb_kits/playbook/pb_date/_date.scss +5 -0
- data/app/pb_kits/playbook/pb_date/date.rb +105 -0
- data/app/pb_kits/playbook/pb_date/docs/_date_default.html.erb +10 -0
- data/app/pb_kits/playbook/pb_date/docs/_date_default.jsx +12 -0
- data/app/pb_kits/playbook/pb_date/docs/example.yml +9 -0
- data/app/pb_kits/playbook/pb_date/docs/index.js +1 -0
- data/app/pb_kits/playbook/pb_icon/_icon.html.erb +7 -0
- data/app/pb_kits/playbook/pb_icon/_icon.jsx +21 -0
- data/app/pb_kits/playbook/pb_icon/_icon.scss +3 -0
- data/app/pb_kits/playbook/pb_icon/docs/_icon_animate.html.erb +3 -0
- data/app/pb_kits/playbook/pb_icon/docs/_icon_border.html.erb +1 -0
- data/app/pb_kits/playbook/pb_icon/docs/_icon_default.html.erb +1 -0
- data/app/pb_kits/playbook/pb_icon/docs/_icon_default.jsx +12 -0
- data/app/pb_kits/playbook/pb_icon/docs/_icon_default_dark.html.erb +1 -0
- data/app/pb_kits/playbook/pb_icon/docs/_icon_flip.html.erb +3 -0
- data/app/pb_kits/playbook/pb_icon/docs/_icon_pull.html.erb +2 -0
- data/app/pb_kits/playbook/pb_icon/docs/_icon_rotate.html.erb +3 -0
- data/app/pb_kits/playbook/pb_icon/docs/_icon_sizes.html.erb +16 -0
- data/app/pb_kits/playbook/pb_icon/docs/example.yml +12 -0
- data/app/pb_kits/playbook/pb_icon/docs/index.js +1 -0
- data/app/pb_kits/playbook/pb_icon/icon.rb +160 -0
- data/app/pb_kits/playbook/pb_icon_circle/_icon_circle.html.erb +6 -0
- data/app/pb_kits/playbook/pb_icon_circle/_icon_circle.jsx +21 -0
- data/app/pb_kits/playbook/pb_icon_circle/_icon_circle.scss +57 -0
- data/app/pb_kits/playbook/pb_icon_circle/docs/_icon_circle_color.html.erb +35 -0
- data/app/pb_kits/playbook/pb_icon_circle/docs/_icon_circle_default.html.erb +3 -0
- data/app/pb_kits/playbook/pb_icon_circle/docs/_icon_circle_default.jsx +12 -0
- data/app/pb_kits/playbook/pb_icon_circle/docs/_icon_circle_sizes.html.erb +24 -0
- data/app/pb_kits/playbook/pb_icon_circle/docs/example.yml +10 -0
- data/app/pb_kits/playbook/pb_icon_circle/docs/index.js +1 -0
- data/app/pb_kits/playbook/pb_icon_circle/icon_circle.rb +67 -0
- data/app/pb_kits/playbook/pb_icon_value/_icon_value.html.erb +6 -0
- data/app/pb_kits/playbook/pb_icon_value/_icon_value.jsx +21 -0
- data/app/pb_kits/playbook/pb_icon_value/_icon_value.scss +30 -0
- data/app/pb_kits/playbook/pb_icon_value/docs/_icon_value_align.html.erb +20 -0
- data/app/pb_kits/playbook/pb_icon_value/docs/_icon_value_default.html.erb +18 -0
- data/app/pb_kits/playbook/pb_icon_value/docs/_icon_value_default.jsx +12 -0
- data/app/pb_kits/playbook/pb_icon_value/docs/example.yml +9 -0
- data/app/pb_kits/playbook/pb_icon_value/docs/index.js +1 -0
- data/app/pb_kits/playbook/pb_icon_value/icon_value.rb +78 -0
- data/app/pb_kits/playbook/pb_image/_image.html.erb +2 -1
- data/app/pb_kits/playbook/pb_image/image.rb +26 -20
- data/app/pb_kits/playbook/pb_input/input.rb +21 -16
- data/app/pb_kits/playbook/pb_kit/base.rb +74 -13
- data/app/pb_kits/playbook/pb_label_value/_label_value.html.erb +7 -0
- data/app/pb_kits/playbook/pb_label_value/_label_value.jsx +21 -0
- data/app/pb_kits/playbook/pb_label_value/_label_value.scss +7 -0
- data/app/pb_kits/playbook/pb_label_value/docs/_label_value_default.html.erb +21 -0
- data/app/pb_kits/playbook/pb_label_value/docs/_label_value_default.jsx +12 -0
- data/app/pb_kits/playbook/pb_label_value/docs/example.yml +9 -0
- data/app/pb_kits/playbook/pb_label_value/docs/index.js +1 -0
- data/app/pb_kits/playbook/pb_label_value/label_value.rb +56 -0
- data/app/pb_kits/playbook/pb_layout/_layout.scss +2 -2
- data/app/pb_kits/playbook/pb_layout/_layout_mixin.scss +6 -6
- data/app/pb_kits/playbook/pb_layout/body.rb +9 -7
- data/app/pb_kits/playbook/pb_layout/layout.rb +26 -42
- data/app/pb_kits/playbook/pb_layout/sidebar.rb +9 -7
- data/app/pb_kits/playbook/pb_line_graph/_line_graph.html.erb +19 -0
- data/{lib/generators/kit/templates/jsx.erb → app/pb_kits/playbook/pb_line_graph/_line_graph.jsx} +4 -4
- data/{components/SearchCollectionSelect/searchCollectionSelect.scss → app/pb_kits/playbook/pb_line_graph/_line_graph.scss} +0 -0
- data/app/pb_kits/playbook/pb_line_graph/docs/_rails.html.erb +21 -0
- data/app/pb_kits/playbook/pb_line_graph/docs/_react.html.erb +2 -0
- data/app/pb_kits/playbook/pb_line_graph/docs/example.yml +5 -0
- data/app/pb_kits/playbook/pb_line_graph/lineGraphSettings.js +15 -0
- data/app/pb_kits/playbook/pb_line_graph/line_graph.rb +85 -0
- data/app/pb_kits/playbook/pb_list/_item.html.erb +1 -1
- data/app/pb_kits/playbook/pb_list/_list.scss +15 -78
- data/app/pb_kits/playbook/pb_list/_list_mixin.scss +91 -0
- data/app/pb_kits/playbook/pb_list/docs/_list_borderless.html.erb +6 -6
- data/app/pb_kits/playbook/pb_list/docs/_list_dark.html.erb +6 -6
- data/app/pb_kits/playbook/pb_list/docs/_list_dark_borderless.html.erb +6 -6
- data/app/pb_kits/playbook/pb_list/docs/_list_dark_lg.html.erb +6 -6
- data/app/pb_kits/playbook/pb_list/docs/_list_dark_ordered.html.erb +6 -6
- data/app/pb_kits/playbook/pb_list/docs/_list_dark_xpadding.html.erb +6 -6
- data/app/pb_kits/playbook/pb_list/docs/_list_default.html.erb +6 -6
- data/app/pb_kits/playbook/pb_list/docs/_list_lg.html.erb +6 -6
- data/app/pb_kits/playbook/pb_list/docs/_list_ordered.html.erb +6 -6
- data/app/pb_kits/playbook/pb_list/docs/_list_xpadding.html.erb +6 -6
- data/app/pb_kits/playbook/pb_list/item.rb +14 -16
- data/app/pb_kits/playbook/pb_list/list.rb +30 -29
- data/app/pb_kits/playbook/pb_message/_message.html.erb +11 -0
- data/app/pb_kits/playbook/pb_message/_message.jsx +21 -0
- data/app/pb_kits/playbook/pb_message/_message.scss +5 -0
- data/app/pb_kits/playbook/pb_message/_message_mixins.scss +24 -0
- data/app/pb_kits/playbook/pb_message/docs/_message_default.html.erb +63 -0
- data/app/pb_kits/playbook/pb_message/docs/_message_default.jsx +12 -0
- data/app/pb_kits/playbook/pb_message/docs/example.yml +9 -0
- data/app/pb_kits/playbook/pb_message/docs/index.js +1 -0
- data/app/pb_kits/playbook/pb_message/message.rb +89 -0
- data/app/pb_kits/playbook/pb_online_status/_online_status.html.erb +5 -0
- data/app/pb_kits/playbook/pb_online_status/_online_status.jsx +21 -0
- data/app/pb_kits/playbook/pb_online_status/_online_status.scss +20 -0
- data/app/pb_kits/playbook/pb_online_status/_online_status_mixins.scss +35 -0
- data/app/pb_kits/playbook/pb_online_status/docs/_online_status_default.html.erb +9 -0
- data/app/pb_kits/playbook/pb_online_status/docs/_online_status_default.jsx +12 -0
- data/app/pb_kits/playbook/pb_online_status/docs/example.yml +9 -0
- data/app/pb_kits/playbook/pb_online_status/docs/index.js +1 -0
- data/app/pb_kits/playbook/pb_online_status/online_status.rb +48 -0
- data/app/pb_kits/playbook/pb_pill/_pill.html.erb +6 -0
- data/app/pb_kits/playbook/pb_pill/_pill.jsx +21 -0
- data/app/pb_kits/playbook/pb_pill/_pill.scss +24 -0
- data/app/pb_kits/playbook/pb_pill/docs/_pill_default.html.erb +38 -0
- data/app/pb_kits/playbook/pb_pill/docs/_pill_default.jsx +12 -0
- data/app/pb_kits/playbook/pb_pill/docs/example.yml +9 -0
- data/app/pb_kits/playbook/pb_pill/docs/index.js +1 -0
- data/app/pb_kits/playbook/pb_pill/pill.rb +62 -0
- data/app/pb_kits/playbook/pb_progress_simple/_progress_simple.html.erb +11 -0
- data/app/pb_kits/playbook/pb_progress_simple/_progress_simple.jsx +21 -0
- data/app/pb_kits/playbook/pb_progress_simple/_progress_simple.scss +45 -0
- data/app/pb_kits/playbook/pb_progress_simple/docs/_progress_simple_align.html.erb +5 -0
- data/app/pb_kits/playbook/pb_progress_simple/docs/_progress_simple_default.html.erb +1 -0
- data/app/pb_kits/playbook/pb_progress_simple/docs/_progress_simple_default.jsx +12 -0
- data/app/pb_kits/playbook/pb_progress_simple/docs/_progress_simple_muted.html.erb +1 -0
- data/app/pb_kits/playbook/pb_progress_simple/docs/_progress_simple_value.html.erb +5 -0
- data/app/pb_kits/playbook/pb_progress_simple/docs/_progress_simple_width.html.erb +1 -0
- data/app/pb_kits/playbook/pb_progress_simple/docs/example.yml +12 -0
- data/app/pb_kits/playbook/pb_progress_simple/docs/index.js +1 -0
- data/app/pb_kits/playbook/pb_progress_simple/progress_simple.rb +100 -0
- data/app/pb_kits/playbook/pb_star_rating/_star_rating.html.erb +28 -0
- data/app/pb_kits/playbook/pb_star_rating/_star_rating.jsx +21 -0
- data/app/pb_kits/playbook/pb_star_rating/_star_rating.scss +60 -0
- data/app/pb_kits/playbook/pb_star_rating/docs/_star_rating_default.html.erb +13 -0
- data/app/pb_kits/playbook/pb_star_rating/docs/_star_rating_default.jsx +12 -0
- data/app/pb_kits/playbook/pb_star_rating/docs/_star_rating_hide.html.erb +1 -0
- data/app/pb_kits/playbook/pb_star_rating/docs/example.yml +9 -0
- data/app/pb_kits/playbook/pb_star_rating/docs/index.js +1 -0
- data/app/pb_kits/playbook/pb_star_rating/star_rating.rb +70 -0
- data/app/pb_kits/playbook/pb_table/_table.html.erb +1 -5
- data/app/pb_kits/playbook/pb_table/styles/_as-cards.scss +1 -1
- data/app/pb_kits/playbook/pb_table/styles/_content.scss +1 -1
- data/app/pb_kits/playbook/pb_table/styles/_headers.scss +3 -3
- data/app/pb_kits/playbook/pb_table/styles/_hover.scss +7 -5
- data/app/pb_kits/playbook/pb_table/styles/_mobile.scss +103 -100
- data/app/pb_kits/playbook/pb_table/styles/_reset.scss +1 -1
- data/app/pb_kits/playbook/pb_table/styles/_single-line.scss +1 -1
- data/app/pb_kits/playbook/pb_table/styles/_structure.scss +5 -3
- data/app/pb_kits/playbook/pb_table/styles/_table-card.scss +5 -5
- data/app/pb_kits/playbook/pb_table/styles/_table-dark.scss +64 -58
- data/app/pb_kits/playbook/pb_table/styles/_variables.scss +3 -0
- data/app/pb_kits/playbook/pb_table/table.rb +50 -50
- data/app/pb_kits/playbook/pb_time/_time.html.erb +6 -0
- data/app/pb_kits/playbook/pb_time/_time.jsx +21 -0
- data/app/pb_kits/playbook/pb_time/_time.scss +25 -0
- data/app/pb_kits/playbook/pb_time/docs/_time_default.html.erb +23 -0
- data/app/pb_kits/playbook/pb_time/docs/_time_default.jsx +12 -0
- data/app/pb_kits/playbook/pb_time/docs/example.yml +9 -0
- data/app/pb_kits/playbook/pb_time/docs/index.js +1 -0
- data/app/pb_kits/playbook/pb_time/time.rb +135 -0
- data/app/pb_kits/playbook/pb_timestamp/_timestamp-mixins.scss +10 -0
- data/app/pb_kits/playbook/pb_timestamp/_timestamp.html.erb +6 -0
- data/app/pb_kits/playbook/pb_timestamp/_timestamp.jsx +21 -0
- data/app/pb_kits/playbook/pb_timestamp/_timestamp.scss +5 -0
- data/app/pb_kits/playbook/pb_timestamp/docs/_timestamp_default.html.erb +1 -0
- data/app/pb_kits/playbook/pb_timestamp/docs/_timestamp_default.jsx +12 -0
- data/app/pb_kits/playbook/pb_timestamp/docs/example.yml +9 -0
- data/app/pb_kits/playbook/pb_timestamp/docs/index.js +1 -0
- data/app/pb_kits/playbook/pb_timestamp/timestamp.rb +50 -0
- data/app/pb_kits/playbook/pb_title/_title.html.erb +4 -1
- data/app/pb_kits/playbook/pb_title/_title.scss +12 -21
- data/app/pb_kits/playbook/pb_title/_title_mixin.scss +18 -40
- data/app/pb_kits/playbook/pb_title/docs/_title_dark.html.erb +4 -0
- data/app/pb_kits/playbook/pb_title/docs/_title_light.html.erb +4 -0
- data/app/pb_kits/playbook/pb_title/title.rb +39 -37
- data/app/pb_kits/playbook/pb_title_count/_title_count.html.erb +7 -0
- data/app/pb_kits/playbook/pb_title_count/_title_count.jsx +21 -0
- data/app/pb_kits/playbook/pb_title_count/_title_count.scss +17 -0
- data/app/pb_kits/playbook/pb_title_count/docs/_title_count_align.html.erb +20 -0
- data/app/pb_kits/playbook/pb_title_count/docs/_title_count_default.html.erb +20 -0
- data/app/pb_kits/playbook/pb_title_count/docs/_title_count_default.jsx +12 -0
- data/app/pb_kits/playbook/pb_title_count/docs/example.yml +9 -0
- data/app/pb_kits/playbook/pb_title_count/docs/index.js +1 -0
- data/app/pb_kits/playbook/pb_title_count/title_count.rb +88 -0
- data/app/pb_kits/playbook/pb_title_detail/_title_detail.html.erb +7 -0
- data/app/pb_kits/playbook/pb_title_detail/_title_detail.jsx +21 -0
- data/app/pb_kits/playbook/pb_title_detail/_title_detail.scss +14 -0
- data/app/pb_kits/playbook/pb_title_detail/docs/_title_detail_default.html.erb +16 -0
- data/app/pb_kits/playbook/pb_title_detail/docs/_title_detail_default.jsx +12 -0
- data/app/pb_kits/playbook/pb_title_detail/docs/example.yml +9 -0
- data/app/pb_kits/playbook/pb_title_detail/docs/index.js +1 -0
- data/app/pb_kits/playbook/pb_title_detail/title_detail.rb +70 -0
- data/app/pb_kits/playbook/pb_user/_user.html.erb +11 -0
- data/app/pb_kits/playbook/pb_user/_user.jsx +21 -0
- data/app/pb_kits/playbook/pb_user/_user.scss +51 -0
- data/app/pb_kits/playbook/pb_user/docs/_user_default.html.erb +41 -0
- data/app/pb_kits/playbook/pb_user/docs/_user_default.jsx +12 -0
- data/app/pb_kits/playbook/pb_user/docs/_user_size.html.erb +35 -0
- data/app/pb_kits/playbook/pb_user/docs/_user_text_only.html.erb +17 -0
- data/app/pb_kits/playbook/pb_user/docs/_user_vertical_size.html.erb +33 -0
- data/app/pb_kits/playbook/pb_user/docs/example.yml +11 -0
- data/app/pb_kits/playbook/pb_user/docs/index.js +1 -0
- data/app/pb_kits/playbook/pb_user/user.rb +117 -0
- data/app/pb_kits/playbook/pb_user_badge/_user_badge.html.erb +8 -0
- data/app/pb_kits/playbook/pb_user_badge/_user_badge.jsx +21 -0
- data/app/pb_kits/playbook/pb_user_badge/_user_badge.scss +24 -0
- data/app/pb_kits/playbook/pb_user_badge/badges/_million-dollar.html.erb +88 -0
- data/app/pb_kits/playbook/pb_user_badge/badges/_veteran.html.erb +17 -0
- data/app/pb_kits/playbook/pb_user_badge/docs/_user_badge_default.html.erb +11 -0
- data/app/pb_kits/playbook/pb_user_badge/docs/_user_badge_default.jsx +12 -0
- data/app/pb_kits/playbook/pb_user_badge/docs/_user_badge_size.html.erb +18 -0
- data/app/pb_kits/playbook/pb_user_badge/docs/example.yml +9 -0
- data/app/pb_kits/playbook/pb_user_badge/docs/index.js +1 -0
- data/app/pb_kits/playbook/pb_user_badge/user_badge.rb +62 -0
- data/app/pb_kits/playbook/pb_vertical_nav/_item.html.erb +4 -4
- data/app/pb_kits/playbook/pb_vertical_nav/_vertical_nav.scss +10 -11
- data/app/pb_kits/playbook/pb_vertical_nav/docs/_block_nav.html.erb +5 -0
- data/app/pb_kits/playbook/pb_vertical_nav/docs/_default_nav.html.erb +3 -3
- data/app/pb_kits/playbook/pb_vertical_nav/docs/example.yml +1 -0
- data/app/pb_kits/playbook/pb_vertical_nav/item.rb +28 -29
- data/app/pb_kits/playbook/pb_vertical_nav/vertical_nav.rb +18 -13
- data/app/pb_kits/playbook/tokens/_border_radius.scss +33 -0
- data/app/pb_kits/playbook/tokens/_colors.scss +35 -248
- data/app/pb_kits/playbook/tokens/_line_height.scss +9 -0
- data/app/pb_kits/playbook/tokens/_opacity.scss +12 -0
- data/app/pb_kits/playbook/tokens/_positioning.scss +11 -0
- data/app/pb_kits/playbook/tokens/_shadows.scss +14 -5
- data/app/pb_kits/playbook/tokens/_spacing.scss +0 -1
- data/app/pb_kits/playbook/tokens/_transition.scss +1 -0
- data/app/pb_kits/playbook/tokens/{_typography.sass → _typography.scss} +25 -0
- data/app/views/layouts/playbook/_nav.html.slim +4 -1
- data/app/views/layouts/playbook/_sidebar.html.slim +1 -1
- data/app/views/layouts/playbook/application.html.slim +7 -3
- data/app/views/playbook/pages/kit_show.html.slim +1 -1
- data/app/views/playbook/pages/principals/_getting_started.html.md +22 -4
- data/app/views/playbook/pages/tokens/_pb_doc_spacing.html.slim +2 -1
- data/app/views/playbook/pages/utilities/_pb_doc_color.html.slim +2 -1
- data/lib/generators/kit/USAGE +2 -29
- data/lib/generators/kit/kit_generator.rb +78 -71
- data/lib/generators/kit/templates/kit_example_rails.erb.tt +1 -0
- data/lib/generators/kit/templates/kit_example_react.erb.tt +12 -0
- data/lib/generators/kit/templates/kit_example_yml.erb.tt +9 -0
- data/lib/generators/kit/templates/kit_html.erb.tt +6 -0
- data/lib/generators/kit/templates/kit_js.erb.tt +1 -0
- data/lib/generators/kit/templates/kit_jsx.erb.tt +21 -0
- data/lib/generators/kit/templates/kit_pack.erb.tt +4 -0
- data/lib/generators/kit/templates/kit_ruby.erb.tt +32 -0
- data/lib/generators/kit/templates/kit_scss.erb +3 -0
- data/lib/playbook.rb +2 -0
- data/lib/playbook/engine.rb +15 -14
- data/lib/playbook/version.rb +3 -1
- data/lib/tasks/db.rake +2 -0
- data/lib/tasks/playbook_tasks.rake +9 -7
- metadata +332 -227
- data/app/pb_kits/playbook/pb_button/_variations.json +0 -15
- data/app/pb_kits/playbook/pb_button/docs/_button_dark.html.erb +0 -3
- data/app/pb_kits/playbook/pb_button/docs/_button_light.html.erb +0 -3
- data/app/pb_kits/playbook/pb_button/docs/_button_sizes.html.erb +0 -3
- data/app/pb_kits/playbook/pb_caption/_caption_lg.scss +0 -5
- data/app/pb_kits/playbook/tokens/_border_radius.sass +0 -27
- data/components/Avatar/Avatar.jsx +0 -96
- data/components/Avatar/AvatarStory.jsx +0 -19
- data/components/Avatar/styles.scss +0 -54
- data/components/Avatar/styles.scss.flow +0 -14
- data/components/Badge/Badge.jsx +0 -40
- data/components/Badge/BadgeStory.jsx +0 -40
- data/components/Badge/badges.scss +0 -167
- data/components/Badge/labels.scss +0 -121
- data/components/Badge/styles.scss +0 -4
- data/components/Badge/styles.scss.flow +0 -38
- data/components/Banner/Banner.jsx +0 -54
- data/components/Banner/BannerStory.jsx +0 -22
- data/components/Banner/styles.scss +0 -75
- data/components/Banner/styles.scss.flow +0 -19
- data/components/Button/Button.jsx +0 -75
- data/components/Button/ButtonStory.jsx +0 -94
- data/components/Capping/CappingStory.jsx +0 -21
- data/components/Card/Card.jsx +0 -44
- data/components/Card/CardStory.jsx +0 -19
- data/components/CircleButton/CircleButton.jsx +0 -51
- data/components/CircleButton/CircleButtonStory.jsx +0 -25
- data/components/CircleButton/styles.scss +0 -33
- data/components/CircleButton/styles.scss.flow +0 -6
- data/components/CollapsibleCard/CollapsibleCard.jsx +0 -108
- data/components/CollapsibleCard/CollapsibleCardStory.jsx +0 -26
- data/components/Color/Color.jsx +0 -55
- data/components/Color/ColorStory.jsx +0 -16
- data/components/Color/styles.scss +0 -6
- data/components/Color/styles.scss.flow +0 -5
- data/components/ColorPickerInput/ColorPickerInput.jsx +0 -99
- data/components/ColorPickerInput/ColorPickerInputStory.jsx +0 -37
- data/components/ColorPickerInput/colorPickerInput.scss +0 -10
- data/components/ColorPickerInput/colorPickerInput.scss.flow +0 -6
- data/components/DOBInput/index.jsx +0 -35
- data/components/DOBInput/story.jsx +0 -20
- data/components/DOBInput/styles.scss +0 -11
- data/components/DOBInput/styles.scss.flow +0 -7
- data/components/DatePicker/DatePicker.jsx +0 -156
- data/components/DatePicker/DatePickerStory.jsx +0 -22
- data/components/DatePicker/styles.scss +0 -6
- data/components/DatePicker/styles.scss.flow +0 -5
- data/components/DateTimePicker/DateTimePicker.jsx +0 -109
- data/components/DateTimePicker/DateTimePickerStory.jsx +0 -31
- data/components/DateTimePicker/story-styles.scss +0 -3
- data/components/DateTimePicker/story-styles.scss.flow +0 -5
- data/components/DateTimePicker/styles.scss +0 -1
- data/components/DateTimePicker/styles.scss.flow +0 -5
- data/components/Errors/Errors.jsx +0 -38
- data/components/FileCard/FileCard.jsx +0 -183
- data/components/FileCard/FileCardStory.jsx +0 -62
- data/components/FileCard/styles.scss +0 -81
- data/components/FileCard/styles.scss.flow +0 -12
- data/components/Flip/Flip.jsx +0 -50
- data/components/Flip/FlipStory.jsx +0 -85
- data/components/Flip/styles.scss +0 -41
- data/components/Flip/styles.scss.flow +0 -11
- data/components/FlyoutPanel/FlyoutPanel.jsx +0 -34
- data/components/FlyoutPanel/FlyoutPanelStory.jsx +0 -36
- data/components/FlyoutPanel/flyout_panel.scss +0 -33
- data/components/FlyoutPanel/flyout_panel.scss.flow +0 -11
- data/components/Grade/Grade.jsx +0 -55
- data/components/Grade/GradeStory.jsx +0 -18
- data/components/Grade/grade.scss +0 -39
- data/components/Grade/grade.scss.flow +0 -6
- data/components/Highlight/Highlight.jsx +0 -39
- data/components/Highlight/HighlightStory.jsx +0 -22
- data/components/Highlight/styles.scss +0 -24
- data/components/Highlight/styles.scss.flow +0 -17
- data/components/Icon/Icon.jsx +0 -54
- data/components/Icon/IconButtonStory.jsx +0 -20
- data/components/Icon/IconStory.jsx +0 -25
- data/components/IconToggle/IconToggle.jsx +0 -56
- data/components/IconToggle/IconToggleStory.jsx +0 -24
- data/components/Milestones/MilestoneItem.jsx +0 -47
- data/components/Milestones/MilestoneItemStory.jsx +0 -25
- data/components/Milestones/Milestones.jsx +0 -51
- data/components/Milestones/MilestonesStory.jsx +0 -30
- data/components/Milestones/milestones.scss +0 -19
- data/components/Milestones/milestones.scss.flow +0 -7
- data/components/Milestones/milestones_item.scss +0 -157
- data/components/Milestones/milestones_item.scss.flow +0 -13
- data/components/Milestones/milestones_variables.scss +0 -11
- data/components/Modal/ModalStory.jsx +0 -29
- data/components/MonogramAvatar/MonogramAvatar.jsx +0 -91
- data/components/MonogramAvatar/MonogramAvatarStory.jsx +0 -21
- data/components/MonogramAvatar/monogram_avatar.scss +0 -54
- data/components/MonogramAvatar/monogram_avatar.scss.flow +0 -10
- data/components/Panel/Panel.jsx +0 -159
- data/components/Panel/PanelStory.jsx +0 -23
- data/components/Panel/panel.scss +0 -32
- data/components/Panel/panel.scss.flow +0 -12
- data/components/PanelGroup/PanelGroup.jsx +0 -121
- data/components/PanelGroup/PanelGroup.scss +0 -96
- data/components/PanelGroup/PanelGroup.scss.flow +0 -6
- data/components/PanelGroup/PanelGroupStory.jsx +0 -112
- data/components/SearchCollectionSelect/SearchCollectionSelect.jsx +0 -29
- data/components/SearchCollectionSelect/SearchCollectionSelectStory.jsx +0 -48
- data/components/SideModal/SideModalStory.jsx +0 -31
- data/components/Spinner/Spinner.jsx +0 -80
- data/components/Spinner/SpinnerStory.jsx +0 -21
- data/components/Spinner/spinner.scss +0 -6
- data/components/Spinner/spinner.scss.flow +0 -5
- data/components/StepMeter/StepMeter.jsx +0 -75
- data/components/StepMeter/StepMeterStory.jsx +0 -25
- data/components/StepMeter/step_meter.scss +0 -120
- data/components/StepMeter/step_meter.scss.flow +0 -9
- data/components/Survey/Survey.jsx +0 -190
- data/components/Survey/SurveyStory.jsx +0 -125
- data/components/Survey/survey.scss +0 -75
- data/components/Survey/survey.scss.flow +0 -11
- data/components/Tab/Tab.jsx +0 -70
- data/components/Tab/tab.scss +0 -25
- data/components/Tab/tab.scss.flow +0 -6
- data/components/TabList/TabList.jsx +0 -35
- data/components/TabList/TabListStory.jsx +0 -31
- data/components/TabList/tabList.scss +0 -5
- data/components/TabList/tabList.scss.flow +0 -5
- data/components/Text/Text.jsx +0 -53
- data/components/Text/TextStory.jsx +0 -23
- data/components/Text/styles.scss +0 -3
- data/components/Text/styles.scss.flow +0 -123
- data/components/Text/text.scss +0 -35
- data/components/TextInput/TextInput.jsx +0 -95
- data/components/TextInput/TextInputStory.jsx +0 -23
- data/components/TextInput/form-control.scss +0 -96
- data/components/TextInput/styles.scss +0 -3
- data/components/TextInput/styles.scss.flow +0 -7
- data/components/TimePicker/TimePicker.jsx +0 -218
- data/components/TimePicker/TimePickerStory.jsx +0 -22
- data/components/TimePicker/styles.scss +0 -1
- data/components/TimePicker/styles.scss.flow +0 -5
- data/components/ToggleButton/ToggleButton.jsx +0 -68
- data/components/ToggleButton/ToggleButtonStory.jsx +0 -46
- data/components/ToggleButton/toggleButton.scss +0 -70
- data/components/ToggleButton/toggleButton.scss.flow +0 -14
- data/components/UserStamp/UserStamp.jsx +0 -40
- data/components/UserStamp/UserStampStory.jsx +0 -22
- data/components/UserStamp/styles.scss +0 -6
- data/components/UserStamp/styles.scss.flow +0 -7
- data/components/Wip/Wip.jsx +0 -34
- data/components/index.js +0 -33
- data/components/types.js +0 -21
- data/lib/generators/kit/templates/html.erb +0 -3
- data/lib/generators/kit/templates/javascript.erb +0 -4
- data/lib/generators/kit/templates/logo.txt +0 -28
- data/lib/generators/kit/templates/ruby.erb +0 -48
- data/lib/generators/kit/templates/scss.erb +0 -0
- data/lib/generators/kit/templates/storyrails.erb +0 -2
- data/lib/generators/kit/templates/storyreact.erb +0 -2
- data/lib/generators/kit/templates/variations.erb +0 -10
@@ -1,27 +1,29 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
module Playbook
|
2
4
|
module PbLayout
|
3
5
|
class Layout < Playbook::PbKit::Base
|
4
|
-
PROPS = [
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
6
|
+
PROPS = %i[configured_classname
|
7
|
+
configured_collapse
|
8
|
+
configured_dark
|
9
|
+
configured_data
|
10
|
+
configured_full
|
11
|
+
configured_id
|
12
|
+
configured_position
|
13
|
+
configured_transparent
|
14
|
+
configured_size
|
15
|
+
block].freeze
|
14
16
|
|
15
17
|
def initialize(classname: default_configuration,
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
18
|
+
collapse: default_configuration,
|
19
|
+
dark: default_configuration,
|
20
|
+
data: default_configuration,
|
21
|
+
full: default_configuration,
|
22
|
+
id: default_configuration,
|
23
|
+
position: default_configuration,
|
24
|
+
transparent: default_configuration,
|
25
|
+
size: default_configuration,
|
26
|
+
&block)
|
25
27
|
self.configured_classname = classname
|
26
28
|
self.configured_collapse = collapse
|
27
29
|
self.configured_dark = dark
|
@@ -43,13 +45,7 @@ module Playbook
|
|
43
45
|
end
|
44
46
|
|
45
47
|
def transparent
|
46
|
-
|
47
|
-
""
|
48
|
-
else
|
49
|
-
if (configured_transparent == true)
|
50
|
-
"_transparent"
|
51
|
-
end
|
52
|
-
end
|
48
|
+
true_value(configured_transparent, "_transparent", "")
|
53
49
|
end
|
54
50
|
|
55
51
|
def size
|
@@ -62,30 +58,18 @@ module Playbook
|
|
62
58
|
|
63
59
|
def collapse
|
64
60
|
if configured_collapse == default_configuration
|
65
|
-
" layout#{
|
61
|
+
" layout#{position}_collapse_xs"
|
66
62
|
else
|
67
|
-
" layout#{
|
63
|
+
" layout#{position}_collapse_#{configured_collapse}"
|
68
64
|
end
|
69
65
|
end
|
70
66
|
|
71
67
|
def full
|
72
|
-
|
73
|
-
""
|
74
|
-
else
|
75
|
-
if (configured_full == true)
|
76
|
-
" full"
|
77
|
-
end
|
78
|
-
end
|
68
|
+
true_value(configured_full, " full", "")
|
79
69
|
end
|
80
70
|
|
81
71
|
def dark
|
82
|
-
|
83
|
-
""
|
84
|
-
else
|
85
|
-
if (configured_dark == true)
|
86
|
-
"_dark"
|
87
|
-
end
|
88
|
-
end
|
72
|
+
true_value(configured_dark, "_dark", "")
|
89
73
|
end
|
90
74
|
|
91
75
|
def yield(context:)
|
@@ -1,15 +1,17 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
module Playbook
|
2
4
|
module PbLayout
|
3
5
|
class Sidebar < Playbook::PbKit::Base
|
4
|
-
PROPS = [
|
5
|
-
|
6
|
-
|
7
|
-
|
6
|
+
PROPS = %i[configured_classname
|
7
|
+
configured_data
|
8
|
+
configured_id
|
9
|
+
block].freeze
|
8
10
|
|
9
11
|
def initialize(classname: default_configuration,
|
10
|
-
|
11
|
-
|
12
|
-
|
12
|
+
data: default_configuration,
|
13
|
+
id: default_configuration,
|
14
|
+
&block)
|
13
15
|
self.configured_classname = classname
|
14
16
|
self.configured_data = data
|
15
17
|
self.configured_id = id
|
@@ -0,0 +1,19 @@
|
|
1
|
+
<%= content_tag(:div, "",
|
2
|
+
aria: object.aria,
|
3
|
+
id: object.id,
|
4
|
+
data: object.data,
|
5
|
+
class: object.classname("pb_line_graph")
|
6
|
+
) %>
|
7
|
+
<% content_for :pb_js do %>
|
8
|
+
<%= javascript_tag do %>
|
9
|
+
new pbChart('.selector', {
|
10
|
+
id: "<%= object.id %>",
|
11
|
+
chartData: <%= object.chart_data %>,
|
12
|
+
type: "<%= object.chart_type %>",
|
13
|
+
title: "<%= object.title %>",
|
14
|
+
subtitle: "<%= object.subtitle %>",
|
15
|
+
axisTitle: "<%= object.axis_title %>",
|
16
|
+
pointStart: <%= object.point_start %>,
|
17
|
+
});
|
18
|
+
<% end %>
|
19
|
+
<% end %>
|
data/{lib/generators/kit/templates/jsx.erb → app/pb_kits/playbook/pb_line_graph/_line_graph.jsx}
RENAMED
@@ -10,7 +10,7 @@ const defaultProps = {
|
|
10
10
|
text: "I am a react kit"
|
11
11
|
};
|
12
12
|
|
13
|
-
class
|
13
|
+
class LineGraph extends React.Component {
|
14
14
|
render() {
|
15
15
|
const {
|
16
16
|
className,
|
@@ -25,7 +25,7 @@ class <%= js_titleize_file_name %> extends React.Component {
|
|
25
25
|
}
|
26
26
|
}
|
27
27
|
|
28
|
-
|
29
|
-
|
28
|
+
LineGraph.propTypes = propTypes;
|
29
|
+
LineGraph.defaultProps = defaultProps;
|
30
30
|
|
31
|
-
export default
|
31
|
+
export default LineGraph;
|
File without changes
|
@@ -0,0 +1,21 @@
|
|
1
|
+
<% data = [{
|
2
|
+
name: 'Installation',
|
3
|
+
data: [43934, 52503, 57177, 69658, 97031, 119931, 137133, 154175]
|
4
|
+
}, {
|
5
|
+
name: 'Manufacturing',
|
6
|
+
data: [24916, 24064, 29742, 29851, 32490, 30282, 38121, 40434]
|
7
|
+
}, {
|
8
|
+
name: 'Sales & Distribution',
|
9
|
+
data: [11744, 17722, 16005, 19771, 20185, 24377, 32147, 39387]
|
10
|
+
}, {
|
11
|
+
name: 'Project Development',
|
12
|
+
data: [nil, nil, 7988, 12169, 15112, 22452, 34400, 34227]
|
13
|
+
}, {
|
14
|
+
name: 'Other',
|
15
|
+
data: [12908, 5948, 8105, 11248, 8989, 11816, 18274, 18111]
|
16
|
+
}] %>
|
17
|
+
|
18
|
+
<%= pb_rails("line_graph", props: { id: "line-test", gradient: false, chart_data: data, point_start: "1", title: 'Solar Employment Growth by Sector, 2010-2016', subtitle: 'Source: thesolarfoundation.com', axis_title: 'Number of Employees' } ) %>
|
19
|
+
|
20
|
+
|
21
|
+
|
@@ -0,0 +1,15 @@
|
|
1
|
+
import commonSettings from "../pb_dashboard/commonSettings.js";
|
2
|
+
|
3
|
+
const markerStyles = function(highchart){
|
4
|
+
highchart.plotOptions.line.marker.enabled = true;
|
5
|
+
highchart.plotOptions.series.marker.enabled = true;
|
6
|
+
highchart.plotOptions.series.marker.fillColor = "white";
|
7
|
+
highchart.plotOptions.series.marker.lineWidth = 2;
|
8
|
+
}
|
9
|
+
|
10
|
+
const pbLineGraph = function(highchart) {
|
11
|
+
commonSettings(highchart);
|
12
|
+
markerStyles(highchart);
|
13
|
+
};
|
14
|
+
|
15
|
+
export default pbLineGraph;
|
@@ -0,0 +1,85 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Playbook
|
4
|
+
module PbLineGraph
|
5
|
+
class LineGraph < Playbook::PbKit::Base
|
6
|
+
PROPS = %i[
|
7
|
+
configured_aria
|
8
|
+
configured_axis_title
|
9
|
+
configured_chart_data
|
10
|
+
configured_classname
|
11
|
+
configured_data
|
12
|
+
configured_gradient
|
13
|
+
configured_id
|
14
|
+
configured_point_start
|
15
|
+
configured_subtitle
|
16
|
+
configured_title
|
17
|
+
].freeze
|
18
|
+
|
19
|
+
def initialize(
|
20
|
+
aria: default_configuration,
|
21
|
+
axis_title: default_configuration,
|
22
|
+
chart_data: default_configuration,
|
23
|
+
classname: default_configuration,
|
24
|
+
data: default_configuration,
|
25
|
+
gradient: default_configuration,
|
26
|
+
id: default_configuration,
|
27
|
+
point_start: default_configuration,
|
28
|
+
subtitle: default_configuration,
|
29
|
+
title: default_configuration
|
30
|
+
)
|
31
|
+
self.configured_aria = aria
|
32
|
+
self.configured_axis_title = axis_title
|
33
|
+
self.configured_chart_data = chart_data
|
34
|
+
self.configured_classname = classname
|
35
|
+
self.configured_data = data
|
36
|
+
self.configured_gradient = gradient
|
37
|
+
self.configured_id = id
|
38
|
+
self.configured_point_start = point_start
|
39
|
+
self.configured_subtitle = subtitle
|
40
|
+
self.configured_title = title
|
41
|
+
end
|
42
|
+
|
43
|
+
def gradient
|
44
|
+
is_true? configured_gradient
|
45
|
+
end
|
46
|
+
|
47
|
+
def chart_type
|
48
|
+
gradient == true ? "area" : "line"
|
49
|
+
end
|
50
|
+
|
51
|
+
def title
|
52
|
+
default_value(configured_title, "")
|
53
|
+
end
|
54
|
+
|
55
|
+
def subtitle
|
56
|
+
default_value(configured_subtitle, "")
|
57
|
+
end
|
58
|
+
|
59
|
+
def axis_title
|
60
|
+
default_value(configured_axis_title, "")
|
61
|
+
end
|
62
|
+
|
63
|
+
def to_partial_path
|
64
|
+
"pb_line_graph/line_graph"
|
65
|
+
end
|
66
|
+
|
67
|
+
def point_start
|
68
|
+
default_value(configured_point_start, "")
|
69
|
+
end
|
70
|
+
|
71
|
+
def chart_data
|
72
|
+
adjusted_value(configured_chart_data, configured_chart_data.to_json.html_safe, {})
|
73
|
+
end
|
74
|
+
|
75
|
+
private
|
76
|
+
|
77
|
+
DEFAULT = Object.new
|
78
|
+
private_constant :DEFAULT
|
79
|
+
def default_configuration
|
80
|
+
DEFAULT
|
81
|
+
end
|
82
|
+
attr_accessor(*PROPS)
|
83
|
+
end
|
84
|
+
end
|
85
|
+
end
|
@@ -1,94 +1,31 @@
|
|
1
|
-
@import "
|
2
|
-
@import "../tokens/colors";
|
3
|
-
@import "../tokens/screen_sizes";
|
1
|
+
@import "list_mixin";
|
4
2
|
|
5
|
-
|
6
|
-
|
7
|
-
// $nspace-md: 16px;
|
8
|
-
// $nspace-lg: 24px;
|
9
|
-
// $nspace-xl: 32px;
|
10
|
-
|
11
|
-
@mixin base-list-style {
|
12
|
-
ul, ol {
|
13
|
-
margin: 0;
|
14
|
-
padding: 0;
|
15
|
-
list-style: none;
|
16
|
-
}
|
17
|
-
ol {
|
18
|
-
counter-reset: list-counter;
|
19
|
-
li:before {
|
20
|
-
content: counter(list-counter);
|
21
|
-
counter-increment: list-counter;
|
22
|
-
display: block;
|
23
|
-
width: 20px;
|
24
|
-
flex: 0 0 20px;
|
25
|
-
text-align: left;
|
26
|
-
color: $ink-lightest;
|
27
|
-
font-weight: $bold;
|
28
|
-
margin-right: $space-sm;
|
29
|
-
}
|
30
|
-
}
|
31
|
-
li {
|
32
|
-
border-bottom: 1px solid $sky;
|
33
|
-
padding: $space-sm 0;
|
34
|
-
display: flex;
|
35
|
-
align-items: left;
|
36
|
-
&:last-child {
|
37
|
-
border-bottom: 0;
|
38
|
-
// padding-bottom: 0;
|
39
|
-
}
|
40
|
-
}
|
41
|
-
}
|
42
|
-
|
43
|
-
@mixin li-layout-grid {
|
44
|
-
display: grid;
|
45
|
-
grid-template: auto / repeat(12,1fr);
|
46
|
-
align-items: center;
|
47
|
-
|
48
|
-
}
|
49
|
-
|
50
|
-
[class*=pb_list]{
|
51
|
-
@include base-list-style;
|
3
|
+
[class*=pb_list] {
|
4
|
+
@include pb_list;
|
52
5
|
}
|
53
6
|
|
54
|
-
[class^=pb_list]{
|
55
|
-
|
7
|
+
[class^=pb_list] {
|
56
8
|
&[class*=_dark] li {
|
57
|
-
|
58
|
-
border-bottom: 1px solid $white-opacity-1;
|
59
|
-
&:before {
|
60
|
-
color: $white-opacity-7;
|
61
|
-
}
|
9
|
+
@include pb_list_dark;
|
62
10
|
}
|
11
|
+
|
63
12
|
&[class*=_lg] li {
|
64
|
-
|
13
|
+
@include pb_list_large;
|
65
14
|
}
|
15
|
+
|
66
16
|
&[class*=_xpadding] li {
|
67
|
-
|
68
|
-
padding-right: $space-md;
|
17
|
+
@include pb_list_x_padding;
|
69
18
|
}
|
19
|
+
|
70
20
|
&[class*=_borderless] li {
|
71
|
-
|
21
|
+
@include pb_list_borderless;
|
72
22
|
}
|
23
|
+
|
73
24
|
&[class*=_layout_left] li {
|
74
|
-
@include
|
75
|
-
:nth-child(odd){
|
76
|
-
grid-column: 1 / 1 ;
|
77
|
-
}
|
78
|
-
:nth-child(even){
|
79
|
-
grid-column: 2 / -1 ;
|
80
|
-
text-align:left;
|
81
|
-
}
|
25
|
+
@include pb_list_layout_left;
|
82
26
|
}
|
27
|
+
|
83
28
|
&[class*=_layout_right] li {
|
84
|
-
@include
|
85
|
-
:nth-child(odd){
|
86
|
-
grid-column: 1 / -2 ;
|
87
|
-
}
|
88
|
-
:nth-child(even){
|
89
|
-
grid-column: -1 ;
|
90
|
-
text-align:right;
|
91
|
-
}
|
29
|
+
@include pb_list_layout_right;
|
92
30
|
}
|
93
|
-
|
94
31
|
}
|
@@ -0,0 +1,91 @@
|
|
1
|
+
@import "../tokens/spacing";
|
2
|
+
@import "../tokens/colors";
|
3
|
+
@import "../tokens/typography";
|
4
|
+
@import "../tokens/screen_sizes"; // $nspace-xs: 4px;
|
5
|
+
|
6
|
+
@mixin pb_list {
|
7
|
+
ol,
|
8
|
+
ul {
|
9
|
+
margin: 0;
|
10
|
+
padding: 0;
|
11
|
+
list-style: none;
|
12
|
+
}
|
13
|
+
|
14
|
+
ol {
|
15
|
+
counter-reset: list-counter;
|
16
|
+
|
17
|
+
li:before {
|
18
|
+
content: counter(list-counter);
|
19
|
+
counter-increment: list-counter;
|
20
|
+
display: block;
|
21
|
+
width: 20px;
|
22
|
+
flex: 0 0 20px;
|
23
|
+
text-align: left;
|
24
|
+
color: $text_lt_lighter;
|
25
|
+
font-weight: $bold;
|
26
|
+
margin-right: $space-sm;
|
27
|
+
}
|
28
|
+
}
|
29
|
+
|
30
|
+
li {
|
31
|
+
border-bottom: 1px solid $border_light;
|
32
|
+
padding: $space-sm 0;
|
33
|
+
display: flex;
|
34
|
+
align-items: left;
|
35
|
+
|
36
|
+
&:last-child {
|
37
|
+
border-bottom: 0;
|
38
|
+
}
|
39
|
+
}
|
40
|
+
}
|
41
|
+
@mixin pb_list_layout_grid {
|
42
|
+
display: grid;
|
43
|
+
grid-template: auto / repeat(12,1fr);
|
44
|
+
align-items: center;
|
45
|
+
}
|
46
|
+
@mixin pb_list_layout_left {
|
47
|
+
@include pb_list_layout_grid;
|
48
|
+
|
49
|
+
:nth-child(odd) {
|
50
|
+
grid-column: 1 / 1;
|
51
|
+
}
|
52
|
+
|
53
|
+
:nth-child(even) {
|
54
|
+
grid-column: 2 / -1;
|
55
|
+
text-align: left;
|
56
|
+
}
|
57
|
+
}
|
58
|
+
@mixin pb_list_layout_right {
|
59
|
+
@include pb_list_layout_grid;
|
60
|
+
|
61
|
+
:nth-child(odd) {
|
62
|
+
grid-column: 1 / -2;
|
63
|
+
}
|
64
|
+
|
65
|
+
:nth-child(even) {
|
66
|
+
grid-column: -1;
|
67
|
+
text-align: right;
|
68
|
+
}
|
69
|
+
}
|
70
|
+
@mixin pb_list_dark {
|
71
|
+
color: $white;
|
72
|
+
border-bottom: 1px solid $border_dark;
|
73
|
+
|
74
|
+
&:last-child {
|
75
|
+
border-bottom: 0;
|
76
|
+
}
|
77
|
+
|
78
|
+
&:before {
|
79
|
+
color: $text_dk_light;
|
80
|
+
}
|
81
|
+
}
|
82
|
+
@mixin pb_list_large {
|
83
|
+
padding: $space-lg 0;
|
84
|
+
}
|
85
|
+
@mixin pb_list_x_padding {
|
86
|
+
padding-left: $space-md;
|
87
|
+
padding-right: $space-md;
|
88
|
+
}
|
89
|
+
@mixin pb_list_borderless {
|
90
|
+
border-bottom: 0;
|
91
|
+
}
|