@primer/view-components 0.37.0-rc.2be0ff86 → 0.37.0-rc.8d1a0580
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 +0 -6
- package/static/info_arch.json +13 -48
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.8d1a0580",
|
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,12 +1253,6 @@
|
|
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
|
-
},
|
1262
1256
|
{
|
1263
1257
|
"name": "system_arguments",
|
1264
1258
|
"type": "Hash",
|
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": false,
|
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": false,
|
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": false,
|
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.\
|
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.\nNOTE: This `FormControl` component is designed for wrapping inputs that aren't supported by the Primer\nforms framework.",
|
4283
|
+
"accessibility_docs": null,
|
4284
|
+
"is_form_component": false,
|
4285
4285
|
"is_published": true,
|
4286
4286
|
"requires_js": false,
|
4287
4287
|
"component": "FormControl",
|
@@ -4327,12 +4327,6 @@
|
|
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
|
-
},
|
4336
4330
|
{
|
4337
4331
|
"name": "system_arguments",
|
4338
4332
|
"type": "Hash",
|
@@ -4357,36 +4351,7 @@
|
|
4357
4351
|
}
|
4358
4352
|
],
|
4359
4353
|
"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": [
|
4374
4354
|
|
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
|
-
}
|
4390
4355
|
],
|
4391
4356
|
"previews": [
|
4392
4357
|
{
|
@@ -5210,7 +5175,7 @@
|
|
5210
5175
|
"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.",
|
5211
5176
|
"accessibility_docs": null,
|
5212
5177
|
"is_form_component": true,
|
5213
|
-
"is_published":
|
5178
|
+
"is_published": false,
|
5214
5179
|
"requires_js": true,
|
5215
5180
|
"component": "MultiInput",
|
5216
5181
|
"status": "alpha",
|
@@ -6419,7 +6384,7 @@
|
|
6419
6384
|
"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.",
|
6420
6385
|
"accessibility_docs": null,
|
6421
6386
|
"is_form_component": true,
|
6422
|
-
"is_published":
|
6387
|
+
"is_published": false,
|
6423
6388
|
"requires_js": false,
|
6424
6389
|
"component": "RadioButton",
|
6425
6390
|
"status": "alpha",
|
@@ -6632,7 +6597,7 @@
|
|
6632
6597
|
"description": "A group of mutually exclusive radio buttons.",
|
6633
6598
|
"accessibility_docs": null,
|
6634
6599
|
"is_form_component": true,
|
6635
|
-
"is_published":
|
6600
|
+
"is_published": false,
|
6636
6601
|
"requires_js": false,
|
6637
6602
|
"component": "RadioButtonGroup",
|
6638
6603
|
"status": "alpha",
|
@@ -7145,7 +7110,7 @@
|
|
7145
7110
|
"description": "Select lists are single-line text inputs rendered as `<select>` tags in HTML.",
|
7146
7111
|
"accessibility_docs": null,
|
7147
7112
|
"is_form_component": true,
|
7148
|
-
"is_published":
|
7113
|
+
"is_published": false,
|
7149
7114
|
"requires_js": false,
|
7150
7115
|
"component": "Select",
|
7151
7116
|
"status": "alpha",
|
@@ -8343,7 +8308,7 @@
|
|
8343
8308
|
"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.",
|
8344
8309
|
"accessibility_docs": null,
|
8345
8310
|
"is_form_component": true,
|
8346
|
-
"is_published":
|
8311
|
+
"is_published": false,
|
8347
8312
|
"requires_js": false,
|
8348
8313
|
"component": "SubmitButton",
|
8349
8314
|
"status": "alpha",
|
@@ -8716,7 +8681,7 @@
|
|
8716
8681
|
"description": "Text areas are multi-line text inputs rendered using the `<textarea>` tag in HTML.",
|
8717
8682
|
"accessibility_docs": null,
|
8718
8683
|
"is_form_component": true,
|
8719
|
-
"is_published":
|
8684
|
+
"is_published": false,
|
8720
8685
|
"requires_js": false,
|
8721
8686
|
"component": "TextArea",
|
8722
8687
|
"status": "alpha",
|
@@ -8975,7 +8940,7 @@
|
|
8975
8940
|
"accessibility_docs": null,
|
8976
8941
|
"is_form_component": true,
|
8977
8942
|
"is_published": true,
|
8978
|
-
"requires_js":
|
8943
|
+
"requires_js": false,
|
8979
8944
|
"component": "TextField",
|
8980
8945
|
"status": "alpha",
|
8981
8946
|
"a11y_reviewed": false,
|