primer_view_components 0.12.0 → 0.13.1

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.
Files changed (40) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +45 -0
  3. data/app/assets/javascripts/primer_view_components.js +1 -1
  4. data/app/assets/javascripts/primer_view_components.js.map +1 -1
  5. data/app/assets/styles/primer_view_components.css +1 -1
  6. data/app/assets/styles/primer_view_components.css.map +1 -1
  7. data/app/components/primer/alpha/action_bar_element.js +10 -3
  8. data/app/components/primer/alpha/action_bar_element.ts +10 -1
  9. data/app/components/primer/alpha/action_list/form_wrapper.html.erb +4 -2
  10. data/app/components/primer/alpha/action_list/form_wrapper.rb +20 -9
  11. data/app/components/primer/alpha/action_menu/action_menu_element.js +18 -12
  12. data/app/components/primer/alpha/action_menu/action_menu_element.ts +24 -12
  13. data/app/components/primer/alpha/action_menu.rb +120 -3
  14. data/app/components/primer/alpha/modal_dialog.js +10 -13
  15. data/app/components/primer/alpha/modal_dialog.ts +10 -13
  16. data/app/components/primer/alpha/segmented_control.css +1 -1
  17. data/app/components/primer/alpha/segmented_control.css.json +14 -13
  18. data/app/components/primer/alpha/segmented_control.css.map +1 -1
  19. data/app/components/primer/alpha/segmented_control.pcss +75 -68
  20. data/app/components/primer/alpha/segmented_control.rb +10 -0
  21. data/app/components/primer/alpha/text_field.css +1 -1
  22. data/app/components/primer/alpha/tool_tip.js +17 -26
  23. data/app/components/primer/alpha/tool_tip.ts +17 -26
  24. data/lib/primer/static/generate_info_arch.rb +86 -5
  25. data/lib/primer/view_components/version.rb +2 -2
  26. data/previews/primer/alpha/action_menu_preview/single_select_form_items.html.erb +31 -0
  27. data/previews/primer/alpha/action_menu_preview/with_actions.html.erb +1 -1
  28. data/previews/primer/alpha/action_menu_preview.rb +8 -2
  29. data/previews/primer/alpha/check_box_preview.rb +0 -2
  30. data/previews/primer/alpha/dialog_preview/autofocus_element.html.erb +8 -0
  31. data/previews/primer/alpha/dialog_preview/with_text_input.html.erb +2 -1
  32. data/previews/primer/alpha/dialog_preview.rb +5 -0
  33. data/previews/primer/alpha/radio_button_preview.rb +0 -2
  34. data/previews/primer/alpha/tooltip_preview.rb +2 -2
  35. data/previews/primer/beta/button_group_preview.rb +6 -6
  36. data/static/classes.json +12 -0
  37. data/static/constants.json +12 -1
  38. data/static/info_arch.json +28 -2
  39. data/static/previews.json +26 -0
  40. metadata +4 -310
@@ -3,6 +3,7 @@
3
3
  # :nocov:
4
4
 
5
5
  require "json"
6
+ require "kramdown"
6
7
 
7
8
  module Primer
8
9
  module Static
@@ -35,7 +36,7 @@ module Primer
35
36
  # rubocop:disable Style/IfUnlessModifier
36
37
  "description" =>
37
38
  if slot_method.base_docstring.to_s.present?
38
- view_context.render(inline: slot_method.base_docstring)
39
+ render_erb_ignoring_markdown_code_fences(slot_method.base_docstring)
39
40
  end,
40
41
  # rubocop:enable Style/IfUnlessModifier
41
42
  "parameters" => serialize_params(param_tags, component)
@@ -57,7 +58,7 @@ module Primer
57
58
 
58
59
  {
59
60
  "name" => mtd.name,
60
- "description" => view_context.render(inline: mtd.base_docstring),
61
+ "description" => render_erb_ignoring_markdown_code_fences(mtd.base_docstring),
61
62
  "parameters" => serialize_params(param_tags, component)
62
63
  }
63
64
  end
@@ -66,7 +67,7 @@ module Primer
66
67
  if component == Primer::BaseComponent
67
68
  docs.base_docstring
68
69
  else
69
- view_context.render(inline: docs.base_docstring)
70
+ render_erb_ignoring_markdown_code_fences(docs.base_docstring)
70
71
  end
71
72
 
