primer_view_components 0.0.61 → 0.0.65

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 (80) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +746 -613
  3. data/app/components/primer/alpha/border_box/header.rb +1 -2
  4. data/app/components/primer/alpha/button_marketing.rb +4 -4
  5. data/app/components/primer/alpha/tab_nav.rb +1 -1
  6. data/app/components/primer/alpha/tab_panels.rb +2 -2
  7. data/app/components/primer/alpha/underline_nav.rb +2 -1
  8. data/app/components/primer/alpha/underline_panels.rb +2 -2
  9. data/app/components/primer/base_component.rb +8 -36
  10. data/app/components/primer/beta/auto_complete/item.rb +1 -1
  11. data/app/components/primer/beta/auto_complete.rb +4 -2
  12. data/app/components/primer/beta/avatar.rb +1 -1
  13. data/app/components/primer/beta/blankslate.html.erb +2 -2
  14. data/app/components/primer/beta/blankslate.rb +7 -6
  15. data/app/components/primer/beta/breadcrumbs.rb +2 -2
  16. data/app/components/primer/beta/text.rb +1 -1
  17. data/app/components/primer/border_box_component.rb +1 -1
  18. data/app/components/primer/box_component.rb +3 -2
  19. data/app/components/primer/button_component.html.erb +3 -9
  20. data/app/components/primer/button_component.rb +61 -28
  21. data/app/components/primer/button_group.rb +9 -15
  22. data/app/components/primer/clipboard_copy.rb +1 -1
  23. data/app/components/primer/close_button.rb +1 -1
  24. data/app/components/primer/component.rb +77 -0
  25. data/app/components/primer/counter_component.rb +1 -1
  26. data/app/components/primer/details_component.rb +1 -1
  27. data/app/components/primer/dropdown/menu.rb +1 -1
  28. data/app/components/primer/dropdown.html.erb +0 -1
  29. data/app/components/primer/dropdown.rb +2 -1
  30. data/app/components/primer/dropdown_menu_component.rb +1 -1
  31. data/app/components/primer/flash_component.rb +3 -2
  32. data/app/components/primer/flex_component.rb +16 -16
  33. data/app/components/primer/flex_item_component.rb +1 -1
  34. data/app/components/primer/hellip_button.rb +1 -1
  35. data/app/components/primer/hidden_text_expander.rb +1 -1
  36. data/app/components/primer/image.rb +3 -3
  37. data/app/components/primer/image_crop.rb +2 -1
  38. data/app/components/primer/label_component.rb +23 -13
  39. data/app/components/primer/layout_component.rb +1 -0
  40. data/app/components/primer/local_time.rb +1 -1
  41. data/app/components/primer/markdown.rb +1 -1
  42. data/app/components/primer/menu_component.rb +2 -1
  43. data/app/components/primer/navigation/tab_component.rb +1 -0
  44. data/app/components/primer/octicon_component.rb +4 -2
  45. data/app/components/primer/octicon_symbols_component.rb +2 -2
  46. data/app/components/primer/popover_component.rb +3 -3
  47. data/app/components/primer/progress_bar_component.rb +7 -6
  48. data/app/components/primer/spinner_component.html.erb +4 -7
  49. data/app/components/primer/spinner_component.rb +1 -1
  50. data/app/components/primer/subhead_component.rb +3 -1
  51. data/app/components/primer/tab_container_component.rb +1 -1
  52. data/app/components/primer/time_ago_component.rb +1 -1
  53. data/app/components/primer/timeline_item_component.rb +4 -3
  54. data/app/components/primer/tooltip.rb +1 -0
  55. data/app/lib/primer/octicon/cache.rb +4 -10
  56. data/lib/primer/classify/utilities.rb +17 -44
  57. data/lib/primer/classify/utilities.yml +298 -68
  58. data/lib/primer/classify.rb +92 -178
  59. data/lib/primer/view_components/engine.rb +1 -0
  60. data/lib/primer/view_components/linters/argument_mappers/button.rb +4 -4
  61. data/lib/primer/view_components/linters/blankslate_api_migration.rb +11 -5
  62. data/lib/primer/view_components/version.rb +1 -1
  63. data/lib/rubocop/cop/primer/deprecated_arguments.rb +1 -1
  64. data/lib/rubocop/cop/primer/deprecated_button_arguments.rb +51 -0
  65. data/lib/rubocop/cop/primer/deprecated_label_schemes.rb +68 -0
  66. data/lib/rubocop/cop/primer/deprecated_layout_component.rb +30 -0
  67. data/lib/rubocop/cop/primer/primer_octicon.rb +1 -3
  68. data/lib/tasks/custom_utilities.yml +298 -0
  69. data/lib/tasks/docs.rake +1 -1
  70. data/lib/tasks/utilities.rake +21 -4
  71. data/static/arguments.yml +16 -7
  72. data/static/classes.yml +19 -18
  73. data/static/constants.json +25 -15
  74. metadata +10 -12
  75. data/app/components/primer/auto_complete/auto_complete.d.ts +0 -1
  76. data/app/components/primer/auto_complete/auto_complete.js +0 -1
  77. data/app/components/primer/auto_complete/auto_component.d.ts +0 -1
  78. data/app/components/primer/auto_complete/auto_component.js +0 -1
  79. data/lib/primer/classify/cache.rb +0 -109
  80. data/lib/primer/classify/flex.rb +0 -111
data/CHANGELOG.md CHANGED
@@ -30,1457 +30,1590 @@ The category for changes related to documentation, testing and tooling. Also, fo
30
30
 
31
31
  ## main
32
32
 
33
+ ## 0.0.65
34
+
35
+ ### Breaking Changes
36
+
37
+ - Revert accessibility changes to `Spinner` introduced since 0.0.60.
38
+
39
+ _Charlotte Dann_
40
+
41
+ ### Updates
42
+
43
+ - Optimize logic for converting class names into args
44
+
45
+ *Josh Klina*
46
+
47
+ ### Deprecations
48
+
49
+ - Deprecate `variant` in favor of `size` in `ButtonComponent` and `ButtonGroup`.
50
+
51
+ _Manuel Puyol_
52
+
53
+ ### Bug Fixes
54
+
55
+ - Call `image_path` on `Primer::Image#src`.
56
+
57
+ _Manuel Puyol_
58
+
59
+ ## 0.0.64
60
+
61
+ ### New
62
+
63
+ - Add `raise_on_invalid_aria` config option to silence `aria-label` errors.
64
+
65
+ _Manuel Puyol_
66
+
67
+ ### Bug Fixes
68
+
69
+ - Add missing `border: 0`, `font_size: 0` and responsive `flex` system arguments.
70
+
71
+ _Manuel Puyol_
72
+
73
+ ## 0.0.63
74
+
75
+ ### Breaking Changes
76
+
77
+ - Rename `caret` argument to `dropdown` in `ButtonComponent`.
78
+
79
+ _Manuel Puyol_
80
+
81
+ - Remove `:large` variant from `ButtonComponent`.
82
+
83
+ _Manuel Puyol_
84
+
85
+ - Update `Spinner` to add system arguments to outermost element
86
+
87
+ _Charlotte Dann_
88
+
89
+ ### Deprecations
90
+
91
+ - Deprecate `icon` and `counter` slots in `ButtonComponent` in favor of `leading_visual` and `trailing_visual`.
92
+
93
+ _Manuel Puyol_
94
+
95
+ ### Bug Fixes
96
+
97
+ - Fix `PopoverComponent`, allowing to reset `left` and `right` positioning.
98
+
99
+ _Manuel Puyol_
100
+
101
+ ## 0.0.62
102
+
103
+ ### New
104
+
105
+ - Add linter for tracking deprecated `LayoutComponent` callsites
106
+
107
+ _Josh Klina_
108
+
109
+ - Add functional `Label` schemes: `accent`, `attention`, `severe`, `done` and `sponsors`.
110
+
111
+ _Manuel Puyol, Simon Luthi_
112
+
113
+ - Add linter to migrate from deprecated `Label` schemes to the new ones.
114
+
115
+ _Manuel Puyol_
116
+
117
+ ### Updates
118
+
119
+ - Update `Button` to add `8px` spacing between icon, text and counter.
120
+
121
+ _Manuel Puyol_
122
+
123
+ - Update `BlankslateApiMigration` linter to support interpolations.
124
+
125
+ _Manuel Puyol_
126
+
127
+ - Change spacing in `Blankslate`:
128
+
129
+ - Between `description` and `primary_action` to `32px`.
130
+ - Between `primary_action` and `secondary_action` to `16px`.
131
+
132
+ _Manuel Puyol_
133
+
134
+ - Improve performance of `Classify#call`.
135
+
136
+ _Cameron Dutro_
137
+
138
+ ### Breaking Changes
139
+
140
+ - Add a warning to users if they try to use `tag:` parameters on a component where the tag is fixed.
141
+
142
+ _Owen Niblock_
143
+
144
+ - Updating to @primer/css@19.0.0 and @primer/primitives@7.1.0. Which removes support for deprecated system color arguments.
145
+
146
+ _Jon Rohan_
147
+
148
+ - Prevent `aria-label` to be used with `:div, :span, :p` tags without an explicit `role`.
149
+
150
+ _Manuel Puyol_
151
+
152
+ ### Deprecations
153
+
154
+ - Deprecate `Label` schemes `info` and `warning` in favor of `accent` and `attention`.
155
+
156
+ _Manuel Puyol, Simon Luthi_
157
+
33
158
  ## 0.0.61
34
159
 
35
160
  ### New
36
161
 
37
- * Adding new Alpha component: `Layout` with `main` and `sidebar` slots
162
+ - Adding new Alpha component: `Layout` with `main` and `sidebar` slots
38
163
 
39
- *Cameron Dutro*
164
+ _Cameron Dutro_
40
165
 
41
- * Add a two-column layout linter.
166
+ - Add a two-column layout linter.
42
167
 
43
- *Cameron Dutro*
168
+ _Cameron Dutro_
44
169
 
45
- * Add the `HellipButton` component
170
+ - Add the `HellipButton` component
46
171
 
47
- *Amélia Chavot*, *Owen Niblock*
172
+ _Amélia Chavot_, _Owen Niblock_
48
173
 
49
174
  ### Updates
50
175
 
51
- * Bump Storybook version to include Skip to Content links for keyboard auditors
176
+ - Bump Storybook version to include Skip to Content links for keyboard auditors.
52
177
 
53
- *Katie Foster @inkblotty*
178
+ _Katie Foster @inkblotty_
54
179
 
55
- * Update the `HiddenTextExpander` component to use the `HellipButton`.
180
+ - Update the `HiddenTextExpander` component to use the `HellipButton`.
56
181
 
57
- *Amélia Chavot*, *Owen Niblock*
182
+ _Amélia Chavot_, _Owen Niblock_
58
183
 
59
184
  ### Misc
60
185
 
61
- * Fix components not rendering in Storybook because of kebab case arguments.
186
+ - Fix components not rendering in Storybook because of kebab case arguments.
62
187
 
63
- *Amélia Chavot*, *Manuel Puyol*, *Owen Niblock*
188
+ _Amélia Chavot_, _Manuel Puyol_, _Owen Niblock_
64
189
 
65
- * Fix a typo on a command on the contribution page.
190
+ - Fix a typo on a command on the contribution page.
66
191
 
67
- *Amélia Chavot*, *Owen Niblock*
192
+ _Amélia Chavot_, _Owen Niblock_
68
193
 
69
194
  ### Bug Fixes
