have somebody managed to get working composable editor from atlaskit with list plugin? I went through migration proces to the latest version(198.6.11) with code below. List plugin does not work
const { preset } = usePreset(() =>
createDefaultPreset({
placeholder: { placeholder: "Add a description…" },
codeBlock: { allowCopyToClipboard: false, useLongPressSelection: false },
quickInsert: undefined,
featureFlags: {
placeholderBracketHint: true,
},
})
.add(alignmentPlugin)
.add(statusPlugin)
.add([expandPlugin, { allowInsertion: true, allowInteractiveExpand: true }])
.add(breakoutPlugin)
.add(textColorPlugin)
.add(insertBlockPlugin)
.add(listPlugin)
);
<ComposableEditor
appearance="full-page"
preset={preset}
defaultValue={description}
onChange={handleDescriptionChange}
allowUndoRedoButtons
/>
am I doing something wrong?
Thanks
I trust the Atlassian Developer Community is a better place for this question where you may find more responses.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.