Add listkit to tiptap extension in workflow node (#15363)

## Description

- This PR address issue -
https://github.com/twentyhq/core-team-issues/issues/1768
- Added listkit bundle from tiptap which includes BulletList,
orderedList, ListItem and ListKeymap in one single import
- This bundle also includes keyboards shortcuts - `Cmd + Shift + 7` and
`Cmd + Shift + 8` for ordered and bullet list

## Visual Appearance



https://github.com/user-attachments/assets/7eff1233-8503-4854-bad2-2521898bc568


## Why this Approach

- our current version of tiptap is 3.4.2 while the latest is 3.8.0 hence
installing these versions manually would install the latest version of
3.8.0. The issue when downgrading to 3.4.2 was that Version 3.8.0 of
`@tiptap/extension-list` requires `renderNestedMarkdownContent` from
@tiptap/core
but our `@tiptap/core` version 3.4.2 doesn't export this function.
This commit is contained in:
Harshit Singh
2025-10-29 20:31:54 +05:30
committed by GitHub
parent 0070fc10f8
commit be3ceca0a3
12 changed files with 236 additions and 1 deletions
@@ -66,6 +66,11 @@ const StyledEditorContainer = styled.div<{
h3 {
font-size: 24px;
}
li {
margin-bottom: ${({ theme }) => theme.spacing(2)};
line-height: 1.5;
}
}
.ProseMirror-focused {