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.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.