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