Updated all the contrib modules to their latest versions.
[yaffs-website] / web / modules / contrib / paragraphs / templates / paragraphs-actions.html.twig
diff --git a/web/modules/contrib/paragraphs/templates/paragraphs-actions.html.twig b/web/modules/contrib/paragraphs/templates/paragraphs-actions.html.twig
deleted file mode 100644 (file)
index b319c4a..0000000
+++ /dev/null
@@ -1,29 +0,0 @@
-{#
-/**
- * @file
- * Default theme implementation for a paragraphs actions component.
- *
- * Available variables:
- * - actions - default actions, always visible and not in dropdown.
- * - dropdown_actions - actions for dropdown subcomponent.
- *
- * @see template_preprocess()
- *
- * @ingroup themeable
- */
-#}
-<div class="paragraphs-actions">
-  {{ actions }}
-  {# We are still using access attribute on some places to disable dropdown
-     actions and that is why we will first render dropdown_actions and then
-     render dropdown subcomoponent if needed. #}
-  {% set dropdown_actions_output = render_var(dropdown_actions) %}
-  {% if dropdown_actions_output %}
-    <div class="paragraphs-dropdown">
-      <button class="paragraphs-dropdown-toggle"><span class="visually-hidden">{% trans %}Toggle Actions{% endtrans %}</span></button>
-      <div class="paragraphs-dropdown-actions">
-        {{ dropdown_actions_output }}
-      </div>
-    </div>
-  {% endif %}
-</div>