PRGfx / Prgfx.Neos.StringsEditor

Neos CMS inspector editor for string arrays

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Prgfx.Neos.StringsEditor

Provides an inspector editor for editing simple array<string> properties.

composer require prgfx/neos-stringseditor

Screenshot of the editor

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

About

Neos CMS inspector editor for string arrays

License:GNU General Public License v3.0


Languages

Language:TypeScript 56.4%Language:JavaScript 39.8%Language:CSS 3.8%