openproject-primer_view_components 0.23.0 → 0.24.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (102) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +33 -0
  3. data/app/assets/javascripts/app/components/primer/alpha/action_list.d.ts +16 -0
  4. data/app/assets/javascripts/app/components/primer/beta/nav_list.d.ts +3 -0
  5. data/app/assets/javascripts/app/components/primer/primer.d.ts +1 -0
  6. data/app/assets/javascripts/primer_view_components.js +1 -1
  7. data/app/assets/javascripts/primer_view_components.js.map +1 -1
  8. data/app/assets/styles/primer_view_components.css +1 -1
  9. data/app/assets/styles/primer_view_components.css.map +1 -1
  10. data/app/components/primer/alpha/action_list/item.rb +19 -6
  11. data/app/components/primer/alpha/action_list.css +1 -1
  12. data/app/components/primer/alpha/action_list.css.json +2 -0
  13. data/app/components/primer/alpha/action_list.css.map +1 -1
  14. data/app/components/primer/alpha/action_list.d.ts +16 -0
  15. data/app/components/primer/alpha/action_list.html.erb +19 -17
  16. data/app/components/primer/alpha/action_list.js +69 -0
  17. data/app/components/primer/alpha/action_list.pcss +8 -0
  18. data/app/components/primer/alpha/action_list.ts +58 -0
  19. data/app/components/primer/alpha/banner.css +1 -1
  20. data/app/components/primer/alpha/banner.css.map +1 -1
  21. data/app/components/primer/alpha/banner.pcss +4 -4
  22. data/app/components/primer/alpha/dialog.css +1 -1
  23. data/app/components/primer/alpha/dialog.css.json +2 -0
  24. data/app/components/primer/alpha/dialog.css.map +1 -1
  25. data/app/components/primer/alpha/dialog.pcss +9 -0
  26. data/app/components/primer/alpha/dropdown.css +1 -1
  27. data/app/components/primer/alpha/dropdown.css.map +1 -1
  28. data/app/components/primer/alpha/dropdown.pcss +1 -1
  29. data/app/components/primer/alpha/text_field.css +1 -1
  30. data/app/components/primer/alpha/text_field.css.json +2 -0
  31. data/app/components/primer/alpha/text_field.css.map +1 -1
  32. data/app/components/primer/alpha/text_field.pcss +10 -0
  33. data/app/components/primer/alpha/toggle_switch.rb +2 -2
  34. data/app/components/primer/beta/auto_complete/auto_complete.html.erb +9 -9
  35. data/app/components/primer/beta/breadcrumbs.css +1 -1
  36. data/app/components/primer/beta/breadcrumbs.css.map +1 -1
  37. data/app/components/primer/beta/breadcrumbs.pcss +3 -1
  38. data/app/components/primer/beta/button.css +1 -1
  39. data/app/components/primer/beta/button.css.json +1 -0
  40. data/app/components/primer/beta/button.css.map +1 -1
  41. data/app/components/primer/beta/button.pcss +4 -0
  42. data/app/components/primer/beta/flash.css +1 -1
  43. data/app/components/primer/beta/flash.css.map +1 -1
  44. data/app/components/primer/beta/flash.pcss +4 -4
  45. data/app/components/primer/beta/nav_list.d.ts +3 -0
  46. data/app/components/primer/beta/nav_list.html.erb +1 -1
  47. data/app/components/primer/beta/nav_list.js +25 -2
  48. data/app/components/primer/beta/nav_list.ts +18 -1
  49. data/app/components/primer/beta/nav_list_group_element.js +4 -1
  50. data/app/components/primer/beta/nav_list_group_element.ts +3 -0
  51. data/app/components/primer/beta/popover.css +1 -1
  52. data/app/components/primer/beta/popover.css.map +1 -1
  53. data/app/components/primer/beta/popover.pcss +3 -0
  54. data/app/components/primer/beta/popover.rb +0 -1
  55. data/app/components/primer/open_project/page_header.css +1 -1
  56. data/app/components/primer/open_project/page_header.css.json +2 -4
  57. data/app/components/primer/open_project/page_header.css.map +1 -1
  58. data/app/components/primer/open_project/page_header.html.erb +15 -3
  59. data/app/components/primer/open_project/page_header.pcss +4 -17
  60. data/app/components/primer/open_project/page_header.rb +17 -28
  61. data/app/components/primer/primer.d.ts +1 -0
  62. data/app/components/primer/primer.js +1 -0
  63. data/app/components/primer/primer.ts +1 -0
  64. data/app/forms/auto_complete_form.rb +18 -0
  65. data/app/forms/select_form.rb +10 -0
  66. data/lib/primer/forms/auto_complete.html.erb +6 -0
  67. data/lib/primer/forms/auto_complete.rb +56 -0
  68. data/lib/primer/forms/builder.rb +19 -0
  69. data/lib/primer/forms/check_box_group.html.erb +4 -4
  70. data/lib/primer/forms/check_box_group.rb +0 -3
  71. data/lib/primer/forms/dsl/auto_complete_input.rb +33 -0
  72. data/lib/primer/forms/dsl/check_box_group_input.rb +8 -0
  73. data/lib/primer/forms/dsl/input.rb +8 -2
  74. data/lib/primer/forms/dsl/input_methods.rb +9 -0
  75. data/lib/primer/forms/dsl/radio_button_group_input.rb +8 -0
  76. data/lib/primer/forms/dsl/select_input.rb +5 -1
  77. data/lib/primer/forms/form_control.rb +1 -2
  78. data/lib/primer/forms/primer_text_field.js +2 -2
  79. data/lib/primer/forms/primer_text_field.ts +2 -2
  80. data/lib/primer/forms/radio_button_group.html.erb +4 -4
  81. data/lib/primer/forms/radio_button_group.rb +0 -3
  82. data/lib/primer/forms/select.html.erb +1 -0
  83. data/lib/primer/forms/select.rb +9 -5
  84. data/lib/primer/view_components/version.rb +1 -1
  85. data/previews/primer/alpha/action_list_preview.rb +42 -0
  86. data/previews/primer/alpha/select_preview.rb +12 -1
  87. data/previews/primer/alpha/text_area_preview.rb +7 -1
  88. data/previews/primer/alpha/text_field_preview.rb +7 -1
  89. data/previews/primer/beta/nav_list_preview.rb +43 -0
  90. data/previews/primer/forms_preview/auto_complete_form.html.erb +3 -0
  91. data/previews/primer/forms_preview/select_form.html.erb +1 -1
  92. data/previews/primer/forms_preview.rb +2 -0
  93. data/previews/primer/open_project/page_header_preview/actions.html.erb +9 -7
  94. data/previews/primer/open_project/page_header_preview/context_bar_actions.html.erb +8 -6
  95. data/previews/primer/open_project/page_header_preview/playground.html.erb +4 -4
  96. data/previews/primer/open_project/page_header_preview.rb +11 -15
  97. data/static/arguments.json +7 -7
  98. data/static/classes.json +2 -5
  99. data/static/constants.json +22 -13
  100. data/static/info_arch.json +158 -21
  101. data/static/previews.json +147 -4
  102. metadata +11 -2