70
195
 
71
- * Fix issue where tags were not self-closing when they are void elements
196
+ - Fix issue where tags were not self-closing when they are void elements.
72
197
 
73
- *Owen Niblock*
198
+ _Owen Niblock_
74
199
 
75
200
  ### Deprecations
76
201
 
77
- * Deprecate `Primer::BlankslateComponent` in favor of `Primer::Beta::Blankslate`.
202
+ - Deprecate `Primer::BlankslateComponent` in favor of `Primer::Beta::Blankslate`.
78
203
 
79
- *Manuel Puyol*
204
+ _Manuel Puyol_
80
205
 
81
206
  ### Breaking Changes
82
207
 
83
- * Require an `aria-label` to be provided for the `HiddenTextExpander` component.
208
+ - Require an `aria-label` to be provided for the `HiddenTextExpander` component.
84
209
 
85
- *Amélia Chavot*, *Owen Niblock*
210
+ _Amélia Chavot_, _Owen Niblock_
86
211
 
87
- * Rename `force_system_arguments` to `raise_on_invalid_options` to better reflect its functionality
212
+ - Rename `force_system_arguments` to `raise_on_invalid_options` to better reflect its functionality
88
213
 
89
- *Owen Niblock*
214
+ _Owen Niblock_
90
215
 
91
- * Renamed `Blankslate` `title` slot to `heading`.
216
+ - Renamed `Blankslate` `title` slot to `heading`.
92
217
 
93
- *Manuel Puyol*
218
+ _Manuel Puyol_
94
219
 
95
- * Removed `Blankslate` `large` variant.
220
+ - Removed `Blankslate` `large` variant.
96
221
 
97
- *Manuel Puyol*
222
+ _Manuel Puyol_
98
223
 
99
- * Renamed `Blankslate` `graphic` slot to `visual`.
224
+ - Renamed `Blankslate` `graphic` slot to `visual`.
100
225
 
101
- *Manuel Puyol*
226
+ _Manuel Puyol_
102
227
 
103
228
  ## 0.0.60
104
229
 
105
230
  ### Updates
106
231
 
107
- * Adding new Alpha component: BorderBox Header with optional `title` slot
232
+ - Adding new Alpha component: BorderBox Header with optional `title` slot
108
233
 
109
- *Katie Foster @inkblotty*
234
+ _Katie Foster @inkblotty_
110
235
 
111
- * Add note about `Breadcrumbs` not being responsive.
236
+ - Add note about `Breadcrumbs` not being responsive.
112
237
 
113
- *Joel Hawksley*
238
+ _Joel Hawksley_
114
239
 
115
- * Handling arguments that aren't system arguments or string arguments in primer_octicon.
240
+ - Handling arguments that aren't system arguments or string arguments in primer_octicon.
116
241
 
117
- *Jon Rohan, Manuel Puyol*
242
+ _Jon Rohan, Manuel Puyol_
118
243
 
119
- * Improvements to the Procfile so script/dev works as expected.
244
+ - Improvements to the Procfile so script/dev works as expected.
120
245
 
121
- *Cameron Dutro*
246
+ _Cameron Dutro_
122
247
 
123
- * Migrating grid classes to utilities.yml process
248
+ - Migrating grid classes to utilities.yml process
124
249
 
125
- *Jon Rohan*
250
+ _Jon Rohan_
126
251
 
127
- * Adding new system color arguments, and deprecating old arguments.
252
+ - Adding new system color arguments, and deprecating old arguments.
128
253
 
129
- *Jon Rohan*
254
+ _Jon Rohan_
130
255
 
131
- * Make `Spinner` more accessible by adding `sr-only` loading text.
256
+ - Make `Spinner` more accessible by adding `sr-only` loading text.
132
257
 
133
- *Manuel Puyol*
258
+ _Manuel Puyol_
134
259
 
135
- * Make class name validation configurable instead of relying on the Rails env.
260
+ - Make class name validation configurable instead of relying on the Rails env.
136
261
 
137
- *Cameron Dutro*
262
+ _Cameron Dutro_
138
263
 
139
264
  ### Bug Fixes
140
265
 
141
- * Removes unwanted bottom border from active tab of `Alpha::TabNav`.
266
+ - Removes unwanted bottom border from active tab of `Alpha::TabNav`.
142
267
 
143
- *Ned Schwartz*
268
+ _Ned Schwartz_
144
269
 
145
270
  ### Breaking changes
146
271
 
147
- * Add size restriction to `Avatar`.
272
+ - Add size restriction to `Avatar`.
148
273
 
149
- *Kate Higa*
274
+ _Kate Higa_
150
275
 
151
- * Remove `square` attribute from `Avatar` in favor of `shape`. This change also affects `TimelineItem` `avatar` slot.
276
+ - Remove `square` attribute from `Avatar` in favor of `shape`. This change also affects `TimelineItem` `avatar` slot.
152
277
 
153
- *Manuel Puyol*
278
+ _Manuel Puyol_
154
279
 
155
280
  ## 0.0.59
156
281
 
157
282
  ### Updates
158
283
 
159
- * Changed `ClipboardCopy` to use `copy` instead of `paste` icon.
284
+ - Changed `ClipboardCopy` to use `copy` instead of `paste` icon.
160
285
 
161
- *Cole Bemis*
286
+ _Cole Bemis_
162
287
 
163
288
  ### Breaking changes
164
289
 
165
- * `Breadcrumbs` no longer accepts padding and font size system arguments.
290
+ - `Breadcrumbs` no longer accepts padding and font size system arguments.
166
291
 
167
- *Joel Hawksley*
292
+ _Joel Hawksley_
168
293
 
169
294
  ## 0.0.58
170
295
 
171
296
  ### Updates
172
297
 
173
- * Add accessibility section to `Breadcrumbs` page.
298
+ - Add accessibility section to `Breadcrumbs` page.
174
299
 
175
- *Kate Higa*
300
+ _Kate Higa_
176
301
 
177
- * Improve performance of the Classify module, i.e. `Classify.call`.
302
+ - Improve performance of the Classify module, i.e. `Classify.call`.
178
303
 
179
- *Cameron Dutro*
304
+ _Cameron Dutro_
180
305
 
181
- * Background arguments are now pulled in through the utilities class.
306
+ - Background arguments are now pulled in through the utilities class.
182
307
 
183
- *Jon Rohan*
308
+ _Jon Rohan_
184
309
 
185
- * Border arguments are now pulled in through the utilities class.
310
+ - Border arguments are now pulled in through the utilities class.
186
311
 
187
- *Jon Rohan*
312
+ _Jon Rohan_
188
313
 
189
314
  ### Breaking changes
190
315
 
191
- * `bg:` system argument will no longer accept hex color strings, and deprecated color scale.
316
+ - `bg:` system argument will no longer accept hex color strings, and deprecated color scale.
192
317
 
193
- *Jon Rohan*
318
+ _Jon Rohan_
194
319
 
195
320
  ### Bug fixes
196
321
 
197
- * Fix `ClipboardCopy` octicons not toggling correctly after first click.
322
+ - Fix `ClipboardCopy` octicons not toggling correctly after first click.
198
323
 
199
- *Manuel Puyol, Kristján Oddsson*
324
+ _Manuel Puyol, Kristján Oddsson_
200
325
 
201
326
  ## 0.0.57
202
327
 
203
328
  ### Bug fixes
204
329
 
205
- * Don't suggest empty colors for Octicons when autocorrecting.
330
+ - Don't suggest empty colors for Octicons when autocorrecting.
206
331
 
207
- *Manuel Puyol*
332
+ _Manuel Puyol_
208
333
 
209
334
  ## 0.0.56
210
335
 
211
336
  ### Updates
212
337
 
213
- * `Octicon` linter will autocorrect colors.
338
+ - `Octicon` linter will autocorrect colors.
214
339
 
215
- *Manuel Puyol*
340
+ _Manuel Puyol_
216
341
 
217
- * `Button` linter will autocorrect when button uses `href`, `name`, `value` or `tabindex`.
342
+ - `Button` linter will autocorrect when button uses `href`, `name`, `value` or `tabindex`.
218
343
 
219
- *Manuel Puyol*
344
+ _Manuel Puyol_
220
345
 
221
- * `Flash` linter won't autocorrect flashes with ERB in their content.
346
+ - `Flash` linter won't autocorrect flashes with ERB in their content.
222
347
 
223
- *Manuel Puyol*
348
+ _Manuel Puyol_
224
349
 
225
- * Eager load components.
350
+ - Eager load components.
226
351
 
227
- *Cameron Dutro*
352
+ _Cameron Dutro_
228
353
 
229
354
  ### Misc
230
355
 
231
- * Refactor some of the rubocop valid_node? logic into BaseCop class.
356
+ - Refactor some of the rubocop valid_node? logic into BaseCop class.
232
357
 
233
- *Jon Rohan*
358
+ _Jon Rohan_
234
359
 
235
- * Fix validation checker to use Utilities for color-* classes.
360
+ - Fix validation checker to use Utilities for color-\* classes.
236
361
 
237
- *Jon Rohan*
362
+ _Jon Rohan_
238
363
 
239
364
  ## 0.0.55
240
365
 
241
366
  ### Breaking changes
242
367
 
243
- * `Primer::Breadcrumbs` requires `href`s for all items and no longer accepts the `selected` argument.
368
+ - `Primer::Breadcrumbs` requires `href`s for all items and no longer accepts the `selected` argument.
244
369
 
245
- *Joel Hawksley*
370
+ _Joel Hawksley_
246
371
 
247
- * Split `TabNav` into `TabNav` and `TabPanels`.
372
+ - Split `TabNav` into `TabNav` and `TabPanels`.
248
373
 
249
- *Kate Higa*
374
+ _Kate Higa_
250
375
 
251
376
  ### New
252
377
 
253
- * Use the allocation_stats gem to count object allocations in our benchmarks.
254
- * Improve performance of Octicon cache key construction.
378
+ - Use the allocation_stats gem to count object allocations in our benchmarks.
379
+ - Improve performance of Octicon cache key construction.
255
380
 
256
- *Cameron Dutro*
381
+ _Cameron Dutro_
257
382
 
258
- * Update `@primer/css` to `17.7.0` which includes a new argument for `word_break`
383
+ - Update `@primer/css` to `17.7.0` which includes a new argument for `word_break`
259
384
 
260
- *Jon Rohan*
385
+ _Jon Rohan_
261
386
 
262
387
  ### Misc
263
388
 
264
- * Clean up extra constants in `UnderlineNav`.
389
+ - Clean up extra constants in `UnderlineNav`.
265
390
 
266
- *Kate Higa*
391
+ _Kate Higa_
267
392
 
268
393
  ## 0.0.54
269
394
 
270
395
  ### Breaking changes
271
396
 
272
- * Rename `BreadcrumbComponent` to `Beta::Breadcrumbs`.
397
+ - Rename `BreadcrumbComponent` to `Beta::Breadcrumbs`.
273
398
 
274
- *Joel Hawksley*
399
+ _Joel Hawksley_
275
400
 
276
- * Split `UnderlineNavComponent` into `Alpha::UnderlineNav` and `Alpha::UnderlinePanels`.
401
+ - Split `UnderlineNavComponent` into `Alpha::UnderlineNav` and `Alpha::UnderlinePanels`.
277
402
 
278
- *Kate Higa*
403
+ _Kate Higa_
279
404
 
280
405
  ## 0.0.53
281
406
 
282
407
  ### New
283
408
 