72
73
  memo[component] = {
@@ -119,7 +120,7 @@ module Primer
119
120
  component: "BaseComponent",
120
121
  fully_qualified_name: "Primer::BaseComponent",
121
122
  description_md: docs.base_docstring,
122
- args_md: view_context.render(inline: docs.constructor.base_docstring)
123
+ args_md: render_erb_ignoring_markdown_code_fences(docs.constructor.base_docstring)
123
124
  }
124
125
  end
125
126
 
@@ -131,7 +132,7 @@ module Primer
131
132
  "name" => tag.name,
132
133
  "type" => tag.types&.join(", ") || "",
133
134
  "default" => default_value,
134
- "description" => view_context.render(inline: tag.text.squish)
135
+ "description" => render_erb_ignoring_markdown_code_fences(tag.text.squish)
135
136
  }
136
137
  end
137
138
  end
@@ -151,6 +152,86 @@ module Primer
151
152
  end
152
153
  end
153
154
 
155
+ # Renders ERB code to a string, ignoring markdown code fences. For example, consider the
156
+ # following ERB code inside a markdown document:
157
+ #
158
+ # ### Heading
159
+ # ```erb
160
+ # <%= render(SomeComponent.new) %>
161
+ # ```
162
+ #
163
+ # <%= some_func(a, b) %>
164
+ #
165
+ # The ERB renderer does not understand that the fenced code, i.e. the part inside the triple
166
+ # backticks, should not be rendered. It sees the ERB tags both inside and outside the fence
167
+ # and renders them both.
168
+ #
169
+ # This method renders ERB tags in a markdown string, ignoring any fenced code blocks, so as
170
+ # to prevent rendering fenced ERB code.
171
+ #
172
+ def render_erb_ignoring_markdown_code_fences(markdown_str)
173
+ return view_context.render(inline: markdown_str) unless markdown_str.include?("```")
174
+
175
+ # identify all fenced code blocks in markdown string
176
+ code_ranges = find_fenced_code_ranges_in(markdown_str)
177
+
178
+ # replace code fences with placeholders
179
+ de_fenced_markdown_str = markdown_str.dup.tap do |memo|
180
+ code_ranges.reverse_each.with_index do |code_range, idx|
181
+ memo[code_range] = "<!--codefence#{idx}-->"
182
+ end
183
+ end
184
+
185
+ # Render ERB tags. The only ones left will explicitly exist _outside_ markdown code fences.
186
+ rendered_str = view_context.render(inline: de_fenced_markdown_str)
187
+
188
+ # replace placeholders with original code fences
189
+ code_ranges.reverse_each.with_index do |code_range, idx|
190
+ rendered_str.sub!("<!--codefence#{idx}-->", markdown_str[code_range])
191
+ end
192
+
193
+ rendered_str
194
+ end
195
+
196
+ def find_fenced_code_ranges_in(str)
197
+ doc = Kramdown::Document.new(str)
198
+ line_starts = find_line_starts_in(str)
199
+
200
+ [].tap do |code_ranges|
201
+ each_codespan_in(doc.root) do |node|
202
+ options = node.options
203
+ delimiter = options[:codespan_delimiter]
204
+ next unless delimiter.start_with?("```")
205
+
206
+ start_pos = line_starts[options[:location]]
207
+ end_pos = start_pos + node.value.size + delimiter.size
208
+ end_pos = str.index("```", end_pos) + 3
209
+
210
+ code_ranges << (start_pos...end_pos)
211
+ end
212
+ end
213
+ end
214
+
215
+ def find_line_starts_in(str)
216
+ line_counter = 2
217
+
218
+ { 1 => 0 }.tap do |memo|
219
+ str.scan(/\r?\n/) do
220
+ memo[line_counter] = Regexp.last_match.end(0)
221
+ line_counter += 1
222
+ end
223
+ end
224
+ end
225
+
226
+ def each_codespan_in(node, &block)
227
+ return unless node.respond_to?(:children)
228
+
229
+ node.children.each do |child|
230
+ yield child if child.type == :codespan
231
+ each_codespan_in(child, &block)
232
+ end
233
+ end
234
+
154
235
  def registry
155
236
  @registry ||= Primer::Yard::Registry.make
156
237
  end
@@ -5,8 +5,8 @@ module Primer
5
5
  module ViewComponents
6
6
  module VERSION
7
7
  MAJOR = 0
8
- MINOR = 12
9
- PATCH = 0
8
+ MINOR = 13
9
+ PATCH = 1
10
10
 
11
11
  STRING = [MAJOR, MINOR, PATCH].join(".")
12
12
  end
