openproject-primer_view_components 0.84.5 → 0.85.0
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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +6 -0
- data/app/assets/javascripts/components/primer/open_project/sub_header_element.d.ts +1 -1
- data/app/assets/javascripts/primer_view_components.js +1 -1
- data/app/assets/javascripts/primer_view_components.js.map +1 -1
- data/app/assets/styles/primer_view_components.css +1 -1
- data/app/assets/styles/primer_view_components.css.map +1 -1
- data/app/components/primer/alpha/select_panel_element.js +2 -2
- data/app/components/primer/alpha/select_panel_element.ts +2 -2
- data/app/components/primer/open_project/sub_header.css +1 -1
- data/app/components/primer/open_project/sub_header.css.json +2 -1
- data/app/components/primer/open_project/sub_header.css.map +1 -1
- data/app/components/primer/open_project/sub_header.html.erb +11 -8
- data/app/components/primer/open_project/sub_header.pcss +14 -7
- data/app/components/primer/open_project/sub_header.rb +46 -25
- data/app/components/primer/open_project/sub_header_element.d.ts +1 -1
- data/app/components/primer/open_project/sub_header_element.js +6 -6
- data/app/components/primer/open_project/sub_header_element.ts +5 -10
- data/lib/primer/view_components/version.rb +2 -2
- data/previews/primer/alpha/select_panel_preview.rb +0 -27
- data/previews/primer/alpha/text_area_preview.rb +0 -1
- data/previews/primer/alpha/text_field_preview.rb +0 -1
- data/previews/primer/open_project/sub_header_preview/quick_filters.html.erb +47 -0
- data/previews/primer/open_project/sub_header_preview.rb +23 -1
- data/static/arguments.json +6 -0
- data/static/constants.json +1 -1
- data/static/info_arch.json +66 -29
- data/static/previews.json +55 -29
- metadata +3 -2
|
@@ -12,6 +12,7 @@ module Primer
|
|
|
12
12
|
# @param show_filter_button toggle
|
|
13
13
|
# @param show_action_button toggle
|
|
14
14
|
# @param show_clear_button toggle
|
|
15
|
+
# @param collapsed_search toggle
|
|
15
16
|
# @param text text
|
|
16
17
|
# @param value text
|
|
17
18
|
def playground(
|
|
@@ -19,10 +20,11 @@ module Primer
|
|
|
19
20
|
show_clear_button: true,
|
|
20
21
|
show_filter_button: true,
|
|
21
22
|
show_action_button: true,
|
|
23
|
+
collapsed_search: false,
|
|
22
24
|
text: nil,
|
|
23
25
|
value: nil
|
|
24
26
|
)
|
|
25
|
-
render(Primer::OpenProject::SubHeader.new) do |component|
|
|
27
|
+
render(Primer::OpenProject::SubHeader.new(collapsed_search: collapsed_search)) do |component|
|
|
26
28
|
component.with_filter_input(
|
|
27
29
|
name: "filter",
|
|
28
30
|
label: "Filter",
|
|
@@ -98,6 +100,26 @@ module Primer
|
|
|
98
100
|
end
|
|
99
101
|
end
|
|
100
102
|
|
|
103
|
+
# @label With collapsed search
|
|
104
|
+
def collapsed_search
|
|
105
|
+
render(Primer::OpenProject::SubHeader.new(collapsed_search: true)) do |component|
|
|
106
|
+
component.with_filter_input(name: "filter", label: "Filter")
|
|
107
|
+
component.with_filter_button do |button|
|
|
108
|
+
button.with_trailing_visual_counter(count: "15")
|
|
109
|
+
"Filter"
|
|
110
|
+
end
|
|
111
|
+
|
|
112
|
+
component.with_action_button(leading_icon: :plus, label: "Create", scheme: :primary) do
|
|
113
|
+
"Create"
|
|
114
|
+
end
|
|
115
|
+
end
|
|
116
|
+
end
|
|
117
|
+
|
|
118
|
+
# @label With QuickFilters
|
|
119
|
+
def quick_filters
|
|
120
|
+
render_with_template(locals: {})
|
|
121
|
+
end
|
|
122
|
+
|
|
101
123
|
# @label With a custom area below
|
|
102
124
|
def bottom_pane
|
|
103
125
|
render_with_template(locals: {})
|
data/static/arguments.json
CHANGED
|
@@ -6473,6 +6473,12 @@
|
|
|
6473
6473
|
"source": "https://github.com/primer/view_components/tree/main/app/components/primer/open_project/sub_header.rb",
|
|
6474
6474
|
"lookbook": "https://primer.style/view-components/lookbook/inspect/primer/open_project/sub_header/default/",
|
|
6475
6475
|
"parameters": [
|
|
6476
|
+
{
|
|
6477
|
+
"name": "collapsed_search",
|
|
6478
|
+
"type": "Boolean",
|
|
6479
|
+
"default": "`false`",
|
|
6480
|
+
"description": "When true, the search bar starts collapsed as an icon button on all screen sizes. Clicking expands it."
|
|
6481
|
+
},
|
|
6476
6482
|
{
|
|
6477
6483
|
"name": "system_arguments",
|
|
6478
6484
|
"type": "Hash",
|
data/static/constants.json
CHANGED
|
@@ -1978,8 +1978,8 @@
|
|
|
1978
1978
|
"none",
|
|
1979
1979
|
"flex"
|
|
1980
1980
|
],
|
|
1981
|
+
"FILTER_EXPAND_BUTTON_TARGET_SELECTOR": "sub-header.filterExpandButton",
|
|
1981
1982
|
"GeneratedSlotMethods": "Primer::OpenProject::SubHeader::GeneratedSlotMethods",
|
|
1982
|
-
"HIDDEN_FILTER_TARGET_SELECTOR": "sub-header.hiddenItemsOnExpandedFilter",
|
|
1983
1983
|
"MOBILE_ACTIONS_DISPLAY": [
|
|
1984
1984
|
"flex",
|
|
1985
1985
|
"none"
|
data/static/info_arch.json
CHANGED
|
@@ -8102,7 +8102,7 @@
|
|
|
8102
8102
|
{
|
|
8103
8103
|
"preview_path": "primer/alpha/select_panel/default",
|
|
8104
8104
|
"name": "default",
|
|
8105
|
-
"snapshot": "
|
|
8105
|
+
"snapshot": "false",
|
|
8106
8106
|
"skip_rules": {
|
|
8107
8107
|
"wont_fix": [
|
|
8108
8108
|
"region"
|
|
@@ -8115,7 +8115,7 @@
|
|
|
8115
8115
|
{
|
|
8116
8116
|
"preview_path": "primer/alpha/select_panel/local_fetch",
|
|
8117
8117
|
"name": "local_fetch",
|
|
8118
|
-
"snapshot": "
|
|
8118
|
+
"snapshot": "false",
|
|
8119
8119
|
"skip_rules": {
|
|
8120
8120
|
"wont_fix": [
|
|
8121
8121
|
"region"
|
|
@@ -8128,7 +8128,7 @@
|
|
|
8128
8128
|
{
|
|
8129
8129
|
"preview_path": "primer/alpha/select_panel/eventually_local_fetch",
|
|
8130
8130
|
"name": "eventually_local_fetch",
|
|
8131
|
-
"snapshot": "
|
|
8131
|
+
"snapshot": "false",
|
|
8132
8132
|
"skip_rules": {
|
|
8133
8133
|
"wont_fix": [
|
|
8134
8134
|
"region"
|
|
@@ -8141,7 +8141,7 @@
|
|
|
8141
8141
|
{
|
|
8142
8142
|
"preview_path": "primer/alpha/select_panel/remote_fetch",
|
|
8143
8143
|
"name": "remote_fetch",
|
|
8144
|
-
"snapshot": "
|
|
8144
|
+
"snapshot": "false",
|
|
8145
8145
|
"skip_rules": {
|
|
8146
8146
|
"wont_fix": [
|
|
8147
8147
|
"region"
|
|
@@ -8154,7 +8154,7 @@
|
|
|
8154
8154
|
{
|
|
8155
8155
|
"preview_path": "primer/alpha/select_panel/custom_loading_label",
|
|
8156
8156
|
"name": "custom_loading_label",
|
|
8157
|
-
"snapshot": "
|
|
8157
|
+
"snapshot": "false",
|
|
8158
8158
|
"skip_rules": {
|
|
8159
8159
|
"wont_fix": [
|
|
8160
8160
|
"region"
|
|
@@ -8167,7 +8167,7 @@
|
|
|
8167
8167
|
{
|
|
8168
8168
|
"preview_path": "primer/alpha/select_panel/custom_loading_description",
|
|
8169
8169
|
"name": "custom_loading_description",
|
|
8170
|
-
"snapshot": "
|
|
8170
|
+
"snapshot": "false",
|
|
8171
8171
|
"skip_rules": {
|
|
8172
8172
|
"wont_fix": [
|
|
8173
8173
|
"region"
|
|
@@ -8180,7 +8180,7 @@
|
|
|
8180
8180
|
{
|
|
8181
8181
|
"preview_path": "primer/alpha/select_panel/local_fetch_no_results",
|
|
8182
8182
|
"name": "local_fetch_no_results",
|
|
8183
|
-
"snapshot": "
|
|
8183
|
+
"snapshot": "false",
|
|
8184
8184
|
"skip_rules": {
|
|
8185
8185
|
"wont_fix": [
|
|
8186
8186
|
"region"
|
|
@@ -8193,7 +8193,7 @@
|
|
|
8193
8193
|
{
|
|
8194
8194
|
"preview_path": "primer/alpha/select_panel/eventually_local_fetch_no_results",
|
|
8195
8195
|
"name": "eventually_local_fetch_no_results",
|
|
8196
|
-
"snapshot": "
|
|
8196
|
+
"snapshot": "false",
|
|
8197
8197
|
"skip_rules": {
|
|
8198
8198
|
"wont_fix": [
|
|
8199
8199
|
"region"
|
|
@@ -8206,7 +8206,7 @@
|
|
|
8206
8206
|
{
|
|
8207
8207
|
"preview_path": "primer/alpha/select_panel/remote_fetch_no_results",
|
|
8208
8208
|
"name": "remote_fetch_no_results",
|
|
8209
|
-
"snapshot": "
|
|
8209
|
+
"snapshot": "false",
|
|
8210
8210
|
"skip_rules": {
|
|
8211
8211
|
"wont_fix": [
|
|
8212
8212
|
"region"
|
|
@@ -8219,7 +8219,7 @@
|
|
|
8219
8219
|
{
|
|
8220
8220
|
"preview_path": "primer/alpha/select_panel/single_select",
|
|
8221
8221
|
"name": "single_select",
|
|
8222
|
-
"snapshot": "
|
|
8222
|
+
"snapshot": "false",
|
|
8223
8223
|
"skip_rules": {
|
|
8224
8224
|
"wont_fix": [
|
|
8225
8225
|
"region"
|
|
@@ -8232,7 +8232,7 @@
|
|
|
8232
8232
|
{
|
|
8233
8233
|
"preview_path": "primer/alpha/select_panel/multiselect",
|
|
8234
8234
|
"name": "multiselect",
|
|
8235
|
-
"snapshot": "
|
|
8235
|
+
"snapshot": "false",
|
|
8236
8236
|
"skip_rules": {
|
|
8237
8237
|
"wont_fix": [
|
|
8238
8238
|
"region"
|
|
@@ -8245,7 +8245,7 @@
|
|
|
8245
8245
|
{
|
|
8246
8246
|
"preview_path": "primer/alpha/select_panel/with_dynamic_label",
|
|
8247
8247
|
"name": "with_dynamic_label",
|
|
8248
|
-
"snapshot": "
|
|
8248
|
+
"snapshot": "false",
|
|
8249
8249
|
"skip_rules": {
|
|
8250
8250
|
"wont_fix": [
|
|
8251
8251
|
"region"
|
|
@@ -8258,7 +8258,7 @@
|
|
|
8258
8258
|
{
|
|
8259
8259
|
"preview_path": "primer/alpha/select_panel/with_dynamic_label_and_aria_prefix",
|
|
8260
8260
|
"name": "with_dynamic_label_and_aria_prefix",
|
|
8261
|
-
"snapshot": "
|
|
8261
|
+
"snapshot": "false",
|
|
8262
8262
|
"skip_rules": {
|
|
8263
8263
|
"wont_fix": [
|
|
8264
8264
|
"region"
|
|
@@ -8271,7 +8271,7 @@
|
|
|
8271
8271
|
{
|
|
8272
8272
|
"preview_path": "primer/alpha/select_panel/footer_buttons",
|
|
8273
8273
|
"name": "footer_buttons",
|
|
8274
|
-
"snapshot": "
|
|
8274
|
+
"snapshot": "false",
|
|
8275
8275
|
"skip_rules": {
|
|
8276
8276
|
"wont_fix": [
|
|
8277
8277
|
"region"
|
|
@@ -8284,7 +8284,7 @@
|
|
|
8284
8284
|
{
|
|
8285
8285
|
"preview_path": "primer/alpha/select_panel/with_avatar_items",
|
|
8286
8286
|
"name": "with_avatar_items",
|
|
8287
|
-
"snapshot": "
|
|
8287
|
+
"snapshot": "false",
|
|
8288
8288
|
"skip_rules": {
|
|
8289
8289
|
"wont_fix": [
|
|
8290
8290
|
"region"
|
|
@@ -8297,7 +8297,7 @@
|
|
|
8297
8297
|
{
|
|
8298
8298
|
"preview_path": "primer/alpha/select_panel/select_panel_with_icon_button",
|
|
8299
8299
|
"name": "select_panel_with_icon_button",
|
|
8300
|
-
"snapshot": "
|
|
8300
|
+
"snapshot": "false",
|
|
8301
8301
|
"skip_rules": {
|
|
8302
8302
|
"wont_fix": [
|
|
8303
8303
|
"region"
|
|
@@ -8310,7 +8310,7 @@
|
|
|
8310
8310
|
{
|
|
8311
8311
|
"preview_path": "primer/alpha/select_panel/with_leading_icons",
|
|
8312
8312
|
"name": "with_leading_icons",
|
|
8313
|
-
"snapshot": "
|
|
8313
|
+
"snapshot": "false",
|
|
8314
8314
|
"skip_rules": {
|
|
8315
8315
|
"wont_fix": [
|
|
8316
8316
|
"region"
|
|
@@ -8323,7 +8323,7 @@
|
|
|
8323
8323
|
{
|
|
8324
8324
|
"preview_path": "primer/alpha/select_panel/with_trailing_icons",
|
|
8325
8325
|
"name": "with_trailing_icons",
|
|
8326
|
-
"snapshot": "
|
|
8326
|
+
"snapshot": "false",
|
|
8327
8327
|
"skip_rules": {
|
|
8328
8328
|
"wont_fix": [
|
|
8329
8329
|
"region"
|
|
@@ -8336,7 +8336,7 @@
|
|
|
8336
8336
|
{
|
|
8337
8337
|
"preview_path": "primer/alpha/select_panel/with_subtitle",
|
|
8338
8338
|
"name": "with_subtitle",
|
|
8339
|
-
"snapshot": "
|
|
8339
|
+
"snapshot": "false",
|
|
8340
8340
|
"skip_rules": {
|
|
8341
8341
|
"wont_fix": [
|
|
8342
8342
|
"region"
|
|
@@ -8349,7 +8349,7 @@
|
|
|
8349
8349
|
{
|
|
8350
8350
|
"preview_path": "primer/alpha/select_panel/remote_fetch_initial_failure",
|
|
8351
8351
|
"name": "remote_fetch_initial_failure",
|
|
8352
|
-
"snapshot": "
|
|
8352
|
+
"snapshot": "false",
|
|
8353
8353
|
"skip_rules": {
|
|
8354
8354
|
"wont_fix": [
|
|
8355
8355
|
"region"
|
|
@@ -8362,7 +8362,7 @@
|
|
|
8362
8362
|
{
|
|
8363
8363
|
"preview_path": "primer/alpha/select_panel/remote_fetch_filter_failure",
|
|
8364
8364
|
"name": "remote_fetch_filter_failure",
|
|
8365
|
-
"snapshot": "
|
|
8365
|
+
"snapshot": "false",
|
|
8366
8366
|
"skip_rules": {
|
|
8367
8367
|
"wont_fix": [
|
|
8368
8368
|
"region"
|
|
@@ -8375,7 +8375,7 @@
|
|
|
8375
8375
|
{
|
|
8376
8376
|
"preview_path": "primer/alpha/select_panel/eventually_local_fetch_initial_failure",
|
|
8377
8377
|
"name": "eventually_local_fetch_initial_failure",
|
|
8378
|
-
"snapshot": "
|
|
8378
|
+
"snapshot": "false",
|
|
8379
8379
|
"skip_rules": {
|
|
8380
8380
|
"wont_fix": [
|
|
8381
8381
|
"region"
|
|
@@ -8388,7 +8388,7 @@
|
|
|
8388
8388
|
{
|
|
8389
8389
|
"preview_path": "primer/alpha/select_panel/single_select_form",
|
|
8390
8390
|
"name": "single_select_form",
|
|
8391
|
-
"snapshot": "
|
|
8391
|
+
"snapshot": "false",
|
|
8392
8392
|
"skip_rules": {
|
|
8393
8393
|
"wont_fix": [
|
|
8394
8394
|
"region"
|
|
@@ -8401,7 +8401,7 @@
|
|
|
8401
8401
|
{
|
|
8402
8402
|
"preview_path": "primer/alpha/select_panel/remote_fetch_form",
|
|
8403
8403
|
"name": "remote_fetch_form",
|
|
8404
|
-
"snapshot": "
|
|
8404
|
+
"snapshot": "false",
|
|
8405
8405
|
"skip_rules": {
|
|
8406
8406
|
"wont_fix": [
|
|
8407
8407
|
"region"
|
|
@@ -8414,7 +8414,7 @@
|
|
|
8414
8414
|
{
|
|
8415
8415
|
"preview_path": "primer/alpha/select_panel/multiselect_form",
|
|
8416
8416
|
"name": "multiselect_form",
|
|
8417
|
-
"snapshot": "
|
|
8417
|
+
"snapshot": "false",
|
|
8418
8418
|
"skip_rules": {
|
|
8419
8419
|
"wont_fix": [
|
|
8420
8420
|
"region"
|
|
@@ -8427,7 +8427,7 @@
|
|
|
8427
8427
|
{
|
|
8428
8428
|
"preview_path": "primer/alpha/select_panel/list_of_links",
|
|
8429
8429
|
"name": "list_of_links",
|
|
8430
|
-
"snapshot": "
|
|
8430
|
+
"snapshot": "false",
|
|
8431
8431
|
"skip_rules": {
|
|
8432
8432
|
"wont_fix": [
|
|
8433
8433
|
"region"
|
|
@@ -8440,7 +8440,7 @@
|
|
|
8440
8440
|
{
|
|
8441
8441
|
"preview_path": "primer/alpha/select_panel/no_values",
|
|
8442
8442
|
"name": "no_values",
|
|
8443
|
-
"snapshot": "
|
|
8443
|
+
"snapshot": "false",
|
|
8444
8444
|
"skip_rules": {
|
|
8445
8445
|
"wont_fix": [
|
|
8446
8446
|
"region"
|
|
@@ -9368,7 +9368,7 @@
|
|
|
9368
9368
|
{
|
|
9369
9369
|
"preview_path": "primer/alpha/text_area/with_character_limit_over_limit",
|
|
9370
9370
|
"name": "with_character_limit_over_limit",
|
|
9371
|
-
"snapshot": "
|
|
9371
|
+
"snapshot": "false",
|
|
9372
9372
|
"skip_rules": {
|
|
9373
9373
|
"wont_fix": [
|
|
9374
9374
|
"region"
|
|
@@ -9907,7 +9907,7 @@
|
|
|
9907
9907
|
{
|
|
9908
9908
|
"preview_path": "primer/alpha/text_field/with_character_limit_over_limit",
|
|
9909
9909
|
"name": "with_character_limit_over_limit",
|
|
9910
|
-
"snapshot": "
|
|
9910
|
+
"snapshot": "false",
|
|
9911
9911
|
"skip_rules": {
|
|
9912
9912
|
"wont_fix": [
|
|
9913
9913
|
"region"
|
|
@@ -21649,6 +21649,12 @@
|
|
|
21649
21649
|
"source": "https://github.com/primer/view_components/tree/main/app/components/primer/open_project/sub_header.rb",
|
|
21650
21650
|
"lookbook": "https://primer.style/view-components/lookbook/inspect/primer/open_project/sub_header/default/",
|
|
21651
21651
|
"parameters": [
|
|
21652
|
+
{
|
|
21653
|
+
"name": "collapsed_search",
|
|
21654
|
+
"type": "Boolean",
|
|
21655
|
+
"default": "`false`",
|
|
21656
|
+
"description": "When true, the search bar starts collapsed as an icon button on all screen sizes. Clicking expands it."
|
|
21657
|
+
},
|
|
21652
21658
|
{
|
|
21653
21659
|
"name": "system_arguments",
|
|
21654
21660
|
"type": "Hash",
|
|
@@ -21672,6 +21678,11 @@
|
|
|
21672
21678
|
"description": "A button or custom content that will render on the left-hand side of the component, next to the filter input.\n\nTo render a button, call the `with_filter_button` method, which accepts the arguments accepted by {{#link_to_component}}Primer::Beta::Button{{/link_to_component}}.\n\nTo render custom content, call the `with_filter_component` method and pass a block that returns HTML.",
|
|
21673
21679
|
"parameters": []
|
|
21674
21680
|
},
|
|
21681
|
+
{
|
|
21682
|
+
"name": "quick_filters",
|
|
21683
|
+
"description": "Quick filters shown in the left pane next to the search bar (0–5 items).\nHidden on mobile. Requires all_filters_button to be set when used.\nSupports ActionMenus, Buttons, IconButtons, SelectPanels, and SegmentedControls inside the block.",
|
|
21684
|
+
"parameters": []
|
|
21685
|
+
},
|
|
21675
21686
|
{
|
|
21676
21687
|
"name": "segmented_control",
|
|
21677
21688
|
"description": null,
|
|
@@ -21781,6 +21792,32 @@
|
|
|
21781
21792
|
]
|
|
21782
21793
|
}
|
|
21783
21794
|
},
|
|
21795
|
+
{
|
|
21796
|
+
"preview_path": "primer/open_project/sub_header/collapsed_search",
|
|
21797
|
+
"name": "collapsed_search",
|
|
21798
|
+
"snapshot": "false",
|
|
21799
|
+
"skip_rules": {
|
|
21800
|
+
"wont_fix": [
|
|
21801
|
+
"region"
|
|
21802
|
+
],
|
|
21803
|
+
"will_fix": [
|
|
21804
|
+
"color-contrast"
|
|
21805
|
+
]
|
|
21806
|
+
}
|
|
21807
|
+
},
|
|
21808
|
+
{
|
|
21809
|
+
"preview_path": "primer/open_project/sub_header/quick_filters",
|
|
21810
|
+
"name": "quick_filters",
|
|
21811
|
+
"snapshot": "false",
|
|
21812
|
+
"skip_rules": {
|
|
21813
|
+
"wont_fix": [
|
|
21814
|
+
"region"
|
|
21815
|
+
],
|
|
21816
|
+
"will_fix": [
|
|
21817
|
+
"color-contrast"
|
|
21818
|
+
]
|
|
21819
|
+
}
|
|
21820
|
+
},
|
|
21784
21821
|
{
|
|
21785
21822
|
"preview_path": "primer/open_project/sub_header/bottom_pane",
|
|
21786
21823
|
"name": "bottom_pane",
|
data/static/previews.json
CHANGED
|
@@ -7414,7 +7414,7 @@
|
|
|
7414
7414
|
{
|
|
7415
7415
|
"preview_path": "primer/alpha/select_panel/default",
|
|
7416
7416
|
"name": "default",
|
|
7417
|
-
"snapshot": "
|
|
7417
|
+
"snapshot": "false",
|
|
7418
7418
|
"skip_rules": {
|
|
7419
7419
|
"wont_fix": [
|
|
7420
7420
|
"region"
|
|
@@ -7427,7 +7427,7 @@
|
|
|
7427
7427
|
{
|
|
7428
7428
|
"preview_path": "primer/alpha/select_panel/local_fetch",
|
|
7429
7429
|
"name": "local_fetch",
|
|
7430
|
-
"snapshot": "
|
|
7430
|
+
"snapshot": "false",
|
|
7431
7431
|
"skip_rules": {
|
|
7432
7432
|
"wont_fix": [
|
|
7433
7433
|
"region"
|
|
@@ -7440,7 +7440,7 @@
|
|
|
7440
7440
|
{
|
|
7441
7441
|
"preview_path": "primer/alpha/select_panel/eventually_local_fetch",
|
|
7442
7442
|
"name": "eventually_local_fetch",
|
|
7443
|
-
"snapshot": "
|
|
7443
|
+
"snapshot": "false",
|
|
7444
7444
|
"skip_rules": {
|
|
7445
7445
|
"wont_fix": [
|
|
7446
7446
|
"region"
|
|
@@ -7453,7 +7453,7 @@
|
|
|
7453
7453
|
{
|
|
7454
7454
|
"preview_path": "primer/alpha/select_panel/remote_fetch",
|
|
7455
7455
|
"name": "remote_fetch",
|
|
7456
|
-
"snapshot": "
|
|
7456
|
+
"snapshot": "false",
|
|
7457
7457
|
"skip_rules": {
|
|
7458
7458
|
"wont_fix": [
|
|
7459
7459
|
"region"
|
|
@@ -7466,7 +7466,7 @@
|
|
|
7466
7466
|
{
|
|
7467
7467
|
"preview_path": "primer/alpha/select_panel/custom_loading_label",
|
|
7468
7468
|
"name": "custom_loading_label",
|
|
7469
|
-
"snapshot": "
|
|
7469
|
+
"snapshot": "false",
|
|
7470
7470
|
"skip_rules": {
|
|
7471
7471
|
"wont_fix": [
|
|
7472
7472
|
"region"
|
|
@@ -7479,7 +7479,7 @@
|
|
|
7479
7479
|
{
|
|
7480
7480
|
"preview_path": "primer/alpha/select_panel/custom_loading_description",
|
|
7481
7481
|
"name": "custom_loading_description",
|
|
7482
|
-
"snapshot": "
|
|
7482
|
+
"snapshot": "false",
|
|
7483
7483
|
"skip_rules": {
|
|
7484
7484
|
"wont_fix": [
|
|
7485
7485
|
"region"
|
|
@@ -7492,7 +7492,7 @@
|
|
|
7492
7492
|
{
|
|
7493
7493
|
"preview_path": "primer/alpha/select_panel/local_fetch_no_results",
|
|
7494
7494
|
"name": "local_fetch_no_results",
|
|
7495
|
-
"snapshot": "
|
|
7495
|
+
"snapshot": "false",
|
|
7496
7496
|
"skip_rules": {
|
|
7497
7497
|
"wont_fix": [
|
|
7498
7498
|
"region"
|
|
@@ -7505,7 +7505,7 @@
|
|
|
7505
7505
|
{
|
|
7506
7506
|
"preview_path": "primer/alpha/select_panel/eventually_local_fetch_no_results",
|
|
7507
7507
|
"name": "eventually_local_fetch_no_results",
|
|
7508
|
-
"snapshot": "
|
|
7508
|
+
"snapshot": "false",
|
|
7509
7509
|
"skip_rules": {
|
|
7510
7510
|
"wont_fix": [
|
|
7511
7511
|
"region"
|
|
@@ -7518,7 +7518,7 @@
|
|
|
7518
7518
|
{
|
|
7519
7519
|
"preview_path": "primer/alpha/select_panel/remote_fetch_no_results",
|
|
7520
7520
|
"name": "remote_fetch_no_results",
|
|
7521
|
-
"snapshot": "
|
|
7521
|
+
"snapshot": "false",
|
|
7522
7522
|
"skip_rules": {
|
|
7523
7523
|
"wont_fix": [
|
|
7524
7524
|
"region"
|
|
@@ -7531,7 +7531,7 @@
|
|
|
7531
7531
|
{
|
|
7532
7532
|
"preview_path": "primer/alpha/select_panel/single_select",
|
|
7533
7533
|
"name": "single_select",
|
|
7534
|
-
"snapshot": "
|
|
7534
|
+
"snapshot": "false",
|
|
7535
7535
|
"skip_rules": {
|
|
7536
7536
|
"wont_fix": [
|
|
7537
7537
|
"region"
|
|
@@ -7544,7 +7544,7 @@
|
|
|
7544
7544
|
{
|
|
7545
7545
|
"preview_path": "primer/alpha/select_panel/multiselect",
|
|
7546
7546
|
"name": "multiselect",
|
|
7547
|
-
"snapshot": "
|
|
7547
|
+
"snapshot": "false",
|
|
7548
7548
|
"skip_rules": {
|
|
7549
7549
|
"wont_fix": [
|
|
7550
7550
|
"region"
|
|
@@ -7557,7 +7557,7 @@
|
|
|
7557
7557
|
{
|
|
7558
7558
|
"preview_path": "primer/alpha/select_panel/with_dynamic_label",
|
|
7559
7559
|
"name": "with_dynamic_label",
|
|
7560
|
-
"snapshot": "
|
|
7560
|
+
"snapshot": "false",
|
|
7561
7561
|
"skip_rules": {
|
|
7562
7562
|
"wont_fix": [
|
|
7563
7563
|
"region"
|
|
@@ -7570,7 +7570,7 @@
|
|
|
7570
7570
|
{
|
|
7571
7571
|
"preview_path": "primer/alpha/select_panel/with_dynamic_label_and_aria_prefix",
|
|
7572
7572
|
"name": "with_dynamic_label_and_aria_prefix",
|
|
7573
|
-
"snapshot": "
|
|
7573
|
+
"snapshot": "false",
|
|
7574
7574
|
"skip_rules": {
|
|
7575
7575
|
"wont_fix": [
|
|
7576
7576
|
"region"
|
|
@@ -7583,7 +7583,7 @@
|
|
|
7583
7583
|
{
|
|
7584
7584
|
"preview_path": "primer/alpha/select_panel/footer_buttons",
|
|
7585
7585
|
"name": "footer_buttons",
|
|
7586
|
-
"snapshot": "
|
|
7586
|
+
"snapshot": "false",
|
|
7587
7587
|
"skip_rules": {
|
|
7588
7588
|
"wont_fix": [
|
|
7589
7589
|
"region"
|
|
@@ -7596,7 +7596,7 @@
|
|
|
7596
7596
|
{
|
|
7597
7597
|
"preview_path": "primer/alpha/select_panel/with_avatar_items",
|
|
7598
7598
|
"name": "with_avatar_items",
|
|
7599
|
-
"snapshot": "
|
|
7599
|
+
"snapshot": "false",
|
|
7600
7600
|
"skip_rules": {
|
|
7601
7601
|
"wont_fix": [
|
|
7602
7602
|
"region"
|
|
@@ -7609,7 +7609,7 @@
|
|
|
7609
7609
|
{
|
|
7610
7610
|
"preview_path": "primer/alpha/select_panel/select_panel_with_icon_button",
|
|
7611
7611
|
"name": "select_panel_with_icon_button",
|
|
7612
|
-
"snapshot": "
|
|
7612
|
+
"snapshot": "false",
|
|
7613
7613
|
"skip_rules": {
|
|
7614
7614
|
"wont_fix": [
|
|
7615
7615
|
"region"
|
|
@@ -7622,7 +7622,7 @@
|
|
|
7622
7622
|
{
|
|
7623
7623
|
"preview_path": "primer/alpha/select_panel/with_leading_icons",
|
|
7624
7624
|
"name": "with_leading_icons",
|
|
7625
|
-
"snapshot": "
|
|
7625
|
+
"snapshot": "false",
|
|
7626
7626
|
"skip_rules": {
|
|
7627
7627
|
"wont_fix": [
|
|
7628
7628
|
"region"
|
|
@@ -7635,7 +7635,7 @@
|
|
|
7635
7635
|
{
|
|
7636
7636
|
"preview_path": "primer/alpha/select_panel/with_trailing_icons",
|
|
7637
7637
|
"name": "with_trailing_icons",
|
|
7638
|
-
"snapshot": "
|
|
7638
|
+
"snapshot": "false",
|
|
7639
7639
|
"skip_rules": {
|
|
7640
7640
|
"wont_fix": [
|
|
7641
7641
|
"region"
|
|
@@ -7648,7 +7648,7 @@
|
|
|
7648
7648
|
{
|
|
7649
7649
|
"preview_path": "primer/alpha/select_panel/with_subtitle",
|
|
7650
7650
|
"name": "with_subtitle",
|
|
7651
|
-
"snapshot": "
|
|
7651
|
+
"snapshot": "false",
|
|
7652
7652
|
"skip_rules": {
|
|
7653
7653
|
"wont_fix": [
|
|
7654
7654
|
"region"
|
|
@@ -7661,7 +7661,7 @@
|
|
|
7661
7661
|
{
|
|
7662
7662
|
"preview_path": "primer/alpha/select_panel/remote_fetch_initial_failure",
|
|
7663
7663
|
"name": "remote_fetch_initial_failure",
|
|
7664
|
-
"snapshot": "
|
|
7664
|
+
"snapshot": "false",
|
|
7665
7665
|
"skip_rules": {
|
|
7666
7666
|
"wont_fix": [
|
|
7667
7667
|
"region"
|
|
@@ -7674,7 +7674,7 @@
|
|
|
7674
7674
|
{
|
|
7675
7675
|
"preview_path": "primer/alpha/select_panel/remote_fetch_filter_failure",
|
|
7676
7676
|
"name": "remote_fetch_filter_failure",
|
|
7677
|
-
"snapshot": "
|
|
7677
|
+
"snapshot": "false",
|
|
7678
7678
|
"skip_rules": {
|
|
7679
7679
|
"wont_fix": [
|
|
7680
7680
|
"region"
|
|
@@ -7687,7 +7687,7 @@
|
|
|
7687
7687
|
{
|
|
7688
7688
|
"preview_path": "primer/alpha/select_panel/eventually_local_fetch_initial_failure",
|
|
7689
7689
|
"name": "eventually_local_fetch_initial_failure",
|
|
7690
|
-
"snapshot": "
|
|
7690
|
+
"snapshot": "false",
|
|
7691
7691
|
"skip_rules": {
|
|
7692
7692
|
"wont_fix": [
|
|
7693
7693
|
"region"
|
|
@@ -7700,7 +7700,7 @@
|
|
|
7700
7700
|
{
|
|
7701
7701
|
"preview_path": "primer/alpha/select_panel/single_select_form",
|
|
7702
7702
|
"name": "single_select_form",
|
|
7703
|
-
"snapshot": "
|
|
7703
|
+
"snapshot": "false",
|
|
7704
7704
|
"skip_rules": {
|
|
7705
7705
|
"wont_fix": [
|
|
7706
7706
|
"region"
|
|
@@ -7713,7 +7713,7 @@
|
|
|
7713
7713
|
{
|
|
7714
7714
|
"preview_path": "primer/alpha/select_panel/remote_fetch_form",
|
|
7715
7715
|
"name": "remote_fetch_form",
|
|
7716
|
-
"snapshot": "
|
|
7716
|
+
"snapshot": "false",
|
|
7717
7717
|
"skip_rules": {
|
|
7718
7718
|
"wont_fix": [
|
|
7719
7719
|
"region"
|
|
@@ -7726,7 +7726,7 @@
|
|
|
7726
7726
|
{
|
|
7727
7727
|
"preview_path": "primer/alpha/select_panel/multiselect_form",
|
|
7728
7728
|
"name": "multiselect_form",
|
|
7729
|
-
"snapshot": "
|
|
7729
|
+
"snapshot": "false",
|
|
7730
7730
|
"skip_rules": {
|
|
7731
7731
|
"wont_fix": [
|
|
7732
7732
|
"region"
|
|
@@ -7739,7 +7739,7 @@
|
|
|
7739
7739
|
{
|
|
7740
7740
|
"preview_path": "primer/alpha/select_panel/list_of_links",
|
|
7741
7741
|
"name": "list_of_links",
|
|
7742
|
-
"snapshot": "
|
|
7742
|
+
"snapshot": "false",
|
|
7743
7743
|
"skip_rules": {
|
|
7744
7744
|
"wont_fix": [
|
|
7745
7745
|
"region"
|
|
@@ -7752,7 +7752,7 @@
|
|
|
7752
7752
|
{
|
|
7753
7753
|
"preview_path": "primer/alpha/select_panel/no_values",
|
|
7754
7754
|
"name": "no_values",
|
|
7755
|
-
"snapshot": "
|
|
7755
|
+
"snapshot": "false",
|
|
7756
7756
|
"skip_rules": {
|
|
7757
7757
|
"wont_fix": [
|
|
7758
7758
|
"region"
|
|
@@ -8182,6 +8182,32 @@
|
|
|
8182
8182
|
]
|
|
8183
8183
|
}
|
|
8184
8184
|
},
|
|
8185
|
+
{
|
|
8186
|
+
"preview_path": "primer/open_project/sub_header/collapsed_search",
|
|
8187
|
+
"name": "collapsed_search",
|
|
8188
|
+
"snapshot": "false",
|
|
8189
|
+
"skip_rules": {
|
|
8190
|
+
"wont_fix": [
|
|
8191
|
+
"region"
|
|
8192
|
+
],
|
|
8193
|
+
"will_fix": [
|
|
8194
|
+
"color-contrast"
|
|
8195
|
+
]
|
|
8196
|
+
}
|
|
8197
|
+
},
|
|
8198
|
+
{
|
|
8199
|
+
"preview_path": "primer/open_project/sub_header/quick_filters",
|
|
8200
|
+
"name": "quick_filters",
|
|
8201
|
+
"snapshot": "false",
|
|
8202
|
+
"skip_rules": {
|
|
8203
|
+
"wont_fix": [
|
|
8204
|
+
"region"
|
|
8205
|
+
],
|
|
8206
|
+
"will_fix": [
|
|
8207
|
+
"color-contrast"
|
|
8208
|
+
]
|
|
8209
|
+
}
|
|
8210
|
+
},
|
|
8185
8211
|
{
|
|
8186
8212
|
"preview_path": "primer/open_project/sub_header/bottom_pane",
|
|
8187
8213
|
"name": "bottom_pane",
|
|
@@ -8615,7 +8641,7 @@
|
|
|
8615
8641
|
{
|
|
8616
8642
|
"preview_path": "primer/alpha/text_area/with_character_limit_over_limit",
|
|
8617
8643
|
"name": "with_character_limit_over_limit",
|
|
8618
|
-
"snapshot": "
|
|
8644
|
+
"snapshot": "false",
|
|
8619
8645
|
"skip_rules": {
|
|
8620
8646
|
"wont_fix": [
|
|
8621
8647
|
"region"
|
|
@@ -8961,7 +8987,7 @@
|
|
|
8961
8987
|
{
|
|
8962
8988
|
"preview_path": "primer/alpha/text_field/with_character_limit_over_limit",
|
|
8963
8989
|
"name": "with_character_limit_over_limit",
|
|
8964
|
-
"snapshot": "
|
|
8990
|
+
"snapshot": "false",
|
|
8965
8991
|
"skip_rules": {
|
|
8966
8992
|
"wont_fix": [
|
|
8967
8993
|
"region"
|