Update Composer, update everything
This commit is contained in:
parent
ea3e94409f
commit
dda5c284b6
19527 changed files with 1135420 additions and 351004 deletions
|
@ -10,11 +10,17 @@
|
|||
* - content: (optional) The content of the block.
|
||||
* - description: (optional) A description of the block.
|
||||
* (Description should only be output if content is not available).
|
||||
* - attributes: HTML attributes for the containing div element.
|
||||
*
|
||||
* @ingroup themeable
|
||||
*/
|
||||
#}
|
||||
<div class="panel">
|
||||
{%
|
||||
set classes = [
|
||||
'panel',
|
||||
]
|
||||
%}
|
||||
<div{{ attributes.addClass(classes) }}>
|
||||
{% if block.title %}
|
||||
<h3 class="panel__title">{{ block.title }}</h3>
|
||||
{% endif %}
|
||||
|
|
|
@ -38,6 +38,11 @@
|
|||
* @ingroup themeable
|
||||
*/
|
||||
#}
|
||||
{%
|
||||
set title_classes = [
|
||||
label_display == 'visually_hidden' ? 'visually-hidden',
|
||||
]
|
||||
%}
|
||||
|
||||
{% if label_hidden %}
|
||||
{% if multiple %}
|
||||
|
@ -53,7 +58,7 @@
|
|||
{% endif %}
|
||||
{% else %}
|
||||
<div{{ attributes }}>
|
||||
<div{{ title_attributes }}>{{ label }}</div>
|
||||
<div{{ title_attributes.addClass(title_classes) }}>{{ label }}</div>
|
||||
{% if multiple %}
|
||||
<div>
|
||||
{% endif %}
|
||||
|
|
|
@ -0,0 +1,26 @@
|
|||
{#
|
||||
/**
|
||||
* @file
|
||||
* Default theme implementation for a page wrapper.
|
||||
*
|
||||
* For consistent wrapping to {{ page }} render in all themes. The
|
||||
* "data-off-canvas-main-canvas" attribute is required by the off-canvas dialog.
|
||||
* This is used by the core/drupal.dialog.off_canvas library to select the
|
||||
* "main canvas" page element as opposed to the "off canvas" which is the dialog
|
||||
* itself. The "main canvas" element must be resized according to the width of
|
||||
* the "off canvas" dialog so that no portion of the "main canvas" is obstructed
|
||||
* by the off-canvas dialog. The off-canvas dialog can vary in width when opened
|
||||
* and can be resized by the user. The "data-off-canvas-main-canvas" attribute
|
||||
* cannot be removed without breaking the off-canvas dialog functionality.
|
||||
*
|
||||
* Available variables:
|
||||
* - children: Contains the child elements of the page.
|
||||
*
|
||||
* @ingroup themeable
|
||||
*/
|
||||
#}
|
||||
{% if children %}
|
||||
<div class="dialog-off-canvas-main-canvas" data-off-canvas-main-canvas>
|
||||
{{ children }}
|
||||
</div>
|
||||
{% endif %}
|
|
@ -15,8 +15,6 @@
|
|||
* Available variables:
|
||||
* - message_list: List of messages to be displayed, grouped by type.
|
||||
* - status_headings: List of all status types.
|
||||
* - display: (optional) May have a value of 'status' or 'error' when only
|
||||
* displaying messages of that specific type.
|
||||
* - attributes: HTML attributes for the element, including:
|
||||
* - class: HTML classes.
|
||||
*
|
||||
|
|
|
@ -23,7 +23,7 @@
|
|||
<div>
|
||||
<h3 id="{{ group.type }}">{{ group.title }}</h3>
|
||||
{% for requirement in group.items %}
|
||||
<details class="system-status-report__entry">
|
||||
<details class="system-status-report__entry" open>
|
||||
{%
|
||||
set summary_classes = [
|
||||
'system-status-report__status-title',
|
||||
|
|
|
@ -24,7 +24,7 @@
|
|||
* @ingroup themeable
|
||||
*/
|
||||
#}
|
||||
<table class="responsive-enabled" data-striping="1">
|
||||
<table class="responsive-enabled">
|
||||
<thead>
|
||||
<tr>
|
||||
<th class="checkbox visually-hidden">{{ 'Installed'|t }}</th>
|
||||
|
|
|
@ -23,7 +23,7 @@
|
|||
#}
|
||||
{{ form.filters }}
|
||||
|
||||
<table class="responsive-enabled" data-striping="1">
|
||||
<table class="responsive-enabled">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>{{ 'Uninstall'|t }}</th>
|
||||
|
|
Reference in a new issue