@@ -0,0 +1,31 @@
1
+ <%= render(Primer::Alpha::ActionMenu.new(select_variant: :single)) do |menu| %>
2
+ <% menu.with_show_button { "Group By" } %>
3
+ <% menu.with_item(
4
+ label: "Repository",
5
+ href: action_menu_form_action_path(format: route_format),
6
+ form_arguments: {
7
+ method: :post,
8
+ inputs: [{
9
+ name: "query",
10
+ value: "query"
11
+ }, {
12
+ name: "foo", # use "foo" here because that's what the controller expects
13
+ value: "group-by-repository",
14
+ }],
15
+ }
16
+ ) %>
17
+ <% menu.with_item(
18
+ label: "Date",
19
+ href: action_menu_form_action_path(format: route_format),
20
+ form_arguments: {
21
+ method: :post,
22
+ inputs: [{
23
+ name: "query",
24
+ value: "query"
25
+ }, {
26
+ name: "foo", # use "foo" here because that's what the controller expects
27
+ value: "sort-by-date"
28
+ }]
29
+ }
30
+ ) %>
31
+ <% end %>
@@ -13,7 +13,7 @@
13
13
  <% component.with_item(label: "Copy text", tag: :"clipboard-copy", content_arguments: { value: "Text to copy" }, disabled: disable_items) %>
14
14
  <% component.with_item(
15
15
  label: "Submit form",
16
- href: action_menu_form_action_path,
16
+ href: action_menu_form_action_path(format: route_format),
17
17
  form_arguments: {
18
18
  name: "foo", value: "bar", method: :post
19
19
  },
@@ -217,8 +217,8 @@ module Primer
217
217
  # @label With actions
218
218
  #
219
219
  # @param disable_items toggle
220
- def with_actions(disable_items: false)
221
- render_with_template(locals: { disable_items: disable_items })
220
+ def with_actions(disable_items: false, route_format: :html)
221
+ render_with_template(locals: { disable_items: disable_items, route_format: route_format })
222
222
  end
223
223
 
224
224
  # @label Single select form
@@ -227,6 +227,12 @@ module Primer
227
227
  render_with_template(locals: { route_format: route_format })
228
228
  end
229
229
 
230
+ # @label Single select form items
231
+ #
232
+ def single_select_form_items(route_format: :html)
233
+ render_with_template(locals: { route_format: route_format })
234
+ end
235
+
230
236
  # @label Multiple select form
231
237
  #
232
238
  def multiple_select_form(route_format: :html)
@@ -7,7 +7,6 @@ module Primer
7
7
  # @label Playground
8
8
  #
9
9
  # @param name text
10
- # @param id text
11
10
  # @param value text
12
11
  # @param label text
13
12
  # @param caption text
@@ -15,7 +14,6 @@ module Primer
15
14
  # @param disabled toggle
16
15
  def playground(
17
16
  name: "my-check-box",
18
- id: nil,
19
17
  value: "picard",
20
18
  label: "Jean-Luc Picard",
21
19
  caption: "Make it so",
@@ -0,0 +1,8 @@
1
+ <%= render(Primer::Alpha::Dialog.new(id: "dialog-one", title: "Dialog")) do |d| %>
2
+ <% d.with_show_button { "Show Dialog" } %>
3
+ <% d.with_body do %>
4
+ <form>
5
+ <input type="text" placeholder="This element is focused on open" autofocus>
6
+ </form>
7
+ <% end %>
8
+ <% end %>
@@ -4,7 +4,8 @@
4
4
  <p>Dialog One!</p>
5
5
 
6
6
  <form>
7
- <input type="text" value="Some text goes in here">
7
+ <label for="dialog-text-input-example">Example input</label>
8
+ <input id="dialog-text-input-example" type="text" value="Some text goes in here">
8
9
  </form>
9
10
  <% end %>
10
11
  <% end %>
@@ -166,6 +166,11 @@ module Primer
166
166
  show_divider: show_divider
167
167
  })
168
168
  end
169
+
170
+ # @label Autofocus element with autofocus attribute
171
+ def autofocus_element
172
+ render_with_template(locals: {})
173
+ end
169
174
  end
170
175
  end
171
176
  end
@@ -7,7 +7,6 @@ module Primer
7
7
  # @label Playground
8
8
  #
9
9
  # @param name text
10
- # @param id text
11
10
  # @param value text
12
11
  # @param label text
13
12
  # @param caption text
