diff --git a/config/config.php b/config/config.php deleted file mode 100644 index cf52356..0000000 --- a/config/config.php +++ /dev/null @@ -1,179 +0,0 @@ - [ - 'tools' => [ - 'header' => [ - 'text' => [ - 'type' => 'string', - ], - 'level' => [ - 'type' => 'int', - 'canBeOnly' => [1, 2, 3, 4, 5] - ] - ], - 'paragraph' => [ - 'text' => [ - 'type' => 'string', - 'allowedTags' => 'i,b,u,a[href],span[class],code[class],mark[class]' - ] - ], - 'list' => [ - 'style' => [ - 'type' => 'string', - 'canBeOnly' => - [ - 0 => 'ordered', - 1 => 'unordered', - ], - ], - 'items' => [ - 'type' => 'array', - 'data' => [ - '-' => [ - 'type' => 'string', - 'allowedTags' => 'i,b,u', - ], - ], - ], - ], - 'image' => [ - 'file' => [ - 'type' => 'array', - 'data' => [ - 'url' => [ - 'type' => 'string', - ], - 'thumbnails' => [ - 'type' => 'array', - 'required' => false, - 'data' => [ - '-' => [ - 'type' => 'string', - ] - ], - ] - ], - ], - 'caption' => [ - 'type' => 'string' - ], - 'withBorder' => [ - 'type' => 'boolean' - ], - 'withBackground' => [ - 'type' => 'boolean' - ], - 'stretched' => [ - 'type' => 'boolean' - ] - ], - 'code' => [ - 'code' => [ - 'type' => 'string' - ] - ], - 'linkTool' => [ - 'link' => [ - 'type' => 'string' - ], - 'meta' => [ - 'type' => 'array', - 'data' => [ - 'title' => [ - 'type' => 'string', - ], - 'description' => [ - 'type' => 'string', - ], - 'image' => [ - 'type' => 'array', - 'data' => [ - 'url' => [ - 'type' => 'string', - ], - ] - ] - ] - ] - ], - 'checklist' => [ - 'items' => [ - 'type' => 'array', - 'data' => [ - '-' => [ - 'type' => 'array', - 'data' => [ - 'text' => [ - 'type' => 'string', - 'required' => false - ], - 'checked' => [ - 'type' => 'boolean', - 'required' => false - ], - ], - - ], - ], - ], - ], - 'delimiter' => [ - - ], - 'table' => [ - 'content' => [ - 'type' => 'array', - 'data' => [ - '-' => [ - 'type' => 'array', - 'data' => [ - '-' => [ - 'type' => 'string', - ] - ] - ] - ] - ] - ], - 'raw' => [ - 'html' => [ - 'type' => 'string', - 'allowedTags' => '*', - ] - ], - 'embed' => [ - 'service' => [ - 'type' => 'string' - ], - 'source' => [ - 'type' => 'string' - ], - 'embed' => [ - 'type' => 'string' - ], - 'width' => [ - 'type' => 'int' - ], - 'height' => [ - 'type' => 'int' - ], - 'caption' => [ - 'type' => 'string', - 'required' => false, - ], - ], - 'quote' => [ - 'text' => [ - 'type' => 'string', - ], - 'alignment' => [ - 'type' => 'string', - ], - 'caption' => [ - 'type' => 'string', - ], - ], - ] - ] -]; diff --git a/updates/version.yaml b/updates/version.yaml index 4d4c3e2..fa6338d 100644 --- a/updates/version.yaml +++ b/updates/version.yaml @@ -36,3 +36,4 @@ 1.8.1: Fixed bug with blocknames. Thanks @sergeitoroptsev 1.9.0: Added event to extend editorjs config right before render 1.9.1: Fix errors if extension plugin doesnt have new methods +1.9.2: Removed deprecated config