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