@mixtint/primer-view-components 0.72.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (234) hide show
  1. package/LICENSE.txt +21 -0
  2. package/README.md +30 -0
  3. package/app/assets/images/loading_indicator.svg +1 -0
  4. package/app/assets/javascripts/components/primer/alpha/action_bar_element.d.ts +17 -0
  5. package/app/assets/javascripts/components/primer/alpha/action_list.d.ts +16 -0
  6. package/app/assets/javascripts/components/primer/alpha/action_menu/action_menu_element.d.ts +49 -0
  7. package/app/assets/javascripts/components/primer/alpha/action_menu/action_menu_focus_zone_stack.d.ts +17 -0
  8. package/app/assets/javascripts/components/primer/alpha/dropdown/menu.d.ts +1 -0
  9. package/app/assets/javascripts/components/primer/alpha/dropdown.d.ts +1 -0
  10. package/app/assets/javascripts/components/primer/alpha/modal_dialog.d.ts +18 -0
  11. package/app/assets/javascripts/components/primer/alpha/segmented_control.d.ts +12 -0
  12. package/app/assets/javascripts/components/primer/alpha/select_panel_element.d.ts +65 -0
  13. package/app/assets/javascripts/components/primer/alpha/tab_container.d.ts +1 -0
  14. package/app/assets/javascripts/components/primer/alpha/toggle_switch.d.ts +34 -0
  15. package/app/assets/javascripts/components/primer/alpha/tool_tip.d.ts +27 -0
  16. package/app/assets/javascripts/components/primer/alpha/tree_view/tree_view.d.ts +42 -0
  17. package/app/assets/javascripts/components/primer/alpha/tree_view/tree_view_icon_pair_element.d.ts +15 -0
  18. package/app/assets/javascripts/components/primer/alpha/tree_view/tree_view_include_fragment_element.d.ts +9 -0
  19. package/app/assets/javascripts/components/primer/alpha/tree_view/tree_view_roving_tab_index.d.ts +3 -0
  20. package/app/assets/javascripts/components/primer/alpha/tree_view/tree_view_sub_tree_node_element.d.ts +45 -0
  21. package/app/assets/javascripts/components/primer/alpha/x_banner.d.ts +18 -0
  22. package/app/assets/javascripts/components/primer/anchored_position.d.ts +27 -0
  23. package/app/assets/javascripts/components/primer/beta/auto_complete/auto_complete.d.ts +1 -0
  24. package/app/assets/javascripts/components/primer/beta/clipboard_copy.d.ts +1 -0
  25. package/app/assets/javascripts/components/primer/beta/details_toggle_element.d.ts +40 -0
  26. package/app/assets/javascripts/components/primer/beta/nav_list.d.ts +20 -0
  27. package/app/assets/javascripts/components/primer/beta/nav_list_group_element.d.ts +19 -0
  28. package/app/assets/javascripts/components/primer/beta/relative_time.d.ts +1 -0
  29. package/app/assets/javascripts/components/primer/dialog_helper.d.ts +15 -0
  30. package/app/assets/javascripts/components/primer/focus_group.d.ts +19 -0
  31. package/app/assets/javascripts/components/primer/open_project/border_box/collapsible_header.d.ts +11 -0
  32. package/app/assets/javascripts/components/primer/open_project/collapsible.d.ts +13 -0
  33. package/app/assets/javascripts/components/primer/open_project/collapsible_section.d.ts +10 -0
  34. package/app/assets/javascripts/components/primer/open_project/danger_dialog_form_helper.d.ts +14 -0
  35. package/app/assets/javascripts/components/primer/open_project/filterable_tree_view.d.ts +29 -0
  36. package/app/assets/javascripts/components/primer/open_project/page_header_element.d.ts +9 -0
  37. package/app/assets/javascripts/components/primer/open_project/sub_header_element.d.ts +17 -0
  38. package/app/assets/javascripts/components/primer/open_project/zen_mode_button.d.ts +18 -0
  39. package/app/assets/javascripts/components/primer/primer.d.ts +40 -0
  40. package/app/assets/javascripts/components/primer/scrollable_region.d.ts +13 -0
  41. package/app/assets/javascripts/components/primer/shared_events.d.ts +26 -0
  42. package/app/assets/javascripts/components/primer/utils.d.ts +1 -0
  43. package/app/assets/javascripts/lib/primer/forms/primer_multi_input.d.ts +10 -0
  44. package/app/assets/javascripts/lib/primer/forms/primer_text_field.d.ts +28 -0
  45. package/app/assets/javascripts/lib/primer/forms/toggle_switch_input.d.ts +5 -0
  46. package/app/assets/javascripts/primer_view_components.js +2 -0
  47. package/app/assets/javascripts/primer_view_components.js.map +1 -0
  48. package/app/assets/styles/primer_view_components.css +7336 -0
  49. package/app/assets/styles/primer_view_components.css.map +1 -0
  50. package/app/components/primer/alpha/action_bar.css +49 -0
  51. package/app/components/primer/alpha/action_bar.css.json +14 -0
  52. package/app/components/primer/alpha/action_bar_element.d.ts +17 -0
  53. package/app/components/primer/alpha/action_bar_element.js +170 -0
  54. package/app/components/primer/alpha/action_list.css +526 -0
  55. package/app/components/primer/alpha/action_list.css.json +117 -0
  56. package/app/components/primer/alpha/action_list.d.ts +16 -0
  57. package/app/components/primer/alpha/action_list.js +70 -0
  58. package/app/components/primer/alpha/action_menu/action_menu_element.d.ts +49 -0
  59. package/app/components/primer/alpha/action_menu/action_menu_element.js +591 -0
  60. package/app/components/primer/alpha/action_menu/action_menu_focus_zone_stack.d.ts +17 -0
  61. package/app/components/primer/alpha/action_menu/action_menu_focus_zone_stack.js +62 -0
  62. package/app/components/primer/alpha/auto_complete.css +131 -0
  63. package/app/components/primer/alpha/auto_complete.css.json +21 -0
  64. package/app/components/primer/alpha/banner.css +146 -0
  65. package/app/components/primer/alpha/banner.css.json +26 -0
  66. package/app/components/primer/alpha/button_marketing.css +183 -0
  67. package/app/components/primer/alpha/button_marketing.css.json +30 -0
  68. package/app/components/primer/alpha/dialog.css +377 -0
  69. package/app/components/primer/alpha/dialog.css.json +66 -0
  70. package/app/components/primer/alpha/dropdown/menu.d.ts +1 -0
  71. package/app/components/primer/alpha/dropdown/menu.js +1 -0
  72. package/app/components/primer/alpha/dropdown.css +296 -0
  73. package/app/components/primer/alpha/dropdown.css.json +40 -0
  74. package/app/components/primer/alpha/dropdown.d.ts +1 -0
  75. package/app/components/primer/alpha/dropdown.js +1 -0
  76. package/app/components/primer/alpha/layout.css +374 -0
  77. package/app/components/primer/alpha/layout.css.json +74 -0
  78. package/app/components/primer/alpha/menu.css +124 -0
  79. package/app/components/primer/alpha/menu.css.json +26 -0
  80. package/app/components/primer/alpha/modal_dialog.d.ts +18 -0
  81. package/app/components/primer/alpha/modal_dialog.js +187 -0
  82. package/app/components/primer/alpha/overlay.css +25 -0
  83. package/app/components/primer/alpha/overlay.css.json +12 -0
  84. package/app/components/primer/alpha/segmented_control.css +161 -0
  85. package/app/components/primer/alpha/segmented_control.css.json +31 -0
  86. package/app/components/primer/alpha/segmented_control.d.ts +12 -0
  87. package/app/components/primer/alpha/segmented_control.js +59 -0
  88. package/app/components/primer/alpha/select_panel.css +10 -0
  89. package/app/components/primer/alpha/select_panel.css.json +7 -0
  90. package/app/components/primer/alpha/select_panel_element.d.ts +65 -0
  91. package/app/components/primer/alpha/select_panel_element.js +988 -0
  92. package/app/components/primer/alpha/skeleton_box.css +36 -0
  93. package/app/components/primer/alpha/skeleton_box.css.json +6 -0
  94. package/app/components/primer/alpha/stack.css +266 -0
  95. package/app/components/primer/alpha/stack.css.json +94 -0
  96. package/app/components/primer/alpha/stack_item.css +27 -0
  97. package/app/components/primer/alpha/stack_item.css.json +12 -0
  98. package/app/components/primer/alpha/tab_container.d.ts +1 -0
  99. package/app/components/primer/alpha/tab_container.js +1 -0
  100. package/app/components/primer/alpha/tab_nav.css +112 -0
  101. package/app/components/primer/alpha/tab_nav.css.json +22 -0
  102. package/app/components/primer/alpha/text_field.css +838 -0
  103. package/app/components/primer/alpha/text_field.css.json +134 -0
  104. package/app/components/primer/alpha/toggle_switch.css +230 -0
  105. package/app/components/primer/alpha/toggle_switch.css.json +40 -0
  106. package/app/components/primer/alpha/toggle_switch.d.ts +34 -0
  107. package/app/components/primer/alpha/toggle_switch.js +179 -0
  108. package/app/components/primer/alpha/tool_tip.d.ts +27 -0
  109. package/app/components/primer/alpha/tool_tip.js +443 -0
  110. package/app/components/primer/alpha/tree_view/tree_view.d.ts +42 -0
  111. package/app/components/primer/alpha/tree_view/tree_view.js +391 -0
  112. package/app/components/primer/alpha/tree_view/tree_view_icon_pair_element.d.ts +15 -0
  113. package/app/components/primer/alpha/tree_view/tree_view_icon_pair_element.js +62 -0
  114. package/app/components/primer/alpha/tree_view/tree_view_include_fragment_element.d.ts +9 -0
  115. package/app/components/primer/alpha/tree_view/tree_view_include_fragment_element.js +28 -0
  116. package/app/components/primer/alpha/tree_view/tree_view_roving_tab_index.d.ts +3 -0
  117. package/app/components/primer/alpha/tree_view/tree_view_roving_tab_index.js +130 -0
  118. package/app/components/primer/alpha/tree_view/tree_view_sub_tree_node_element.d.ts +45 -0
  119. package/app/components/primer/alpha/tree_view/tree_view_sub_tree_node_element.js +429 -0
  120. package/app/components/primer/alpha/tree_view.css +396 -0
  121. package/app/components/primer/alpha/tree_view.css.json +52 -0
  122. package/app/components/primer/alpha/underline_nav.css +150 -0
  123. package/app/components/primer/alpha/underline_nav.css.json +26 -0
  124. package/app/components/primer/alpha/x_banner.d.ts +18 -0
  125. package/app/components/primer/alpha/x_banner.js +51 -0
  126. package/app/components/primer/anchored_position.d.ts +27 -0
  127. package/app/components/primer/anchored_position.js +159 -0
  128. package/app/components/primer/beta/auto_complete/auto_complete.d.ts +1 -0
  129. package/app/components/primer/beta/auto_complete/auto_complete.js +1 -0
  130. package/app/components/primer/beta/avatar.css +77 -0
  131. package/app/components/primer/beta/avatar.css.json +17 -0
  132. package/app/components/primer/beta/avatar_stack.css +145 -0
  133. package/app/components/primer/beta/avatar_stack.css.json +28 -0
  134. package/app/components/primer/beta/blankslate.css +168 -0
  135. package/app/components/primer/beta/blankslate.css.json +23 -0
  136. package/app/components/primer/beta/border_box.css +218 -0
  137. package/app/components/primer/beta/border_box.css.json +54 -0
  138. package/app/components/primer/beta/breadcrumbs.css +29 -0
  139. package/app/components/primer/beta/breadcrumbs.css.json +9 -0
  140. package/app/components/primer/beta/button.css +359 -0
  141. package/app/components/primer/beta/button.css.json +86 -0
  142. package/app/components/primer/beta/button_group.css +20 -0
  143. package/app/components/primer/beta/button_group.css.json +12 -0
  144. package/app/components/primer/beta/clipboard_copy.d.ts +1 -0
  145. package/app/components/primer/beta/clipboard_copy.js +58 -0
  146. package/app/components/primer/beta/counter.css +38 -0
  147. package/app/components/primer/beta/counter.css.json +10 -0
  148. package/app/components/primer/beta/details_toggle_element.d.ts +40 -0
  149. package/app/components/primer/beta/details_toggle_element.js +65 -0
  150. package/app/components/primer/beta/flash.css +152 -0
  151. package/app/components/primer/beta/flash.css.json +27 -0
  152. package/app/components/primer/beta/label.css +109 -0
  153. package/app/components/primer/beta/label.css.json +24 -0
  154. package/app/components/primer/beta/link.css +79 -0
  155. package/app/components/primer/beta/link.css.json +19 -0
  156. package/app/components/primer/beta/nav_list.d.ts +20 -0
  157. package/app/components/primer/beta/nav_list.js +192 -0
  158. package/app/components/primer/beta/nav_list_group_element.d.ts +19 -0
  159. package/app/components/primer/beta/nav_list_group_element.js +111 -0
  160. package/app/components/primer/beta/popover.css +215 -0
  161. package/app/components/primer/beta/popover.css.json +33 -0
  162. package/app/components/primer/beta/progress_bar.css +27 -0
  163. package/app/components/primer/beta/progress_bar.css.json +10 -0
  164. package/app/components/primer/beta/relative_time.d.ts +1 -0
  165. package/app/components/primer/beta/relative_time.js +1 -0
  166. package/app/components/primer/beta/state.css +59 -0
  167. package/app/components/primer/beta/state.css.json +13 -0
  168. package/app/components/primer/beta/subhead.css +64 -0
  169. package/app/components/primer/beta/subhead.css.json +14 -0
  170. package/app/components/primer/beta/timeline_item.css +106 -0
  171. package/app/components/primer/beta/timeline_item.css.json +16 -0
  172. package/app/components/primer/beta/truncate.css +30 -0
  173. package/app/components/primer/beta/truncate.css.json +12 -0
  174. package/app/components/primer/dialog_helper.d.ts +15 -0
  175. package/app/components/primer/dialog_helper.js +132 -0
  176. package/app/components/primer/focus_group.d.ts +19 -0
  177. package/app/components/primer/focus_group.js +163 -0
  178. package/app/components/primer/open_project/border_box/collapsible_header.css +21 -0
  179. package/app/components/primer/open_project/border_box/collapsible_header.css.json +11 -0
  180. package/app/components/primer/open_project/border_box/collapsible_header.d.ts +11 -0
  181. package/app/components/primer/open_project/border_box/collapsible_header.js +21 -0
  182. package/app/components/primer/open_project/border_grid.css +35 -0
  183. package/app/components/primer/open_project/border_grid.css.json +11 -0
  184. package/app/components/primer/open_project/collapsible.d.ts +13 -0
  185. package/app/components/primer/open_project/collapsible.js +67 -0
  186. package/app/components/primer/open_project/collapsible_section.css +5 -0
  187. package/app/components/primer/open_project/collapsible_section.css.json +6 -0
  188. package/app/components/primer/open_project/collapsible_section.d.ts +10 -0
  189. package/app/components/primer/open_project/collapsible_section.js +16 -0
  190. package/app/components/primer/open_project/danger_dialog_form_helper.d.ts +14 -0
  191. package/app/components/primer/open_project/danger_dialog_form_helper.js +54 -0
  192. package/app/components/primer/open_project/drag_handle.css +6 -0
  193. package/app/components/primer/open_project/drag_handle.css.json +6 -0
  194. package/app/components/primer/open_project/filterable_tree_view.d.ts +29 -0
  195. package/app/components/primer/open_project/filterable_tree_view.js +409 -0
  196. package/app/components/primer/open_project/input_group.css +22 -0
  197. package/app/components/primer/open_project/input_group.css.json +12 -0
  198. package/app/components/primer/open_project/page_header.css +87 -0
  199. package/app/components/primer/open_project/page_header.css.json +20 -0
  200. package/app/components/primer/open_project/page_header_element.d.ts +9 -0
  201. package/app/components/primer/open_project/page_header_element.js +23 -0
  202. package/app/components/primer/open_project/side_panel/section.css +27 -0
  203. package/app/components/primer/open_project/side_panel/section.css.json +11 -0
  204. package/app/components/primer/open_project/sub_header.css +80 -0
  205. package/app/components/primer/open_project/sub_header.css.json +17 -0
  206. package/app/components/primer/open_project/sub_header_element.d.ts +17 -0
  207. package/app/components/primer/open_project/sub_header_element.js +76 -0
  208. package/app/components/primer/open_project/zen_mode_button.d.ts +18 -0
  209. package/app/components/primer/open_project/zen_mode_button.js +64 -0
  210. package/app/components/primer/primer.d.ts +40 -0
  211. package/app/components/primer/primer.js +40 -0
  212. package/app/components/primer/scrollable_region.d.ts +13 -0
  213. package/app/components/primer/scrollable_region.js +52 -0
  214. package/app/components/primer/shared_events.d.ts +26 -0
  215. package/app/components/primer/shared_events.js +1 -0
  216. package/app/components/primer/truncate.css +23 -0
  217. package/app/components/primer/truncate.css.json +13 -0
  218. package/app/components/primer/utils.d.ts +1 -0
  219. package/app/components/primer/utils.js +16 -0
  220. package/app/lib/primer/forms/primer_multi_input.d.ts +10 -0
  221. package/app/lib/primer/forms/primer_multi_input.js +44 -0
  222. package/app/lib/primer/forms/primer_text_field.d.ts +28 -0
  223. package/app/lib/primer/forms/primer_text_field.js +119 -0
  224. package/app/lib/primer/forms/toggle_switch_input.d.ts +5 -0
  225. package/app/lib/primer/forms/toggle_switch_input.js +34 -0
  226. package/package.json +103 -0
  227. package/static/arguments.json +6472 -0
  228. package/static/audited_at.json +173 -0
  229. package/static/classes.json +781 -0
  230. package/static/constants.json +1972 -0
  231. package/static/form_previews.json +118 -0
  232. package/static/info_arch.json +21331 -0
  233. package/static/previews.json +9436 -0
  234. package/static/statuses.json +173 -0
