openproject-primer_view_components 0.6.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (733) hide show
  1. checksums.yaml +7 -0
  2. data/CHANGELOG.md +2931 -0
  3. data/LICENSE.txt +21 -0
  4. data/README.md +17 -0
  5. data/app/assets/javascripts/app/components/primer/alpha/action_bar_element.d.ts +16 -0
  6. data/app/assets/javascripts/app/components/primer/alpha/action_menu/action_menu_element.d.ts +31 -0
  7. data/app/assets/javascripts/app/components/primer/alpha/dropdown/menu.d.ts +1 -0
  8. data/app/assets/javascripts/app/components/primer/alpha/dropdown.d.ts +1 -0
  9. data/app/assets/javascripts/app/components/primer/alpha/image_crop.d.ts +1 -0
  10. data/app/assets/javascripts/app/components/primer/alpha/modal_dialog.d.ts +18 -0
  11. data/app/assets/javascripts/app/components/primer/alpha/nav_list.d.ts +28 -0
  12. data/app/assets/javascripts/app/components/primer/alpha/segmented_control.d.ts +12 -0
  13. data/app/assets/javascripts/app/components/primer/alpha/tab_container.d.ts +1 -0
  14. data/app/assets/javascripts/app/components/primer/alpha/toggle_switch.d.ts +30 -0
  15. data/app/assets/javascripts/app/components/primer/alpha/tool_tip.d.ts +26 -0
  16. data/app/assets/javascripts/app/components/primer/alpha/x_banner.d.ts +13 -0
  17. data/app/assets/javascripts/app/components/primer/anchored_position.d.ts +27 -0
  18. data/app/assets/javascripts/app/components/primer/beta/auto_complete/auto_complete.d.ts +1 -0
  19. data/app/assets/javascripts/app/components/primer/beta/clipboard_copy.d.ts +1 -0
  20. data/app/assets/javascripts/app/components/primer/beta/relative_time.d.ts +1 -0
  21. data/app/assets/javascripts/app/components/primer/focus_group.d.ts +19 -0
  22. data/app/assets/javascripts/app/components/primer/primer.d.ts +21 -0
  23. data/app/assets/javascripts/lib/primer/forms/primer_multi_input.d.ts +10 -0
  24. data/app/assets/javascripts/lib/primer/forms/primer_text_field.d.ts +1 -0
  25. data/app/assets/javascripts/lib/primer/forms/toggle_switch_input.d.ts +5 -0
  26. data/app/assets/javascripts/primer_view_components.js +2 -0
  27. data/app/assets/javascripts/primer_view_components.js.map +1 -0
  28. data/app/assets/styles/primer_view_components.css +1 -0
  29. data/app/assets/styles/primer_view_components.css.map +1 -0
  30. data/app/components/primer/alpha/action_bar/divider.rb +30 -0
  31. data/app/components/primer/alpha/action_bar/item.rb +26 -0
  32. data/app/components/primer/alpha/action_bar.css +1 -0
  33. data/app/components/primer/alpha/action_bar.css.json +17 -0
  34. data/app/components/primer/alpha/action_bar.css.map +1 -0
  35. data/app/components/primer/alpha/action_bar.html.erb +12 -0
  36. data/app/components/primer/alpha/action_bar.pcss +69 -0
  37. data/app/components/primer/alpha/action_bar.rb +109 -0
  38. data/app/components/primer/alpha/action_bar_element.d.ts +16 -0
  39. data/app/components/primer/alpha/action_bar_element.js +172 -0
  40. data/app/components/primer/alpha/action_bar_element.ts +175 -0
  41. data/app/components/primer/alpha/action_list/divider.rb +35 -0
  42. data/app/components/primer/alpha/action_list/form_wrapper.html.erb +10 -0
  43. data/app/components/primer/alpha/action_list/form_wrapper.rb +61 -0
  44. data/app/components/primer/alpha/action_list/heading.html.erb +8 -0
  45. data/app/components/primer/alpha/action_list/heading.rb +50 -0
  46. data/app/components/primer/alpha/action_list/item.html.erb +53 -0
  47. data/app/components/primer/alpha/action_list/item.rb +301 -0
  48. data/app/components/primer/alpha/action_list.css +1 -0
  49. data/app/components/primer/alpha/action_list.css.json +134 -0
  50. data/app/components/primer/alpha/action_list.css.map +1 -0
  51. data/app/components/primer/alpha/action_list.html.erb +20 -0
  52. data/app/components/primer/alpha/action_list.pcss +697 -0
  53. data/app/components/primer/alpha/action_list.rb +256 -0
  54. data/app/components/primer/alpha/action_menu/action_menu_element.d.ts +31 -0
  55. data/app/components/primer/alpha/action_menu/action_menu_element.js +241 -0
  56. data/app/components/primer/alpha/action_menu/action_menu_element.ts +252 -0
  57. data/app/components/primer/alpha/action_menu/list.rb +123 -0
  58. data/app/components/primer/alpha/action_menu.html.erb +26 -0
  59. data/app/components/primer/alpha/action_menu.rb +411 -0
  60. data/app/components/primer/alpha/auto_complete/auto_complete.html.erb +24 -0
  61. data/app/components/primer/alpha/auto_complete/item.rb +46 -0
  62. data/app/components/primer/alpha/auto_complete.css +1 -0
  63. data/app/components/primer/alpha/auto_complete.css.json +23 -0
  64. data/app/components/primer/alpha/auto_complete.css.map +1 -0
  65. data/app/components/primer/alpha/auto_complete.pcss +118 -0
  66. data/app/components/primer/alpha/auto_complete.rb +158 -0
  67. data/app/components/primer/alpha/banner.css +1 -0
  68. data/app/components/primer/alpha/banner.css.json +24 -0
  69. data/app/components/primer/alpha/banner.css.map +1 -0
  70. data/app/components/primer/alpha/banner.html.erb +33 -0
  71. data/app/components/primer/alpha/banner.pcss +126 -0
  72. data/app/components/primer/alpha/banner.rb +141 -0
  73. data/app/components/primer/alpha/button_marketing.css +1 -0
  74. data/app/components/primer/alpha/button_marketing.css.json +33 -0
  75. data/app/components/primer/alpha/button_marketing.css.map +1 -0
  76. data/app/components/primer/alpha/button_marketing.pcss +168 -0
  77. data/app/components/primer/alpha/button_marketing.rb +73 -0
  78. data/app/components/primer/alpha/check_box.rb +74 -0
  79. data/app/components/primer/alpha/check_box_group.rb +36 -0
  80. data/app/components/primer/alpha/dialog/body.rb +28 -0
  81. data/app/components/primer/alpha/dialog/footer.rb +34 -0
  82. data/app/components/primer/alpha/dialog/header.html.erb +17 -0
  83. data/app/components/primer/alpha/dialog/header.rb +40 -0
  84. data/app/components/primer/alpha/dialog.css +1 -0
  85. data/app/components/primer/alpha/dialog.css.json +80 -0
  86. data/app/components/primer/alpha/dialog.css.map +1 -0
  87. data/app/components/primer/alpha/dialog.html.erb +12 -0
  88. data/app/components/primer/alpha/dialog.pcss +482 -0
  89. data/app/components/primer/alpha/dialog.rb +176 -0
  90. data/app/components/primer/alpha/dropdown/menu.d.ts +1 -0
  91. data/app/components/primer/alpha/dropdown/menu.html.erb +25 -0
  92. data/app/components/primer/alpha/dropdown/menu.js +1 -0
  93. data/app/components/primer/alpha/dropdown/menu.rb +107 -0
  94. data/app/components/primer/alpha/dropdown/menu.ts +1 -0
  95. data/app/components/primer/alpha/dropdown.css +1 -0
  96. data/app/components/primer/alpha/dropdown.css.json +40 -0
  97. data/app/components/primer/alpha/dropdown.css.map +1 -0
  98. data/app/components/primer/alpha/dropdown.d.ts +1 -0
  99. data/app/components/primer/alpha/dropdown.html.erb +9 -0
  100. data/app/components/primer/alpha/dropdown.js +1 -0
  101. data/app/components/primer/alpha/dropdown.pcss +261 -0
  102. data/app/components/primer/alpha/dropdown.rb +154 -0
  103. data/app/components/primer/alpha/dropdown.ts +1 -0
  104. data/app/components/primer/alpha/form_button.rb +32 -0
  105. data/app/components/primer/alpha/form_control.html.erb +26 -0
  106. data/app/components/primer/alpha/form_control.rb +105 -0
  107. data/app/components/primer/alpha/hellip_button.rb +43 -0
  108. data/app/components/primer/alpha/hidden_text_expander.rb +57 -0
  109. data/app/components/primer/alpha/image.rb +50 -0
  110. data/app/components/primer/alpha/image_crop.d.ts +1 -0
  111. data/app/components/primer/alpha/image_crop.html.erb +12 -0
  112. data/app/components/primer/alpha/image_crop.js +1 -0
  113. data/app/components/primer/alpha/image_crop.rb +39 -0
  114. data/app/components/primer/alpha/image_crop.ts +1 -0
  115. data/app/components/primer/alpha/layout.css +1 -0
  116. data/app/components/primer/alpha/layout.css.json +80 -0
  117. data/app/components/primer/alpha/layout.css.map +1 -0
  118. data/app/components/primer/alpha/layout.html.erb +5 -0
  119. data/app/components/primer/alpha/layout.pcss +268 -0
  120. data/app/components/primer/alpha/layout.rb +278 -0
  121. data/app/components/primer/alpha/menu.css +1 -0
  122. data/app/components/primer/alpha/menu.css.json +28 -0
  123. data/app/components/primer/alpha/menu.css.map +1 -0
  124. data/app/components/primer/alpha/menu.html.erb +6 -0
  125. data/app/components/primer/alpha/menu.pcss +119 -0
  126. data/app/components/primer/alpha/menu.rb +76 -0
  127. data/app/components/primer/alpha/modal_dialog.d.ts +18 -0
  128. data/app/components/primer/alpha/modal_dialog.js +189 -0
  129. data/app/components/primer/alpha/modal_dialog.ts +202 -0
  130. data/app/components/primer/alpha/multi_input.rb +81 -0
  131. data/app/components/primer/alpha/nav_list/divider.rb +14 -0
  132. data/app/components/primer/alpha/nav_list/group.html.erb +7 -0
  133. data/app/components/primer/alpha/nav_list/group.rb +107 -0
  134. data/app/components/primer/alpha/nav_list/heading.rb +36 -0
  135. data/app/components/primer/alpha/nav_list/item.html.erb +13 -0
  136. data/app/components/primer/alpha/nav_list/item.rb +156 -0
  137. data/app/components/primer/alpha/nav_list.d.ts +28 -0
  138. data/app/components/primer/alpha/nav_list.html.erb +15 -0
  139. data/app/components/primer/alpha/nav_list.js +248 -0
  140. data/app/components/primer/alpha/nav_list.rb +281 -0
  141. data/app/components/primer/alpha/nav_list.ts +267 -0
  142. data/app/components/primer/alpha/navigation/tab.html.erb +11 -0
  143. data/app/components/primer/alpha/navigation/tab.rb +168 -0
  144. data/app/components/primer/alpha/octicon_symbols.html.erb +3 -0
  145. data/app/components/primer/alpha/octicon_symbols.rb +59 -0
  146. data/app/components/primer/alpha/overlay/body.rb +26 -0
  147. data/app/components/primer/alpha/overlay/footer.rb +41 -0
  148. data/app/components/primer/alpha/overlay/header.html.erb +17 -0
  149. data/app/components/primer/alpha/overlay/header.rb +50 -0
  150. data/app/components/primer/alpha/overlay.css +1 -0
  151. data/app/components/primer/alpha/overlay.css.json +8 -0
  152. data/app/components/primer/alpha/overlay.css.map +1 -0
  153. data/app/components/primer/alpha/overlay.html.erb +13 -0
  154. data/app/components/primer/alpha/overlay.pcss +30 -0
  155. data/app/components/primer/alpha/overlay.rb +214 -0
  156. data/app/components/primer/alpha/radio_button.rb +25 -0
  157. data/app/components/primer/alpha/radio_button_group.rb +36 -0
  158. data/app/components/primer/alpha/segmented_control/item.html.erb +13 -0
  159. data/app/components/primer/alpha/segmented_control/item.rb +30 -0
  160. data/app/components/primer/alpha/segmented_control.css +1 -0
  161. data/app/components/primer/alpha/segmented_control.css.json +33 -0
  162. data/app/components/primer/alpha/segmented_control.css.map +1 -0
  163. data/app/components/primer/alpha/segmented_control.d.ts +12 -0
  164. data/app/components/primer/alpha/segmented_control.html.erb +7 -0
  165. data/app/components/primer/alpha/segmented_control.js +47 -0
  166. data/app/components/primer/alpha/segmented_control.pcss +157 -0
  167. data/app/components/primer/alpha/segmented_control.rb +122 -0
  168. data/app/components/primer/alpha/segmented_control.ts +41 -0
  169. data/app/components/primer/alpha/select.rb +37 -0
  170. data/app/components/primer/alpha/submit_button.rb +32 -0
  171. data/app/components/primer/alpha/tab_container.d.ts +1 -0
  172. data/app/components/primer/alpha/tab_container.js +1 -0
  173. data/app/components/primer/alpha/tab_container.rb +43 -0
  174. data/app/components/primer/alpha/tab_container.ts +1 -0
  175. data/app/components/primer/alpha/tab_nav.css +1 -0
  176. data/app/components/primer/alpha/tab_nav.css.json +24 -0
  177. data/app/components/primer/alpha/tab_nav.css.map +1 -0
  178. data/app/components/primer/alpha/tab_nav.html.erb +11 -0
  179. data/app/components/primer/alpha/tab_nav.pcss +100 -0
  180. data/app/components/primer/alpha/tab_nav.rb +136 -0
  181. data/app/components/primer/alpha/tab_panels.html.erb +14 -0
  182. data/app/components/primer/alpha/tab_panels.rb +89 -0
  183. data/app/components/primer/alpha/text_area.rb +24 -0
  184. data/app/components/primer/alpha/text_field.css +1 -0
  185. data/app/components/primer/alpha/text_field.css.json +135 -0
  186. data/app/components/primer/alpha/text_field.css.map +1 -0
  187. data/app/components/primer/alpha/text_field.pcss +706 -0
  188. data/app/components/primer/alpha/text_field.rb +101 -0
  189. data/app/components/primer/alpha/toggle_switch.css +1 -0
  190. data/app/components/primer/alpha/toggle_switch.css.json +40 -0
  191. data/app/components/primer/alpha/toggle_switch.css.map +1 -0
  192. data/app/components/primer/alpha/toggle_switch.d.ts +30 -0
  193. data/app/components/primer/alpha/toggle_switch.html.erb +46 -0
  194. data/app/components/primer/alpha/toggle_switch.js +165 -0
  195. data/app/components/primer/alpha/toggle_switch.pcss +220 -0
  196. data/app/components/primer/alpha/toggle_switch.rb +96 -0
  197. data/app/components/primer/alpha/toggle_switch.ts +189 -0
  198. data/app/components/primer/alpha/tool_tip.d.ts +26 -0
  199. data/app/components/primer/alpha/tool_tip.js +427 -0
  200. data/app/components/primer/alpha/tool_tip.ts +430 -0
  201. data/app/components/primer/alpha/tooltip.rb +128 -0
  202. data/app/components/primer/alpha/underline_nav.css +1 -0
  203. data/app/components/primer/alpha/underline_nav.css.json +28 -0
  204. data/app/components/primer/alpha/underline_nav.css.map +1 -0
  205. data/app/components/primer/alpha/underline_nav.html.erb +15 -0
  206. data/app/components/primer/alpha/underline_nav.pcss +134 -0
  207. data/app/components/primer/alpha/underline_nav.rb +138 -0
  208. data/app/components/primer/alpha/underline_panels.html.erb +18 -0
  209. data/app/components/primer/alpha/underline_panels.rb +86 -0
  210. data/app/components/primer/alpha/x_banner.d.ts +13 -0
  211. data/app/components/primer/alpha/x_banner.js +49 -0
  212. data/app/components/primer/alpha/x_banner.ts +40 -0
  213. data/app/components/primer/anchored_position.d.ts +27 -0
  214. data/app/components/primer/anchored_position.js +147 -0
  215. data/app/components/primer/anchored_position.ts +153 -0
  216. data/app/components/primer/base_component.rb +172 -0
  217. data/app/components/primer/beta/auto_complete/auto_complete.d.ts +1 -0
  218. data/app/components/primer/beta/auto_complete/auto_complete.html.erb +28 -0
  219. data/app/components/primer/beta/auto_complete/auto_complete.js +1 -0
  220. data/app/components/primer/beta/auto_complete/auto_complete.ts +1 -0
  221. data/app/components/primer/beta/auto_complete/item.html.erb +21 -0
  222. data/app/components/primer/beta/auto_complete/item.rb +84 -0
  223. data/app/components/primer/beta/auto_complete.rb +218 -0
  224. data/app/components/primer/beta/avatar.css +1 -0
  225. data/app/components/primer/beta/avatar.css.json +17 -0
  226. data/app/components/primer/beta/avatar.css.map +1 -0
  227. data/app/components/primer/beta/avatar.pcss +73 -0
  228. data/app/components/primer/beta/avatar.rb +84 -0
  229. data/app/components/primer/beta/avatar_stack.css +1 -0
  230. data/app/components/primer/beta/avatar_stack.css.json +28 -0
  231. data/app/components/primer/beta/avatar_stack.css.map +1 -0
  232. data/app/components/primer/beta/avatar_stack.html.erb +10 -0
  233. data/app/components/primer/beta/avatar_stack.pcss +141 -0
  234. data/app/components/primer/beta/avatar_stack.rb +92 -0
  235. data/app/components/primer/beta/base_button.rb +56 -0
  236. data/app/components/primer/beta/blankslate.css +1 -0
  237. data/app/components/primer/beta/blankslate.css.json +22 -0
  238. data/app/components/primer/beta/blankslate.css.map +1 -0
  239. data/app/components/primer/beta/blankslate.html.erb +19 -0
  240. data/app/components/primer/beta/blankslate.pcss +90 -0
  241. data/app/components/primer/beta/blankslate.rb +238 -0
  242. data/app/components/primer/beta/border_box/header.html.erb +4 -0
  243. data/app/components/primer/beta/border_box/header.rb +52 -0
  244. data/app/components/primer/beta/border_box.css +1 -0
  245. data/app/components/primer/beta/border_box.css.json +54 -0
  246. data/app/components/primer/beta/border_box.css.map +1 -0
  247. data/app/components/primer/beta/border_box.html.erb +12 -0
  248. data/app/components/primer/beta/border_box.pcss +284 -0
  249. data/app/components/primer/beta/border_box.rb +147 -0
  250. data/app/components/primer/beta/breadcrumbs.css +1 -0
  251. data/app/components/primer/beta/breadcrumbs.css.json +11 -0
  252. data/app/components/primer/beta/breadcrumbs.css.map +1 -0
  253. data/app/components/primer/beta/breadcrumbs.html.erb +8 -0
  254. data/app/components/primer/beta/breadcrumbs.pcss +30 -0
  255. data/app/components/primer/beta/breadcrumbs.rb +82 -0
  256. data/app/components/primer/beta/button.css +1 -0
  257. data/app/components/primer/beta/button.css.json +75 -0
  258. data/app/components/primer/beta/button.css.map +1 -0
  259. data/app/components/primer/beta/button.html.erb +23 -0
  260. data/app/components/primer/beta/button.pcss +366 -0
  261. data/app/components/primer/beta/button.rb +197 -0
  262. data/app/components/primer/beta/button_group.css +1 -0
  263. data/app/components/primer/beta/button_group.css.json +14 -0
  264. data/app/components/primer/beta/button_group.css.map +1 -0
  265. data/app/components/primer/beta/button_group.html.erb +5 -0
  266. data/app/components/primer/beta/button_group.pcss +27 -0
  267. data/app/components/primer/beta/button_group.rb +59 -0
  268. data/app/components/primer/beta/clipboard_copy.d.ts +1 -0
  269. data/app/components/primer/beta/clipboard_copy.html.erb +8 -0
  270. data/app/components/primer/beta/clipboard_copy.js +43 -0
  271. data/app/components/primer/beta/clipboard_copy.rb +50 -0
  272. data/app/components/primer/beta/clipboard_copy.ts +55 -0
  273. data/app/components/primer/beta/close_button.rb +43 -0
  274. data/app/components/primer/beta/counter.css +1 -0
  275. data/app/components/primer/beta/counter.css.json +10 -0
  276. data/app/components/primer/beta/counter.css.map +1 -0
  277. data/app/components/primer/beta/counter.pcss +35 -0
  278. data/app/components/primer/beta/counter.rb +113 -0
  279. data/app/components/primer/beta/details.html.erb +8 -0
  280. data/app/components/primer/beta/details.rb +80 -0
  281. data/app/components/primer/beta/flash.css +1 -0
  282. data/app/components/primer/beta/flash.css.json +27 -0
  283. data/app/components/primer/beta/flash.css.map +1 -0
  284. data/app/components/primer/beta/flash.html.erb +10 -0
  285. data/app/components/primer/beta/flash.pcss +142 -0
  286. data/app/components/primer/beta/flash.rb +71 -0
  287. data/app/components/primer/beta/heading.rb +46 -0
  288. data/app/components/primer/beta/icon_button.html.erb +6 -0
  289. data/app/components/primer/beta/icon_button.rb +112 -0
  290. data/app/components/primer/beta/label.css +1 -0
  291. data/app/components/primer/beta/label.css.json +25 -0
  292. data/app/components/primer/beta/label.css.map +1 -0
  293. data/app/components/primer/beta/label.pcss +103 -0
  294. data/app/components/primer/beta/label.rb +100 -0
  295. data/app/components/primer/beta/link.css +1 -0
  296. data/app/components/primer/beta/link.css.json +19 -0
  297. data/app/components/primer/beta/link.css.map +1 -0
  298. data/app/components/primer/beta/link.pcss +64 -0
  299. data/app/components/primer/beta/link.rb +95 -0
  300. data/app/components/primer/beta/markdown.rb +290 -0
  301. data/app/components/primer/beta/octicon.html.erb +7 -0
  302. data/app/components/primer/beta/octicon.rb +88 -0
  303. data/app/components/primer/beta/popover.css +1 -0
  304. data/app/components/primer/beta/popover.css.json +39 -0
  305. data/app/components/primer/beta/popover.css.map +1 -0
  306. data/app/components/primer/beta/popover.html.erb +6 -0
  307. data/app/components/primer/beta/popover.pcss +225 -0
  308. data/app/components/primer/beta/popover.rb +127 -0
  309. data/app/components/primer/beta/progress_bar.css +1 -0
  310. data/app/components/primer/beta/progress_bar.css.json +10 -0
  311. data/app/components/primer/beta/progress_bar.css.map +1 -0
  312. data/app/components/primer/beta/progress_bar.html.erb +5 -0
  313. data/app/components/primer/beta/progress_bar.pcss +26 -0
  314. data/app/components/primer/beta/progress_bar.rb +72 -0
  315. data/app/components/primer/beta/relative_time.d.ts +1 -0
  316. data/app/components/primer/beta/relative_time.js +1 -0
  317. data/app/components/primer/beta/relative_time.rb +166 -0
  318. data/app/components/primer/beta/relative_time.ts +1 -0
  319. data/app/components/primer/beta/spinner.html.erb +4 -0
  320. data/app/components/primer/beta/spinner.rb +45 -0
  321. data/app/components/primer/beta/state.css +1 -0
  322. data/app/components/primer/beta/state.css.json +13 -0
  323. data/app/components/primer/beta/state.css.map +1 -0
  324. data/app/components/primer/beta/state.pcss +50 -0
  325. data/app/components/primer/beta/state.rb +76 -0
  326. data/app/components/primer/beta/subhead.css +1 -0
  327. data/app/components/primer/beta/subhead.css.json +12 -0
  328. data/app/components/primer/beta/subhead.css.map +1 -0
  329. data/app/components/primer/beta/subhead.html.erb +5 -0
  330. data/app/components/primer/beta/subhead.pcss +49 -0
  331. data/app/components/primer/beta/subhead.rb +135 -0
  332. data/app/components/primer/beta/text.rb +27 -0
  333. data/app/components/primer/beta/timeline_item.css +1 -0
  334. data/app/components/primer/beta/timeline_item.css.json +16 -0
  335. data/app/components/primer/beta/timeline_item.css.map +1 -0
  336. data/app/components/primer/beta/timeline_item.html.erb +5 -0
  337. data/app/components/primer/beta/timeline_item.pcss +93 -0
  338. data/app/components/primer/beta/timeline_item.rb +90 -0
  339. data/app/components/primer/beta/truncate.css +1 -0
  340. data/app/components/primer/beta/truncate.css.json +12 -0
  341. data/app/components/primer/beta/truncate.css.map +1 -0
  342. data/app/components/primer/beta/truncate.html.erb +5 -0
  343. data/app/components/primer/beta/truncate.pcss +31 -0
  344. data/app/components/primer/beta/truncate.rb +111 -0
  345. data/app/components/primer/blankslate_component.html.erb +25 -0
  346. data/app/components/primer/blankslate_component.rb +156 -0
  347. data/app/components/primer/box.rb +25 -0
  348. data/app/components/primer/button_component.html.erb +12 -0
  349. data/app/components/primer/button_component.rb +175 -0
  350. data/app/components/primer/component.rb +145 -0
  351. data/app/components/primer/conditional_wrapper.rb +36 -0
  352. data/app/components/primer/content.rb +12 -0
  353. data/app/components/primer/focus_group.d.ts +19 -0
  354. data/app/components/primer/focus_group.js +139 -0
  355. data/app/components/primer/focus_group.ts +133 -0
  356. data/app/components/primer/icon_button.html.erb +12 -0
  357. data/app/components/primer/icon_button.rb +108 -0
  358. data/app/components/primer/layout_component.html.erb +11 -0
  359. data/app/components/primer/layout_component.rb +73 -0
  360. data/app/components/primer/navigation/tab_component.rb +10 -0
  361. data/app/components/primer/primer.d.ts +21 -0
  362. data/app/components/primer/primer.js +21 -0
  363. data/app/components/primer/primer.pcss +42 -0
  364. data/app/components/primer/primer.ts +21 -0
  365. data/app/components/primer/tooltip.rb +91 -0
  366. data/app/components/primer/truncate.css +1 -0
  367. data/app/components/primer/truncate.css.json +13 -0
  368. data/app/components/primer/truncate.css.map +1 -0
  369. data/app/components/primer/truncate.pcss +30 -0
  370. data/app/components/primer/truncate.rb +52 -0
  371. data/app/forms/after_content_form/after_content.html.erb +1 -0
  372. data/app/forms/after_content_form.rb +13 -0
  373. data/app/forms/application_form.rb +5 -0
  374. data/app/forms/array_check_box_group_form/places_lopez_caption.html.erb +1 -0
  375. data/app/forms/array_check_box_group_form.rb +15 -0
  376. data/app/forms/both_types_of_caption_form/first_name_caption.html.erb +1 -0
  377. data/app/forms/both_types_of_caption_form.rb +13 -0
  378. data/app/forms/caption_template_form/age_middle_aged_caption.html.erb +1 -0
  379. data/app/forms/caption_template_form/age_young_caption.html.erb +1 -0
  380. data/app/forms/caption_template_form/cool_caption.html.erb +1 -0
  381. data/app/forms/caption_template_form/first_name_caption.html.erb +1 -0
  382. data/app/forms/caption_template_form.rb +22 -0
  383. data/app/forms/check_box_group_form.rb +28 -0
  384. data/app/forms/check_box_with_nested_form.rb +39 -0
  385. data/app/forms/composed_form.rb +14 -0
  386. data/app/forms/example_toggle_switch_form/example_field_caption.html.erb +1 -0
  387. data/app/forms/example_toggle_switch_form.rb +8 -0
  388. data/app/forms/first_name_form.rb +13 -0
  389. data/app/forms/horizontal_form.rb +34 -0
  390. data/app/forms/immediate_validation_form.rb +29 -0
  391. data/app/forms/invalid_form.rb +21 -0
  392. data/app/forms/last_name_form.rb +13 -0
  393. data/app/forms/multi_input_form.rb +27 -0
  394. data/app/forms/multi_text_field_form.rb +27 -0
  395. data/app/forms/name_with_question_mark_form/enabled_caption.html.erb +1 -0
  396. data/app/forms/name_with_question_mark_form.rb +11 -0
  397. data/app/forms/radio_button_group_form.rb +12 -0
  398. data/app/forms/radio_button_with_nested_form.rb +39 -0
  399. data/app/forms/select_form.rb +12 -0
  400. data/app/forms/single_text_field_form.rb +13 -0
  401. data/app/forms/submit_button_form.rb +26 -0
  402. data/app/forms/text_field_and_checkbox_form.rb +19 -0
  403. data/app/helpers/primer/form_helper.rb +23 -0
  404. data/app/lib/primer/attributes_helper.rb +105 -0
  405. data/app/lib/primer/audited/dsl.rb +32 -0
  406. data/app/lib/primer/class_name_helper.rb +29 -0
  407. data/app/lib/primer/css/layout.css +1541 -0
  408. data/app/lib/primer/css/layout.css.json +316 -0
  409. data/app/lib/primer/css/utilities.css +7304 -0
  410. data/app/lib/primer/css/utilities.css.json +1659 -0
  411. data/app/lib/primer/fetch_or_fallback_helper.rb +65 -0
  412. data/app/lib/primer/join_style_arguments_helper.rb +14 -0
  413. data/app/lib/primer/octicon/cache.rb +44 -0
  414. data/app/lib/primer/status/dsl.rb +44 -0
  415. data/app/lib/primer/tab_nav_helper.rb +35 -0
  416. data/app/lib/primer/tabbed_component_helper.rb +39 -0
  417. data/app/lib/primer/test_selector_helper.rb +20 -0
  418. data/app/lib/primer/underline_nav_helper.rb +44 -0
  419. data/app/lib/primer/view_helper.rb +21 -0
  420. data/lib/postcss_mixins/activeIndicatorLine.pcss +11 -0
  421. data/lib/postcss_mixins/clearfix.pcss +12 -0
  422. data/lib/postcss_mixins/focusBoxShadowInset.pcss +6 -0
  423. data/lib/postcss_mixins/focusOutline.pcss +5 -0
  424. data/lib/postcss_mixins/focusOutlineOnEmphasis.pcss +6 -0
  425. data/lib/postcss_mixins/minTouchTarget.js +20 -0
  426. data/lib/postcss_mixins/targetBoxShadow.pcss +6 -0
  427. data/lib/primer/accessibility.rb +74 -0
  428. data/lib/primer/classify/utilities.rb +201 -0
  429. data/lib/primer/classify/utilities.yml +1879 -0
  430. data/lib/primer/classify/validation.rb +18 -0
  431. data/lib/primer/classify.rb +135 -0
  432. data/lib/primer/deprecations.rb +99 -0
  433. data/lib/primer/deprecations.yml +45 -0
  434. data/lib/primer/example_image.rb +8 -0
  435. data/lib/primer/form_components.rb +57 -0
  436. data/lib/primer/forms/acts_as_component.rb +129 -0
  437. data/lib/primer/forms/base.html.erb +8 -0
  438. data/lib/primer/forms/base.rb +133 -0
  439. data/lib/primer/forms/base_component.rb +76 -0
  440. data/lib/primer/forms/buffer_rewriter.rb +51 -0
  441. data/lib/primer/forms/builder.rb +71 -0
  442. data/lib/primer/forms/button.html.erb +4 -0
  443. data/lib/primer/forms/button.rb +66 -0
  444. data/lib/primer/forms/caption.html.erb +10 -0
  445. data/lib/primer/forms/caption.rb +29 -0
  446. data/lib/primer/forms/check_box.html.erb +16 -0
  447. data/lib/primer/forms/check_box.rb +46 -0
  448. data/lib/primer/forms/check_box_group.html.erb +17 -0
  449. data/lib/primer/forms/check_box_group.rb +19 -0
  450. data/lib/primer/forms/dsl/button_input.rb +29 -0
  451. data/lib/primer/forms/dsl/check_box_group_input.rb +53 -0
  452. data/lib/primer/forms/dsl/check_box_input.rb +54 -0
  453. data/lib/primer/forms/dsl/form_object.rb +25 -0
  454. data/lib/primer/forms/dsl/form_reference_input.rb +59 -0
  455. data/lib/primer/forms/dsl/hidden_input.rb +29 -0
  456. data/lib/primer/forms/dsl/input.rb +315 -0
  457. data/lib/primer/forms/dsl/input_group.rb +34 -0
  458. data/lib/primer/forms/dsl/input_methods.rb +139 -0
  459. data/lib/primer/forms/dsl/multi_input.rb +55 -0
  460. data/lib/primer/forms/dsl/radio_button_group_input.rb +37 -0
  461. data/lib/primer/forms/dsl/radio_button_input.rb +37 -0
  462. data/lib/primer/forms/dsl/select_input.rb +61 -0
  463. data/lib/primer/forms/dsl/submit_button_input.rb +29 -0
  464. data/lib/primer/forms/dsl/text_area_input.rb +33 -0
  465. data/lib/primer/forms/dsl/text_field_input.rb +86 -0
  466. data/lib/primer/forms/dsl/toggle_switch_input.rb +39 -0
  467. data/lib/primer/forms/form_control.html.erb +20 -0
  468. data/lib/primer/forms/form_control.rb +28 -0
  469. data/lib/primer/forms/form_list.html.erb +5 -0
  470. data/lib/primer/forms/form_list.rb +21 -0
  471. data/lib/primer/forms/form_reference.html.erb +3 -0
  472. data/lib/primer/forms/form_reference.rb +18 -0
  473. data/lib/primer/forms/group.html.erb +5 -0
  474. data/lib/primer/forms/group.rb +27 -0
  475. data/lib/primer/forms/hidden_field.html.erb +1 -0
  476. data/lib/primer/forms/hidden_field.rb +15 -0
  477. data/lib/primer/forms/multi.html.erb +7 -0
  478. data/lib/primer/forms/multi.rb +16 -0
  479. data/lib/primer/forms/primer_base_component_wrapper.html.erb +3 -0
  480. data/lib/primer/forms/primer_base_component_wrapper.rb +24 -0
  481. data/lib/primer/forms/primer_multi_input.d.ts +10 -0
  482. data/lib/primer/forms/primer_multi_input.js +45 -0
  483. data/lib/primer/forms/primer_multi_input.ts +46 -0
  484. data/lib/primer/forms/primer_text_field.d.ts +1 -0
  485. data/lib/primer/forms/primer_text_field.js +73 -0
  486. data/lib/primer/forms/primer_text_field.ts +56 -0
  487. data/lib/primer/forms/radio_button.html.erb +16 -0
  488. data/lib/primer/forms/radio_button.rb +29 -0
  489. data/lib/primer/forms/radio_button_group.html.erb +17 -0
  490. data/lib/primer/forms/radio_button_group.rb +19 -0
  491. data/lib/primer/forms/select.html.erb +5 -0
  492. data/lib/primer/forms/select.rb +29 -0
  493. data/lib/primer/forms/separator.html.erb +1 -0
  494. data/lib/primer/forms/separator.rb +8 -0
  495. data/lib/primer/forms/spacing_wrapper.html.erb +3 -0
  496. data/lib/primer/forms/spacing_wrapper.rb +8 -0
  497. data/lib/primer/forms/submit_button.html.erb +1 -0
  498. data/lib/primer/forms/submit_button.rb +14 -0
  499. data/lib/primer/forms/text_area.html.erb +5 -0
  500. data/lib/primer/forms/text_area.rb +20 -0
  501. data/lib/primer/forms/text_field.html.erb +17 -0
  502. data/lib/primer/forms/text_field.rb +46 -0
  503. data/lib/primer/forms/toggle_switch.html.erb +22 -0
  504. data/lib/primer/forms/toggle_switch.rb +21 -0
  505. data/lib/primer/forms/toggle_switch_form.rb +81 -0
  506. data/lib/primer/forms/toggle_switch_input.d.ts +5 -0
  507. data/lib/primer/forms/toggle_switch_input.js +34 -0
  508. data/lib/primer/forms/toggle_switch_input.ts +26 -0
  509. data/lib/primer/forms/utils.rb +48 -0
  510. data/lib/primer/static/generate_arguments.rb +55 -0
  511. data/lib/primer/static/generate_audited_at.rb +17 -0
  512. data/lib/primer/static/generate_constants.rb +19 -0
  513. data/lib/primer/static/generate_info_arch.rb +160 -0
  514. data/lib/primer/static/generate_previews.rb +61 -0
  515. data/lib/primer/static/generate_statuses.rb +17 -0
  516. data/lib/primer/static.rb +72 -0
  517. data/lib/primer/view_components/audited.rb +14 -0
  518. data/lib/primer/view_components/constants.rb +55 -0
  519. data/lib/primer/view_components/engine.rb +69 -0
  520. data/lib/primer/view_components/linters/accessibility.yml +9 -0
  521. data/lib/primer/view_components/linters/argument_mappers/base.rb +100 -0
  522. data/lib/primer/view_components/linters/argument_mappers/button.rb +72 -0
  523. data/lib/primer/view_components/linters/argument_mappers/clipboard_copy.rb +21 -0
  524. data/lib/primer/view_components/linters/argument_mappers/close_button.rb +43 -0
  525. data/lib/primer/view_components/linters/argument_mappers/conversion_error.rb +10 -0
  526. data/lib/primer/view_components/linters/argument_mappers/flash.rb +32 -0
  527. data/lib/primer/view_components/linters/argument_mappers/helpers/erb_block.rb +67 -0
  528. data/lib/primer/view_components/linters/argument_mappers/label.rb +56 -0
  529. data/lib/primer/view_components/linters/argument_mappers/system_arguments.rb +48 -0
  530. data/lib/primer/view_components/linters/autocorrectable.rb +32 -0
  531. data/lib/primer/view_components/linters/base_linter.rb +190 -0
  532. data/lib/primer/view_components/linters/blankslate_api_migration.rb +152 -0
  533. data/lib/primer/view_components/linters/blankslate_component_migration_counter.rb +14 -0
  534. data/lib/primer/view_components/linters/breadcrumbs_component_migration_counter.rb +14 -0
  535. data/lib/primer/view_components/linters/button_component_migration_counter.rb +26 -0
  536. data/lib/primer/view_components/linters/clipboard_copy_component_migration_counter.rb +20 -0
  537. data/lib/primer/view_components/linters/close_button_component_migration_counter.rb +121 -0
  538. data/lib/primer/view_components/linters/deprecated_components_counter.rb +84 -0
  539. data/lib/primer/view_components/linters/details_menu_migration.rb +35 -0
  540. data/lib/primer/view_components/linters/disallow_action_list.rb +73 -0
  541. data/lib/primer/view_components/linters/disallow_component_css_counter.rb +69 -0
  542. data/lib/primer/view_components/linters/flash_migration_counter.rb +36 -0
  543. data/lib/primer/view_components/linters/helpers/deprecated_components_helpers.rb +20 -0
  544. data/lib/primer/view_components/linters/helpers/rubocop_helpers.rb +14 -0
  545. data/lib/primer/view_components/linters/helpers/rule_helpers.rb +39 -0
  546. data/lib/primer/view_components/linters/label_component_migration_counter.rb +24 -0
  547. data/lib/primer/view_components/linters/migrate_deprecated_flash_arguments.rb +140 -0
  548. data/lib/primer/view_components/linters/severity_schema.rb +14 -0
  549. data/lib/primer/view_components/linters/subhead_component_migration_counter.rb +14 -0
  550. data/lib/primer/view_components/linters/super_in_component_templates.rb +65 -0
  551. data/lib/primer/view_components/linters/tag_tree_helpers.rb +61 -0
  552. data/lib/primer/view_components/linters/tooltipped_migration.rb +35 -0
  553. data/lib/primer/view_components/linters/two_column_layout_migration_counter.rb +158 -0
  554. data/lib/primer/view_components/linters.rb +3 -0
  555. data/lib/primer/view_components/statuses.rb +14 -0
  556. data/lib/primer/view_components/version.rb +18 -0
  557. data/lib/primer/view_components.rb +15 -0
  558. data/lib/primer/yard/backend.rb +24 -0
  559. data/lib/primer/yard/component_manifest.rb +144 -0
  560. data/lib/primer/yard/component_ref.rb +54 -0
  561. data/lib/primer/yard/docs_helper.rb +98 -0
  562. data/lib/primer/yard/info_arch_docs_helper.rb +31 -0
  563. data/lib/primer/yard/legacy_gatsby_backend.rb +233 -0
  564. data/lib/primer/yard/lookbook_docs_helper.rb +32 -0
  565. data/lib/primer/yard/lookbook_pages_backend.rb +231 -0
  566. data/lib/primer/yard/registry.rb +136 -0
  567. data/lib/primer/yard/renders_many_handler.rb +23 -0
  568. data/lib/primer/yard/renders_one_handler.rb +23 -0
  569. data/lib/primer/yard.rb +20 -0
  570. data/lib/rubocop/config/default.yml +20 -0
  571. data/lib/rubocop/cop/primer/base_cop.rb +28 -0
  572. data/lib/rubocop/cop/primer/component_name_migration.rb +37 -0
  573. data/lib/rubocop/cop/primer/deprecated_arguments.rb +317 -0
  574. data/lib/rubocop/cop/primer/deprecated_button_arguments.rb +51 -0
  575. data/lib/rubocop/cop/primer/deprecated_components.rb +49 -0
  576. data/lib/rubocop/cop/primer/deprecated_label_schemes.rb +68 -0
  577. data/lib/rubocop/cop/primer/deprecated_label_variants.rb +71 -0
  578. data/lib/rubocop/cop/primer/deprecated_layout_component.rb +30 -0
  579. data/lib/rubocop/cop/primer/no_tag_memoize.rb +43 -0
  580. data/lib/rubocop/cop/primer/primer_octicon.rb +217 -0
  581. data/lib/rubocop/cop/primer/system_argument_instead_of_class.rb +57 -0
  582. data/lib/rubocop/cop/primer/test_selector.rb +48 -0
  583. data/lib/rubocop/cop/primer.rb +3 -0
  584. data/lib/tasks/custom_utilities.yml +372 -0
  585. data/previews/pages/forms/01_introduction.md.erb +44 -0
  586. data/previews/pages/forms/02_getting_started.md.erb +125 -0
  587. data/previews/pages/forms/03_caption_templates.md.erb +30 -0
  588. data/previews/pages/forms/04_after_content.md.erb +39 -0
  589. data/previews/pages/forms/05_groups_layouts.md.erb +22 -0
  590. data/previews/pages/forms/06_miscellaneous_inputs.md.erb +43 -0
  591. data/previews/pages/forms/07_toggle_switch_forms.md.erb +58 -0
  592. data/previews/pages/forms/08_validations.md.erb +28 -0
  593. data/previews/pages/forms/09_compound_forms.md.erb +97 -0
  594. data/previews/primer/alpha/action_bar_preview/inline.html.erb +16 -0
  595. data/previews/primer/alpha/action_bar_preview.rb +77 -0
  596. data/previews/primer/alpha/action_list_preview.rb +464 -0
  597. data/previews/primer/alpha/action_menu_preview/align_end.html.erb +6 -0
  598. data/previews/primer/alpha/action_menu_preview/content_labels.html.erb +9 -0
  599. data/previews/primer/alpha/action_menu_preview/multiple_select_form.html.erb +13 -0
  600. data/previews/primer/alpha/action_menu_preview/opens_dialog.html.erb +21 -0
  601. data/previews/primer/alpha/action_menu_preview/single_select_form.html.erb +13 -0
  602. data/previews/primer/alpha/action_menu_preview/submitting_forms.html.erb +15 -0
  603. data/previews/primer/alpha/action_menu_preview/two_menus.html.erb +13 -0
  604. data/previews/primer/alpha/action_menu_preview/with_actions.html.erb +21 -0
  605. data/previews/primer/alpha/action_menu_preview.rb +328 -0
  606. data/previews/primer/alpha/auto_complete_preview.rb +121 -0
  607. data/previews/primer/alpha/banner_preview/with_action_button.html.erb +4 -0
  608. data/previews/primer/alpha/banner_preview/with_action_content.html.erb +6 -0
  609. data/previews/primer/alpha/banner_preview.rb +102 -0
  610. data/previews/primer/alpha/button_marketing_preview.rb +65 -0
  611. data/previews/primer/alpha/check_box_group_preview.rb +90 -0
  612. data/previews/primer/alpha/check_box_preview.rb +68 -0
  613. data/previews/primer/alpha/dialog_preview/body_has_scrollbar_overflow.html.erb +9 -0
  614. data/previews/primer/alpha/dialog_preview/custom_header.html.erb +7 -0
  615. data/previews/primer/alpha/dialog_preview/nested_dialog.html.erb +14 -0
  616. data/previews/primer/alpha/dialog_preview/test.html.erb +7 -0
  617. data/previews/primer/alpha/dialog_preview/with_footer.html.erb +8 -0
  618. data/previews/primer/alpha/dialog_preview/with_form.html.erb +12 -0
  619. data/previews/primer/alpha/dialog_preview/with_text_input.html.erb +10 -0
  620. data/previews/primer/alpha/dialog_preview.rb +154 -0
  621. data/previews/primer/alpha/dropdown_preview.rb +211 -0
  622. data/previews/primer/alpha/form_control_preview/playground.html.erb +9 -0
  623. data/previews/primer/alpha/form_control_preview.rb +106 -0
  624. data/previews/primer/alpha/hellip_button_preview.rb +26 -0
  625. data/previews/primer/alpha/hidden_text_expander_preview.rb +23 -0
  626. data/previews/primer/alpha/image_crop_preview.rb +31 -0
  627. data/previews/primer/alpha/layout_preview.rb +215 -0
  628. data/previews/primer/alpha/menu_preview/default.html.erb +17 -0
  629. data/previews/primer/alpha/menu_preview/playground.html.erb +17 -0
  630. data/previews/primer/alpha/menu_preview.rb +15 -0
  631. data/previews/primer/alpha/multi_input_preview/playground.html.erb +41 -0
  632. data/previews/primer/alpha/multi_input_preview.rb +84 -0
  633. data/previews/primer/alpha/nav_list_preview/trailing_action.html.erb +19 -0
  634. data/previews/primer/alpha/nav_list_preview.rb +125 -0
  635. data/previews/primer/alpha/overlay_preview/middle_of_page.html.erb +17 -0
  636. data/previews/primer/alpha/overlay_preview/middle_of_page_with_relative_container.html.erb +19 -0
  637. data/previews/primer/alpha/overlay_preview.rb +179 -0
  638. data/previews/primer/alpha/radio_button_group_preview.rb +85 -0
  639. data/previews/primer/alpha/radio_button_preview.rb +72 -0
  640. data/previews/primer/alpha/segmented_control_preview/with_label_and_caption.html.erb +9 -0
  641. data/previews/primer/alpha/segmented_control_preview/with_subhead_actions.html.erb +11 -0
  642. data/previews/primer/alpha/segmented_control_preview.rb +183 -0
  643. data/previews/primer/alpha/select_preview.rb +136 -0
  644. data/previews/primer/alpha/tab_nav_preview/with_extra.html.erb +8 -0
  645. data/previews/primer/alpha/tab_nav_preview.rb +63 -0
  646. data/previews/primer/alpha/tab_panels_preview/with_extra.html.erb +17 -0
  647. data/previews/primer/alpha/tab_panels_preview.rb +44 -0
  648. data/previews/primer/alpha/text_area_preview.rb +94 -0
  649. data/previews/primer/alpha/text_field_preview.rb +194 -0
  650. data/previews/primer/alpha/toggle_switch_preview.rb +63 -0
  651. data/previews/primer/alpha/tooltip_preview/tooltip_inside_primer_overlay.html.erb +20 -0
  652. data/previews/primer/alpha/tooltip_preview/with_multiple_on_a_page.html.erb +14 -0
  653. data/previews/primer/alpha/tooltip_preview/with_right_most_position.html.erb +7 -0
  654. data/previews/primer/alpha/tooltip_preview.rb +88 -0
  655. data/previews/primer/alpha/underline_nav_preview/default.html.erb +8 -0
  656. data/previews/primer/alpha/underline_nav_preview/playground.html.erb +8 -0
  657. data/previews/primer/alpha/underline_nav_preview.rb +58 -0
  658. data/previews/primer/alpha/underline_panels_preview.rb +38 -0
  659. data/previews/primer/beta/auto_complete_item_preview/default.html.erb +9 -0
  660. data/previews/primer/beta/auto_complete_item_preview/playground.html.erb +9 -0
  661. data/previews/primer/beta/auto_complete_item_preview/with_description.html.erb +11 -0
  662. data/previews/primer/beta/auto_complete_item_preview.rb +57 -0
  663. data/previews/primer/beta/auto_complete_preview/with_submit_button.html.erb +20 -0
  664. data/previews/primer/beta/auto_complete_preview.rb +287 -0
  665. data/previews/primer/beta/avatar_preview.rb +92 -0
  666. data/previews/primer/beta/avatar_stack_preview.rb +104 -0
  667. data/previews/primer/beta/base_button_preview.rb +33 -0
  668. data/previews/primer/beta/blankslate_preview.rb +139 -0
  669. data/previews/primer/beta/border_box_preview.rb +102 -0
  670. data/previews/primer/beta/breadcrumbs_preview.rb +31 -0
  671. data/previews/primer/beta/button_group_preview/action_menus.html.erb +8 -0
  672. data/previews/primer/beta/button_group_preview.rb +74 -0
  673. data/previews/primer/beta/button_preview/all_schemes.html.erb +30 -0
  674. data/previews/primer/beta/button_preview/invisible_all_visuals.html.erb +54 -0
  675. data/previews/primer/beta/button_preview/leading_visual.html.erb +10 -0
  676. data/previews/primer/beta/button_preview/trailing_action.html.erb +10 -0
  677. data/previews/primer/beta/button_preview/trailing_counter.html.erb +11 -0
  678. data/previews/primer/beta/button_preview/trailing_visual.html.erb +11 -0
  679. data/previews/primer/beta/button_preview/with_tooltip.html.erb +10 -0
  680. data/previews/primer/beta/button_preview.rb +324 -0
  681. data/previews/primer/beta/clipboard_copy_preview/element.html.erb +2 -0
  682. data/previews/primer/beta/clipboard_copy_preview.rb +41 -0
  683. data/previews/primer/beta/close_button_preview.rb +24 -0
  684. data/previews/primer/beta/counter_preview.rb +93 -0
  685. data/previews/primer/beta/details_preview.rb +63 -0
  686. data/previews/primer/beta/flash_preview.rb +77 -0
  687. data/previews/primer/beta/heading_preview.rb +25 -0
  688. data/previews/primer/beta/icon_button_preview.rb +113 -0
  689. data/previews/primer/beta/label_preview.rb +117 -0
  690. data/previews/primer/beta/link_preview.rb +71 -0
  691. data/previews/primer/beta/markdown_preview.rb +294 -0
  692. data/previews/primer/beta/octicon_preview.rb +25 -0
  693. data/previews/primer/beta/popover_preview.rb +85 -0
  694. data/previews/primer/beta/progress_bar_preview.rb +64 -0
  695. data/previews/primer/beta/relative_time_preview.rb +286 -0
  696. data/previews/primer/beta/spinner_preview.rb +23 -0
  697. data/previews/primer/beta/state_preview.rb +72 -0
  698. data/previews/primer/beta/subhead_preview/actions.html.erb +14 -0
  699. data/previews/primer/beta/subhead_preview.rb +103 -0
  700. data/previews/primer/beta/text_preview.rb +25 -0
  701. data/previews/primer/beta/timeline_item_preview.rb +31 -0
  702. data/previews/primer/beta/truncate_preview.rb +55 -0
  703. data/previews/primer/box_preview.rb +30 -0
  704. data/previews/primer/forms_preview/after_content_form.html.erb +3 -0
  705. data/previews/primer/forms_preview/array_check_box_group_form.html.erb +3 -0
  706. data/previews/primer/forms_preview/caption_template_form.html.erb +3 -0
  707. data/previews/primer/forms_preview/check_box_group_form.html.erb +3 -0
  708. data/previews/primer/forms_preview/check_box_with_nested_form.html.erb +3 -0
  709. data/previews/primer/forms_preview/composed_form.html.erb +4 -0
  710. data/previews/primer/forms_preview/example_toggle_switch_form.html.erb +3 -0
  711. data/previews/primer/forms_preview/horizontal_form.html.erb +3 -0
  712. data/previews/primer/forms_preview/immediate_validation_form.html.erb +3 -0
  713. data/previews/primer/forms_preview/invalid_form.html.erb +3 -0
  714. data/previews/primer/forms_preview/multi_input_form.html.erb +14 -0
  715. data/previews/primer/forms_preview/multi_text_field_form.html.erb +3 -0
  716. data/previews/primer/forms_preview/name_with_question_mark_form.html.erb +3 -0
  717. data/previews/primer/forms_preview/radio_button_group_form.html.erb +3 -0
  718. data/previews/primer/forms_preview/radio_button_with_nested_form.html.erb +3 -0
  719. data/previews/primer/forms_preview/select_form.html.erb +3 -0
  720. data/previews/primer/forms_preview/single_text_field_form.html.erb +3 -0
  721. data/previews/primer/forms_preview/submit_button_form.html.erb +3 -0
  722. data/previews/primer/forms_preview/text_field_and_checkbox_form.html.erb +3 -0
  723. data/previews/primer/forms_preview.rb +44 -0
  724. data/previews/primer/url_helpers.rb +15 -0
  725. data/static/arguments.json +4501 -0
  726. data/static/assets/view-components.svg +18 -0
  727. data/static/audited_at.json +107 -0
  728. data/static/classes.json +606 -0
  729. data/static/constants.json +1335 -0
  730. data/static/info_arch.json +14465 -0
  731. data/static/previews.json +6408 -0
  732. data/static/statuses.json +107 -0
  733. metadata +1145 -0
