Skip to content

Commit

Permalink
Merge pull request #16 from GSA/feature/dg-25-enable-auto-complete
Browse files Browse the repository at this point in the history
Enable Auto complete module
  • Loading branch information
mattsqd authored Oct 15, 2024
2 parents 7253e94 + 71c2583 commit d4be6fc
Show file tree
Hide file tree
Showing 14 changed files with 371 additions and 84 deletions.
1 change: 1 addition & 0 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
"drupal/default_content": "^2.0@alpha",
"drupal/field_group": "^3.6",
"drupal/field_permissions": "^1.3",
"drupal/inline_entity_form": "^3.0@RC",
"drupal/linkit": "^6.1",
"drupal/maillog": "dev-1.x",
"drupal/mailsystem": "^4.4",
Expand Down
138 changes: 137 additions & 1 deletion composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions composer.log
Original file line number Diff line number Diff line change
Expand Up @@ -18,3 +18,4 @@ ae2759e9c45acbf0d8378d04e842d0a8|Matt Poole|develop|Tue Jul 2 13:45:43 EDT 2024
3c60f8865d24ef2346cc2379cf42e591|Matt Poole|feature/1942-convert-callback|Fri Oct 4 10:49:29 EDT 2024|./composer.sh require league/commonmark
8a86ff66fb8673b6889c9c4b0ab02673|Christian Medders|feature/config-content-types|Fri Oct 11 10:58:09 EDT 2024|./composer.sh require drupal/field_group
4df8b37fbf31532557c120dddc00593b|Cathy Baptista|feature/dg-26-add-paragraphs-to-content-types|Fri Oct 11 12:00:34 EDT 2024|./composer.sh require drupal/paragraphs
834a753fafaa65adba97795d28e5f6b0|Christian Medders|feature/dg-25-enable-auto-complete|Tue Oct 15 14:25:50 EDT 2024|./composer.sh require drupal/inline_entity_form:^3.0@RC
39 changes: 29 additions & 10 deletions config/sync/core.entity_form_display.node.event.default.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ dependencies:
module:
- content_moderation
- datetime
- inline_entity_form
- link
- media_library
- paragraphs
Expand All @@ -52,14 +53,22 @@ content:
settings: { }
third_party_settings: { }
field_authors:
type: entity_reference_autocomplete
type: inline_entity_form_complex
weight: 21
region: content
settings:
form_mode: default
override_labels: false
label_singular: ''
label_plural: ''
allow_new: true
allow_existing: true
match_operator: CONTAINS
match_limit: 10
size: 60
placeholder: ''
allow_duplicate: false
collapsible: true
collapsed: true
revision: false
removed_reference: optional
third_party_settings: { }
field_captions:
type: link_default
Expand Down Expand Up @@ -159,14 +168,22 @@ content:
placeholder: ''
third_party_settings: { }
field_topics:
type: entity_reference_autocomplete
type: inline_entity_form_complex
weight: 20
region: content
settings:
form_mode: default
override_labels: false
label_singular: ''
label_plural: ''
allow_new: true
allow_existing: true
match_operator: CONTAINS
match_limit: 10
size: 60
placeholder: ''
allow_duplicate: false
collapsible: true
collapsed: true
revision: false
removed_reference: optional
third_party_settings: { }
field_venue:
type: paragraphs
Expand All @@ -175,15 +192,17 @@ content:
settings:
title: Paragraph
title_plural: Paragraphs
edit_mode: open
edit_mode: closed
closed_mode: summary
autocollapse: none
closed_mode_threshold: 0
add_mode: dropdown
form_display_mode: default
default_paragraph_type: ''
default_paragraph_type: venue
features:
add_above: '0'
collapse_edit_all: collapse_edit_all
convert: '0'
duplicate: duplicate
third_party_settings: { }
field_youtube_id:
Expand Down
33 changes: 25 additions & 8 deletions config/sync/core.entity_form_display.node.guides.default.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ dependencies:
- node.type.guides
module:
- content_moderation
- inline_entity_form
- media_library
- text
id: node.guides.default
Expand Down Expand Up @@ -90,14 +91,22 @@ content:
display_label: true
third_party_settings: { }
field_topics:
type: entity_reference_autocomplete
type: inline_entity_form_complex
weight: 13
region: content
settings:
form_mode: default
override_labels: false
label_singular: ''
label_plural: ''
allow_new: true
allow_existing: true
match_operator: CONTAINS
match_limit: 10
size: 60
placeholder: ''
allow_duplicate: false
collapsible: true
collapsed: true
revision: false
removed_reference: optional
third_party_settings: { }
moderation_state:
type: moderation_state_default
Expand All @@ -121,14 +130,22 @@ content:
placeholder: ''
third_party_settings: { }
uid:
type: entity_reference_autocomplete
type: inline_entity_form_complex
weight: 5
region: content
settings:
form_mode: default
override_labels: false
label_singular: ''
label_plural: ''
allow_new: true
allow_existing: true
match_operator: CONTAINS
match_limit: 10
size: 60
placeholder: ''
allow_duplicate: false
collapsible: true
collapsed: true
revision: false
removed_reference: optional
third_party_settings: { }
hidden:
promote: true
Expand Down
Loading

0 comments on commit d4be6fc

Please sign in to comment.