jekyll-v4-theme-primer 0.9.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (297) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE.md +22 -0
  3. data/README.md +116 -0
  4. data/_includes/.gitkeep +1 -0
  5. data/_includes/head-custom-google-analytics.html +10 -0
  6. data/_includes/head-custom.html +9 -0
  7. data/_includes/theme.html +11 -0
  8. data/_layouts/default.html +29 -0
  9. data/_layouts/home.html +4 -0
  10. data/_layouts/page.html +4 -0
  11. data/_layouts/post.html +4 -0
  12. data/_sass/@primer/css/actionlist/action-list-item-divider.scss +48 -0
  13. data/_sass/@primer/css/actionlist/action-list-item.scss +593 -0
  14. data/_sass/@primer/css/actionlist/action-list-tree.scss +118 -0
  15. data/_sass/@primer/css/actionlist/action-list-variables.scss +8 -0
  16. data/_sass/@primer/css/actionlist/action-list.scss +67 -0
  17. data/_sass/@primer/css/actionlist/index.scss +6 -0
  18. data/_sass/@primer/css/alerts/flash.scss +1 -0
  19. data/_sass/@primer/css/alerts/index.scss +3 -0
  20. data/_sass/@primer/css/autocomplete/autocomplete.scss +1 -0
  21. data/_sass/@primer/css/autocomplete/index.scss +4 -0
  22. data/_sass/@primer/css/autocomplete/suggester.scss +92 -0
  23. data/_sass/@primer/css/avatars/avatar-parent-child.scss +17 -0
  24. data/_sass/@primer/css/avatars/avatar-stack.scss +1 -0
  25. data/_sass/@primer/css/avatars/avatar.scss +1 -0
  26. data/_sass/@primer/css/avatars/circle-badge.scss +55 -0
  27. data/_sass/@primer/css/avatars/index.scss +7 -0
  28. data/_sass/@primer/css/base/base.scss +160 -0
  29. data/_sass/@primer/css/base/index.scss +6 -0
  30. data/_sass/@primer/css/base/kbd.scss +19 -0
  31. data/_sass/@primer/css/base/normalize.scss +381 -0
  32. data/_sass/@primer/css/base/octicons.scss +6 -0
  33. data/_sass/@primer/css/base/typography-base.scss +89 -0
  34. data/_sass/@primer/css/blankslate/blankslate.scss +1 -0
  35. data/_sass/@primer/css/blankslate/index.scss +2 -0
  36. data/_sass/@primer/css/box/box-overlay.scss +42 -0
  37. data/_sass/@primer/css/box/box.scss +1 -0
  38. data/_sass/@primer/css/box/index.scss +3 -0
  39. data/_sass/@primer/css/branch-name/branch-name.scss +31 -0
  40. data/_sass/@primer/css/branch-name/index.scss +3 -0
  41. data/_sass/@primer/css/breadcrumb/breadcrumb.scss +1 -0
  42. data/_sass/@primer/css/breadcrumb/index.scss +3 -0
  43. data/_sass/@primer/css/buttons/button-group.scss +92 -0
  44. data/_sass/@primer/css/buttons/button.scss +340 -0
  45. data/_sass/@primer/css/buttons/index.scss +4 -0
  46. data/_sass/@primer/css/buttons/misc.scss +231 -0
  47. data/_sass/@primer/css/color-modes/index.scss +12 -0
  48. data/_sass/@primer/css/color-modes/native.scss +22 -0
  49. data/_sass/@primer/css/color-modes/themes/dark.scss +6 -0
  50. data/_sass/@primer/css/color-modes/themes/dark_colorblind.scss +6 -0
  51. data/_sass/@primer/css/color-modes/themes/dark_dimmed.scss +6 -0
  52. data/_sass/@primer/css/color-modes/themes/dark_high_contrast.scss +6 -0
  53. data/_sass/@primer/css/color-modes/themes/dark_tritanopia.scss +6 -0
  54. data/_sass/@primer/css/color-modes/themes/light.scss +6 -0
  55. data/_sass/@primer/css/color-modes/themes/light_colorblind.scss +6 -0
  56. data/_sass/@primer/css/color-modes/themes/light_high_contrast.scss +6 -0
  57. data/_sass/@primer/css/color-modes/themes/light_tritanopia.scss +6 -0
  58. data/_sass/@primer/css/core/index.scss +30 -0
  59. data/_sass/@primer/css/dropdown/dropdown.scss +1 -0
  60. data/_sass/@primer/css/dropdown/index.scss +2 -0
  61. data/_sass/@primer/css/forms/FormControl.scss +1 -0
  62. data/_sass/@primer/css/forms/form-control.scss +267 -0
  63. data/_sass/@primer/css/forms/form-group.scss +287 -0
  64. data/_sass/@primer/css/forms/form-select.scss +46 -0
  65. data/_sass/@primer/css/forms/form-validation.scss +369 -0
  66. data/_sass/@primer/css/forms/index.scss +9 -0
  67. data/_sass/@primer/css/forms/input-group.scss +71 -0
  68. data/_sass/@primer/css/forms/radio-group.scss +62 -0
  69. data/_sass/@primer/css/header/header.scss +47 -0
  70. data/_sass/@primer/css/header/index.scss +2 -0
  71. data/_sass/@primer/css/index.scss +19 -0
  72. data/_sass/@primer/css/labels/counters.scss +1 -0
  73. data/_sass/@primer/css/labels/diffstat.scss +37 -0
  74. data/_sass/@primer/css/labels/index.scss +7 -0
  75. data/_sass/@primer/css/labels/issue-labels.scss +23 -0
  76. data/_sass/@primer/css/labels/labels.scss +1 -0
  77. data/_sass/@primer/css/labels/mixins.scss +37 -0
  78. data/_sass/@primer/css/labels/states.scss +1 -0
  79. data/_sass/@primer/css/layout/app-frame.scss +156 -0
  80. data/_sass/@primer/css/layout/container.scss +30 -0
  81. data/_sass/@primer/css/layout/grid-offset.scss +20 -0
  82. data/_sass/@primer/css/layout/grid.scss +65 -0
  83. data/_sass/@primer/css/layout/index.scss +8 -0
  84. data/_sass/@primer/css/layout/layout.scss +1 -0
  85. data/_sass/@primer/css/layout/page-layout.scss +413 -0
  86. data/_sass/@primer/css/layout/stack.scss +220 -0
  87. data/_sass/@primer/css/links/index.scss +3 -0
  88. data/_sass/@primer/css/links/link.scss +60 -0
  89. data/_sass/@primer/css/loaders/index.scss +2 -0
  90. data/_sass/@primer/css/loaders/loaders.scss +19 -0
  91. data/_sass/@primer/css/markdown/blob-csv.scss +29 -0
  92. data/_sass/@primer/css/markdown/code.scss +77 -0
  93. data/_sass/@primer/css/markdown/footnotes.scss +55 -0
  94. data/_sass/@primer/css/markdown/headings.scss +96 -0
  95. data/_sass/@primer/css/markdown/images.scss +130 -0
  96. data/_sass/@primer/css/markdown/index.scss +9 -0
  97. data/_sass/@primer/css/markdown/lists.scss +98 -0
  98. data/_sass/@primer/css/markdown/markdown-body.scss +96 -0
  99. data/_sass/@primer/css/markdown/tables.scss +36 -0
  100. data/_sass/@primer/css/marketing/buttons/button.scss +164 -0
  101. data/_sass/@primer/css/marketing/buttons/index.scss +3 -0
  102. data/_sass/@primer/css/marketing/index.scss +15 -0
  103. data/_sass/@primer/css/marketing/links/index.scss +3 -0
  104. data/_sass/@primer/css/marketing/links/link.scss +50 -0
  105. data/_sass/@primer/css/marketing/support/index.scss +2 -0
  106. data/_sass/@primer/css/marketing/support/variables.scss +127 -0
  107. data/_sass/@primer/css/marketing/type/index.scss +3 -0
  108. data/_sass/@primer/css/marketing/type/typography.scss +118 -0
  109. data/_sass/@primer/css/marketing/utilities/animations.scss +51 -0
  110. data/_sass/@primer/css/marketing/utilities/borders.scss +4 -0
  111. data/_sass/@primer/css/marketing/utilities/filters.scss +3 -0
  112. data/_sass/@primer/css/marketing/utilities/index.scss +6 -0
  113. data/_sass/@primer/css/marketing/utilities/layout.scss +51 -0
  114. data/_sass/@primer/css/navigation/filter-list.scss +82 -0
  115. data/_sass/@primer/css/navigation/index.scss +8 -0
  116. data/_sass/@primer/css/navigation/menu.scss +1 -0
  117. data/_sass/@primer/css/navigation/sidenav.scss +99 -0
  118. data/_sass/@primer/css/navigation/subnav.scss +146 -0
  119. data/_sass/@primer/css/navigation/tabnav.scss +1 -0
  120. data/_sass/@primer/css/navigation/underline-nav.scss +1 -0
  121. data/_sass/@primer/css/overlay/index.scss +2 -0
  122. data/_sass/@primer/css/overlay/overlay.scss +1 -0
  123. data/_sass/@primer/css/pagination/index.scss +3 -0
  124. data/_sass/@primer/css/pagination/pagination.scss +156 -0
  125. data/_sass/@primer/css/popover/index.scss +3 -0
  126. data/_sass/@primer/css/popover/popover.scss +1 -0
  127. data/_sass/@primer/css/primitives/index.scss +10 -0
  128. data/_sass/@primer/css/primitives/temp-typography-tokens.scss +22 -0
  129. data/_sass/@primer/css/product/index.scss +28 -0
  130. data/_sass/@primer/css/progress/index.scss +3 -0
  131. data/_sass/@primer/css/progress/progress.scss +1 -0
  132. data/_sass/@primer/css/select-menu/index.scss +3 -0
  133. data/_sass/@primer/css/select-menu/select-menu.scss +463 -0
  134. data/_sass/@primer/css/subhead/index.scss +3 -0
  135. data/_sass/@primer/css/subhead/subhead.scss +1 -0
  136. data/_sass/@primer/css/support/index.scss +10 -0
  137. data/_sass/@primer/css/support/mixins/color-modes.scss +109 -0
  138. data/_sass/@primer/css/support/mixins/layout.scss +58 -0
  139. data/_sass/@primer/css/support/mixins/misc.scss +73 -0
  140. data/_sass/@primer/css/support/mixins/typography.scss +91 -0
  141. data/_sass/@primer/css/support/variables/layout.scss +230 -0
  142. data/_sass/@primer/css/support/variables/misc.scss +18 -0
  143. data/_sass/@primer/css/support/variables/typography.scss +43 -0
  144. data/_sass/@primer/css/table-object/index.scss +1 -0
  145. data/_sass/@primer/css/table-object/table-object.scss +23 -0
  146. data/_sass/@primer/css/timeline/index.scss +2 -0
  147. data/_sass/@primer/css/timeline/timeline-item.scss +1 -0
  148. data/_sass/@primer/css/toasts/index.scss +2 -0
  149. data/_sass/@primer/css/toasts/toasts.scss +127 -0
  150. data/_sass/@primer/css/toggle-switch/index.scss +2 -0
  151. data/_sass/@primer/css/toggle-switch/toggle-switch.scss +1 -0
  152. data/_sass/@primer/css/tooltips/index.scss +2 -0
  153. data/_sass/@primer/css/tooltips/tooltips.scss +281 -0
  154. data/_sass/@primer/css/truncate/index.scss +2 -0
  155. data/_sass/@primer/css/truncate/truncate.scss +2 -0
  156. data/_sass/@primer/css/utilities/animations.scss +196 -0
  157. data/_sass/@primer/css/utilities/borders.scss +74 -0
  158. data/_sass/@primer/css/utilities/box-shadow.scss +25 -0
  159. data/_sass/@primer/css/utilities/colors.scss +95 -0
  160. data/_sass/@primer/css/utilities/details.scss +105 -0
  161. data/_sass/@primer/css/utilities/flexbox.scss +52 -0
  162. data/_sass/@primer/css/utilities/index.scss +14 -0
  163. data/_sass/@primer/css/utilities/layout.scss +96 -0
  164. data/_sass/@primer/css/utilities/margin.scss +71 -0
  165. data/_sass/@primer/css/utilities/padding.scss +56 -0
  166. data/_sass/@primer/css/utilities/typography.scss +332 -0
  167. data/_sass/@primer/css/utilities/visibility-display.scss +123 -0
  168. data/_sass/@primer/primitives/dist/scss/colors/_dark.scss +443 -0
  169. data/_sass/@primer/primitives/dist/scss/colors/_dark_colorblind.scss +443 -0
  170. data/_sass/@primer/primitives/dist/scss/colors/_dark_dimmed.scss +443 -0
  171. data/_sass/@primer/primitives/dist/scss/colors/_dark_high_contrast.scss +443 -0
  172. data/_sass/@primer/primitives/dist/scss/colors/_dark_tritanopia.scss +443 -0
  173. data/_sass/@primer/primitives/dist/scss/colors/_light.scss +443 -0
  174. data/_sass/@primer/primitives/dist/scss/colors/_light_colorblind.scss +443 -0
  175. data/_sass/@primer/primitives/dist/scss/colors/_light_high_contrast.scss +443 -0
  176. data/_sass/@primer/primitives/dist/scss/colors/_light_tritanopia.scss +443 -0
  177. data/_sass/@primer/primitives/dist/scss/spacing/_normal.scss +11 -0
  178. data/_sass/@primer/primitives/dist/scss/typography/_normal.scss +15 -0
  179. data/_sass/@primer/primitives/tokens-v2-private/scss/tokens/base/size/size.scss +21 -0
  180. data/_sass/@primer/primitives/tokens-v2-private/scss/tokens/base/typography/typography.scss +8 -0
  181. data/_sass/@primer/primitives/tokens-v2-private/scss/tokens/functional/size/border.scss +14 -0
  182. data/_sass/@primer/primitives/tokens-v2-private/scss/tokens/functional/size/breakpoints.scss +10 -0
  183. data/_sass/@primer/primitives/tokens-v2-private/scss/tokens/functional/size/size-coarse.scss +7 -0
  184. data/_sass/@primer/primitives/tokens-v2-private/scss/tokens/functional/size/size-fine.scss +7 -0
  185. data/_sass/@primer/primitives/tokens-v2-private/scss/tokens/functional/size/size.scss +51 -0
  186. data/_sass/@primer/primitives/tokens-v2-private/scss/tokens/functional/size/viewport.scss +10 -0
  187. data/_sass/@primer/primitives/tokens-v2-private/scss/tokens/functional/typography/typography.scss +44 -0
  188. data/_sass/@primer/view-components/LICENSE.txt +21 -0
  189. data/_sass/@primer/view-components/README.md +17 -0
  190. data/_sass/@primer/view-components/app/assets/javascripts/primer_view_components.js +2 -0
  191. data/_sass/@primer/view-components/app/assets/javascripts/primer_view_components.js.map +1 -0
  192. data/_sass/@primer/view-components/app/assets/styles/primer_view_components.css +3 -0
  193. data/_sass/@primer/view-components/app/assets/styles/primer_view_components.css.map +1 -0
  194. data/_sass/@primer/view-components/app/components/primer/alpha/action_list.css +1 -0
  195. data/_sass/@primer/view-components/app/components/primer/alpha/action_list.css.json +1 -0
  196. data/_sass/@primer/view-components/app/components/primer/alpha/auto_complete.css +1 -0
  197. data/_sass/@primer/view-components/app/components/primer/alpha/auto_complete.css.json +1 -0
  198. data/_sass/@primer/view-components/app/components/primer/alpha/banner.css +1 -0
  199. data/_sass/@primer/view-components/app/components/primer/alpha/banner.css.json +1 -0
  200. data/_sass/@primer/view-components/app/components/primer/alpha/button_marketing.css +1 -0
  201. data/_sass/@primer/view-components/app/components/primer/alpha/button_marketing.css.json +1 -0
  202. data/_sass/@primer/view-components/app/components/primer/alpha/dialog.css +1 -0
  203. data/_sass/@primer/view-components/app/components/primer/alpha/dialog.css.json +1 -0
  204. data/_sass/@primer/view-components/app/components/primer/alpha/dropdown/menu.d.ts +1 -0
  205. data/_sass/@primer/view-components/app/components/primer/alpha/dropdown/menu.js +1 -0
  206. data/_sass/@primer/view-components/app/components/primer/alpha/dropdown.css +1 -0
  207. data/_sass/@primer/view-components/app/components/primer/alpha/dropdown.css.json +1 -0
  208. data/_sass/@primer/view-components/app/components/primer/alpha/dropdown.d.ts +1 -0
  209. data/_sass/@primer/view-components/app/components/primer/alpha/dropdown.js +1 -0
  210. data/_sass/@primer/view-components/app/components/primer/alpha/image_crop.d.ts +1 -0
  211. data/_sass/@primer/view-components/app/components/primer/alpha/image_crop.js +1 -0
  212. data/_sass/@primer/view-components/app/components/primer/alpha/layout.css +1 -0
  213. data/_sass/@primer/view-components/app/components/primer/alpha/layout.css.json +1 -0
  214. data/_sass/@primer/view-components/app/components/primer/alpha/menu.css +1 -0
  215. data/_sass/@primer/view-components/app/components/primer/alpha/menu.css.json +1 -0
  216. data/_sass/@primer/view-components/app/components/primer/alpha/modal_dialog.d.ts +18 -0
  217. data/_sass/@primer/view-components/app/components/primer/alpha/modal_dialog.js +150 -0
  218. data/_sass/@primer/view-components/app/components/primer/alpha/nav_list.d.ts +25 -0
  219. data/_sass/@primer/view-components/app/components/primer/alpha/nav_list.js +130 -0
  220. data/_sass/@primer/view-components/app/components/primer/alpha/segmented_control.css +1 -0
  221. data/_sass/@primer/view-components/app/components/primer/alpha/segmented_control.css.json +1 -0
  222. data/_sass/@primer/view-components/app/components/primer/alpha/segmented_control.d.ts +12 -0
  223. data/_sass/@primer/view-components/app/components/primer/alpha/segmented_control.js +47 -0
  224. data/_sass/@primer/view-components/app/components/primer/alpha/tab_nav.css +1 -0
  225. data/_sass/@primer/view-components/app/components/primer/alpha/tab_nav.css.json +1 -0
  226. data/_sass/@primer/view-components/app/components/primer/alpha/text_field.css +3 -0
  227. data/_sass/@primer/view-components/app/components/primer/alpha/text_field.css.json +1 -0
  228. data/_sass/@primer/view-components/app/components/primer/alpha/toggle_switch.css +1 -0
  229. data/_sass/@primer/view-components/app/components/primer/alpha/toggle_switch.css.json +1 -0
  230. data/_sass/@primer/view-components/app/components/primer/alpha/toggle_switch.d.ts +29 -0
  231. data/_sass/@primer/view-components/app/components/primer/alpha/toggle_switch.js +144 -0
  232. data/_sass/@primer/view-components/app/components/primer/alpha/tool_tip.d.ts +25 -0
  233. data/_sass/@primer/view-components/app/components/primer/alpha/tool_tip.js +389 -0
  234. data/_sass/@primer/view-components/app/components/primer/alpha/underline_nav.css +1 -0
  235. data/_sass/@primer/view-components/app/components/primer/alpha/underline_nav.css.json +1 -0
  236. data/_sass/@primer/view-components/app/components/primer/alpha/x_banner.d.ts +11 -0
  237. data/_sass/@primer/view-components/app/components/primer/alpha/x_banner.js +35 -0
  238. data/_sass/@primer/view-components/app/components/primer/beta/auto_complete/auto_complete.d.ts +1 -0
  239. data/_sass/@primer/view-components/app/components/primer/beta/auto_complete/auto_complete.js +1 -0
  240. data/_sass/@primer/view-components/app/components/primer/beta/avatar.css +1 -0
  241. data/_sass/@primer/view-components/app/components/primer/beta/avatar.css.json +1 -0
  242. data/_sass/@primer/view-components/app/components/primer/beta/avatar_stack.css +1 -0
  243. data/_sass/@primer/view-components/app/components/primer/beta/avatar_stack.css.json +1 -0
  244. data/_sass/@primer/view-components/app/components/primer/beta/blankslate.css +1 -0
  245. data/_sass/@primer/view-components/app/components/primer/beta/blankslate.css.json +1 -0
  246. data/_sass/@primer/view-components/app/components/primer/beta/border_box.css +1 -0
  247. data/_sass/@primer/view-components/app/components/primer/beta/border_box.css.json +1 -0
  248. data/_sass/@primer/view-components/app/components/primer/beta/breadcrumbs.css +1 -0
  249. data/_sass/@primer/view-components/app/components/primer/beta/breadcrumbs.css.json +1 -0
  250. data/_sass/@primer/view-components/app/components/primer/beta/button.css +1 -0
  251. data/_sass/@primer/view-components/app/components/primer/beta/button.css.json +1 -0
  252. data/_sass/@primer/view-components/app/components/primer/beta/clipboard_copy.d.ts +1 -0
  253. data/_sass/@primer/view-components/app/components/primer/beta/clipboard_copy.js +43 -0
  254. data/_sass/@primer/view-components/app/components/primer/beta/counter.css +1 -0
  255. data/_sass/@primer/view-components/app/components/primer/beta/counter.css.json +1 -0
  256. data/_sass/@primer/view-components/app/components/primer/beta/flash.css +1 -0
  257. data/_sass/@primer/view-components/app/components/primer/beta/flash.css.json +1 -0
  258. data/_sass/@primer/view-components/app/components/primer/beta/label.css +1 -0
  259. data/_sass/@primer/view-components/app/components/primer/beta/label.css.json +1 -0
  260. data/_sass/@primer/view-components/app/components/primer/beta/link.css +1 -0
  261. data/_sass/@primer/view-components/app/components/primer/beta/link.css.json +1 -0
  262. data/_sass/@primer/view-components/app/components/primer/beta/popover.css +1 -0
  263. data/_sass/@primer/view-components/app/components/primer/beta/popover.css.json +1 -0
  264. data/_sass/@primer/view-components/app/components/primer/beta/progress_bar.css +1 -0
  265. data/_sass/@primer/view-components/app/components/primer/beta/progress_bar.css.json +1 -0
  266. data/_sass/@primer/view-components/app/components/primer/beta/truncate.css +1 -0
  267. data/_sass/@primer/view-components/app/components/primer/beta/truncate.css.json +1 -0
  268. data/_sass/@primer/view-components/app/components/primer/local_time.d.ts +1 -0
  269. data/_sass/@primer/view-components/app/components/primer/local_time.js +1 -0
  270. data/_sass/@primer/view-components/app/components/primer/primer.d.ts +15 -0
  271. data/_sass/@primer/view-components/app/components/primer/primer.js +15 -0
  272. data/_sass/@primer/view-components/app/components/primer/state_component.css +1 -0
  273. data/_sass/@primer/view-components/app/components/primer/state_component.css.json +1 -0
  274. data/_sass/@primer/view-components/app/components/primer/subhead_component.css +1 -0
  275. data/_sass/@primer/view-components/app/components/primer/subhead_component.css.json +1 -0
  276. data/_sass/@primer/view-components/app/components/primer/tab_container_component.d.ts +1 -0
  277. data/_sass/@primer/view-components/app/components/primer/tab_container_component.js +1 -0
  278. data/_sass/@primer/view-components/app/components/primer/time_ago_component.d.ts +1 -0
  279. data/_sass/@primer/view-components/app/components/primer/time_ago_component.js +1 -0
  280. data/_sass/@primer/view-components/app/components/primer/timeline_item_component.css +1 -0
  281. data/_sass/@primer/view-components/app/components/primer/timeline_item_component.css.json +1 -0
  282. data/_sass/@primer/view-components/app/components/primer/truncate.css +1 -0
  283. data/_sass/@primer/view-components/app/components/primer/truncate.css.json +1 -0
  284. data/_sass/@primer/view-components/lib/primer/forms/primer_multi_input.d.ts +10 -0
  285. data/_sass/@primer/view-components/lib/primer/forms/primer_multi_input.js +45 -0
  286. data/_sass/@primer/view-components/lib/primer/forms/primer_text_field.d.ts +1 -0
  287. data/_sass/@primer/view-components/lib/primer/forms/primer_text_field.js +62 -0
  288. data/_sass/@primer/view-components/package.json +95 -0
  289. data/_sass/@primer/view-components/static/arguments.json +2586 -0
  290. data/_sass/@primer/view-components/static/audited_at.json +100 -0
  291. data/_sass/@primer/view-components/static/constants.json +1157 -0
  292. data/_sass/@primer/view-components/static/statuses.json +100 -0
  293. data/_sass/jekyll-theme-primer.scss +8 -0
  294. data/_sass/primer.scss +4 -0
  295. data/_sass/rouge.scss +213 -0
  296. data/assets/css/style.scss +4 -0
  297. metadata +444 -0
