neosrulez/neos-editors

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

A package with additional editors for the Neos CMS inspector.

Installs: 2 801

Dependents: 0

Suggesters: 0

Security: 0

Stars: 1

Watchers: 2

Forks: 0

Open Issues: 0

Language:JavaScript

Type:neos-plugin

1.0.5 2024-10-30 15:28 UTC

This package is not auto-updated.

Last update: 2024-11-13 15:40:49 UTC


README

A Neos CMS plugin which provides other useful editors.

Installation

Just run:

composer require neosrulez/neos-editors

Distance Editor

DistanceEditor

Password Input

⚠️ Please note! The password is not stored securely. It is saved as plain text.

PasswordInput

Advanced Selectbox Editor

SelectBoxEditor

Toggle Editor

ToggleEditor

Usage

'Neos.Neos:Content':
  ui:
    inspector:
      groups:
        distance:
          label: Distance
          icon: fas fa-arrows-alt-v
  properties:
    margin:
      type: array
      ui:
        label: Margin
        reloadIfChanged: true
        inspector:
          group: distance
          position: 1
          editor: NeosRulez/Neos/Editors/DistanceEditor
    padding:
      type: array
      ui:
        label: Padding
        reloadIfChanged: true
        inspector:
          group: distance
          position: 2
          editor: NeosRulez/Neos/Editors/DistanceEditor
    password:
      type: string
      ui:
        label: Password
        reloadIfChanged: true
        inspector:
          group: rotation
          position: 3
          editor: NeosRulez/Neos/Editors/PasswordInput
    color:
      type: string
      ui:
        label: Color
        reloadIfChanged: true
        inspector:
          group: rotation
          position: 4
          editor: NeosRulez/Neos/Editors/SelectBoxEditor
    alignment:
      type: string
      ui:
        label: Color
        reloadIfChanged: true
        inspector:
          group: rotation
          position: 5
          editor: NeosRulez/Neos/Editors/ToggleEditor
          editorOptions:
            allowEmpty: true
            values:
              left:
                label: Left
                icon: fas fa-align-left
              center:
                label: Center
                icon: fas fa-align-center
              right:
                label: Right
                icon: fas fa-align-right

Several more editors are coming soon ...

Author