284
- * Add autocorrection to `FlashComponent` linter when the context is basic text.
409
+ - Add autocorrection to `FlashComponent` linter when the context is basic text.
285
410
 
286
- *Manuel Puyol*
411
+ _Manuel Puyol_
287
412
 
288
413
  ### Updates
289
414
 
290
- * Linters won't mark offenses when the ignore count is correct unless explicitly configured to do so.
415
+ - Linters won't mark offenses when the ignore count is correct unless explicitly configured to do so.
291
416
 
292
- *Manuel Puyol*
417
+ _Manuel Puyol_
293
418
 
294
- * Deprecating background and border color presentational arguments
419
+ - Deprecating background and border color presentational arguments
295
420
 
296
- *Jon Rohan*
421
+ _Jon Rohan_
297
422
 
298
- * Map the `for` argument when autofixing `ClipboardCopy` migrations.
423
+ - Map the `for` argument when autofixing `ClipboardCopy` migrations.
299
424
 
300
- *Kristján Oddsson*
425
+ _Kristján Oddsson_
301
426
 
302
- * Add autocorrection for `CloseButton` linter.
427
+ - Add autocorrection for `CloseButton` linter.
303
428
 
304
- *Manuel Puyol*
429
+ _Manuel Puyol_
305
430
 
306
- * Moving text color variables to Utilities class
431
+ - Moving text color variables to Utilities class
307
432
 
308
- *Jon Rohan*
433
+ _Jon Rohan_
309
434
 
310
435
  ### Bug fixes
311
436
 
312
- * Linters won't convert HTML special elements.
437
+ - Linters won't convert HTML special elements.
313
438
 
314
- *Manuel Puyol*
439
+ _Manuel Puyol_
315
440
 
316
441
  ### Misc
317
442
 
318
- * Only run CHANGELOG CI on pull requests.
443
+ - Only run CHANGELOG CI on pull requests.
319
444
 
320
- *Manuel Puyol*
445
+ _Manuel Puyol_
321
446
 
322
- * Run CI actions on pushes to main.
447
+ - Run CI actions on pushes to main.
323
448
 
324
- *Cameron Dutro*
449
+ _Cameron Dutro_
325
450
 
326
- * Get to 100% code coverage.
451
+ - Get to 100% code coverage.
327
452
 
328
- *Cameron Dutro*
453
+ _Cameron Dutro_
329
454
 
330
455
  ## 0.0.52
331
456
 
332
457
  ### New
333
458
 