@@ -8,11 +8,14 @@
8
8
  <% component.with_parent_link(href: "#") do %>
9
9
  Parent link
10
10
  <% end %>
11
- <% component.with_context_bar_actions do %>
12
- <%= render(Primer::Alpha::ActionMenu.new) do |component| %>
13
- <% component.with_show_button { "Menu" } %>
14
- <% component.with_item(label: "Item", tag: :button, value: "") %>
15
- <% component.with_item(
11
+ <% component.with_context_bar_action do %>
12
+ <%= render(Primer::Beta::IconButton.new(icon: 'star', 'aria-label': 'Star')) %>
13
+ <% end %>
14
+ <% component.with_context_bar_action do %>
15
+ <%= render(Primer::Alpha::ActionMenu.new) do |menu| %>
16
+ <% menu.with_show_button { "Menu" } %>
17
+ <% menu.with_item(label: "Item", tag: :button, value: "") %>
18
+ <% menu.with_item(
16
19
  label: "Show dialog",
17
20
  tag: :button,
18
21
  content_arguments: { "data-show-dialog-id": "my-dialog" },
@@ -22,4 +25,3 @@
22
25
  <% end %>
23
26
  <% end %>
24
27
  <% end %>
25
-
@@ -1,11 +1,11 @@
1
1
  <%= render Primer::OpenProject::PageHeader.new do |header| %>
2
2
  <%= header.with_title(variant: variant) { title } %>
3
3
  <%= header.with_description { description } %>
4
- <%= header.with_back_button(href: "#", size: back_button_size, 'aria-label': "Back") if with_back_button %>
4
+ <%= header.with_leading_action(icon: with_leading_action, href: '#', 'aria-label': "A leading action") if with_leading_action %>
5
5
  <%= header.with_breadcrumbs(breadcrumb_items) if with_breadcrumbs %>
6
6
  <%= header.with_parent_link(href: "#") { "Parent link" } if with_parent_link %>
7
7
  <% if with_actions %>
8
- <% header.with_actions do %>
8
+ <% header.with_action do %>
9
9
  <%= render(Primer::Alpha::ActionMenu.new) do |component| %>
10
10
  <% component.with_show_button { "Menu" } %>
11
11
  <% component.with_item(label: "Item", tag: :button, value: "") %>
@@ -20,12 +20,12 @@
20
20
  <% end %>
21
21
  <% end %>
22
22
  <% if with_context_bar_actions %>
23
- <% header.with_context_bar_actions do %>
23
+ <% header.with_context_bar_action do %>
24
24
  <%= render(Primer::Beta::IconButton.new(
25
25
  scheme: :default,
26
26
  size: :small,
27
27
  icon: "pencil",
28
- "aria-label": "aria_label"
28
+ "aria-label": "A meaningful label"
29
29
  )) %>
30
30
  <% end %>
31
31
  <% end %>
@@ -18,8 +18,7 @@ module Primer
18
18
  # @param variant [Symbol] select [medium, large]
19
19
  # @param title [String] text
20
20
  # @param description [String] text
21
- # @param with_back_button [Boolean]
22
- # @param back_button_size [Symbol] select [small, medium, large]
21
+ # @param with_leading_action [Symbol] octicon
23
22
  # @param with_breadcrumbs [Boolean]
24
23
  # @param with_actions [Boolean]
25
24
  # @param with_context_bar_actions [Boolean]
@@ -28,8 +27,7 @@ module Primer
28
27
  variant: :large,
29
28
  title: "Hello",
30
29
  description: "Last updated 5 minutes ago by XYZ.",
31
- with_back_button: false,
32
- back_button_size: :medium,
30
+ with_leading_action: :"arrow-left",
33
31
  with_breadcrumbs: false,
34
32
  with_actions: false,
35
33
  with_context_bar_actions: false,
@@ -40,8 +38,7 @@ module Primer
40
38
  render_with_template(locals: { variant: variant,
41
39
  title: title,
42
40
  description: description,
43
- with_back_button: with_back_button,
44
- back_button_size: back_button_size,
41
+ with_leading_action: with_leading_action,
45
42
  with_breadcrumbs: with_breadcrumbs,
46
43
  with_parent_link: with_parent_link,
47
44
  with_actions: with_actions,
@@ -49,10 +46,10 @@ module Primer
49
46
  breadcrumb_items: breadcrumb_items })
50
47
  end
51
48
 
52
- # @label Medium title
53
- def medium_title
49
+ # @label Large title
50
+ def large_title
54
51
  render(Primer::OpenProject::PageHeader.new) do |header|
55
- header.with_title(variant: :medium) { "Hello" }
52
+ header.with_title(variant: :large) { "Hello" }
56
53
  header.with_description { "Last updated 5 minutes ago by XYZ." }
57
54
  end
58
55
  end
@@ -62,18 +59,17 @@ module Primer
62
59
  render_with_template(locals: {})
63
60
  end
64
61
 
65
- # @label With back button (on wide)
66
- # **Back button** is only shown on **wider than narrow screens** by default.
62
+ # @label With leading action (on wide)
63
+ # **Leading action** is only shown on **wide screens** by default.
67
64
  # If you want to override that behaviour please use the system_argument: **display**
68
65
  # e.g. **component.with\_breadcrumbs(display: [:block, :block])**
69
66
  #
70
67
  # @param href [String] text
71
- # @param size [Symbol] select [small, medium, large]
72
- # @param icon [String] select ["arrow-left", "chevron-left", "triangle-left"]
73
- def back_button(href: "#", size: :medium, icon: "arrow-left")
68
+ # @param icon [Symbol] octicon
69
+ def leading_action(href: "#", icon: :"arrow-left")
74
70
  render(Primer::OpenProject::PageHeader.new) do |header|
75
71
  header.with_title { "Hello" }
76
- header.with_back_button(href: href, size: size, icon: icon, 'aria-label': "Back")
72
+ header.with_leading_action(icon: icon, href: href, 'aria-label': "Back")
77
73
  end
78
74
  end
79
75
 
@@ -249,9 +249,9 @@
249
249
  },
250
250
  {
251
251
  "name": "truncate_label",
252
- "type": "Boolean",
253
- "default": "`false`",
254
- "description": "Truncate label with ellipsis."
252
+ "type": "Boolean | Symbol",
253
+ "default": "`:none`",
254
+ "description": "How the label should be truncated when the text does not fit inside the bounds of the list item. One of `false`, `:none`, `:show_tooltip`, `:truncate`, or `true`. Pass `false` or `:none` to wrap label text. Pass `true` or `:truncate` to truncate labels with ellipses. Pass `:show_tooltip` to show the entire label contents in a tooltip when the item is hovered."
255
255
  },
256
256
  {
257
257
  "name": "href",
@@ -2494,7 +2494,7 @@
2494
2494
  "name": "full_width",
2495
2495
  "type": "Boolean",
2496
2496
  "default": "N/A",
2497
- "description": "When set to `true`, the field will take up all the horizontal space allowed by its container."
2497
+ "description": "When set to `true`, the field will take up all the horizontal space allowed by its container. Defaults to `true`."
2498
2498
  },
2499
2499
  {
2500
2500
  "name": "name",
@@ -2624,7 +2624,7 @@
2624
2624
  "name": "full_width",
2625
2625
  "type": "Boolean",
2626
2626
  "default": "N/A",
2627
- "description": "When set to `true`, the field will take up all the horizontal space allowed by its container."
2627
+ "description": "When set to `true`, the field will take up all the horizontal space allowed by its container. Defaults to `true`."
2628
2628
  },
2629
2629
  {
2630
2630
  "name": "name",
@@ -2814,13 +2814,13 @@
2814
2814
  "name": "size",
2815
2815
  "type": "Symbol",
2816
2816
  "default": "`:medium`",
2817
- "description": "What size toggle switch to render. One of `:end` or `:start`."
2817
+ "description": "What size toggle switch to render. One of `:medium` or `:small`."
2818
2818
  },
2819
2819
  {
2820
2820
  "name": "status_label_position",
2821
2821
  "type": "Symbol",
2822
2822
  "default": "`:start`",
2823
- "description": "Which side of the toggle switch to render the status label. One of `:medium` or `:small`."
2823
+ "description": "Which side of the toggle switch to render the status label. One of `:end` or `:start`."
2824
2824
  },
2825
2825
  {
2826
2826
  "name": "system_arguments",
data/static/classes.json CHANGED
@@ -426,19 +426,16 @@
426
426
  "PageHeader-actions": [
427
427
  "Primer::OpenProject::PageHeader"
428
428
  ],
429
- "PageHeader-backButton": [
430
- "Primer::OpenProject::PageHeader"
431
- ],
432
429
  "PageHeader-breadcrumbs": [
433
430
  "Primer::OpenProject::PageHeader"
434
431
  ],
435
432
  "PageHeader-contextBar": [
436
433
  "Primer::OpenProject::PageHeader"
437
434
  ],
438
- "PageHeader-contextBarActions": [
435
+ "PageHeader-description": [
439
436
  "Primer::OpenProject::PageHeader"
440
437
  ],
441
- "PageHeader-description": [
438
+ "PageHeader-leadingAction": [
442
439
  "Primer::OpenProject::PageHeader"
443
440
  ],
444
441
  "PageHeader-parentLink": [
@@ -95,6 +95,7 @@
95
95
  "DEFAULT_DESCRIPTION_SCHEME": "block",
96
96
  "DEFAULT_SCHEME": "default",
97
97
  "DEFAULT_SIZE": "medium",
98
+ "DEFAULT_TRUNCATION_BEHAVIOR": "none",
98
99
  "DESCRIPTION_SCHEME_MAPPINGS": {
99
100
  "inline": "ActionListItem-descriptionWrap--inline",
100
101
  "block": "ActionListItem-descriptionWrap"
@@ -120,6 +121,20 @@
120
121
  "medium",
121
122
  "large",
122
123
  "xlarge"
124
+ ],
125
+ "TRUNCATION_BEHAVIOR_MAPPINGS": {
126
+ "none": null,
127
+ "false": null,
128
+ "show_tooltip": "ActionListItem-label--truncate",
129
+ "truncate": "ActionListItem-label--truncate",
130
+ "true": "ActionListItem-label--truncate"
131
+ },
132
+ "TRUNCATION_BEHAVIOR_OPTIONS": [
133
+ "none",
134
+ false,
135
+ "show_tooltip",
136
+ "truncate",
137
+ true
123
138
  ]
124
139
  },
125
140
  "Primer::Alpha::ActionMenu": {
@@ -1415,26 +1430,20 @@
1415
1430
  "chevron-left",
1416
1431
  "triangle-left"
1417
1432
  ],
1418
- "BACK_BUTTON_SIZE_OPTIONS": [
1419
- "small",
1420
- "medium",
1421
- "large"
1422
- ],
1423
- "DEFAULT_BACK_BUTTON_DISPLAY": [
1424
- "none",
1425
- "flex"
1426
- ],
1427
1433
  "DEFAULT_BACK_BUTTON_ICON": "arrow-left",
1428
- "DEFAULT_BACK_BUTTON_SIZE": "medium",
1429
1434
  "DEFAULT_BREADCRUMBS_DISPLAY": [
1430
1435
  "none",
1431
1436
  "flex"
1432
1437
  ],
1433
1438
  "DEFAULT_CONTEXT_BAR_ACTIONS_DISPLAY": [
1434
- "block",
1439
+ "flex",
1435
1440
  "none"
1436
1441
  ],
1437
- "DEFAULT_HEADER_VARIANT": "large",
1442
+ "DEFAULT_HEADER_VARIANT": "medium",
1443
+ "DEFAULT_LEADING_ACTION_DISPLAY": [
1444
+ "none",
1445
+ "flex"
1446
+ ],
1438
1447
  "DEFAULT_PARENT_LINK_DISPLAY": [
1439
1448
  "block",
1440
1449
  "none"
@@ -1443,7 +1452,7 @@
1443
1452
  "medium",
1444
1453
  "large"
1445
1454
  ],
1446
- "HEADING_TAG_FALLBACK": "h2",
1455
+ "HEADING_TAG_FALLBACK": "h1",
1447
1456
  "HEADING_TAG_OPTIONS": [
1448
1457
  "h1",
1449
1458
  "h2",
@@ -746,6 +746,58 @@
746
746
  "color-contrast"
747
747
  ]
748
748
  }
749
+ },
750
+ {
751
+ "preview_path": "primer/alpha/action_list/long_label_with_tooltip",
752
+ "name": "long_label_with_tooltip",
753
+ "snapshot": "true",
754
+ "skip_rules": {
755
+ "wont_fix": [
756
+ "region"
757
+ ],
758
+ "will_fix": [
759
+ "color-contrast"
760
+ ]
761
+ }
762
+ },
763
+ {
764
+ "preview_path": "primer/alpha/action_list/long_label_wrap",
765
+ "name": "long_label_wrap",
766
+ "snapshot": "false",
767
+ "skip_rules": {
768
+ "wont_fix": [
769
+ "region"
770
+ ],
771
+ "will_fix": [
772
+ "color-contrast"
773
+ ]
774
+ }
775
+ },
776
+ {
777
+ "preview_path": "primer/alpha/action_list/long_label_truncate_no_tooltip",
778
+ "name": "long_label_truncate_no_tooltip",
779
+ "snapshot": "false",
780
+ "skip_rules": {
781
+ "wont_fix": [
782
+ "region"
783
+ ],
784
+ "will_fix": [
785
+ "color-contrast"
786
+ ]
787
+ }
788
+ },
789
+ {
790
+ "preview_path": "primer/alpha/action_list/long_label_show_tooltip_with_truncate_label",
791
+ "name": "long_label_show_tooltip_with_truncate_label",
792
+ "snapshot": "false",
793
+ "skip_rules": {
794
+ "wont_fix": [
795
+ "region"
796
+ ],
797
+ "will_fix": [
798
+ "color-contrast"
799
+ ]
800
+ }
749
801
  }
750
802
  ],
751
803
  "subcomponents": [
@@ -813,9 +865,9 @@
813
865
  },
814
866
  {
815
867
  "name": "truncate_label",
816
- "type": "Boolean",
817
- "default": "`false`",
818
- "description": "Truncate label with ellipsis."
868
+ "type": "Boolean | Symbol",
869
+ "default": "`:none`",
870
+ "description": "How the label should be truncated when the text does not fit inside the bounds of the list item. One of `false`, `:none`, `:show_tooltip`, `:truncate`, or `true`. Pass `false` or `:none` to wrap label text. Pass `true` or `:truncate` to truncate labels with ellipses. Pass `:show_tooltip` to show the entire label contents in a tooltip when the item is hovered."
819
871
  },
820
872
  {
821
873
  "name": "href",
@@ -7127,6 +7179,19 @@
7127
7179
  ]
7128
7180
  }
