@openproject/primer-view-components 0.0.0-20230808124600

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 (143) hide show
  1. package/LICENSE.txt +21 -0
  2. package/README.md +21 -0
  3. package/app/assets/javascripts/app/components/primer/alpha/action_bar_element.d.ts +16 -0
  4. package/app/assets/javascripts/app/components/primer/alpha/action_menu/action_menu_element.d.ts +31 -0
  5. package/app/assets/javascripts/app/components/primer/alpha/dropdown/menu.d.ts +1 -0
  6. package/app/assets/javascripts/app/components/primer/alpha/dropdown.d.ts +1 -0
  7. package/app/assets/javascripts/app/components/primer/alpha/image_crop.d.ts +1 -0
  8. package/app/assets/javascripts/app/components/primer/alpha/modal_dialog.d.ts +18 -0
  9. package/app/assets/javascripts/app/components/primer/alpha/nav_list.d.ts +28 -0
  10. package/app/assets/javascripts/app/components/primer/alpha/segmented_control.d.ts +12 -0
  11. package/app/assets/javascripts/app/components/primer/alpha/tab_container.d.ts +1 -0
  12. package/app/assets/javascripts/app/components/primer/alpha/toggle_switch.d.ts +30 -0
  13. package/app/assets/javascripts/app/components/primer/alpha/tool_tip.d.ts +26 -0
  14. package/app/assets/javascripts/app/components/primer/alpha/x_banner.d.ts +13 -0
  15. package/app/assets/javascripts/app/components/primer/anchored_position.d.ts +27 -0
  16. package/app/assets/javascripts/app/components/primer/beta/auto_complete/auto_complete.d.ts +1 -0
  17. package/app/assets/javascripts/app/components/primer/beta/clipboard_copy.d.ts +1 -0
  18. package/app/assets/javascripts/app/components/primer/beta/relative_time.d.ts +1 -0
  19. package/app/assets/javascripts/app/components/primer/focus_group.d.ts +19 -0
  20. package/app/assets/javascripts/app/components/primer/primer.d.ts +21 -0
  21. package/app/assets/javascripts/lib/primer/forms/primer_multi_input.d.ts +10 -0
  22. package/app/assets/javascripts/lib/primer/forms/primer_text_field.d.ts +1 -0
  23. package/app/assets/javascripts/lib/primer/forms/toggle_switch_input.d.ts +5 -0
  24. package/app/assets/javascripts/primer_view_components.js +2 -0
  25. package/app/assets/javascripts/primer_view_components.js.map +1 -0
  26. package/app/assets/styles/primer_view_components.css +1 -0
  27. package/app/assets/styles/primer_view_components.css.map +1 -0
  28. package/app/components/primer/alpha/action_bar.css +1 -0
  29. package/app/components/primer/alpha/action_bar.css.json +17 -0
  30. package/app/components/primer/alpha/action_bar_element.d.ts +16 -0
  31. package/app/components/primer/alpha/action_bar_element.js +172 -0
  32. package/app/components/primer/alpha/action_list.css +1 -0
  33. package/app/components/primer/alpha/action_list.css.json +134 -0
  34. package/app/components/primer/alpha/action_menu/action_menu_element.d.ts +31 -0
  35. package/app/components/primer/alpha/action_menu/action_menu_element.js +241 -0
  36. package/app/components/primer/alpha/auto_complete.css +1 -0
  37. package/app/components/primer/alpha/auto_complete.css.json +23 -0
  38. package/app/components/primer/alpha/banner.css +1 -0
  39. package/app/components/primer/alpha/banner.css.json +24 -0
  40. package/app/components/primer/alpha/button_marketing.css +1 -0
  41. package/app/components/primer/alpha/button_marketing.css.json +33 -0
  42. package/app/components/primer/alpha/dialog.css +1 -0
  43. package/app/components/primer/alpha/dialog.css.json +80 -0
  44. package/app/components/primer/alpha/dropdown/menu.d.ts +1 -0
  45. package/app/components/primer/alpha/dropdown/menu.js +1 -0
  46. package/app/components/primer/alpha/dropdown.css +1 -0
  47. package/app/components/primer/alpha/dropdown.css.json +40 -0
  48. package/app/components/primer/alpha/dropdown.d.ts +1 -0
  49. package/app/components/primer/alpha/dropdown.js +1 -0
  50. package/app/components/primer/alpha/image_crop.d.ts +1 -0
  51. package/app/components/primer/alpha/image_crop.js +1 -0
  52. package/app/components/primer/alpha/layout.css +1 -0
  53. package/app/components/primer/alpha/layout.css.json +80 -0
  54. package/app/components/primer/alpha/menu.css +1 -0
  55. package/app/components/primer/alpha/menu.css.json +28 -0
  56. package/app/components/primer/alpha/modal_dialog.d.ts +18 -0
  57. package/app/components/primer/alpha/modal_dialog.js +189 -0
  58. package/app/components/primer/alpha/nav_list.d.ts +28 -0
  59. package/app/components/primer/alpha/nav_list.js +248 -0
  60. package/app/components/primer/alpha/overlay.css +1 -0
  61. package/app/components/primer/alpha/overlay.css.json +8 -0
  62. package/app/components/primer/alpha/segmented_control.css +1 -0
  63. package/app/components/primer/alpha/segmented_control.css.json +33 -0
  64. package/app/components/primer/alpha/segmented_control.d.ts +12 -0
  65. package/app/components/primer/alpha/segmented_control.js +47 -0
  66. package/app/components/primer/alpha/tab_container.d.ts +1 -0
  67. package/app/components/primer/alpha/tab_container.js +1 -0
  68. package/app/components/primer/alpha/tab_nav.css +1 -0
  69. package/app/components/primer/alpha/tab_nav.css.json +24 -0
  70. package/app/components/primer/alpha/text_field.css +1 -0
  71. package/app/components/primer/alpha/text_field.css.json +135 -0
  72. package/app/components/primer/alpha/toggle_switch.css +1 -0
  73. package/app/components/primer/alpha/toggle_switch.css.json +40 -0
  74. package/app/components/primer/alpha/toggle_switch.d.ts +30 -0
  75. package/app/components/primer/alpha/toggle_switch.js +165 -0
  76. package/app/components/primer/alpha/tool_tip.d.ts +26 -0
  77. package/app/components/primer/alpha/tool_tip.js +427 -0
  78. package/app/components/primer/alpha/underline_nav.css +1 -0
  79. package/app/components/primer/alpha/underline_nav.css.json +28 -0
  80. package/app/components/primer/alpha/x_banner.d.ts +13 -0
  81. package/app/components/primer/alpha/x_banner.js +49 -0
  82. package/app/components/primer/anchored_position.d.ts +27 -0
  83. package/app/components/primer/anchored_position.js +147 -0
  84. package/app/components/primer/beta/auto_complete/auto_complete.d.ts +1 -0
  85. package/app/components/primer/beta/auto_complete/auto_complete.js +1 -0
  86. package/app/components/primer/beta/avatar.css +1 -0
  87. package/app/components/primer/beta/avatar.css.json +17 -0
  88. package/app/components/primer/beta/avatar_stack.css +1 -0
  89. package/app/components/primer/beta/avatar_stack.css.json +28 -0
  90. package/app/components/primer/beta/blankslate.css +1 -0
  91. package/app/components/primer/beta/blankslate.css.json +22 -0
  92. package/app/components/primer/beta/border_box.css +1 -0
  93. package/app/components/primer/beta/border_box.css.json +54 -0
  94. package/app/components/primer/beta/breadcrumbs.css +1 -0
  95. package/app/components/primer/beta/breadcrumbs.css.json +11 -0
  96. package/app/components/primer/beta/button.css +1 -0
  97. package/app/components/primer/beta/button.css.json +75 -0
  98. package/app/components/primer/beta/button_group.css +1 -0
  99. package/app/components/primer/beta/button_group.css.json +14 -0
  100. package/app/components/primer/beta/clipboard_copy.d.ts +1 -0
  101. package/app/components/primer/beta/clipboard_copy.js +43 -0
  102. package/app/components/primer/beta/counter.css +1 -0
  103. package/app/components/primer/beta/counter.css.json +10 -0
  104. package/app/components/primer/beta/flash.css +1 -0
  105. package/app/components/primer/beta/flash.css.json +27 -0
  106. package/app/components/primer/beta/label.css +1 -0
  107. package/app/components/primer/beta/label.css.json +25 -0
  108. package/app/components/primer/beta/link.css +1 -0
  109. package/app/components/primer/beta/link.css.json +19 -0
  110. package/app/components/primer/beta/popover.css +1 -0
  111. package/app/components/primer/beta/popover.css.json +39 -0
  112. package/app/components/primer/beta/progress_bar.css +1 -0
  113. package/app/components/primer/beta/progress_bar.css.json +10 -0
  114. package/app/components/primer/beta/relative_time.d.ts +1 -0
  115. package/app/components/primer/beta/relative_time.js +1 -0
  116. package/app/components/primer/beta/state.css +1 -0
  117. package/app/components/primer/beta/state.css.json +13 -0
  118. package/app/components/primer/beta/subhead.css +1 -0
  119. package/app/components/primer/beta/subhead.css.json +12 -0
  120. package/app/components/primer/beta/timeline_item.css +1 -0
  121. package/app/components/primer/beta/timeline_item.css.json +16 -0
  122. package/app/components/primer/beta/truncate.css +1 -0
  123. package/app/components/primer/beta/truncate.css.json +12 -0
  124. package/app/components/primer/focus_group.d.ts +19 -0
  125. package/app/components/primer/focus_group.js +139 -0
  126. package/app/components/primer/primer.d.ts +21 -0
  127. package/app/components/primer/primer.js +21 -0
  128. package/app/components/primer/truncate.css +1 -0
  129. package/app/components/primer/truncate.css.json +13 -0
  130. package/lib/primer/forms/primer_multi_input.d.ts +10 -0
  131. package/lib/primer/forms/primer_multi_input.js +45 -0
  132. package/lib/primer/forms/primer_text_field.d.ts +1 -0
  133. package/lib/primer/forms/primer_text_field.js +73 -0
  134. package/lib/primer/forms/toggle_switch_input.d.ts +5 -0
  135. package/lib/primer/forms/toggle_switch_input.js +34 -0
  136. package/package.json +101 -0
  137. package/static/arguments.json +4501 -0
  138. package/static/audited_at.json +107 -0
  139. package/static/classes.json +606 -0
  140. package/static/constants.json +1335 -0
  141. package/static/info_arch.json +14465 -0
  142. package/static/previews.json +6408 -0
  143. package/static/statuses.json +107 -0
