playbook_ui 7.3.0.pre.alpha1 → 7.3.0.pre.alpha2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (352) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +2 -1
  3. data/app/controllers/playbook/application_controller.rb +2 -0
  4. data/app/controllers/playbook/guides_controller.rb +11 -0
  5. data/app/controllers/playbook/pages_controller.rb +99 -0
  6. data/app/controllers/playbook/samples_controller.rb +40 -0
  7. data/app/pb_kits/playbook/_playbook.scss +1 -1
  8. data/app/pb_kits/playbook/data/menu.yml +4 -4
  9. data/app/pb_kits/playbook/index.js +1 -4
  10. data/app/pb_kits/playbook/packs/application.js +55 -0
  11. data/app/pb_kits/playbook/packs/examples.js +182 -0
  12. data/app/pb_kits/playbook/packs/main.scss +12 -0
  13. data/app/pb_kits/playbook/packs/samples.js +21 -0
  14. data/app/pb_kits/playbook/packs/site_styles/_samples.scss +72 -0
  15. data/app/pb_kits/playbook/packs/site_styles/_scaffold.scss +43 -0
  16. data/app/pb_kits/playbook/packs/site_styles/_site-style.scss +146 -0
  17. data/app/pb_kits/playbook/packs/site_styles/docs/_all.scss +10 -0
  18. data/app/pb_kits/playbook/packs/site_styles/docs/_bg_light_doc_example.scss +7 -0
  19. data/app/pb_kits/playbook/packs/site_styles/docs/_code_snippet.scss +531 -0
  20. data/app/pb_kits/playbook/packs/site_styles/docs/_color_utilities.scss +92 -0
  21. data/app/pb_kits/playbook/packs/site_styles/docs/_flex_examples.scss +15 -0
  22. data/app/pb_kits/playbook/packs/site_styles/docs/_kit_doc.scss +148 -0
  23. data/app/pb_kits/playbook/packs/site_styles/docs/_kits_examples.scss +15 -0
  24. data/app/pb_kits/playbook/packs/site_styles/docs/_markdown.scss +88 -0
  25. data/app/pb_kits/playbook/packs/site_styles/docs/_spacing_tokens.scss +72 -0
  26. data/app/pb_kits/playbook/pb_avatar/_avatar.jsx +1 -5
  27. data/app/pb_kits/playbook/pb_badge/_badge.jsx +2 -4
  28. data/app/pb_kits/playbook/pb_bar_graph/_bar_graph.html.erb +12 -1
  29. data/app/pb_kits/playbook/pb_bar_graph/_bar_graph.jsx +1 -1
  30. data/app/pb_kits/playbook/pb_bar_graph/bar_graph.rb +1 -1
  31. data/app/pb_kits/playbook/pb_body/body.rb +1 -1
  32. data/app/pb_kits/playbook/pb_button/_button.jsx +1 -5
  33. data/app/pb_kits/playbook/pb_button/_button_mixins.scss +0 -1
  34. data/app/pb_kits/playbook/pb_button_toolbar/_button_toolbar.jsx +3 -7
  35. data/app/pb_kits/playbook/pb_button_toolbar/_button_toolbar.scss +90 -82
  36. data/app/pb_kits/playbook/pb_button_toolbar/button_toolbar.rb +2 -4
  37. data/app/pb_kits/playbook/pb_button_toolbar/docs/_button_toolbar_default.html.erb +7 -17
  38. data/app/pb_kits/playbook/pb_button_toolbar/docs/_button_toolbar_default.jsx +9 -32
  39. data/app/pb_kits/playbook/pb_button_toolbar/docs/_button_toolbar_secondary.html.erb +7 -18
  40. data/app/pb_kits/playbook/pb_button_toolbar/docs/_button_toolbar_secondary.jsx +9 -37
  41. data/app/pb_kits/playbook/pb_button_toolbar/docs/_button_toolbar_vertical.html.erb +11 -0
  42. data/app/pb_kits/playbook/pb_button_toolbar/docs/_button_toolbar_vertical.jsx +29 -0
  43. data/app/pb_kits/playbook/pb_button_toolbar/docs/_button_toolbar_vertical_secondary.html.erb +11 -0
  44. data/app/pb_kits/playbook/pb_button_toolbar/docs/_button_toolbar_vertical_secondary.jsx +34 -0
  45. data/app/pb_kits/playbook/pb_button_toolbar/docs/example.yml +7 -3
  46. data/app/pb_kits/playbook/pb_button_toolbar/docs/index.js +2 -0
  47. data/app/pb_kits/playbook/pb_caption/_caption.html.erb +5 -7
  48. data/app/pb_kits/playbook/pb_caption/_caption.jsx +2 -2
  49. data/app/pb_kits/playbook/pb_caption/docs/example.yml +0 -2
  50. data/app/pb_kits/playbook/pb_caption/docs/index.js +0 -1
  51. data/app/pb_kits/playbook/pb_checkbox/_checkbox.jsx +2 -5
  52. data/app/pb_kits/playbook/pb_checkbox/checkbox.rb +1 -3
  53. data/app/pb_kits/playbook/pb_checkbox/docs/example.yml +0 -1
  54. data/app/pb_kits/playbook/pb_circle_icon_button/_circle_icon_button.jsx +1 -5
  55. data/app/pb_kits/playbook/pb_collapsible/_collapsible.html.erb +9 -0
  56. data/app/pb_kits/playbook/pb_collapsible/_collapsible.jsx +142 -0
  57. data/app/pb_kits/playbook/pb_collapsible/_collapsible.scss +17 -0
  58. data/app/pb_kits/playbook/pb_collapsible/child_kits/_collapsible_content.html.erb +7 -0
  59. data/app/pb_kits/playbook/pb_collapsible/child_kits/_collapsible_main.html.erb +16 -0
  60. data/app/pb_kits/playbook/pb_collapsible/collapsible.rb +15 -0
  61. data/app/pb_kits/playbook/pb_collapsible/collapsible_content.rb +21 -0
  62. data/app/pb_kits/playbook/pb_collapsible/collapsible_main.rb +24 -0
  63. data/app/pb_kits/playbook/pb_collapsible/docs/_collapsible_dark.html.erb +10 -0
  64. data/app/pb_kits/playbook/pb_collapsible/docs/_collapsible_dark.jsx +17 -0
  65. data/app/pb_kits/playbook/pb_collapsible/docs/_collapsible_default.html.erb +10 -0
  66. data/app/pb_kits/playbook/pb_collapsible/docs/_collapsible_default.jsx +17 -0
  67. data/app/pb_kits/playbook/pb_collapsible/docs/example.yml +9 -0
  68. data/app/pb_kits/playbook/pb_collapsible/docs/index.js +2 -0
  69. data/app/pb_kits/playbook/pb_collapsible/index.js +82 -0
  70. data/app/pb_kits/playbook/pb_contact/_contact.jsx +1 -5
  71. data/app/pb_kits/playbook/pb_currency/_currency.jsx +1 -5
  72. data/app/pb_kits/playbook/pb_dashboard_value/_dashboard_value.jsx +1 -5
  73. data/app/pb_kits/playbook/pb_date/_date.html.erb +8 -64
  74. data/app/pb_kits/playbook/pb_date/_date.jsx +66 -115
  75. data/app/pb_kits/playbook/pb_date/_date.scss +0 -30
  76. data/app/pb_kits/playbook/pb_date/date.rb +9 -21
  77. data/app/pb_kits/playbook/pb_date/docs/_date_default.html.erb +6 -21
  78. data/app/pb_kits/playbook/pb_date/docs/_date_default.jsx +12 -43
  79. data/app/pb_kits/playbook/pb_date/docs/example.yml +0 -4
  80. data/app/pb_kits/playbook/pb_date/docs/index.js +0 -2
  81. data/app/pb_kits/playbook/pb_date_picker/_date_picker.html.erb +2 -1
  82. data/app/pb_kits/playbook/pb_date_picker/_date_picker.jsx +5 -3
  83. data/app/pb_kits/playbook/pb_date_picker/date_picker.rb +2 -3
  84. data/app/pb_kits/playbook/pb_date_picker/date_picker_helper.js +31 -37
  85. data/app/pb_kits/playbook/pb_date_picker/docs/_date_picker_allow_input.html.erb +4 -0
  86. data/app/pb_kits/playbook/pb_date_picker/docs/_date_picker_allow_input.jsx +13 -0
  87. data/app/pb_kits/playbook/pb_date_picker/docs/_date_picker_allow_input.md +1 -0
  88. data/app/pb_kits/playbook/pb_date_picker/docs/_date_picker_dark.html.erb +4 -0
  89. data/app/pb_kits/playbook/pb_date_picker/docs/_date_picker_dark.jsx +13 -0
  90. data/app/pb_kits/playbook/pb_date_picker/docs/_date_picker_default_date.html.erb +2 -1
  91. data/app/pb_kits/playbook/pb_date_picker/docs/_date_picker_default_date.jsx +2 -1
  92. data/app/pb_kits/playbook/pb_date_picker/docs/_date_picker_format.html.erb +0 -4
  93. data/app/pb_kits/playbook/pb_date_picker/docs/_date_picker_format.jsx +0 -4
  94. data/app/pb_kits/playbook/pb_date_picker/docs/_date_picker_input.html.erb +9 -9
  95. data/app/pb_kits/playbook/pb_date_picker/docs/_date_picker_input.jsx +8 -8
  96. data/app/pb_kits/playbook/pb_date_picker/docs/_date_picker_input.md +1 -3
  97. data/app/pb_kits/playbook/pb_date_picker/docs/_date_picker_range.html.erb +0 -1
  98. data/app/pb_kits/playbook/pb_date_picker/docs/_date_picker_range.jsx +0 -1
  99. data/app/pb_kits/playbook/pb_date_picker/docs/example.yml +4 -1
  100. data/app/pb_kits/playbook/pb_date_picker/docs/index.js +2 -1
  101. data/app/pb_kits/playbook/pb_date_range_inline/_date_range_inline.html.erb +14 -8
  102. data/app/pb_kits/playbook/pb_date_range_inline/_date_range_inline.jsx +39 -122
  103. data/app/pb_kits/playbook/pb_date_range_inline/_date_range_inline.scss +2 -33
  104. data/app/pb_kits/playbook/pb_date_range_inline/date_range_inline.rb +9 -44
  105. data/app/pb_kits/playbook/pb_date_range_inline/docs/_date_range_inline_default.html.erb +1 -14
  106. data/app/pb_kits/playbook/pb_date_range_inline/docs/_date_range_inline_default.jsx +1 -45
  107. data/app/pb_kits/playbook/pb_date_range_stacked/_date_range_stacked.jsx +1 -5
  108. data/app/pb_kits/playbook/pb_date_stacked/_date_stacked.jsx +2 -2
  109. data/app/pb_kits/playbook/pb_date_year_stacked/_date_year_stacked.jsx +1 -5
  110. data/app/pb_kits/playbook/pb_distribution_bar/_distribution_bar.html.erb +8 -1
  111. data/app/pb_kits/playbook/pb_distribution_bar/distribution_bar.rb +0 -7
  112. data/app/pb_kits/playbook/pb_fixed_confirmation_toast/_fixed_confirmation_toast.html.erb +2 -3
  113. data/app/pb_kits/playbook/pb_fixed_confirmation_toast/_fixed_confirmation_toast.jsx +17 -31
  114. data/app/pb_kits/playbook/pb_fixed_confirmation_toast/_fixed_confirmation_toast.scss +0 -10
  115. data/app/pb_kits/playbook/pb_fixed_confirmation_toast/docs/_fixed_confirmation_toast_default.html.erb +1 -2
  116. data/app/pb_kits/playbook/pb_fixed_confirmation_toast/docs/_fixed_confirmation_toast_default.jsx +2 -1
  117. data/app/pb_kits/playbook/pb_fixed_confirmation_toast/docs/_fixed_confirmation_toast_multi_line.html.erb +1 -1
  118. data/app/pb_kits/playbook/pb_fixed_confirmation_toast/docs/_fixed_confirmation_toast_multi_line.jsx +1 -1
  119. data/app/pb_kits/playbook/pb_fixed_confirmation_toast/docs/_fixed_confirmation_toast_multi_line_dark.html.erb +1 -1
  120. data/app/pb_kits/playbook/pb_fixed_confirmation_toast/docs/_fixed_confirmation_toast_multi_line_dark.jsx +1 -1
  121. data/app/pb_kits/playbook/pb_fixed_confirmation_toast/docs/example.yml +0 -2
  122. data/app/pb_kits/playbook/pb_fixed_confirmation_toast/docs/index.js +0 -1
  123. data/app/pb_kits/playbook/pb_fixed_confirmation_toast/fixed_confirmation_toast.rb +1 -7
  124. data/app/pb_kits/playbook/pb_flex/_flex.jsx +2 -2
  125. data/app/pb_kits/playbook/pb_flex/_flex_item.jsx +1 -1
  126. data/app/pb_kits/playbook/pb_form/docs/_form_form_with.html.erb +2 -10
  127. data/app/pb_kits/playbook/pb_form/docs/_form_form_with_validate.html.erb +1 -1
  128. data/app/pb_kits/playbook/pb_form/docs/_form_simple_form.html.erb +3 -3
  129. data/app/pb_kits/playbook/pb_form/docs/_form_simple_form_validate.html.erb +3 -3
  130. data/app/pb_kits/playbook/pb_form/form_builder/checkbox_field.rb +2 -7
  131. data/app/pb_kits/playbook/pb_form/form_builder/date_picker_field.rb +0 -1
  132. data/app/pb_kits/playbook/pb_form_pill/_form_pill.jsx +2 -3
  133. data/app/pb_kits/playbook/pb_gauge/_gauge.jsx +1 -1
  134. data/app/pb_kits/playbook/pb_highlight/_highlight.jsx +1 -1
  135. data/app/pb_kits/playbook/pb_home_address_street/_home_address_street.jsx +2 -2
  136. data/app/pb_kits/playbook/pb_icon/_icon.jsx +2 -2
  137. data/app/pb_kits/playbook/pb_icon_value/_icon_value.jsx +1 -5
  138. data/app/pb_kits/playbook/pb_image/_image.jsx +1 -5
  139. data/app/pb_kits/playbook/pb_label_pill/_label_pill.jsx +1 -5
  140. data/app/pb_kits/playbook/pb_layout/_layout.jsx +4 -4
  141. data/app/pb_kits/playbook/pb_line_graph/_line_graph.html.erb +13 -1
  142. data/app/pb_kits/playbook/pb_line_graph/_line_graph.jsx +1 -1
  143. data/app/pb_kits/playbook/pb_line_graph/line_graph.rb +1 -1
  144. data/app/pb_kits/playbook/pb_list/_list.jsx +2 -3
  145. data/app/pb_kits/playbook/pb_list/_list_item.jsx +2 -3
  146. data/app/pb_kits/playbook/pb_logistic/_logistic.jsx +1 -5
  147. data/app/pb_kits/playbook/pb_message/_message.jsx +1 -5
  148. data/app/pb_kits/playbook/pb_multiple_users/_multiple_users.jsx +2 -5
  149. data/app/pb_kits/playbook/pb_nav/_item.html.erb +0 -3
  150. data/app/pb_kits/playbook/pb_nav/_item.jsx +1 -14
  151. data/app/pb_kits/playbook/pb_nav/_nav.jsx +2 -5
  152. data/app/pb_kits/playbook/pb_nav/_vertical_nav.scss +3 -22
  153. data/app/pb_kits/playbook/pb_nav/docs/example.yml +0 -5
  154. data/app/pb_kits/playbook/pb_nav/docs/index.js +0 -2
  155. data/app/pb_kits/playbook/pb_nav/item.rb +0 -1
  156. data/app/pb_kits/playbook/pb_nav/nav.rb +1 -6
  157. data/app/pb_kits/playbook/pb_person/_person.jsx +1 -5
  158. data/app/pb_kits/playbook/pb_person_contact/_person_contact.jsx +7 -12
  159. data/app/pb_kits/playbook/pb_person_contact/docs/_person_contact_with_wrong_numbers.jsx +0 -1
  160. data/app/pb_kits/playbook/pb_pill/_pill.scss +0 -1
  161. data/app/pb_kits/playbook/pb_popover/_popover.jsx +1 -5
  162. data/app/pb_kits/playbook/pb_popover/_popover.scss +4 -6
  163. data/app/pb_kits/playbook/pb_popover/index.js +1 -3
  164. data/app/pb_kits/playbook/pb_progress_simple/_progress_simple.jsx +4 -4
  165. data/app/pb_kits/playbook/pb_progress_step/_progress_step.jsx +1 -4
  166. data/app/pb_kits/playbook/pb_progress_step/_progress_step.scss +33 -168
  167. data/app/pb_kits/playbook/pb_progress_step/_progress_step_item.html.erb +1 -3
  168. data/app/pb_kits/playbook/pb_progress_step/_progress_step_item.jsx +8 -10
  169. data/app/pb_kits/playbook/pb_progress_step/docs/_description.md +1 -1
  170. data/app/pb_kits/playbook/pb_progress_step/docs/_progress_step_default.html.erb +16 -14
  171. data/app/pb_kits/playbook/pb_progress_step/docs/_progress_step_default.jsx +3 -6
  172. data/app/pb_kits/playbook/pb_progress_step/docs/_progress_step_tracker.html.erb +1 -17
  173. data/app/pb_kits/playbook/pb_progress_step/docs/_progress_step_tracker.jsx +1 -17
  174. data/app/pb_kits/playbook/pb_progress_step/docs/_progress_step_vertical.jsx +3 -10
  175. data/app/pb_kits/playbook/pb_progress_step/progress_step.rb +1 -11
  176. data/app/pb_kits/playbook/pb_progress_step/progress_step_item.rb +1 -1
  177. data/app/pb_kits/playbook/pb_radio/_radio.html.erb +1 -1
  178. data/app/pb_kits/playbook/pb_radio/docs/example.yml +0 -1
  179. data/app/pb_kits/playbook/pb_radio/radio.rb +4 -2
  180. data/app/pb_kits/playbook/pb_section_separator/_section_separator.jsx +3 -1
  181. data/app/pb_kits/playbook/pb_section_separator/_section_separator.scss +47 -26
  182. data/app/pb_kits/playbook/pb_section_separator/docs/_section_separator_line.jsx +2 -6
  183. data/app/pb_kits/playbook/pb_section_separator/docs/_section_separator_text.jsx +1 -2
  184. data/app/pb_kits/playbook/pb_section_separator/docs/_section_separator_text_background.jsx +1 -2
  185. data/app/pb_kits/playbook/pb_section_separator/docs/_section_separator_vertical.jsx +3 -9
  186. data/app/pb_kits/playbook/pb_section_separator/section_separator.rb +1 -1
  187. data/app/pb_kits/playbook/pb_select/_select.scss +1 -1
  188. data/app/pb_kits/playbook/pb_selectable_card/_selectable_card.html.erb +4 -4
  189. data/app/pb_kits/playbook/pb_selectable_card/docs/example.yml +2 -3
  190. data/app/pb_kits/playbook/pb_selectable_card/selectable_card.rb +9 -16
  191. data/app/pb_kits/playbook/pb_selectable_card_icon/_selectable_card_icon.html.erb +2 -3
  192. data/app/pb_kits/playbook/pb_selectable_card_icon/docs/example.yml +3 -4
  193. data/app/pb_kits/playbook/pb_selectable_card_icon/selectable_card_icon.rb +0 -3
  194. data/app/pb_kits/playbook/pb_selectable_icon/_selectable_icon.html.erb +3 -3
  195. data/app/pb_kits/playbook/pb_selectable_icon/docs/example.yml +2 -3
  196. data/app/pb_kits/playbook/pb_selectable_icon/selectable_icon.rb +0 -10
  197. data/app/pb_kits/playbook/pb_stat_change/_stat_change.jsx +2 -2
  198. data/app/pb_kits/playbook/pb_stat_value/_stat_value.jsx +3 -3
  199. data/app/pb_kits/playbook/pb_stat_value/docs/_stat_value_default.jsx +1 -6
  200. data/app/pb_kits/playbook/pb_table/_table.jsx +2 -2
  201. data/app/pb_kits/playbook/pb_table/docs/example.yml +0 -12
  202. data/app/pb_kits/playbook/pb_table/docs/index.js +0 -6
  203. data/app/pb_kits/playbook/pb_text_input/_text_input.jsx +1 -1
  204. data/app/pb_kits/playbook/pb_textarea/_textarea.jsx +1 -1
  205. data/app/pb_kits/playbook/pb_time/_time.html.erb +20 -17
  206. data/app/pb_kits/playbook/pb_time/_time.jsx +29 -42
  207. data/app/pb_kits/playbook/pb_time/_time.scss +24 -4
  208. data/app/pb_kits/playbook/pb_time/docs/_time_align.jsx +1 -4
  209. data/app/pb_kits/playbook/pb_time/docs/_time_default.html.erb +11 -11
  210. data/app/pb_kits/playbook/pb_time/docs/_time_default.jsx +1 -13
  211. data/app/pb_kits/playbook/pb_time/docs/_time_sizes.jsx +1 -4
  212. data/app/pb_kits/playbook/pb_time/docs/_time_timestamp.jsx +1 -3
  213. data/app/pb_kits/playbook/pb_time/docs/_time_timezone.html.erb +1 -2
  214. data/app/pb_kits/playbook/pb_time/docs/_time_timezone.jsx +2 -7
  215. data/app/pb_kits/playbook/pb_time_range_inline/_time_range_inline.jsx +1 -1
  216. data/app/pb_kits/playbook/pb_time_range_inline/_time_range_inline.scss +5 -5
  217. data/app/pb_kits/playbook/pb_time_stacked/_time_stacked.jsx +3 -3
  218. data/app/pb_kits/playbook/pb_timestamp/_timestamp.jsx +1 -1
  219. data/app/pb_kits/playbook/pb_title/_title.jsx +1 -5
  220. data/app/pb_kits/playbook/pb_title_count/_title_count.jsx +1 -5
  221. data/app/pb_kits/playbook/pb_title_detail/_title_detail.jsx +5 -5
  222. data/app/pb_kits/playbook/pb_toggle/_toggle.jsx +3 -3
  223. data/app/pb_kits/playbook/pb_toggle/_toggle.scss +43 -41
  224. data/app/pb_kits/playbook/pb_toggle/docs/_toggle_size.html.erb +11 -0
  225. data/app/pb_kits/playbook/pb_toggle/docs/_toggle_size.jsx +44 -0
  226. data/app/pb_kits/playbook/pb_toggle/docs/example.yml +2 -1
  227. data/app/pb_kits/playbook/pb_toggle/docs/index.js +1 -0
  228. data/app/pb_kits/playbook/pb_toggle/toggle.rb +2 -5
  229. data/app/pb_kits/playbook/pb_typeahead/_typeahead.html.erb +20 -24
  230. data/app/pb_kits/playbook/pb_typeahead/_typeahead.jsx +1 -19
  231. data/app/pb_kits/playbook/pb_typeahead/components/MultiValue.jsx +1 -8
  232. data/app/pb_kits/playbook/pb_typeahead/components/Option.jsx +13 -21
  233. data/app/pb_kits/playbook/pb_typeahead/docs/_typeahead_default.html.erb +3 -4
  234. data/app/pb_kits/playbook/pb_typeahead/docs/_typeahead_with_context_dark.html.erb +1 -1
  235. data/app/pb_kits/playbook/pb_typeahead/docs/_typeahead_with_pills.jsx +3 -0
  236. data/app/pb_kits/playbook/pb_typeahead/docs/_typeahead_with_pills_async_summary.jsx +45 -0
  237. data/app/pb_kits/playbook/pb_typeahead/docs/_typeahead_with_pills_async_users.jsx +3 -0
  238. data/app/pb_kits/playbook/pb_typeahead/docs/_typeahead_with_pills_summary.jsx +27 -0
  239. data/app/pb_kits/playbook/pb_typeahead/docs/example.yml +0 -3
  240. data/app/pb_kits/playbook/pb_typeahead/typeahead.rb +1 -24
  241. data/app/pb_kits/playbook/pb_user_badge/_user_badge.jsx +2 -5
  242. data/app/pb_kits/playbook/props.rb +1 -1
  243. data/app/pb_kits/playbook/props/base.rb +4 -6
  244. data/app/pb_kits/playbook/tokens/_colors.scss +23 -22
  245. data/app/pb_kits/playbook/tokens/_typography.scss +4 -4
  246. data/app/pb_kits/playbook/vendor.js +3 -8
  247. data/app/views/layouts/playbook/_mobile_hamburger.html.erb +2 -0
  248. data/app/views/layouts/playbook/_nav.html.erb +37 -0
  249. data/app/views/layouts/playbook/_sidebar.html.erb +51 -0
  250. data/app/views/layouts/playbook/application.html.erb +26 -0
  251. data/app/views/layouts/playbook/fullscreen.html.slim +10 -0
  252. data/app/views/layouts/playbook/grid.html.slim +10 -0
  253. data/app/views/layouts/playbook/samples.html.erb +19 -0
  254. data/app/views/playbook/guides/create_kit.html.slim +16 -0
  255. data/app/views/playbook/guides/create_kit/_file_naming.html.md +2 -0
  256. data/app/views/playbook/guides/create_kit/_generator.html.md +6 -0
  257. data/app/views/playbook/guides/create_kit/_kit_examples.html.md +2 -0
  258. data/app/views/playbook/guides/create_kit/_kit_rails.html.md +2 -0
  259. data/app/views/playbook/guides/create_kit/_kit_react.html.md +2 -0
  260. data/app/views/playbook/guides/create_kit/_layout.html.md +2 -0
  261. data/app/views/playbook/guides/create_kit/_view_objects.html.md +2 -0
  262. data/app/views/playbook/guides/create_kit/_writing_sass.md +10 -0
  263. data/app/views/playbook/guides/use_nitro.html.slim +6 -0
  264. data/app/views/playbook/guides/use_nitro/_local.html.md +2 -0
  265. data/app/views/playbook/guides/use_nitro/_nitro_components.html.md +2 -0
  266. data/app/views/playbook/guides/use_nitro/_versions.html.md +2 -0
  267. data/app/views/playbook/pages/fullscreen.html.slim +10 -0
  268. data/app/views/playbook/pages/grid.html.slim +2 -0
  269. data/app/views/playbook/pages/home.html.slim +4 -0
  270. data/app/views/playbook/pages/kit_category_show.html.erb +14 -0
  271. data/app/views/playbook/pages/kit_show.html.erb +33 -0
  272. data/app/views/playbook/pages/kits.html.erb +12 -0
  273. data/app/views/playbook/pages/principals/_getting_started.html.md +30 -0
  274. data/app/views/playbook/pages/principles.html.slim +3 -0
  275. data/app/views/playbook/pages/tokens.html.slim +15 -0
  276. data/app/views/playbook/pages/tokens/_pb_doc_spacing.html.slim +61 -0
  277. data/app/views/playbook/pages/utilities.html.slim +116 -0
  278. data/app/views/playbook/pages/utilities/_pb_doc_color.html.slim +15 -0
  279. data/app/views/playbook/samples/collection_detail/index.html.erb +169 -0
  280. data/app/views/playbook/samples/collection_detail/index.jsx +372 -0
  281. data/app/views/playbook/samples/dashboards/index.html.erb +81 -0
  282. data/app/views/playbook/samples/dashboards/index.jsx +130 -0
  283. data/app/views/playbook/samples/filter_table/index.html.erb +348 -0
  284. data/app/views/playbook/samples/filter_table/index.jsx +433 -0
  285. data/app/views/playbook/samples/registration/index.html.erb +316 -0
  286. data/app/views/playbook/samples/registration/index.jsx +476 -0
  287. data/app/views/playbook/samples/sample_show.html.erb +36 -0
  288. data/lib/generators/kit/USAGE +5 -0
  289. data/lib/generators/kit/kit_generator.rb +95 -0
  290. data/lib/generators/kit/templates/kit_example_rails.erb.tt +1 -0
  291. data/lib/generators/kit/templates/kit_example_react.erb.tt +10 -0
  292. data/lib/generators/kit/templates/kit_example_yml.erb.tt +9 -0
  293. data/lib/generators/kit/templates/kit_html.erb.tt +7 -0
  294. data/lib/generators/kit/templates/kit_js.erb.tt +1 -0
  295. data/lib/generators/kit/templates/kit_jsx.erb.tt +68 -0
  296. data/lib/generators/kit/templates/kit_ruby.erb.tt +11 -0
  297. data/lib/generators/kit/templates/kit_ruby_spec.erb.tt +11 -0
  298. data/lib/generators/kit/templates/kit_scss.erb +3 -0
  299. data/lib/playbook/engine.rb +0 -1
  300. data/lib/playbook/version.rb +1 -1
  301. data/lib/tasks/pb_release.rake +77 -0
  302. data/lib/tasks/playbook_tasks.rake +26 -0
  303. metadata +104 -53
  304. data/app/pb_kits/playbook/pb_button_toolbar/_button_toolbar_dark.scss +0 -57
  305. data/app/pb_kits/playbook/pb_button_toolbar/_button_toolbar_mixins.scss +0 -27
  306. data/app/pb_kits/playbook/pb_caption/docs/_caption_block.html.erb +0 -11
  307. data/app/pb_kits/playbook/pb_caption/docs/_caption_block.jsx +0 -28
  308. data/app/pb_kits/playbook/pb_checkbox/docs/_checkbox_options.html.erb +0 -10
  309. data/app/pb_kits/playbook/pb_date/docs/_date_alignment.html.erb +0 -24
  310. data/app/pb_kits/playbook/pb_date/docs/_date_alignment.jsx +0 -35
  311. data/app/pb_kits/playbook/pb_date/docs/_date_variants.html.erb +0 -27
  312. data/app/pb_kits/playbook/pb_date/docs/_date_variants.jsx +0 -43
  313. data/app/pb_kits/playbook/pb_date_picker/docs/_date_picker_default_date.md +0 -1
  314. data/app/pb_kits/playbook/pb_date_picker/docs/_date_picker_on_change.jsx +0 -34
  315. data/app/pb_kits/playbook/pb_date_picker/docs/_date_picker_on_change.md +0 -3
  316. data/app/pb_kits/playbook/pb_fixed_confirmation_toast/docs/_fixed_confirmation_toast_close.html.erb +0 -21
  317. data/app/pb_kits/playbook/pb_fixed_confirmation_toast/docs/_fixed_confirmation_toast_close.jsx +0 -38
  318. data/app/pb_kits/playbook/pb_fixed_confirmation_toast/index.js +0 -18
  319. data/app/pb_kits/playbook/pb_nav/docs/_borderless_nav.html.erb +0 -6
  320. data/app/pb_kits/playbook/pb_nav/docs/_borderless_nav.jsx +0 -29
  321. data/app/pb_kits/playbook/pb_nav/docs/_with_img_nav.html.erb +0 -7
  322. data/app/pb_kits/playbook/pb_nav/docs/_with_img_nav.jsx +0 -42
  323. data/app/pb_kits/playbook/pb_nav/docs/_with_img_nav.md +0 -1
  324. data/app/pb_kits/playbook/pb_radio/docs/_radio_options.html.erb +0 -9
  325. data/app/pb_kits/playbook/pb_section_separator/_section_separator_mixin.scss +0 -32
  326. data/app/pb_kits/playbook/pb_selectable_card/docs/_selectable_card_options.html.erb +0 -16
  327. data/app/pb_kits/playbook/pb_selectable_card_icon/docs/_selectable_card_icon_options.html.erb +0 -16
  328. data/app/pb_kits/playbook/pb_selectable_icon/docs/_selectable_icon_options.html.erb +0 -15
  329. data/app/pb_kits/playbook/pb_table/docs/_table_action_middle.html.erb +0 -34
  330. data/app/pb_kits/playbook/pb_table/docs/_table_action_middle.jsx +0 -68
  331. data/app/pb_kits/playbook/pb_table/docs/_table_action_middle.md +0 -2
  332. data/app/pb_kits/playbook/pb_table/docs/_table_icon_buttons.html.erb +0 -61
  333. data/app/pb_kits/playbook/pb_table/docs/_table_icon_buttons.jsx +0 -89
  334. data/app/pb_kits/playbook/pb_table/docs/_table_icon_buttons.md +0 -1
  335. data/app/pb_kits/playbook/pb_table/docs/_table_one_action.html.erb +0 -34
  336. data/app/pb_kits/playbook/pb_table/docs/_table_one_action.jsx +0 -68
  337. data/app/pb_kits/playbook/pb_table/docs/_table_one_action.md +0 -2
  338. data/app/pb_kits/playbook/pb_table/docs/_table_two_actions.html.erb +0 -43
  339. data/app/pb_kits/playbook/pb_table/docs/_table_two_actions.jsx +0 -80
  340. data/app/pb_kits/playbook/pb_table/docs/_table_two_actions.md +0 -1
  341. data/app/pb_kits/playbook/pb_table/docs/_table_two_plus_actions.html.erb +0 -34
  342. data/app/pb_kits/playbook/pb_table/docs/_table_two_plus_actions.jsx +0 -63
  343. data/app/pb_kits/playbook/pb_table/docs/_table_two_plus_actions.md +0 -1
  344. data/app/pb_kits/playbook/pb_toggle/docs/_toggle_options.html.erb +0 -10
  345. data/app/pb_kits/playbook/pb_typeahead/docs/_typeahead_with_pills.html.erb +0 -25
  346. data/app/pb_kits/playbook/pb_typeahead/docs/_typeahead_with_pills.md +0 -8
  347. data/app/pb_kits/playbook/pb_typeahead/docs/_typeahead_with_pills_async.html.erb +0 -30
  348. data/app/pb_kits/playbook/pb_typeahead/docs/_typeahead_with_pills_async.md +0 -11
  349. data/app/pb_kits/playbook/pb_typeahead/docs/_typeahead_with_pills_async_users.html.erb +0 -25
  350. data/app/pb_kits/playbook/pb_typeahead/docs/_typeahead_with_pills_async_users.md +0 -1
  351. data/app/pb_kits/playbook/react_rails_kits.js +0 -6
  352. data/app/pb_kits/playbook/tokens/index.scss +0 -11
