prgfx/neos-stringseditor

There is no license information available for the latest version (v0.1.0) of this package.

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

v0.1.0 2023-10-04 19:57 UTC

This package is auto-updated.

Last update: 2024-05-04 21:26:08 UTC


README

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