Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: moveyourdigital/editorjs-blocks-react-renderer
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v1.2.0
Choose a base ref
...
head repository: moveyourdigital/editorjs-blocks-react-renderer
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v1.2.1
Choose a head ref
  • 14 commits
  • 33 files changed
  • 1 contributor

Commits on Oct 25, 2021

  1. Added example for CRA

    lightningspirit committed Oct 25, 2021
    Configuration menu
    Copy the full SHA
    94d4647 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    afd0e9a View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    7d519b5 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    7cbc87a View commit details
    Browse the repository at this point in the history

Commits on Oct 27, 2021

  1. Support NestedList

    Editor.js now has a NestedList tool which (unfortunately) uses the
    same block name "list" as the simple List block tool.
    
    As such, this adds support to nested ul and ol tags following
    the output showed in
    https://github.com/editor-js/nested-list#output-data
    
    Here's an example of such output data:
    ```json
    {
        "type" : "list",
        "data" : {
            "style" : "unordered",
            "items" : [
                {
                  "content": "Apples",
                  "items": [
                    {
                      "content": "Red",
                      "items": []
                    },
                    {
                      "content": "Green",
                      "items": []
                    },
                  ]
                },
                {
                  "content": "Bananas",
                  "items": [
                    {
                      "content": "Yellow",
                      "items": []
                    },
                  ]
                },
            ]
        }
    }
    ```
    
    Closes #30
    lightningspirit committed Oct 27, 2021
    Configuration menu
    Copy the full SHA
    7c737c1 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    61480c9 View commit details
    Browse the repository at this point in the history
  3. Adds support to SimpleImage

    This block is just a variation of the Image block, where the `file`
    is replaced by a simple `url` string.
    
    Closes #23
    lightningspirit committed Oct 27, 2021
    Configuration menu
    Copy the full SHA
    279b3bb View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    1928144 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    599fa3e View commit details
    Browse the repository at this point in the history
  6. Fix Table block with new format

    The new format assumes that withHeadings property only applies to
    the first row.
    
    This makes our table renderer compatible with both formats.
    
    Closes #34
    lightningspirit committed Oct 27, 2021
    Configuration menu
    Copy the full SHA
    57cc76c View commit details
    Browse the repository at this point in the history
  7. Merge pull request #32 from moveyourdigital/issue-23-implement-simple…

    …-image
    
    Adds support to SimpleImage
    lightningspirit authored Oct 27, 2021
    Configuration menu
    Copy the full SHA
    5cde74a View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    c6f8927 View commit details
    Browse the repository at this point in the history
  9. Merge pull request #35 from moveyourdigital/issue-34-fix-table

    Fix Table block with new format
    lightningspirit authored Oct 27, 2021
    Configuration menu
    Copy the full SHA
    3a4cc5b View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    e6392ff View commit details
    Browse the repository at this point in the history
Loading