7129
7181
  },
7182
+ {
7183
+ "preview_path": "primer/alpha/select/not_full_width",
7184
+ "name": "not_full_width",
7185
+ "snapshot": "true",
7186
+ "skip_rules": {
7187
+ "wont_fix": [
7188
+ "region"
7189
+ ],
7190
+ "will_fix": [
7191
+ "color-contrast"
7192
+ ]
7193
+ }
7194
+ },
7130
7195
  {
7131
7196
  "preview_path": "primer/alpha/select/disabled",
7132
7197
  "name": "disabled",
@@ -7562,7 +7627,7 @@
7562
7627
  "name": "full_width",
7563
7628
  "type": "Boolean",
7564
7629
  "default": "N/A",
7565
- "description": "When set to `true`, the field will take up all the horizontal space allowed by its container."
7630
+ "description": "When set to `true`, the field will take up all the horizontal space allowed by its container. Defaults to `true`."
7566
7631
  },
7567
7632
  {
7568
7633
  "name": "name",
@@ -7745,6 +7810,19 @@
7745
7810
  ]
7746
7811
  }
7747
7812
  },
7813
+ {
7814
+ "preview_path": "primer/alpha/text_area/not_full_width",
7815
+ "name": "not_full_width",
7816
+ "snapshot": "true",
7817
+ "skip_rules": {
7818
+ "wont_fix": [
7819
+ "region"
7820
+ ],
7821
+ "will_fix": [
7822
+ "color-contrast"
7823
+ ]
7824
+ }
7825
+ },
7748
7826
  {
7749
7827
  "preview_path": "primer/alpha/text_area/disabled",
7750
7828
  "name": "disabled",
@@ -7813,7 +7891,7 @@
7813
7891
  "name": "full_width",
7814
7892
  "type": "Boolean",
7815
7893
  "default": "N/A",
7816
- "description": "When set to `true`, the field will take up all the horizontal space allowed by its container."
7894
+ "description": "When set to `true`, the field will take up all the horizontal space allowed by its container. Defaults to `true`."
7817
7895
  },
