Merge remote-tracking branch 'origin/v10/dev' into v11/dev
# Conflicts: # src/Umbraco.Web.UI.Client/package-lock.json # src/Umbraco.Web.UI.Client/package.json
This commit is contained in:
@@ -14,6 +14,7 @@ public class EntityMapDefinition : IMapDefinition
|
||||
public void DefineMaps(IUmbracoMapper mapper)
|
||||
{
|
||||
mapper.Define<IEntitySlim, EntityBasic>((source, context) => new EntityBasic(), Map);
|
||||
mapper.Define<IPropertyType, EntityBasic>((source, context) => new EntityBasic(), Map);
|
||||
mapper.Define<PropertyType, EntityBasic>((source, context) => new EntityBasic(), Map);
|
||||
mapper.Define<PropertyGroup, EntityBasic>((source, context) => new EntityBasic(), Map);
|
||||
mapper.Define<IUser, EntityBasic>((source, context) => new EntityBasic(), Map);
|
||||
@@ -77,7 +78,7 @@ public class EntityMapDefinition : IMapDefinition
|
||||
}
|
||||
|
||||
// Umbraco.Code.MapAll -Udi -Trashed
|
||||
private static void Map(PropertyType source, EntityBasic target, MapperContext context)
|
||||
private static void Map(IPropertyType source, EntityBasic target, MapperContext context)
|
||||
{
|
||||
target.Alias = source.Alias;
|
||||
target.Icon = "icon-box";
|
||||
|
||||
@@ -43,6 +43,8 @@ public class MultiUrlPickerPropertyEditor : DataEditor
|
||||
SupportsReadOnly = true;
|
||||
}
|
||||
|
||||
public override IPropertyIndexValueFactory PropertyIndexValueFactory { get; } = new NoopPropertyIndexValueFactory();
|
||||
|
||||
protected override IConfigurationEditor CreateConfigurationEditor() =>
|
||||
new MultiUrlPickerConfigurationEditor(_ioHelper, _editorConfigurationParser);
|
||||
|
||||
|
||||
@@ -1,19 +1,15 @@
|
||||
.umb-color-picker {
|
||||
.umb-color-picker {
|
||||
|
||||
.sp-replacer {
|
||||
display: inline-flex;
|
||||
margin-right: 12px;
|
||||
height: 32px;
|
||||
padding: 5px;
|
||||
|
||||
&.sp-light {
|
||||
background-color: @white;
|
||||
}
|
||||
|
||||
.sp-preview {
|
||||
margin: 5px;
|
||||
height: auto;
|
||||
}
|
||||
|
||||
.sp-dd {
|
||||
line-height: 2rem;
|
||||
}
|
||||
@@ -24,4 +20,4 @@
|
||||
.sp-replacer {
|
||||
cursor: not-allowed;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user