Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/prgfx/prgfx.neos.stringseditor

Neos CMS inspector editor for string arrays
https://github.com/prgfx/prgfx.neos.stringseditor

neos-plugin neoscms

Last synced: 1 day ago
JSON representation

Neos CMS inspector editor for string arrays

Awesome Lists containing this project

README

        

# Prgfx.Neos.StringsEditor

Provides an inspector editor for editing simple `array` properties.

`composer require prgfx/neos-stringseditor`

![Screenshot of the editor](./screenshot.png)

## Usage
```yaml
My.NodeType:
properties:
items:
type: array
ui:
inspector:
# you can normally omit this, when you use array 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
```