@primer/view-components 0.37.0-rc.8d1a0580 → 0.37.0-rc.a6eb8588

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@primer/view-components",
3
- "version": "0.37.0-rc.8d1a0580",
3
+ "version": "0.37.0-rc.a6eb8588",
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",
@@ -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",
@@ -4279,8 +4279,8 @@
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": null,
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
4284
  "is_form_component": false,
4285
4285
  "is_published": true,
4286
4286
  "requires_js": false,
@@ -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": [
4354
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": [
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
  {