@primer/view-components 0.37.0-rc.0bf6cc7a → 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/package.json +1 -1
- package/static/arguments.json +6 -0
- package/static/constants.json +4 -0
- package/static/info_arch.json +49 -14
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@primer/view-components",
|
3
|
-
"version": "0.37.0-rc.
|
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",
|
@@ -4206,7 +4206,7 @@
|
|
4206
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.",
|
4207
4207
|
"accessibility_docs": null,
|
4208
4208
|
"is_form_component": true,
|
4209
|
-
"is_published":
|
4209
|
+
"is_published": true,
|
4210
4210
|
"requires_js": false,
|
4211
4211
|
"component": "FormButton",
|
4212
4212
|
"status": "alpha",
|
@@ -4279,9 +4279,9 @@
|
|
4279
4279
|
},
|
4280
4280
|
{
|
4281
4281
|
"fully_qualified_name": "Primer::Alpha::FormControl",
|
4282
|
-
"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.",
|
4283
|
-
"accessibility_docs":
|
4284
|
-
"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,
|
4285
4285
|
"is_published": true,
|
4286
4286
|
"requires_js": false,
|
4287
4287
|
"component": "FormControl",
|
@@ -4327,6 +4327,12 @@
|
|
4327
4327
|
"default": "`false`",
|
4328
4328
|
"description": "When set to `true`, the form control will take up all the horizontal space allowed by its container."
|
4329
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
|
+
},
|
4330
4336
|
{
|
4331
4337
|
"name": "system_arguments",
|
4332
4338
|
"type": "Hash",
|
@@ -4351,7 +4357,36 @@
|
|
4351
4357
|
}
|
4352
4358
|
],
|
4353
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": [
|
4354
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
|
+
}
|
4355
4390
|
],
|
4356
4391
|
"previews": [
|
4357
4392
|
{
|
@@ -5175,7 +5210,7 @@
|
|
5175
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.",
|
5176
5211
|
"accessibility_docs": null,
|
5177
5212
|
"is_form_component": true,
|
5178
|
-
"is_published":
|
5213
|
+
"is_published": true,
|
5179
5214
|
"requires_js": true,
|
5180
5215
|
"component": "MultiInput",
|
5181
5216
|
"status": "alpha",
|
@@ -6384,7 +6419,7 @@
|
|
6384
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.",
|
6385
6420
|
"accessibility_docs": null,
|
6386
6421
|
"is_form_component": true,
|
6387
|
-
"is_published":
|
6422
|
+
"is_published": true,
|
6388
6423
|
"requires_js": false,
|
6389
6424
|
"component": "RadioButton",
|
6390
6425
|
"status": "alpha",
|
@@ -6597,7 +6632,7 @@
|
|
6597
6632
|
"description": "A group of mutually exclusive radio buttons.",
|
6598
6633
|
"accessibility_docs": null,
|
6599
6634
|
"is_form_component": true,
|
6600
|
-
"is_published":
|
6635
|
+
"is_published": true,
|
6601
6636
|
"requires_js": false,
|
6602
6637
|
"component": "RadioButtonGroup",
|
6603
6638
|
"status": "alpha",
|
@@ -7110,7 +7145,7 @@
|
|
7110
7145
|
"description": "Select lists are single-line text inputs rendered as `<select>` tags in HTML.",
|
7111
7146
|
"accessibility_docs": null,
|
7112
7147
|
"is_form_component": true,
|
7113
|
-
"is_published":
|
7148
|
+
"is_published": true,
|
7114
7149
|
"requires_js": false,
|
7115
7150
|
"component": "Select",
|
7116
7151
|
"status": "alpha",
|
@@ -8308,7 +8343,7 @@
|
|
8308
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.",
|
8309
8344
|
"accessibility_docs": null,
|
8310
8345
|
"is_form_component": true,
|
8311
|
-
"is_published":
|
8346
|
+
"is_published": true,
|
8312
8347
|
"requires_js": false,
|
8313
8348
|
"component": "SubmitButton",
|
8314
8349
|
"status": "alpha",
|
@@ -8681,7 +8716,7 @@
|
|
8681
8716
|
"description": "Text areas are multi-line text inputs rendered using the `<textarea>` tag in HTML.",
|
8682
8717
|
"accessibility_docs": null,
|
8683
8718
|
"is_form_component": true,
|
8684
|
-
"is_published":
|
8719
|
+
"is_published": true,
|
8685
8720
|
"requires_js": false,
|
8686
8721
|
"component": "TextArea",
|
8687
8722
|
"status": "alpha",
|
@@ -8940,7 +8975,7 @@
|
|
8940
8975
|
"accessibility_docs": null,
|
8941
8976
|
"is_form_component": true,
|
8942
8977
|
"is_published": true,
|
8943
|
-
"requires_js":
|
8978
|
+
"requires_js": true,
|
8944
8979
|
"component": "TextField",
|
8945
8980
|
"status": "alpha",
|
8946
8981
|
"a11y_reviewed": false,
|
@@ -14722,7 +14757,7 @@
|
|
14722
14757
|
},
|
14723
14758
|
{
|
14724
14759
|
"name": "render_outer_list?",
|
14725
|
-
"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>`",
|
14726
14761
|
"parameters": [
|
14727
14762
|
|
14728
14763
|
],
|