7818
7896
  {
7819
7897
  "name": "name",
@@ -8090,6 +8168,19 @@
8090
8168
  ]
8091
8169
  }
8092
8170
  },
8171
+ {
8172
+ "preview_path": "primer/alpha/text_field/not_full_width",
8173
+ "name": "not_full_width",
8174
+ "snapshot": "true",
8175
+ "skip_rules": {
8176
+ "wont_fix": [
8177
+ "region"
8178
+ ],
8179
+ "will_fix": [
8180
+ "color-contrast"
8181
+ ]
8182
+ }
8183
+ },
8093
8184
  {
8094
8185
  "preview_path": "primer/alpha/text_field/disabled",
8095
8186
  "name": "disabled",
@@ -8319,13 +8410,13 @@
8319
8410
  "name": "size",
8320
8411
  "type": "Symbol",
8321
8412
  "default": "`:medium`",
8322
- "description": "What size toggle switch to render. One of `:end` or `:start`."
8413
+ "description": "What size toggle switch to render. One of `:medium` or `:small`."
8323
8414
  },
8324
8415
  {
8325
8416
  "name": "status_label_position",
8326
8417
  "type": "Symbol",
8327
8418
  "default": "`:start`",
8328
- "description": "Which side of the toggle switch to render the status label. One of `:medium` or `:small`."
8419
+ "description": "Which side of the toggle switch to render the status label. One of `:end` or `:start`."
8329
8420
  },
