Commit 40de3a64 authored by Christian Fritsch's avatar Christian Fritsch
Browse files

Issue #3288996 by chr.fritsch, Project Update Bot, daniel.bosen: Automated...

Issue #3288996 by chr.fritsch, Project Update Bot, daniel.bosen: Automated Drupal 10 compatibility fixes
parent 7d83baa5
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -11,7 +11,7 @@
    ],
    "require": {
        "ext-json": "*",
        "drupal/paragraphs": "^1.10",
        "drupal/paragraphs": "^1.13",
        "netcarver/textile": "^3.7"
    },
    "require-dev": {
+2 −3
Original line number Diff line number Diff line
@@ -2,7 +2,6 @@ name: 'Paragraphs Paste'
type: module
description: 'Creates paragraphs from pasted content.'
package: Paragraphs
core_version_requirement: ^8.8 || ^9
core_version_requirement: ^9 || ^10
dependencies:
  - paragraphs:paragraphs (>= 8.x-1.13)
  - drupal:ckeditor
  - paragraphs:paragraphs
+1 −1
Original line number Diff line number Diff line
@@ -46,7 +46,7 @@ class PropertyPathAutocompleteController extends ControllerBase {
   */
  public function handleAutocomplete(Request $request) {
    $string = $request->query->get('q');
    $types = $request->query->get('allowed_field_types', []);
    $types = $request->query->all()['allowed_field_types'] ?? [];
    if (substr_count($string, '.') == 0) {
      $searchKeyword = "";
      $matches = [
+45 −34
Original line number Diff line number Diff line
@@ -4,44 +4,55 @@ dependencies:
  config:
    - filter.format.basic_html
  module:
    - ckeditor
    - ckeditor5
format: basic_html
editor: ckeditor
editor: ckeditor5
settings:
  toolbar:
    rows:
      -
        -
          name: Formatting
    items:
            - Bold
            - Italic
        -
          name: Linking
          items:
            - DrupalLink
            - DrupalUnlink
        -
          name: Lists
          items:
            - BulletedList
            - NumberedList
        -
          name: Media
          items:
            - Blockquote
            - DrupalImage
        -
          name: 'Block Formatting'
          items:
            - Format
        -
          name: Tools
          items:
            - Source
      - bold
      - italic
      - '|'
      - link
      - '|'
      - bulletedList
      - numberedList
      - '|'
      - blockQuote
      - drupalInsertImage
      - '|'
      - heading
      - code
      - '|'
      - sourceEditing
  plugins:
    stylescombo:
      styles: ''
    ckeditor5_heading:
      enabled_headings:
        - heading2
        - heading3
        - heading4
        - heading5
        - heading6
    ckeditor5_imageResize:
      allow_resize: true
    ckeditor5_list:
      reversed: false
      startIndex: true
    ckeditor5_sourceEditing:
      allowed_tags:
        - '<cite>'
        - '<dl>'
        - '<dt>'
        - '<dd>'
        - '<a hreflang>'
        - '<blockquote cite>'
        - '<ul type>'
        - '<ol start type>'
        - '<h2 id>'
        - '<h3 id>'
        - '<h4 id>'
        - '<h5 id>'
        - '<h6 id>'
image_upload:
  status: true
  scheme: public
+1 −0
Original line number Diff line number Diff line
@@ -7,3 +7,4 @@ dependencies:
  - drupal:node
  - drupal:text
  - drupal:media
  - drupal:ckeditor5
Loading