// Copyright (c) Umbraco.
// See LICENSE for more details.
using Microsoft.Extensions.DependencyInjection;
using Umbraco.Cms.Core.IO;
using Umbraco.Cms.Core.Services;
using Umbraco.Cms.Web.Common.DependencyInjection;
namespace Umbraco.Cms.Core.PropertyEditors;
///
/// Represents the configuration editor for the textbox value editor.
///
public class TextboxConfigurationEditor : ConfigurationEditor
{
// Scheduled for removal in v12
[Obsolete("Please use constructor that takes an IEditorConfigurationParser instead")]
public TextboxConfigurationEditor(IIOHelper ioHelper)
: this(ioHelper, StaticServiceProvider.Instance.GetRequiredService())
{
}
public TextboxConfigurationEditor(IIOHelper ioHelper, IEditorConfigurationParser editorConfigurationParser)
: base(ioHelper, editorConfigurationParser)
{
}
}