prgfx / neos-stringseditor
Neos CMS string-array editor
Installs: 0
Dependents: 0
Suggesters: 0
Security: 0
Stars: 3
Watchers: 1
Forks: 0
Open Issues: 0
Language:TypeScript
Type:neos-package
Requires
- neos/neos-ui: ^8
README
Provides an inspector editor for editing simple array<string>
properties.
composer require prgfx/neos-stringseditor
Usage
My.NodeType: properties: items: type: array<string> ui: inspector: # you can normally omit this, when you use array<string> as property type editor: Prgfx.Neos.StringsEditor editorOptions: placeholder: Placeholder text # optional number of items allowed to be entered maximumItems: 4 # by default only unique items are allowed, but you can disable this rule unique: false