@@ -15,7 +14,6 @@ module Primer
15
14
  # @param disabled toggle
16
15
  def playground(
17
16
  name: "my-radio-button",
18
- id: nil,
19
17
  value: "bsg",
20
18
  label: "Battlestar Galactica",
21
19
  caption: "A pretty good show",
@@ -78,14 +78,14 @@ module Primer
78
78
  # @!endgroup
79
79
 
80
80
  # @label Tooltip inside Primer::Alpha::Overlay
81
- def tooltip_inside_primer_overlay(direction: :s, tooltip_text: "You can press a button")
81
+ def tooltip_inside_primer_overlay
82
82
  render_with_template(
83
83
  locals: {}
84
84
  )
85
85
  end
86
86
 
87
87
  # @label Tooltip with button moving focus to input
88
- def tooltip_with_dialog_moving_focus_to_input()
88
+ def tooltip_with_dialog_moving_focus_to_input
89
89
  render_with_template(locals: {})
90
90
  end
91
91
  end
@@ -55,16 +55,16 @@ module Primer
55
55
  # @snapshot
56
56
  def all_tags
57
57
  render(Primer::Beta::ButtonGroup.new) do |component|
58
- component.with_button(id: "button-1", tag: :button) do |component|
59
- component.with_tooltip(text: "Button Tooltip")
58
+ component.with_button(id: "button-1", tag: :button) do |button|
59
+ button.with_tooltip(text: "Button Tooltip")
60
60
  "Button 1"
61
61
  end
62
- component.with_button(id: "button-2", tag: :a) do |component|
63
- component.with_tooltip(text: "Button Tooltip")
62
+ component.with_button(id: "button-2", tag: :a) do |button|
63
+ button.with_tooltip(text: "Button Tooltip")
64
64
  "Button 2"
65
65
  end
66
- component.with_button(id: "button-3", tag: :summary) do |component|
67
- component.with_tooltip(text: "Button Tooltip")
66
+ component.with_button(id: "button-3", tag: :summary) do |button|
67
+ button.with_tooltip(text: "Button Tooltip")
68
68
  "Button 3"
69
69
  end
70
70
  end
data/static/classes.json CHANGED
@@ -477,6 +477,18 @@
477
477
  "SegmentedControl--fullWidth": [
478
478
  "Primer::Alpha::SegmentedControl"
479
479
  ],
480
+ "SegmentedControl--iconOnly": [
481
+ "Primer::Alpha::SegmentedControl"
482
+ ],
483
+ "SegmentedControl--large": [
484
+ "Primer::Alpha::SegmentedControl"
485
+ ],
486
+ "SegmentedControl--medium": [
487
+ "Primer::Alpha::SegmentedControl"
488
+ ],
489
+ "SegmentedControl--small": [
490
+ "Primer::Alpha::SegmentedControl"
491
+ ],
480
492
  "SegmentedControl-item": [
481
493
  "Primer::Alpha::SegmentedControl"
482
494
  ],
@@ -544,9 +544,20 @@
544
544
  "Primer::Alpha::RadioButtonGroup": {
545
545
  },
546
546
  "Primer::Alpha::SegmentedControl": {
547
+ "DEFAULT_SIZE": "medium",
547
548
  "FULL_WIDTH_DEFAULT": false,
548
549
  "HIDE_LABELS_DEFAULT": false,
549
- "Item": "Primer::Alpha::SegmentedControl::Item"
550
+ "Item": "Primer::Alpha::SegmentedControl::Item",
551
+ "SIZE_MAPPINGS": {
552
+ "small": "SegmentedControl--small",
553
+ "medium": "SegmentedControl--medium",
554
+ "large": "SegmentedControl--large"
555
+ },
556
+ "SIZE_OPTIONS": [
557
+ "small",
558
+ "medium",
559
+ "large"
560
+ ]
550
561
  },
551
562
  "Primer::Alpha::SegmentedControl::Item": {
552
563
  },
@@ -1128,8 +1128,8 @@
1128
1128
  },