@@ -0,0 +1,433 @@
1
+ import React from 'react'
2
+ import { Body, Button, Caption, CircleIconButton, Currency, Date, Filter, Flex, FlexItem, PersonContact, ProgressPills, Table, TextInput, Title, User } from '../../../../pb_kits/playbook'
3
+
4
+ const FilterTable = () => (
5
+ <div>
6
+ <Flex
7
+ className="bg_light"
8
+ marginTop="md"
9
+ paddingX="md"
10
+ spacing="between"
11
+ >
12
+ <FlexItem>
13
+ <Title
14
+ size={3}
15
+ tag="h3"
16
+ text="Prospective Clients"
17
+ />
18
+ </FlexItem>
19
+ <FlexItem>
20
+ <Button
21
+ onClick={() => alert('button clicked!')}
22
+ text="Add Client"
23
+ />
24
+ </FlexItem>
25
+ </Flex>
26
+ <Filter
27
+ filters={{ 'Start Date': 'Apr 19, 2020', 'End Date': 'Apr 20, 2020' }}
28
+ marginTop="md"
29
+ marginX="md"
30
+ results={0}
31
+ sortOptions={{
32
+ dateCreated: 'Date Created',
33
+ // eslint-disable-next-line
34
+ assignee: 'Assignee',
35
+ // eslint-disable-next-line
36
+ contact: 'Contact',
37
+ // eslint-disable-next-line
38
+ inquirySource: 'Inquiry Source',
39
+ }}
40
+ sortValue={[{ name: 'dateCreated', dir: 'asc' }]}
41
+ template="single"
42
+ >
43
+
44
+ <Flex orientation="row">
45
+ <TextInput
46
+ aria={{ label: 'hello' }}
47
+ data={{ say: 'hi', yell: 'go' }}
48
+ id="unique-id"
49
+ label="Start Date"
50
+ paddingRight="md"
51
+ placeholder="Enter first name"
52
+ value="Apr 19, 2020"
53
+ />
54
+ <TextInput
55
+ aria={{ label: 'hello' }}
56
+ data={{ say: 'hi', yell: 'go' }}
57
+ id="unique-id"
58
+ label="End Date"
59
+ placeholder="Enter first name"
60
+ value="Apr 20, 2020"
61
+ />
62
+ </Flex>
63
+
64
+ <Flex spacing="between">
65
+ <Button text="Apply" />
66
+ <Button
67
+ text="Clear"
68
+ variant="secondary"
69
+ />
70
+ </Flex>
71
+ </Filter>
72
+ <Flex orientation="row">
73
+
74
+ <Table
75
+ margin="md"
76
+ size="sm"
77
+ >
78
+ <thead>
79
+ <tr>
80
+ <th>{'Contact'}</th>
81
+ <th>{'Date Created'}</th>
82
+ <th>{'Inquiry Source'}</th>
83
+ <th>{'Lead Status'}</th>
84
+ <th>{'Quote'}</th>
85
+ <th>{'Assignee'}</th>
86
+ <th>{'Actions'}</th>
87
+ </tr>
88
+ </thead>
89
+ <tbody>
90
+ <tr>
91
+ <td>
92
+ <PersonContact
93
+ contacts={[
94
+ {
95
+ contactType: 'cell',
96
+ contactValue: '3832919348',
97
+ },
98
+ {
99
+ contactType: 'email',
100
+ contactValue: 'jesse.cortez@gmail.com',
101
+ },
102
+ ]}
103
+ firstName="Jesse"
104
+ lastName="Cortez"
105
+ />
106
+ </td>
107
+ <td>
108
+ <Date
109
+ size="xs"
110
+ value="2020-04-20T04:20:00.000Z"
111
+ />
112
+ </td>
113
+ <td>
114
+ <Body text="Email" />
115
+ <Caption
116
+ size="xs"
117
+ text="hello@companyname.com"
118
+ />
119
+ </td>
120
+ <td>
121
+ <ProgressPills
122
+ active={0}
123
+ steps={4}
124
+ title="Status:"
125
+ value="Not Started"
126
+ />
127
+ </td>
128
+ <td>
129
+ <Currency amount="729.63" />
130
+ </td>
131
+ <td>
132
+ <Body text="Unassigned" />
133
+ </td>
134
+ <td>
135
+ <CircleIconButton
136
+ icon="ellipsis-h"
137
+ variant="secondary"
138
+ />
139
+ </td>
140
+ </tr>
141
+ <tr>
142
+ <td>
143
+ <PersonContact
144
+ contacts={[
145
+ {
146
+ contactType: 'cell',
147
+ contactValue: '8313455824',
148
+ },
149
+ {
150
+ contactType: 'email',
151
+ contactValue: 'billbuch@yahoo.com',
152
+ },
153
+ ]}
154
+ firstName="Bill"
155
+ lastName="Buchanan"
156
+ />
157
+ </td>
158
+ <td>
159
+ <Date
160
+ size="xs"
161
+ value="2020-04-20T04:20:00.000Z"
162
+ />
163
+ </td>
164
+ <td>
165
+ <Body text="Social Media" />
166
+ <Caption
167
+ size="xs"
168
+ text="Facebook"
169
+ />
170
+ </td>
171
+ <td>
172
+ <ProgressPills
173
+ active={3}
174
+ steps={4}
175
+ title="Status:"
176
+ value="Negotiation"
177
+ />
178
+ </td>
179
+ <td>
180
+ <Currency amount="534.40" />
181
+ </td>
182
+ <td>
183
+ <User
184
+ align="left"
185
+ avatarUrl="https://randomuser.me/api/portraits/women/44.jpg"
186
+ name="Anna Black"
187
+ orientation="horizontal"
188
+ title="Project Coordinator"
189
+ />
190
+ </td>
191
+ <td>
192
+ <CircleIconButton
193
+ icon="ellipsis-h"
194
+ variant="secondary"
195
+ />
196
+ </td>
197
+ </tr>
198
+ <tr>
199
+ <td>
200
+ <PersonContact
201
+ contacts={[
202
+ {
203
+ contactType: 'cell',
204
+ contactValue: '1582430782',
205
+ },
206
+ {
207
+ contactType: 'email',
208
+ contactValue: 'effieguzman@comcast.net',
209
+ },
210
+ ]}
211
+ firstName="Effie"
212
+ lastName="Guzman"
213
+ />
214
+ </td>
215
+ <td>
216
+ <Date
217
+ size="xs"
218
+ value="2020-04-20T04:20:00.000Z"
219
+ />
220
+ </td>
221
+ <td>
222
+ <Body text="Online Quote" />
223
+ <Caption
224
+ size="xs"
225
+ text="Landing Page"
226
+ />
227
+ </td>
228
+ <td>
229
+ <ProgressPills
230
+ active={4}
231
+ steps={4}
232
+ title="Status:"
233
+ value="Contract"
234
+ />
235
+ </td>
236
+ <td>
237
+ <Currency amount="392.26" />
238
+ </td>
239
+ <td>
240
+ <User
241
+ align="left"
242
+ avatarUrl="https://randomuser.me/api/portraits/women/44.jpg"
243
+ name="Anna Black"
244
+ orientation="horizontal"
245
+ title="Project Coordinator"
246
+ />
247
+ </td>
248
+ <td>
249
+ <CircleIconButton
250
+ icon="ellipsis-h"
251
+ variant="secondary"
252
+ />
253
+ </td>
254
+ </tr>
255
+ <tr>
256
+ <td>
257
+ <PersonContact
258
+ contacts={[
259
+ {
260
+ contactType: 'cell',
261
+ contactValue: '3859275970',
262
+ },
263
+ {
264
+ contactType: 'email',
265
+ contactValue: 'rodneyboone@gmail.com',
266
+ },
267
+ ]}
268
+ firstName="Rodney"
269
+ lastName="Boone"
270
+ />
271
+ </td>
272
+ <td>
273
+ <Date
274
+ size="xs"
275
+ value="2020-04-20T04:20:00.000Z"
276
+ />
277
+ </td>
278
+ <td>
279
+ <Body text="Internal" />
280
+ <Caption
281
+ size="xs"
282
+ text="Referral"
283
+ />
284
+ </td>
285
+ <td>
286
+ <ProgressPills
287
+ active={4}
288
+ steps={4}
289
+ title="Status:"
290
+ value="Contract"
291
+ />
292
+ </td>
293
+ <td>
294
+ <Currency amount="342.86" />
295
+ </td>
296
+ <td>
297
+ <User
298
+ align="left"
299
+ avatarUrl="https://randomuser.me/api/portraits/women/44.jpg"
300
+ name="Anna Black"
301
+ orientation="horizontal"
302
+ title="Project Coordinator"
303
+ />
304
+ </td>
305
+ <td>
306
+ <CircleIconButton
307
+ icon="ellipsis-h"
308
+ variant="secondary"
309
+ />
310
+ </td>
311
+ </tr>
312
+ <tr>
313
+ <td>
314
+ <PersonContact
315
+ contacts={[
316
+ {
317
+ contactType: 'cell',
318
+ contactValue: '2849186943',
319
+ },
320
+ {
321
+ contactType: 'email',
322
+ contactValue: 'barbaramaxwell4@yahoo.com',
323
+ },
324
+ ]}
325
+ firstName="Barbara"
326
+ lastName="Maxwell"
327
+ />
328
+ </td>
329
+ <td>
330
+ <Date
331
+ size="xs"
332
+ value="2020-04-20T04:20:00.000Z"
333
+ />
334
+ </td>
335
+ <td>
336
+ <Body text="Online Quote" />
337
+ <Caption
338
+ size="xs"
339
+ text="Main Website"
340
+ />
341
+ </td>
342
+ <td>
343
+ <ProgressPills
344
+ active={3}
345
+ steps={4}
346
+ title="Status:"
347
+ value="Negotiation"
348
+ />
349
+ </td>
350
+ <td>
351
+ <Currency amount="145.01" />
352
+ </td>
353
+ <td>
354
+ <User
355
+ align="left"
356
+ avatarUrl="https://randomuser.me/api/portraits/women/44.jpg"
357
+ name="Anna Black"
358
+ orientation="horizontal"
359
+ title="Project Coordinator"
360
+ />
361
+ </td>
362
+ <td>
363
+ <CircleIconButton
364
+ icon="ellipsis-h"
365
+ variant="secondary"
366
+ />
367
+ </td>
368
+ </tr>
369
+ <tr>
370
+ <td>
371
+ <PersonContact
372
+ contacts={[
373
+ {
374
+ contactType: 'cell',
375
+ contactValue: '6884927492',
376
+ },
377
+ {
378
+ contactType: 'email',
379
+ contactValue: 'ellen.thornton@gmail.com',
380
+ },
381
+ ]}
382
+ firstName="Ellen"
383
+ lastName="Thornton"
384
+ />
385
+ </td>
386
+ <td>
387
+ <Date
388
+ size="xs"
389
+ value="2020-04-20T04:20:00.000Z"
390
+ />
391
+ </td>
392
+ <td>
393
+ <Body text="Social Media" />
394
+ <Caption
395
+ size="xs"
396
+ text="Instagram"
397
+ />
398
+ </td>
399
+ <td>
400
+ <ProgressPills
401
+ active={3}
402
+ steps={4}
403
+ title="Status:"
404
+ value="Negotiation"
405
+ />
406
+ </td>
407
+ <td>
408
+ <Currency amount="25.27" />
409
+ </td>
410
+ <td>
411
+ <User
412
+ align="left"
413
+ avatarUrl="https://randomuser.me/api/portraits/women/44.jpg"
414
+ name="Anna Black"
415
+ orientation="horizontal"
416
+ title="Project Coordinator"
417
+ />
418
+ </td>
419
+ <td>
420
+ <CircleIconButton
421
+ icon="ellipsis-h"
422
+ variant="secondary"
423
+ />
424
+ </td>
425
+ </tr>
426
+ </tbody>
427
+ </Table>
428
+ </Flex>
429
+
430
+ </div>
431
+ )
432
+
433
+ export default FilterTable
@@ -0,0 +1,316 @@
1
+ <%= pb_rails("layout", props: {position: "left", size: "lg", collapse: "sm"}) do %>
2
+ <%= pb_rails("layout/sidebar") do %>
3
+ <%= pb_rails("flex", props: {orientation: "column", horizontal: "center", padding: "md"}) do %>
4
+ <%= pb_rails("flex/flex_item") do %>
5
+ <%= pb_rails("title", props: { text: "Design Expo", tag: "h2", size: 3 }) %>
6
+ <% end %>
7
+ <%= pb_rails("flex/flex_item") do %>
8
+ <%= pb_rails("body", props: {
9
+ text: "Annual Conference*",
10
+ color: "light"
11
+ }) %>
12
+ <% end %>
13
+ <% end %>
14
+
15
+ <%= pb_rails("section_separator") %>
16
+ <%= pb_rails("flex", props: {orientation: "column", padding: "md"}) do %>
17
+ <%= pb_rails("flex/flex_item") do %>
18
+ <%= pb_rails("title", props: { text: "Regions", tag: "h4", size: 4, padding_bottom: "sm" }) %>
19
+ <% end %>
20
+
21
+ <%= pb_rails("flex", props: {orientation: "column"}) do %>
22
+ <%= pb_rails("body", props: {classname: "flex-item"}) do %>
23
+ <%= pb_rails("checkbox" , props: {
24
+ text: "North America",
25
+ value: "checkbox-value",
26
+ checked: true,
27
+ name: "checkbox-name",
28
+ padding_left: "sm",
29
+ padding_bottom: "sm"
30
+ }) %>
31
+ <% end %>
32
+ <%= pb_rails("body", props: {classname: "flex-item"}) do %>
33
+ <%= pb_rails("checkbox" , props: {
34
+ text: "Europe",
35
+ value: "checkbox-value",
36
+ checked: true,
37
+ name: "checkbox-name",
38
+ padding_left: "sm",
39
+ padding_bottom: "sm"
40
+ }) %>
41
+ <% end %>
42
+ <% end %>
43
+
44
+
45
+ <%= pb_rails("title", props: { text: "Total Registered", tag: "h4", size: 4, padding_y: "sm" }) %>
46
+
47
+ <%= pb_rails("table", props: { size: "sm", disable_hover: true, padding_bottom: "xs" }) do %>
48
+ <thead>
49
+ <tr>
50
+ <th>Conference</th>
51
+ <th>Total #</th>
52
+ </tr>
53
+ </thead>
54
+ <tbody>
55
+ <tr>
56
+ <td>2020 | SF</td>
57
+ <td>2,391</td>
58
+ </tr>
59
+ <tr>
60
+ <td>2020 | TOR</td>
61
+ <td>3,829</td>
62
+ </tr>
63
+ <tr>
64
+ <td>2019 | AMS</td>
65
+ <td>2,047</td>
66
+ </tr>
67
+ <tr>
68
+ <td>2018 | SF</td>
69
+ <td>1,824</td>
70
+ </tr>
71
+ <tr>
72
+ <td>2017 | LA</td>
73
+ <td>719</td>
74
+ </tr>
75
+ <tr>
76
+ <td>2017 | LDN</td>
77
+ <td>491</td>
78
+ </tr>
79
+ </tbody>
80
+ <% end %>
81
+ <%= pb_rails("caption", props: { text: "*This dashboard includes the last six conferences", size: 'xs' }) %>
82
+ <% end %>
83
+
84
+ <% end %>
85
+
86
+
87
+
88
+ <%= pb_rails("layout/body", props: { padding: "xl" }) do %>
89
+
90
+ <%= pb_rails("title", props: { text: "Registration Dashboard", tag: "h1", size: 3, padding_bottom: "lg" }) %>
91
+
92
+
93
+ <%= pb_rails("flex") do %>
94
+ <%= pb_rails("flex/flex_item", props: {fixed_size: "60%", padding_right: "lg"}) do %>
95
+ <%= pb_rails("card") do %>
96
+ <%= pb_rails("flex", props: {vertical: "bottom", spacing: "around", padding_bottom: "md"}) do %>
97
+ <%= pb_rails("flex/flex_item") do %>
98
+ <%= pb_rails("flex", props: {orientation: "column", horizontal: "center"}) do %>
99
+ <%= pb_rails("flex/flex_item") do %>
100
+ <%= pb_rails("caption", props: { text: "2020 | SF", size: "xs" }) %>
101
+ <% end %>
102
+ <%= pb_rails("flex/flex_item") do %>
103
+ <%= pb_rails("caption", props: { text: "Total Registered" }) %>
104
+ <% end %>
105
+ <%= pb_rails("flex/flex_item") do %>
106
+ <%= pb_rails("title", props: { text: "2,391", tag: "h3", size: 2 }) %>
107
+ <% end %>
108
+ <% end %>
109
+ <% end %>
110
+ <%= pb_rails("section_separator", props: { orientation: "vertical" }) %>
111
+ <%= pb_rails("flex/flex_item") do %>
112
+ <%= pb_rails("flex", props: {orientation: "column", horizontal: "center"}) do %>
113
+ <%= pb_rails("flex/flex_item") do %>
114
+ <%= pb_rails("caption", props: { text: "Graphic" }) %>
115
+ <% end %>
116
+ <%= pb_rails("flex/flex_item") do %>
117
+ <%= pb_rails("title", props: { text: "353", tag: "h3", size: 3 }) %>
118
+ <% end %>
119
+ <% end %>
120
+ <% end %>
121
+ <%= pb_rails("flex/flex_item") do %>
122
+ <%= pb_rails("flex", props: {orientation: "column", horizontal: "center"}) do %>
123
+ <%= pb_rails("flex/flex_item") do %>
124
+ <%= pb_rails("caption", props: { text: "UX/UI" }) %>
125
+ <% end %>
126
+ <%= pb_rails("flex/flex_item") do %>
127
+ <%= pb_rails("title", props: { text: "254", tag: "h3", size: 3 }) %>
128
+ <% end %>
129
+ <% end %>
130
+ <% end %>
131
+ <%= pb_rails("flex/flex_item") do %>
132
+ <%= pb_rails("flex", props: {orientation: "column", horizontal: "center"}) do %>
133
+ <%= pb_rails("flex/flex_item") do %>
134
+ <%= pb_rails("caption", props: { text: "Product" }) %>
135
+ <% end %>
136
+ <%= pb_rails("flex/flex_item") do %>
137
+ <%= pb_rails("title", props: { text: "194", tag: "h3", size: 3 }) %>
138
+ <% end %>
139
+ <% end %>
140
+ <% end %>
141
+ <% end %>
142
+ <%= pb_rails("section_separator") %>
143
+ <%= pb_rails("flex", props: {vertical: "bottom", spacing: "around", padding_top: "sm"}) do %>
144
+ <%= pb_rails("flex/flex_item") do %>
145
+ <%= pb_rails("flex", props: {orientation: "column", horizontal: "center"}) do %>
146
+ <%= pb_rails("flex/flex_item") do %>
147
+ <%= pb_rails("caption", props: { text: "2020 | TOR", size: "xs" }) %>
148
+ <% end %>
149
+ <%= pb_rails("flex/flex_item") do %>
150
+ <%= pb_rails("caption", props: { text: "Total Registered" }) %>
151
+ <% end %>
152
+ <%= pb_rails("flex/flex_item") do %>
153
+ <%= pb_rails("title", props: { text: "3,829", tag: "h3", size: 2 }) %>
154
+ <% end %>
155
+ <% end %>
156
+ <% end %>
157
+ <%= pb_rails("flex/flex_item") do %>
158
+ <%= pb_rails("section_separator", props: { orientation: "vertical" }) %>
159
+ <% end %>
160
+ <%= pb_rails("flex/flex_item") do %>
161
+ <%= pb_rails("flex", props: {orientation: "column", horizontal: "center"}) do %>
162
+ <%= pb_rails("flex/flex_item") do %>
163
+ <%= pb_rails("caption", props: { text: "Graphic" }) %>
164
+ <% end %>
165
+ <%= pb_rails("flex/flex_item") do %>
166
+ <%= pb_rails("title", props: { text: "937", tag: "h3", size: 3 }) %>
167
+ <% end %>
168
+ <% end %>
169
+ <% end %>
170
+ <%= pb_rails("flex/flex_item") do %>
171
+ <%= pb_rails("flex", props: {orientation: "column", horizontal: "center"}) do %>
172
+ <%= pb_rails("flex/flex_item") do %>
173
+ <%= pb_rails("caption", props: { text: "UX/UI" }) %>
174
+ <% end %>
175
+ <%= pb_rails("flex/flex_item") do %>
176
+ <%= pb_rails("title", props: { text: "721", tag: "h3", size: 3 }) %>
177
+ <% end %>
178
+ <% end %>
179
+ <% end %>
180
+ <%= pb_rails("flex/flex_item") do %>
181
+ <%= pb_rails("flex", props: {orientation: "column", horizontal: "center"}) do %>
182
+ <%= pb_rails("flex/flex_item") do %>
183
+ <%= pb_rails("caption", props: { text: "Product" }) %>
184
+ <% end %>
185
+ <%= pb_rails("flex/flex_item") do %>
186
+ <%= pb_rails("title", props: { text: "628", tag: "h3", size: 3 }) %>
187
+ <% end %>
188
+ <% end %>
189
+ <% end %>
190
+ <% end %>
191
+ <% end %>
192
+
193
+ <%= pb_rails("flex", props: {orientation: "column", horizontal: "right", padding_bottom: "md"}) do %>
194
+ <%= pb_rails("flex/flex_item") do %>
195
+ <%= pb_rails("button", props: { text: "View full breakdown", variant: "link" }) %>
196
+ <% end %>
197
+ <% end %>
198
+
199
+ <%= pb_rails("card") do %>
200
+ <% data = [{
201
+ name: '2020 | SF',
202
+ data: [43934, 52503, 57177, 69658, 97031, 119931, 137133, 154175]
203
+ }, {
204
+ name: '2020 | TOR',
205
+ data: [24916, 24064, 29742, 29851, 32490, 30282, 38121, 40434]
206
+ }, {
207
+ name: '2019 | AMS',
208
+ data: [11744, 17722, 16005, 19771, 20185, 24377, 32147, 39387]
209
+ }, {
210
+ name: '2018 | SF',
211
+ data: [nil, nil, 7988, 12169, 15112, 22452, 34400, 34227]
212
+ }, {
213
+ name: '2017 | LA',
214
+ data: [12908, 5948, 8105, 11248, 8989, 11816, 18274, 18111]
215
+ }] %>
216
+
217
+ <%= pb_rails("line_graph", props: {
218
+ id: "line-registration",
219
+ gradient: false,
220
+ chart_data: data,
221
+ x_axis_categories:['7 wks away','6 wks away','5 wks away','4 wks away','3 wks away','2 wks away','1 wk away','Start of event'],
222
+ title: 'Running Total',
223
+ axis_title: 'Total Registration',
224
+ legend: true,
225
+ height: '80%'
226
+ }) %>
227
+ <% end %>
228
+ <% end %>
229
+
230
+
231
+
232
+ <%= pb_rails("flex/flex_item", props: {fixed_size: "40%"}) do %>
233
+ <%= pb_rails("card") do %>
234
+ <% total = [{
235
+ name: 'Registrations',
236
+ data: [1475, 524, 1344, 780, 200, 900]
237
+ }] %>
238
+ <%= pb_rails("bar_graph", props: {
239
+ axis_title: 'Total Registered',
240
+ chart_data: total,
241
+ id: "total-attendees",
242
+ y_axis_min: 0,
243
+ x_axis_categories:['\'17 LDN', '\'17 LA', '\'18 SF', '\'19 AMS', '\'20 TOR', '\'20 SF'],
244
+ height: '30%'
245
+ }) %>
246
+
247
+ <% new_attendees = [{
248
+ name: 'Registrations',
249
+ data: [1475, 524, 1344, 780, 200, 900]
250
+ }] %>
251
+ <%= pb_rails("bar_graph", props: {
252
+ axis_title: 'New Attendees',
253
+ chart_data: new_attendees,
254
+ id: "new-attendees",
255
+ y_axis_min: 0,
256
+ x_axis_categories:['\'17 LDN', '\'17 LA', '\'18 SF', '\'19 AMS', '\'20 TOR', '\'20 SF'],
257
+ height: '30%'
258
+ }) %>
259
+
260
+ <% repeating_attendees = [{
261
+ name: 'Registrations',
262
+ data: [1475, 524, 1344, 780, 200, 900]
263
+ }] %>
264
+ <%= pb_rails("bar_graph", props: {
265
+ axis_title: 'Repeating Attendees',
266
+ chart_data: repeating_attendees,
267
+ id: "repeating-attendees",
268
+ y_axis_min: 0,
269
+ x_axis_categories:['\'17 LDN', '\'17 LA', '\'18 SF', '\'19 AMS', '\'20 TOR', '\'20 SF'],
270
+ height: '30%'
271
+ }) %>
272
+
273
+ <% graphic_designers = [{
274
+ name: 'Registrations',
275
+ data: [1475, 524, 1344, 780, 200, 900]
276
+ }] %>
277
+ <%= pb_rails("bar_graph", props: {
278
+ axis_title: 'Graphic Designers',
279
+ chart_data: graphic_designers,
280
+ id: "graphic-designers",
281
+ y_axis_min: 0,
282
+ x_axis_categories:['\'17 LDN', '\'17 LA', '\'18 SF', '\'19 AMS', '\'20 TOR', '\'20 SF'],
283
+ height: '30%'
284
+ }) %>
285
+
286
+ <% ux_ui = [{
287
+ name: 'Registrations',
288
+ data: [1475, 524, 1344, 780, 200, 900]
289
+ }] %>
290
+ <%= pb_rails("bar_graph", props: {
291
+ axis_title: 'UX/UI',
292
+ chart_data: ux_ui,
293
+ id: "ux-ui",
294
+ y_axis_min: 0,
295
+ x_axis_categories:['\'17 LDN', '\'17 LA', '\'18 SF', '\'19 AMS', '\'20 TOR', '\'20 SF'],
296
+ height: '30%'
297
+ }) %>
298
+
299
+ <% product_designers = [{
300
+ name: 'Registrations',
301
+ data: [1475, 524, 1344, 780, 200, 900]
302
+ }] %>
303
+ <%= pb_rails("bar_graph", props: {
304
+ axis_title: 'Product Designers',
305
+ chart_data: product_designers,
306
+ id: "product-designers",
307
+ y_axis_min: 0,
308
+ x_axis_categories:['\'17 LDN', '\'17 LA', '\'18 SF', '\'19 AMS', '\'20 TOR', '\'20 SF'],
309
+ height: '30%'
310
+ }) %>
311
+
312
+ <% end %>
313
+ <% end %>
314
+ <% end %>
315
+ <% end %>
316
+ <% end %>