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