@@ -0,0 +1,1972 @@
1
+ {
2
+ "Primer::Alpha::ActionBar": {
3
+ "DEFAULT_SIZE": "medium",
4
+ "Divider": "Primer::Alpha::ActionBar::Divider",
5
+ "GeneratedSlotMethods": "Primer::Alpha::ActionBar::GeneratedSlotMethods",
6
+ "Item": "Primer::Alpha::ActionBar::Item",
7
+ "SIZE_MAPPINGS": {
8
+ "medium": null,
9
+ "small": "ActionBar--small",
10
+ "large": "ActionBar--large"
11
+ },
12
+ "SIZE_OPTIONS": [
13
+ "medium",
14
+ "small",
15
+ "large"
16
+ ]
17
+ },
18
+ "Primer::Alpha::ActionBar::Divider": {
19
+ "GeneratedSlotMethods": "Primer::Alpha::ActionBar::Divider::GeneratedSlotMethods"
20
+ },
21
+ "Primer::Alpha::ActionBar::Item": {
22
+ "GeneratedSlotMethods": "Primer::Alpha::ActionBar::Item::GeneratedSlotMethods"
23
+ },
24
+ "Primer::Alpha::ActionList": {
25
+ "ARIA_SELECTION_VARIANT_OPTIONS": [
26
+ "selected",
27
+ "checked"
28
+ ],
29
+ "DEFAULT_ARIA_SELECTION_VARIANT": "checked",
30
+ "DEFAULT_MENU_ITEM_ROLE": "menuitem",
31
+ "DEFAULT_ROLE": "list",
32
+ "DEFAULT_SCHEME": "full",
33
+ "DEFAULT_SELECT_VARIANT": "none",
34
+ "Divider": "Primer::Alpha::ActionList::Divider",
35
+ "FormWrapper": "Primer::Alpha::ActionList::FormWrapper",
36
+ "GeneratedSlotMethods": "Primer::Alpha::ActionList::GeneratedSlotMethods",
37
+ "Heading": "Primer::Alpha::ActionList::Heading",
38
+ "Item": "Primer::Alpha::ActionList::Item",
39
+ "LIST_BOX_ITEM_ROLE": "option",
40
+ "MENU_ROLE": "menu",
41
+ "SCHEME_MAPPINGS": {
42
+ "full": null,
43
+ "inset": "ActionListWrap--inset"
44
+ },
45
+ "SCHEME_OPTIONS": [
46
+ "full",
47
+ "inset"
48
+ ],
49
+ "SELECT_VARIANT_OPTIONS": [
50
+ "single",
51
+ "multiple",
52
+ "multiple_checkbox",
53
+ "none"
54
+ ],
55
+ "SELECT_VARIANT_ROLE_MAP": {
56
+ "single": "menuitemradio",
57
+ "multiple": "menuitemcheckbox",
58
+ "multiple_checkbox": "menuitemcheckbox"
59
+ }
60
+ },
61
+ "Primer::Alpha::ActionList::Divider": {
62
+ "DEFAULT_SCHEME": "subtle",
63
+ "GeneratedSlotMethods": "Primer::Alpha::ActionList::Divider::GeneratedSlotMethods",
64
+ "SCHEME_MAPPINGS": {
65
+ "subtle": null,
66
+ "filled": "ActionList-sectionDivider--filled"
67
+ },
68
+ "SCHEME_OPTIONS": [
69
+ "subtle",
70
+ "filled"
71
+ ]
72
+ },
73
+ "Primer::Alpha::ActionList::FormWrapper": {
74
+ "DEFAULT_HTTP_METHOD": "get",
75
+ "GeneratedSlotMethods": "Primer::Alpha::ActionList::FormWrapper::GeneratedSlotMethods",
76
+ "HTTP_METHOD_OPTIONS": [
77
+ "get",
78
+ "post",
79
+ "patch",
80
+ "put",
81
+ "delete",
82
+ "head"
83
+ ]
84
+ },
85
+ "Primer::Alpha::ActionList::Heading": {
86
+ "DEFAULT_SCHEME": "subtle",
87
+ "GeneratedSlotMethods": "Primer::Alpha::ActionList::Heading::GeneratedSlotMethods",
88
+ "HEADING_LEVELS": [
89
+ 1,
90
+ 2,
91
+ 3,
92
+ 4,
93
+ 5,
94
+ 6
95
+ ],
96
+ "HEADING_MAX": 6,
97
+ "HEADING_MIN": 1,
98
+ "SCHEME_MAPPINGS": {
99
+ "subtle": null,
100
+ "filled": "ActionList-sectionDivider--filled"
101
+ },
102
+ "SCHEME_OPTIONS": [
103
+ "subtle",
104
+ "filled"
105
+ ]
106
+ },
107
+ "Primer::Alpha::ActionList::Item": {
108
+ "DEFAULT_DESCRIPTION_SCHEME": "block",
109
+ "DEFAULT_SCHEME": "default",
110
+ "DEFAULT_SIZE": "medium",
111
+ "DEFAULT_TRUNCATION_BEHAVIOR": "none",
112
+ "DESCRIPTION_SCHEME_MAPPINGS": {
113
+ "inline": "ActionListItem-descriptionWrap--inline",
114
+ "block": "ActionListItem-descriptionWrap"
115
+ },
116
+ "DESCRIPTION_SCHEME_OPTIONS": [
117
+ "inline",
118
+ "block"
119
+ ],
120
+ "GeneratedSlotMethods": "Primer::Alpha::ActionList::Item::GeneratedSlotMethods",
121
+ "SCHEME_MAPPINGS": {
122
+ "default": null,
123
+ "danger": "ActionListItem--danger"
124
+ },
125
+ "SCHEME_OPTIONS": [
126
+ "default",
127
+ "danger"
128
+ ],
129
+ "SIZE_MAPPINGS": {
130
+ "medium": null,
131
+ "large": "ActionListContent--sizeLarge",
132
+ "xlarge": "ActionListContent--sizeXLarge"
133
+ },
134
+ "SIZE_OPTIONS": [
135
+ "medium",
136
+ "large",
137
+ "xlarge"
138
+ ],
139
+ "TRUNCATION_BEHAVIOR_MAPPINGS": {
140
+ "none": null,
141
+ "false": null,
142
+ "show_tooltip": "ActionListItem-label--truncate",
143
+ "truncate": "ActionListItem-label--truncate",
144
+ "true": "ActionListItem-label--truncate"
145
+ },
146
+ "TRUNCATION_BEHAVIOR_OPTIONS": [
147
+ "none",
148
+ false,
149
+ "show_tooltip",
150
+ "truncate",
151
+ true
152
+ ]
153
+ },
154
+ "Primer::Alpha::ActionMenu": {
155
+ "GeneratedSlotMethods": "Primer::Alpha::ActionMenu::GeneratedSlotMethods",
156
+ "Group": "Primer::Alpha::ActionMenu::Group",
157
+ "Heading": "Primer::Alpha::ActionMenu::Heading",
158
+ "List": "Primer::Alpha::ActionMenu::List",
159
+ "ListWrapper": "Primer::Alpha::ActionMenu::ListWrapper",
160
+ "Menu": "Primer::Alpha::ActionMenu::Menu",
161
+ "PrimaryMenu": "Primer::Alpha::ActionMenu::PrimaryMenu",
162
+ "SubMenu": "Primer::Alpha::ActionMenu::SubMenu",
163
+ "SubMenuItem": "Primer::Alpha::ActionMenu::SubMenuItem"
164
+ },
165
+ "Primer::Alpha::ActionMenu::Group": {
166
+ "GeneratedSlotMethods": "Primer::Alpha::ActionMenu::Group::GeneratedSlotMethods"
167
+ },
168
+ "Primer::Alpha::ActionMenu::Heading": {
169
+ "GeneratedSlotMethods": "Primer::Alpha::ActionMenu::Heading::GeneratedSlotMethods"
170
+ },
171
+ "Primer::Alpha::ActionMenu::List": {
172
+ "DEFAULT_ITEM_TAG": "button",
173
+ "GeneratedSlotMethods": "Primer::Alpha::ActionMenu::List::GeneratedSlotMethods",
174
+ "ITEM_TAG_OPTIONS": [
175
+ "a",
176
+ "clipboard-copy",
177
+ "button"
178
+ ]
179
+ },
180
+ "Primer::Alpha::ActionMenu::ListWrapper": {
181
+ "GeneratedSlotMethods": "Primer::Alpha::ActionMenu::ListWrapper::GeneratedSlotMethods"
182
+ },
183
+ "Primer::Alpha::ActionMenu::Menu": {
184
+ "DEFAULT_PRELOAD": false,
185
+ "DEFAULT_SELECT_VARIANT": "none",
186
+ "GeneratedSlotMethods": "Primer::Alpha::ActionMenu::Menu::GeneratedSlotMethods",
187
+ "SELECT_VARIANT_OPTIONS": [
188
+ "single",
189
+ "multiple",
190
+ "none"
191
+ ]
192
+ },
193
+ "Primer::Alpha::ActionMenu::PrimaryMenu": {
194
+ "DEFAULT_ANCHOR_ALIGN": "start",
195
+ "DEFAULT_ANCHOR_SIDE": "outside_bottom",
196
+ "GeneratedSlotMethods": "Primer::Alpha::ActionMenu::PrimaryMenu::GeneratedSlotMethods"
197
+ },
198
+ "Primer::Alpha::ActionMenu::SubMenu": {
199
+ "DEFAULT_ANCHOR_ALIGN": "start",
200
+ "DEFAULT_ANCHOR_SIDE": "outside_right",
201
+ "GeneratedSlotMethods": "Primer::Alpha::ActionMenu::SubMenu::GeneratedSlotMethods"
202
+ },
203
+ "Primer::Alpha::ActionMenu::SubMenuItem": {
204
+ "GeneratedSlotMethods": "Primer::Alpha::ActionMenu::SubMenuItem::GeneratedSlotMethods"
205
+ },
206
+ "Primer::Alpha::AutoComplete": {
207
+ "GeneratedSlotMethods": "Primer::Alpha::AutoComplete::GeneratedSlotMethods",
208
+ "Item": "Primer::Alpha::AutoComplete::Item"
209
+ },
210
+ "Primer::Alpha::AutoComplete::Item": {
211
+ "GeneratedSlotMethods": "Primer::Alpha::AutoComplete::Item::GeneratedSlotMethods"
212
+ },
213
+ "Primer::Alpha::Banner": {
214
+ "DEFAULT_DISMISS_LABEL": "Dismiss",
215
+ "DEFAULT_DISMISS_SCHEME": "none",
216
+ "DEFAULT_ICONS": {
217
+ "default": "bell",
218
+ "warning": "alert",
219
+ "danger": "stop",
220
+ "success": "check-circle",
221
+ "upsell": "info"
222
+ },
223
+ "DEFAULT_SCHEME": "default",
224
+ "DEFAULT_TAG": "div",
225
+ "DISMISS_SCHEMES": [
226
+ "none",
227
+ "remove",
228
+ "hide"
229
+ ],
230
+ "GeneratedSlotMethods": "Primer::Alpha::Banner::GeneratedSlotMethods",
231
+ "LEGACY_SCHEME_MAPPINGS": {
232
+ "default": "",
233
+ "warning": "flash-warn",
234
+ "danger": "flash-error",
235
+ "success": "flash-success"
236
+ },
237
+ "SCHEME_MAPPINGS": {
238
+ "default": "",
239
+ "warning": "Banner--warning",
240
+ "danger": "Banner--error",
241
+ "success": "Banner--success",
242
+ "upsell": "Banner--upsell"
243
+ },
244
+ "TAG_OPTIONS": [
245
+ "div",
246
+ "section"
247
+ ]
248
+ },
249
+ "Primer::Alpha::ButtonMarketing": {
250
+ "DEFAULT_SCHEME": "default",
251
+ "DEFAULT_TAG": "button",
252
+ "DEFAULT_TYPE": "button",
253
+ "DEFAULT_VARIANT": "default",
254
+ "GeneratedSlotMethods": "Primer::Alpha::ButtonMarketing::GeneratedSlotMethods",
255
+ "SCHEME_MAPPINGS": {
256
+ "default": "",
257
+ "primary": "btn-signup-mktg",
258
+ "outline": "btn-muted-mktg",
259
+ "transparent": "btn-subtle-mktg"
260
+ },
261
+ "SCHEME_OPTIONS": [
262
+ "default",
263
+ "primary",
264
+ "outline",
265
+ "transparent"
266
+ ],
267
+ "TAG_OPTIONS": [
268
+ "button",
269
+ "a"
270
+ ],
271
+ "TYPE_OPTIONS": [
272
+ "button",
273
+ "submit"
274
+ ],
275
+ "VARIANT_MAPPINGS": {
276
+ "default": "",
277
+ "large": "btn-large-mktg"
278
+ },
279
+ "VARIANT_OPTIONS": [
280
+ "default",
281
+ "large"
282
+ ]
283
+ },
284
+ "Primer::Alpha::CheckBox": {
285
+ "GeneratedSlotMethods": "Primer::Alpha::CheckBox::GeneratedSlotMethods"
286
+ },
287
+ "Primer::Alpha::CheckBoxGroup": {
288
+ "GeneratedSlotMethods": "Primer::Alpha::CheckBoxGroup::GeneratedSlotMethods"
289
+ },
290
+ "Primer::Alpha::Dialog": {
291
+ "Body": "Primer::Alpha::Dialog::Body",
292
+ "DEFAULT_POSITION": "center",
293
+ "DEFAULT_POSITION_NARROW": "inherit",
294
+ "DEFAULT_SIZE": "medium",
295
+ "Footer": "Primer::Alpha::Dialog::Footer",
296
+ "GeneratedSlotMethods": "Primer::Alpha::Dialog::GeneratedSlotMethods",
297
+ "Header": "Primer::Alpha::Dialog::Header",
298
+ "POSITION_MAPPINGS": {
299
+ "center": "",
300
+ "left": "Overlay--placement-left",
301
+ "right": "Overlay--placement-right"
302
+ },
303
+ "POSITION_NARROW_MAPPINGS": {
304
+ "inherit": "",
305
+ "bottom": "Overlay--placement-bottom-whenNarrow",
306
+ "fullscreen": "Overlay--full-whenNarrow",
307
+ "left": "Overlay--placement-left-whenNarrow",
308
+ "right": "Overlay--placement-right-whenNarrow"
309
+ },
310
+ "POSITION_NARROW_OPTIONS": [
311
+ "inherit",
312
+ "bottom",
313
+ "fullscreen",
314
+ "left",
315
+ "right"
316
+ ],
317
+ "POSITION_OPTIONS": [
318
+ "center",
319
+ "left",
320
+ "right"
321
+ ],
322
+ "SIZE_MAPPINGS": {
323
+ "small": "Overlay--size-small-portrait",
324
+ "medium_portrait": "Overlay--size-medium-portrait",
325
+ "medium": "Overlay--size-medium",
326
+ "large": "Overlay--size-large",
327
+ "xlarge": "Overlay--size-xlarge",
328
+ "auto": "Overlay--size-auto"
329
+ },
330
+ "SIZE_OPTIONS": [
331
+ "small",
332
+ "medium_portrait",
333
+ "medium",
334
+ "large",
335
+ "xlarge",
336
+ "auto"
337
+ ]
338
+ },
339
+ "Primer::Alpha::Dialog::Body": {
340
+ "GeneratedSlotMethods": "Primer::Alpha::Dialog::Body::GeneratedSlotMethods"
341
+ },
342
+ "Primer::Alpha::Dialog::Footer": {
343
+ "GeneratedSlotMethods": "Primer::Alpha::Dialog::Footer::GeneratedSlotMethods"
344
+ },
345
+ "Primer::Alpha::Dialog::Header": {
346
+ "DEFAULT_CLOSE_LABEL": "Close",
347
+ "DEFAULT_VARIANT": "medium",
348
+ "GeneratedSlotMethods": "Primer::Alpha::Dialog::Header::GeneratedSlotMethods",
349
+ "VARIANT_MAPPINGS": {
350
+ "medium": "",
351
+ "large": "Overlay-header--large"
352
+ },
353
+ "VARIANT_OPTIONS": [
354
+ "medium",
355
+ "large"
356
+ ]
357
+ },
358
+ "Primer::Alpha::Dropdown": {
359
+ "ARIA_LABEL_CLOSED_DEFAULT": "Open",
360
+ "ARIA_LABEL_OPEN_DEFAULT": "Close",
361
+ "GeneratedSlotMethods": "Primer::Alpha::Dropdown::GeneratedSlotMethods",
362
+ "Menu": "Primer::Alpha::Dropdown::Menu"
363
+ },
364
+ "Primer::Alpha::Dropdown::Menu": {
365
+ "AS_DEFAULT": "default",
366
+ "AS_OPTIONS": [
367
+ "default",
368
+ "list"
369
+ ],
370
+ "DIRECTION_DEFAULT": "se",
371
+ "DIRECTION_OPTIONS": [
372
+ "se",
373
+ "sw",
374
+ "w",
375
+ "e",
376
+ "ne",
377
+ "s"
378
+ ],
379
+ "GeneratedSlotMethods": "Primer::Alpha::Dropdown::Menu::GeneratedSlotMethods",
380
+ "Item": "Primer::Alpha::Dropdown::Menu::Item",
381
+ "SCHEME_DEFAULT": "default",
382
+ "SCHEME_MAPPINGS": {
383
+ "default": "",
384
+ "dark": "dropdown-menu-dark"
385
+ }
386
+ },
387
+ "Primer::Alpha::Dropdown::Menu::Item": {
388
+ "BUTTON_TAGS": [
389
+ "button",
390
+ "summary"
391
+ ],
392
+ "GeneratedSlotMethods": "Primer::Alpha::Dropdown::Menu::Item::GeneratedSlotMethods",
393
+ "TAG_DEFAULT": "a",
394
+ "TAG_OPTIONS": [
395
+ "a",
396
+ "button",
397
+ "summary"
398
+ ]
399
+ },
400
+ "Primer::Alpha::FileTreeView": {
401
+ "DirectoryNode": "Primer::Alpha::FileTreeView::DirectoryNode",
402
+ "FileNode": "Primer::Alpha::FileTreeView::FileNode",
403
+ "GeneratedSlotMethods": "Primer::Alpha::FileTreeView::GeneratedSlotMethods"
404
+ },
405
+ "Primer::Alpha::FileTreeView::DirectoryNode": {
406
+ "GeneratedSlotMethods": "Primer::Alpha::FileTreeView::DirectoryNode::GeneratedSlotMethods"
407
+ },
408
+ "Primer::Alpha::FileTreeView::FileNode": {
409
+ "GeneratedSlotMethods": "Primer::Alpha::FileTreeView::FileNode::GeneratedSlotMethods"
410
+ },
411
+ "Primer::Alpha::FormButton": {
412
+ "GeneratedSlotMethods": "Primer::Alpha::FormButton::GeneratedSlotMethods"
413
+ },
414
+ "Primer::Alpha::FormControl": {
415
+ "GeneratedSlotMethods": "Primer::Alpha::FormControl::GeneratedSlotMethods"
416
+ },
417
+ "Primer::Alpha::HellipButton": {
418
+ "GeneratedSlotMethods": "Primer::Alpha::HellipButton::GeneratedSlotMethods"
419
+ },
420
+ "Primer::Alpha::HiddenTextExpander": {
421
+ "GeneratedSlotMethods": "Primer::Alpha::HiddenTextExpander::GeneratedSlotMethods"
422
+ },
423
+ "Primer::Alpha::Image": {
424
+ "GeneratedSlotMethods": "Primer::Alpha::Image::GeneratedSlotMethods"
425
+ },
426
+ "Primer::Alpha::IncludeFragment": {
427
+ "ALLOWED_LOADING_VALUES": [
428
+ "lazy",
429
+ "eager"
430
+ ],
431
+ "DEFAULT_LOADING": "eager",
432
+ "GeneratedSlotMethods": "Primer::Alpha::IncludeFragment::GeneratedSlotMethods"
433
+ },
434
+ "Primer::Alpha::Layout": {
435
+ "FIRST_IN_SOURCE_DEFAULT": "sidebar",
436
+ "FIRST_IN_SOURCE_OPTIONS": [
437
+ "sidebar",
438
+ "main"
439
+ ],
440
+ "GUTTER_DEFAULT": "default",
441
+ "GUTTER_MAPPINGS": {
442
+ "none": "Layout--gutter-none",
443
+ "condensed": "Layout--gutter-condensed",
444
+ "spacious": "Layout--gutter-spacious",
445
+ "default": ""
446
+ },
447
+ "GUTTER_OPTIONS": [
448
+ "none",
449
+ "condensed",
450
+ "spacious",
451
+ "default"
452
+ ],
453
+ "GeneratedSlotMethods": "Primer::Alpha::Layout::GeneratedSlotMethods",
454
+ "Main": "Primer::Alpha::Layout::Main",
455
+ "SIDEBAR_COL_PLACEMENT_DEFAULT": "start",
456
+ "SIDEBAR_COL_PLACEMENT_OPTIONS": [
457
+ "start",
458
+ "end"
459
+ ],
460
+ "SIDEBAR_ROW_PLACEMENT_DEFAULT": "start",
461
+ "SIDEBAR_ROW_PLACEMENT_OPTIONS": [
462
+ "start",
463
+ "end",
464
+ "none"
465
+ ],
466
+ "SIDEBAR_WIDTH_DEFAULT": "default",
467
+ "SIDEBAR_WIDTH_MAPPINGS": {
468
+ "default": "",
469
+ "narrow": "Layout--sidebar-narrow",
470
+ "wide": "Layout--sidebar-wide"
471
+ },
472
+ "SIDEBAR_WIDTH_OPTIONS": [
473
+ "default",
474
+ "narrow",
475
+ "wide"
476
+ ],
477
+ "STACKING_BREAKPOINT_DEFAULT": "md",
478
+ "STACKING_BREAKPOINT_MAPPINGS": {
479
+ "sm": "",
480
+ "md": "Layout--flowRow-until-md",
481
+ "lg": "Layout--flowRow-until-lg"
482
+ },
483
+ "STACKING_BREAKPOINT_OPTIONS": [
484
+ "sm",
485
+ "md",
486
+ "lg"
487
+ ],
488
+ "Sidebar": "Primer::Alpha::Layout::Sidebar"
489
+ },
490
+ "Primer::Alpha::Layout::Main": {
491
+ "GeneratedSlotMethods": "Primer::Alpha::Layout::Main::GeneratedSlotMethods",
492
+ "TAG_DEFAULT": "div",
493
+ "TAG_OPTIONS": [
494
+ "div",
495
+ "main"
496
+ ],
497
+ "WIDTH_DEFAULT": "full",
498
+ "WIDTH_OPTIONS": [
499
+ "full",
500
+ "md",
501
+ "lg",
502
+ "xl"
503
+ ]
504
+ },
505
+ "Primer::Alpha::Layout::Sidebar": {
506
+ "GeneratedSlotMethods": "Primer::Alpha::Layout::Sidebar::GeneratedSlotMethods",
507
+ "TAG_DEFAULT": "div",
508
+ "TAG_OPTIONS": [
509
+ "div",
510
+ "aside",
511
+ "nav",
512
+ "section"
513
+ ]
514
+ },
515
+ "Primer::Alpha::Menu": {
516
+ "GeneratedSlotMethods": "Primer::Alpha::Menu::GeneratedSlotMethods",
517
+ "HEADING_TAG_FALLBACK": "h2",
518
+ "HEADING_TAG_OPTIONS": [
519
+ "h1",
520
+ "h2",
521
+ "h3",
522
+ "h4",
523
+ "h5",
524
+ "h6"
525
+ ]
526
+ },
527
+ "Primer::Alpha::MultiInput": {
528
+ "GeneratedSlotMethods": "Primer::Alpha::MultiInput::GeneratedSlotMethods"
529
+ },
530
+ "Primer::Alpha::NavList": {
531
+ "Divider": "Primer::Alpha::NavList::Divider",
532
+ "GeneratedSlotMethods": "Primer::Alpha::NavList::GeneratedSlotMethods",
533
+ "Group": "Primer::Alpha::NavList::Group",
534
+ "Heading": "Primer::Alpha::NavList::Heading",
535
+ "Item": "Primer::Alpha::NavList::Item"
536
+ },
537
+ "Primer::Alpha::NavList::Divider": {
538
+ "GeneratedSlotMethods": "Primer::Alpha::NavList::Divider::GeneratedSlotMethods"
539
+ },
540
+ "Primer::Alpha::NavList::Group": {
541
+ "GeneratedSlotMethods": "Primer::Alpha::NavList::Group::GeneratedSlotMethods"
542
+ },
543
+ "Primer::Alpha::NavList::Heading": {
544
+ "GeneratedSlotMethods": "Primer::Alpha::NavList::Heading::GeneratedSlotMethods"
545
+ },
546
+ "Primer::Alpha::NavList::Item": {
547
+ "GeneratedSlotMethods": "Primer::Alpha::NavList::Item::GeneratedSlotMethods"
548
+ },
549
+ "Primer::Alpha::Navigation::Tab": {
550
+ "ARIA_CURRENT_OPTIONS_FOR_ANCHOR": [
551
+ true,
552
+ "page"
553
+ ],
554
+ "DEFAULT_ARIA_CURRENT_FOR_ANCHOR": "page",
555
+ "GeneratedSlotMethods": "Primer::Alpha::Navigation::Tab::GeneratedSlotMethods"
556
+ },
557
+ "Primer::Alpha::OcticonSymbols": {
558
+ "GeneratedSlotMethods": "Primer::Alpha::OcticonSymbols::GeneratedSlotMethods"
559
+ },
560
+ "Primer::Alpha::Overlay": {
561
+ "ALIGN_CONTENT_MAPPINGS": {
562
+ "start": "Overlay-footer--alignStart",
563
+ "center": "Overlay-footer--alignCenter",
564
+ "end": "Overlay-footer--alignEnd"
565
+ },
566
+ "ALIGN_CONTENT_OPTIONS": [
567
+ "start",
568
+ "center",
569
+ "end"
570
+ ],
571
+ "ANCHOR_ALIGN_OPTIONS": [
572
+ "start",
573
+ "center",
574
+ "end"
575
+ ],
576
+ "ANCHOR_OFFSET_OPTIONS": [
577
+ "normal",
578
+ "spacious"
579
+ ],
580
+ "ANCHOR_SIDE_MAPPINGS": {
581
+ "inside_top": "inside-top",
582
+ "inside_bottom": "inside-bottom",
583
+ "inside_left": "inside-left",
584
+ "inside_right": "inside-right",
585
+ "inside_center": "inside-center",
586
+ "outside_top": "outside-top",
587
+ "outside_bottom": "outside-bottom",
588
+ "outside_left": "outside-left",
589
+ "outside_right": "outside-right"
590
+ },
591
+ "ANCHOR_SIDE_OPTIONS": [
592
+ "inside_top",
593
+ "inside_bottom",
594
+ "inside_left",
595
+ "inside_right",
596
+ "inside_center",
597
+ "outside_top",
598
+ "outside_bottom",
599
+ "outside_left",
600
+ "outside_right"
601
+ ],
602
+ "Body": "Primer::Alpha::Overlay::Body",
603
+ "DEFAULT_ALIGN_CONTENT": "end",
604
+ "DEFAULT_ANCHOR_ALIGN": "start",
605
+ "DEFAULT_ANCHOR_OFFSET": "normal",
606
+ "DEFAULT_ANCHOR_SIDE": "outside_bottom",
607
+ "DEFAULT_PADDING": "normal",
608
+ "DEFAULT_POPOVER": "auto",
609
+ "DEFAULT_SIZE": "auto",
610
+ "Footer": "Primer::Alpha::Overlay::Footer",
611
+ "GeneratedSlotMethods": "Primer::Alpha::Overlay::GeneratedSlotMethods",
612
+ "Header": "Primer::Alpha::Overlay::Header",
613
+ "PADDING_MAPPINGS": {
614
+ "normal": null,
615
+ "condensed": "Overlay-body--paddingCondensed",
616
+ "none": "Overlay-body--paddingNone"
617
+ },
618
+ "PADDING_OPTIONS": [
619
+ "normal",
620
+ "condensed",
621
+ "none"
622
+ ],
623
+ "POPOVER_OPTIONS": [
624
+ "auto",
625
+ "manual"
626
+ ],
627
+ "ROLE_OPTIONS": [
628
+ "dialog",
629
+ "menu",
630
+ null
631
+ ],
632
+ "SIZE_MAPPINGS": {
633
+ "auto": "Overlay--size-auto",
634
+ "small": "Overlay--size-small",
635
+ "medium": "Overlay--size-medium",
636
+ "medium_portrait": "Overlay--size-medium-portrait",
637
+ "large": "Overlay--size-large",
638
+ "xlarge": "Overlay--size-xlarge"
639
+ },
640
+ "SIZE_OPTIONS": [
641
+ "auto",
642
+ "small",
643
+ "medium",
644
+ "medium_portrait",
645
+ "large",
646
+ "xlarge"
647
+ ]
648
+ },
649
+ "Primer::Alpha::Overlay::Body": {
650
+ "GeneratedSlotMethods": "Primer::Alpha::Overlay::Body::GeneratedSlotMethods"
651
+ },
652
+ "Primer::Alpha::Overlay::Footer": {
653
+ "GeneratedSlotMethods": "Primer::Alpha::Overlay::Footer::GeneratedSlotMethods"
654
+ },
655
+ "Primer::Alpha::Overlay::Header": {
656
+ "DEFAULT_SIZE": "medium",
657
+ "GeneratedSlotMethods": "Primer::Alpha::Overlay::Header::GeneratedSlotMethods",
658
+ "SIZE_MAPPINGS": {
659
+ "medium": null,
660
+ "large": "Overlay-header--large"
661
+ },
662
+ "SIZE_OPTIONS": [
663
+ "medium",
664
+ "large"
665
+ ]
666
+ },
667
+ "Primer::Alpha::RadioButton": {
668
+ "GeneratedSlotMethods": "Primer::Alpha::RadioButton::GeneratedSlotMethods"
669
+ },
670
+ "Primer::Alpha::RadioButtonGroup": {
671
+ "GeneratedSlotMethods": "Primer::Alpha::RadioButtonGroup::GeneratedSlotMethods"
672
+ },
673
+ "Primer::Alpha::SegmentedControl": {
674
+ "DEFAULT_SIZE": "medium",
675
+ "FULL_WIDTH_DEFAULT": false,
676
+ "GeneratedSlotMethods": "Primer::Alpha::SegmentedControl::GeneratedSlotMethods",
677
+ "HIDE_LABELS_DEFAULT": false,
678
+ "Item": "Primer::Alpha::SegmentedControl::Item",
679
+ "SIZE_MAPPINGS": {
680
+ "small": "SegmentedControl--small",
681
+ "medium": "SegmentedControl--medium"
682
+ },
683
+ "SIZE_OPTIONS": [
684
+ "small",
685
+ "medium"
686
+ ]
687
+ },
688
+ "Primer::Alpha::SegmentedControl::Item": {
689
+ "GeneratedSlotMethods": "Primer::Alpha::SegmentedControl::Item::GeneratedSlotMethods"
690
+ },
691
+ "Primer::Alpha::Select": {
692
+ "GeneratedSlotMethods": "Primer::Alpha::Select::GeneratedSlotMethods"
693
+ },
694
+ "Primer::Alpha::SelectPanel": {
695
+ "BANNER_SCHEME_OPTIONS": [
696
+ "danger",
697
+ "warning"
698
+ ],
699
+ "DEFAULT_BANNER_SCHEME": "danger",
700
+ "DEFAULT_FETCH_STRATEGY": "remote",
701
+ "DEFAULT_PRELOAD": false,
702
+ "DEFAULT_SELECT_VARIANT": "single",
703
+ "FETCH_STRATEGIES": [
704
+ "remote",
705
+ "eventually_local",
706
+ "local"
707
+ ],
708
+ "GeneratedSlotMethods": "Primer::Alpha::SelectPanel::GeneratedSlotMethods",
709
+ "ItemList": "Primer::Alpha::SelectPanel::ItemList",
710
+ "SELECT_VARIANT_OPTIONS": [
711
+ "single",
712
+ "multiple",
713
+ "none"
714
+ ],
715
+ "Utils": "Primer::Alpha::SelectPanel::Utils"
716
+ },
717
+ "Primer::Alpha::SelectPanel::ItemList": {
718
+ "GeneratedSlotMethods": "Primer::Alpha::SelectPanel::ItemList::GeneratedSlotMethods"
719
+ },
720
+ "Primer::Alpha::SkeletonBox": {
721
+ "GeneratedSlotMethods": "Primer::Alpha::SkeletonBox::GeneratedSlotMethods"
722
+ },
723
+ "Primer::Alpha::Stack": {
724
+ "ARG_CLASSES": [
725
+ "Primer::Alpha::Stack::JustifyArg",
726
+ "Primer::Alpha::Stack::DirectionArg",
727
+ "Primer::Alpha::Stack::AlignArg",
728
+ "Primer::Alpha::Stack::WrapArg",
729
+ "Primer::Alpha::Stack::PaddingArg",
730
+ "Primer::Alpha::Stack::GapArg"
731
+ ],
732
+ "AlignArg": "Primer::Alpha::Stack::AlignArg",
733
+ "DEFAULT_TAG": "div",
734
+ "DirectionArg": "Primer::Alpha::Stack::DirectionArg",
735
+ "GapArg": "Primer::Alpha::Stack::GapArg",
736
+ "GeneratedSlotMethods": "Primer::Alpha::Stack::GeneratedSlotMethods",
737
+ "JustifyArg": "Primer::Alpha::Stack::JustifyArg",
738
+ "PaddingArg": "Primer::Alpha::Stack::PaddingArg",
739
+ "WrapArg": "Primer::Alpha::Stack::WrapArg"
740
+ },
741
+ "Primer::Alpha::StackItem": {
742
+ "ARG_CLASSES": [
743
+ "Primer::Alpha::StackItem::GrowArg"
744
+ ],
745
+ "DEFAULT_TAG": "div",
746
+ "GeneratedSlotMethods": "Primer::Alpha::StackItem::GeneratedSlotMethods",
747
+ "GrowArg": "Primer::Alpha::StackItem::GrowArg"
748
+ },
749
+ "Primer::Alpha::SubmitButton": {
750
+ "GeneratedSlotMethods": "Primer::Alpha::SubmitButton::GeneratedSlotMethods"
751
+ },
752
+ "Primer::Alpha::TabContainer": {
753
+ "GeneratedSlotMethods": "Primer::Alpha::TabContainer::GeneratedSlotMethods"
754
+ },
755
+ "Primer::Alpha::TabNav": {
756
+ "BODY_TAG_DEFAULT": "ul",
757
+ "GeneratedSlotMethods": "Primer::Alpha::TabNav::GeneratedSlotMethods",
758
+ "TAG_DEFAULT": "nav",
759
+ "TAG_OPTIONS": [
760
+ "nav",
761
+ "div"
762
+ ]
763
+ },
764
+ "Primer::Alpha::TabPanels": {
765
+ "BODY_TAG_DEFAULT": "ul",
766
+ "GeneratedSlotMethods": "Primer::Alpha::TabPanels::GeneratedSlotMethods",
767
+ "TAG_DEFAULT": "nav",
768
+ "TAG_OPTIONS": [
769
+ "nav",
770
+ "div"
771
+ ]
772
+ },
773
+ "Primer::Alpha::TextArea": {
774
+ "GeneratedSlotMethods": "Primer::Alpha::TextArea::GeneratedSlotMethods"
775
+ },
776
+ "Primer::Alpha::TextField": {
777
+ "GeneratedSlotMethods": "Primer::Alpha::TextField::GeneratedSlotMethods"
778
+ },
779
+ "Primer::Alpha::ToggleSwitch": {
780
+ "GeneratedSlotMethods": "Primer::Alpha::ToggleSwitch::GeneratedSlotMethods",
781
+ "SIZE_DEFAULT": "medium",
782
+ "SIZE_MAPPINGS": {
783
+ "medium": null,
784
+ "small": "ToggleSwitch--small"
785
+ },
786
+ "SIZE_OPTIONS": [
787
+ "medium",
788
+ "small"
789
+ ],
790
+ "STATUS_LABEL_POSITION_DEFAULT": "start",
791
+ "STATUS_LABEL_POSITION_MAPPINGS": {
792
+ "start": null,
793
+ "end": "ToggleSwitch--statusAtEnd"
794
+ },
795
+ "STATUS_LABEL_POSITION_OPTIONS": [
796
+ "start",
797
+ "end"
798
+ ]
799
+ },
800
+ "Primer::Alpha::Tooltip": {
801
+ "DIRECTION_DEFAULT": "s",
802
+ "DIRECTION_OPTIONS": [
803
+ "s",
804
+ "n",
805
+ "e",
806
+ "w",
807
+ "ne",
808
+ "nw",
809
+ "se",
810
+ "sw"
811
+ ],
812
+ "GeneratedSlotMethods": "Primer::Alpha::Tooltip::GeneratedSlotMethods",
813
+ "TYPE_FALLBACK": "description",
814
+ "TYPE_OPTIONS": [
815
+ "label",
816
+ "description"
817
+ ]
818
+ },
819
+ "Primer::Alpha::TreeView": {
820
+ "DEFAULT_NODE_VARIANT": "div",
821
+ "GeneratedSlotMethods": "Primer::Alpha::TreeView::GeneratedSlotMethods",
822
+ "Icon": "Primer::Alpha::TreeView::Icon",
823
+ "IconPair": "Primer::Alpha::TreeView::IconPair",
824
+ "LeadingAction": "Primer::Alpha::TreeView::LeadingAction",
825
+ "LeafNode": "Primer::Alpha::TreeView::LeafNode",
826
+ "LoadingFailureMessage": "Primer::Alpha::TreeView::LoadingFailureMessage",
827
+ "NODE_VARIANT_OPTIONS": [
828
+ "div",
829
+ "anchor",
830
+ "button"
831
+ ],
832
+ "Node": "Primer::Alpha::TreeView::Node",
833
+ "SkeletonLoader": "Primer::Alpha::TreeView::SkeletonLoader",
834
+ "SpinnerLoader": "Primer::Alpha::TreeView::SpinnerLoader",
835
+ "SubTree": "Primer::Alpha::TreeView::SubTree",
836
+ "SubTreeContainer": "Primer::Alpha::TreeView::SubTreeContainer",
837
+ "SubTreeNode": "Primer::Alpha::TreeView::SubTreeNode",
838
+ "Visual": "Primer::Alpha::TreeView::Visual"
839
+ },
840
+ "Primer::Alpha::TreeView::Icon": {
841
+ "GeneratedSlotMethods": "Primer::Alpha::TreeView::Icon::GeneratedSlotMethods"
842
+ },
843
+ "Primer::Alpha::TreeView::IconPair": {
844
+ "GeneratedSlotMethods": "Primer::Alpha::TreeView::IconPair::GeneratedSlotMethods"
845
+ },
846
+ "Primer::Alpha::TreeView::LeadingAction": {
847
+ "GeneratedSlotMethods": "Primer::Alpha::TreeView::LeadingAction::GeneratedSlotMethods"
848
+ },
849
+ "Primer::Alpha::TreeView::LeafNode": {
850
+ "GeneratedSlotMethods": "Primer::Alpha::TreeView::LeafNode::GeneratedSlotMethods"
851
+ },
852
+ "Primer::Alpha::TreeView::LoadingFailureMessage": {
853
+ "DEFAULT_RETRY_BUTTON_LABEL": "Retry",
854
+ "DEFAULT_TEXT": "Something went wrong",
855
+ "GeneratedSlotMethods": "Primer::Alpha::TreeView::LoadingFailureMessage::GeneratedSlotMethods"
856
+ },
857
+ "Primer::Alpha::TreeView::Node": {
858
+ "CHECKED_STATES": [
859
+ false,
860
+ true,
861
+ "mixed"
862
+ ],
863
+ "DEFAULT_CHECKED_STATE": false,
864
+ "DEFAULT_NODE_VARIANT": "div",
865
+ "DEFAULT_SELECT_VARIANT": "none",
866
+ "GeneratedSlotMethods": "Primer::Alpha::TreeView::Node::GeneratedSlotMethods",
867
+ "NODE_VARIANT_TAG_MAP": {
868
+ "div": "div",
869
+ "button": "button",
870
+ "anchor": "a"
871
+ },
872
+ "NODE_VARIANT_TAG_OPTIONS": [
873
+ "div",
874
+ "button",
875
+ "anchor"
876
+ ],
877
+ "SELECT_VARIANT_OPTIONS": [
878
+ "multiple",
879
+ "none"
880
+ ]
881
+ },
882
+ "Primer::Alpha::TreeView::SkeletonLoader": {
883
+ "GeneratedSlotMethods": "Primer::Alpha::TreeView::SkeletonLoader::GeneratedSlotMethods"
884
+ },
885
+ "Primer::Alpha::TreeView::SpinnerLoader": {
886
+ "GeneratedSlotMethods": "Primer::Alpha::TreeView::SpinnerLoader::GeneratedSlotMethods"
887
+ },
888
+ "Primer::Alpha::TreeView::SubTree": {
889
+ "GeneratedSlotMethods": "Primer::Alpha::TreeView::SubTree::GeneratedSlotMethods"
890
+ },
891
+ "Primer::Alpha::TreeView::SubTreeContainer": {
892
+ "GeneratedSlotMethods": "Primer::Alpha::TreeView::SubTreeContainer::GeneratedSlotMethods"
893
+ },
894
+ "Primer::Alpha::TreeView::SubTreeNode": {
895
+ "DEFAULT_SELECT_STRATEGY": "mixed_descendants",
896
+ "GeneratedSlotMethods": "Primer::Alpha::TreeView::SubTreeNode::GeneratedSlotMethods",
897
+ "SELECT_STRATEGIES": [
898
+ "self",
899
+ "mixed_descendants",
900
+ "descendants"
901
+ ]
902
+ },
903
+ "Primer::Alpha::TreeView::Visual": {
904
+ "GeneratedSlotMethods": "Primer::Alpha::TreeView::Visual::GeneratedSlotMethods"
905
+ },
906
+ "Primer::Alpha::UnderlineNav": {
907
+ "BODY_TAG_DEFAULT": "ul",
908
+ "GeneratedSlotMethods": "Primer::Alpha::UnderlineNav::GeneratedSlotMethods",
909
+ "TAG_DEFAULT": "nav",
910
+ "TAG_OPTIONS": [
911
+ "nav",
912
+ "div"
913
+ ]
914
+ },
915
+ "Primer::Alpha::UnderlinePanels": {
916
+ "GeneratedSlotMethods": "Primer::Alpha::UnderlinePanels::GeneratedSlotMethods"
917
+ },
918
+ "Primer::BaseComponent": {
919
+ "GeneratedSlotMethods": "Primer::BaseComponent::GeneratedSlotMethods",
920
+ "SELF_CLOSING_TAGS": [
921
+ "area",
922
+ "base",
923
+ "br",
924
+ "col",
925
+ "embed",
926
+ "hr",
927
+ "img",
928
+ "input",
929
+ "link",
930
+ "meta",
931
+ "param",
932
+ "source",
933
+ "track",
934
+ "wbr"
935
+ ]
936
+ },
937
+ "Primer::Beta::AutoComplete": {
938
+ "DEFAULT_SIZE": "medium",
939
+ "DEFAULT_WIDTH": "auto",
940
+ "GeneratedSlotMethods": "Primer::Beta::AutoComplete::GeneratedSlotMethods",
941
+ "Item": "Primer::Beta::AutoComplete::Item",
942
+ "NoResultItem": "Primer::Beta::AutoComplete::NoResultItem",
943
+ "SIZE_MAPPINGS": {
944
+ "small": "FormControl-small",
945
+ "medium": "FormControl-medium",
946
+ "large": "FormControl-large"
947
+ },
948
+ "SIZE_OPTIONS": [
949
+ "small",
950
+ "medium",
951
+ "large"
952
+ ],
953
+ "WIDTH_MAPPINGS": {
954
+ "auto": "Overlay--width-auto",
955
+ "small": "Overlay--width-small",
956
+ "medium": "Overlay--width-medium",
957
+ "large": "Overlay--width-large",
958
+ "xlarge": "Overlay--width-xlarge",
959
+ "xxlarge": "Overlay--width-xxlarge"
960
+ },
961
+ "WIDTH_OPTIONS": [
962
+ "auto",
963
+ "small",
964
+ "medium",
965
+ "large",
966
+ "xlarge",
967
+ "xxlarge"
968
+ ]
969
+ },
970
+ "Primer::Beta::AutoComplete::Item": {
971
+ "DEFAULT_DESCRIPTION_VARIANT": "block",
972
+ "DESCRIPTION_VARIANT_MAPPINGS": {
973
+ "inline": "ActionListItem-descriptionWrap--inline",
974
+ "block": "ActionListItem-descriptionWrap"
975
+ },
976
+ "DESCRIPTION_VARIANT_OPTIONS": [
977
+ "inline",
978
+ "block"
979
+ ],
980
+ "GeneratedSlotMethods": "Primer::Beta::AutoComplete::Item::GeneratedSlotMethods"
981
+ },
982
+ "Primer::Beta::AutoComplete::NoResultItem": {
983
+ "GeneratedSlotMethods": "Primer::Beta::AutoComplete::NoResultItem::GeneratedSlotMethods"
984
+ },
985
+ "Primer::Beta::Avatar": {
986
+ "DEFAULT_SHAPE": "circle",
987
+ "DEFAULT_SIZE": 20,
988
+ "GeneratedSlotMethods": "Primer::Beta::Avatar::GeneratedSlotMethods",
989
+ "SHAPE_OPTIONS": [
990
+ "circle",
991
+ "square"
992
+ ],
993
+ "SIZE_OPTIONS": [
994
+ 16,
995
+ 20,
996
+ 24,
997
+ 32,
998
+ 40,
999
+ 48,
1000
+ 64,
1001
+ 80
1002
+ ],
1003
+ "SMALL_THRESHOLD": 24
1004
+ },
1005
+ "Primer::Beta::AvatarStack": {
1006
+ "ALIGN_DEFAULT": "left",
1007
+ "ALIGN_OPTIONS": [
1008
+ "left",
1009
+ "right"
1010
+ ],
1011
+ "BODY_TAG_OPTIONS": [
1012
+ "div",
1013
+ "span"
1014
+ ],
1015
+ "DEFAULT_BODY_TAG": "div",
1016
+ "DEFAULT_TAG": "div",
1017
+ "GeneratedSlotMethods": "Primer::Beta::AvatarStack::GeneratedSlotMethods",
1018
+ "TAG_OPTIONS": [
1019
+ "div",
1020
+ "span"
1021
+ ]
1022
+ },
1023
+ "Primer::Beta::BaseButton": {
1024
+ "DEFAULT_TAG": "button",
1025
+ "DEFAULT_TYPE": "button",
1026
+ "GeneratedSlotMethods": "Primer::Beta::BaseButton::GeneratedSlotMethods",
1027
+ "TAG_OPTIONS": [
1028
+ "button",
1029
+ "a",
1030
+ "summary",
1031
+ "clipboard-copy"
1032
+ ],
1033
+ "TYPE_OPTIONS": [
1034
+ "button",
1035
+ "reset",
1036
+ "submit"
1037
+ ]
1038
+ },
1039
+ "Primer::Beta::Blankslate": {
1040
+ "GeneratedSlotMethods": "Primer::Beta::Blankslate::GeneratedSlotMethods",
1041
+ "VISUAL_OPTIONS": [
1042
+ "icon",
1043
+ "spinner",
1044
+ "image"
1045
+ ]
1046
+ },
1047
+ "Primer::Beta::BorderBox": {
1048
+ "DEFAULT_PADDING": "default",
1049
+ "DEFAULT_ROW_SCHEME": "default",
1050
+ "GeneratedSlotMethods": "Primer::Beta::BorderBox::GeneratedSlotMethods",
1051
+ "Header": "Primer::Beta::BorderBox::Header",
1052
+ "PADDING_MAPPINGS": {
1053
+ "default": "",
1054
+ "condensed": "Box--condensed",
1055
+ "spacious": "Box--spacious"
1056
+ },
1057
+ "PADDING_SUGGESTION": "Perhaps you could consider using :padding options of default, condensed, and spacious?",
1058
+ "ROW_SCHEME_MAPPINGS": {
1059
+ "default": "",
1060
+ "neutral": "Box-row--gray",
1061
+ "info": "Box-row--blue",
1062
+ "warning": "Box-row--yellow"
1063
+ }
1064
+ },
1065
+ "Primer::Beta::BorderBox::Header": {
1066
+ "GeneratedSlotMethods": "Primer::Beta::BorderBox::Header::GeneratedSlotMethods",
1067
+ "TITLE_TAG_FALLBACK": "h2",
1068
+ "TITLE_TAG_OPTIONS": [
1069
+ "h1",
1070
+ "h2",
1071
+ "h3",
1072
+ "h4",
1073
+ "h5",
1074
+ "h6"
1075
+ ]
1076
+ },
1077
+ "Primer::Beta::Breadcrumbs": {
1078
+ "ARGS_DENYLIST": {
1079
+ "[:p, :pt, :pb, :pr, :pl, :px, :py]": "Padding system arguments are not allowed on Breadcrumbs. Consider using margins instead.",
1080
+ "[:font_size]": "Breadcrumbs do not support the font_size system argument."
1081
+ },
1082
+ "ARIA_LABEL": {
1083
+ "label": "Breadcrumb"
1084
+ },
1085
+ "FONT_SIZE_MESSAGE": "Breadcrumbs do not support the font_size system argument.",
1086
+ "GeneratedSlotMethods": "Primer::Beta::Breadcrumbs::GeneratedSlotMethods",
1087
+ "Item": "Primer::Beta::Breadcrumbs::Item",
1088
+ "PADDING_MESSAGE": "Padding system arguments are not allowed on Breadcrumbs. Consider using margins instead."
1089
+ },
1090
+ "Primer::Beta::Breadcrumbs::Item": {
1091
+ "GeneratedSlotMethods": "Primer::Beta::Breadcrumbs::Item::GeneratedSlotMethods"
1092
+ },
1093
+ "Primer::Beta::Button": {
1094
+ "ALIGN_CONTENT_MAPPINGS": {
1095
+ "start": "Button-content--alignStart",
1096
+ "center": ""
1097
+ },
1098
+ "ALIGN_CONTENT_OPTIONS": [
1099
+ "start",
1100
+ "center"
1101
+ ],
1102
+ "DEFAULT_ALIGN_CONTENT": "center",
1103
+ "DEFAULT_SCHEME": "default",
1104
+ "DEFAULT_SIZE": "medium",
1105
+ "GeneratedSlotMethods": "Primer::Beta::Button::GeneratedSlotMethods",
1106
+ "SCHEME_MAPPINGS": {
1107
+ "default": "Button--secondary",
1108
+ "primary": "Button--primary",
1109
+ "secondary": "Button--secondary",
1110
+ "danger": "Button--danger",
1111
+ "invisible": "Button--invisible",
1112
+ "link": "Button--link"
1113
+ },
1114
+ "SCHEME_OPTIONS": [
1115
+ "default",
1116
+ "primary",
1117
+ "secondary",
1118
+ "danger",
1119
+ "invisible",
1120
+ "link"
1121
+ ],
1122
+ "SIZE_MAPPINGS": {
1123
+ "small": "Button--small",
1124
+ "medium": "Button--medium",
1125
+ "large": "Button--large"
1126
+ },
1127
+ "SIZE_OPTIONS": [
1128
+ "small",
1129
+ "medium",
1130
+ "large"
1131
+ ]
1132
+ },
1133
+ "Primer::Beta::ButtonGroup": {
1134
+ "GeneratedSlotMethods": "Primer::Beta::ButtonGroup::GeneratedSlotMethods",
1135
+ "MenuButton": "Primer::Beta::ButtonGroup::MenuButton"
1136
+ },
1137
+ "Primer::Beta::ButtonGroup::MenuButton": {
1138
+ "GeneratedSlotMethods": "Primer::Beta::ButtonGroup::MenuButton::GeneratedSlotMethods"
1139
+ },
1140
+ "Primer::Beta::ClipboardCopy": {
1141
+ "GeneratedSlotMethods": "Primer::Beta::ClipboardCopy::GeneratedSlotMethods"
1142
+ },
1143
+ "Primer::Beta::ClipboardCopyBaseButton": {
1144
+ "GeneratedSlotMethods": "Primer::Beta::ClipboardCopyBaseButton::GeneratedSlotMethods"
1145
+ },
1146
+ "Primer::Beta::ClipboardCopyButton": {
1147
+ "GeneratedSlotMethods": "Primer::Beta::ClipboardCopyButton::GeneratedSlotMethods"
1148
+ },
1149
+ "Primer::Beta::CloseButton": {
1150
+ "DEFAULT_TYPE": "button",
1151
+ "GeneratedSlotMethods": "Primer::Beta::CloseButton::GeneratedSlotMethods",
1152
+ "TYPE_OPTIONS": [
1153
+ "button",
1154
+ "submit"
1155
+ ]
1156
+ },
1157
+ "Primer::Beta::Counter": {
1158
+ "DEFAULT_SCHEME": "default",
1159
+ "DEPRECATED_SCHEME_OPTIONS": [
1160
+ "gray",
1161
+ "light_gray"
1162
+ ],
1163
+ "GeneratedSlotMethods": "Primer::Beta::Counter::GeneratedSlotMethods",
1164
+ "SCHEME_MAPPINGS": {
1165
+ "default": "",
1166
+ "primary": "Counter--primary",
1167
+ "secondary": "Counter--secondary",
1168
+ "gray": "Counter--primary",
1169
+ "light_gray": "Counter--secondary"
1170
+ },
1171
+ "SCHEME_OPTIONS": [
1172
+ "default",
1173
+ "primary",
1174
+ "secondary"
1175
+ ]
1176
+ },
1177
+ "Primer::Beta::Details": {
1178
+ "ARIA_LABEL_CLOSED_DEFAULT": "Expand",
1179
+ "ARIA_LABEL_OPEN_DEFAULT": "Collapse",
1180
+ "BODY_TAG_DEFAULT": "div",
1181
+ "BODY_TAG_OPTIONS": [
1182
+ "ul",
1183
+ "details-menu",
1184
+ "details-dialog",
1185
+ "div"
1186
+ ],
1187
+ "GeneratedSlotMethods": "Primer::Beta::Details::GeneratedSlotMethods",
1188
+ "NO_OVERLAY": "none",
1189
+ "OVERLAY_MAPPINGS": {
1190
+ "none": "",
1191
+ "default": "details-overlay",
1192
+ "dark": "details-overlay details-overlay-dark"
1193
+ }
1194
+ },
1195
+ "Primer::Beta::Flash": {
1196
+ "DEFAULT_SCHEME": "default",
1197
+ "GeneratedSlotMethods": "Primer::Beta::Flash::GeneratedSlotMethods",
1198
+ "SCHEME_MAPPINGS": {
1199
+ "default": "",
1200
+ "warning": "flash-warn",
1201
+ "danger": "flash-error",
1202
+ "success": "flash-success"
1203
+ }
1204
+ },
1205
+ "Primer::Beta::Heading": {
1206
+ "GeneratedSlotMethods": "Primer::Beta::Heading::GeneratedSlotMethods",
1207
+ "TAG_FALLBACK": "h2",
1208
+ "TAG_OPTIONS": [
1209
+ "h1",
1210
+ "h2",
1211
+ "h3",
1212
+ "h4",
1213
+ "h5",
1214
+ "h6"
1215
+ ]
1216
+ },
1217
+ "Primer::Beta::IconButton": {
1218
+ "DEFAULT_SCHEME": "default",
1219
+ "GeneratedSlotMethods": "Primer::Beta::IconButton::GeneratedSlotMethods",
1220
+ "SCHEME_MAPPINGS": {
1221
+ "default": "Button--secondary",
1222
+ "primary": "Button--primary",
1223
+ "secondary": "Button--secondary",
1224
+ "danger": "Button--danger",
1225
+ "invisible": "Button--invisible"
1226
+ },
1227
+ "SCHEME_OPTIONS": [
1228
+ "default",
1229
+ "primary",
1230
+ "secondary",
1231
+ "danger",
1232
+ "invisible"
1233
+ ]
1234
+ },
1235
+ "Primer::Beta::Label": {
1236
+ "DEFAULT_SCHEME": "default",
1237
+ "DEFAULT_SIZE": "medium",
1238
+ "DEFAULT_TAG": "span",
1239
+ "DEFAULT_VARIANT": "none",
1240
+ "DEPRECATED_SCHEME_OPTIONS": [
1241
+ "info",
1242
+ "warning",
1243
+ "orange",
1244
+ "purple"
1245
+ ],
1246
+ "DEPRECATED_VARIANT_OPTIONS": [
1247
+ "large",
1248
+ "inline"
1249
+ ],
1250
+ "GeneratedSlotMethods": "Primer::Beta::Label::GeneratedSlotMethods",
1251
+ "INLINE_CLASS": "Label--inline",
1252
+ "SCHEME_MAPPINGS": {
1253
+ "default": "",
1254
+ "primary": "Label--primary",
1255
+ "secondary": "Label--secondary",
1256
+ "accent": "Label--accent",
1257
+ "success": "Label--success",
1258
+ "attention": "Label--attention",
1259
+ "danger": "Label--danger",
1260
+ "severe": "Label--severe",
1261
+ "done": "Label--done",
1262
+ "sponsors": "Label--sponsors",
1263
+ "info": "Label--info",
1264
+ "warning": "Label--warning",
1265
+ "orange": "Label--orange",
1266
+ "purple": "Label--purple"
1267
+ },
1268
+ "SCHEME_OPTIONS": [
1269
+ "default",
1270
+ "primary",
1271
+ "secondary",
1272
+ "accent",
1273
+ "success",
1274
+ "attention",
1275
+ "danger",
1276
+ "severe",
1277
+ "done",
1278
+ "sponsors"
1279
+ ],
1280
+ "SIZE_MAPPINGS": {
1281
+ "medium": null,
1282
+ "large": "Label--large"
1283
+ },
1284
+ "SIZE_OPTIONS": [
1285
+ "medium",
1286
+ "large"
1287
+ ],
1288
+ "TAG_OPTIONS": [
1289
+ "span",
1290
+ "summary",
1291
+ "a",
1292
+ "div"
1293
+ ],
1294
+ "VARIANT_OPTIONS": [
1295
+ "none"
1296
+ ]
1297
+ },
1298
+ "Primer::Beta::Link": {
1299
+ "DEFAULT_SCHEME": "default",
1300
+ "GeneratedSlotMethods": "Primer::Beta::Link::GeneratedSlotMethods",
1301
+ "SCHEME_MAPPINGS": {
1302
+ "default": "",
1303
+ "primary": "Link--primary",
1304
+ "secondary": "Link--secondary"
1305
+ }
1306
+ },
1307
+ "Primer::Beta::Markdown": {
1308
+ "DEFAULT_TAG": "div",
1309
+ "GeneratedSlotMethods": "Primer::Beta::Markdown::GeneratedSlotMethods",
1310
+ "TAG_OPTIONS": [
1311
+ "div",
1312
+ "article",
1313
+ "td"
1314
+ ]
1315
+ },
1316
+ "Primer::Beta::NavList": {
1317
+ "Divider": "Primer::Beta::NavList::Divider",
1318
+ "GeneratedSlotMethods": "Primer::Beta::NavList::GeneratedSlotMethods",
1319
+ "Group": "Primer::Beta::NavList::Group",
1320
+ "Heading": "Primer::Beta::NavList::Heading",
1321
+ "Item": "Primer::Beta::NavList::Item"
1322
+ },
1323
+ "Primer::Beta::NavList::Divider": {
1324
+ "GeneratedSlotMethods": "Primer::Beta::NavList::Divider::GeneratedSlotMethods"
1325
+ },
1326
+ "Primer::Beta::NavList::Group": {
1327
+ "GeneratedSlotMethods": "Primer::Beta::NavList::Group::GeneratedSlotMethods"
1328
+ },
1329
+ "Primer::Beta::NavList::Heading": {
1330
+ "GeneratedSlotMethods": "Primer::Beta::NavList::Heading::GeneratedSlotMethods"
1331
+ },
1332
+ "Primer::Beta::NavList::Item": {
1333
+ "GeneratedSlotMethods": "Primer::Beta::NavList::Item::GeneratedSlotMethods"
1334
+ },
1335
+ "Primer::Beta::Octicon": {
1336
+ "GeneratedSlotMethods": "Primer::Beta::Octicon::GeneratedSlotMethods",
1337
+ "SIZE_DEFAULT": "small",
1338
+ "SIZE_MAPPINGS": {
1339
+ "xsmall": 12,
1340
+ "small": 16,
1341
+ "medium": 24
1342
+ },
1343
+ "SIZE_MEDIUM": "medium",
1344
+ "SIZE_OPTIONS": [
1345
+ "xsmall",
1346
+ "small",
1347
+ "medium"
1348
+ ],
1349
+ "SIZE_XSMALL": "xsmall"
1350
+ },
1351
+ "Primer::Beta::Popover": {
1352
+ "CARET_DEFAULT": "top",
1353
+ "CARET_MAPPINGS": {
1354
+ "top": "",
1355
+ "bottom": "Popover-message--bottom",
1356
+ "bottom_right": "Popover-message--bottom-right",
1357
+ "bottom_left": "Popover-message--bottom-left",
1358
+ "left": "Popover-message--left",
1359
+ "left_bottom": "Popover-message--left-bottom",
1360
+ "left_top": "Popover-message--left-top",
1361
+ "right": "Popover-message--right",
1362
+ "right_bottom": "Popover-message--right-bottom",
1363
+ "right_top": "Popover-message--right-top",
1364
+ "top_left": "Popover-message--top-left",
1365
+ "top_right": "Popover-message--top-right"
1366
+ },
1367
+ "DEFAULT_HEADING_TAG": "h4",
1368
+ "GeneratedSlotMethods": "Primer::Beta::Popover::GeneratedSlotMethods"
1369
+ },
1370
+ "Primer::Beta::ProgressBar": {
1371
+ "GeneratedSlotMethods": "Primer::Beta::ProgressBar::GeneratedSlotMethods",
1372
+ "SIZE_DEFAULT": "default",
1373
+ "SIZE_MAPPINGS": {
1374
+ "default": "",
1375
+ "small": "Progress--small",
1376
+ "large": "Progress--large"
1377
+ },
1378
+ "SIZE_OPTIONS": [
1379
+ "default",
1380
+ "small",
1381
+ "large"
1382
+ ]
1383
+ },
1384
+ "Primer::Beta::RelativeTime": {
1385
+ "DAY_DEFAULT": null,
1386
+ "DAY_MAPPINGS": {
1387
+ "": null,
1388
+ "numeric": "numeric",
1389
+ "two_digit": "2-digit"
1390
+ },
1391
+ "DAY_OPTIONS": [
1392
+ null,
1393
+ "numeric",
1394
+ "two_digit"
1395
+ ],
1396
+ "FORMAT_DEFAULT": "auto",
1397
+ "FORMAT_OPTIONS": [
1398
+ "auto",
1399
+ "micro",
1400
+ "elapsed"
1401
+ ],
1402
+ "FORMAT_STYLE_DEFAULT": null,
1403
+ "FORMAT_STYLE_OPTIONS": [
1404
+ null,
1405
+ "long",
1406
+ "short",
1407
+ "narrow"
1408
+ ],
1409
+ "GeneratedSlotMethods": "Primer::Beta::RelativeTime::GeneratedSlotMethods",
1410
+ "HOUR_DEFAULT": null,
1411
+ "HOUR_MAPPINGS": {
1412
+ "": null,
1413
+ "numeric": "numeric",
1414
+ "two_digit": "2-digit"
1415
+ },
1416
+ "HOUR_OPTIONS": [
1417
+ null,
1418
+ "numeric",
1419
+ "two_digit"
1420
+ ],
1421
+ "MINUTE_DEFAULT": null,
1422
+ "MINUTE_MAPPINGS": {
1423
+ "": null,
1424
+ "numeric": "numeric",
1425
+ "two_digit": "2-digit"
1426
+ },
1427
+ "MINUTE_OPTIONS": [
1428
+ null,
1429
+ "numeric",
1430
+ "two_digit"
1431
+ ],
1432
+ "MONTH_DEFAULT": null,
1433
+ "MONTH_MAPPINGS": {
1434
+ "": null,
1435
+ "numeric": "numeric",
1436
+ "two_digit": "2-digit",
1437
+ "short": "short",
1438
+ "long": "long",
1439
+ "narrow": "narrow"
1440
+ },
1441
+ "MONTH_OPTIONS": [
1442
+ null,
1443
+ "numeric",
1444
+ "two_digit",
1445
+ "short",
1446
+ "long",
1447
+ "narrow"
1448
+ ],
1449
+ "PRECISION_DEFAULT": null,
1450
+ "PRECISION_OPTIONS": [
1451
+ null,
1452
+ "second",
1453
+ "minute",
1454
+ "hour",
1455
+ "day",
1456
+ "month",
1457
+ "year"
1458
+ ],
1459
+ "SECOND_DEFAULT": null,
1460
+ "SECOND_MAPPINGS": {
1461
+ "": null,
1462
+ "numeric": "numeric",
1463
+ "two_digit": "2-digit"
1464
+ },
1465
+ "SECOND_OPTIONS": [
1466
+ null,
1467
+ "numeric",
1468
+ "two_digit"
1469
+ ],
1470
+ "TENSE_DEFAULT": "auto",
1471
+ "TENSE_OPTIONS": [
1472
+ "auto",
1473
+ "past",
1474
+ "future"
1475
+ ],
1476
+ "TIMEZONENAME_DEFAULT": null,
1477
+ "TIMEZONENAME_OPTIONS": [
1478
+ null,
1479
+ "long",
1480
+ "short",
1481
+ "short_offset",
1482
+ "long_offset",
1483
+ "short_generic",
1484
+ "long_generic"
1485
+ ],
1486
+ "TIMEZONE_MAPPINGS": {
1487
+ "": null,
1488
+ "long": "long",
1489
+ "short": "short",
1490
+ "short_offset": "shortOffset",
1491
+ "long_offset": "longOffset",
1492
+ "short_generic": "shortGeneric",
1493
+ "long_generic": "longGeneric"
1494
+ },
1495
+ "WEEKDAY_DEFAULT": null,
1496
+ "WEEKDAY_OPTIONS": [
1497
+ null,
1498
+ "long",
1499
+ "short",
1500
+ "narrow"
1501
+ ],
1502
+ "YEAR_DEFAULT": null,
1503
+ "YEAR_MAPPINGS": {
1504
+ "": null,
1505
+ "numeric": "numeric",
1506
+ "two_digit": "2-digit"
1507
+ },
1508
+ "YEAR_OPTIONS": [
1509
+ null,
1510
+ "numeric",
1511
+ "two_digit"
1512
+ ]
1513
+ },
1514
+ "Primer::Beta::Spinner": {
1515
+ "DEFAULT_SIZE": "medium",
1516
+ "DEFAULT_SR_TEXT": "Loading",
1517
+ "DEFAULT_STYLE": "box-sizing: content-box; color: var(--color-icon-primary);",
1518
+ "GeneratedSlotMethods": "Primer::Beta::Spinner::GeneratedSlotMethods",
1519
+ "SIZE_MAPPINGS": {
1520
+ "small": 16,
1521
+ "medium": 32,
1522
+ "large": 64
1523
+ },
1524
+ "SIZE_OPTIONS": [
1525
+ "small",
1526
+ "medium",
1527
+ "large"
1528
+ ]
1529
+ },
1530
+ "Primer::Beta::State": {
1531
+ "DEPRECATED_SCHEME_MAPPINGS": {
1532
+ "default": "",
1533
+ "green": "State--open",
1534
+ "red": "State--closed",
1535
+ "purple": "State--merged"
1536
+ },
1537
+ "GeneratedSlotMethods": "Primer::Beta::State::GeneratedSlotMethods",
1538
+ "NEW_SCHEME_MAPPINGS": {
1539
+ "open": "State--open",
1540
+ "closed": "State--closed",
1541
+ "merged": "State--merged"
1542
+ },
1543
+ "SCHEME_DEFAULT": "default",
1544
+ "SCHEME_MAPPINGS": {
1545
+ "open": "State--open",
1546
+ "closed": "State--closed",
1547
+ "merged": "State--merged",
1548
+ "default": "",
1549
+ "green": "State--open",
1550
+ "red": "State--closed",
1551
+ "purple": "State--merged"
1552
+ },
1553
+ "SCHEME_OPTIONS": [
1554
+ "open",
1555
+ "closed",
1556
+ "merged",
1557
+ "default",
1558
+ "green",
1559
+ "red",
1560
+ "purple"
1561
+ ],
1562
+ "SIZE_DEFAULT": "default",
1563
+ "SIZE_MAPPINGS": {
1564
+ "default": "",
1565
+ "small": "State--small"
1566
+ },
1567
+ "SIZE_OPTIONS": [
1568
+ "default",
1569
+ "small"
1570
+ ],
1571
+ "TAG_DEFAULT": "span",
1572
+ "TAG_OPTIONS": [
1573
+ "span",
1574
+ "div"
1575
+ ]
1576
+ },
1577
+ "Primer::Beta::Subhead": {
1578
+ "DEFAULT_HEADING_SIZE": "large",
1579
+ "DEFAULT_HEADING_TAG": "div",
1580
+ "GeneratedSlotMethods": "Primer::Beta::Subhead::GeneratedSlotMethods",
1581
+ "HEADING_SIZE_MAP": {
1582
+ "large": "Subhead-heading--large",
1583
+ "medium": "Subhead-heading--medium"
1584
+ },
1585
+ "HEADING_SIZE_OPTIONS": [
1586
+ "large",
1587
+ "medium"
1588
+ ],
1589
+ "HEADING_TAG_OPTIONS": [
1590
+ "div",
1591
+ "h1",
1592
+ "h2",
1593
+ "h3",
1594
+ "h4",
1595
+ "h5",
1596
+ "h6"
1597
+ ]
1598
+ },
1599
+ "Primer::Beta::Text": {
1600
+ "DEFAULT_TAG": "span",
1601
+ "GeneratedSlotMethods": "Primer::Beta::Text::GeneratedSlotMethods"
1602
+ },
1603
+ "Primer::Beta::TimelineItem": {
1604
+ "Badge": "Primer::Beta::TimelineItem::Badge",
1605
+ "GeneratedSlotMethods": "Primer::Beta::TimelineItem::GeneratedSlotMethods"
1606
+ },
1607
+ "Primer::Beta::TimelineItem::Badge": {
1608
+ "GeneratedSlotMethods": "Primer::Beta::TimelineItem::Badge::GeneratedSlotMethods"
1609
+ },
1610
+ "Primer::Beta::Truncate": {
1611
+ "GeneratedSlotMethods": "Primer::Beta::Truncate::GeneratedSlotMethods",
1612
+ "TruncateText": "Primer::Beta::Truncate::TruncateText"
1613
+ },
1614
+ "Primer::Beta::Truncate::TruncateText": {
1615
+ "GeneratedSlotMethods": "Primer::Beta::Truncate::TruncateText::GeneratedSlotMethods"
1616
+ },
1617
+ "Primer::BlankslateComponent": {
1618
+ "GeneratedSlotMethods": "Primer::BlankslateComponent::GeneratedSlotMethods"
1619
+ },
1620
+ "Primer::Box": {
1621
+ "GeneratedSlotMethods": "Primer::Box::GeneratedSlotMethods"
1622
+ },
1623
+ "Primer::ButtonComponent": {
1624
+ "DEFAULT_SCHEME": "default",
1625
+ "DEFAULT_SIZE": "medium",
1626
+ "GeneratedSlotMethods": "Primer::ButtonComponent::GeneratedSlotMethods",
1627
+ "LINK_SCHEME": "link",
1628
+ "SCHEME_MAPPINGS": {
1629
+ "default": "",
1630
+ "primary": "btn-primary",
1631
+ "danger": "btn-danger",
1632
+ "outline": "btn-outline",
1633
+ "invisible": "btn-invisible",
1634
+ "link": "btn-link"
1635
+ },
1636
+ "SCHEME_OPTIONS": [
1637
+ "default",
1638
+ "primary",
1639
+ "danger",
1640
+ "outline",
1641
+ "invisible",
1642
+ "link"
1643
+ ],
1644
+ "SIZE_MAPPINGS": {
1645
+ "small": "btn-sm",
1646
+ "medium": ""
1647
+ },
1648
+ "SIZE_OPTIONS": [
1649
+ "small",
1650
+ "medium"
1651
+ ]
1652
+ },
1653
+ "Primer::ConditionalWrapper": {
1654
+ "GeneratedSlotMethods": "Primer::ConditionalWrapper::GeneratedSlotMethods"
1655
+ },
1656
+ "Primer::Content": {
1657
+ "GeneratedSlotMethods": "Primer::Content::GeneratedSlotMethods"
1658
+ },
1659
+ "Primer::IconButton": {
1660
+ "DEFAULT_SCHEME": "default",
1661
+ "GeneratedSlotMethods": "Primer::IconButton::GeneratedSlotMethods",
1662
+ "SCHEME_MAPPINGS": {
1663
+ "default": "",
1664
+ "danger": "btn-octicon-danger"
1665
+ },
1666
+ "SCHEME_OPTIONS": [
1667
+ "default",
1668
+ "danger"
1669
+ ]
1670
+ },
1671
+ "Primer::LayoutComponent": {
1672
+ "ALLOWED_SIDEBAR_COLS": [
1673
+ 1,
1674
+ 2,
1675
+ 3,
1676
+ 4,
1677
+ 5,
1678
+ 6,
1679
+ 7,
1680
+ 8,
1681
+ 9,
1682
+ 10,
1683
+ 11
1684
+ ],
1685
+ "ALLOWED_SIDES": [
1686
+ "right",
1687
+ "left"
1688
+ ],
1689
+ "DEFAULT_SIDE": "right",
1690
+ "DEFAULT_SIDEBAR_COL": 3,
1691
+ "GeneratedSlotMethods": "Primer::LayoutComponent::GeneratedSlotMethods",
1692
+ "MAX_COL": 12
1693
+ },
1694
+ "Primer::Navigation::TabComponent": {
1695
+ "GeneratedSlotMethods": "Primer::Navigation::TabComponent::GeneratedSlotMethods"
1696
+ },
1697
+ "Primer::OpenProject::BorderBox::CollapsibleHeader": {
1698
+ "GeneratedSlotMethods": "Primer::OpenProject::BorderBox::CollapsibleHeader::GeneratedSlotMethods"
1699
+ },
1700
+ "Primer::OpenProject::BorderGrid": {
1701
+ "Cell": "Primer::OpenProject::BorderGrid::Cell",
1702
+ "GeneratedSlotMethods": "Primer::OpenProject::BorderGrid::GeneratedSlotMethods"
1703
+ },
1704
+ "Primer::OpenProject::BorderGrid::Cell": {
1705
+ "GeneratedSlotMethods": "Primer::OpenProject::BorderGrid::Cell::GeneratedSlotMethods"
1706
+ },
1707
+ "Primer::OpenProject::CollapsibleSection": {
1708
+ "GeneratedSlotMethods": "Primer::OpenProject::CollapsibleSection::GeneratedSlotMethods",
1709
+ "TITLE_TAG_FALLBACK": "h2",
1710
+ "TITLE_TAG_OPTIONS": [
1711
+ "h1",
1712
+ "h2",
1713
+ "h3",
1714
+ "h4",
1715
+ "h5",
1716
+ "h6",
1717
+ "span"
1718
+ ]
1719
+ },
1720
+ "Primer::OpenProject::DangerDialog": {
1721
+ "ConfirmationCheckBox": "Primer::OpenProject::DangerDialog::ConfirmationCheckBox",
1722
+ "FormWrapper": "Primer::OpenProject::DangerDialog::FormWrapper",
1723
+ "GeneratedSlotMethods": "Primer::OpenProject::DangerDialog::GeneratedSlotMethods"
1724
+ },
1725
+ "Primer::OpenProject::DangerDialog::ConfirmationCheckBox": {
1726
+ "GeneratedSlotMethods": "Primer::OpenProject::DangerDialog::ConfirmationCheckBox::GeneratedSlotMethods"
1727
+ },
1728
+ "Primer::OpenProject::DangerDialog::FormWrapper": {
1729
+ "GeneratedSlotMethods": "Primer::OpenProject::DangerDialog::FormWrapper::GeneratedSlotMethods"
1730
+ },
1731
+ "Primer::OpenProject::DragHandle": {
1732
+ "DEFAULT_SIZE": "small",
1733
+ "GeneratedSlotMethods": "Primer::OpenProject::DragHandle::GeneratedSlotMethods",
1734
+ "SIZE_OPTIONS": [
1735
+ "xsmall",
1736
+ "small",
1737
+ "medium"
1738
+ ]
1739
+ },
1740
+ "Primer::OpenProject::FeedbackDialog": {
1741
+ "GeneratedSlotMethods": "Primer::OpenProject::FeedbackDialog::GeneratedSlotMethods"
1742
+ },
1743
+ "Primer::OpenProject::FeedbackMessage": {
1744
+ "GeneratedSlotMethods": "Primer::OpenProject::FeedbackMessage::GeneratedSlotMethods"
1745
+ },
1746
+ "Primer::OpenProject::FilterableTreeView": {
1747
+ "DEFAULT_FILTER_INPUT_ARGUMENTS": {
1748
+ "name": "filter",
1749
+ "label": "Filter",
1750
+ "type": "search",
1751
+ "leading_visual": {
1752
+ "icon": "search"
1753
+ },
1754
+ "visually_hide_label": true,
1755
+ "show_clear_button": true
1756
+ },
1757
+ "DEFAULT_FILTER_MODES": {
1758
+ "all": {
1759
+ "label": "All",
1760
+ "selected": true
1761
+ },
1762
+ "selected": {
1763
+ "label": "Selected"
1764
+ }
1765
+ },
1766
+ "DEFAULT_FILTER_MODE_CONTROL_ARGUMENTS": {
1767
+ "aria": {
1768
+ "label": "Filter mode"
1769
+ }
1770
+ },
1771
+ "DEFAULT_INCLUDE_SUB_ITEMS_CHECK_BOX_ARGUMENTS": {
1772
+ "label": "Include sub-items",
1773
+ "name": "include_sub_items"
1774
+ },
1775
+ "DEFAULT_NO_RESULTS_NODE_ARGUMENTS": {
1776
+ "label": "No results"
1777
+ },
1778
+ "GeneratedSlotMethods": "Primer::OpenProject::FilterableTreeView::GeneratedSlotMethods",
1779
+ "SubTree": "Primer::OpenProject::FilterableTreeView::SubTree"
1780
+ },
1781
+ "Primer::OpenProject::FilterableTreeView::SubTree": {
1782
+ "GeneratedSlotMethods": "Primer::OpenProject::FilterableTreeView::SubTree::GeneratedSlotMethods"
1783
+ },
1784
+ "Primer::OpenProject::FlexLayout": {
1785
+ "GeneratedSlotMethods": "Primer::OpenProject::FlexLayout::GeneratedSlotMethods"
1786
+ },
1787
+ "Primer::OpenProject::GridLayout": {
1788
+ "Area": "Primer::OpenProject::GridLayout::Area",
1789
+ "GeneratedSlotMethods": "Primer::OpenProject::GridLayout::GeneratedSlotMethods"
1790
+ },
1791
+ "Primer::OpenProject::GridLayout::Area": {
1792
+ "DEFAULT_TAG": "div",
1793
+ "GeneratedSlotMethods": "Primer::OpenProject::GridLayout::Area::GeneratedSlotMethods",
1794
+ "TAG_OPTIONS": [
1795
+ "div",
1796
+ "span"
1797
+ ]
1798
+ },
1799
+ "Primer::OpenProject::Heading": {
1800
+ "GeneratedSlotMethods": "Primer::OpenProject::Heading::GeneratedSlotMethods"
1801
+ },
1802
+ "Primer::OpenProject::InputGroup": {
1803
+ "DEFAULT_INPUT_WIDTH": "auto",
1804
+ "GeneratedSlotMethods": "Primer::OpenProject::InputGroup::GeneratedSlotMethods",
1805
+ "INPUT_WIDTH_MAPPINGS": {
1806
+ "auto": "InputGroup-input-width--auto",
1807
+ "xsmall": "InputGroup-input-width--xsmall",
1808
+ "small": "InputGroup-input-width--small",
1809
+ "medium": "InputGroup-input-width--medium",
1810
+ "large": "InputGroup-input-width--large",
1811
+ "xlarge": "InputGroup-input-width--xlarge",
1812
+ "xxlarge": "InputGroup-input-width--xxlarge"
1813
+ },
1814
+ "INPUT_WIDTH_OPTIONS": [
1815
+ "auto",
1816
+ "xsmall",
1817
+ "small",
1818
+ "medium",
1819
+ "large",
1820
+ "xlarge",
1821
+ "xxlarge"
1822
+ ]
1823
+ },
1824
+ "Primer::OpenProject::PageHeader": {
1825
+ "BACK_BUTTON_ICON_OPTIONS": [
1826
+ "arrow-left",
1827
+ "chevron-left",
1828
+ "triangle-left"
1829
+ ],
1830
+ "DEFAULT_ACTION_SCHEME": "default",
1831
+ "DEFAULT_BACK_BUTTON_ICON": "arrow-left",
1832
+ "DEFAULT_BREADCRUMBS_DISPLAY": [
1833
+ "none",
1834
+ "flex"
1835
+ ],
1836
+ "DEFAULT_HEADER_VARIANT": "medium",
1837
+ "DEFAULT_LEADING_ACTION_DISPLAY": [
1838
+ "none",
1839
+ "flex"
1840
+ ],
1841
+ "DEFAULT_PARENT_LINK_DISPLAY": [
1842
+ "block",
1843
+ "none"
1844
+ ],
1845
+ "Dialog": "Primer::OpenProject::PageHeader::Dialog",
1846
+ "GeneratedSlotMethods": "Primer::OpenProject::PageHeader::GeneratedSlotMethods",
1847
+ "HEADER_VARIANT_OPTIONS": [
1848
+ "medium",
1849
+ "large"
1850
+ ],
1851
+ "MOBILE_ACTIONS_DISPLAY": [
1852
+ "flex",
1853
+ "none"
1854
+ ],
1855
+ "Menu": "Primer::OpenProject::PageHeader::Menu",
1856
+ "STATE_DEFAULT": "show",
1857
+ "STATE_EDIT": "edit",
1858
+ "STATE_OPTIONS": [
1859
+ "show",
1860
+ "edit"
1861
+ ],
1862
+ "Title": "Primer::OpenProject::PageHeader::Title"
1863
+ },
1864
+ "Primer::OpenProject::PageHeader::Dialog": {
1865
+ "GeneratedSlotMethods": "Primer::OpenProject::PageHeader::Dialog::GeneratedSlotMethods"
1866
+ },
1867
+ "Primer::OpenProject::PageHeader::Menu": {
1868
+ "GeneratedSlotMethods": "Primer::OpenProject::PageHeader::Menu::GeneratedSlotMethods"
1869
+ },
1870
+ "Primer::OpenProject::PageHeader::Title": {
1871
+ "GeneratedSlotMethods": "Primer::OpenProject::PageHeader::Title::GeneratedSlotMethods",
1872
+ "HEADING_TAG_FALLBACK": "h2",
1873
+ "HEADING_TAG_OPTIONS": [
1874
+ "h1",
1875
+ "h2",
1876
+ "h3",
1877
+ "h4",
1878
+ "h5",
1879
+ "h6"
1880
+ ]
1881
+ },
1882
+ "Primer::OpenProject::SidePanel": {
1883
+ "GeneratedSlotMethods": "Primer::OpenProject::SidePanel::GeneratedSlotMethods",
1884
+ "Section": "Primer::OpenProject::SidePanel::Section"
1885
+ },
1886
+ "Primer::OpenProject::SidePanel::Section": {
1887
+ "DEFAULT_TAG": "section",
1888
+ "GeneratedSlotMethods": "Primer::OpenProject::SidePanel::Section::GeneratedSlotMethods",
1889
+ "TAG_OPTIONS": [
1890
+ "section",
1891
+ "div",
1892
+ "span"
1893
+ ],
1894
+ "TITLE_TAG_FALLBACK": "h4",
1895
+ "TITLE_TAG_OPTIONS": [
1896
+ "h1",
1897
+ "h2",
1898
+ "h3",
1899
+ "h4",
1900
+ "h5",
1901
+ "h6"
1902
+ ]
1903
+ },
1904
+ "Primer::OpenProject::SubHeader": {
1905
+ "Button": "Primer::OpenProject::SubHeader::Button",
1906
+ "ButtonGroup": "Primer::OpenProject::SubHeader::ButtonGroup",
1907
+ "DESKTOP_ACTIONS_DISPLAY": [
1908
+ "none",
1909
+ "flex"
1910
+ ],
1911
+ "GeneratedSlotMethods": "Primer::OpenProject::SubHeader::GeneratedSlotMethods",
1912
+ "HIDDEN_FILTER_TARGET_SELECTOR": "sub-header.hiddenItemsOnExpandedFilter",
1913
+ "MOBILE_ACTIONS_DISPLAY": [
1914
+ "flex",
1915
+ "none"
1916
+ ],
1917
+ "Menu": "Primer::OpenProject::SubHeader::Menu",
1918
+ "SHOWN_FILTER_TARGET_SELECTOR": "sub-header.shownItemsOnExpandedFilter",
1919
+ "SegmentedControl": "Primer::OpenProject::SubHeader::SegmentedControl"
1920
+ },
1921
+ "Primer::OpenProject::SubHeader::Button": {
1922
+ "GeneratedSlotMethods": "Primer::OpenProject::SubHeader::Button::GeneratedSlotMethods"
1923
+ },
1924
+ "Primer::OpenProject::SubHeader::ButtonGroup": {
1925
+ "GeneratedSlotMethods": "Primer::OpenProject::SubHeader::ButtonGroup::GeneratedSlotMethods"
1926
+ },
1927
+ "Primer::OpenProject::SubHeader::Menu": {
1928
+ "GeneratedSlotMethods": "Primer::OpenProject::SubHeader::Menu::GeneratedSlotMethods"
1929
+ },
1930
+ "Primer::OpenProject::SubHeader::SegmentedControl": {
1931
+ "GeneratedSlotMethods": "Primer::OpenProject::SubHeader::SegmentedControl::GeneratedSlotMethods"
1932
+ },
1933
+ "Primer::OpenProject::ZenModeButton": {
1934
+ "GeneratedSlotMethods": "Primer::OpenProject::ZenModeButton::GeneratedSlotMethods",
1935
+ "ZEN_MODE_BUTTON_ICON": "screen-full",
1936
+ "ZEN_MODE_BUTTON_LABEL": "Translation missing: en.label_zen_mode"
1937
+ },
1938
+ "Primer::Tooltip": {
1939
+ "ALIGN_DEFAULT": "default",
1940
+ "ALIGN_MAPPING": {
1941
+ "default": "",
1942
+ "left_1": "tooltipped-align-left-1",
1943
+ "right_1": "tooltipped-align-right-1",
1944
+ "left_2": "tooltipped-align-left-2",
1945
+ "right_2": "tooltipped-align-right-2"
1946
+ },
1947
+ "DELAY_DEFAULT": false,
1948
+ "DIRECTION_DEFAULT": "n",
1949
+ "DIRECTION_OPTIONS": [
1950
+ "n",
1951
+ "nw",
1952
+ "ne",
1953
+ "w",
1954
+ "e",
1955
+ "sw",
1956
+ "s",
1957
+ "se"
1958
+ ],
1959
+ "GeneratedSlotMethods": "Primer::Tooltip::GeneratedSlotMethods",
1960
+ "MULTILINE_DEFAULT": false
1961
+ },
1962
+ "Primer::Truncate": {
1963
+ "DEFAULT_TAG": "div",
1964
+ "GeneratedSlotMethods": "Primer::Truncate::GeneratedSlotMethods",
1965
+ "TAG_OPTIONS": [
1966
+ "div",
1967
+ "span",
1968
+ "p",
1969
+ "strong"
1970
+ ]
1971
+ }
1972
+ }