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: 3 months ago
JSON representation
Neos CMS inspector editor for string arrays
- Host: GitHub
- URL: https://github.com/prgfx/prgfx.neos.stringseditor
- Owner: PRGfx
- License: gpl-3.0
- Created: 2023-10-04T19:59:34.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2023-10-04T20:00:27.000Z (almost 2 years ago)
- Last Synced: 2025-03-30T01:11:46.339Z (3 months ago)
- Topics: neos-plugin, neoscms
- Language: TypeScript
- Homepage:
- Size: 62.5 KB
- Stars: 4
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Prgfx.Neos.StringsEditor
Provides an inspector editor for editing simple `array` properties.
`composer require prgfx/neos-stringseditor`

## 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
```