@primer/view-components 0.36.6-rc.f22d48ee → 0.37.0-rc.1b825e45
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.
- package/app/assets/javascripts/components/primer/beta/details_toggle_element.d.ts +39 -0
- package/app/assets/javascripts/components/primer/primer.d.ts +1 -0
- package/app/assets/javascripts/primer_view_components.js +1 -1
- package/app/assets/javascripts/primer_view_components.js.map +1 -1
- package/app/components/primer/beta/details_toggle_element.d.ts +39 -0
- package/app/components/primer/beta/details_toggle_element.js +60 -0
- package/app/components/primer/primer.d.ts +1 -0
- package/app/components/primer/primer.js +1 -0
- package/package.json +1 -1
- package/static/arguments.json +6 -0
- package/static/constants.json +4 -0
- package/static/info_arch.json +113 -17
- package/static/previews.json +13 -0
@@ -0,0 +1,39 @@
|
|
1
|
+
/**
|
2
|
+
* A companion Catalyst element for the Details view component. This element
|
3
|
+
* ensures the <details> and <summary> elements markup is properly accessible by
|
4
|
+
* updating the aria-label and aria-expanded attributes on click.
|
5
|
+
*
|
6
|
+
* aria-label values default to "Expand" and "Collapse". To override those
|
7
|
+
* values, use the `data-aria-label-open` and `data-aria-label-closed`
|
8
|
+
* attributes on the summary target.
|
9
|
+
*
|
10
|
+
* @example
|
11
|
+
* ```html
|
12
|
+
* <details-toggle>
|
13
|
+
* <details open=true data-target="details-toggle.detailsTarget">
|
14
|
+
* <summary
|
15
|
+
* aria-expanded="true"
|
16
|
+
* aria-label="Collapse me"
|
17
|
+
* data-target="details-toggle.summaryTarget"
|
18
|
+
* data-action="click:details-toggle#toggle"
|
19
|
+
* data-aria-label-closed="Expand me"
|
20
|
+
* data-aria-label-open="Collapse me"
|
21
|
+
* >
|
22
|
+
* Click me
|
23
|
+
* </summary>
|
24
|
+
* <div>Contents</div>
|
25
|
+
* </details>
|
26
|
+
* </details-toggle>
|
27
|
+
* ```
|
28
|
+
*/
|
29
|
+
declare class DetailsToggleElement extends HTMLElement {
|
30
|
+
detailsTarget: HTMLDetailsElement;
|
31
|
+
summaryTarget: HTMLElement;
|
32
|
+
toggle(): void;
|
33
|
+
}
|
34
|
+
declare global {
|
35
|
+
interface Window {
|
36
|
+
DetailsToggleElement: typeof DetailsToggleElement;
|
37
|
+
}
|
38
|
+
}
|
39
|
+
export {};
|
@@ -0,0 +1,60 @@
|
|
1
|
+
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
2
|
+
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
3
|
+
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
4
|
+
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
5
|
+
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
6
|
+
};
|
7
|
+
import { controller, target } from '@github/catalyst';
|
8
|
+
/**
|
9
|
+
* A companion Catalyst element for the Details view component. This element
|
10
|
+
* ensures the <details> and <summary> elements markup is properly accessible by
|
11
|
+
* updating the aria-label and aria-expanded attributes on click.
|
12
|
+
*
|
13
|
+
* aria-label values default to "Expand" and "Collapse". To override those
|
14
|
+
* values, use the `data-aria-label-open` and `data-aria-label-closed`
|
15
|
+
* attributes on the summary target.
|
16
|
+
*
|
17
|
+
* @example
|
18
|
+
* ```html
|
19
|
+
* <details-toggle>
|
20
|
+
* <details open=true data-target="details-toggle.detailsTarget">
|
21
|
+
* <summary
|
22
|
+
* aria-expanded="true"
|
23
|
+
* aria-label="Collapse me"
|
24
|
+
* data-target="details-toggle.summaryTarget"
|
25
|
+
* data-action="click:details-toggle#toggle"
|
26
|
+
* data-aria-label-closed="Expand me"
|
27
|
+
* data-aria-label-open="Collapse me"
|
28
|
+
* >
|
29
|
+
* Click me
|
30
|
+
* </summary>
|
31
|
+
* <div>Contents</div>
|
32
|
+
* </details>
|
33
|
+
* </details-toggle>
|
34
|
+
* ```
|
35
|
+
*/
|
36
|
+
let DetailsToggleElement = class DetailsToggleElement extends HTMLElement {
|
37
|
+
toggle() {
|
38
|
+
const detailsIsOpen = this.detailsTarget.hasAttribute('open');
|
39
|
+
if (detailsIsOpen) {
|
40
|
+
const ariaLabelClosed = this.summaryTarget.getAttribute('data-aria-label-closed') || 'Expand';
|
41
|
+
this.summaryTarget.setAttribute('aria-label', ariaLabelClosed);
|
42
|
+
this.summaryTarget.setAttribute('aria-expanded', 'false');
|
43
|
+
}
|
44
|
+
else {
|
45
|
+
const ariaLabelOpen = this.summaryTarget.getAttribute('data-aria-label-open') || 'Collapse';
|
46
|
+
this.summaryTarget.setAttribute('aria-label', ariaLabelOpen);
|
47
|
+
this.summaryTarget.setAttribute('aria-expanded', 'true');
|
48
|
+
}
|
49
|
+
}
|
50
|
+
};
|
51
|
+
__decorate([
|
52
|
+
target
|
53
|
+
], DetailsToggleElement.prototype, "detailsTarget", void 0);
|
54
|
+
__decorate([
|
55
|
+
target
|
56
|
+
], DetailsToggleElement.prototype, "summaryTarget", void 0);
|
57
|
+
DetailsToggleElement = __decorate([
|
58
|
+
controller
|
59
|
+
], DetailsToggleElement);
|
60
|
+
window.DetailsToggleElement = DetailsToggleElement;
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@primer/view-components",
|
3
|
-
"version": "0.
|
3
|
+
"version": "0.37.0-rc.1b825e45",
|
4
4
|
"description": "ViewComponents for the Primer Design System",
|
5
5
|
"main": "app/assets/javascripts/primer_view_components.js",
|
6
6
|
"module": "app/components/primer/primer.js",
|
package/static/arguments.json
CHANGED
@@ -1253,6 +1253,12 @@
|
|
1253
1253
|
"default": "`false`",
|
1254
1254
|
"description": "When set to `true`, the form control will take up all the horizontal space allowed by its container."
|
1255
1255
|
},
|
1256
|
+
{
|
1257
|
+
"name": "label_arguments",
|
1258
|
+
"type": "Hash",
|
1259
|
+
"default": "`{}`",
|
1260
|
+
"description": "HTML attributes to attach to the `<label>` element that labels the input."
|
1261
|
+
},
|
1256
1262
|
{
|
1257
1263
|
"name": "system_arguments",
|
1258
1264
|
"type": "Hash",
|
package/static/constants.json
CHANGED
@@ -333,6 +333,8 @@
|
|
333
333
|
]
|
334
334
|
},
|
335
335
|
"Primer::Alpha::Dropdown": {
|
336
|
+
"ARIA_LABEL_CLOSED_DEFAULT": "Open",
|
337
|
+
"ARIA_LABEL_OPEN_DEFAULT": "Close",
|
336
338
|
"GeneratedSlotMethods": "Primer::Alpha::Dropdown::GeneratedSlotMethods",
|
337
339
|
"Menu": "Primer::Alpha::Dropdown::Menu"
|
338
340
|
},
|
@@ -1037,6 +1039,8 @@
|
|
1037
1039
|
]
|
1038
1040
|
},
|
1039
1041
|
"Primer::Beta::Details": {
|
1042
|
+
"ARIA_LABEL_CLOSED_DEFAULT": "Expand",
|
1043
|
+
"ARIA_LABEL_OPEN_DEFAULT": "Collapse",
|
1040
1044
|
"BODY_TAG_DEFAULT": "div",
|
1041
1045
|
"BODY_TAG_OPTIONS": [
|
1042
1046
|
"ul",
|
package/static/info_arch.json
CHANGED
@@ -2838,7 +2838,7 @@
|
|
2838
2838
|
"description": "Check boxes are true/false inputs rendered as `<input type=\"checkbox\">` in HTML.\n\n## Schemes\n\nCheck boxes can submit values to the server using one of two schemes, either `:array`\nor `:boolean` (the default). Check boxes with a scheme of `:boolean` function like normal\nHTML check boxes. If they are checked, a value of \"1\" is sent to the server; if they are\nunchecked, a value of \"0\" is sent to the server. The checked and unchecked values can be\ncustomized via the `:value` and `:unchecked_value` arguments respectively.\n\nWhereas `:boolean` check boxes must have unique names, `:array` check boxes all have the\nsame name. On form submission, Rails will aggregate the values of the check boxes with the\nsame name and provide them to the controller as an array. If `:scheme:` is `:array`, the\n`:value` argument must also be provided. The `:unchecked_value` argument is ignored. If a\ncheck box is checked on submit, its corresponding value will appear in the array. If it is\nnot checked, its value will not appear in the array.\n\n## Caption templates\n\nCaption templates for `:array`-type check boxes work a little differently than they do for\nother input types. Because the name must be the same for all check boxes that make up an\narray, caption template file names are comprised of both the name _and_ the value of each\ncheck box. For example, a check box with the name `foo` and value `bar` must have a caption\ntemplate named `foo_bar_caption.html.erb`.\n\n## Nested Forms\n\nCheck boxes can have \"nested\" forms that are rendered below the caption. A common use-case\nis a form that is hidden until the check box is checked. Nested forms are indented slightly\nto align with the label and caption.\n\nDefine a nested form via the `#nested_form` method, which is expected to return an instance\nof a Primer form (see the usage section below).\n\nAny fields defined in the nested form are submitted along with the parent form's fields.\n\n**NOTE**: Check boxes do not automatically show or hide nested forms. If such behavior is\ndesired, it must be done by hand.",
|
2839
2839
|
"accessibility_docs": null,
|
2840
2840
|
"is_form_component": true,
|
2841
|
-
"is_published":
|
2841
|
+
"is_published": true,
|
2842
2842
|
"requires_js": false,
|
2843
2843
|
"component": "CheckBox",
|
2844
2844
|
"status": "alpha",
|
@@ -3075,7 +3075,7 @@
|
|
3075
3075
|
"description": "Check box groups consist of one or more related check boxes.",
|
3076
3076
|
"accessibility_docs": null,
|
3077
3077
|
"is_form_component": true,
|
3078
|
-
"is_published":
|
3078
|
+
"is_published": true,
|
3079
3079
|
"requires_js": false,
|
3080
3080
|
"component": "CheckBoxGroup",
|
3081
3081
|
"status": "alpha",
|
@@ -3843,7 +3843,18 @@
|
|
3843
3843
|
"name": "button",
|
3844
3844
|
"description": "Required trigger for the dropdown. Has the same arguments as {{#link_to_component}}Primer::ButtonComponent{{/link_to_component}},\nbut it is locked as a `summary` tag.",
|
3845
3845
|
"parameters": [
|
3846
|
-
|
3846
|
+
{
|
3847
|
+
"name": "aria_label_open",
|
3848
|
+
"type": "String",
|
3849
|
+
"default": "N/A",
|
3850
|
+
"description": "Defaults to \"Close\". Value to announce when menu is open."
|
3851
|
+
},
|
3852
|
+
{
|
3853
|
+
"name": "aria_label_closed",
|
3854
|
+
"type": "String",
|
3855
|
+
"default": "N/A",
|
3856
|
+
"description": "Defaults to \"Open\". Value to announce when menu is closed."
|
3857
|
+
}
|
3847
3858
|
]
|
3848
3859
|
},
|
3849
3860
|
{
|
@@ -4195,7 +4206,7 @@
|
|
4195
4206
|
"description": "A button input rendered using the HTML `<button type=\"button\">` tag.\n\nThis component wraps the Primer button component and supports the same slots and arguments.",
|
4196
4207
|
"accessibility_docs": null,
|
4197
4208
|
"is_form_component": true,
|
4198
|
-
"is_published":
|
4209
|
+
"is_published": true,
|
4199
4210
|
"requires_js": false,
|
4200
4211
|
"component": "FormButton",
|
4201
4212
|
"status": "alpha",
|
@@ -4268,9 +4279,9 @@
|
|
4268
4279
|
},
|
4269
4280
|
{
|
4270
4281
|
"fully_qualified_name": "Primer::Alpha::FormControl",
|
4271
|
-
"description": "Wraps an input (or arbitrary content) with a label above and a caption and validation message beneath.\nNOTE: This `FormControl` component is designed for wrapping inputs that aren't supported by the Primer\nforms framework.",
|
4272
|
-
"accessibility_docs":
|
4273
|
-
"is_form_component":
|
4282
|
+
"description": "Wraps an input (or arbitrary content) with a label above and a caption and validation message beneath.\n\nNOTE: This `FormControl` component is designed for wrapping inputs that aren't supported by the Primer\nforms framework.",
|
4283
|
+
"accessibility_docs": "Because `FormControl` does not manage the actual `<input>` element, it cannot semantically connect\nthe input and its associated label. For this and other reasons, consumers are highly encouraged to\nuse Primer's pre-made form components like `TextField`, etc, ideally via the Primer forms framework.\n\nUsers of the `FormControl` component will need to manually connect the label using the `for:`\nattribute, eg:\n\n```erb\n<%= form_with(url: \"/path/somewhere\") do |f| %>\n <%= render(Primer::Alpha::FormControl.new(label_arguments: { for: \"bar\" })) do |component| %>\n <% component.with_input do |input_arguments| %>\n <%= f.text_field(:bar, **input_arguments) %>\n <% end %>\n <% end %>\n<% end %>\n```\n\nNote that the name of the field, `:bar`, is passed to both the Rails `#text_field` method _and_\nas part of the `label_arguments` passed to the `FormControl` constructor.\n\nSimilarly, `FormControl` cannot automatically connect the `<input>` element to the caption and\nvalidation message elements. The component attempts to mitigate this by including the correct\n`aria-describedby` attribute in the hash it yields to the block passed to `#with_input`. In the\nexample above, `input_arguments[:aria][:describedby]` contains the HTML IDs for both the caption\nand validation message elements, and can be passed directly to Rails' form helper methods. If the\ninput being wrapped is not generated by a Rails form helper, care must be taken to set\n`aria-describedby` manually on the input element.",
|
4284
|
+
"is_form_component": true,
|
4274
4285
|
"is_published": true,
|
4275
4286
|
"requires_js": false,
|
4276
4287
|
"component": "FormControl",
|
@@ -4316,6 +4327,12 @@
|
|
4316
4327
|
"default": "`false`",
|
4317
4328
|
"description": "When set to `true`, the form control will take up all the horizontal space allowed by its container."
|
4318
4329
|
},
|
4330
|
+
{
|
4331
|
+
"name": "label_arguments",
|
4332
|
+
"type": "Hash",
|
4333
|
+
"default": "`{}`",
|
4334
|
+
"description": "HTML attributes to attach to the `<label>` element that labels the input."
|
4335
|
+
},
|
4319
4336
|
{
|
4320
4337
|
"name": "system_arguments",
|
4321
4338
|
"type": "Hash",
|
@@ -4340,7 +4357,36 @@
|
|
4340
4357
|
}
|
4341
4358
|
],
|
4342
4359
|
"methods": [
|
4360
|
+
{
|
4361
|
+
"name": "required?",
|
4362
|
+
"description": "Whether or not this input is marked as required.",
|
4363
|
+
"parameters": [
|
4364
|
+
|
4365
|
+
],
|
4366
|
+
"return_types": [
|
4367
|
+
"Boolean"
|
4368
|
+
]
|
4369
|
+
},
|
4370
|
+
{
|
4371
|
+
"name": "visually_hide_label?",
|
4372
|
+
"description": "Whether or not to hide the label visually. The label will still be visible to screen readers.",
|
4373
|
+
"parameters": [
|
4343
4374
|
|
4375
|
+
],
|
4376
|
+
"return_types": [
|
4377
|
+
"Boolean"
|
4378
|
+
]
|
4379
|
+
},
|
4380
|
+
{
|
4381
|
+
"name": "full_width?",
|
4382
|
+
"description": "Whether or not the form control should take up all the horizontal space allowed by its container.",
|
4383
|
+
"parameters": [
|
4384
|
+
|
4385
|
+
],
|
4386
|
+
"return_types": [
|
4387
|
+
"Boolean"
|
4388
|
+
]
|
4389
|
+
}
|
4344
4390
|
],
|
4345
4391
|
"previews": [
|
4346
4392
|
{
|
@@ -5164,7 +5210,7 @@
|
|
5164
5210
|
"description": "Multi inputs are comprised of multiple constituent fields, only one of which is visible\nat a given time. They are designed for situations where constituent inputs are shown or\nhidden based on the value of another field. For example, consider an address form. If\nthe user chooses the USA as the country, the region input should show a list of states\nand US territories; if the user instead chooses Canada, the region input should show a\nlist of Canadian provinces, etc.\n\nUnlike everywhere else in Primer forms, constituent inputs are not directly passed a\n`name` attribute. Instead, developers pass a `name` attribute to the multi input itself.\nThe multi input then automatically assigns each constituent input the same name. This is\ndone so that the multi input looks like a single field from the server's point of view.\nUsing the address form example from earlier, this means only one value - either a US state\nor a Canadian provice - will be submitted to the server under the `region` key.\n\nActually, that's not quite true. Constituent inputs _are_ given a `name`, but it's added to\nthe input as the `data-name` attribute as a way to identify constituent inputs, and will not\nbe sent to the server.",
|
5165
5211
|
"accessibility_docs": null,
|
5166
5212
|
"is_form_component": true,
|
5167
|
-
"is_published":
|
5213
|
+
"is_published": true,
|
5168
5214
|
"requires_js": true,
|
5169
5215
|
"component": "MultiInput",
|
5170
5216
|
"status": "alpha",
|
@@ -6373,7 +6419,7 @@
|
|
6373
6419
|
"description": "Radio buttons represent one of a set of options and are rendered as `<input type=\"radio\">` in HTML.\n**NOTE**: You probably want to use the {{#link_to_component}}Primer::Alpha::RadioButtonGroup{{/link_to_component}}\ncomponent instead, as it allows rendering a group of options.",
|
6374
6420
|
"accessibility_docs": null,
|
6375
6421
|
"is_form_component": true,
|
6376
|
-
"is_published":
|
6422
|
+
"is_published": true,
|
6377
6423
|
"requires_js": false,
|
6378
6424
|
"component": "RadioButton",
|
6379
6425
|
"status": "alpha",
|
@@ -6586,7 +6632,7 @@
|
|
6586
6632
|
"description": "A group of mutually exclusive radio buttons.",
|
6587
6633
|
"accessibility_docs": null,
|
6588
6634
|
"is_form_component": true,
|
6589
|
-
"is_published":
|
6635
|
+
"is_published": true,
|
6590
6636
|
"requires_js": false,
|
6591
6637
|
"component": "RadioButtonGroup",
|
6592
6638
|
"status": "alpha",
|
@@ -7099,7 +7145,7 @@
|
|
7099
7145
|
"description": "Select lists are single-line text inputs rendered as `<select>` tags in HTML.",
|
7100
7146
|
"accessibility_docs": null,
|
7101
7147
|
"is_form_component": true,
|
7102
|
-
"is_published":
|
7148
|
+
"is_published": true,
|
7103
7149
|
"requires_js": false,
|
7104
7150
|
"component": "Select",
|
7105
7151
|
"status": "alpha",
|
@@ -8297,7 +8343,7 @@
|
|
8297
8343
|
"description": "A submit button input rendered using the HTML `<button type=\"submit\">` tag.\n\nThis component wraps the Primer button component and supports the same slots and arguments.",
|
8298
8344
|
"accessibility_docs": null,
|
8299
8345
|
"is_form_component": true,
|
8300
|
-
"is_published":
|
8346
|
+
"is_published": true,
|
8301
8347
|
"requires_js": false,
|
8302
8348
|
"component": "SubmitButton",
|
8303
8349
|
"status": "alpha",
|
@@ -8670,7 +8716,7 @@
|
|
8670
8716
|
"description": "Text areas are multi-line text inputs rendered using the `<textarea>` tag in HTML.",
|
8671
8717
|
"accessibility_docs": null,
|
8672
8718
|
"is_form_component": true,
|
8673
|
-
"is_published":
|
8719
|
+
"is_published": true,
|
8674
8720
|
"requires_js": false,
|
8675
8721
|
"component": "TextArea",
|
8676
8722
|
"status": "alpha",
|
@@ -8929,7 +8975,7 @@
|
|
8929
8975
|
"accessibility_docs": null,
|
8930
8976
|
"is_form_component": true,
|
8931
8977
|
"is_published": true,
|
8932
|
-
"requires_js":
|
8978
|
+
"requires_js": true,
|
8933
8979
|
"component": "TextField",
|
8934
8980
|
"status": "alpha",
|
8935
8981
|
"a11y_reviewed": false,
|
@@ -13358,9 +13404,26 @@
|
|
13358
13404
|
"slots": [
|
13359
13405
|
{
|
13360
13406
|
"name": "summary",
|
13361
|
-
"description":
|
13407
|
+
"description": "Use the Summary slot as the target for toggling the Details content open/closed.",
|
13362
13408
|
"parameters": [
|
13363
|
-
|
13409
|
+
{
|
13410
|
+
"name": "button",
|
13411
|
+
"type": "Boolean",
|
13412
|
+
"default": "N/A",
|
13413
|
+
"description": "Whether or not to render the summary element as a button."
|
13414
|
+
},
|
13415
|
+
{
|
13416
|
+
"name": "aria_label_open",
|
13417
|
+
"type": "String",
|
13418
|
+
"default": "N/A",
|
13419
|
+
"description": "Defaults to \"Collapse\". Value to announce when details element is open."
|
13420
|
+
},
|
13421
|
+
{
|
13422
|
+
"name": "aria_label_closed",
|
13423
|
+
"type": "String",
|
13424
|
+
"default": "N/A",
|
13425
|
+
"description": "Defaults to \"Expand\". Value to announce when details element is closed."
|
13426
|
+
}
|
13364
13427
|
]
|
13365
13428
|
},
|
13366
13429
|
{
|
@@ -13401,6 +13464,26 @@
|
|
13401
13464
|
],
|
13402
13465
|
"return_types": [
|
13403
13466
|
|
13467
|
+
]
|
13468
|
+
},
|
13469
|
+
{
|
13470
|
+
"name": "open",
|
13471
|
+
"description": "Returns the value of attribute open.",
|
13472
|
+
"parameters": [
|
13473
|
+
|
13474
|
+
],
|
13475
|
+
"return_types": [
|
13476
|
+
|
13477
|
+
]
|
13478
|
+
},
|
13479
|
+
{
|
13480
|
+
"name": "open?",
|
13481
|
+
"description": "Returns the value of attribute open.",
|
13482
|
+
"parameters": [
|
13483
|
+
|
13484
|
+
],
|
13485
|
+
"return_types": [
|
13486
|
+
|
13404
13487
|
]
|
13405
13488
|
}
|
13406
13489
|
],
|
@@ -13456,6 +13539,19 @@
|
|
13456
13539
|
"color-contrast"
|
13457
13540
|
]
|
13458
13541
|
}
|
13542
|
+
},
|
13543
|
+
{
|
13544
|
+
"preview_path": "primer/beta/details/open",
|
13545
|
+
"name": "open",
|
13546
|
+
"snapshot": "false",
|
13547
|
+
"skip_rules": {
|
13548
|
+
"wont_fix": [
|
13549
|
+
"region"
|
13550
|
+
],
|
13551
|
+
"will_fix": [
|
13552
|
+
"color-contrast"
|
13553
|
+
]
|
13554
|
+
}
|
13459
13555
|
}
|
13460
13556
|
],
|
13461
13557
|
"subcomponents": [
|
@@ -14661,7 +14757,7 @@
|
|
14661
14757
|
},
|
14662
14758
|
{
|
14663
14759
|
"name": "render_outer_list?",
|
14664
|
-
"description": "Lists that contain top-level items (i.e. items outside of a group) should be wrapped in a
|
14760
|
+
"description": "Lists that contain top-level items (i.e. items outside of a group) should be wrapped in a `<ul>`",
|
14665
14761
|
"parameters": [
|
14666
14762
|
|
14667
14763
|
],
|
package/static/previews.json
CHANGED
@@ -3118,6 +3118,19 @@
|
|
3118
3118
|
"color-contrast"
|
3119
3119
|
]
|
3120
3120
|
}
|
3121
|
+
},
|
3122
|
+
{
|
3123
|
+
"preview_path": "primer/beta/details/open",
|
3124
|
+
"name": "open",
|
3125
|
+
"snapshot": "false",
|
3126
|
+
"skip_rules": {
|
3127
|
+
"wont_fix": [
|
3128
|
+
"region"
|
3129
|
+
],
|
3130
|
+
"will_fix": [
|
3131
|
+
"color-contrast"
|
3132
|
+
]
|
3133
|
+
}
|
3121
3134
|
}
|
3122
3135
|
]
|
3123
3136
|
},
|