8330
8421
  {
8331
8422
  "name": "system_arguments",
@@ -13115,6 +13206,58 @@
13115
13206
  "color-contrast"
13116
13207
  ]
13117
13208
  }
13209
+ },
13210
+ {
13211
+ "preview_path": "primer/beta/nav_list/long_label_with_tooltip",
13212
+ "name": "long_label_with_tooltip",
13213
+ "snapshot": "true",
13214
+ "skip_rules": {
13215
+ "wont_fix": [
13216
+ "region"
13217
+ ],
13218
+ "will_fix": [
13219
+ "color-contrast"
13220
+ ]
13221
+ }
13222
+ },
13223
+ {
13224
+ "preview_path": "primer/beta/nav_list/long_label_wrap",
13225
+ "name": "long_label_wrap",
13226
+ "snapshot": "false",
13227
+ "skip_rules": {
13228
+ "wont_fix": [
13229
+ "region"
13230
+ ],
13231
+ "will_fix": [
13232
+ "color-contrast"
13233
+ ]
13234
+ }
13235
+ },
13236
+ {
13237
+ "preview_path": "primer/beta/nav_list/long_label_truncate_no_tooltip",
13238
+ "name": "long_label_truncate_no_tooltip",
13239
+ "snapshot": "false",
13240
+ "skip_rules": {
13241
+ "wont_fix": [
13242
+ "region"
13243
+ ],
13244
+ "will_fix": [
13245
+ "color-contrast"
13246
+ ]
13247
+ }
13248
+ },
13249
+ {
13250
+ "preview_path": "primer/beta/nav_list/long_label_show_tooltip_no_truncate_label",
13251
+ "name": "long_label_show_tooltip_no_truncate_label",
13252
+ "snapshot": "false",
13253
+ "skip_rules": {
13254
+ "wont_fix": [
13255
+ "region"
13256
+ ],
13257
+ "will_fix": [
13258
+ "color-contrast"
13259
+ ]
13260
+ }
13118
13261
  }
