Added constants for Property Editor Groups

This commit is contained in:
leekelleher
2019-06-07 17:59:38 +01:00
committed by Sebastiaan Janssen
parent b3497011e8
commit 34e45abcc7
40 changed files with 257 additions and 40 deletions

View File

@@ -18,7 +18,13 @@ namespace Umbraco.Web.PropertyEditors
/// <summary>
/// Represents a nested content property editor.
/// </summary>
[DataEditor(Constants.PropertyEditors.Aliases.NestedContent, "Nested Content", "nestedcontent", ValueType = "JSON", Group = "lists", Icon = "icon-thumbnail-list")]
[DataEditor(
Constants.PropertyEditors.Aliases.NestedContent,
"Nested Content",
"nestedcontent",
ValueType = ValueTypes.Json,
Group = Constants.PropertyEditors.Groups.Lists,
Icon = "icon-thumbnail-list")]
public class NestedContentPropertyEditor : DataEditor
{
private readonly Lazy<PropertyEditorCollection> _propertyEditors;