nested-list icon indicating copy to clipboard operation
nested-list copied to clipboard

Multi-leveled lists for the Editor.js.

Results 40 nested-list issues
Sort by recently updated
recently updated
newest added

update Line 106 in the `constructor`: ``` //this.data = data && Object.keys(data).length ? data : initialData; this.data = initialData; if(data && data.items && data.items.length > 0){ this.data.style = data.style; const...

enhancement
good first issue

Hi, thanks for the the plugin works! It works well for most scenarios. I noticed this weird behaviour happens when the user has content which is fully inline edited, like...

Right now, I can't seem to convert existing content to a list format. First getting a single element to a list is good, but ultimately I should be able to...

This PR is related to the #75 issue This PR is a part of global work on List 2.0 ## Problems - Can not convert from list to check list...

We're gonna improve list creation experience: - Merge [List](https://github.com/editor-js/list), [NestedList](https://github.com/editor-js/nested-list), [Checklist](https://github.com/editor-js/checklist) into a single tool - Old list tool and checklist will be archived - NestedList will be renamed to...

I have a nested list of items and click on one of them, setting the cursor to the middle or end of the item. When I hit the backspace or...

Closes #43 This is done in a different manner than https://github.com/editor-js/nested-list/pull/44, as it refocuses the caret on the next item in the list.

**Steps:** 1. Add a list 2. Fill in any text in 2 lines of the list 3. Press Enter 4. Return to the last line of the list with entered...

` list : { class: NestedList, config: { defaultStyle: 'ordered', }, inlineToolbar: true, shortcut:'CTRL+L' }` When I use the defaultStyle of ordered, and I set the shortcut, but when I...

```ts import { BlockToolConstructorOptions } from '@editorjs/editorjs/types/tools'; import type { NestedListParams } from '@editorjs/nested-list'; import NestedList from '@editorjs/nested-list'; // copied from original code == start == type ListDataStyle = 'ordered'...