Update Composer, update everything
This commit is contained in:
parent
ea3e94409f
commit
dda5c284b6
19527 changed files with 1135420 additions and 351004 deletions
|
@ -28,6 +28,9 @@ email:
|
|||
integer:
|
||||
label: 'Integer'
|
||||
class: '\Drupal\Core\TypedData\Plugin\DataType\IntegerData'
|
||||
timestamp:
|
||||
label: 'Timestamp'
|
||||
class: '\Drupal\Core\TypedData\Plugin\DataType\Timestamp'
|
||||
float:
|
||||
label: 'Float'
|
||||
class: '\Drupal\Core\TypedData\Plugin\DataType\FloatData'
|
||||
|
@ -46,7 +49,7 @@ mapping:
|
|||
sequence:
|
||||
label: Sequence
|
||||
class: '\Drupal\Core\Config\Schema\Sequence'
|
||||
definition_class: '\Drupal\Core\TypedData\ListDataDefinition'
|
||||
definition_class: '\Drupal\Core\Config\Schema\SequenceDataDefinition'
|
||||
|
||||
# Simple extended data types:
|
||||
|
||||
|
@ -72,6 +75,13 @@ text:
|
|||
label: 'Text'
|
||||
translatable: true
|
||||
|
||||
# A UUID.
|
||||
uuid:
|
||||
type: string
|
||||
label: 'UUID'
|
||||
constraints:
|
||||
Uuid: {}
|
||||
|
||||
# PHP Date format string that is translatable.
|
||||
date_format:
|
||||
type: string
|
||||
|
@ -206,23 +216,6 @@ theme_settings:
|
|||
sequence:
|
||||
type: theme_settings.third_party.[%key]
|
||||
|
||||
views_field_bulk_form:
|
||||
type: views_field
|
||||
label: 'Bulk operation'
|
||||
mapping:
|
||||
action_title:
|
||||
type: label
|
||||
label: 'Action title'
|
||||
include_exclude:
|
||||
type: string
|
||||
label: 'Available actions'
|
||||
selected_actions:
|
||||
type: sequence
|
||||
label: 'Available actions'
|
||||
sequence:
|
||||
type: string
|
||||
label: 'Action'
|
||||
|
||||
# Array of routes with route_name and route_params keys.
|
||||
route:
|
||||
type: mapping
|
||||
|
@ -275,7 +268,7 @@ config_entity:
|
|||
type: mapping
|
||||
mapping:
|
||||
uuid:
|
||||
type: string
|
||||
type: uuid
|
||||
label: 'UUID'
|
||||
langcode:
|
||||
type: string
|
||||
|
@ -294,6 +287,9 @@ config_entity:
|
|||
_core:
|
||||
type: _core_config_info
|
||||
|
||||
block.settings.*:
|
||||
type: block_settings
|
||||
|
||||
block_settings:
|
||||
type: mapping
|
||||
label: 'Block settings'
|
||||
|
@ -336,8 +332,7 @@ condition.plugin:
|
|||
type: boolean
|
||||
label: 'Negate'
|
||||
uuid:
|
||||
type: string
|
||||
label: 'UUID'
|
||||
type: uuid
|
||||
context_mapping:
|
||||
type: sequence
|
||||
label: 'Context assignments'
|
||||
|
@ -358,8 +353,7 @@ display_variant.plugin:
|
|||
type: integer
|
||||
label: 'Weight'
|
||||
uuid:
|
||||
type: string
|
||||
label: 'UUID'
|
||||
type: uuid
|
||||
|
||||
layout_plugin.settings:
|
||||
type: mapping
|
||||
|
@ -602,8 +596,7 @@ field.value.entity_reference:
|
|||
type: string
|
||||
label: 'Value'
|
||||
target_uuid:
|
||||
type: string
|
||||
label: 'Target UUID'
|
||||
type: uuid
|
||||
|
||||
# Schema for the configuration of the Boolean field type.
|
||||
|
||||
|
@ -753,6 +746,16 @@ field.value.float:
|
|||
type: float
|
||||
label: 'Value'
|
||||
|
||||
# Schema for the configuration of the Timestamp field type.
|
||||
|
||||
field.value.timestamp:
|
||||
type: mapping
|
||||
label: 'Timestamp value'
|
||||
mapping:
|
||||
value:
|
||||
type: timestamp
|
||||
label: 'Value'
|
||||
|
||||
# Text with a text format.
|
||||
text_format:
|
||||
type: mapping
|
||||
|
@ -776,11 +779,24 @@ text_format:
|
|||
# The text format should not be translated as part of the string
|
||||
# translation system, so this is not marked as translatable.
|
||||
|
||||
# Schema for the configuration of the Entity reference selection plugins.
|
||||
|
||||
# Base schema for all entity reference selection handler schemas.
|
||||
entity_reference_selection:
|
||||
type: mapping
|
||||
label: 'Entity reference selection plugin configuration'
|
||||
label: 'Entity reference selection handler settings'
|
||||
mapping:
|
||||
target_type:
|
||||
type: string
|
||||
label: 'Type of item to reference'
|
||||
|
||||
# Schema for all entity reference selection handlers that are not providing a
|
||||
# specific schema.
|
||||
entity_reference_selection.*:
|
||||
type: entity_reference_selection
|
||||
|
||||
# Schema for the entity reference 'default' selection handler settings.
|
||||
entity_reference_selection.default:
|
||||
type: entity_reference_selection
|
||||
label: 'Default selection handler settings'
|
||||
mapping:
|
||||
target_bundles:
|
||||
type: sequence
|
||||
|
@ -788,7 +804,7 @@ entity_reference_selection:
|
|||
nullable: true
|
||||
sequence:
|
||||
type: string
|
||||
label: 'Type'
|
||||
label: 'Bundle'
|
||||
sort:
|
||||
type: mapping
|
||||
label: 'Sort settings'
|
||||
|
@ -806,5 +822,7 @@ entity_reference_selection:
|
|||
type: string
|
||||
label: 'Bundle assigned to the auto-created entities.'
|
||||
|
||||
entity_reference_selection.*:
|
||||
type: entity_reference_selection
|
||||
# Schema for all entity reference 'default:*' selection handlers that are not
|
||||
# providing a specific schema.
|
||||
entity_reference_selection.default:*:
|
||||
type: entity_reference_selection.default
|
||||
|
|
|
@ -55,29 +55,7 @@ core.entity_view_display.*.*.*:
|
|||
type: sequence
|
||||
label: 'Field formatters'
|
||||
sequence:
|
||||
type: mapping
|
||||
label: 'Field formatter'
|
||||
mapping:
|
||||
type:
|
||||
type: string
|
||||
label: 'Format type machine name'
|
||||
weight:
|
||||
type: integer
|
||||
label: 'Weight'
|
||||
region:
|
||||
type: string
|
||||
label: 'Region'
|
||||
label:
|
||||
type: string
|
||||
label: 'Label setting machine name'
|
||||
settings:
|
||||
type: field.formatter.settings.[%parent.type]
|
||||
label: 'Settings'
|
||||
third_party_settings:
|
||||
type: sequence
|
||||
label: 'Third party settings'
|
||||
sequence:
|
||||
type: field.formatter.third_party.[%key]
|
||||
type: field_formatter.entity_view_display
|
||||
hidden:
|
||||
type: sequence
|
||||
label: 'Field display setting'
|
||||
|
@ -85,6 +63,35 @@ core.entity_view_display.*.*.*:
|
|||
type: boolean
|
||||
label: 'Value'
|
||||
|
||||
field_formatter:
|
||||
type: mapping
|
||||
label: 'Field formatter'
|
||||
mapping:
|
||||
type:
|
||||
type: string
|
||||
label: 'Format type machine name'
|
||||
label:
|
||||
type: string
|
||||
label: 'Label setting machine name'
|
||||
settings:
|
||||
type: field.formatter.settings.[%parent.type]
|
||||
label: 'Settings'
|
||||
third_party_settings:
|
||||
type: sequence
|
||||
label: 'Third party settings'
|
||||
sequence:
|
||||
type: field.formatter.third_party.[%key]
|
||||
|
||||
field_formatter.entity_view_display:
|
||||
type: field_formatter
|
||||
mapping:
|
||||
weight:
|
||||
type: integer
|
||||
label: 'Weight'
|
||||
region:
|
||||
type: string
|
||||
label: 'Region'
|
||||
|
||||
# Overview configuration information for form mode displays.
|
||||
core.entity_form_display.*.*.*:
|
||||
type: config_entity
|
||||
|
@ -362,3 +369,13 @@ field.formatter.settings.entity_reference_label:
|
|||
type: boolean
|
||||
label: 'Link label to the referenced entity'
|
||||
|
||||
block.settings.field_block:*:*:*:
|
||||
type: block_settings
|
||||
mapping:
|
||||
formatter:
|
||||
type: field_formatter
|
||||
|
||||
# Schema for entity actions.
|
||||
action.configuration.entity:*:*:
|
||||
type: action_configuration_default
|
||||
label: 'Entity action'
|
||||
|
|
Reference in a new issue