1129
1129
  {
1130
1130
  "fully_qualified_name": "Primer::Alpha::ActionMenu",
1131
- "description": "ActionMenu is used for actions, navigation, to display secondary options, or single/multi select lists. They appear when users interact with buttons, actions, or other controls.\n\nThe only allowed elements for the `Item` components are: `:a`, `:button`, and `:clipboard-copy`. The default is `:button`.",
1132
- "accessibility_docs": "The action for the menu item needs to be on the element with `role=\"menuitem\"`. Semantics are removed for everything nested inside of it. When a menu item is selected, the menu will close immediately.\n\nAdditional information around the keyboard functionality and implementation can be found on the [WAI-ARIA Authoring Practices](https://www.w3.org/TR/wai-aria-practices-1.2/#menu).",
1131
+ "description": "ActionMenu is used for actions, navigation, to display secondary options, or single/multi select lists. They appear when\nusers interact with buttons, actions, or other controls.\n\nThe only allowed elements for the `Item` components are: `:a`, `:button`, and `:clipboard-copy`. The default is `:button`.\n\n### Select variants\n\nWhile `ActionMenu`s default to a list of buttons that can link to other pages, copy text to the clipboard, etc, they also support\n`single` and `multiple` select variants. The single select variant allows a single item to be \"selected\" (i.e. marked \"active\")\nwhen clicked, which will cause a check mark to appear to the left of the item text. When the `multiple` select variant is chosen,\nmultiple items may be selected and check marks will appear next to each selected item.\n\nUse the `select_variant:` option to control which variant the `ActionMenu` uses. For more information, see the documentation on\nsupported arguments below.\n\n### Dynamic labels\n\nWhen using the `single` select variant, an optional label indicating the selected item can be displayed inside the menu button.\nDynamic labels can also be prefixed with custom text.\n\nPass `dynamic_label: true` to enable dynamic label behavior, and pass `dynamic_label_prefix: \"<string>\"` to set a custom prefix.\nFor more information, see the documentation on supported arguments below.\n\n### `ActionMenu`s as form inputs\n\nWhen using either the `single` or `multiple` select variants, `ActionMenu`s can be used as form inputs. They behave very\nsimilarly to how HTML `<select>` boxes behave, and play nicely with Rails' built-in form mechanisms. Pass arguments via the\n`form_arguments:` argument, including the Rails form builder object and the name of the field:\n\n```erb\n<% form_with(url: update_merge_strategy_path) do |f| %>\n <%= render(Primer::Alpha::ActionMenu.new(form_arguments: { builder: f, name: \"merge_strategy\" })) do |menu| %>\n <% menu.with_item(label: \"Fast forward\", data: { value: \"fast_forward\" }) %>\n <% menu.with_item(label: \"Recursive\", data: { value: \"recursive\" }) %>\n <% menu.with_item(label: \"Ours\", data: { value: \"ours\" }) %>\n <% menu.with_item(label: \"Theirs\", data: { value: \"theirs\" }) %>\n <% end %>\n<% end %>\n```\n\nThe value of the `data: { value: ... }` argument is sent to the server on submit, keyed using the name provided above\n(eg. `\"merge_strategy\"`). If no value is provided for an item, the value of that item is the item's label. Here's the\ncorresponding `MergeStrategyController` that might be written to handle the form above:\n\n```ruby\nclass MergeStrategyController < ApplicationController\n def update\n puts \"You chose #{merge_strategy_params[:merge_strategy]}\"\n end\n\n private\n\n def merge_strategy_params\n params.permit(:merge_strategy)\n end\nend\n```\n\n### `ActionMenu` items that submit forms\n\nWhereas `ActionMenu` items normally permit navigation via `<a>` tags which make HTTP `get` requests, `ActionMenu` items\nalso permit navigation via `POST` requests. To enable this behavior, include the `href:` argument as normal, but also pass\nthe `form_arguments:` argument to the appropriate item:\n\n```erb\n<%= render(Primer::Alpha::ActionMenu.new) do |menu| %>\n <% menu.with_item(\n label: \"Repository\",\n href: update_repo_grouping_path,\n form_arguments: {\n method: :post,\n name: \"group_by\",\n value: \"repository\"\n }\n ) %>\n<% end %>\n```\n\nMake sure to specify `method: :post`, as the default is `:get`. When clicked, the list item will submit a POST request to\nthe URL passed in the `href:` argument, including a parameter named `\"group_by\"` with a value of `\"repository\"`. If no value\nis given, the name, eg. `\"group_by\"`, will be used as the value.\n\nIt is possible to include multiple fields on submit. Instead of passing the `name:` and `value:` arguments, pass an array via\nthe `inputs:` argument:\n\n```erb\n<%= render(Primer::Alpha::ActionMenu.new) do |menu| %>\n <% menu.with_show_button { \"Group By\" } %>\n <% menu.with_item(\n label: \"Repository\",\n href: update_repo_grouping_path,\n form_arguments: {\n method: :post,\n inputs: [{\n name: \"group_by\",\n value: \"repository\"\n }, {\n name: \"some_other_field\",\n value: \"some value\",\n }],\n }\n ) %>\n<% end %>\n```\n\n### Form arguments\n\nThe following table summarizes the arguments allowed in the `form_arguments:` hash mentioned above.\n\n|Name |Type |Default|Description|\n|:----------------|:-------------|:------|:----------|\n|`method` |`Symbol` |`:get` |The HTTP request method to use to submit the form. One of `:get`, `:post`, `:patch`, `:put`, `:delete`, or `:head`|\n|`name` |`String` |`nil` |The name of the field that will be sent to the server on submit.|\n|`value` |`String` |`nil` |The value of the field that will be sent to the server on submit.|\n|`input_arguments`|`Hash` |`{}` |Additional key/value pairs to emit as HTML attributes on the `<input type=\"hidden\">` element.|\n|`inputs` |`Array<Hash>` |`[]` |An array of hashes representing HTML `<input type=\"hidden\">` elements. Must contain at least `name:` and `value:` keys. If additional key/value pairs are provided, they are emitted as HTML attributes on the `<input>` element. This argument supercedes the `name:`, `value:`, and `:input_arguments` arguments listed above.|\n\nThe elements of the `inputs:` array will be emitted as HTML `<input type=\"hidden\">` elements.",
1132
+ "accessibility_docs": "The action for the menu item needs to be on the element with `role=\"menuitem\"`. Semantics are removed for everything\nnested inside of it. When a menu item is selected, the menu will close immediately.\n\nAdditional information around the keyboard functionality and implementation can be found on the\n[WAI-ARIA Authoring Practices](https://www.w3.org/TR/wai-aria-practices-1.2/#menu).",
1133
1133
  "is_form_component": false,
1134
1134
  "is_published": true,
1135
1135
  "requires_js": true,
@@ -1530,6 +1530,19 @@
1530
1530
  ]