@@ -0,0 +1,1335 @@
1
+ {
2
+ "Primer::Alpha::ActionBar": {
3
+ "DEFAULT_SIZE": "medium",
4
+ "Divider": "Primer::Alpha::ActionBar::Divider",
5
+ "Item": "Primer::Alpha::ActionBar::Item",
6
+ "SIZE_MAPPINGS": {
7
+ "medium": null,
8
+ "small": "ActionBar--small",
9
+ "large": "ActionBar--large"
10
+ },
11
+ "SIZE_OPTIONS": [
12
+ "medium",
13
+ "small",
14
+ "large"
15
+ ]
16
+ },
17
+ "Primer::Alpha::ActionBar::Divider": {
18
+ },
19
+ "Primer::Alpha::ActionBar::Item": {
20
+ },
21
+ "Primer::Alpha::ActionList": {
22
+ "DEFAULT_MENU_ITEM_ROLE": "menuitem",
23
+ "DEFAULT_ROLE": "list",
24
+ "DEFAULT_SCHEME": "full",
25
+ "DEFAULT_SELECT_VARIANT": "none",
26
+ "Divider": "Primer::Alpha::ActionList::Divider",
27
+ "FormWrapper": "Primer::Alpha::ActionList::FormWrapper",
28
+ "Heading": "Primer::Alpha::ActionList::Heading",
29
+ "Item": "Primer::Alpha::ActionList::Item",
30
+ "MENU_ROLE": "menu",
31
+ "SCHEME_MAPPINGS": {
32
+ "full": null,
33
+ "inset": "ActionListWrap--inset"
34
+ },
35
+ "SCHEME_OPTIONS": [
36
+ "full",
37
+ "inset"
38
+ ],
39
+ "SELECT_VARIANT_OPTIONS": [
40
+ "single",
41
+ "multiple",
42
+ "multiple_checkbox",
43
+ "none"
44
+ ],
45
+ "SELECT_VARIANT_ROLE_MAP": {
46
+ "single": "menuitemradio",
47
+ "multiple": "menuitemcheckbox",
48
+ "multiple_checkbox": "menuitemcheckbox"
49
+ }
50
+ },
51
+ "Primer::Alpha::ActionList::Divider": {
52
+ "DEFAULT_SCHEME": "subtle",
53
+ "SCHEME_MAPPINGS": {
54
+ "subtle": null,
55
+ "filled": "ActionList-sectionDivider--filled"
56
+ },
57
+ "SCHEME_OPTIONS": [
58
+ "subtle",
59
+ "filled"
60
+ ]
61
+ },
62
+ "Primer::Alpha::ActionList::FormWrapper": {
63
+ "DEFAULT_HTTP_METHOD": "get",
64
+ "HTTP_METHOD_OPTIONS": [
65
+ "get",
66
+ "post",
67
+ "patch",
68
+ "put",
69
+ "delete",
70
+ "head"
71
+ ]
72
+ },
73
+ "Primer::Alpha::ActionList::Heading": {
74
+ "DEFAULT_SCHEME": "subtle",
75
+ "HEADING_LEVELS": [
76
+ 1,
77
+ 2,
78
+ 3,
79
+ 4,
80
+ 5,
81
+ 6
82
+ ],
83
+ "HEADING_MAX": 6,
84
+ "HEADING_MIN": 1,
85
+ "SCHEME_MAPPINGS": {
86
+ "subtle": null,
87
+ "filled": "ActionList-sectionDivider--filled"
88
+ },
89
+ "SCHEME_OPTIONS": [
90
+ "subtle",
91
+ "filled"
92
+ ]
93
+ },
94
+ "Primer::Alpha::ActionList::Item": {
95
+ "DEFAULT_DESCRIPTION_SCHEME": "block",
96
+ "DEFAULT_SCHEME": "default",
97
+ "DEFAULT_SIZE": "medium",
98
+ "DESCRIPTION_SCHEME_MAPPINGS": {
99
+ "inline": "ActionListItem-descriptionWrap--inline",
100
+ "block": "ActionListItem-descriptionWrap"
101
+ },
102
+ "DESCRIPTION_SCHEME_OPTIONS": [
103
+ "inline",
104
+ "block"
105
+ ],
106
+ "SCHEME_MAPPINGS": {
107
+ "default": null,
108
+ "danger": "ActionListItem--danger"
109
+ },
110
+ "SCHEME_OPTIONS": [
111
+ "default",
112
+ "danger"
113
+ ],
114
+ "SIZE_MAPPINGS": {
115
+ "medium": null,
116
+ "large": "ActionListContent--sizeLarge",
117
+ "xlarge": "ActionListContent--sizeXLarge"
118
+ },
119
+ "SIZE_OPTIONS": [
120
+ "medium",
121
+ "large",
122
+ "xlarge"
123
+ ]
124
+ },
125
+ "Primer::Alpha::ActionMenu": {
126
+ "DEFAULT_PRELOAD": false,
127
+ "DEFAULT_SELECT_VARIANT": "none",
128
+ "List": "Primer::Alpha::ActionMenu::List",
129
+ "SELECT_VARIANT_OPTIONS": [
130
+ "single",
131
+ "multiple",
132
+ "none"
133
+ ]
134
+ },
135
+ "Primer::Alpha::ActionMenu::List": {
136
+ "DEFAULT_ITEM_TAG": "button",
137
+ "ITEM_TAG_OPTIONS": [
138
+ "a",
139
+ "clipboard-copy",
140
+ "button"
141
+ ]
142
+ },
143
+ "Primer::Alpha::AutoComplete": {
144
+ "Item": "Primer::Alpha::AutoComplete::Item"
145
+ },
146
+ "Primer::Alpha::AutoComplete::Item": {
147
+ },
148
+ "Primer::Alpha::Banner": {
149
+ "DEFAULT_DISMISS_SCHEME": "none",
150
+ "DEFAULT_ICONS": {
151
+ "default": "bell",
152
+ "warning": "alert",
153
+ "danger": "stop",
154
+ "success": "check-circle"
155
+ },
156
+ "DEFAULT_SCHEME": "default",
157
+ "DISMISS_SCHEMES": [
158
+ "none",
159
+ "remove",
160
+ "hide"
161
+ ],
162
+ "LEGACY_SCHEME_MAPPINGS": {
163
+ "default": "",
164
+ "warning": "flash-warn",
165
+ "danger": "flash-error",
166
+ "success": "flash-success"
167
+ },
168
+ "SCHEME_MAPPINGS": {
169
+ "default": "",
170
+ "warning": "Banner--warning",
171
+ "danger": "Banner--error",
172
+ "success": "Banner--success"
173
+ }
174
+ },
175
+ "Primer::Alpha::ButtonMarketing": {
176
+ "DEFAULT_SCHEME": "default",
177
+ "DEFAULT_TAG": "button",
178
+ "DEFAULT_TYPE": "button",
179
+ "DEFAULT_VARIANT": "default",
180
+ "SCHEME_MAPPINGS": {
181
+ "default": "",
182
+ "primary": "btn-signup-mktg",
183
+ "outline": "btn-muted-mktg",
184
+ "transparent": "btn-subtle-mktg"
185
+ },
186
+ "SCHEME_OPTIONS": [
187
+ "default",
188
+ "primary",
189
+ "outline",
190
+ "transparent"
191
+ ],
192
+ "TAG_OPTIONS": [
193
+ "button",
194
+ "a"
195
+ ],
196
+ "TYPE_OPTIONS": [
197
+ "button",
198
+ "submit"
199
+ ],
200
+ "VARIANT_MAPPINGS": {
201
+ "default": "",
202
+ "large": "btn-large-mktg"
203
+ },
204
+ "VARIANT_OPTIONS": [
205
+ "default",
206
+ "large"
207
+ ]
208
+ },
209
+ "Primer::Alpha::CheckBox": {
210
+ },
211
+ "Primer::Alpha::CheckBoxGroup": {
212
+ },
213
+ "Primer::Alpha::Dialog": {
214
+ "Body": "Primer::Alpha::Dialog::Body",
215
+ "DEFAULT_POSITION": "center",
216
+ "DEFAULT_POSITION_NARROW": "inherit",
217
+ "DEFAULT_SIZE": "medium",
218
+ "Footer": "Primer::Alpha::Dialog::Footer",
219
+ "Header": "Primer::Alpha::Dialog::Header",
220
+ "POSITION_MAPPINGS": {
221
+ "center": "Overlay-backdrop--center",
222
+ "left": "Overlay-backdrop--side Overlay-backdrop--placement-left",
223
+ "right": "Overlay-backdrop--side Overlay-backdrop--placement-right"
224
+ },
225
+ "POSITION_NARROW_MAPPINGS": {
226
+ "inherit": "",
227
+ "bottom": "Overlay-backdrop--side-whenNarrow Overlay-backdrop--placement-bottom-whenNarrow",
228
+ "fullscreen": "Overlay-backdrop--full-whenNarrow",
229
+ "left": "Overlay-backdrop--side-whenNarrow Overlay-backdrop--placement-left-whenNarrow",
230
+ "right": "Overlay-backdrop--side-whenNarrow Overlay-backdrop--placement-right-whenNarrow"
231
+ },
232
+ "POSITION_NARROW_OPTIONS": [
233
+ "inherit",
234
+ "bottom",
235
+ "fullscreen",
236
+ "left",
237
+ "right"
238
+ ],
239
+ "POSITION_OPTIONS": [
240
+ "center",
241
+ "left",
242
+ "right"
243
+ ],
244
+ "SIZE_MAPPINGS": {
245
+ "small": "Overlay--size-small-portrait",
246
+ "medium_portrait": "Overlay--size-medium-portrait",
247
+ "medium": "Overlay--size-medium",
248
+ "large": "Overlay--size-large",
249
+ "xlarge": "Overlay--size-xlarge",
250
+ "auto": "Overlay--size-auto"
251
+ },
252
+ "SIZE_OPTIONS": [
253
+ "small",
254
+ "medium_portrait",
255
+ "medium",
256
+ "large",
257
+ "xlarge",
258
+ "auto"
259
+ ]
260
+ },
261
+ "Primer::Alpha::Dialog::Body": {
262
+ },
263
+ "Primer::Alpha::Dialog::Footer": {
264
+ },
265
+ "Primer::Alpha::Dialog::Header": {
266
+ },
267
+ "Primer::Alpha::Dropdown": {
268
+ "Menu": "Primer::Alpha::Dropdown::Menu"
269
+ },
270
+ "Primer::Alpha::Dropdown::Menu": {
271
+ "AS_DEFAULT": "default",
272
+ "AS_OPTIONS": [
273
+ "default",
274
+ "list"
275
+ ],
276
+ "DIRECTION_DEFAULT": "se",
277
+ "DIRECTION_OPTIONS": [
278
+ "se",
279
+ "sw",
280
+ "w",
281
+ "e",
282
+ "ne",
283
+ "s"
284
+ ],
285
+ "Item": "Primer::Alpha::Dropdown::Menu::Item",
286
+ "SCHEME_DEFAULT": "default",
287
+ "SCHEME_MAPPINGS": {
288
+ "default": "",
289
+ "dark": "dropdown-menu-dark"
290
+ }
291
+ },
292
+ "Primer::Alpha::Dropdown::Menu::Item": {
293
+ "BUTTON_TAGS": [
294
+ "button",
295
+ "summary"
296
+ ],
297
+ "TAG_DEFAULT": "a",
298
+ "TAG_OPTIONS": [
299
+ "a",
300
+ "button",
301
+ "summary"
302
+ ]
303
+ },
304
+ "Primer::Alpha::FormButton": {
305
+ },
306
+ "Primer::Alpha::FormControl": {
307
+ },
308
+ "Primer::Alpha::HellipButton": {
309
+ },
310
+ "Primer::Alpha::HiddenTextExpander": {
311
+ },
312
+ "Primer::Alpha::Image": {
313
+ },
314
+ "Primer::Alpha::ImageCrop": {
315
+ },
316
+ "Primer::Alpha::Layout": {
317
+ "FIRST_IN_SOURCE_DEFAULT": "sidebar",
318
+ "FIRST_IN_SOURCE_OPTIONS": [
319
+ "sidebar",
320
+ "main"
321
+ ],
322
+ "GUTTER_DEFAULT": "default",
323
+ "GUTTER_MAPPINGS": {
324
+ "none": "Layout--gutter-none",
325
+ "condensed": "Layout--gutter-condensed",
326
+ "spacious": "Layout--gutter-spacious",
327
+ "default": ""
328
+ },
329
+ "GUTTER_OPTIONS": [
330
+ "none",
331
+ "condensed",
332
+ "spacious",
333
+ "default"
334
+ ],
335
+ "Main": "Primer::Alpha::Layout::Main",
336
+ "SIDEBAR_COL_PLACEMENT_DEFAULT": "start",
337
+ "SIDEBAR_COL_PLACEMENT_OPTIONS": [
338
+ "start",
339
+ "end"
340
+ ],
341
+ "SIDEBAR_ROW_PLACEMENT_DEFAULT": "start",
342
+ "SIDEBAR_ROW_PLACEMENT_OPTIONS": [
343
+ "start",
344
+ "end",
345
+ "none"
346
+ ],
347
+ "SIDEBAR_WIDTH_DEFAULT": "default",
348
+ "SIDEBAR_WIDTH_MAPPINGS": {
349
+ "default": "",
350
+ "narrow": "Layout--sidebar-narrow",
351
+ "wide": "Layout--sidebar-wide"
352
+ },
353
+ "SIDEBAR_WIDTH_OPTIONS": [
354
+ "default",
355
+ "narrow",
356
+ "wide"
357
+ ],
358
+ "STACKING_BREAKPOINT_DEFAULT": "md",
359
+ "STACKING_BREAKPOINT_MAPPINGS": {
360
+ "sm": "",
361
+ "md": "Layout--flowRow-until-md",
362
+ "lg": "Layout--flowRow-until-lg"
363
+ },
364
+ "STACKING_BREAKPOINT_OPTIONS": [
365
+ "sm",
366
+ "md",
367
+ "lg"
368
+ ],
369
+ "Sidebar": "Primer::Alpha::Layout::Sidebar"
370
+ },
371
+ "Primer::Alpha::Layout::Main": {
372
+ "TAG_DEFAULT": "div",
373
+ "TAG_OPTIONS": [
374
+ "div",
375
+ "main"
376
+ ],
377
+ "WIDTH_DEFAULT": "full",
378
+ "WIDTH_OPTIONS": [
379
+ "full",
380
+ "md",
381
+ "lg",
382
+ "xl"
383
+ ]
384
+ },
385
+ "Primer::Alpha::Layout::Sidebar": {
386
+ "TAG_DEFAULT": "div",
387
+ "TAG_OPTIONS": [
388
+ "div",
389
+ "aside",
390
+ "nav",
391
+ "section"
392
+ ]
393
+ },
394
+ "Primer::Alpha::Menu": {
395
+ "HEADING_TAG_FALLBACK": "h2",
396
+ "HEADING_TAG_OPTIONS": [
397
+ "h1",
398
+ "h2",
399
+ "h3",
400
+ "h4",
401
+ "h5",
402
+ "h6"
403
+ ]
404
+ },
405
+ "Primer::Alpha::MultiInput": {
406
+ },
407
+ "Primer::Alpha::NavList": {
408
+ "Divider": "Primer::Alpha::NavList::Divider",
409
+ "Group": "Primer::Alpha::NavList::Group",
410
+ "Heading": "Primer::Alpha::NavList::Heading",
411
+ "Item": "Primer::Alpha::NavList::Item"
412
+ },
413
+ "Primer::Alpha::NavList::Divider": {
414
+ },
415
+ "Primer::Alpha::NavList::Group": {
416
+ },
417
+ "Primer::Alpha::NavList::Heading": {
418
+ },
419
+ "Primer::Alpha::NavList::Item": {
420
+ },
421
+ "Primer::Alpha::Navigation::Tab": {
422
+ "ARIA_CURRENT_OPTIONS_FOR_ANCHOR": [
423
+ true,
424
+ "page"
425
+ ],
426
+ "DEFAULT_ARIA_CURRENT_FOR_ANCHOR": "page"
427
+ },
428
+ "Primer::Alpha::OcticonSymbols": {
429
+ },
430
+ "Primer::Alpha::Overlay": {
431
+ "ALIGN_CONTENT_MAPPINGS": {
432
+ "start": "Overlay-footer--alignStart",
433
+ "center": "Overlay-footer--alignCenter",
434
+ "end": "Overlay-footer--alignEnd"
435
+ },
436
+ "ALIGN_CONTENT_OPTIONS": [
437
+ "start",
438
+ "center",
439
+ "end"
440
+ ],
441
+ "ANCHOR_ALIGN_OPTIONS": [
442
+ "start",
443
+ "center",
444
+ "end"
445
+ ],
446
+ "ANCHOR_OFFSET_OPTIONS": [
447
+ "normal",
448
+ "spacious"
449
+ ],
450
+ "ANCHOR_SIDE_MAPPINGS": {
451
+ "inside_top": "inside-top",
452
+ "inside_bottom": "inside-bottom",
453
+ "inside_left": "inside-left",
454
+ "inside_right": "inside-right",
455
+ "inside_center": "inside-center",
456
+ "outside_top": "outside-top",
457
+ "outside_bottom": "outside-bottom",
458
+ "outside_left": "outside-left",
459
+ "outside_right": "outside-right"
460
+ },
461
+ "ANCHOR_SIDE_OPTIONS": [
462
+ "inside_top",
463
+ "inside_bottom",
464
+ "inside_left",
465
+ "inside_right",
466
+ "inside_center",
467
+ "outside_top",
468
+ "outside_bottom",
469
+ "outside_left",
470
+ "outside_right"
471
+ ],
472
+ "Body": "Primer::Alpha::Overlay::Body",
473
+ "DEFAULT_ALIGN_CONTENT": "end",
474
+ "DEFAULT_ANCHOR_ALIGN": "start",
475
+ "DEFAULT_ANCHOR_OFFSET": "normal",
476
+ "DEFAULT_ANCHOR_SIDE": "outside_bottom",
477
+ "DEFAULT_PADDING": "normal",
478
+ "DEFAULT_POPOVER": "auto",
479
+ "DEFAULT_SIZE": "auto",
480
+ "Footer": "Primer::Alpha::Overlay::Footer",
481
+ "Header": "Primer::Alpha::Overlay::Header",
482
+ "PADDING_MAPPINGS": {
483
+ "normal": null,
484
+ "condensed": "Overlay-body--paddingCondensed",
485
+ "none": "Overlay-body--paddingNone"
486
+ },
487
+ "PADDING_OPTIONS": [
488
+ "normal",
489
+ "condensed",
490
+ "none"
491
+ ],
492
+ "POPOVER_OPTIONS": [
493
+ "auto",
494
+ "manual"
495
+ ],
496
+ "ROLE_OPTIONS": [
497
+ "dialog",
498
+ "menu",
499
+ null
500
+ ],
501
+ "SIZE_MAPPINGS": {
502
+ "auto": "Overlay--size-auto",
503
+ "small": "Overlay--size-small",
504
+ "medium": "Overlay--size-medium",
505
+ "medium_portrait": "Overlay--size-medium-portrait",
506
+ "large": "Overlay--size-large",
507
+ "xlarge": "Overlay--size-xlarge"
508
+ },
509
+ "SIZE_OPTIONS": [
510
+ "auto",
511
+ "small",
512
+ "medium",
513
+ "medium_portrait",
514
+ "large",
515
+ "xlarge"
516
+ ]
517
+ },
518
+ "Primer::Alpha::Overlay::Body": {
519
+ },
520
+ "Primer::Alpha::Overlay::Footer": {
521
+ },
522
+ "Primer::Alpha::Overlay::Header": {
523
+ "DEFAULT_SIZE": "medium",
524
+ "SIZE_MAPPINGS": {
525
+ "medium": null,
526
+ "large": "Overlay-header--large"
527
+ },
528
+ "SIZE_OPTIONS": [
529
+ "medium",
530
+ "large"
531
+ ]
532
+ },
533
+ "Primer::Alpha::RadioButton": {
534
+ },
535
+ "Primer::Alpha::RadioButtonGroup": {
536
+ },
537
+ "Primer::Alpha::SegmentedControl": {
538
+ "FULL_WIDTH_DEFAULT": false,
539
+ "HIDE_LABELS_DEFAULT": false,
540
+ "Item": "Primer::Alpha::SegmentedControl::Item"
541
+ },
542
+ "Primer::Alpha::SegmentedControl::Item": {
543
+ },
544
+ "Primer::Alpha::Select": {
545
+ },
546
+ "Primer::Alpha::SubmitButton": {
547
+ },
548
+ "Primer::Alpha::TabContainer": {
549
+ },
550
+ "Primer::Alpha::TabNav": {
551
+ "BODY_TAG_DEFAULT": "ul",
552
+ "TAG_DEFAULT": "nav",
553
+ "TAG_OPTIONS": [
554
+ "nav",
555
+ "div"
556
+ ]
557
+ },
558
+ "Primer::Alpha::TabPanels": {
559
+ "BODY_TAG_DEFAULT": "ul",
560
+ "TAG_DEFAULT": "nav",
561
+ "TAG_OPTIONS": [
562
+ "nav",
563
+ "div"
564
+ ]
565
+ },
566
+ "Primer::Alpha::TextArea": {
567
+ },
568
+ "Primer::Alpha::TextField": {
569
+ },
570
+ "Primer::Alpha::ToggleSwitch": {
571
+ "SIZE_DEFAULT": "medium",
572
+ "SIZE_MAPPINGS": {
573
+ "medium": null,
574
+ "small": "ToggleSwitch--small"
575
+ },
576
+ "SIZE_OPTIONS": [
577
+ "medium",
578
+ "small"
579
+ ],
580
+ "STATUS_LABEL_POSITION_DEFAULT": "start",
581
+ "STATUS_LABEL_POSITION_MAPPINGS": {
582
+ "start": null,
583
+ "end": "ToggleSwitch--statusAtEnd"
584
+ },
585
+ "STATUS_LABEL_POSITION_OPTIONS": [
586
+ "start",
587
+ "end"
588
+ ]
589
+ },
590
+ "Primer::Alpha::Tooltip": {
591
+ "DIRECTION_DEFAULT": "s",
592
+ "DIRECTION_OPTIONS": [
593
+ "s",
594
+ "n",
595
+ "e",
596
+ "w",
597
+ "ne",
598
+ "nw",
599
+ "se",
600
+ "sw"
601
+ ],
602
+ "TYPE_FALLBACK": "description",
603
+ "TYPE_OPTIONS": [
604
+ "label",
605
+ "description"
606
+ ]
607
+ },
608
+ "Primer::Alpha::UnderlineNav": {
609
+ "BODY_TAG_DEFAULT": "ul",
610
+ "TAG_DEFAULT": "nav",
611
+ "TAG_OPTIONS": [
612
+ "nav",
613
+ "div"
614
+ ]
615
+ },
616
+ "Primer::Alpha::UnderlinePanels": {
617
+ },
618
+ "Primer::BaseComponent": {
619
+ "SELF_CLOSING_TAGS": [
620
+ "area",
621
+ "base",
622
+ "br",
623
+ "col",
624
+ "embed",
625
+ "hr",
626
+ "img",
627
+ "input",
628
+ "link",
629
+ "meta",
630
+ "param",
631
+ "source",
632
+ "track",
633
+ "wbr"
634
+ ]
635
+ },
636
+ "Primer::Beta::AutoComplete": {
637
+ "DEFAULT_SIZE": "medium",
638
+ "DEFAULT_WIDTH": "auto",
639
+ "Item": "Primer::Beta::AutoComplete::Item",
640
+ "SIZE_MAPPINGS": {
641
+ "small": "FormControl-small",
642
+ "medium": "FormControl-medium",
643
+ "large": "FormControl-large"
644
+ },
645
+ "SIZE_OPTIONS": [
646
+ "small",
647
+ "medium",
648
+ "large"
649
+ ],
650
+ "WIDTH_MAPPINGS": {
651
+ "auto": "Overlay--width-auto",
652
+ "small": "Overlay--width-small",
653
+ "medium": "Overlay--width-medium",
654
+ "large": "Overlay--width-large",
655
+ "xlarge": "Overlay--width-xlarge",
656
+ "xxlarge": "Overlay--width-xxlarge"
657
+ },
658
+ "WIDTH_OPTIONS": [
659
+ "auto",
660
+ "small",
661
+ "medium",
662
+ "large",
663
+ "xlarge",
664
+ "xxlarge"
665
+ ]
666
+ },
667
+ "Primer::Beta::AutoComplete::Item": {
668
+ "DEFAULT_DESCRIPTION_VARIANT": "block",
669
+ "DESCRIPTION_VARIANT_MAPPINGS": {
670
+ "inline": "ActionListItem-descriptionWrap--inline",
671
+ "block": "ActionListItem-descriptionWrap"
672
+ },
673
+ "DESCRIPTION_VARIANT_OPTIONS": [
674
+ "inline",
675
+ "block"
676
+ ]
677
+ },
678
+ "Primer::Beta::Avatar": {
679
+ "DEFAULT_SHAPE": "circle",
680
+ "DEFAULT_SIZE": 20,
681
+ "SHAPE_OPTIONS": [
682
+ "circle",
683
+ "square"
684
+ ],
685
+ "SIZE_OPTIONS": [
686
+ 16,
687
+ 20,
688
+ 24,
689
+ 32,
690
+ 40,
691
+ 48,
692
+ 80
693
+ ],
694
+ "SMALL_THRESHOLD": 24
695
+ },
696
+ "Primer::Beta::AvatarStack": {
697
+ "ALIGN_DEFAULT": "left",
698
+ "ALIGN_OPTIONS": [
699
+ "left",
700
+ "right"
701
+ ],
702
+ "BODY_TAG_OPTIONS": [
703
+ "div",
704
+ "span"
705
+ ],
706
+ "DEFAULT_BODY_TAG": "div",
707
+ "DEFAULT_TAG": "div",
708
+ "TAG_OPTIONS": [
709
+ "div",
710
+ "span"
711
+ ]
712
+ },
713
+ "Primer::Beta::BaseButton": {
714
+ "DEFAULT_TAG": "button",
715
+ "DEFAULT_TYPE": "button",
716
+ "TAG_OPTIONS": [
717
+ "button",
718
+ "a",
719
+ "summary"
720
+ ],
721
+ "TYPE_OPTIONS": [
722
+ "button",
723
+ "reset",
724
+ "submit"
725
+ ]
726
+ },
727
+ "Primer::Beta::Blankslate": {
728
+ "VISUAL_OPTIONS": [
729
+ "icon",
730
+ "spinner",
731
+ "image"
732
+ ]
733
+ },
734
+ "Primer::Beta::BorderBox": {
735
+ "DEFAULT_PADDING": "default",
736
+ "DEFAULT_ROW_SCHEME": "default",
737
+ "Header": "Primer::Beta::BorderBox::Header",
738
+ "PADDING_MAPPINGS": {
739
+ "default": "",
740
+ "condensed": "Box--condensed",
741
+ "spacious": "Box--spacious"
742
+ },
743
+ "PADDING_SUGGESTION": "Perhaps you could consider using :padding options of default, condensed, and spacious?",
744
+ "ROW_SCHEME_MAPPINGS": {
745
+ "default": "",
746
+ "neutral": "Box-row--gray",
747
+ "info": "Box-row--blue",
748
+ "warning": "Box-row--yellow"
749
+ }
750
+ },
751
+ "Primer::Beta::BorderBox::Header": {
752
+ "TITLE_TAG_FALLBACK": "h2",
753
+ "TITLE_TAG_OPTIONS": [
754
+ "h1",
755
+ "h2",
756
+ "h3",
757
+ "h4",
758
+ "h5",
759
+ "h6"
760
+ ]
761
+ },
762
+ "Primer::Beta::Breadcrumbs": {
763
+ "ARGS_DENYLIST": {
764
+ "[:p, :pt, :pb, :pr, :pl, :px, :py]": "Padding system arguments are not allowed on Breadcrumbs. Consider using margins instead.",
765
+ "[:font_size]": "Breadcrumbs do not support the font_size system argument."
766
+ },
767
+ "ARIA_LABEL": {
768
+ "label": "Breadcrumb"
769
+ },
770
+ "FONT_SIZE_MESSAGE": "Breadcrumbs do not support the font_size system argument.",
771
+ "Item": "Primer::Beta::Breadcrumbs::Item",
772
+ "PADDING_MESSAGE": "Padding system arguments are not allowed on Breadcrumbs. Consider using margins instead."
773
+ },
774
+ "Primer::Beta::Breadcrumbs::Item": {
775
+ },
776
+ "Primer::Beta::Button": {
777
+ "ALIGN_CONTENT_MAPPINGS": {
778
+ "start": "Button-content--alignStart",
779
+ "center": ""
780
+ },
781
+ "ALIGN_CONTENT_OPTIONS": [
782
+ "start",
783
+ "center"
784
+ ],
785
+ "DEFAULT_ALIGN_CONTENT": "center",
786
+ "DEFAULT_SCHEME": "default",
787
+ "DEFAULT_SIZE": "medium",
788
+ "SCHEME_MAPPINGS": {
789
+ "default": "Button--secondary",
790
+ "primary": "Button--primary",
791
+ "secondary": "Button--secondary",
792
+ "danger": "Button--danger",
793
+ "invisible": "Button--invisible",
794
+ "link": "Button--link"
795
+ },
796
+ "SCHEME_OPTIONS": [
797
+ "default",
798
+ "primary",
799
+ "secondary",
800
+ "danger",
801
+ "invisible",
802
+ "link"
803
+ ],
804
+ "SIZE_MAPPINGS": {
805
+ "small": "Button--small",
806
+ "medium": "Button--medium",
807
+ "large": "Button--large"
808
+ },
809
+ "SIZE_OPTIONS": [
810
+ "small",
811
+ "medium",
812
+ "large"
813
+ ]
814
+ },
815
+ "Primer::Beta::ButtonGroup": {
816
+ },
817
+ "Primer::Beta::ClipboardCopy": {
818
+ },
819
+ "Primer::Beta::CloseButton": {
820
+ "DEFAULT_TYPE": "button",
821
+ "TYPE_OPTIONS": [
822
+ "button",
823
+ "submit"
824
+ ]
825
+ },
826
+ "Primer::Beta::Counter": {
827
+ "DEFAULT_SCHEME": "default",
828
+ "DEPRECATED_SCHEME_OPTIONS": [
829
+ "gray",
830
+ "light_gray"
831
+ ],
832
+ "SCHEME_MAPPINGS": {
833
+ "default": "",
834
+ "primary": "Counter--primary",
835
+ "secondary": "Counter--secondary",
836
+ "gray": "Counter--primary",
837
+ "light_gray": "Counter--secondary"
838
+ },
839
+ "SCHEME_OPTIONS": [
840
+ "default",
841
+ "primary",
842
+ "secondary"
843
+ ]
844
+ },
845
+ "Primer::Beta::Details": {
846
+ "BODY_TAG_DEFAULT": "div",
847
+ "BODY_TAG_OPTIONS": [
848
+ "ul",
849
+ "details-menu",
850
+ "details-dialog",
851
+ "div"
852
+ ],
853
+ "NO_OVERLAY": "none",
854
+ "OVERLAY_MAPPINGS": {
855
+ "none": "",
856
+ "default": "details-overlay",
857
+ "dark": "details-overlay details-overlay-dark"
858
+ }
859
+ },
860
+ "Primer::Beta::Flash": {
861
+ "DEFAULT_SCHEME": "default",
862
+ "SCHEME_MAPPINGS": {
863
+ "default": "",
864
+ "warning": "flash-warn",
865
+ "danger": "flash-error",
866
+ "success": "flash-success"
867
+ }
868
+ },
869
+ "Primer::Beta::Heading": {
870
+ "TAG_FALLBACK": "h2",
871
+ "TAG_OPTIONS": [
872
+ "h1",
873
+ "h2",
874
+ "h3",
875
+ "h4",
876
+ "h5",
877
+ "h6"
878
+ ]
879
+ },
880
+ "Primer::Beta::IconButton": {
881
+ "DEFAULT_SCHEME": "default",
882
+ "SCHEME_MAPPINGS": {
883
+ "default": "Button--secondary",
884
+ "danger": "Button--danger",
885
+ "invisible": "Button--invisible"
886
+ },
887
+ "SCHEME_OPTIONS": [
888
+ "default",
889
+ "danger",
890
+ "invisible"
891
+ ]
892
+ },
893
+ "Primer::Beta::Label": {
894
+ "DEFAULT_SCHEME": "default",
895
+ "DEFAULT_SIZE": "medium",
896
+ "DEFAULT_TAG": "span",
897
+ "DEFAULT_VARIANT": "none",
898
+ "DEPRECATED_SCHEME_OPTIONS": [
899
+ "info",
900
+ "warning",
901
+ "orange",
902
+ "purple"
903
+ ],
904
+ "DEPRECATED_VARIANT_OPTIONS": [
905
+ "large",
906
+ "inline"
907
+ ],
908
+ "INLINE_CLASS": "Label--inline",
909
+ "SCHEME_MAPPINGS": {
910
+ "default": "",
911
+ "primary": "Label--primary",
912
+ "secondary": "Label--secondary",
913
+ "accent": "Label--accent",
914
+ "success": "Label--success",
915
+ "attention": "Label--attention",
916
+ "danger": "Label--danger",
917
+ "severe": "Label--severe",
918
+ "done": "Label--done",
919
+ "sponsors": "Label--sponsors",
920
+ "info": "Label--info",
921
+ "warning": "Label--warning",
922
+ "orange": "Label--orange",
923
+ "purple": "Label--purple"
924
+ },
925
+ "SCHEME_OPTIONS": [
926
+ "default",
927
+ "primary",
928
+ "secondary",
929
+ "accent",
930
+ "success",
931
+ "attention",
932
+ "danger",
933
+ "severe",
934
+ "done",
935
+ "sponsors"
936
+ ],
937
+ "SIZE_MAPPINGS": {
938
+ "medium": null,
939
+ "large": "Label--large"
940
+ },
941
+ "SIZE_OPTIONS": [
942
+ "medium",
943
+ "large"
944
+ ],
945
+ "TAG_OPTIONS": [
946
+ "span",
947
+ "summary",
948
+ "a",
949
+ "div"
950
+ ],
951
+ "VARIANT_OPTIONS": [
952
+ "none"
953
+ ]
954
+ },
955
+ "Primer::Beta::Link": {
956
+ "DEFAULT_SCHEME": "default",
957
+ "SCHEME_MAPPINGS": {
958
+ "default": "",
959
+ "primary": "Link--primary",
960
+ "secondary": "Link--secondary"
961
+ }
962
+ },
963
+ "Primer::Beta::Markdown": {
964
+ "DEFAULT_TAG": "div",
965
+ "TAG_OPTIONS": [
966
+ "div",
967
+ "article",
968
+ "td"
969
+ ]
970
+ },
971
+ "Primer::Beta::Octicon": {
972
+ "SIZE_DEFAULT": "small",
973
+ "SIZE_MAPPINGS": {
974
+ "xsmall": 12,
975
+ "small": 16,
976
+ "medium": 24
977
+ },
978
+ "SIZE_MEDIUM": "medium",
979
+ "SIZE_OPTIONS": [
980
+ "xsmall",
981
+ "small",
982
+ "medium"
983
+ ],
984
+ "SIZE_XSMALL": "xsmall"
985
+ },
986
+ "Primer::Beta::Popover": {
987
+ "CARET_DEFAULT": "top",
988
+ "CARET_MAPPINGS": {
989
+ "top": "",
990
+ "bottom": "Popover-message--bottom",
991
+ "bottom_right": "Popover-message--bottom-right",
992
+ "bottom_left": "Popover-message--bottom-left",
993
+ "left": "Popover-message--left",
994
+ "left_bottom": "Popover-message--left-bottom",
995
+ "left_top": "Popover-message--left-top",
996
+ "right": "Popover-message--right",
997
+ "right_bottom": "Popover-message--right-bottom",
998
+ "right_top": "Popover-message--right-top",
999
+ "top_left": "Popover-message--top-left",
1000
+ "top_right": "Popover-message--top-right"
1001
+ },
1002
+ "DEFAULT_HEADING_TAG": "h4"
1003
+ },
1004
+ "Primer::Beta::ProgressBar": {
1005
+ "SIZE_DEFAULT": "default",
1006
+ "SIZE_MAPPINGS": {
1007
+ "default": "",
1008
+ "small": "Progress--small",
1009
+ "large": "Progress--large"
1010
+ },
1011
+ "SIZE_OPTIONS": [
1012
+ "default",
1013
+ "small",
1014
+ "large"
1015
+ ]
1016
+ },
1017
+ "Primer::Beta::RelativeTime": {
1018
+ "DAY_DEFAULT": null,
1019
+ "DAY_MAPPINGS": {
1020
+ "": null,
1021
+ "numeric": "numeric",
1022
+ "two_digit": "2-digit"
1023
+ },
1024
+ "DAY_OPTIONS": [
1025
+ null,
1026
+ "numeric",
1027
+ "two_digit"
1028
+ ],
1029
+ "FORMAT_DEFAULT": "auto",
1030
+ "FORMAT_OPTIONS": [
1031
+ "auto",
1032
+ "micro",
1033
+ "elapsed"
1034
+ ],
1035
+ "FORMAT_STYLE_DEFAULT": null,
1036
+ "FORMAT_STYLE_OPTIONS": [
1037
+ null,
1038
+ "long",
1039
+ "short",
1040
+ "narrow"
1041
+ ],
1042
+ "HOUR_DEFAULT": null,
1043
+ "HOUR_MAPPINGS": {
1044
+ "": null,
1045
+ "numeric": "numeric",
1046
+ "two_digit": "2-digit"
1047
+ },
1048
+ "HOUR_OPTIONS": [
1049
+ null,
1050
+ "numeric",
1051
+ "two_digit"
1052
+ ],
1053
+ "MINUTE_DEFAULT": null,
1054
+ "MINUTE_MAPPINGS": {
1055
+ "": null,
1056
+ "numeric": "numeric",
1057
+ "two_digit": "2-digit"
1058
+ },
1059
+ "MINUTE_OPTIONS": [
1060
+ null,
1061
+ "numeric",
1062
+ "two_digit"
1063
+ ],
1064
+ "MONTH_DEFAULT": null,
1065
+ "MONTH_MAPPINGS": {
1066
+ "": null,
1067
+ "numeric": "numeric",
1068
+ "two_digit": "2-digit",
1069
+ "short": "short",
1070
+ "long": "long",
1071
+ "narrow": "narrow"
1072
+ },
1073
+ "MONTH_OPTIONS": [
1074
+ null,
1075
+ "numeric",
1076
+ "two_digit",
1077
+ "short",
1078
+ "long",
1079
+ "narrow"
1080
+ ],
1081
+ "PRECISION_DEFAULT": null,
1082
+ "PRECISION_OPTIONS": [
1083
+ null,
1084
+ "second",
1085
+ "minute",
1086
+ "hour",
1087
+ "day",
1088
+ "month",
1089
+ "year"
1090
+ ],
1091
+ "SECOND_DEFAULT": null,
1092
+ "SECOND_MAPPINGS": {
1093
+ "": null,
1094
+ "numeric": "numeric",
1095
+ "two_digit": "2-digit"
1096
+ },
1097
+ "SECOND_OPTIONS": [
1098
+ null,
1099
+ "numeric",
1100
+ "two_digit"
1101
+ ],
1102
+ "TENSE_DEFAULT": "auto",
1103
+ "TENSE_OPTIONS": [
1104
+ "auto",
1105
+ "past",
1106
+ "future"
1107
+ ],
1108
+ "TIMEZONENAME_DEFAULT": null,
1109
+ "TIMEZONENAME_OPTIONS": [
1110
+ null,
1111
+ "long",
1112
+ "short",
1113
+ "short_offset",
1114
+ "long_offset",
1115
+ "short_generic",
1116
+ "long_generic"
1117
+ ],
1118
+ "TIMEZONE_MAPPINGS": {
1119
+ "": null,
1120
+ "long": "long",
1121
+ "short": "short",
1122
+ "short_offset": "shortOffset",
1123
+ "long_offset": "longOffset",
1124
+ "short_generic": "shortGeneric",
1125
+ "long_generic": "longGeneric"
1126
+ },
1127
+ "WEEKDAY_DEFAULT": null,
1128
+ "WEEKDAY_OPTIONS": [
1129
+ null,
1130
+ "long",
1131
+ "short",
1132
+ "narrow"
1133
+ ],
1134
+ "YEAR_DEFAULT": null,
1135
+ "YEAR_MAPPINGS": {
1136
+ "": null,
1137
+ "numeric": "numeric",
1138
+ "two_digit": "2-digit"
1139
+ },
1140
+ "YEAR_OPTIONS": [
1141
+ null,
1142
+ "numeric",
1143
+ "two_digit"
1144
+ ]
1145
+ },
1146
+ "Primer::Beta::Spinner": {
1147
+ "DEFAULT_SIZE": "medium",
1148
+ "DEFAULT_STYLE": "box-sizing: content-box; color: var(--color-icon-primary);",
1149
+ "SIZE_MAPPINGS": {
1150
+ "small": 16,
1151
+ "medium": 32,
1152
+ "large": 64
1153
+ },
1154
+ "SIZE_OPTIONS": [
1155
+ "small",
1156
+ "medium",
1157
+ "large"
1158
+ ]
1159
+ },
1160
+ "Primer::Beta::State": {
1161
+ "DEPRECATED_SCHEME_MAPPINGS": {
1162
+ "default": "",
1163
+ "green": "State--open",
1164
+ "red": "State--closed",
1165
+ "purple": "State--merged"
1166
+ },
1167
+ "NEW_SCHEME_MAPPINGS": {
1168
+ "open": "State--open",
1169
+ "closed": "State--closed",
1170
+ "merged": "State--merged"
1171
+ },
1172
+ "SCHEME_DEFAULT": "default",
1173
+ "SCHEME_MAPPINGS": {
1174
+ "open": "State--open",
1175
+ "closed": "State--closed",
1176
+ "merged": "State--merged",
1177
+ "default": "",
1178
+ "green": "State--open",
1179
+ "red": "State--closed",
1180
+ "purple": "State--merged"
1181
+ },
1182
+ "SCHEME_OPTIONS": [
1183
+ "open",
1184
+ "closed",
1185
+ "merged",
1186
+ "default",
1187
+ "green",
1188
+ "red",
1189
+ "purple"
1190
+ ],
1191
+ "SIZE_DEFAULT": "default",
1192
+ "SIZE_MAPPINGS": {
1193
+ "default": "",
1194
+ "small": "State--small"
1195
+ },
1196
+ "SIZE_OPTIONS": [
1197
+ "default",
1198
+ "small"
1199
+ ],
1200
+ "TAG_DEFAULT": "span",
1201
+ "TAG_OPTIONS": [
1202
+ "span",
1203
+ "div"
1204
+ ]
1205
+ },
1206
+ "Primer::Beta::Subhead": {
1207
+ "DEFAULT_HEADING_TAG": "div",
1208
+ "HEADING_TAG_OPTIONS": [
1209
+ "div",
1210
+ "h1",
1211
+ "h2",
1212
+ "h3",
1213
+ "h4",
1214
+ "h5",
1215
+ "h6"
1216
+ ]
1217
+ },
1218
+ "Primer::Beta::Text": {
1219
+ "DEFAULT_TAG": "span"
1220
+ },
1221
+ "Primer::Beta::TimelineItem": {
1222
+ "Badge": "Primer::Beta::TimelineItem::Badge"
1223
+ },
1224
+ "Primer::Beta::TimelineItem::Badge": {
1225
+ },
1226
+ "Primer::Beta::Truncate": {
1227
+ "TruncateText": "Primer::Beta::Truncate::TruncateText"
1228
+ },
1229
+ "Primer::Beta::Truncate::TruncateText": {
1230
+ },
1231
+ "Primer::BlankslateComponent": {
1232
+ },
1233
+ "Primer::Box": {
1234
+ },
1235
+ "Primer::ButtonComponent": {
1236
+ "DEFAULT_SCHEME": "default",
1237
+ "DEFAULT_SIZE": "medium",
1238
+ "LINK_SCHEME": "link",
1239
+ "SCHEME_MAPPINGS": {
1240
+ "default": "",
1241
+ "primary": "btn-primary",
1242
+ "danger": "btn-danger",
1243
+ "outline": "btn-outline",
1244
+ "invisible": "btn-invisible",
1245
+ "link": "btn-link"
1246
+ },
1247
+ "SCHEME_OPTIONS": [
1248
+ "default",
1249
+ "primary",
1250
+ "danger",
1251
+ "outline",
1252
+ "invisible",
1253
+ "link"
1254
+ ],
1255
+ "SIZE_MAPPINGS": {
1256
+ "small": "btn-sm",
1257
+ "medium": ""
1258
+ },
1259
+ "SIZE_OPTIONS": [
1260
+ "small",
1261
+ "medium"
1262
+ ]
1263
+ },
1264
+ "Primer::ConditionalWrapper": {
1265
+ },
1266
+ "Primer::Content": {
1267
+ },
1268
+ "Primer::IconButton": {
1269
+ "DEFAULT_SCHEME": "default",
1270
+ "SCHEME_MAPPINGS": {
1271
+ "default": "",
1272
+ "danger": "btn-octicon-danger"
1273
+ },
1274
+ "SCHEME_OPTIONS": [
1275
+ "default",
1276
+ "danger"
1277
+ ]
1278
+ },
1279
+ "Primer::LayoutComponent": {
1280
+ "ALLOWED_SIDEBAR_COLS": [
1281
+ 1,
1282
+ 2,
1283
+ 3,
1284
+ 4,
1285
+ 5,
1286
+ 6,
1287
+ 7,
1288
+ 8,
1289
+ 9,
1290
+ 10,
1291
+ 11
1292
+ ],
1293
+ "ALLOWED_SIDES": [
1294
+ "right",
1295
+ "left"
1296
+ ],
1297
+ "DEFAULT_SIDE": "right",
1298
+ "DEFAULT_SIDEBAR_COL": 3,
1299
+ "MAX_COL": 12
1300
+ },
1301
+ "Primer::Navigation::TabComponent": {
1302
+ },
1303
+ "Primer::Tooltip": {
1304
+ "ALIGN_DEFAULT": "default",
1305
+ "ALIGN_MAPPING": {
1306
+ "default": "",
1307
+ "left_1": "tooltipped-align-left-1",
1308
+ "right_1": "tooltipped-align-right-1",
1309
+ "left_2": "tooltipped-align-left-2",
1310
+ "right_2": "tooltipped-align-right-2"
1311
+ },
1312
+ "DELAY_DEFAULT": false,
1313
+ "DIRECTION_DEFAULT": "n",
1314
+ "DIRECTION_OPTIONS": [
1315
+ "n",
1316
+ "nw",
1317
+ "ne",
1318
+ "w",
1319
+ "e",
1320
+ "sw",
1321
+ "s",
1322
+ "se"
1323
+ ],
1324
+ "MULTILINE_DEFAULT": false
1325
+ },
1326
+ "Primer::Truncate": {
1327
+ "DEFAULT_TAG": "div",
1328
+ "TAG_OPTIONS": [
1329
+ "div",
1330
+ "span",
1331
+ "p",
1332
+ "strong"
1333
+ ]
1334
+ }
1335
+ }