Skip to content

Commit

Permalink
revert 'use default component attributes'
Browse files Browse the repository at this point in the history
  • Loading branch information
kentico-ericd committed Nov 27, 2023
1 parent 4d71eb3 commit d2ee300
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

namespace Xperience.DependingFieldComponents.FormComponents.DropdownInputDependsOnFieldComponent
{
public class DropdownInputDependsOnFieldAttribute : DropDownComponentAttribute, IDependsOnPropertyProperties
public class DropdownInputDependsOnFieldAttribute : FormComponentAttribute, IDependsOnPropertyProperties
{
public string? DependsOn { get; set; }

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

namespace Xperience.DependingFieldComponents.FormComponents.NumberInputDependsOnFieldComponent
{
public class NumberInputDependsOnFieldAttribute : NumberInputComponentAttribute, IDependsOnPropertyProperties
public class NumberInputDependsOnFieldAttribute : FormComponentAttribute, IDependsOnPropertyProperties
{
public string? DependsOn { get; set; }

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

namespace Xperience.DependingFieldComponents.FormComponents.RadioGroupInputDependsOnFieldComponent
{
public class RadioGroupInputDependsOnFieldAttribute : RadioGroupComponentAttribute, IDependsOnPropertyProperties
public class RadioGroupInputDependsOnFieldAttribute : FormComponentAttribute, IDependsOnPropertyProperties
{
public string? DependsOn { get; set; }

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

namespace Xperience.DependingFieldComponents.FormComponents.TextInputDependsOnFieldComponent
{
public class TextInputDependsOnFieldAttribute : TextInputComponentAttribute, IDependsOnPropertyProperties
public class TextInputDependsOnFieldAttribute : FormComponentAttribute, IDependsOnPropertyProperties
{
public string? DependsOn { get; set; }

Expand Down

0 comments on commit d2ee300

Please sign in to comment.