Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/prgfx/prgfx.neos.stringseditor
- Owner: PRGfx
- License: gpl-3.0
- Created: 2023-10-04T19:59:34.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2023-10-04T20:00:27.000Z (about 1 year ago)
- Last Synced: 2024-04-05T16:02:53.507Z (8 months ago)
- Topics: neos-plugin, neoscms
- Language: TypeScript
- Homepage:
- Size: 62.5 KB
- Stars: 3
- 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`
![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
```