@@ -0,0 +1,1157 @@
1
+ {
2
+ "Primer::Alpha::ActionList": {
3
+ "DEFAULT_ROLE": "list",
4
+ "DEFAULT_SCHEME": "full",
5
+ "Divider": "Primer::Alpha::ActionList::Divider",
6
+ "Heading": "Primer::Alpha::ActionList::Heading",
7
+ "Item": "Primer::Alpha::ActionList::Item",
8
+ "SCHEME_MAPPINGS": {
9
+ "full": null,
10
+ "inset": "ActionListWrap--inset"
11
+ },
12
+ "SCHEME_OPTIONS": [
13
+ "full",
14
+ "inset"
15
+ ]
16
+ },
17
+ "Primer::Alpha::ActionList::Divider": {
18
+ "DEFAULT_SCHEME": "subtle",
19
+ "SCHEME_MAPPINGS": {
20
+ "subtle": null,
21
+ "filled": "ActionList-sectionDivider--filled"
22
+ },
23
+ "SCHEME_OPTIONS": [
24
+ "subtle",
25
+ "filled"
26
+ ]
27
+ },
28
+ "Primer::Alpha::ActionList::Heading": {
29
+ "DEFAULT_SCHEME": "subtle",
30
+ "SCHEME_MAPPINGS": {
31
+ "subtle": null,
32
+ "filled": "ActionList-sectionDivider--filled"
33
+ },
34
+ "SCHEME_OPTIONS": [
35
+ "subtle",
36
+ "filled"
37
+ ]
38
+ },
39
+ "Primer::Alpha::ActionList::Item": {
40
+ "DEFAULT_DESCRIPTION_SCHEME": "block",
41
+ "DEFAULT_SCHEME": "default",
42
+ "DEFAULT_SIZE": "medium",
43
+ "DESCRIPTION_SCHEME_MAPPINGS": {
44
+ "inline": "ActionListItem-descriptionWrap--inline",
45
+ "block": "ActionListItem-descriptionWrap"
46
+ },
47
+ "DESCRIPTION_SCHEME_OPTIONS": [
48
+ "inline",
49
+ "block"
50
+ ],
51
+ "SCHEME_MAPPINGS": {
52
+ "default": null,
53
+ "danger": "ActionListItem--danger"
54
+ },
55
+ "SCHEME_OPTIONS": [
56
+ "default",
57
+ "danger"
58
+ ],
59
+ "SIZE_MAPPINGS": {
60
+ "medium": null,
61
+ "large": "ActionListContent--sizeLarge",
62
+ "xlarge": "ActionListContent--sizeXLarge"
63
+ },
64
+ "SIZE_OPTIONS": [
65
+ "medium",
66
+ "large",
67
+ "xlarge"
68
+ ]
69
+ },
70
+ "Primer::Alpha::AutoComplete": {
71
+ "Item": "Primer::Alpha::AutoComplete::Item"
72
+ },
73
+ "Primer::Alpha::AutoComplete::Item": {
74
+ },
75
+ "Primer::Alpha::Banner": {
76
+ "DEFAULT_ICONS": {
77
+ "default": "bell",
78
+ "warning": "alert",
79
+ "danger": "stop",
80
+ "success": "check-circle"
81
+ },
82
+ "DEFAULT_SCHEME": "default",
83
+ "LEGACY_SCHEME_MAPPINGS": {
84
+ "default": "",
85
+ "warning": "flash-warn",
86
+ "danger": "flash-error",
87
+ "success": "flash-success"
88
+ },
89
+ "SCHEME_MAPPINGS": {
90
+ "default": "",
91
+ "warning": "Banner--warning",
92
+ "danger": "Banner--error",
93
+ "success": "Banner--success"
94
+ }
95
+ },
96
+ "Primer::Alpha::ButtonMarketing": {
97
+ "DEFAULT_SCHEME": "default",
98
+ "DEFAULT_TAG": "button",
99
+ "DEFAULT_TYPE": "button",
100
+ "DEFAULT_VARIANT": "default",
101
+ "SCHEME_MAPPINGS": {
102
+ "default": "",
103
+ "primary": "btn-signup-mktg",
104
+ "outline": "btn-muted-mktg",
105
+ "transparent": "btn-subtle-mktg"
106
+ },
107
+ "SCHEME_OPTIONS": [
108
+ "default",
109
+ "primary",
110
+ "outline",
111
+ "transparent"
112
+ ],
113
+ "TAG_OPTIONS": [
114
+ "button",
115
+ "a"
116
+ ],
117
+ "TYPE_OPTIONS": [
118
+ "button",
119
+ "submit"
120
+ ],
121
+ "VARIANT_MAPPINGS": {
122
+ "default": "",
123
+ "large": "btn-large-mktg"
124
+ },
125
+ "VARIANT_OPTIONS": [
126
+ "default",
127
+ "large"
128
+ ]
129
+ },
130
+ "Primer::Alpha::Dialog": {
131
+ "Body": "Primer::Alpha::Dialog::Body",
132
+ "DEFAULT_POSITION": "center",
133
+ "DEFAULT_POSITION_NARROW": "inherit",
134
+ "DEFAULT_SIZE": "medium",
135
+ "Footer": "Primer::Alpha::Dialog::Footer",
136
+ "Header": "Primer::Alpha::Dialog::Header",
137
+ "POSITION_MAPPINGS": {
138
+ "center": "Overlay-backdrop--center",
139
+ "left": "Overlay-backdrop--side Overlay-backdrop--placement-left",
140
+ "right": "Overlay-backdrop--side Overlay-backdrop--placement-right"
141
+ },
142
+ "POSITION_NARROW_MAPPINGS": {
143
+ "inherit": "",
144
+ "bottom": "Overlay-backdrop--side-whenNarrow Overlay-backdrop--placement-bottom-whenNarrow",
145
+ "fullscreen": "Overlay-backdrop--full-whenNarrow",
146
+ "left": "Overlay-backdrop--side-whenNarrow Overlay-backdrop--placement-left-whenNarrow",
147
+ "right": "Overlay-backdrop--side-whenNarrow Overlay-backdrop--placement-right-whenNarrow"
148
+ },
149
+ "POSITION_NARROW_OPTIONS": [
150
+ "inherit",
151
+ "bottom",
152
+ "fullscreen",
153
+ "left",
154
+ "right"
155
+ ],
156
+ "POSITION_OPTIONS": [
157
+ "center",
158
+ "left",
159
+ "right"
160
+ ],
161
+ "SIZE_MAPPINGS": {
162
+ "small": "Overlay--size-small-portrait",
163
+ "medium_portrait": "Overlay--size-medium-portrait",
164
+ "medium": "Overlay--size-medium",
165
+ "large": "Overlay--size-large",
166
+ "xlarge": "Overlay--size-xlarge"
167
+ },
168
+ "SIZE_OPTIONS": [
169
+ "small",
170
+ "medium_portrait",
171
+ "medium",
172
+ "large",
173
+ "xlarge"
174
+ ]
175
+ },
176
+ "Primer::Alpha::Dialog::Body": {
177
+ },
178
+ "Primer::Alpha::Dialog::Footer": {
179
+ },
180
+ "Primer::Alpha::Dialog::Header": {
181
+ },
182
+ "Primer::Alpha::Dropdown": {
183
+ "Menu": "Primer::Alpha::Dropdown::Menu"
184
+ },
185
+ "Primer::Alpha::Dropdown::Menu": {
186
+ "AS_DEFAULT": "default",
187
+ "AS_OPTIONS": [
188
+ "default",
189
+ "list"
190
+ ],
191
+ "DIRECTION_DEFAULT": "se",
192
+ "DIRECTION_OPTIONS": [
193
+ "se",
194
+ "sw",
195
+ "w",
196
+ "e",
197
+ "ne",
198
+ "s"
199
+ ],
200
+ "Item": "Primer::Alpha::Dropdown::Menu::Item",
201
+ "SCHEME_DEFAULT": "default",
202
+ "SCHEME_MAPPINGS": {
203
+ "default": "",
204
+ "dark": "dropdown-menu-dark"
205
+ }
206
+ },
207
+ "Primer::Alpha::Dropdown::Menu::Item": {
208
+ "BUTTON_TAGS": [
209
+ "button",
210
+ "summary"
211
+ ],
212
+ "TAG_DEFAULT": "a",
213
+ "TAG_OPTIONS": [
214
+ "a",
215
+ "button",
216
+ "summary"
217
+ ]
218
+ },
219
+ "Primer::Alpha::HiddenTextExpander": {
220
+ },
221
+ "Primer::Alpha::Image": {
222
+ },
223
+ "Primer::Alpha::ImageCrop": {
224
+ },
225
+ "Primer::Alpha::Layout": {
226
+ "FIRST_IN_SOURCE_DEFAULT": "sidebar",
227
+ "FIRST_IN_SOURCE_OPTIONS": [
228
+ "sidebar",
229
+ "main"
230
+ ],
231
+ "GUTTER_DEFAULT": "default",
232
+ "GUTTER_MAPPINGS": {
233
+ "none": "Layout--gutter-none",
234
+ "condensed": "Layout--gutter-condensed",
235
+ "spacious": "Layout--gutter-spacious",
236
+ "default": ""
237
+ },
238
+ "GUTTER_OPTIONS": [
239
+ "none",
240
+ "condensed",
241
+ "spacious",
242
+ "default"
243
+ ],
244
+ "Main": "Primer::Alpha::Layout::Main",
245
+ "SIDEBAR_COL_PLACEMENT_DEFAULT": "start",
246
+ "SIDEBAR_COL_PLACEMENT_OPTIONS": [
247
+ "start",
248
+ "end"
249
+ ],
250
+ "SIDEBAR_ROW_PLACEMENT_DEFAULT": "start",
251
+ "SIDEBAR_ROW_PLACEMENT_OPTIONS": [
252
+ "start",
253
+ "end",
254
+ "none"
255
+ ],
256
+ "SIDEBAR_WIDTH_DEFAULT": "default",
257
+ "SIDEBAR_WIDTH_MAPPINGS": {
258
+ "default": "",
259
+ "narrow": "Layout--sidebar-narrow",
260
+ "wide": "Layout--sidebar-wide"
261
+ },
262
+ "SIDEBAR_WIDTH_OPTIONS": [
263
+ "default",
264
+ "narrow",
265
+ "wide"
266
+ ],
267
+ "STACKING_BREAKPOINT_DEFAULT": "md",
268
+ "STACKING_BREAKPOINT_MAPPINGS": {
269
+ "sm": "",
270
+ "md": "Layout--flowRow-until-md",
271
+ "lg": "Layout--flowRow-until-lg"
272
+ },
273
+ "STACKING_BREAKPOINT_OPTIONS": [
274
+ "sm",
275
+ "md",
276
+ "lg"
277
+ ],
278
+ "Sidebar": "Primer::Alpha::Layout::Sidebar"
279
+ },
280
+ "Primer::Alpha::Layout::Main": {
281
+ "TAG_DEFAULT": "div",
282
+ "TAG_OPTIONS": [
283
+ "div",
284
+ "main"
285
+ ],
286
+ "WIDTH_DEFAULT": "full",
287
+ "WIDTH_OPTIONS": [
288
+ "full",
289
+ "md",
290
+ "lg",
291
+ "xl"
292
+ ]
293
+ },
294
+ "Primer::Alpha::Layout::Sidebar": {
295
+ "TAG_DEFAULT": "div",
296
+ "TAG_OPTIONS": [
297
+ "div",
298
+ "aside",
299
+ "nav",
300
+ "section"
301
+ ]
302
+ },
303
+ "Primer::Alpha::Menu": {
304
+ "HEADING_TAG_FALLBACK": "h2",
305
+ "HEADING_TAG_OPTIONS": [
306
+ "h1",
307
+ "h2",
308
+ "h3",
309
+ "h4",
310
+ "h5",
311
+ "h6"
312
+ ]
313
+ },
314
+ "Primer::Alpha::NavList": {
315
+ "Item": "Primer::Alpha::NavList::Item",
316
+ "Section": "Primer::Alpha::NavList::Section"
317
+ },
318
+ "Primer::Alpha::NavList::Item": {
319
+ },
320
+ "Primer::Alpha::NavList::Section": {
321
+ },
322
+ "Primer::Alpha::OcticonSymbols": {
323
+ },
324
+ "Primer::Alpha::SegmentedControl": {
325
+ "FULL_WIDTH_DEFAULT": false,
326
+ "HIDE_LABELS_DEFAULT": false,
327
+ "Item": "Primer::Alpha::SegmentedControl::Item"
328
+ },
329
+ "Primer::Alpha::SegmentedControl::Item": {
330
+ },
331
+ "Primer::Alpha::TabNav": {
332
+ "BODY_TAG_DEFAULT": "ul",
333
+ "TAG_DEFAULT": "nav",
334
+ "TAG_OPTIONS": [
335
+ "nav",
336
+ "div"
337
+ ]
338
+ },
339
+ "Primer::Alpha::TabPanels": {
340
+ "BODY_TAG_DEFAULT": "ul",
341
+ "TAG_DEFAULT": "nav",
342
+ "TAG_OPTIONS": [
343
+ "nav",
344
+ "div"
345
+ ]
346
+ },
347
+ "Primer::Alpha::TextField": {
348
+ },
349
+ "Primer::Alpha::ToggleSwitch": {
350
+ "SIZE_DEFAULT": "medium",
351
+ "SIZE_MAPPINGS": {
352
+ "medium": null,
353
+ "small": "ToggleSwitch--small"
354
+ },
355
+ "SIZE_OPTIONS": [
356
+ "medium",
357
+ "small"
358
+ ],
359
+ "STATUS_LABEL_POSITION_DEFAULT": "start",
360
+ "STATUS_LABEL_POSITION_MAPPINGS": {
361
+ "start": null,
362
+ "end": "ToggleSwitch--statusAtEnd"
363
+ },
364
+ "STATUS_LABEL_POSITION_OPTIONS": [
365
+ "start",
366
+ "end"
367
+ ]
368
+ },
369
+ "Primer::Alpha::Tooltip": {
370
+ "DIRECTION_DEFAULT": "s",
371
+ "DIRECTION_OPTIONS": [
372
+ "s",
373
+ "n",
374
+ "e",
375
+ "w",
376
+ "ne",
377
+ "nw",
378
+ "se",
379
+ "sw"
380
+ ],
381
+ "TYPE_FALLBACK": "description",
382
+ "TYPE_OPTIONS": [
383
+ "label",
384
+ "description"
385
+ ]
386
+ },
387
+ "Primer::Alpha::UnderlineNav": {
388
+ "BODY_TAG_DEFAULT": "ul",
389
+ "TAG_DEFAULT": "nav",
390
+ "TAG_OPTIONS": [
391
+ "nav",
392
+ "div"
393
+ ]
394
+ },
395
+ "Primer::Alpha::UnderlinePanels": {
396
+ },
397
+ "Primer::BaseComponent": {
398
+ "SELF_CLOSING_TAGS": [
399
+ "area",
400
+ "base",
401
+ "br",
402
+ "col",
403
+ "embed",
404
+ "hr",
405
+ "img",
406
+ "input",
407
+ "link",
408
+ "meta",
409
+ "param",
410
+ "source",
411
+ "track",
412
+ "wbr"
413
+ ]
414
+ },
415
+ "Primer::Beta::AutoComplete": {
416
+ "DEFAULT_SIZE": "medium",
417
+ "Item": "Primer::Beta::AutoComplete::Item",
418
+ "SIZE_MAPPINGS": {
419
+ "small": "FormControl-small",
420
+ "medium": "FormControl-medium",
421
+ "large": "FormControl-large"
422
+ },
423
+ "SIZE_OPTIONS": [
424
+ "small",
425
+ "medium",
426
+ "large"
427
+ ]
428
+ },
429
+ "Primer::Beta::AutoComplete::Item": {
430
+ "ALLOWED_DESCRIPTION_VARIANTS": [
431
+ "inline",
432
+ "block"
433
+ ]
434
+ },
435
+ "Primer::Beta::Avatar": {
436
+ "DEFAULT_SHAPE": "circle",
437
+ "DEFAULT_SIZE": 20,
438
+ "SHAPE_OPTIONS": [
439
+ "circle",
440
+ "square"
441
+ ],
442
+ "SIZE_OPTIONS": [
443
+ 16,
444
+ 20,
445
+ 24,
446
+ 32,
447
+ 40,
448
+ 48,
449
+ 80
450
+ ],
451
+ "SMALL_THRESHOLD": 24
452
+ },
453
+ "Primer::Beta::AvatarStack": {
454
+ "ALIGN_DEFAULT": "left",
455
+ "ALIGN_OPTIONS": [
456
+ "left",
457
+ "right"
458
+ ],
459
+ "BODY_TAG_OPTIONS": [
460
+ "div",
461
+ "span"
462
+ ],
463
+ "DEFAULT_BODY_TAG": "div",
464
+ "DEFAULT_TAG": "div",
465
+ "TAG_OPTIONS": [
466
+ "div",
467
+ "span"
468
+ ]
469
+ },
470
+ "Primer::Beta::BaseButton": {
471
+ "DEFAULT_TAG": "button",
472
+ "DEFAULT_TYPE": "button",
473
+ "TAG_OPTIONS": [
474
+ "button",
475
+ "a",
476
+ "summary"
477
+ ],
478
+ "TYPE_OPTIONS": [
479
+ "button",
480
+ "reset",
481
+ "submit"
482
+ ]
483
+ },
484
+ "Primer::Beta::Blankslate": {
485
+ "VISUAL_OPTIONS": [
486
+ "icon",
487
+ "spinner",
488
+ "image"
489
+ ]
490
+ },
491
+ "Primer::Beta::BorderBox": {
492
+ "DEFAULT_PADDING": "default",
493
+ "DEFAULT_ROW_SCHEME": "default",
494
+ "Header": "Primer::Beta::BorderBox::Header",
495
+ "PADDING_MAPPINGS": {
496
+ "default": "",
497
+ "condensed": "Box--condensed",
498
+ "spacious": "Box--spacious"
499
+ },
500
+ "PADDING_SUGGESTION": "Perhaps you could consider using :padding options of default, condensed, and spacious?",
501
+ "ROW_SCHEME_MAPPINGS": {
502
+ "default": "",
503
+ "neutral": "Box-row--gray",
504
+ "info": "Box-row--blue",
505
+ "warning": "Box-row--yellow"
506
+ }
507
+ },
508
+ "Primer::Beta::BorderBox::Header": {
509
+ "TITLE_TAG_FALLBACK": "h2",
510
+ "TITLE_TAG_OPTIONS": [
511
+ "h1",
512
+ "h2",
513
+ "h3",
514
+ "h4",
515
+ "h5",
516
+ "h6"
517
+ ]
518
+ },
519
+ "Primer::Beta::Breadcrumbs": {
520
+ "ARGS_DENYLIST": {
521
+ "[:p, :pt, :pb, :pr, :pl, :px, :py]": "Padding system arguments are not allowed on Breadcrumbs. Consider using margins instead.",
522
+ "[:font_size]": "Breadcrumbs do not support the font_size system argument."
523
+ },
524
+ "ARIA_LABEL": {
525
+ "label": "Breadcrumb"
526
+ },
527
+ "FONT_SIZE_MESSAGE": "Breadcrumbs do not support the font_size system argument.",
528
+ "Item": "Primer::Beta::Breadcrumbs::Item",
529
+ "PADDING_MESSAGE": "Padding system arguments are not allowed on Breadcrumbs. Consider using margins instead."
530
+ },
531
+ "Primer::Beta::Breadcrumbs::Item": {
532
+ },
533
+ "Primer::Beta::Button": {
534
+ "ALIGN_CONTENT_MAPPINGS": {
535
+ "start": "Button-content--alignStart",
536
+ "center": ""
537
+ },
538
+ "ALIGN_CONTENT_OPTIONS": [
539
+ "start",
540
+ "center"
541
+ ],
542
+ "DEFAULT_ALIGN_CONTENT": "center",
543
+ "DEFAULT_SCHEME": "default",
544
+ "DEFAULT_SIZE": "medium",
545
+ "SCHEME_MAPPINGS": {
546
+ "default": "Button--secondary",
547
+ "primary": "Button--primary",
548
+ "secondary": "Button--secondary",
549
+ "danger": "Button--danger",
550
+ "invisible": "Button--invisible",
551
+ "link": "Button--link"
552
+ },
553
+ "SCHEME_OPTIONS": [
554
+ "default",
555
+ "primary",
556
+ "secondary",
557
+ "danger",
558
+ "invisible",
559
+ "link"
560
+ ],
561
+ "SIZE_MAPPINGS": {
562
+ "small": "Button--small",
563
+ "medium": "Button--medium",
564
+ "large": "Button--large"
565
+ },
566
+ "SIZE_OPTIONS": [
567
+ "small",
568
+ "medium",
569
+ "large"
570
+ ]
571
+ },
572
+ "Primer::Beta::ButtonGroup": {
573
+ },
574
+ "Primer::Beta::ClipboardCopy": {
575
+ },
576
+ "Primer::Beta::CloseButton": {
577
+ "DEFAULT_TYPE": "button",
578
+ "TYPE_OPTIONS": [
579
+ "button",
580
+ "submit"
581
+ ]
582
+ },
583
+ "Primer::Beta::Counter": {
584
+ "DEFAULT_SCHEME": "default",
585
+ "DEPRECATED_SCHEME_OPTIONS": [
586
+ "gray",
587
+ "light_gray"
588
+ ],
589
+ "SCHEME_MAPPINGS": {
590
+ "default": "",
591
+ "primary": "Counter--primary",
592
+ "secondary": "Counter--secondary",
593
+ "gray": "Counter--primary",
594
+ "light_gray": "Counter--secondary"
595
+ },
596
+ "SCHEME_OPTIONS": [
597
+ "default",
598
+ "primary",
599
+ "secondary"
600
+ ]
601
+ },
602
+ "Primer::Beta::Details": {
603
+ "BODY_TAG_DEFAULT": "div",
604
+ "BODY_TAG_OPTIONS": [
605
+ "ul",
606
+ "details-menu",
607
+ "details-dialog",
608
+ "div"
609
+ ],
610
+ "NO_OVERLAY": "none",
611
+ "OVERLAY_MAPPINGS": {
612
+ "none": "",
613
+ "default": "details-overlay",
614
+ "dark": "details-overlay details-overlay-dark"
615
+ }
616
+ },
617
+ "Primer::Beta::Flash": {
618
+ "DEFAULT_SCHEME": "default",
619
+ "SCHEME_MAPPINGS": {
620
+ "default": "",
621
+ "warning": "flash-warn",
622
+ "danger": "flash-error",
623
+ "success": "flash-success"
624
+ }
625
+ },
626
+ "Primer::Beta::Heading": {
627
+ "TAG_FALLBACK": "h2",
628
+ "TAG_OPTIONS": [
629
+ "h1",
630
+ "h2",
631
+ "h3",
632
+ "h4",
633
+ "h5",
634
+ "h6"
635
+ ]
636
+ },
637
+ "Primer::Beta::IconButton": {
638
+ "DEFAULT_SCHEME": "default",
639
+ "SCHEME_MAPPINGS": {
640
+ "default": "Button--secondary",
641
+ "danger": "Button--danger",
642
+ "invisible": "Button--invisible"
643
+ },
644
+ "SCHEME_OPTIONS": [
645
+ "default",
646
+ "danger",
647
+ "invisible"
648
+ ]
649
+ },
650
+ "Primer::Beta::Label": {
651
+ "DEFAULT_SCHEME": "default",
652
+ "DEFAULT_SIZE": "medium",
653
+ "DEFAULT_TAG": "span",
654
+ "DEFAULT_VARIANT": "none",
655
+ "DEPRECATED_SCHEME_OPTIONS": [
656
+ "info",
657
+ "warning",
658
+ "orange",
659
+ "purple"
660
+ ],
661
+ "DEPRECATED_VARIANT_OPTIONS": [
662
+ "large",
663
+ "inline"
664
+ ],
665
+ "INLINE_CLASS": "Label--inline",
666
+ "SCHEME_MAPPINGS": {
667
+ "default": "",
668
+ "primary": "Label--primary",
669
+ "secondary": "Label--secondary",
670
+ "accent": "Label--accent",
671
+ "success": "Label--success",
672
+ "attention": "Label--attention",
673
+ "danger": "Label--danger",
674
+ "severe": "Label--severe",
675
+ "done": "Label--done",
676
+ "sponsors": "Label--sponsors",
677
+ "info": "Label--info",
678
+ "warning": "Label--warning",
679
+ "orange": "Label--orange",
680
+ "purple": "Label--purple"
681
+ },
682
+ "SCHEME_OPTIONS": [
683
+ "default",
684
+ "primary",
685
+ "secondary",
686
+ "accent",
687
+ "success",
688
+ "attention",
689
+ "danger",
690
+ "severe",
691
+ "done",
692
+ "sponsors"
693
+ ],
694
+ "SIZE_MAPPINGS": {
695
+ "medium": null,
696
+ "large": "Label--large"
697
+ },
698
+ "SIZE_OPTIONS": [
699
+ "medium",
700
+ "large"
701
+ ],
702
+ "TAG_OPTIONS": [
703
+ "span",
704
+ "summary",
705
+ "a",
706
+ "div"
707
+ ],
708
+ "VARIANT_OPTIONS": [
709
+ "none"
710
+ ]
711
+ },
712
+ "Primer::Beta::Link": {
713
+ "DEFAULT_SCHEME": "default",
714
+ "DEFAULT_TAG": "a",
715
+ "SCHEME_MAPPINGS": {
716
+ "default": "",
717
+ "primary": "Link--primary",
718
+ "secondary": "Link--secondary"
719
+ },
720
+ "TAG_OPTIONS": [
721
+ "a",
722
+ "span"
723
+ ]
724
+ },
725
+ "Primer::Beta::Markdown": {
726
+ "DEFAULT_TAG": "div",
727
+ "TAG_OPTIONS": [
728
+ "div",
729
+ "article",
730
+ "td"
731
+ ]
732
+ },
733
+ "Primer::Beta::Octicon": {
734
+ "SIZE_DEFAULT": "small",
735
+ "SIZE_MAPPINGS": {
736
+ "xsmall": 12,
737
+ "small": 16,
738
+ "medium": 24
739
+ },
740
+ "SIZE_MEDIUM": "medium",
741
+ "SIZE_OPTIONS": [
742
+ "xsmall",
743
+ "small",
744
+ "medium"
745
+ ],
746
+ "SIZE_XSMALL": "xsmall"
747
+ },
748
+ "Primer::Beta::Popover": {
749
+ "CARET_DEFAULT": "top",
750
+ "CARET_MAPPINGS": {
751
+ "top": "",
752
+ "bottom": "Popover-message--bottom",
753
+ "bottom_right": "Popover-message--bottom-right",
754
+ "bottom_left": "Popover-message--bottom-left",
755
+ "left": "Popover-message--left",
756
+ "left_bottom": "Popover-message--left-bottom",
757
+ "left_top": "Popover-message--left-top",
758
+ "right": "Popover-message--right",
759
+ "right_bottom": "Popover-message--right-bottom",
760
+ "right_top": "Popover-message--right-top",
761
+ "top_left": "Popover-message--top-left",
762
+ "top_right": "Popover-message--top-right"
763
+ },
764
+ "DEFAULT_HEADING_TAG": "h4"
765
+ },
766
+ "Primer::Beta::ProgressBar": {
767
+ "SIZE_DEFAULT": "default",
768
+ "SIZE_MAPPINGS": {
769
+ "default": "",
770
+ "small": "Progress--small",
771
+ "large": "Progress--large"
772
+ },
773
+ "SIZE_OPTIONS": [
774
+ "default",
775
+ "small",
776
+ "large"
777
+ ]
778
+ },
779
+ "Primer::Beta::RelativeTime": {
780
+ "DAY_DEFAULT": null,
781
+ "DAY_MAPPINGS": {
782
+ "": null,
783
+ "numeric": "numeric",
784
+ "two_digit": "2-digit"
785
+ },
786
+ "DAY_OPTIONS": [
787
+ null,
788
+ "numeric",
789
+ "two_digit"
790
+ ],
791
+ "FORMAT_DEFAULT": "auto",
792
+ "FORMAT_OPTIONS": [
793
+ "auto",
794
+ "micro",
795
+ "elapsed"
796
+ ],
797
+ "HOUR_DEFAULT": null,
798
+ "HOUR_MAPPINGS": {
799
+ "": null,
800
+ "numeric": "numeric",
801
+ "two_digit": "2-digit"
802
+ },
803
+ "HOUR_OPTIONS": [
804
+ null,
805
+ "numeric",
806
+ "two_digit"
807
+ ],
808
+ "MINUTE_DEFAULT": null,
809
+ "MINUTE_MAPPINGS": {
810
+ "": null,
811
+ "numeric": "numeric",
812
+ "two_digit": "2-digit"
813
+ },
814
+ "MINUTE_OPTIONS": [
815
+ null,
816
+ "numeric",
817
+ "two_digit"
818
+ ],
819
+ "MONTH_DEFAULT": null,
820
+ "MONTH_MAPPINGS": {
821
+ "": null,
822
+ "numeric": "numeric",
823
+ "two_digit": "2-digit",
824
+ "short": "short",
825
+ "long": "long",
826
+ "narrow": "narrow"
827
+ },
828
+ "MONTH_OPTIONS": [
829
+ null,
830
+ "numeric",
831
+ "two_digit",
832
+ "short",
833
+ "long",
834
+ "narrow"
835
+ ],
836
+ "PRECISION_DEFAULT": null,
837
+ "PRECISION_OPTIONS": [
838
+ null,
839
+ "second",
840
+ "minute",
841
+ "hour",
842
+ "day",
843
+ "month",
844
+ "year"
845
+ ],
846
+ "SECOND_DEFAULT": null,
847
+ "SECOND_MAPPINGS": {
848
+ "": null,
849
+ "numeric": "numeric",
850
+ "two_digit": "2-digit"
851
+ },
852
+ "SECOND_OPTIONS": [
853
+ null,
854
+ "numeric",
855
+ "two_digit"
856
+ ],
857
+ "TENSE_DEFAULT": "auto",
858
+ "TENSE_OPTIONS": [
859
+ "auto",
860
+ "past",
861
+ "future"
862
+ ],
863
+ "TIMEZONENAME_DEFAULT": null,
864
+ "TIMEZONENAME_OPTIONS": [
865
+ null,
866
+ "long",
867
+ "short",
868
+ "short_offset",
869
+ "long_offset",
870
+ "short_generic",
871
+ "long_generic"
872
+ ],
873
+ "TIMEZONE_MAPPINGS": {
874
+ "": null,
875
+ "long": "long",
876
+ "short": "short",
877
+ "short_offset": "shortOffset",
878
+ "long_offset": "longOffset",
879
+ "short_generic": "shortGeneric",
880
+ "long_generic": "longGeneric"
881
+ },
882
+ "WEEKDAY_DEFAULT": null,
883
+ "WEEKDAY_OPTIONS": [
884
+ null,
885
+ "long",
886
+ "short",
887
+ "narrow"
888
+ ],
889
+ "YEAR_DEFAULT": null,
890
+ "YEAR_MAPPINGS": {
891
+ "": null,
892
+ "numeric": "numeric",
893
+ "two_digit": "2-digit"
894
+ },
895
+ "YEAR_OPTIONS": [
896
+ null,
897
+ "numeric",
898
+ "two_digit"
899
+ ]
900
+ },
901
+ "Primer::Beta::Spinner": {
902
+ "DEFAULT_SIZE": "medium",
903
+ "DEFAULT_STYLE": "box-sizing: content-box; color: var(--color-icon-primary);",
904
+ "SIZE_MAPPINGS": {
905
+ "small": 16,
906
+ "medium": 32,
907
+ "large": 64
908
+ },
909
+ "SIZE_OPTIONS": [
910
+ "small",
911
+ "medium",
912
+ "large"
913
+ ]
914
+ },
915
+ "Primer::Beta::Text": {
916
+ "DEFAULT_TAG": "span"
917
+ },
918
+ "Primer::Beta::Truncate": {
919
+ "TruncateText": "Primer::Beta::Truncate::TruncateText"
920
+ },
921
+ "Primer::Beta::Truncate::TruncateText": {
922
+ },
923
+ "Primer::BlankslateComponent": {
924
+ },
925
+ "Primer::Box": {
926
+ },
927
+ "Primer::BoxComponent": {
928
+ },
929
+ "Primer::ButtonComponent": {
930
+ "DEFAULT_SCHEME": "default",
931
+ "DEFAULT_SIZE": "medium",
932
+ "LINK_SCHEME": "link",
933
+ "SCHEME_MAPPINGS": {
934
+ "default": "",
935
+ "primary": "btn-primary",
936
+ "danger": "btn-danger",
937
+ "outline": "btn-outline",
938
+ "invisible": "btn-invisible",
939
+ "link": "btn-link"
940
+ },
941
+ "SCHEME_OPTIONS": [
942
+ "default",
943
+ "primary",
944
+ "danger",
945
+ "outline",
946
+ "invisible",
947
+ "link"
948
+ ],
949
+ "SIZE_MAPPINGS": {
950
+ "small": "btn-sm",
951
+ "medium": ""
952
+ },
953
+ "SIZE_OPTIONS": [
954
+ "small",
955
+ "medium"
956
+ ]
957
+ },
958
+ "Primer::ClipboardCopy": {
959
+ },
960
+ "Primer::ConditionalWrapper": {
961
+ },
962
+ "Primer::Content": {
963
+ },
964
+ "Primer::Dropdown": {
965
+ "Menu": "Primer::Dropdown::Menu"
966
+ },
967
+ "Primer::Dropdown::Menu": {
968
+ "Item": "Primer::Dropdown::Menu::Item"
969
+ },
970
+ "Primer::Dropdown::Menu::Item": {
971
+ },
972
+ "Primer::DropdownMenuComponent": {
973
+ "DIRECTION_DEFAULT": "se",
974
+ "DIRECTION_OPTIONS": [
975
+ "se",
976
+ "sw",
977
+ "w",
978
+ "e",
979
+ "ne",
980
+ "s"
981
+ ],
982
+ "SCHEME_DEFAULT": "default",
983
+ "SCHEME_MAPPINGS": {
984
+ "default": "",
985
+ "dark": "dropdown-menu-dark"
986
+ }
987
+ },
988
+ "Primer::HellipButton": {
989
+ },
990
+ "Primer::IconButton": {
991
+ "DEFAULT_SCHEME": "default",
992
+ "SCHEME_MAPPINGS": {
993
+ "default": "",
994
+ "danger": "btn-octicon-danger"
995
+ },
996
+ "SCHEME_OPTIONS": [
997
+ "default",
998
+ "danger"
999
+ ]
1000
+ },
1001
+ "Primer::LabelComponent": {
1002
+ },
1003
+ "Primer::LayoutComponent": {
1004
+ "ALLOWED_SIDEBAR_COLS": [
1005
+ 1,
1006
+ 2,
1007
+ 3,
1008
+ 4,
1009
+ 5,
1010
+ 6,
1011
+ 7,
1012
+ 8,
1013
+ 9,
1014
+ 10,
1015
+ 11
1016
+ ],
1017
+ "ALLOWED_SIDES": [
1018
+ "right",
1019
+ "left"
1020
+ ],
1021
+ "DEFAULT_SIDE": "right",
1022
+ "DEFAULT_SIDEBAR_COL": 3,
1023
+ "MAX_COL": 12
1024
+ },
1025
+ "Primer::LinkComponent": {
1026
+ },
1027
+ "Primer::LocalTime": {
1028
+ "DEFAULT_DIGIT_TYPE": "numeric",
1029
+ "DEFAULT_TEXT_TYPE": "short",
1030
+ "DIGIT_TYPE_OPTIONS": [
1031
+ "numeric",
1032
+ "2-digit"
1033
+ ],
1034
+ "TEXT_TYPE_OPTIONS": [
1035
+ "short",
1036
+ "long"
1037
+ ]
1038
+ },
1039
+ "Primer::Markdown": {
1040
+ },
1041
+ "Primer::MenuComponent": {
1042
+ },
1043
+ "Primer::Navigation::TabComponent": {
1044
+ "ARIA_CURRENT_OPTIONS_FOR_ANCHOR": [
1045
+ true,
1046
+ "page"
1047
+ ],
1048
+ "DEFAULT_ARIA_CURRENT_FOR_ANCHOR": "page"
1049
+ },
1050
+ "Primer::OcticonComponent": {
1051
+ },
1052
+ "Primer::OcticonSymbolsComponent": {
1053
+ },
1054
+ "Primer::PopoverComponent": {
1055
+ },
1056
+ "Primer::SpinnerComponent": {
1057
+ },
1058
+ "Primer::StateComponent": {
1059
+ "DEPRECATED_SCHEME_MAPPINGS": {
1060
+ "default": "",
1061
+ "green": "State--open",
1062
+ "red": "State--closed",
1063
+ "purple": "State--merged"
1064
+ },
1065
+ "NEW_SCHEME_MAPPINGS": {
1066
+ "open": "State--open",
1067
+ "closed": "State--closed",
1068
+ "merged": "State--merged"
1069
+ },
1070
+ "SCHEME_DEFAULT": "default",
1071
+ "SCHEME_MAPPINGS": {
1072
+ "open": "State--open",
1073
+ "closed": "State--closed",
1074
+ "merged": "State--merged",
1075
+ "default": "",
1076
+ "green": "State--open",
1077
+ "red": "State--closed",
1078
+ "purple": "State--merged"
1079
+ },
1080
+ "SCHEME_OPTIONS": [
1081
+ "open",
1082
+ "closed",
1083
+ "merged",
1084
+ "default",
1085
+ "green",
1086
+ "red",
1087
+ "purple"
1088
+ ],
1089
+ "SIZE_DEFAULT": "default",
1090
+ "SIZE_MAPPINGS": {
1091
+ "default": "",
1092
+ "small": "State--small"
1093
+ },
1094
+ "SIZE_OPTIONS": [
1095
+ "default",
1096
+ "small"
1097
+ ],
1098
+ "TAG_DEFAULT": "span",
1099
+ "TAG_OPTIONS": [
1100
+ "span",
1101
+ "div"
1102
+ ]
1103
+ },
1104
+ "Primer::SubheadComponent": {
1105
+ "DEFAULT_HEADING_TAG": "div",
1106
+ "HEADING_TAG_OPTIONS": [
1107
+ "div",
1108
+ "h1",
1109
+ "h2",
1110
+ "h3",
1111
+ "h4",
1112
+ "h5",
1113
+ "h6"
1114
+ ]
1115
+ },
1116
+ "Primer::TabContainerComponent": {
1117
+ },
1118
+ "Primer::TimeAgoComponent": {
1119
+ },
1120
+ "Primer::TimelineItemComponent": {
1121
+ "BadgeComponent": "Primer::TimelineItemComponent::BadgeComponent"
1122
+ },
1123
+ "Primer::TimelineItemComponent::BadgeComponent": {
1124
+ },
1125
+ "Primer::Tooltip": {
1126
+ "ALIGN_DEFAULT": "default",
1127
+ "ALIGN_MAPPING": {
1128
+ "default": "",
1129
+ "left_1": "tooltipped-align-left-1",
1130
+ "right_1": "tooltipped-align-right-1",
1131
+ "left_2": "tooltipped-align-left-2",
1132
+ "right_2": "tooltipped-align-right-2"
1133
+ },
1134
+ "DELAY_DEFAULT": false,
1135
+ "DIRECTION_DEFAULT": "n",
1136
+ "DIRECTION_OPTIONS": [
1137
+ "n",
1138
+ "nw",
1139
+ "ne",
1140
+ "w",
1141
+ "e",
1142
+ "sw",
1143
+ "s",
1144
+ "se"
1145
+ ],
1146
+ "MULTILINE_DEFAULT": false
1147
+ },
1148
+ "Primer::Truncate": {
1149
+ "DEFAULT_TAG": "div",
1150
+ "TAG_OPTIONS": [
1151
+ "div",
1152
+ "span",
1153
+ "p",
1154
+ "strong"
1155
+ ]
1156
+ }
1157
+ }