334
- * Adding `Primer::Beta::Truncate` component to reflect changes in primer/css component [Truncate](https://primer.style/css/components/truncate).
459
+ - Adding `Primer::Beta::Truncate` component to reflect changes in primer/css component [Truncate](https://primer.style/css/components/truncate).
335
460
 
336
- *Jon Rohan*
461
+ _Jon Rohan_
337
462
 
338
- * Add cop to look for deprecated system arguments and suggest replacements.
463
+ - Add cop to look for deprecated system arguments and suggest replacements.
339
464
 
340
- *Jon Rohan*
465
+ _Jon Rohan_
341
466
 
342
- * Add cop to use `primer_octicon` in favor of `octicon`.
467
+ - Add cop to use `primer_octicon` in favor of `octicon`.
343
468
 
344
- *Manuel Puyol*
469
+ _Manuel Puyol_
345
470
 
346
- * Fix release script so it doesn't loop continuously.
471
+ - Fix release script so it doesn't loop continuously.
347
472
 
348
- *Cameron Dutro*
473
+ _Cameron Dutro_
349
474
 
350
475
  ### Updates
351
476
 
352
- * Promote `ClipboardCopy` to beta.
477
+ - Promote `ClipboardCopy` to beta.
478
+
479
+ _Manuel Puyol_
353
480
 
354
- *Manuel Puyol*
481
+ - PrimerOcticon linter supports `aria-` and `data-` attributes.
355
482
 
356
- * PrimerOcticon linter supports `aria-` and `data-` attributes.
483
+ _Manuel Puyol_
357
484
 
358
- *Manuel Puyol*
485
+ - Linters can:
359
486
 
360
- * Linters can:
361
- * convert values with ERB interpolations.
362
- * autocorrect cases with custom classes.
487
+ - convert values with ERB interpolations.
488
+ - autocorrect cases with custom classes.
363
489
 
364
- *Manuel Puyol*
490
+ _Manuel Puyol_
365
491
 
366
- * Add a `scheme` option to `BorderBoxComponent` rows.
492
+ - Add a `scheme` option to `BorderBoxComponent` rows.
367
493
 
368
- *Cameron Dutro*
494
+ _Cameron Dutro_
369
495
 
370
- * Upgrade rubocop and support Ruby 3.0.
496
+ - Upgrade rubocop and support Ruby 3.0.
371
497
 
372
- *Cameron Dutro*
498
+ _Cameron Dutro_
373
499
 
374
- * Linters will not autocorrect cases where a required argument is missing.
500
+ - Linters will not autocorrect cases where a required argument is missing.
375
501
 
376
- *Manuel Puyol*
502
+ _Manuel Puyol_
377
503
 
378
504
  ### Misc
379
505
 
380
- * Update benchmarks to run in every supported Ruby version.
506
+ - Update benchmarks to run in every supported Ruby version.
381
507
 
382
- *Manuel Puyol*
508
+ _Manuel Puyol_
383
509
 
384
- * Add a linter generator.
510
+ - Add a linter generator.
385
511
 
386
- *Manuel Puyol*
512
+ _Manuel Puyol_
387
513
 
388
514
  ## 0.0.51
389
515
 
390
516
  ### Breaking changes
391
517
 
392
- * Rename `width` and `height` System Arguments to `w` and `h`, resolving conflict with HTML attribute names.
518
+ - Rename `width` and `height` System Arguments to `w` and `h`, resolving conflict with HTML attribute names.
393
519
 
394
- *Manuel Puyol*
520
+ _Manuel Puyol_
395
521
 
396
522
  ### Updates
397
523
 
398
- * `SystemArgumentInsteadOfClass` linter will check for arguments in ViewHelpers.
524
+ - `SystemArgumentInsteadOfClass` linter will check for arguments in ViewHelpers.
399
525
 
400
- *Manuel Puyol*
526
+ _Manuel Puyol_
401
527
 
402
528
  ## 0.0.50
403
529
 
404
530
  ### Updates
405
531
 
406
- * Fix incorrect slots syntax in docs.
532
+ - Fix incorrect slots syntax in docs.
407
533
 
408
- *Joel Hawksley*, *Blake Williams*
534
+ _Joel Hawksley_, _Blake Williams_
409
535
 
410
536
  ### New
411
537
 
412
- * Add linter suggestions for `CloseButton` component.
538
+ - Add linter suggestions for `CloseButton` component.
413
539
 
414
- *Manuel Puyol*
540
+ _Manuel Puyol_
415
541
 
416
542
  ### Breaking changes
417
543
 
418
- * Update to `octicons` `v15`, removing open-ended dependency. See [https://github.com/primer/octicons/releases/tag/v15.0.0] for icon name changes in release.
544
+ - Update to `octicons` `v15`, removing open-ended dependency. See [https://github.com/primer/octicons/releases/tag/v15.0.0] for icon name changes in release.
419
545
 
420
- *Joel Hawksley*
546
+ _Joel Hawksley_
421
547
 
422
548
  ### Updates
423
549
 
424
- * Don't require `title` for `Label`.
550
+ - Don't require `title` for `Label`.
425
551
 
426
- *Manuel Puyol*
552
+ _Manuel Puyol_
427
553
 
428
- * Improve autocorrectable linters to convert known SystemArgument classes.
554
+ - Improve autocorrectable linters to convert known SystemArgument classes.
429
555
 
430
- *Manuel Puyol*
556
+ _Manuel Puyol_
431
557
 
432
- * Add support for `width: :full` and `height: :full` to System Arguments.
558
+ - Add support for `width: :full` and `height: :full` to System Arguments.
433
559
 
434
- *Joel Hawksley*
560
+ _Joel Hawksley_
435
561
 
436
562
  ### Bug fixes
437
563
 
438
- * Update linters to not autocorrect attributes with ERB blocks.
564
+ - Update linters to not autocorrect attributes with ERB blocks.
439
565
 
440
- *Manuel Puyol*
566
+ _Manuel Puyol_
441
567
 
442
- * Fix `:height` and `:width` docs to pull from Utilities
568
+ - Fix `:height` and `:width` docs to pull from Utilities
443
569
 
444
- *Jon Rohan*
570
+ _Jon Rohan_
445
571
 
446
572
  ## 0.0.49
447
573
 
448
574
  ### New
449
575
 
450
- * Add linter suggestions for `Label` component.
576
+ - Add linter suggestions for `Label` component.
451
577
 
452
- *Manuel Puyol*
578
+ _Manuel Puyol_
453
579
 
454
- * Add linter suggestions for `ClipboardCopy` component.
580
+ - Add linter suggestions for `ClipboardCopy` component.
455
581
 
456
- *Manuel Puyol*
582
+ _Manuel Puyol_
457
583
 
458
584
  ### Updates
459
585
 
460
- * Update the `Truncate` component to accept `:strong` as a tag.
586
+ - Update the `Truncate` component to accept `:strong` as a tag.
461
587
 
462
- *Amélia Chavot*
588
+ _Amélia Chavot_
463
589
 
464
- * Improve `Primer::Classify::Utilities.classes_to_hash` performance.
590
+ - Improve `Primer::Classify::Utilities.classes_to_hash` performance.
465
591
 
466
- *Manuel Puyol*
592
+ _Manuel Puyol_
467
593
 
468
594
  ### Breaking changes
469
595
 
470
- * Require tab with panels to have `panel_id` so `aria-controls` can be set.
596
+ - Require tab with panels to have `panel_id` so `aria-controls` can be set.
471
597
 
472
- *Kate Higa*
598
+ _Kate Higa_
473
599
 
474
- * Renames:
475
- * `Primer::AvatarStackComponent` to `Primer::Beta::AvatarStack`.
600
+ - Renames:
476
601
 
477
- *Manuel Puyol*
602
+ - `Primer::AvatarStackComponent` to `Primer::Beta::AvatarStack`.
603
+
604
+ _Manuel Puyol_
478
605
 
479
606
  ### Misc
480
607
 
481
- * Extract example tag parsing into helper.
608
+ - Extract example tag parsing into helper.
482
609
 
483
- *Kate Higa*
610
+ _Kate Higa_
484
611
 
485
- * Generate a static constant JSON and use it when defining linters.
612
+ - Generate a static constant JSON and use it when defining linters.
486
613
 
487
- *Manuel Puyol*
614
+ _Manuel Puyol_
488
615
 
489
616
  ## 0.0.48
490
617
 
491
618
  ### Breaking changes
492
619
 
493
- * Ensure panels in `Navigation::Tab` have a label.
620
+ - Ensure panels in `Navigation::Tab` have a label.
494
621
 
495
- *Kate Higa*
622
+ _Kate Higa_
496
623
 
497
624
  ### Misc
498
625
 
499
- * Expose custom cops and default config for erblint.
626
+ - Expose custom cops and default config for erblint.
500
627
 
501
- *Manuel Puyol*
628
+ _Manuel Puyol_
502
629
 
503
- * Fix double constant assign.
630
+ - Fix double constant assign.
504
631
 
505
- *Manuel Puyol*
632
+ _Manuel Puyol_
506
633
 
507
634
  ## 0.0.47
508
635
 
509
636
  ### Breaking changes
510
637
 
511
- * Restrict tag for `Popover` to `:div` and `Popover` heading slot to headings.
638
+ - Restrict tag for `Popover` to `:div` and `Popover` heading slot to headings.
639
+
640
+ _Kate Higa_
512
641
 
513
- *Kate Higa*
642
+ - Renames:
514
643
 
515
- * Renames:
516
- * `Primer::AutoComplete` to `Primer::Beta::AutoComplete`
517
- * `Primer::AutoComplete::Item` to `Primer::Beta::AutoComplete::Item`
518
- * `Primer::AvatarComponent` to `Primer::Beta::Avatar`
644
+ - `Primer::AutoComplete` to `Primer::Beta::AutoComplete`
645
+ - `Primer::AutoComplete::Item` to `Primer::Beta::AutoComplete::Item`
646
+ - `Primer::AvatarComponent` to `Primer::Beta::Avatar`
519
647
 
520
- *Manuel Puyol*
648
+ _Manuel Puyol_
521
649
 
522
650
  ### Misc
523
651
 
524
- * Update `doc_examples_axe_test` to exclude non-standalone components and fix `Markdown` example.
652
+ - Update `doc_examples_axe_test` to exclude non-standalone components and fix `Markdown` example.
525
653
 
526
- *Kate Higa*
654
+ _Kate Higa_
527
655
 
528
- * Update `DetailsComponent` examples.
656
+ - Update `DetailsComponent` examples.
529
657
 
530
- *Manuel Puyol*
658
+ _Manuel Puyol_
531
659
 
532
- * Add linter to suggest system arguments instead of classes.
660
+ - Add linter to suggest system arguments instead of classes.
533
661
 
534
- *Manuel Puyol*
662
+ _Manuel Puyol_
535
663
 
536
- * Update component generator to create components in the right status module.
664
+ - Update component generator to create components in the right status module.
537
665
 
538
- *Manuel Puyol*
666
+ _Manuel Puyol_
539
667
 
540
- * Add example for truncating HTML to `Truncate`.
668
+ - Add example for truncating HTML to `Truncate`.
541
669
 
542
- *Joel Hawksley*
670
+ _Joel Hawksley_
543
671
 
544
- * Update docs generation to point to the correct file sources.
672
+ - Update docs generation to point to the correct file sources.
545
673
 
546
- *Manuel Puyol*
674
+ _Manuel Puyol_
547
675
 
548
- * Add ENV flag to dump linter data into a file.
676
+ - Add ENV flag to dump linter data into a file.
549
677
 
550
- *Manuel Puyol*
678
+ _Manuel Puyol_
551
679
 
552
680
  ## 0.0.46
553
681
 
554
682
  ### Updates
555
683
 
556
- * Default to matching `name` and `id` of `input`.
684
+ - Default to matching `name` and `id` of `input`.
557
685
 
558
- *Kate Higa*
686
+ _Kate Higa_
559
687
 
560
- * Restrict usage of padding system arguments on BorderBox, recommending use of `padding` density instead.
688
+ - Restrict usage of padding system arguments on BorderBox, recommending use of `padding` density instead.
561
689
 
562
- *Joel Hawksley*
690
+ _Joel Hawksley_
563
691
 
564
692
  ### Breaking changes
565
693
 
566
- * Restrict `TabNav`and `Tab` tags.
694
+ - Restrict `TabNav`and `Tab` tags.
567
695
 
568
- *Kate Higa*
696
+ _Kate Higa_
569
697
 
570
- * Restrict `AvatarStack` body slot tag and `ImageCrop` spinner tag.
698
+ - Restrict `AvatarStack` body slot tag and `ImageCrop` spinner tag.
571
699
 
572
- *Kate Higa*
700
+ _Kate Higa_
573
701
 
574
- * Restrict `Details` body slot tags and `UnderlineNav` body slot tags.
702
+ - Restrict `Details` body slot tags and `UnderlineNav` body slot tags.
575
703
 
576
- *Kate Higa*
704
+ _Kate Higa_
577
705
 
578
- * Move Primer::Classify from `app/lib/` to `lib/`. This requires an extra `require "primer/classify"` statement for anywhere Classify is needed.
706
+ - Move Primer::Classify from `app/lib/` to `lib/`. This requires an extra `require "primer/classify"` statement for anywhere Classify is needed.
579
707
 
580
- *Manuel Puyol, Jon Rohan*
708
+ _Manuel Puyol, Jon Rohan_
581
709
 
582
- * Restrict `Menu` heading slot tags to heading tags and require `tag` argument.
710
+ - Restrict `Menu` heading slot tags to heading tags and require `tag` argument.
583
711
 
584
- *Kate Higa*
712
+ _Kate Higa_
585
713
 
586
- * Adding animation, vertical_align, word_break, display, visibility, & position arguments to the utilities class. `animation: :grow` is now `animation: :hover_grow` this was a change because we changed the class name in primer.
714
+ - Adding animation, vertical_align, word_break, display, visibility, & position arguments to the utilities class. `animation: :grow` is now `animation: :hover_grow` this was a change because we changed the class name in primer.
587
715
 
588
- *Jon Rohan*
716
+ _Jon Rohan_
589
717
 
590
718
  ### Misc
591
719
 
592
- * Update contributing guidelines with release instructions.
720
+ - Update contributing guidelines with release instructions.
593
721
 
594
- *Kate Higa*
722
+ _Kate Higa_
595
723
 
596
- * Prevent flexible tag syntax with rubocop rule.
724
+ - Prevent flexible tag syntax with rubocop rule.
597
725
 
598
- *Kate Higa*
726
+ _Kate Higa_
599
727
 
600
- * Update linter autocorrection to use `""` instead of `true` for boolean attributes.
728
+ - Update linter autocorrection to use `""` instead of `true` for boolean attributes.
601
729
 
602
- *Manuel Puyol*
730
+ _Manuel Puyol_
603
731
 
604
- * Update Storybook version.
732
+ - Update Storybook version.
605
733
 
606
- *Manuel Puyol*
734
+ _Manuel Puyol_
607
735
 
608
- * Add a changelog authoring guide to `CHANGELOG.md`.
736
+ - Add a changelog authoring guide to `CHANGELOG.md`.
609
737
 
610
- *Amélia Chavot*
738
+ _Amélia Chavot_
611
739
 
612
740
  ## 0.0.45
613
741
 
614
742
  ### Updates
615
743
 
616
- * Allow copying from elements using `for` in `ClipboardCopy`.
744
+ - Allow copying from elements using `for` in `ClipboardCopy`.
617
745
 
618
- *Manuel Puyol*
746
+ _Manuel Puyol_
619
747
 
620
748
  ### Breaking changes
621
749
 
622
- * Remove `label` argument in favor of `aria-label` in `ClipboardCopy`.
750
+ - Remove `label` argument in favor of `aria-label` in `ClipboardCopy`.
623
751
 
624
- *Manuel Puyol*
752
+ _Manuel Puyol_
625
753
 
626
754
  ### Misc
627
755
 
628
- * Add autocorrect for button linters.
756
+ - Add autocorrect for button linters.
629
757
 
630
- *Manuel Puyol*
758
+ _Manuel Puyol_
631
759
 
632
- * Unify contributing guidelines.
760
+ - Unify contributing guidelines.
633
761
 
634
- *Kate Higa*
762
+ _Kate Higa_
635
763
 
636
- * Rerun flaky system tests.
764
+ - Rerun flaky system tests.
637
765
 
638
- *Manuel Puyol*
766
+ _Manuel Puyol_
639
767
 
640
- * Check if selector is a classify class in Utilities.
768
+ - Check if selector is a classify class in Utilities.
641
769
 
642
- *Jon Rohan*
770
+ _Jon Rohan_
643
771
 
644
772
  ## 0.0.44
645
773
 
646
774
  ### Updates
647
775
 
648
- * Allow `Dropdown` menu items to be rendered outside a list.
776
+ - Allow `Dropdown` menu items to be rendered outside a list.
649
777
 
650
- *Manuel Puyol*
778
+ _Manuel Puyol_
651
779
 
652
780
  ### Breaking changes
653
781
 
654
- * Require a label or `aria-label` to be provided for `AutoComplete` component.
782
+ - Require a label or `aria-label` to be provided for `AutoComplete` component.
655
783
 
656
- *Kate Higa*
784
+ _Kate Higa_
657
785
 
658
- * Renames:
659
- * `DropdownComponent` to `Dropdown`.
660
- * `Dropdown::MenuComponent` to `Dropdown::Menu`.
661
- * `Primer::ButtonMarketingComponent` to `Primer::Alpha::ButtonMarketing`.
662
- * `Primer::TextComponent` to `Primer::Beta::Text`.
786
+ - Renames:
663
787
 
664
- *Manuel Puyol*
788
+ - `DropdownComponent` to `Dropdown`.
789
+ - `Dropdown::MenuComponent` to `Dropdown::Menu`.
790
+ - `Primer::ButtonMarketingComponent` to `Primer::Alpha::ButtonMarketing`.
791
+ - `Primer::TextComponent` to `Primer::Beta::Text`.
665
792
 
666
- * Removes `summary_classes` attribute in favor of the `summary` slot in `Dropdown`.
793
+ _Manuel Puyol_
667
794
 
668
- *Manuel Puyol*
795
+ - Removes `summary_classes` attribute in favor of the `summary` slot in `Dropdown`.
796
+
797
+ _Manuel Puyol_
669
798
 
670
799
  ### Misc
671
800
 
672
- * Replace Classify::Spacing class with pre-generated mappings.
801
+ - Replace Classify::Spacing class with pre-generated mappings.
673
802
 
674
- *Jon Rohan*
803
+ _Jon Rohan_
675
804
 
676
- * Add linter suggestions for `Button` component.
805
+ - Add linter suggestions for `Button` component.
677
806
 
678
- *Manuel Puyol*
807
+ _Manuel Puyol_
679
808
 
680
- * Sort documentation arguments.
809
+ - Sort documentation arguments.
681
810
 
682
- *Jon Rohan*
811
+ _Jon Rohan_
683
812
 
684
- * Add validations for docs generation.
813
+ - Add validations for docs generation.
685
814
 
686
- *Manuel Puyol, Kate Higa*
815
+ _Manuel Puyol, Kate Higa_
687
816
 
688
- * Change docs header order.
817
+ - Change docs header order.
689
818
 
690
- *Manuel Puyol, Kate Higa*
819
+ _Manuel Puyol, Kate Higa_
691
820
 
692
- * Add preliminary criteria for new `alpha` components.
821
+ - Add preliminary criteria for new `alpha` components.
693
822
 
694
- *Joel Hawksley*
823
+ _Joel Hawksley_
695
824
 
696
825
  ## 0.0.43
697
826
 
698
827
  ### New
699
828
 
700
- * Add `clearfix` and `container` system arguments.
829
+ - Add `clearfix` and `container` system arguments.
701
830
 
702
- *Manuel Puyol*
831
+ _Manuel Puyol_
703
832
 
704
833
  ### Updates
705
834
 
706
- * Promote `TabNav` component to beta.
835
+ - Promote `TabNav` component to beta.
707
836
 
708
- *Manuel Puyol*
837
+ _Manuel Puyol_
709
838
 
710
- * Allow customizing `TabContainer` when using `TabNav` and `UnderlineNav` components.
839
+ - Allow customizing `TabContainer` when using `TabNav` and `UnderlineNav` components.
711
840
 
712
- *Manuel Puyol*
841
+ _Manuel Puyol_
713
842
 
714
843
  ### Breaking changes
715
844
 
716
- * Restrict `col` system arguments to only accept values between 1 and 12.
845
+ - Restrict `col` system arguments to only accept values between 1 and 12.
717
846
 
718
- *Manuel Puyol*
847
+ _Manuel Puyol_
719
848
 
720
849
  ### Misc
721
850
 
722
- * Raise an error if `class` is used as a system argument.
851
+ - Raise an error if `class` is used as a system argument.
723
852
 
724
- *Manuel Puyol*
853
+ _Manuel Puyol_
725
854
 
726
- * Don't commit auto-generated component previews.
855
+ - Don't commit auto-generated component previews.
727
856
 
728
- *Kate Higa*
857
+ _Kate Higa_
729
858
 
730
- * Provide linters for component migrations.
859
+ - Provide linters for component migrations.
731
860
 
732
- *Manuel Puyol*
861
+ _Manuel Puyol_
733
862
 
734
- * Update docs to accept multiline descriptions.
863
+ - Update docs to accept multiline descriptions.
735
864
 
736
- *Manuel Puyol*
865
+ _Manuel Puyol_
737
866
 
738
- * Upgrade primer/css to 17.2.1
867
+ - Upgrade primer/css to 17.2.1
739
868
 
740
- *Jon Rohan*
869
+ _Jon Rohan_
741
870
 
742
871
  ## 0.0.42
743
872
 
744
873
  ### New
745
874
 
746
- * Add `font_family`, `font_style` and `text_transform` system arguments.
875
+ - Add `font_family`, `font_style` and `text_transform` system arguments.
747
876
 
748
- *Manuel Puyol*
877
+ _Manuel Puyol_
749
878
 
750
- * Add more options for `font_size` and `font_weight`.
879
+ - Add more options for `font_size` and `font_weight`.
751
880
 
752
- *Manuel Puyol*
881
+ _Manuel Puyol_
753
882
 
754
883
  ### Updates
755
884
 
756
- * Add `align` option to the `TabNav` extra slot to allow HTML ordering.
885
+ - Add `align` option to the `TabNav` extra slot to allow HTML ordering.
757
886
 
758
- *Manuel Puyol*
887
+ _Manuel Puyol_
759
888
 
760
889
  ### Misc
761
890
 
762
- * Auto-generate component previews from doc examples and run integration test checks.
891
+ - Auto-generate component previews from doc examples and run integration test checks.
763
892
 
764
- *Kate Higa, Joel Hawksley*
893
+ _Kate Higa, Joel Hawksley_
765
894
 
766
- * Configure previews controller to allow view helper usage in preview template.
895
+ - Configure previews controller to allow view helper usage in preview template.
767
896
 
768
- *Kate Higa*
897
+ _Kate Higa_
769
898
 
770
- * Only include `ViewComponent::SlotableV2` if `ViewComponent::Base` does not already include it.
899
+ - Only include `ViewComponent::SlotableV2` if `ViewComponent::Base` does not already include it.
771
900
 
772
- *Manuel Puyol*
901
+ _Manuel Puyol_
773
902
 
774
- * Add `force_system_arguments` option to raise an error if a class is used instead of using System Arguments.
903
+ - Add `force_system_arguments` option to raise an error if a class is used instead of using System Arguments.
775
904
 
776
- *Manuel Puyol*
905
+ _Manuel Puyol_
777
906
 
778
907
  ### Breaking changes
779
908
 
780
- * Restrict allowed tags for `Truncate`, `Markdown`, and `HiddenTextExpander`.
909
+ - Restrict allowed tags for `Truncate`, `Markdown`, and `HiddenTextExpander`.
781
910
 
782
- *Kate Higa*
911
+ _Kate Higa_
783
912
 
784
913
  ## 0.0.41
785
914
 
786
915
  ### New
787
916
 
788
- * Create `LocalTime` component.
917
+ - Create `LocalTime` component.
789
918
 
790
- *Kristján Oddsson*
919
+ _Kristján Oddsson_
791
920
 
792
- * Create `Image` component.
921
+ - Create `Image` component.
793
922
 
794
- *Manuel Puyol*
923
+ _Manuel Puyol_
795
924
 
796
- * Add `extra` slot to `TabNav`.
925
+ - Add `extra` slot to `TabNav`.
797
926
 
798
- *Manuel Puyol*
927
+ _Manuel Puyol_
799
928
 
800
- * Do not raise error if Primer CSS class name is passed to component if `PRIMER_WARNINGS_DISABLED` is set.
929
+ - Do not raise error if Primer CSS class name is passed to component if `PRIMER_WARNINGS_DISABLED` is set.
801
930
 
802
- *Joel Hawksley*
931
+ _Joel Hawksley_
803
932
 
804
933
  ### Accessibility
805
934
 
806
- * Accept `aria-current="true"` in tabbed components.
935
+ - Accept `aria-current="true"` in tabbed components.
807
936
 
808
- *Manuel Puyol*
937
+ _Manuel Puyol_
809
938
 
810
939
  ### Changes
811
940
 
812
- * Promote `Tooltip` component to beta.
941
+ - Promote `Tooltip` component to beta.
813
942
 
814
- *Manuel Puyol*
943
+ _Manuel Puyol_
815
944
 
816
945
  ### Bug fixes
817
946
 
818
- * Ensure that `ClipboardCopy` behaviors only target ViewComponents.
947
+ - Ensure that `ClipboardCopy` behaviors only target ViewComponents.
819
948
 
820
- *Manuel Puyol*
949
+ _Manuel Puyol_
821
950
 
822
- * Ensure that the `rounded` attribute for `<image-crop>` is represented as a boolean attribute.
951
+ - Ensure that the `rounded` attribute for `<image-crop>` is represented as a boolean attribute.
823
952
 
824
- *Kristján Oddsson*
953
+ _Kristján Oddsson_
825
954
 
826
955
  ### Breaking changes
827
956
 
828
- * Rename `TooltipComponent` to `Tooltip`.
957
+ - Rename `TooltipComponent` to `Tooltip`.
829
958
 
830
- *Manuel Puyol*
959
+ _Manuel Puyol_
831
960
 
832
- * Don't allow `OcticonComponent` height/width values under 16px
961
+ - Don't allow `OcticonComponent` height/width values under 16px
833
962
 
834
- *Jon Rohan*
963
+ _Jon Rohan_
835
964
 
836
- * Remove `:large` size option from `OcticonComponent` and change `:medium` to 24px
965
+ - Remove `:large` size option from `OcticonComponent` and change `:medium` to 24px
837
966
 
838
- *Jon Rohan*
967
+ _Jon Rohan_
839
968
 
840
- * Restrict `Label` tag to `span`, `div`, `a`, `summary`.
969
+ - Restrict `Label` tag to `span`, `div`, `a`, `summary`.
841
970
 
842
- *Kate Higa*
971
+ _Kate Higa_
843
972
 
844
973
  ### Misc
845
974
 
846
- * Add a CI check for changes to the CHANGELOG file.
975
+ - Add a CI check for changes to the CHANGELOG file.
847
976
 
848
- *Kristján Oddsson*
977
+ _Kristján Oddsson_
849
978
 
850
979
  ## 0.0.40
851
980
 
852
981
  ### New
853
982
 
854
- * Create `ImageCrop` component.
983
+ - Create `ImageCrop` component.
855
984
 
856
- *Kristján Oddsson*
985
+ _Kristján Oddsson_
857
986
 
858
987
  ### Changes
859
988
 
860
- * Promote `IconButton` to beta.
989
+ - Promote `IconButton` to beta.
861
990
 
862
- *Manuel Puyol*
991
+ _Manuel Puyol_
863
992
 
864
- * Add `box` argument to `IconButton`.
993
+ - Add `box` argument to `IconButton`.
865
994
 
866
- *Manuel Puyol*
995
+ _Manuel Puyol_
867
996
 
868
- * Promote `Markdown` to beta.
997
+ - Promote `Markdown` to beta.
869
998
 
870
- *Manuel Puyol*
999
+ _Manuel Puyol_
871
1000
 
872
1001
  ### Bug fixes
873
1002
 
874
- * Fix `IconButton` raising when `aria-label` was provided using an object.
1003
+ - Fix `IconButton` raising when `aria-label` was provided using an object.
875
1004
 
876
- *Manuel Puyol*
1005
+ _Manuel Puyol_
877
1006
 
878
- * Fix disabling of default styles for `SpinnerComponent` via `nil` style parameter.
1007
+ - Fix disabling of default styles for `SpinnerComponent` via `nil` style parameter.
879
1008
 
880
- *Chris Wilson*
1009
+ _Chris Wilson_
881
1010
 
882
1011
  ### Deprecations
883
1012
 
884
- * Deprecate `Flex` in favor of `BoxComponent`.
1013
+ - Deprecate `Flex` in favor of `BoxComponent`.
885
1014
 
886
- *Manuel Puyol*
1015
+ _Manuel Puyol_
887
1016
 
888
1017
  ### Breaking Changes
889
1018
 
890
- * Restrict `ButtonGroup` tag to `:div` and update docs for `Text` tag.
1019
+ - Restrict `ButtonGroup` tag to `:div` and update docs for `Text` tag.
891
1020
 
892
- *Kate Higa*
1021
+ _Kate Higa_
893
1022
 
894
- * Remove non-functional `width` and `height` `:fill` option.
1023
+ - Remove non-functional `width` and `height` `:fill` option.
895
1024
 
896
- *Jon Rohan*, *Joel Hawksley*
1025
+ _Jon Rohan_, _Joel Hawksley_
897
1026
 
898
- * Restrict `Subhead` `heading` slot tag to `div` and `h1`-`h6`.
1027
+ - Restrict `Subhead` `heading` slot tag to `div` and `h1`-`h6`.
899
1028
 
900
- *Kate Higa*
1029
+ _Kate Higa_
901
1030
 
902
- * Restrict `Blankslate` tag to `div`.
1031
+ - Restrict `Blankslate` tag to `div`.
903
1032
 
904
- *Kate Higa*
1033
+ _Kate Higa_
905
1034
 
906
- * Explicitly limit tag for `AvatarStack` to `:div` and `:span`.
1035
+ - Explicitly limit tag for `AvatarStack` to `:div` and `:span`.
907
1036
 
908
- *Kate Higa*
1037
+ _Kate Higa_
909
1038
 
910
- * Rename `MarkdownComponent` to `Markdown`.
1039
+ - Rename `MarkdownComponent` to `Markdown`.
911
1040
 
912
- *Manuel Puyol*
1041
+ _Manuel Puyol_
913
1042
 
914
1043
  ## 0.0.39
915
1044
 
916
- * Promote `CloseButton` to beta.
1045
+ - Promote `CloseButton` to beta.
917
1046
 
918
- *Manuel Puyol*
1047
+ _Manuel Puyol_
919
1048
 
920
- * Update `ClipboardCopy` to not toggle icons unless they both exist.
1049
+ - Update `ClipboardCopy` to not toggle icons unless they both exist.
921
1050
 
922
- *Kristján Oddsson*
1051
+ _Kristján Oddsson_
923
1052
 
924
- * Add `icon` and `counter` slots to `ButtonComponent`.
1053
+ - Add `icon` and `counter` slots to `ButtonComponent`.
925
1054
 
926
- *Manuel Puyol*
1055
+ _Manuel Puyol_
927
1056
 
928
- * Create `IconButton` component.
1057
+ - Create `IconButton` component.
929
1058
 
930
- *Manuel Puyol*
1059
+ _Manuel Puyol_
931
1060
 
932
- * Removing trailing whitespace from output of `class=""` Classify generation.
1061
+ - Removing trailing whitespace from output of `class=""` Classify generation.
933
1062
 
934
- *Jon Rohan*
1063
+ _Jon Rohan_
935
1064
 
936
- * Deprecate `FlexItem` in favor of `BoxComponent`.
1065
+ - Deprecate `FlexItem` in favor of `BoxComponent`.
937
1066
 
938
- *Manuel Puyol*
1067
+ _Manuel Puyol_
939
1068
 
940
- * Dropping requirement of `octicons_helper` and updating `OcticonComponent` to use `octicon` gem directly.
1069
+ - Dropping requirement of `octicons_helper` and updating `OcticonComponent` to use `octicon` gem directly.
941
1070
 
942
- *Jon Rohan*
1071
+ _Jon Rohan_
943
1072
 
944
- * **Breaking change:** Remove `:overlay` option from `border_color`.
1073
+ - **Breaking change:** Remove `:overlay` option from `border_color`.
945
1074
 
946
- *Simon Luthi*
1075
+ _Simon Luthi_
947
1076
 
948
1077
  ## 0.0.38
949
1078
 
950
- * Extract `BaseButton` component.
1079
+ - Extract `BaseButton` component.
951
1080
 
952
- *Manuel Puyol*
1081
+ _Manuel Puyol_
953
1082
 
954
- * Add default `aria-label` of "Close" to `CloseButton` component.
1083
+ - Add default `aria-label` of "Close" to `CloseButton` component.
955
1084
 
956
- *Kate Higa*
1085
+ _Kate Higa_
957
1086
 
958
- * Set button variants in the `ButtonGroup` parent.
1087
+ - Set button variants in the `ButtonGroup` parent.
959
1088
 
960
- *Manuel Puyol*
1089
+ _Manuel Puyol_
961
1090
 
962
- * Create `ClipboardCopy` component.
1091
+ - Create `ClipboardCopy` component.
963
1092
 
964
- *Kristján Oddsson*
1093
+ _Kristján Oddsson_
965
1094
 
966
- * **Breaking change:** Rename `ButtonGroupComponent` to `ButtonGroup` and promote it to beta.
1095
+ - **Breaking change:** Rename `ButtonGroupComponent` to `ButtonGroup` and promote it to beta.
967
1096
 
968
- *Manuel Puyol*
1097
+ _Manuel Puyol_
969
1098
 
970
- * **Breaking change:** Do not provide default for `Heading` and improve documentation.
1099
+ - **Breaking change:** Do not provide default for `Heading` and improve documentation.
971
1100
 
972
- *Kate Higa*
1101
+ _Kate Higa_
973
1102
 
974
- * **Breaking change:** Don't allow `StateComponent` to be a link.
1103
+ - **Breaking change:** Don't allow `StateComponent` to be a link.
975
1104
 
976
- *Kate Higa*
1105
+ _Kate Higa_
977
1106
 
978
1107
  ## 0.0.37
979
1108
 
980
- * Update NPM package to include subdirectory JS files.
1109
+ - Update NPM package to include subdirectory JS files.
981
1110
 
982
- *Manuel Puyol*
1111
+ _Manuel Puyol_
983
1112
 
984
1113
  ## 0.0.36
985
1114
 
986
- * Add `block` flag to `ButtonComponent`.
1115
+ - Add `block` flag to `ButtonComponent`.
987
1116
 
988
- *Manuel Puyol*
1117
+ _Manuel Puyol_
989
1118
 
990
- * Add `link` and `invisible` schemes to `ButtonComponent`.
1119
+ - Add `link` and `invisible` schemes to `ButtonComponent`.
991
1120
 
992
- *Manuel Puyol*
1121
+ _Manuel Puyol_
993
1122
 
994
- * Create `CloseButton` and `HiddenTextExpander` component.
1123
+ - Create `CloseButton` and `HiddenTextExpander` component.
995
1124
 
996
- *Manuel Puyol*
1125
+ _Manuel Puyol_
997
1126
 
998
- * **Breaking change:** Rename `AutoCompleteComponent` to `AutoComplete` and `AutoCompleteItemComponent` to `AutoComplete::Item`.
1127
+ - **Breaking change:** Rename `AutoCompleteComponent` to `AutoComplete` and `AutoCompleteItemComponent` to `AutoComplete::Item`.
999
1128
 
1000
- *Manuel Puyol*
1129
+ _Manuel Puyol_
1001
1130
 
1002
- * **Breaking change:** Rename `TruncateComponent` to `Truncate` and promote it to beta.
1131
+ - **Breaking change:** Rename `TruncateComponent` to `Truncate` and promote it to beta.
1003
1132
 
1004
- *Manuel Puyol*
1133
+ _Manuel Puyol_
1005
1134
 
1006
1135
  ## 0.0.35
1007
1136
 
1008
- * Promote `AutoCompleteComponent`, `AutoCompleteItemComponent`, `AvatarStackComponent` and `ButtonComponent` to beta.
1137
+ - Promote `AutoCompleteComponent`, `AutoCompleteItemComponent`, `AvatarStackComponent` and `ButtonComponent` to beta.
1009
1138
 
1010
- *Manuel Puyol*
1139
+ _Manuel Puyol_
1011
1140
 
1012
- * Allow `UnderlineNav` tabs to be rendered as a `<ul><li>` list.
1141
+ - Allow `UnderlineNav` tabs to be rendered as a `<ul><li>` list.
1013
1142
 
1014
- *Manuel Puyol*
1143
+ _Manuel Puyol_
1015
1144
 
1016
- * _Accessibility:_ Don't add tab roles when `UnderlineNav` or `TabNav` use link redirects.
1145
+ - _Accessibility:_ Don't add tab roles when `UnderlineNav` or `TabNav` use link redirects.
1017
1146
 
1018
- *Manuel Puyol*
1147
+ _Manuel Puyol_
1019
1148
 
1020
- * **Breaking change:** Make `label` required for `UnderlineNav` and `TabNav`.
1149
+ - **Breaking change:** Make `label` required for `UnderlineNav` and `TabNav`.
1021
1150
 
1022
- *Manuel Puyol*
1151
+ _Manuel Puyol_
1023
1152
 
1024
1153
  ## 0.0.34
1025
1154
 
1026
- * Add `p: :responsive` and `m: :auto` system arguments.
1155
+ - Add `p: :responsive` and `m: :auto` system arguments.
1027
1156
 
1028
- *Manuel Puyol*
1157
+ _Manuel Puyol_
1029
1158
 
1030
- * Remove `my: :auto` and negative `m:` system arguments.
1159
+ - Remove `my: :auto` and negative `m:` system arguments.
1031
1160
 
1032
- *Manuel Puyol*
1161
+ _Manuel Puyol_
1033
1162
 
1034
- * **Breaking change:** Rename `FlashComponent` `variant` argument to `scheme`.
1163
+ - **Breaking change:** Rename `FlashComponent` `variant` argument to `scheme`.
1035
1164
 
1036
- *Manuel Puyol*
1165
+ _Manuel Puyol_
1037
1166
 
1038
- * **Breaking change:** Rename `LinkComponent` `variant` argument to `scheme`.
1167
+ - **Breaking change:** Rename `LinkComponent` `variant` argument to `scheme`.
1039
1168
 
1040
- *Manuel Puyol*
1169
+ _Manuel Puyol_
1041
1170
 
1042
- * **Breaking change:** Rename `ButtonComponent` `button_type` argument to `scheme`.
1171
+ - **Breaking change:** Rename `ButtonComponent` `button_type` argument to `scheme`.
1043
1172
 
1044
- *Manuel Puyol*
1173
+ _Manuel Puyol_
1045
1174
 
1046
- * **Breaking change:** Rename `ButtonMarketing` `button_type` argument to `scheme`.
1175
+ - **Breaking change:** Rename `ButtonMarketing` `button_type` argument to `scheme`.
1047
1176
 
1048
- *Manuel Puyol*
1177
+ _Manuel Puyol_
1049
1178
 
1050
- * **Breaking change:** Rename `StateComponent` `color` argument to `scheme`.
1179
+ - **Breaking change:** Rename `StateComponent` `color` argument to `scheme`.
1051
1180
 
1052
- *Manuel Puyol*
1181
+ _Manuel Puyol_
1053
1182
 
1054
1183
  ## 0.0.33
1055
1184
 
1056
- * Remove `TabbedComponent` validation requiring a tab to be selected.
1185
+ - Remove `TabbedComponent` validation requiring a tab to be selected.
1057
1186
 
1058
- *Manuel Puyol*
1187
+ _Manuel Puyol_
1059
1188
 
1060
1189
  ## 0.0.32
1061
1190
 
1062
- * Allow passing the icon name as a positional argument to `OcticonComponent`.
1191
+ - Allow passing the icon name as a positional argument to `OcticonComponent`.
1063
1192
 
1064
- *Manuel Puyol*
1193
+ _Manuel Puyol_
1065
1194
 
1066
- * Promote `TimeAgoComponent` to beta.
1195
+ - Promote `TimeAgoComponent` to beta.
1067
1196
 
1068
- *Manuel Puyol*
1197
+ _Manuel Puyol_
1069
1198
 
1070
- * **Breaking change:** Update `TabNav#tab` API to accept the tab content as a block and panel content as a slot.
1199
+ - **Breaking change:** Update `TabNav#tab` API to accept the tab content as a block and panel content as a slot.
1071
1200
 
1072
- *Manuel Puyol*
1201
+ _Manuel Puyol_
1073
1202
 
1074
- * **Breaking change:** Update `UnderlineNavComponent` API be more strict and support `TabContainer`.
1203
+ - **Breaking change:** Update `UnderlineNavComponent` API be more strict and support `TabContainer`.
1075
1204
 
1076
- *Manuel Puyol*
1205
+ _Manuel Puyol_
1077
1206
 
1078
1207
  ## 0.0.31
1079
1208
 
1080
- * Fix `Popover` bug where body was only returning the last line of the HTML.
1209
+ - Fix `Popover` bug where body was only returning the last line of the HTML.
1081
1210
 
1082
- *Manuel Puyol, Blake Williams*
1211
+ _Manuel Puyol, Blake Williams_
1083
1212
 
1084
1213
  ## 0.0.30
1085
1214
 
1086
- * Make `color:`, `bg:` and `border_color:` accept string values.
1215
+ - Make `color:`, `bg:` and `border_color:` accept string values.
1087
1216
 
1088
- *Manuel Puyol*
1217
+ _Manuel Puyol_
1089
1218
 
1090
1219
  ## 0.0.29
1091
1220
 
1092
- * Add `primer_time_ago` helper.
1221
+ - Add `primer_time_ago` helper.
1093
1222
 
1094
- *Simon Taranto*
1223
+ _Simon Taranto_
1095
1224
 
1096
- * Add `silence_deprecations` config to supress deprecation warnings.
1225
+ - Add `silence_deprecations` config to supress deprecation warnings.
1097
1226
 
1098
- *Manuel Puyol*
1227
+ _Manuel Puyol_
1099
1228
 
1100
1229
  ## 0.0.28
1101
1230
 
1102
- * Update `CounterComponent` to accept functional schemes `primary` and `secondary`. Deprecate `gray` and `light_gray` schemes.
1231
+ - Update `CounterComponent` to accept functional schemes `primary` and `secondary`. Deprecate `gray` and `light_gray` schemes.
1103
1232
 
1104
- *Manuel Puyol*
1233
+ _Manuel Puyol_
1105
1234
 
1106
- * Add `force_functional_colors` option to convert colors to functional. This change includes a deprecation warning in non-production environments that warns about non functional color usage.
1235
+ - Add `force_functional_colors` option to convert colors to functional. This change includes a deprecation warning in non-production environments that warns about non functional color usage.
1107
1236
 
1108
- *Manuel Puyol*
1237
+ _Manuel Puyol_
1109
1238
 
1110
- * Promote `DetailsComponent`, `HeadingComponent`, `TextComponent`, `TimelineItemComponent`, and
1239
+ - Promote `DetailsComponent`, `HeadingComponent`, `TextComponent`, `TimelineItemComponent`, and
1111
1240
  `PopoverComponent` to beta status.
1112
1241
 
1113
- *Simon Taranto*
1242
+ _Simon Taranto_
1243
+
1244
+ - Update `LinkComponent`:
1114
1245
 
1115
- * Update `LinkComponent`:
1116
- * use `Link--muted` instead of `muted-link`.
1117
- * accept `variant` and `underline` options.
1118
- * accept `:span` as a tag.
1246
+ - use `Link--muted` instead of `muted-link`.
1247
+ - accept `variant` and `underline` options.
1248
+ - accept `:span` as a tag.
1119
1249
 
1120
- *Manuel Puyol*
1250
+ _Manuel Puyol_
1121
1251
 
1122
- * Add `AutoComplete` and `AutoCompleteItem` components.
1252
+ - Add `AutoComplete` and `AutoCompleteItem` components.
1123
1253
 
1124
- *Manuel Puyol*
1254
+ _Manuel Puyol_
1125
1255
 
1126
- * Publish types with npm package.
1256
+ - Publish types with npm package.
1127
1257
 
1128
- *Keith Cirkel* & *Clay Miller*
1258
+ _Keith Cirkel_ & _Clay Miller_
1129
1259
 
1130
- * Fix `AvatarComponent` to apply classes to the link wrapper if present.
1260
+ - Fix `AvatarComponent` to apply classes to the link wrapper if present.
1131
1261
 
1132
- *Steve Richert*
1262
+ _Steve Richert_
1133
1263
 
1134
- * Fix `AvatarComponent` to apply the `avatar-small` class rather than `avatar--small`.
1264
+ - Fix `AvatarComponent` to apply the `avatar-small` class rather than `avatar--small`.
1135
1265
 
1136
- *Steve Richert*
1266
+ _Steve Richert_
1137
1267
 
1138
- * **Breaking change:** Updates `PopoverComponent` to use Slots V2.
1268
+ - **Breaking change:** Updates `PopoverComponent` to use Slots V2.
1139
1269
 
1140
- *Manuel Puyol*
1270
+ _Manuel Puyol_
1141
1271
 
1142
1272
  ## 0.0.27
1143
1273
 
1144
- * Promote `BreadcrumbComponent` and `ProgressBarComponent` to beta status.
1274
+ - Promote `BreadcrumbComponent` and `ProgressBarComponent` to beta status.
1145
1275
 
1146
- *Simon Taranto*
1276
+ _Simon Taranto_
1147
1277
 
1148
- * Fix `OcticonComponent` not rendering `data-test-selector` correctly.
1278
+ - Fix `OcticonComponent` not rendering `data-test-selector` correctly.
1149
1279
 
1150
- *Manuel Puyol*
1280
+ _Manuel Puyol_
1151
1281
 
1152
- * Add `TimeAgo` component.
1282
+ - Add `TimeAgo` component.
1153
1283
 
1154
- *Keith Cirkel*
1284
+ _Keith Cirkel_
1155
1285
 
1156
- * **Breaking change:** Updates `UnderlineNavComponent` to use Slots V2.
1286
+ - **Breaking change:** Updates `UnderlineNavComponent` to use Slots V2.
1157
1287
 
1158
- *Simon Taranto*
1288
+ _Simon Taranto_
1159
1289
 
1160
- * **Breaking change:** Upgrade `LayoutComponent` to use Slots V2.
1290
+ - **Breaking change:** Upgrade `LayoutComponent` to use Slots V2.
1161
1291
 
1162
- *Simon Taranto*
1292
+ _Simon Taranto_
1163
1293
 
1164
1294
  ## 0.0.26
1165
1295
 
1166
- * Fix `DetailsComponent` summary always being rendered as a `btn`.
1296
+ - Fix `DetailsComponent` summary always being rendered as a `btn`.
1167
1297
 
1168
- *Manuel Puyol*
1298
+ _Manuel Puyol_
1169
1299
 
1170
- * Promote `BlankslateComponent` and `BaseComponent` to beta status.
1300
+ - Promote `BlankslateComponent` and `BaseComponent` to beta status.
1171
1301
 
1172
- *Simon Taranto*
1302
+ _Simon Taranto_
1173
1303
 
1174
1304
  ## 0.0.25
1175
1305
 
1176
- * Promote `SubheadComponent` to beta.
1306
+ - Promote `SubheadComponent` to beta.
1177
1307
 
1178
- *Simon Taranto*
1308
+ _Simon Taranto_
1179
1309
 
1180
- * Add deprecated `orange` and `purple` schemes to `LabelComponent`.
1310
+ - Add deprecated `orange` and `purple` schemes to `LabelComponent`.
1181
1311
 
1182
- *Manuel Puyol*
1312
+ _Manuel Puyol_
1183
1313
 
1184
1314
  ## 0.0.24
1185
1315
 
1186
- * Fix zeitwerk autoload integration.
1316
+ - Fix zeitwerk autoload integration.
1187
1317
 
1188
- *Manuel Puyol*
1318
+ _Manuel Puyol_
1189
1319
 
1190
- * **Breaking change:** Upgrade `ProgressBarComponent` to use Slots V2.
1320
+ - **Breaking change:** Upgrade `ProgressBarComponent` to use Slots V2.
1191
1321
 
1192
- *Simon Taranto*
1322
+ _Simon Taranto_
1193
1323
 
1194
- * **Breaking change:** Upgrade `BreadcrumbComponent` to use Slots V2.
1324
+ - **Breaking change:** Upgrade `BreadcrumbComponent` to use Slots V2.
1195
1325
 
1196
- *Manuel Puyol*
1326
+ _Manuel Puyol_
1197
1327
 
1198
1328
  ## 0.0.23
1199
1329
 
1200
- * Remove node and yarn version requirements from `@primer/view-components`.
1330
+ - Remove node and yarn version requirements from `@primer/view-components`.
1201
1331
 
1202
- *Manuel Puyol*
1332
+ _Manuel Puyol_
1203
1333
 
1204
- * **Breaking change:** Upgrade `SubheadComponent` to use Slots V2.
1334
+ - **Breaking change:** Upgrade `SubheadComponent` to use Slots V2.
1205
1335
 
1206
- *Simon Taranto*
1336
+ _Simon Taranto_
1207
1337
 
1208
- * **Breaking change:** Update `LabelComponent` to use only functional color
1338
+ - **Breaking change:** Update `LabelComponent` to use only functional color
1209
1339
  supportive scheme keys. The component no longer accepts colors (`:gray`, for
1210
1340
  example) but only functional schemes (`primary`, for example).
1211
1341
  `LabelComponent` is promoted to beta status.
1212
1342
 
1213
- *Simon Taranto*
1343
+ _Simon Taranto_
1214
1344
 
1215
1345
  ## 0.0.22
1216
1346
 
1217
- * Add view helpers to easily render Primer components.
1347
+ - Add view helpers to easily render Primer components.
1218
1348
 
1219
- *Manuel Puyol*
1349
+ _Manuel Puyol_
1220
1350
 
1221
- * Add `TabContainer` and `TabNav` components.
1351
+ - Add `TabContainer` and `TabNav` components.
1222
1352
 
1223
- *Manuel Puyol*
1353
+ _Manuel Puyol_
1224
1354
 
1225
- * Promote `StateComponent` to beta.
1355
+ - Promote `StateComponent` to beta.
1226
1356
 
1227
- *Simon Taranto*
1357
+ _Simon Taranto_
1228
1358
 
1229
- * **Breaking change:** Upgrade `BorderBoxComponent` to use Slots V2.
1359
+ - **Breaking change:** Upgrade `BorderBoxComponent` to use Slots V2.
1230
1360
 
1231
- *Manuel Puyol*
1361
+ _Manuel Puyol_
1232
1362
 
1233
- * **Breaking change:** Upgrade `StateComponent` to support functional colors. This change requires using [@primer/css-next](https://www.npmjs.com/package/@primer/css-next). The required changes will be upstreamed to @primer/css at a later date.
1363
+ - **Breaking change:** Upgrade `StateComponent` to support functional colors. This change requires using [@primer/css-next](https://www.npmjs.com/package/@primer/css-next). The required changes will be upstreamed to @primer/css at a later date.
1234
1364
 
1235
- *Simon Taranto*
1365
+ _Simon Taranto_
1236
1366
 
1237
- * **Breaking change:** Upgrade `DetailsComponent` to use Slots V2.
1367
+ - **Breaking change:** Upgrade `DetailsComponent` to use Slots V2.
1238
1368
 
1239
- *Simon Taranto*
1369
+ _Simon Taranto_
1240
1370
 
1241
1371
  ## 0.0.21
1242
1372
 
1243
- * **Breaking change:** Upgrade `FlashComponent` to use Slots V2.
1373
+ - **Breaking change:** Upgrade `FlashComponent` to use Slots V2.
1244
1374
 
1245
- *Joel Hawksley, Simon Taranto*
1375
+ _Joel Hawksley, Simon Taranto_
1246
1376
 
1247
- * **Breaking change:** Upgrade `BlankslateComponent` to use Slots V2.
1377
+ - **Breaking change:** Upgrade `BlankslateComponent` to use Slots V2.
1248
1378
 
1249
- *Manuel Puyol*
1379
+ _Manuel Puyol_
1250
1380
 
1251
- * **Breaking change:** Upgrade `TimelineItemComponent` to use Slots V2.
1381
+ - **Breaking change:** Upgrade `TimelineItemComponent` to use Slots V2.
1252
1382
 
1253
- *Manuel Puyol*
1383
+ _Manuel Puyol_
1254
1384
 
1255
1385
  ## 0.0.20
1256
1386
 
1257
- * Fix bug when empty string was passed to Classify.
1387
+ - Fix bug when empty string was passed to Classify.
1258
1388
 
1259
- *Manuel Puyol*
1389
+ _Manuel Puyol_
1260
1390
 
1261
1391
  ## 0.0.19
1262
1392
 
1263
- * Add support for functional colors to `color` system argument.
1393
+ - Add support for functional colors to `color` system argument.
1264
1394
 
1265
- *Jake Shorty*
1395
+ _Jake Shorty_
1266
1396
 
1267
- * Add `AvatarStack`, `Dropdown`, `Markdown` and `Menu` components.
1397
+ - Add `AvatarStack`, `Dropdown`, `Markdown` and `Menu` components.
1268
1398
 
1269
- *Manuel Puyol*
1399
+ _Manuel Puyol_
1270
1400
 
1271
- * Deprecate `DropdownMenuComponent`.
1401
+ - Deprecate `DropdownMenuComponent`.
1272
1402
 
1273
- *Manuel Puyol*
1403
+ _Manuel Puyol_
1274
1404
 
1275
- * Fix `Avatar` bug when used with links.
1405
+ - Fix `Avatar` bug when used with links.
1276
1406
 
1277
- *Manuel Puyol*
1407
+ _Manuel Puyol_
1278
1408
 
1279
- * Add cache for common Primer values.
1409
+ - Add cache for common Primer values.
1280
1410
 
1281
- *Blake Williams*
1411
+ _Blake Williams_
1282
1412
 
1283
- * Add support for `octicons_helper` v12.
1413
+ - Add support for `octicons_helper` v12.
1284
1414
 
1285
- *Cole Bemis*
1415
+ _Cole Bemis_
1286
1416
 
1287
- * Add support for `border: true` to apply the `border` class.
1417
+ - Add support for `border: true` to apply the `border` class.
1288
1418
 
1289
- *Simon Taranto*
1419
+ _Simon Taranto_
1290
1420
 
1291
- * Promote `Avatar`, `Link`, and `Counter` components to beta.
1421
+ - Promote `Avatar`, `Link`, and `Counter` components to beta.
1292
1422
 
1293
- *Simon Taranto*
1423
+ _Simon Taranto_
1294
1424
 
1295
- * **Breaking change:** Drop support for Ruby 2.4.
1425
+ - **Breaking change:** Drop support for Ruby 2.4.
1296
1426
 
1297
- *Simon Taranto*
1427
+ _Simon Taranto_
1298
1428
 
1299
1429
  ## 0.0.18
1300
1430
 
1301
- * Add `border_radius` system argument.
1431
+ - Add `border_radius` system argument.
1302
1432
 
1303
- *Ash Guillaume*
1433
+ _Ash Guillaume_
1304
1434
 
1305
- * Add `animation` system argument.
1435
+ - Add `animation` system argument.
1306
1436
 
1307
- *Manuel Puyol*
1437
+ _Manuel Puyol_
1308
1438
 
1309
- * Add `Truncate`, `ButtonGroup` and `ButtonMarketing` components.
1439
+ - Add `Truncate`, `ButtonGroup` and `ButtonMarketing` components.
1310
1440
 
1311
- *Manuel Puyol*
1441
+ _Manuel Puyol_
1312
1442
 
1313
- * Add `Tooltip` component.
1443
+ - Add `Tooltip` component.
1314
1444
 
1315
- *Simon Taranto*
1445
+ _Simon Taranto_
1316
1446
 
1317
1447
  ## 0.0.17
1318
1448
 
1319
- * Ensure all components support inline styles.
1449
+ - Ensure all components support inline styles.
1320
1450
 
1321
- *Joel Hawksley*
1451
+ _Joel Hawksley_
1322
1452
 
1323
1453
  ## 0.0.16
1324
1454
 
1325
- * Adding a `spinner` slot to the `BlankslateComponent` that uses the `SpinnerComponent` added in `0.0.10`.
1455
+ - Adding a `spinner` slot to the `BlankslateComponent` that uses the `SpinnerComponent` added in `0.0.10`.
1326
1456
 
1327
- *Jon Rohan*
1457
+ _Jon Rohan_
1328
1458
 
1329
- * Bumping node engine to version `15.x`
1459
+ - Bumping node engine to version `15.x`
1330
1460
 
1331
- *Jon Rohan*
1461
+ _Jon Rohan_
1332
1462
 
1333
1463
  ## 0.0.15
1334
1464
 
1335
- * Add ability to disable `limit` on Counter.
1465
+ - Add ability to disable `limit` on Counter.
1336
1466
 
1337
- *Christian Giordano*
1467
+ _Christian Giordano_
1338
1468
 
1339
- * Rename `v` system argument to `visibility`.
1469
+ - Rename `v` system argument to `visibility`.
1340
1470
 
1341
- *Joel Hawksley*
1471
+ _Joel Hawksley_
1342
1472
 
1343
1473
  ## 0.0.14
1344
1474
 
1345
- * Add functional colors to Label.
1475
+ - Add functional colors to Label.
1346
1476
 
1347
- *Joel Hawksley*
1477
+ _Joel Hawksley_
1348
1478
 
1349
1479
  ## 0.0.13
1350
1480
 
1351
- * Add support for `xl` breakpoint.
1481
+ - Add support for `xl` breakpoint.
1352
1482
 
1353
- *Joel Hawksley*
1483
+ _Joel Hawksley_
1354
1484
 
1355
1485
  ## 0.0.12
1356
1486
 
1357
- * Adds support for disabling inline box-sizing style for `SpinnerComponent` via style parameter `Primer::SpinnerComponent.new(style: nil)`.
1487
+ - Adds support for disabling inline box-sizing style for `SpinnerComponent` via style parameter `Primer::SpinnerComponent.new(style: nil)`.
1358
1488
 
1359
- *Chris Wilson*
1489
+ _Chris Wilson_
1360
1490
 
1361
1491
  ## 0.0.11
1362
1492
 
1363
- * Renames DetailsComponent::OVERLAY_DEFAULT to DetailsComponent::NO_OVERLAY to more correctly describe its value.
1493
+ - Renames DetailsComponent::OVERLAY_DEFAULT to DetailsComponent::NO_OVERLAY to more correctly describe its value.
1364
1494
 
1365
- *Justin Kenyon*
1495
+ _Justin Kenyon_
1366
1496
 
1367
1497
  ## 0.0.10
1368
1498
 
1369
- * Add SpinnerComponent
1499
+ - Add SpinnerComponent
1370
1500
 
1371
- *Cole Bemis*
1501
+ _Cole Bemis_
1372
1502
 
1373
1503
  ## 0.0.9
1374
1504
 
1375
- * BREAKING CHANGE: OcticonComponent no longer accepts `class` parameter; use `classes` instead.
1505
+ - BREAKING CHANGE: OcticonComponent no longer accepts `class` parameter; use `classes` instead.
1376
1506
 
1377
- *heynan0*
1507
+ _heynan0_
1378
1508
 
1379
1509
  ## 0.0.8
1380
1510
 
1381
- * Add support for border margins, such as: `border_top: 0`.
1511
+ - Add support for border margins, such as: `border_top: 0`.
1382
1512
 
1383
- *Natasha Umer*
1513
+ _Natasha Umer_
1384
1514
 
1385
- * Add FlashComponent and OcticonComponent.
1515
+ - Add FlashComponent and OcticonComponent.
1386
1516
 
1387
- *Joel Hawksley*
1517
+ _Joel Hawksley_
1388
1518
 
1389
- * BREAKING CHANGE: BlankslateComponent accepts `icon_size` instead of `icon_height`.
1519
+ - BREAKING CHANGE: BlankslateComponent accepts `icon_size` instead of `icon_height`.
1390
1520
 
1391
- *Joel Hawksley*
1521
+ _Joel Hawksley_
1392
1522
 
1393
1523
  ## 0.0.7
1394
1524
 
1395
- * Use `octicons_helper` v11.0.0.
1525
+ - Use `octicons_helper` v11.0.0.
1396
1526
 
1397
- *Joel Hawksley*
1527
+ _Joel Hawksley_
1398
1528
 
1399
1529
  ## 0.0.6
1400
1530
 
1401
- * Updated the invalid class name error message
1531
+ - Updated the invalid class name error message
1402
1532
 
1403
- *emplums*
1533
+ _emplums_
1404
1534
 
1405
- * Updated README with testing instructions
1535
+ - Updated README with testing instructions
1406
1536
 
1407
- *emplums*
1537
+ _emplums_
1408
1538
 
1409
- * Add large and spacious option to BlankslateComponent
1539
+ - Add large and spacious option to BlankslateComponent
1410
1540
 
1411
- *simurai*
1541
+ _simurai_
1412
1542
 
1413
- * Add option for `ButtonComponent` to render a `summary` tag
1543
+ - Add option for `ButtonComponent` to render a `summary` tag
1414
1544
 
1415
- *Manuel Puyol*
1545
+ _Manuel Puyol_
1416
1546
 
1417
- * BREAKING CHANGE: Changed `DetailsComponent` summary and body to be slots
1547
+ - BREAKING CHANGE: Changed `DetailsComponent` summary and body to be slots
1418
1548
 
1419
- *Manuel Puyol*
1549
+ _Manuel Puyol_
1420
1550
 
1421
1551
  ## 0.0.5
1422
1552
 
1423
- * Add support for box_shadow
1424
- * Add components:
1425
- * Popover
1553
+ - Add support for box_shadow
1554
+ - Add components:
1555
+
1556
+ - Popover
1426
1557
 
1427
- *Sarah Vessels*
1558
+ _Sarah Vessels_
1428
1559
 
1429
1560
  ## 0.0.4
1430
1561
 
1431
- * Added support for mx: and my: :auto.
1562
+ - Added support for mx: and my: :auto.
1432
1563
 
1433
- *Christian Giordano*
1564
+ _Christian Giordano_
1434
1565
 
1435
- * Added support for custom layout sizes.
1566
+ - Added support for custom layout sizes.
1436
1567
 
1437
- *Manuel Puyol*
1568
+ _Manuel Puyol_
1438
1569
 
1439
1570
  ## 0.0.3
1440
1571
 
1441
- * Add support for responsive `float` system argument.
1572
+ - Add support for responsive `float` system argument.
1442
1573
 
1443
- *Joel Hawksley*
1574
+ _Joel Hawksley_
1444
1575
 
1445
- * Add components:
1446
- * Avatar
1447
- * Blankslate
1576
+ - Add components:
1448
1577
 
1449
- *Manuel Puyol, Ben Emdon*
1578
+ - Avatar
1579
+ - Blankslate
1580
+
1581
+ _Manuel Puyol, Ben Emdon_
1450
1582
 
1451
1583
  ## 0.0.1
1452
1584
 
1453
- * Add initial gem configuration.
1585
+ - Add initial gem configuration.
1586
+
1587
+ _Manuel Puyol, Joel Hawksley_
1454
1588
 
1455
- *Manuel Puyol, Joel Hawksley*
1589
+ - Add demo app and storybook to test
1456
1590
 
1457
- * Add demo app and storybook to test
1591
+ _Manuel Puyol_
1458
1592
 
1459
- *Manuel Puyol*
1593
+ - Add Classify, FetchOrFallback and ClassName helpers
1460
1594
 
1461
- * Add Classify, FetchOrFallback and ClassName helpers
1595
+ _Manuel Puyol_
1462
1596
 
1463
- *Manuel Puyol*
1597
+ - Add components:
1464
1598
 
1465
- * Add components:
1466
- * BorderBox
1467
- * Box
1468
- * Breadcrumb
1469
- * Button
1470
- * Counter
1471
- * Details
1472
- * Dropdown
1473
- * Flex
1474
- * FlexItem
1475
- * Heading
1476
- * Label
1477
- * Layout
1478
- * Link
1479
- * ProgressBar
1480
- * State
1481
- * Subhead
1482
- * Text
1483
- * TimelineItem
1484
- * UnderlineNav
1599
+ - BorderBox
1600
+ - Box
1601
+ - Breadcrumb
1602
+ - Button
1603
+ - Counter
1604
+ - Details
1605
+ - Dropdown
1606
+ - Flex
1607
+ - FlexItem
1608
+ - Heading
1609
+ - Label
1610
+ - Layout
1611
+ - Link
1612
+ - ProgressBar
1613
+ - State
1614
+ - Subhead
1615
+ - Text
1616
+ - TimelineItem
1617
+ - UnderlineNav
1485
1618
 
1486
- *Manuel Puyol*
1619
+ _Manuel Puyol_