13119
13262
  ],
13120
13263
  "subcomponents": [
@@ -16178,20 +16321,14 @@
16178
16321
  ]
16179
16322
  },
16180
16323
  {
16181
- "name": "back_button",
16182
- "description": "Optional back button prepend the title\nBy default shown on wider screens. Can be overridden with system_argument: display",
16324
+ "name": "leading_action",
16325
+ "description": "Optional leading action prepend the title\nBy default shown on wider screens. Can be overridden with system_argument: display",
16183
16326
  "parameters": [
16184
- {
16185
- "name": "size",
16186
- "type": "Symbol",
16187
- "default": "N/A",
16188
- "description": "One of `:large`, `:medium`, or `:small`."
16189
- },
16190
16327
  {
16191
16328
  "name": "icon",
16192
- "type": "String",
16329
+ "type": "Symbol",
16193
16330
  "default": "N/A",
16194
- "description": "One of `arrow-left`, `chevron-left`, or `triangle-left`."
16331
+ "description": "The name of an {{link_to_octicons}} icon to use."
16195
16332
  },
16196
16333
  {
16197
16334
  "name": "system_arguments",
@@ -16276,8 +16413,8 @@
16276
16413
  }
16277
16414
  },
16278
16415
  {
16279
- "preview_path": "primer/open_project/page_header/medium_title",
16280
- "name": "medium_title",
16416
+ "preview_path": "primer/open_project/page_header/large_title",
16417
+ "name": "large_title",
16281
16418
  "snapshot": "false",
16282
16419
  "skip_rules": {
16283
16420
  "wont_fix": [
@@ -16302,8 +16439,8 @@
16302
16439
  }
16303
16440
  },
16304
16441
  {
16305
- "preview_path": "primer/open_project/page_header/back_button",
16306
- "name": "back_button",
16442
+ "preview_path": "primer/open_project/page_header/leading_action",
16443
+ "name": "leading_action",
16307
16444
  "snapshot": "false",
16308
16445
  "skip_rules": {
16309
16446
  "wont_fix": [