1531
1531
  }
1532
1532
  },
1533
+ {
1534
+ "preview_path": "primer/alpha/action_menu/single_select_form_items",
1535
+ "name": "single_select_form_items",
1536
+ "snapshot": "false",
1537
+ "skip_rules": {
1538
+ "wont_fix": [
1539
+ "region"
1540
+ ],
1541
+ "will_fix": [
1542
+ "color-contrast"
1543
+ ]
1544
+ }
1545
+ },
1533
1546
  {
1534
1547
  "preview_path": "primer/alpha/action_menu/multiple_select_form",
1535
1548
  "name": "multiple_select_form",
@@ -3106,6 +3119,19 @@
3106
3119
  "color-contrast"
3107
3120
  ]
3108
3121
  }
3122
+ },
3123
+ {
3124
+ "preview_path": "primer/alpha/dialog/autofocus_element",
3125
+ "name": "autofocus_element",
3126
+ "snapshot": "false",
3127
+ "skip_rules": {
3128
+ "wont_fix": [
3129
+ "region"
3130
+ ],
3131
+ "will_fix": [
3132
+ "color-contrast"
3133
+ ]
3134
+ }
3109
3135
  }
3110
3136
  ],
3111
3137
  "subcomponents": [
data/static/previews.json CHANGED
@@ -580,6 +580,19 @@
580
580
  ]
581
581
  }
582
582
  },
583
+ {
584
+ "preview_path": "primer/alpha/action_menu/single_select_form_items",
585
+ "name": "single_select_form_items",
586
+ "snapshot": "false",
587
+ "skip_rules": {
588
+ "wont_fix": [
589
+ "region"
590
+ ],
591
+ "will_fix": [
592
+ "color-contrast"
593
+ ]
594
+ }
595
+ },
583
596
  {
584
597
  "preview_path": "primer/alpha/action_menu/multiple_select_form",
585
598
  "name": "multiple_select_form",
@@ -2936,6 +2949,19 @@
2936
2949
  "color-contrast"
2937
2950
  ]
2938
2951
  }
2952
+ },
2953
+ {
2954
+ "preview_path": "primer/alpha/dialog/autofocus_element",
2955
+ "name": "autofocus_element",
2956
+ "snapshot": "false",
2957
+ "skip_rules": {
2958
+ "wont_fix": [
2959
+ "region"
2960
+ ],
2961
+ "will_fix": [
2962
+ "color-contrast"
2963
+ ]
2964
+ }
2939
2965
  }
2940
2966
  ]
2941
2967
  },