prgfx / neos-stringseditor
此包最新版本(v0.1.0)没有可用的许可信息。
Neos CMS 字符串数组编辑器
v0.1.0
2023-10-04 19:57 UTC
Requires
- neos/neos-ui: ^8
README
提供用于编辑简单 array<string>
属性的检查器编辑器。
composer require prgfx/neos-stringseditor
用法
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