Hi
when i installed the extension the (GitHub - sandstorm/CkEditorInspector: a Neos UI Plugin to include the CKEditor 5 Inspector - very helpful when debugging CKEditor5 plugins) the colorpiker not show when i did all steps
how to integrated it on our pakage “Neos.Demo”
this is our code
Neos:
Neos:
nodeTypes:
presets:
properties:
neosdemo:
text:
inlineEditable:
type: string
ui:
inlineEditable: true
headline:
type: string
search:
fulltextExtractor: “${Indexing.extractInto(‘h2’, value)}”
ui:
inlineEditable: true
inline:
editorOptions:
placeholder: ‘Neos.Demo:NodeTypes.Placeholder:headline’
autoparagraph: false
hyphens: true
formatting:
strong: false
em: false
underline: false
sub: true
sup: true
p: false
h1: false
h2: false
h3: false
h4: false
h5: false
table: false
a: true
ul: false
ol: false
left: false
right: false
center: false
justify: false
removeFormat: true
code: true
subheadline:
type: string
search:
fulltextExtractor: “${Indexing.extractInto(‘h3’, value)}”
ui:
inlineEditable: true
inline:
editorOptions:
placeholder: ‘Neos.Demo:NodeTypes.Placeholder:subheadline’
autoparagraph: false
hyphens: true
formatting:
strong: false
em: false
underline: false
sub: true
sup: true
p: false
h1: false
h2: false
h3: false
h4: false
h5: false
table: false
a: true
ul: false
ol: false
left: false
right: false
center: false
justify: false
removeFormat: true
code: true
lead:
type: string
search:
fulltextExtractor: ‘${Indexing.extractHtmlTags(value)}’
ui:
inlineEditable: true
inline:
editorOptions:
placeholder: ‘Neos.Demo:NodeTypes.Placeholder:lead’
autoparagraph: false
hyphens: true
formatting:
strong: true
em: true
underline: false
sub: true
sup: true
p: false
h1: false
h2: false
h3: false
h4: false
h5: false
table: false
a: true
ul: false
ol: false
left: false
right: false
center: false
justify: false
removeFormat: true
code: true
pure:
type: string
search:
fulltextExtractor: ‘${Indexing.extractHtmlTags(value)}’
ui:
inlineEditable: true
inline:
editorOptions:
placeholder: ‘Neos.Demo:NodeTypes.Placeholder:pure’
autoparagraph: false
hyphens: true
formatting:
strong: true
em: true
underline: false
sub: true
sup: true
p: false
h1: false
h2: false
h3: false
h4: false
h5: false
table: false
a: true
ul: false
ol: false
left: false
right: false
center: false
justify: false
removeFormat: true
code: true
label:
type: string
search:
fulltextExtractor: ‘${Indexing.extractHtmlTags(value)}’
ui:
inlineEditable: true
inline:
editorOptions:
placeholder: ‘Neos.Demo:NodeTypes.Placeholder:label’
autoparagraph: false
hyphens: true
formatting:
strong: false
em: false
underline: false
sub: false
sup: false
p: false
h1: false
h2: false
h3: false
h4: false
h5: false
table: false
a: false
ul: false
ol: false
left: false
right: false
center: false
justify: false
removeFormat: true
code: true
link:
type: string
search:
fulltextExtractor: ‘${Indexing.extractHtmlTags(value)}’
ui:
inlineEditable: true
inline:
editorOptions:
placeholder: ‘Neos.Demo:NodeTypes.Placeholder:link’
autoparagraph: false
hyphens: true
formatting:
strong: true
em: true
underline: false
sub: true
sup: true
p: false
h1: false
h2: false
h3: false
h4: false
h5: false
table: false
a: false
ul: false
ol: false
left: false
right: false
center: false
justify: false
removeFormat: true
code: true
autoparagraph:
type: string
search:
fulltextExtractor: ‘${Indexing.extractHtmlTags(value)}’
ui:
inlineEditable: true
inline:
editorOptions:
placeholder: ‘Neos.Demo:NodeTypes.Placeholder:text’
autoparagraph: true
hyphens: true
formatting:
textColor: true
bgColor: true
splitAdd: true
strong: true
span: true
em: true
underline: false
sub: true
sup: true
p: true
h1: false
h2: true
h3: true
h4: true
h5: false
pre: false
table: true
a: true
ul: true
ol: true
left: false
right: false
center: false
justify: false
removeFormat: true
code: true
allowCustom: true
custom:
myCustomClass:
label: ‘Highlight’
tag: ‘span’
attributes:
class: ‘highlight’
toolbar:
groups:
- clipboard
- undo
- basicstyles
- paragraph
- links
- insert
- custom
- tools
- colors
- styles
- others
and this our content text type
‘Neos.Demo:Content.Text’:
superTypes:
‘Neos.Neos:Content’: true
‘Neos.Demo:Constraint.Content.Carousel’: true
‘Neos.Demo:Constraint.Content.Column’: true
‘Neos.Demo:Constraint.Content.Main’: true
‘Neos.Demo:Constraint.Content.Teaser’: true
‘Neos.Demo:Constraint.Content.Footer’: true
ui:
label: i18n
icon: file-text
position: 20
properties:
text:
options:
preset: ‘neosdemo.text.autoparagraph’
and i tried to extend ckeditor by add new file under private
__inheritances:
- ‘Neos.Neos/NodeTypes:Default’
editor:
config:
toolbar:
items:
- bold
- italic
- link
- undo
- redo
but when use it it didn’t work