primer_view_components 0.0.63 → 0.0.67

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