@@ -0,0 +1,53 @@
1
+ <%= render(Primer::BaseComponent.new(tag: :li, **@system_arguments)) do %>
2
+ <%= render(@form_wrapper) do %>
3
+ <%= render(Primer::BaseComponent.new(**@content_arguments)) do %>
4
+ <% if private_leading_action_icon %>
5
+ <span class="ActionListItem-visual ActionListItem-action--leading">
6
+ <%= private_leading_action_icon %>
7
+ </span>
8
+ <% end %>
9
+ <% if list.select_variant == :single || list.select_variant == :multiple %>
10
+ <span class="ActionListItem-visual ActionListItem-action--leading">
11
+ <%= render(Primer::Beta::Octicon.new(icon: :check, classes: "ActionListItem-singleSelectCheckmark")) %>
12
+ </span>
13
+ <% elsif list.select_variant == :multiple_checkbox %>
14
+ <span class="ActionListItem-visual ActionListItem-action--leading">
15
+ <svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" aria-hidden="true" focusable="false" class="ActionListItem-multiSelectIcon">
16
+ <rect x="2" y="2" width="12" height="12" rx="4" class="ActionListItem-multiSelectIconRect"></rect>
17
+ <path fill-rule="evenodd" d="M4.03231 8.69862C3.84775 8.20646 4.49385 7.77554 4.95539 7.77554C5.41693 7.77554 6.80154 9.85246 6.80154 9.85246C6.80154 9.85246 10.2631 4.314 10.4938 4.08323C10.7246 3.85246 11.8785 4.08323 11.4169 5.00631C11.0081 5.82388 7.26308 11.4678 7.26308 11.4678C7.26308 11.4678 6.80154 12.1602 6.34 11.4678C5.87846 10.7755 4.21687 9.19077 4.03231 8.69862Z" class="ActionListItem-multiSelectCheckmark"></path>
18
+ </svg>
19
+ </span>
20
+ <% end %>
21
+ <% if leading_visual %>
22
+ <span class="ActionListItem-visual ActionListItem-visual--leading">
23
+ <%= leading_visual %>
24
+ </span>
25
+ <% end %>
26
+ <%= render(Primer::ConditionalWrapper.new(condition: description?, tag: :span, **@description_wrapper_arguments)) do %>
27
+ <%= render(Primer::BaseComponent.new(tag: :span, **@label_arguments)) do %>
28
+ <%= @label || content %>
29
+ <% end %>
30
+ <% if description? %>
31
+ <span class="ActionListItem-description">
32
+ <%= description %>
33
+ </span>
34
+ <% end %>
35
+ <% end %>
36
+ <% if trailing_visual %>
37
+ <span class="ActionListItem-visual ActionListItem-visual--trailing">
38
+ <%= trailing_visual %>
39
+ </span>
40
+ <% end %>
41
+ <% if private_trailing_action_icon %>
42
+ <span class="ActionListItem-visual ActionListItem-action--trailing">
43
+ <%= private_trailing_action_icon %>
44
+ </span>
45
+ <% end %>
46
+ <% end %>
47
+ <% end %>
48
+ <%= tooltip %>
49
+ <% if trailing_action %>
50
+ <%= trailing_action %>
51
+ <% end %>
52
+ <%= private_content %>
53
+ <% end %>
@@ -0,0 +1,301 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Primer
4
+ module Alpha
5
+ class ActionList
6
+ # An individual `ActionList` item. Items can optionally include leading and/or trailing visuals,
7
+ # such as icons, avatars, and counters.
8
+ class Item < Primer::Component
9
+ DEFAULT_SIZE = :medium
10
+ SIZE_MAPPINGS = {
11
+ DEFAULT_SIZE => nil,
12
+ :large => "ActionListContent--sizeLarge",
13
+ :xlarge => "ActionListContent--sizeXLarge"
14
+ }.freeze
15
+ SIZE_OPTIONS = SIZE_MAPPINGS.keys.freeze
16
+
17
+ DEFAULT_DESCRIPTION_SCHEME = :block
18
+ DESCRIPTION_SCHEME_MAPPINGS = {
19
+ :inline => "ActionListItem-descriptionWrap--inline",
20
+ DEFAULT_DESCRIPTION_SCHEME => "ActionListItem-descriptionWrap"
21
+ }.freeze
22
+ DESCRIPTION_SCHEME_OPTIONS = DESCRIPTION_SCHEME_MAPPINGS.keys.freeze
23
+
24
+ DEFAULT_SCHEME = :default
25
+ SCHEME_MAPPINGS = {
26
+ DEFAULT_SCHEME => nil,
27
+ :danger => "ActionListItem--danger"
28
+ }.freeze
29
+ SCHEME_OPTIONS = SCHEME_MAPPINGS.keys.freeze
30
+
31
+ # Description content that complements the item's label. See `ActionList`'s `description_scheme` argument
32
+ # for layout options.
33
+ renders_one :description
34
+
35
+ # An icon, avatar, SVG, or custom content that will render to the left of the label.
36
+ #
37
+ # To render an icon, call the `with_leading_visual_icon` method, which accepts the arguments accepted by <%= link_to_component(Primer::Beta::Octicon) %>.
38
+ #
39
+ # To render an SVG, call the `with_leading_visual_svg` method.
40
+ #
41
+ # To render custom content, call the `with_leading_visual_content` method and pass a block that returns a string.
42
+ renders_one :leading_visual, types: {
43
+ icon: lambda { |**system_arguments, &block|
44
+ deny_aria_key(
45
+ :label,
46
+ "Avoid using `aria-label` on leading visual icons, as they are purely decorative.",
47
+ **system_arguments
48
+ )
49
+
50
+ Primer::Beta::Octicon.new(**system_arguments, &block)
51
+ },
52
+ avatar: lambda { |*|
53
+ return unless should_raise_error?
54
+
55
+ raise "Leading visual avatars are no longer supported. Please use the #with_avatar_item slot instead."
56
+ },
57
+ svg: lambda { |**system_arguments|
58
+ Primer::BaseComponent.new(tag: :svg, width: "16", height: "16", **system_arguments)
59
+ },
60
+ content: lambda { |**system_arguments|
61
+ Primer::BaseComponent.new(tag: :span, **system_arguments)
62
+ },
63
+ raw_content: nil
64
+ }
65
+
66
+ # Used internally.
67
+ #
68
+ # @private
69
+ renders_one :private_leading_action_icon, Primer::Beta::Octicon
70
+
71
+ # An icon, label, counter, or text to render to the right of the label.
72
+ #
73
+ # To render an icon, call the `with_leading_visual_icon` method, which accepts the arguments accepted by <%= link_to_component(Primer::Beta::Octicon) %>.
74
+ #
75
+ # To render a label, call the `with_leading_visual_label` method, which accepts the arguments accepted by <%= link_to_component(Primer::Beta::Label) %>.
76
+ #
77
+ # To render a counter, call the `with_leading_visual_counter` method, which accepts the arguments accepted by <%= link_to_component(Primer::Beta::Counter) %>.
78
+ #
79
+ # To render text, call the `with_leading_visual_text` method and pass a block that returns a string. Eg:
80
+ # ```ruby
81
+ # with_leading_visual_text { "Text here" }
82
+ # ```
83
+ renders_one :trailing_visual, types: {
84
+ icon: Primer::Beta::Octicon,
85
+ label: Primer::Beta::Label,
86
+ counter: Primer::Beta::Counter,
87
+ text: ->(text) { text }
88
+ }
89
+
90
+ # Used internally.
91
+ #
92
+ # @private
93
+ renders_one :private_trailing_action_icon, Primer::Beta::Octicon
94
+
95
+ # A button rendered after the trailing icon that can be used to show a menu, activate
96
+ # a dialog, etc.
97
+ #
98
+ # @param system_arguments [Hash] The arguments accepted by <%= link_to_component(Primer::Beta::IconButton) %>.
99
+ renders_one :trailing_action, lambda { |**system_arguments|
100
+ Primer::Beta::IconButton.new(
101
+ scheme: :invisible,
102
+ classes: class_names(
103
+ system_arguments[:classes],
104
+ "ActionListItem-trailingAction"
105
+ ),
106
+
107
+ **system_arguments
108
+ )
109
+ }
110
+
111
+ # `Tooltip` that appears on mouse hover or keyboard focus over the trailing action button. Use tooltips sparingly and as
112
+ # a last resort. **Important:** This tooltip defaults to `type: :description`. In a few scenarios, `type: :label` may be
113
+ # more appropriate. Consult the <%= link_to_component(Primer::Alpha::Tooltip) %> documentation for more information.
114
+ #
115
+ # @param type [Symbol] (:description) <%= one_of(Primer::Alpha::Tooltip::TYPE_OPTIONS) %>
116
+ # @param system_arguments [Hash] The arguments accepted by <%= link_to_component(Primer::Alpha::Tooltip) %>.
117
+ renders_one :tooltip, lambda { |**system_arguments|
118
+ raise ArgumentError, "Buttons with a tooltip must have a unique `id` set on the `Button`." if @id.blank? && !Rails.env.production?
119
+
120
+ system_arguments[:for_id] = @id
121
+ system_arguments[:type] ||= :description
122
+
123
+ Primer::Alpha::Tooltip.new(**system_arguments)
124
+ }
125
+
126
+ # Used internally.
127
+ #
128
+ # @private
129
+ renders_one :private_content
130
+
131
+ attr_reader :id, :list, :href, :active, :disabled, :parent
132
+
133
+ # Whether or not this item is active.
134
+ #
135
+ # @return [Boolean]
136
+ alias active? active
137
+
138
+ # Whether or not this item is disabled.
139
+ #
140
+ # @return [Boolean]
141
+ alias disabled? disabled
142
+
143
+ # @param list [Primer::Alpha::ActionList] The list that contains this item. Used internally.
144
+ # @param parent [Primer::Alpha::ActionList::Item] This item's parent item. `nil` if this item is at the root. Used internally.
145
+ # @param label [String] Item label. If no label is provided, content is used.
146
+ # @param label_classes [String] CSS classes that will be added to the label.
147
+ # @param label_arguments [Hash] <%= link_to_system_arguments_docs %> used to construct the label.
148
+ # @param content_arguments [Hash] <%= link_to_system_arguments_docs %> used to construct the item's anchor or button tag.
149
+ # @param form_arguments [Hash] Allows the item to submit a form on click. The URL passed in the `href:` option will be used as the form action. Pass the `method:` option to this hash to control what kind of request is made, <%= one_of(Primer::Alpha::ActionList::FormWrapper::HTTP_METHOD_OPTIONS) %> The `name:` option is required and specifies the desired name of the field that will be included in the params sent to the server on form submission. Specify the `value:` option to send a custom value to the server; otherwise the value of `name:` is sent.
150
+ # @param truncate_label [Boolean] Truncate label with ellipsis.
151
+ # @param href [String] Link URL.
152
+ # @param role [String] ARIA role describing the function of the item.
153
+ # @param size [Symbol] Controls block sizing of the item.
154
+ # @param scheme [Symbol] Controls color/style based on behavior.
155
+ # @param disabled [Boolean] Disabled items are not clickable and visually dim.
156
+ # @param description_scheme [Symbol] Display description inline with label, or block on the next line. <%= one_of(Primer::Alpha::ActionList::Item::DESCRIPTION_SCHEME_OPTIONS) %>
157
+ # @param active [Boolean] If the parent list's `select_variant` is set to `:single` or `:multiple`, causes this item to render checked.
158
+ # @param on_click [String] JavaScript to execute when the item is clicked.
159
+ # @param id [String] Used internally.
160
+ # @param system_arguments [Hash] <%= link_to_system_arguments_docs %>
161
+ def initialize(
162
+ list:,
163
+ label: nil,
164
+ label_classes: nil,
165
+ label_arguments: {},
166
+ content_arguments: {},
167
+ form_arguments: {},
168
+ parent: nil,
169
+ truncate_label: false,
170
+ href: nil,
171
+ role: nil,
172
+ size: DEFAULT_SIZE,
173
+ scheme: DEFAULT_SCHEME,
174
+ disabled: false,
175
+ description_scheme: DEFAULT_DESCRIPTION_SCHEME,
176
+ active: false,
177
+ on_click: nil,
178
+ id: self.class.generate_id,
179
+ **system_arguments
180
+ )
181
+ @list = list
182
+ @parent = parent
183
+ @label = label
184
+ @href = href || content_arguments[:href]
185
+ @truncate_label = truncate_label
186
+ @disabled = disabled
187
+ @active = active
188
+ @id = id
189
+ @system_arguments = system_arguments
190
+ @content_arguments = content_arguments
191
+ @form_wrapper = FormWrapper.new(list: @list, action: @href, **form_arguments)
192
+
193
+ @size = fetch_or_fallback(SIZE_OPTIONS, size, DEFAULT_SIZE)
194
+ @scheme = fetch_or_fallback(SCHEME_OPTIONS, scheme, DEFAULT_SCHEME)
195
+ @description_scheme = fetch_or_fallback(
196
+ DESCRIPTION_SCHEME_OPTIONS, description_scheme, DEFAULT_DESCRIPTION_SCHEME
197
+ )
198
+
199
+ @system_arguments[:classes] = class_names(
200
+ @system_arguments[:classes],
201
+ SCHEME_MAPPINGS[@scheme],
202
+ "ActionListItem",
203
+ "ActionListItem--disabled" => @disabled
204
+ )
205
+
206
+ @system_arguments[:data] ||= {}
207
+ @system_arguments[:data][:targets] = "#{list_class.custom_element_name}.items"
208
+
209
+ @label_arguments = {
210
+ **label_arguments,
211
+ classes: class_names(
212
+ label_classes,
213
+ label_arguments[:classes],
214
+ "ActionListItem-label",
215
+ "ActionListItem-label--truncate" => @truncate_label
216
+ )
217
+ }
218
+
219
+ @content_arguments[:id] = @id
220
+ @content_arguments[:classes] = class_names(
221
+ @content_arguments[:classes],
222
+ "ActionListContent",
223
+ SIZE_MAPPINGS[@size]
224
+ )
225
+
226
+ unless @content_arguments[:tag]
227
+ if @href && @form_wrapper.get? && !@disabled
228
+ @content_arguments[:tag] = :a
229
+ @content_arguments[:href] = @href
230
+ else
231
+ @content_arguments[:tag] = :button
232
+ @content_arguments[:type] = @form_wrapper.form_required? ? :submit : :button
233
+ @content_arguments[:onclick] = on_click if on_click
234
+ end
235
+ end
236
+
237
+ # rubocop:disable Style/IfUnlessModifier
238
+ if @content_arguments[:tag] != :button && @form_wrapper.form_required?
239
+ raise ArgumentError, "items that submit forms must use a \"button\" tag instead of \"#{@content_arguments[:tag]}\""
240
+ end
241
+
242
+ if @content_arguments[:tag] != :button && @list.acts_as_form_input?
243
+ raise ArgumentError, "items within lists/menus that act as form inputs must use \"button\" tags instead of \"#{@content_arguments[:tag]}\""
244
+ end
245
+ # rubocop:enable Style/IfUnlessModifier
246
+
247
+ if @disabled
248
+ @content_arguments[:aria] ||= merge_aria(
249
+ @content_arguments,
250
+ { aria: { disabled: "true" } }
251
+ )
252
+ end
253
+
254
+ @content_arguments[:role] = role ||
255
+ if @list.allows_selection?
256
+ ActionList::SELECT_VARIANT_ROLE_MAP[@list.select_variant]
257
+ elsif @list.acts_as_menu?
258
+ ActionList::DEFAULT_MENU_ITEM_ROLE
259
+ end
260
+
261
+ @system_arguments[:role] = @list.acts_as_menu? ? :none : nil
262
+
263
+ @description_wrapper_arguments = {
264
+ classes: class_names(
265
+ "ActionListItem-descriptionWrap",
266
+ DESCRIPTION_SCHEME_MAPPINGS[@description_scheme]
267
+ )
268
+ }
269
+ end
270
+
271
+ private
272
+
273
+ def before_render
274
+ if @list.allows_selection?
275
+ @content_arguments[:aria] = merge_aria(
276
+ @content_arguments,
277
+ { aria: { checked: active? } }
278
+ )
279
+ end
280
+
281
+ @system_arguments[:classes] = class_names(
282
+ @system_arguments[:classes],
283
+ "ActionListItem--withActions" => trailing_action.present?
284
+ )
285
+
286
+ return unless leading_visual
287
+
288
+ @content_arguments[:classes] = class_names(
289
+ @content_arguments[:classes],
290
+ "ActionListContent--visual16" => leading_visual,
291
+ "ActionListContent--blockDescription" => description && @description_scheme == :block
292
+ )
293
+ end
294
+
295
+ def list_class
296
+ Primer::Alpha::ActionList
297
+ end
298
+ end
299
+ end
300
+ end
301
+ end
@@ -0,0 +1 @@
1
+ :root{--actionListContent-paddingBlock:var(--control-medium-paddingBlock,0.375rem)}.ActionListHeader{margin-bottom:var(--base-size-16,1rem);margin-left:var(--base-size-8,.5rem)}.ActionListWrap{list-style:none}.ActionListWrap--inset{padding:var(--base-size-8,.5rem)}.ActionListWrap--divided .ActionListItem-label:before{height:1px}.ActionListWrap--divided .ActionListItem-descriptionWrap--inline:before,.ActionListWrap--divided .ActionListItem-label:before{background:var(--borderColor-muted,var(--color-action-list-item-inline-divider));content:"";display:block;position:absolute;top:calc(var(--actionListContent-paddingBlock)*-1);width:100%}.ActionListWrap--divided .ActionListItem-descriptionWrap--inline:before{height:var(--borderWidth-thin,max(1px,.0625rem))}.ActionListWrap--divided .ActionListItem-descriptionWrap--inline .ActionListItem-label:before{content:unset}.ActionList-sectionDivider+.ActionListItem .ActionListItem-descriptionWrap--inline:before,.ActionList-sectionDivider+.ActionListItem .ActionListItem-label:before,.ActionListItem:first-of-type .ActionListItem-descriptionWrap--inline:before,.ActionListItem:first-of-type .ActionListItem-label:before,.ActionListWrap--divided .ActionListItem--navActive .ActionListItem-label:before,.ActionListWrap--divided .ActionListItem--navActive+.ActionListItem .ActionListItem-label:before{visibility:hidden}.ActionListItem{background-color:var(--control-transparent-bgColor-rest,#0000);border-radius:var(--borderRadius-medium,6px);list-style:none;position:relative}.ActionListItem:active,.ActionListItem:hover{cursor:pointer}@media (hover:hover){.ActionListItem:hover .ActionListItem-descriptionWrap--inline:before,.ActionListItem:hover .ActionListItem-label:before,.ActionListItem:hover+.ActionListItem .ActionListItem-descriptionWrap--inline:before,.ActionListItem:hover+.ActionListItem .ActionListItem-label:before{visibility:hidden}}.ActionListItem[hidden]+.ActionList-sectionDivider{display:none}.ActionListItem.ActionListItem--hasSubItem>.ActionListContent{z-index:1}@media (hover:hover){.ActionListItem.ActionListItem--hasSubItem>.ActionListContent:hover{background-color:var(--control-transparent-bgColor-hover,var(--color-action-list-item-default-hover-bg))}}.ActionListItem.ActionListItem--hasSubItem>.ActionListContent:active{background-color:var(--control-transparent-bgColor-active,var(--color-action-list-item-default-active-bg))}@media (hover:hover){.ActionListItem.ActionListItem--hasSubItem>.ActionListContent:hover,.ActionListItem:not(.ActionListItem--hasSubItem):hover{background-color:var(--control-transparent-bgColor-hover,var(--color-action-list-item-default-hover-bg));cursor:pointer}.ActionListItem.ActionListItem--hasSubItem>.ActionListContent:hover:not(.ActionListItem--navActive,:focus-visible),.ActionListItem:not(.ActionListItem--hasSubItem):hover:not(.ActionListItem--navActive,:focus-visible){box-shadow:var(--boxShadow-thin,inset 0 0 0 max(1px,.0625rem)) var(--control-transparent-borderColor-active,var(--color-action-list-item-default-active-border));outline:solid var(--borderWidth-thin,max(1px,.0625rem)) #0000;outline-offset:calc(var(--borderWidth-thin,max(1px, .0625rem))*-1)}}.ActionListItem.ActionListItem--hasSubItem>.ActionListContent:active,.ActionListItem:not(.ActionListItem--hasSubItem):active{background:var(--control-transparent-bgColor-active,var(--color-action-list-item-default-active-bg))}.ActionListItem.ActionListItem--hasSubItem>.ActionListContent:active:not(.ActionListItem--navActive),.ActionListItem:not(.ActionListItem--hasSubItem):active:not(.ActionListItem--navActive){box-shadow:var(--boxShadow-thin,inset 0 0 0 max(1px,.0625rem)) var(--control-transparent-borderColor-active,var(--color-action-list-item-default-active-border));outline:solid var(--borderWidth-thin,max(1px,.0625rem)) #0000;outline-offset:calc(var(--borderWidth-thin,max(1px, .0625rem))*-1)}.ActionListItem.ActionListItem--hasSubItem>.ActionListContent:active .ActionListItem-label:before,.ActionListItem.ActionListItem--hasSubItem>.ActionListContent:active+.ActionListItem .ActionListItem-label:before,.ActionListItem:not(.ActionListItem--hasSubItem):active .ActionListItem-label:before,.ActionListItem:not(.ActionListItem--hasSubItem):active+.ActionListItem .ActionListItem-label:before{visibility:hidden}.ActionListItem[aria-selected=true]{background:var(--control-transparent-bgColor-selected,var(--color-action-list-item-default-selected-bg));font-weight:var(--base-text-weight-normal,400)}@media (hover:hover){.ActionListItem[aria-selected=true]:hover{background-color:var(--control-transparent-bgColor-hover,var(--color-action-list-item-default-hover-bg))}}.ActionListItem[aria-selected=true]+.ActionListItem:before,.ActionListItem[aria-selected=true]:before{visibility:hidden}.ActionListItem[aria-selected=true]:after{background:var(--borderColor-accent-emphasis,var(--color-accent-fg));border-radius:var(--borderRadius-medium,6px);content:"";height:var(--base-size-24,1.5rem);left:calc(var(--base-size-4,.25rem)*-1);position:absolute;top:calc(50% - 12px);width:var(--base-size-4,.25rem)}.ActionListItem.ActionListItem--navActive{outline:2px solid #0000}.ActionListItem.ActionListItem--navActive:not(.ActionListItem--subItem) .ActionListItem-label{font-weight:var(--base-text-weight-semibold,600)}.ActionListItem.ActionListItem--navActive:not(.ActionListItem--danger){background:var(--control-transparent-bgColor-selected,var(--color-action-list-item-default-selected-bg))}@media (hover:hover){.ActionListItem.ActionListItem--navActive:not(.ActionListItem--danger):hover{background-color:var(--control-transparent-bgColor-hover,var(--color-action-list-item-default-hover-bg))}}.ActionListItem.ActionListItem--navActive:not(.ActionListItem--danger)+.ActionListItem:before,.ActionListItem.ActionListItem--navActive:not(.ActionListItem--danger):before{visibility:hidden}.ActionListItem.ActionListItem--navActive:not(.ActionListItem--danger):after{background:var(--borderColor-accent-emphasis,var(--color-accent-fg));border-radius:var(--borderRadius-medium,6px);content:"";height:var(--base-size-24,1.5rem);left:calc(var(--base-size-8,.5rem)*-1);position:absolute;top:calc(50% - 12px);width:var(--base-size-4,.25rem)}.ActionListItem.ActionListItem--disabled .ActionListContent .ActionListItem-description,.ActionListItem.ActionListItem--disabled .ActionListContent .ActionListItem-label,.ActionListItem[aria-disabled=true] .ActionListContent .ActionListItem-description,.ActionListItem[aria-disabled=true] .ActionListContent .ActionListItem-label{color:var(--control-fgColor-disabled,var(--color-primer-fg-disabled))}.ActionListItem.ActionListItem--disabled .ActionListContent .ActionListItem-visual,.ActionListItem[aria-disabled=true] .ActionListContent .ActionListItem-visual{fill:var(--control-fgColor-disabled,var(--color-primer-fg-disabled))}@media (hover:hover){.ActionListItem.ActionListItem--disabled:hover,.ActionListItem[aria-disabled=true]:hover{background-color:initial;cursor:not-allowed}}.ActionListItem.ActionListItem--danger .ActionListItem-label,.ActionListItem.ActionListItem--danger .ActionListItem-visual{color:var(--control-danger-fgColor-rest,var(--color-danger-fg))}@media (hover:hover){.ActionListItem.ActionListItem--danger:hover{background:var(--control-danger-bgColor-hover,var(--color-action-list-item-danger-hover-bg))}.ActionListItem.ActionListItem--danger:hover .ActionListItem-description,.ActionListItem.ActionListItem--danger:hover .ActionListItem-label,.ActionListItem.ActionListItem--danger:hover .ActionListItem-visual{color:var(--control-danger-fgColor-hover,var(--color-action-list-item-danger-hover-text))}}.ActionListItem.ActionListItem--danger .ActionListContent:active{background:var(--control-danger-bgColor-active,var(--color-action-list-item-danger-active-bg))}.ActionListItem.ActionListItem--danger .ActionListContent:active .ActionListItem-description,.ActionListItem.ActionListItem--danger .ActionListContent:active .ActionListItem-label,.ActionListItem.ActionListItem--danger .ActionListContent:active .ActionListItem-visual{color:var(--control-danger-fgColor-hover,var(--color-action-list-item-danger-hover-text))}.ActionListContent{-webkit-tap-highlight-color:transparent;align-items:start;background-color:initial;border:none;border-radius:var(--borderRadius-medium,6px);color:var(--control-fgColor-rest,var(--color-fg-default));display:grid;grid-template-areas:"leadingAction leadingVisual label trailingVisual trailingAction";grid-template-columns:min-content min-content minmax(0,auto) min-content min-content;grid-template-rows:min-content;padding-block:var(--actionListContent-paddingBlock);padding-inline:var(--control-medium-paddingInline-condensed,.5rem);position:relative;text-align:left;touch-action:manipulation;transition:background 33.333ms linear;-webkit-user-select:none;user-select:none;width:100%}.ActionListContent>:not(:last-child){margin-right:var(--control-medium-gap,.5rem)}.ActionListContent:hover{text-decoration:none}.ActionListContent[aria-disabled=true] .ActionListItem-description,.ActionListContent[aria-disabled=true] .ActionListItem-label{color:var(--control-fgColor-disabled,var(--color-primer-fg-disabled))}.ActionListContent[aria-disabled=true] .ActionListItem-visual{fill:var(--control-fgColor-disabled,var(--color-primer-fg-disabled))}@media (hover:hover){.ActionListContent[aria-disabled=true]:hover{background-color:initial;cursor:not-allowed}}@media screen and (prefers-reduced-motion:no-preference){.ActionListContent[aria-expanded]+.ActionList--subGroup{transition:opacity .16s cubic-bezier(.25,1,.5,1),transform .16s cubic-bezier(.25,1,.5,1)}}.ActionListContent[aria-expanded]+.ActionList--subGroup .ActionListContent{padding-left:var(--base-size-24,1.5rem)}.ActionListContent.ActionListContent--visual16[aria-expanded]+.ActionList--subGroup .ActionListContent{padding-left:var(--base-size-32,2rem)}.ActionListContent.ActionListContent--visual20[aria-expanded]+.ActionList--subGroup .ActionListContent{padding-left:var(--base-size-36,2.25rem)}.ActionListContent.ActionListContent--visual24[aria-expanded]+.ActionList--subGroup .ActionListContent{padding-left:var(--base-size-40,2.5rem)}.ActionListContent[aria-expanded=true] .ActionListItem-collapseIcon{transform:scaleY(-1);transition:transform .12s linear}.ActionListContent[aria-expanded=true]+.ActionList--subGroup{height:auto;opacity:1;overflow:visible;transform:translateY(0);visibility:visible}.ActionListContent.ActionListContent--hasActiveSubItem[aria-expanded=true]>.ActionListItem-label{font-weight:var(--base-text-weight-semibold,600)}.ActionListContent[aria-expanded=false] .ActionListItem-collapseIcon{transform:scaleY(1);transition:transform .12s linear}.ActionListContent[aria-expanded=false]+.ActionList--subGroup{height:0;opacity:0;overflow:hidden;transform:translateY(calc(var(--base-size-16,1rem)*-1));visibility:hidden}.ActionListContent.ActionListContent--hasActiveSubItem[aria-expanded=false]{background:var(--control-transparent-bgColor-selected,var(--color-action-list-item-default-selected-bg))}.ActionListContent.ActionListContent--hasActiveSubItem[aria-expanded=false] .ActionListItem-label{font-weight:var(--base-text-weight-semibold,600)}.ActionListContent.ActionListContent--hasActiveSubItem[aria-expanded=false]+.ActionListItem:before,.ActionListContent.ActionListContent--hasActiveSubItem[aria-expanded=false]:before{visibility:hidden}.ActionListContent.ActionListContent--hasActiveSubItem[aria-expanded=false]:after{background:var(--borderColor-accent-emphasis,var(--color-accent-fg));border-radius:var(--borderRadius-medium,6px);content:"";height:var(--base-size-24,1.5rem);left:calc(var(--base-size-8,.5rem)*-1);position:absolute;top:calc(50% - 12px);width:var(--base-size-4,.25rem)}.ActionListContent[aria-checked=true] .ActionListItem-multiSelectCheckmark,.ActionListContent[aria-selected=true] .ActionListItem-multiSelectCheckmark{opacity:1;transition:visibility 0 linear 0,opacity 50ms;visibility:visible}.ActionListContent[aria-checked=true] .ActionListItem-singleSelectCheckmark,.ActionListContent[aria-selected=true] .ActionListItem-singleSelectCheckmark{visibility:visible}@media screen and (prefers-reduced-motion:no-preference){.ActionListContent[aria-checked=true] .ActionListItem-singleSelectCheckmark,.ActionListContent[aria-selected=true] .ActionListItem-singleSelectCheckmark{animation:checkmarkIn .2s cubic-bezier(.11,0,.5,0) forwards;@keyframes checkmarkIn{0%{clip-path:inset(16px 0 0 0)}to{clip-path:inset(0 0 0 0)}}}}.ActionListContent[aria-checked=true] .ActionListItem-multiSelectIcon .ActionListItem-multiSelectIconRect,.ActionListContent[aria-selected=true] .ActionListItem-multiSelectIcon .ActionListItem-multiSelectIconRect{fill:var(--control-checked-bgColor-rest,var(--color-switch-track-checked-bg));stroke:var(--control-checked-bgColor-rest,var(--color-switch-track-checked-bg));stroke-width:var(--borderWidth-thin,1px)}.ActionListContent[aria-checked=true] .ActionListItem-multiSelectIcon .ActionListItem-multiSelectCheckmark,.ActionListContent[aria-selected=true] .ActionListItem-multiSelectIcon .ActionListItem-multiSelectCheckmark{fill:var(--fgColor-onEmphasis,var(--color-fg-on-emphasis))}.ActionListContent[aria-checked=false] .ActionListItem-multiSelectCheckmark,.ActionListContent[aria-selected=false] .ActionListItem-multiSelectCheckmark{opacity:0;transition:visibility 0 linear 50ms,opacity 50ms;visibility:hidden}.ActionListContent[aria-checked=false] .ActionListItem-singleSelectCheckmark,.ActionListContent[aria-selected=false] .ActionListItem-singleSelectCheckmark{clip-path:inset(16px 0 0 0);transition:visibility 0s linear .2s;visibility:hidden}@media screen and (prefers-reduced-motion:no-preference){.ActionListContent[aria-checked=false] .ActionListItem-singleSelectCheckmark,.ActionListContent[aria-selected=false] .ActionListItem-singleSelectCheckmark{animation:checkmarkOut .2s cubic-bezier(.11,0,.5,0) forwards;@keyframes checkmarkOut{0%{clip-path:inset(0 0 0 0)}to{clip-path:inset(16px 0 0 0)}}}}.ActionListContent[aria-checked=false] .ActionListItem-multiSelectIcon .ActionListItem-multiSelectIconRect,.ActionListContent[aria-selected=false] .ActionListItem-multiSelectIcon .ActionListItem-multiSelectIconRect{fill:var(--bgColor-default,var(--color-canvas-default));stroke:var(--control-borderColor-rest,var(--color-btn-border));stroke-width:var(--borderWidth-thin,1px)}.ActionListContent[aria-checked=false] .ActionListItem-multiSelectIconRect,.ActionListContent[aria-selected=false] .ActionListItem-multiSelectIconRect{fill:var(--bgColor-default,var(--color-canvas-default));border:var(--borderWidth-thin,1px) solid var(--control-borderColor-rest,var(--color-btn-border))}.ActionListContent.ActionListContent--sizeLarge{--actionListContent-paddingBlock:var(--control-large-paddingBlock,0.625rem)}.ActionListContent.ActionListContent--sizeXLarge{--actionListContent-paddingBlock:var(--control-xlarge-paddingBlock,0.875rem)}@media (pointer:coarse){.ActionListContent{--actionListContent-paddingBlock:var(--control-large-paddingBlock,0.625rem)}}.ActionListContent.ActionListContent--blockDescription .ActionListItem-visual{place-self:start}.ActionListItem-action--leading{grid-area:leadingAction}.ActionListItem-visual--leading{grid-area:leadingVisual}.ActionListItem-visual--trailing{grid-area:trailingVisual}.ActionListItem-action--trailing{grid-area:trailingAction}.ActionListItem-descriptionWrap{display:flex;flex-direction:column;gap:var(--base-size-4,.25rem);grid-area:label}.ActionListItem-descriptionWrap .ActionListItem-label{font-weight:var(--base-text-weight-semibold,600)}.ActionListItem-descriptionWrap--inline{align-items:baseline;flex-direction:row;gap:var(--base-size-8,.5rem);position:relative}.ActionListItem-description{color:var(--fgColor-muted,var(--color-fg-muted));font-size:var(--text-body-size-small,.75rem);font-weight:var(--base-text-weight-normal,400);line-height:var(--text-body-lineHeight-small,1.66667)}.ActionListItem-action,.ActionListItem-visual{fill:var(--fgColor-muted,var(--color-fg-muted));align-items:center;color:var(--fgColor-muted,var(--color-fg-muted));display:flex;min-height:var(--control-medium-lineBoxHeight,1.25rem);pointer-events:none}.ActionListItem-label{color:var(--fgColor-default,var(--color-fg-default));font-size:var(--text-body-size-medium,.875rem);font-weight:var(--base-text-weight-normal,400);grid-area:label;line-height:var(--text-body-lineHeight-medium,1.42857);position:relative}.ActionListItem-label--truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.ActionListItem--subItem>.ActionListContent>.ActionListItem-label{font-size:var(--text-body-size-small,.75rem);line-height:var(--text-body-lineHeight-small,1.66667)}.ActionListItem--withActions{align-items:center;display:flex;flex-wrap:nowrap}.ActionListItem-trailingAction{border-bottom-left-radius:0;border-top-left-radius:0}.ActionListItem--trailingActionHover .ActionListItem-trailingAction{visibility:hidden}.ActionListItem--trailingActionHover:focus-within .ActionListItem-trailingAction,.ActionListItem--trailingActionHover:hover .ActionListItem-trailingAction{visibility:visible}.ActionList-sectionDivider:not(:empty){color:var(--fgColor-muted,var(--color-fg-muted));display:flex;flex-direction:column;font-size:var(--text-body-size-small,.75rem);font-weight:var(--base-text-weight-semibold,600);line-height:var(--text-body-lineHeight-small,1.66667);padding-block:var(--base-size-8,.5rem);padding-inline:var(--actionListContent-paddingBlock)}.ActionList-sectionDivider:empty{background:var(--borderColor-muted,var(--color-action-list-item-inline-divider));border:0;display:block;height:var(--borderWidth-thin,max(1px,.0625rem));list-style:none;margin-block-end:var(--base-size-8,.5rem);margin-block-start:calc(var(--base-size-8,.5rem) - var(--borderWidth-thin,max(1px, .0625rem)));margin-inline:calc(var(--base-size-8,.5rem)*-1);padding:0}.ActionList-sectionDivider .ActionList-sectionDivider-title{color:var(--fgColor-muted,var(--color-fg-muted));font-size:var(--text-body-size-small,.75rem);font-weight:var(--base-text-weight-semibold,600)}.ActionList-sectionDivider--filled{background:var(--bgColor-muted,var(--color-canvas-subtle));border-bottom:solid var(--borderWidth-thin,max(1px,.0625rem)) var(--borderColor-muted,var(--color-action-list-item-inline-divider));border-top:solid var(--borderWidth-thin,max(1px,.0625rem)) var(--borderColor-muted,var(--color-action-list-item-inline-divider));margin-block-end:var(--base-size-8,.5rem);margin-block-start:calc(var(--base-size-8,.5rem) - var(--borderWidth-thin,max(1px, .0625rem)));margin-inline:calc(var(--base-size-8,.5rem)*-1)}.ActionList-sectionDivider--filled:empty{box-sizing:border-box;height:var(--base-size-8,.5rem)}.ActionList-sectionDivider--filled:first-child{margin-block-start:0}
@@ -0,0 +1,134 @@
1
+ {
2
+ "name": "alpha/action_list",
3
+ "selectors": [
4
+ ":root",
5
+ ".ActionListHeader",
6
+ ".ActionListWrap",
7
+ ".ActionListWrap--inset",
8
+ ".ActionListWrap--divided .ActionListItem-label:before",
9
+ ".ActionListWrap--divided .ActionListItem-descriptionWrap--inline:before",
10
+ ".ActionListWrap--divided .ActionListItem-descriptionWrap--inline .ActionListItem-label:before",
11
+ ".ActionList-sectionDivider+.ActionListItem .ActionListItem-descriptionWrap--inline:before",
12
+ ".ActionList-sectionDivider+.ActionListItem .ActionListItem-label:before",
13
+ ".ActionListItem:first-of-type .ActionListItem-descriptionWrap--inline:before",
14
+ ".ActionListItem:first-of-type .ActionListItem-label:before",
15
+ ".ActionListWrap--divided .ActionListItem--navActive .ActionListItem-label:before",
16
+ ".ActionListWrap--divided .ActionListItem--navActive+.ActionListItem .ActionListItem-label:before",
17
+ ".ActionListItem",
18
+ ".ActionListItem:active",
19
+ ".ActionListItem:hover",
20
+ ".ActionListItem:hover .ActionListItem-descriptionWrap--inline:before",
21
+ ".ActionListItem:hover .ActionListItem-label:before",
22
+ ".ActionListItem:hover+.ActionListItem .ActionListItem-descriptionWrap--inline:before",
23
+ ".ActionListItem:hover+.ActionListItem .ActionListItem-label:before",
24
+ ".ActionListItem[hidden]+.ActionList-sectionDivider",
25
+ ".ActionListItem.ActionListItem--hasSubItem>.ActionListContent",
26
+ ".ActionListItem.ActionListItem--hasSubItem>.ActionListContent:hover",
27
+ ".ActionListItem.ActionListItem--hasSubItem>.ActionListContent:active",
28
+ ".ActionListItem:not(.ActionListItem--hasSubItem):hover",
29
+ ".ActionListItem.ActionListItem--hasSubItem>.ActionListContent:hover:not(.ActionListItem--navActive,:focus-visible)",
30
+ ".ActionListItem:not(.ActionListItem--hasSubItem):hover:not(.ActionListItem--navActive,:focus-visible)",
31
+ ".ActionListItem:not(.ActionListItem--hasSubItem):active",
32
+ ".ActionListItem.ActionListItem--hasSubItem>.ActionListContent:active:not(.ActionListItem--navActive)",
33
+ ".ActionListItem:not(.ActionListItem--hasSubItem):active:not(.ActionListItem--navActive)",
34
+ ".ActionListItem.ActionListItem--hasSubItem>.ActionListContent:active .ActionListItem-label:before",
35
+ ".ActionListItem.ActionListItem--hasSubItem>.ActionListContent:active+.ActionListItem .ActionListItem-label:before",
36
+ ".ActionListItem:not(.ActionListItem--hasSubItem):active .ActionListItem-label:before",
37
+ ".ActionListItem:not(.ActionListItem--hasSubItem):active+.ActionListItem .ActionListItem-label:before",
38
+ ".ActionListItem[aria-selected=true]",
39
+ ".ActionListItem[aria-selected=true]:hover",
40
+ ".ActionListItem[aria-selected=true]+.ActionListItem:before",
41
+ ".ActionListItem[aria-selected=true]:before",
42
+ ".ActionListItem[aria-selected=true]:after",
43
+ ".ActionListItem.ActionListItem--navActive",
44
+ ".ActionListItem.ActionListItem--navActive:not(.ActionListItem--subItem) .ActionListItem-label",
45
+ ".ActionListItem.ActionListItem--navActive:not(.ActionListItem--danger)",
46
+ ".ActionListItem.ActionListItem--navActive:not(.ActionListItem--danger):hover",
47
+ ".ActionListItem.ActionListItem--navActive:not(.ActionListItem--danger)+.ActionListItem:before",
48
+ ".ActionListItem.ActionListItem--navActive:not(.ActionListItem--danger):before",
49
+ ".ActionListItem.ActionListItem--navActive:not(.ActionListItem--danger):after",
50
+ ".ActionListItem.ActionListItem--disabled .ActionListContent .ActionListItem-description",
51
+ ".ActionListItem.ActionListItem--disabled .ActionListContent .ActionListItem-label",
52
+ ".ActionListItem[aria-disabled=true] .ActionListContent .ActionListItem-description",
53
+ ".ActionListItem[aria-disabled=true] .ActionListContent .ActionListItem-label",
54
+ ".ActionListItem.ActionListItem--disabled .ActionListContent .ActionListItem-visual",
55
+ ".ActionListItem[aria-disabled=true] .ActionListContent .ActionListItem-visual",
56
+ ".ActionListItem.ActionListItem--disabled:hover",
57
+ ".ActionListItem[aria-disabled=true]:hover",
58
+ ".ActionListItem.ActionListItem--danger .ActionListItem-label",
59
+ ".ActionListItem.ActionListItem--danger .ActionListItem-visual",
60
+ ".ActionListItem.ActionListItem--danger:hover",
61
+ ".ActionListItem.ActionListItem--danger:hover .ActionListItem-description",
62
+ ".ActionListItem.ActionListItem--danger:hover .ActionListItem-label",
63
+ ".ActionListItem.ActionListItem--danger:hover .ActionListItem-visual",
64
+ ".ActionListItem.ActionListItem--danger .ActionListContent:active",
65
+ ".ActionListItem.ActionListItem--danger .ActionListContent:active .ActionListItem-description",
66
+ ".ActionListItem.ActionListItem--danger .ActionListContent:active .ActionListItem-label",
67
+ ".ActionListItem.ActionListItem--danger .ActionListContent:active .ActionListItem-visual",
68
+ ".ActionListContent",
69
+ ".ActionListContent>:not(:last-child)",
70
+ ".ActionListContent:hover",
71
+ ".ActionListContent[aria-disabled=true] .ActionListItem-description",
72
+ ".ActionListContent[aria-disabled=true] .ActionListItem-label",
73
+ ".ActionListContent[aria-disabled=true] .ActionListItem-visual",
74
+ ".ActionListContent[aria-disabled=true]:hover",
75
+ ".ActionListContent[aria-expanded]+.ActionList--subGroup",
76
+ ".ActionListContent[aria-expanded]+.ActionList--subGroup .ActionListContent",
77
+ ".ActionListContent.ActionListContent--visual16[aria-expanded]+.ActionList--subGroup .ActionListContent",
78
+ ".ActionListContent.ActionListContent--visual20[aria-expanded]+.ActionList--subGroup .ActionListContent",
79
+ ".ActionListContent.ActionListContent--visual24[aria-expanded]+.ActionList--subGroup .ActionListContent",
80
+ ".ActionListContent[aria-expanded=true] .ActionListItem-collapseIcon",
81
+ ".ActionListContent[aria-expanded=true]+.ActionList--subGroup",
82
+ ".ActionListContent.ActionListContent--hasActiveSubItem[aria-expanded=true]>.ActionListItem-label",
83
+ ".ActionListContent[aria-expanded=false] .ActionListItem-collapseIcon",
84
+ ".ActionListContent[aria-expanded=false]+.ActionList--subGroup",
85
+ ".ActionListContent.ActionListContent--hasActiveSubItem[aria-expanded=false]",
86
+ ".ActionListContent.ActionListContent--hasActiveSubItem[aria-expanded=false] .ActionListItem-label",
87
+ ".ActionListContent.ActionListContent--hasActiveSubItem[aria-expanded=false]+.ActionListItem:before",
88
+ ".ActionListContent.ActionListContent--hasActiveSubItem[aria-expanded=false]:before",
89
+ ".ActionListContent.ActionListContent--hasActiveSubItem[aria-expanded=false]:after",
90
+ ".ActionListContent[aria-checked=true] .ActionListItem-multiSelectCheckmark",
91
+ ".ActionListContent[aria-selected=true] .ActionListItem-multiSelectCheckmark",
92
+ ".ActionListContent[aria-checked=true] .ActionListItem-singleSelectCheckmark",
93
+ ".ActionListContent[aria-selected=true] .ActionListItem-singleSelectCheckmark",
94
+ ".ActionListContent[aria-checked=true] .ActionListItem-multiSelectIcon .ActionListItem-multiSelectIconRect",
95
+ ".ActionListContent[aria-selected=true] .ActionListItem-multiSelectIcon .ActionListItem-multiSelectIconRect",
96
+ ".ActionListContent[aria-checked=true] .ActionListItem-multiSelectIcon .ActionListItem-multiSelectCheckmark",
97
+ ".ActionListContent[aria-selected=true] .ActionListItem-multiSelectIcon .ActionListItem-multiSelectCheckmark",
98
+ ".ActionListContent[aria-checked=false] .ActionListItem-multiSelectCheckmark",
99
+ ".ActionListContent[aria-selected=false] .ActionListItem-multiSelectCheckmark",
100
+ ".ActionListContent[aria-checked=false] .ActionListItem-singleSelectCheckmark",
101
+ ".ActionListContent[aria-selected=false] .ActionListItem-singleSelectCheckmark",
102
+ ".ActionListContent[aria-checked=false] .ActionListItem-multiSelectIcon .ActionListItem-multiSelectIconRect",
103
+ ".ActionListContent[aria-selected=false] .ActionListItem-multiSelectIcon .ActionListItem-multiSelectIconRect",
104
+ ".ActionListContent[aria-checked=false] .ActionListItem-multiSelectIconRect",
105
+ ".ActionListContent[aria-selected=false] .ActionListItem-multiSelectIconRect",
106
+ ".ActionListContent.ActionListContent--sizeLarge",
107
+ ".ActionListContent.ActionListContent--sizeXLarge",
108
+ ".ActionListContent.ActionListContent--blockDescription .ActionListItem-visual",
109
+ ".ActionListItem-action--leading",
110
+ ".ActionListItem-visual--leading",
111
+ ".ActionListItem-visual--trailing",
112
+ ".ActionListItem-action--trailing",
113
+ ".ActionListItem-descriptionWrap",
114
+ ".ActionListItem-descriptionWrap .ActionListItem-label",
115
+ ".ActionListItem-descriptionWrap--inline",
116
+ ".ActionListItem-description",
117
+ ".ActionListItem-action",
118
+ ".ActionListItem-visual",
119
+ ".ActionListItem-label",
120
+ ".ActionListItem-label--truncate",
121
+ ".ActionListItem--subItem>.ActionListContent>.ActionListItem-label",
122
+ ".ActionListItem--withActions",
123
+ ".ActionListItem-trailingAction",
124
+ ".ActionListItem--trailingActionHover .ActionListItem-trailingAction",
125
+ ".ActionListItem--trailingActionHover:focus-within .ActionListItem-trailingAction",
126
+ ".ActionListItem--trailingActionHover:hover .ActionListItem-trailingAction",
127
+ ".ActionList-sectionDivider:not(:empty)",
128
+ ".ActionList-sectionDivider:empty",
129
+ ".ActionList-sectionDivider .ActionList-sectionDivider-title",
130
+ ".ActionList-sectionDivider--filled",
131
+ ".ActionList-sectionDivider--filled:empty",
132
+ ".ActionList-sectionDivider--filled:first-child"
133
+ ]
134
+ }
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["action_list.pcss","../../../../lib/postcss_mixins/activeIndicatorLine.pcss"],"names":[],"mappings":"AAAA,MACE,4EACF,CAIA,kBAEE,sCAAkC,CADlC,oCAEF,CAGA,gBACE,eACF,CAEA,uBACE,gCACF,CAKE,sDAKE,UAGF,CAIE,8HALA,gFAAkF,CADlF,UAAW,CAHX,aAAc,CAFd,iBAAkB,CAClB,kDAAqD,CAErD,UAgBA,CARA,wEAKE,gDAGF,CAGA,8FACE,aACF,CAmBJ,4dAEE,iBACF,CAIA,gBAGE,8DAAyD,CACzD,4CAAyC,CAFzC,eAAgB,CADhB,iBAyMF,CAlME,6CAEE,cACF,CAGA,qBAOI,gRAEE,iBACF,CAEJ,CAGA,mDACE,YACF,CAKE,8DACE,SAWF,CATE,qBACE,oEACE,wGACF,CACF,CAEA,qEACE,0GACF,CAQF,qBACE,2HAEE,wGAA0D,CAD1D,cASF,CANE,yNAIE,gKAA+E,CAF/E,6DAAkD,CAClD,kEAEF,CAEJ,CAEA,6HACE,oGAaF,CAXE,6LAIE,gKAA+E,CAF/E,6DAAkD,CAClD,kEAEF,CAEA,8YAEE,iBACF,CAMJ,oCAEE,wGAAuD,CADvD,8CAmBF,CAhBE,qBACE,0CACE,wGACF,CACF,CAEA,sGAEE,iBACF,CAIA,0CC3KF,oEAA8C,CAC9C,4CAAyC,CAFzC,UAAW,CADX,iCAA2B,CAF3B,uCAAmB,CAFnB,iBAAkB,CAClB,oBAAqB,CAErB,+BDgLE,CAKF,0CAEE,uBA2BF,CAxBI,8FACE,gDACF,CAGF,uEACE,wGAiBF,CAfE,qBACE,6EACE,wGACF,CACF,CAEA,4KAEE,iBACF,CAGA,6EC3MJ,oEAA8C,CAC9C,4CAAyC,CAFzC,UAAW,CADX,iCAA2B,CAF3B,sCAAmB,CAFnB,iBAAkB,CAClB,oBAAqB,CAErB,+BDgNI,CASA,0UAEE,qEACF,CAEA,iKACE,oEACF,CAGF,qBACE,yFAEE,wBAA6B,CAD7B,kBAEF,CACF,CAWA,2HACE,+DACF,CAEA,qBACE,6CACE,4FAOF,CALE,gNAGE,yFACF,CAEJ,CAGE,iEACE,8FAOF,CALE,4QAGE,yFACF,CAOR,mBAcE,uCAAwC,CAIxC,iBAAkB,CATlB,wBAA6B,CAC7B,WAAY,CACZ,4CAAyC,CALzC,yDAAkC,CAJlC,YAAa,CAcb,qFAAsF,CACtF,oFAAsF,CAFtF,8BAA+B,CAX/B,mDAAoD,CACpD,kEAA6D,CAJ7D,iBAAkB,CAMlB,eAAgB,CAMhB,yBAA0B,CAD1B,qCAAsC,CAJtC,wBAAiB,CAAjB,gBAAiB,CALjB,UAyPF,CAvOE,qCACE,4CACF,CAIA,yBACE,oBACF,CAIE,gIAEE,qEACF,CAEA,8DACE,oEACF,CAEA,qBACE,6CAEE,wBAA6B,CAD7B,kBAEF,CACF,CASE,yDADF,wDAEI,wFAMJ,CALE,CAEA,2EACE,uCACF,CAKA,uGACE,qCACF,CAKA,uGACE,wCACF,CAKA,uGACE,uCACF,CAKF,oEAEE,oBAAqB,CADrB,gCAEF,CAEA,6DACE,WAAY,CAGZ,SAAU,CAFV,gBAAiB,CAGjB,uBAAwB,CAFxB,kBAGF,CAGE,iGACE,gDACF,CAKF,qEAEE,mBAAoB,CADpB,gCAEF,CAEA,8DACE,QAAS,CAGT,SAAU,CAFV,eAAgB,CAGhB,uDAAqD,CAFrD,iBAGF,CAGA,4EACE,wGAeF,CAbE,kGACE,gDACF,CAEA,sLAEE,iBACF,CAGA,kFCvZJ,oEAA8C,CAC9C,4CAAyC,CAFzC,UAAW,CADX,iCAA2B,CAF3B,sCAAmB,CAFnB,iBAAkB,CAClB,oBAAqB,CAErB,+BD4ZI,CAWF,uJAEE,SAAU,CACV,6CAA+C,CAF/C,kBAGF,CAGA,yJACE,kBAcF,CAZE,yDAHF,yJAII,2DAAmE,CACnE,uBACE,GACE,2BACF,CAEA,GACE,wBACF,CACF,CAEJ,CADE,CAKA,qNACE,6EAAyC,CACzC,+EAA2C,CAC3C,wCACF,CAEA,uNACE,0DACF,CAOF,yJAEE,SAAU,CACV,gDAAkD,CAFlD,iBAGF,CAGA,2JAGE,2BAA4B,CAD5B,mCAAsC,CADtC,iBAgBF,CAZE,yDALF,2JAMI,4DAAoE,CACpE,wBACE,GACE,wBACF,CAEA,GACE,2BACF,CACF,CAEJ,CADE,CAKA,uNACE,uDAA4B,CAC5B,8DAAuC,CACvC,wCACF,CAGF,uJACE,uDAA4B,CAC5B,gGACF,CAKF,gDACE,2EACF,CAEA,iDACE,4EACF,CAGA,wBAlPF,mBAmPI,2EASJ,CARE,CAIE,8EACE,gBACF,CAMJ,gCACE,uBACF,CAEA,gCACE,uBACF,CAEA,iCACE,wBACF,CAEA,iCACE,wBACF,CAIA,gCAEE,YAAa,CACb,qBAAsB,CACtB,6BAAuB,CAHvB,eAQF,CAHE,sDACE,gDACF,CAIF,wCAGE,oBAAqB,CADrB,kBAAmB,CAEnB,4BAAuB,CAHvB,iBAIF,CAGA,4BAIE,gDAA2B,CAH3B,4CAAsC,CACtC,8CAA2C,CAC3C,qDAEF,CAIA,8CAME,+CAA0B,CAC1B,kBAAmB,CAHnB,gDAA2B,CAF3B,YAAa,CACb,sDAA+C,CAE/C,mBAGF,CAGA,sBAKE,oDAA6B,CAH7B,8CAAuC,CACvC,8CAA2C,CAG3C,eAAgB,CAFhB,sDAA+C,CAH/C,iBAMF,CAEA,gCACE,eAAgB,CAChB,sBAAuB,CACvB,kBACF,CAKA,kEACE,4CAAsC,CACtC,qDACF,CAIA,6BAGE,kBAAmB,CAFnB,YAAa,CACb,gBAEF,CAEA,+BAEE,2BAA4B,CAD5B,wBAEF,CAKE,oEACE,iBACF,CAIE,2JACE,kBACF,CAQF,uCAOE,gDAA2B,CAN3B,YAAa,CAOb,qBAAsB,CAJtB,4CAAsC,CAEtC,gDAA6C,CAD7C,qDAA8C,CAF9C,sCAAiC,CADjC,oDAOF,CAGA,iCAQE,gFAAkF,CAClF,QAAS,CART,aAAc,CACd,gDAA+B,CAK/B,eAAgB,CAFhB,yCAAoC,CADpC,8FAAsE,CAEtE,+CAA4C,CAH5C,SAOF,CAEA,4DAGE,gDAA2B,CAF3B,4CAAsC,CACtC,gDAEF,CAGF,mCAIE,0DAAgC,CAEhC,mIAAmH,CADnH,gIAAgH,CAHhH,yCAAoC,CADpC,8FAAsE,CAEtE,+CAcF,CARE,yCAEE,qBAAsB,CADtB,+BAEF,CAEA,+CACE,oBACF","file":"action_list.css","sourcesContent":[":root {\n --actionListContent-paddingBlock: var(--control-medium-paddingBlock);\n}\n\n/* ActionList */\n\n.ActionListHeader {\n margin-left: var(--base-size-8);\n margin-bottom: var(--base-size-16);\n}\n\n/* <ul> */\n.ActionListWrap {\n list-style: none;\n}\n\n.ActionListWrap--inset {\n padding: var(--base-size-8);\n}\n\n/* list dividers */\n\n.ActionListWrap--divided {\n & .ActionListItem-label::before {\n position: absolute;\n top: calc(-1 * var(--actionListContent-paddingBlock));\n display: block;\n width: 100%;\n height: 1px;\n content: '';\n background: var(--borderColor-muted, var(--color-action-list-item-inline-divider));\n }\n\n /* if descriptionWrap--inline exists, move pseudo divider to wrapper */\n & .ActionListItem-descriptionWrap--inline {\n &::before {\n position: absolute;\n top: calc(-1 * var(--actionListContent-paddingBlock));\n display: block;\n width: 100%;\n height: var(--borderWidth-thin);\n content: '';\n background: var(--borderColor-muted, var(--color-action-list-item-inline-divider));\n }\n\n /* unset the default label pseudo */\n & .ActionListItem-label::before {\n content: unset;\n }\n }\n\n /* hide divider if item is active */\n & .ActionListItem--navActive {\n & .ActionListItem-label::before,\n & + .ActionListItem .ActionListItem-label::before {\n visibility: hidden;\n }\n }\n}\n\n/* hide if item is first of type with label::before, or is the first item after a sectionDivider */\n.ActionListItem:first-of-type .ActionListItem-label::before,\n.ActionList-sectionDivider + .ActionListItem .ActionListItem-label::before {\n visibility: hidden;\n}\n\n/* hide if item is first of type with label::before, or is the first item after a sectionDivider */\n.ActionListItem:first-of-type .ActionListItem-descriptionWrap--inline::before,\n.ActionList-sectionDivider + .ActionListItem .ActionListItem-descriptionWrap--inline::before {\n visibility: hidden;\n}\n\n/* ActionList::Item */\n\n.ActionListItem {\n position: relative;\n list-style: none;\n background-color: var(--control-transparent-bgColor-rest);\n border-radius: var(--borderRadius-medium);\n\n /* state */\n\n &:hover,\n &:active {\n cursor: pointer;\n }\n\n /* hide dividers */\n @media (hover: hover) {\n &:hover {\n & .ActionListItem-label::before,\n & + .ActionListItem .ActionListItem-label::before {\n visibility: hidden;\n }\n\n & .ActionListItem-descriptionWrap--inline::before,\n & + .ActionListItem .ActionListItem-descriptionWrap--inline::before {\n visibility: hidden;\n }\n }\n }\n\n /* Make sure that the first visible item isn't a divider */\n &[hidden] + .ActionList-sectionDivider {\n display: none;\n }\n\n /* collapse styles here */\n &.ActionListItem--hasSubItem {\n /* first child */\n & > .ActionListContent {\n z-index: 1;\n\n @media (hover: hover) {\n &:hover {\n background-color: var(--control-transparent-bgColor-hover);\n }\n }\n\n &:active {\n background-color: var(--control-transparent-bgColor-active);\n }\n }\n }\n\n /* only hover li without list as children */\n &:not(.ActionListItem--hasSubItem),\n /* target contents of first child li if sub-item (li wraps item label + nested ul) */\n &.ActionListItem--hasSubItem > .ActionListContent {\n @media (hover: hover) {\n &:hover {\n cursor: pointer;\n background-color: var(--control-transparent-bgColor-hover);\n\n &:not(.ActionListItem--navActive, :focus-visible) {\n /* Support for \"Windows high contrast mode\" */\n outline: solid var(--borderWidth-thin) transparent;\n outline-offset: calc(-1 * var(--borderWidth-thin));\n box-shadow: var(--boxShadow-thin) var(--control-transparent-borderColor-active);\n }\n }\n }\n\n &:active {\n background: var(--control-transparent-bgColor-active);\n\n &:not(.ActionListItem--navActive) {\n /* Support for \"Windows high contrast mode\" https:sarahmhigley.com/writing/whcm-quick-tips/ */\n outline: solid var(--borderWidth-thin) transparent;\n outline-offset: calc(-1 * var(--borderWidth-thin));\n box-shadow: var(--boxShadow-thin) var(--control-transparent-borderColor-active);\n }\n\n & .ActionListItem-label::before,\n & + .ActionListItem .ActionListItem-label::before {\n visibility: hidden;\n }\n }\n }\n\n /* Autocomplete [aria-selected] items */\n\n &[aria-selected='true'] {\n font-weight: var(--base-text-weight-normal);\n background: var(--control-transparent-bgColor-selected);\n\n @media (hover: hover) {\n &:hover {\n background-color: var(--control-transparent-bgColor-hover);\n }\n }\n\n &::before,\n & + .ActionListItem::before {\n visibility: hidden;\n }\n\n /* blue accent line */\n\n &::after {\n @mixin activeIndicatorLine calc(-1 * var(--base-size-4));\n }\n }\n\n /* active state [aria-current] */\n\n &.ActionListItem--navActive {\n /* provides a visual indication of the current item for Windows high-contrast mode */\n outline: 2px solid transparent;\n\n &:not(.ActionListItem--subItem) {\n & .ActionListItem-label {\n font-weight: var(--base-text-weight-semibold);\n }\n }\n\n &:not(.ActionListItem--danger) {\n background: var(--control-transparent-bgColor-selected);\n\n @media (hover: hover) {\n &:hover {\n background-color: var(--control-transparent-bgColor-hover);\n }\n }\n\n &::before,\n & + .ActionListItem::before {\n visibility: hidden;\n }\n\n /* blue accent line */\n &::after {\n @mixin activeIndicatorLine;\n }\n }\n }\n\n /* disabled */\n\n &.ActionListItem--disabled,\n &[aria-disabled='true'] {\n & .ActionListContent {\n & .ActionListItem-label,\n & .ActionListItem-description {\n color: var(--control-fgColor-disabled);\n }\n\n & .ActionListItem-visual {\n fill: var(--control-fgColor-disabled);\n }\n }\n\n @media (hover: hover) {\n &:hover {\n cursor: not-allowed;\n background-color: transparent;\n }\n }\n }\n\n /* variants */\n\n /* danger */\n &.ActionListItem--danger {\n & .ActionListItem-label {\n color: var(--control-danger-fgColor-rest);\n }\n\n & .ActionListItem-visual {\n color: var(--control-danger-fgColor-rest);\n }\n\n @media (hover: hover) {\n &:hover {\n background: var(--control-danger-bgColor-hover);\n\n & .ActionListItem-label,\n & .ActionListItem-visual,\n & .ActionListItem-description {\n color: var(--control-danger-fgColor-hover);\n }\n }\n }\n\n & .ActionListContent {\n &:active {\n background: var(--control-danger-bgColor-active);\n\n & .ActionListItem-label,\n & .ActionListItem-visual,\n & .ActionListItem-description {\n color: var(--control-danger-fgColor-hover);\n }\n }\n }\n }\n}\n\n/* button or a href */\n.ActionListContent {\n position: relative;\n display: grid;\n width: 100%;\n padding-block: var(--actionListContent-paddingBlock);\n padding-inline: var(--control-medium-paddingInline-condensed);\n color: var(--control-fgColor-rest);\n text-align: left;\n user-select: none;\n background-color: transparent;\n border: none;\n border-radius: var(--borderRadius-medium);\n transition: background 33.333ms linear;\n touch-action: manipulation;\n -webkit-tap-highlight-color: transparent;\n grid-template-rows: min-content;\n grid-template-areas: 'leadingAction leadingVisual label trailingVisual trailingAction';\n grid-template-columns: min-content min-content minmax(0, auto) min-content min-content;\n align-items: start;\n\n /* column-gap persists with empty grid-areas, margin applies only when children exist */\n & > :not(:last-child) {\n margin-right: var(--control-medium-gap);\n }\n\n /* state */\n\n &:hover {\n text-decoration: none;\n }\n\n /* disabled */\n &[aria-disabled='true'] {\n & .ActionListItem-label,\n & .ActionListItem-description {\n color: var(--control-fgColor-disabled);\n }\n\n & .ActionListItem-visual {\n fill: var(--control-fgColor-disabled);\n }\n\n @media (hover: hover) {\n &:hover {\n cursor: not-allowed;\n background-color: transparent;\n }\n }\n }\n\n /* collapsible item [aria-expanded] */\n\n /* nesting (single level)\n target items inside expanded subgroups */\n &[aria-expanded] {\n & + .ActionList--subGroup {\n @media screen and (prefers-reduced-motion: no-preference) {\n transition: opacity 160ms cubic-bezier(0.25, 1, 0.5, 1), transform 160ms cubic-bezier(0.25, 1, 0.5, 1);\n }\n\n & .ActionListContent {\n padding-left: var(--base-size-24);\n }\n }\n\n /* has 16px leading visual */\n &.ActionListContent--visual16 + .ActionList--subGroup {\n & .ActionListContent {\n padding-left: var(--base-size-32);\n }\n }\n\n /* has 20px leading visual */\n &.ActionListContent--visual20 + .ActionList--subGroup {\n & .ActionListContent {\n padding-left: var(--base-size-36);\n }\n }\n\n /* has 24px leading visual */\n &.ActionListContent--visual24 + .ActionList--subGroup {\n & .ActionListContent {\n padding-left: var(--base-size-40);\n }\n }\n }\n\n &[aria-expanded='true'] {\n & .ActionListItem-collapseIcon {\n transition: transform 120ms linear;\n transform: scaleY(-1);\n }\n\n & + .ActionList--subGroup {\n height: auto;\n overflow: visible;\n visibility: visible;\n opacity: 1;\n transform: translateY(0);\n }\n\n &.ActionListContent--hasActiveSubItem {\n & > .ActionListItem-label {\n font-weight: var(--base-text-weight-semibold);\n }\n }\n }\n\n &[aria-expanded='false'] {\n & .ActionListItem-collapseIcon {\n transition: transform 120ms linear;\n transform: scaleY(1);\n }\n\n & + .ActionList--subGroup {\n height: 0;\n overflow: hidden;\n visibility: hidden;\n opacity: 0;\n transform: translateY(calc(-1 * var(--base-size-16)));\n }\n\n /* show active indicator on parent collapse if child is active */\n &.ActionListContent--hasActiveSubItem {\n background: var(--control-transparent-bgColor-selected);\n\n & .ActionListItem-label {\n font-weight: var(--base-text-weight-semibold);\n }\n\n &::before,\n & + .ActionListItem::before {\n visibility: hidden;\n }\n\n /* blue accent line */\n &::after {\n @mixin activeIndicatorLine;\n }\n }\n }\n\n /*\n * checkbox item [aria-checked]\n * listbox [aria-selected]\n */\n &[aria-checked='true'],\n &[aria-selected='true'] {\n /* multiselect checkmark */\n & .ActionListItem-multiSelectCheckmark {\n visibility: visible;\n opacity: 1;\n transition: visibility 0 linear 0, opacity 50ms;\n }\n\n /* singleselect checkmark */\n & .ActionListItem-singleSelectCheckmark {\n visibility: visible;\n\n @media screen and (prefers-reduced-motion: no-preference) {\n animation: checkmarkIn 200ms cubic-bezier(0.11, 0, 0.5, 0) forwards;\n @keyframes checkmarkIn {\n from {\n clip-path: inset(16px 0 0 0);\n }\n\n to {\n clip-path: inset(0 0 0 0);\n }\n }\n }\n }\n\n /* checkbox */\n & .ActionListItem-multiSelectIcon {\n & .ActionListItem-multiSelectIconRect {\n fill: var(--control-checked-bgColor-rest);\n stroke: var(--control-checked-bgColor-rest);\n stroke-width: var(--borderWidth-thin, 1px);\n }\n\n & .ActionListItem-multiSelectCheckmark {\n fill: var(--fgColor-onEmphasis);\n }\n }\n }\n\n &[aria-checked='false'],\n &[aria-selected='false'] {\n /* multiselect checkmark */\n & .ActionListItem-multiSelectCheckmark {\n visibility: hidden;\n opacity: 0;\n transition: visibility 0 linear 50ms, opacity 50ms;\n }\n\n /* singleselect checkmark */\n & .ActionListItem-singleSelectCheckmark {\n visibility: hidden;\n transition: visibility 0s linear 200ms;\n clip-path: inset(16px 0 0 0);\n\n @media screen and (prefers-reduced-motion: no-preference) {\n animation: checkmarkOut 200ms cubic-bezier(0.11, 0, 0.5, 0) forwards;\n @keyframes checkmarkOut {\n from {\n clip-path: inset(0 0 0 0);\n }\n\n to {\n clip-path: inset(16px 0 0 0);\n }\n }\n }\n }\n\n /* checkbox */\n & .ActionListItem-multiSelectIcon {\n & .ActionListItem-multiSelectIconRect {\n fill: var(--bgColor-default);\n stroke: var(--control-borderColor-rest);\n stroke-width: var(--borderWidth-thin, 1px);\n }\n }\n\n & .ActionListItem-multiSelectIconRect {\n fill: var(--bgColor-default);\n border: var(--borderWidth-thin, 1px) solid var(--control-borderColor-rest);\n }\n }\n\n /* sizes */\n\n &.ActionListContent--sizeLarge {\n --actionListContent-paddingBlock: var(--control-large-paddingBlock);\n }\n\n &.ActionListContent--sizeXLarge {\n --actionListContent-paddingBlock: var(--control-xlarge-paddingBlock);\n }\n\n /* On pointer:coarse (mobile), all list items are large */\n @media (pointer: coarse) {\n --actionListContent-paddingBlock: var(--control-large-paddingBlock);\n }\n\n &.ActionListContent--blockDescription {\n /* if leading/trailing visual, align with first line of content */\n & .ActionListItem-visual {\n place-self: start;\n }\n }\n}\n\n/* place children on grid */\n\n.ActionListItem-action--leading {\n grid-area: leadingAction;\n}\n\n.ActionListItem-visual--leading {\n grid-area: leadingVisual;\n}\n\n.ActionListItem-visual--trailing {\n grid-area: trailingVisual;\n}\n\n.ActionListItem-action--trailing {\n grid-area: trailingAction;\n}\n\n/* wrapper span\n default block */\n.ActionListItem-descriptionWrap {\n grid-area: label;\n display: flex;\n flex-direction: column;\n gap: var(--base-size-4);\n\n & .ActionListItem-label {\n font-weight: var(--base-text-weight-semibold);\n }\n}\n\n/* inline */\n.ActionListItem-descriptionWrap--inline {\n position: relative;\n flex-direction: row;\n align-items: baseline;\n gap: var(--base-size-8);\n}\n\n/* description */\n.ActionListItem-description {\n font-size: var(--text-body-size-small);\n font-weight: var(--base-text-weight-normal);\n line-height: var(--text-body-lineHeight-small);\n color: var(--fgColor-muted);\n}\n\n/* helper for grid alignment with multi-line content\n span wrapping svg or text */\n.ActionListItem-visual,\n.ActionListItem-action {\n display: flex;\n min-height: var(--control-medium-lineBoxHeight);\n color: var(--fgColor-muted);\n pointer-events: none;\n fill: var(--fgColor-muted);\n align-items: center;\n}\n\n/* text */\n.ActionListItem-label {\n position: relative;\n font-size: var(--text-body-size-medium);\n font-weight: var(--base-text-weight-normal);\n line-height: var(--text-body-lineHeight-medium);\n color: var(--fgColor-default);\n grid-area: label;\n}\n\n.ActionListItem-label--truncate {\n overflow: hidden;\n text-overflow: ellipsis;\n white-space: nowrap;\n}\n\n/* nested lists (only supports 1 level currently)\n target ActionListItem--subItem for padding-left to maintain :active :after state */\n\n.ActionListItem--subItem > .ActionListContent > .ActionListItem-label {\n font-size: var(--text-body-size-small);\n line-height: var(--text-body-lineHeight-small);\n}\n\n/* trailing action icon button */\n\n.ActionListItem--withActions {\n display: flex;\n flex-wrap: nowrap;\n align-items: center;\n}\n\n.ActionListItem-trailingAction {\n border-top-left-radius: 0;\n border-bottom-left-radius: 0;\n}\n\n/* show trailing action button on hover */\n\n.ActionListItem--trailingActionHover {\n & .ActionListItem-trailingAction {\n visibility: hidden;\n }\n\n &:hover,\n &:focus-within {\n & .ActionListItem-trailingAction {\n visibility: visible;\n }\n }\n}\n\n/* ActionList::Divider */\n\n.ActionList-sectionDivider {\n /* with children */\n &:not(:empty) {\n display: flex;\n padding-inline: var(--actionListContent-paddingBlock);\n padding-block: var(--base-size-8);\n font-size: var(--text-body-size-small);\n line-height: var(--text-body-lineHeight-small);\n font-weight: var(--base-text-weight-semibold);\n color: var(--fgColor-muted);\n flex-direction: column;\n }\n\n /* no children */\n &:empty {\n display: block;\n height: var(--borderWidth-thin);\n padding: 0;\n margin-block-start: calc(var(--base-size-8) - var(--borderWidth-thin));\n margin-block-end: var(--base-size-8);\n margin-inline: calc(-1 * var(--base-size-8));\n list-style: none;\n background: var(--borderColor-muted, var(--color-action-list-item-inline-divider));\n border: 0;\n }\n\n & .ActionList-sectionDivider-title {\n font-size: var(--text-body-size-small);\n font-weight: var(--base-text-weight-semibold);\n color: var(--fgColor-muted);\n }\n}\n\n.ActionList-sectionDivider--filled {\n margin-block-start: calc(var(--base-size-8) - var(--borderWidth-thin));\n margin-block-end: var(--base-size-8);\n margin-inline: calc(-1 * var(--base-size-8));\n background: var(--bgColor-muted);\n border-top: solid var(--borderWidth-thin) var(--borderColor-muted, var(--color-action-list-item-inline-divider));\n border-bottom: solid var(--borderWidth-thin) var(--borderColor-muted, var(--color-action-list-item-inline-divider));\n\n /* if no children, treat as divider */\n &:empty {\n height: var(--base-size-8);\n box-sizing: border-box;\n }\n\n &:first-child {\n margin-block-start: 0;\n }\n}\n","/* active indicator line for navlist items */\n@define-mixin activeIndicatorLine $padding-left: calc(-1 * var(--base-size-8)) {\n position: absolute;\n top: calc(50% - 12px);\n left: $padding-left;\n width: var(--base-size-4);\n height: var(--base-size-24);\n content: '';\n background: var(--borderColor-accent-emphasis);\n border-radius: var(--borderRadius-medium);\n}\n"]}
@@ -0,0 +1,20 @@
1
+ <%= render(Primer::BaseComponent.new(tag: :div)) do %>
2
+ <% if acts_as_form_input? %>
3
+ <span data-list-inputs="true">
4
+ <%= @form_builder.hidden_field(@input_name, multiple: multi_select?, skip_default_ids: true) %>
5
+ </span>
6
+ <% end %>
7
+ <% if heading %>
8
+ <%= heading %>
9
+ <% end %>
10
+ <%= render(Primer::BaseComponent.new(tag: :ul, **@system_arguments)) do %>
11
+ <% items.each_with_index do |item, index| %>
12
+ <%# the conditions here make sure two dividers are never rendered one after the other %>
13
+ <% if index > 0 && @show_dividers && !item.is_a?(Divider) && !items[index - 1].is_a?(Divider) %>
14
+ <%= render(Primer::Alpha::ActionList::Divider.new) %>
15
+ <% end %>
16
+ <%= item %>
17
+ <% end %>
18
+ <% end %>
19
+ <%= capture(&post_list_content_block) if post_list_content_block %>
20
+ <% end %>