From d2ee30075890d191b4f74f67708addd8138ae546 Mon Sep 17 00:00:00 2001 From: Eric Dugre Date: Mon, 27 Nov 2023 13:21:24 -0500 Subject: [PATCH] revert 'use default component attributes' --- .../DropdownInputDependsOnFieldAttribute.cs | 2 +- .../NumberInputDependsOnFieldAttribute.cs | 2 +- .../RadioGroupInputDependsOnFieldAttribute.cs | 2 +- .../TextInputDependsOnFieldAttribute.cs | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/FormComponents/DropdownInputDependsOnFieldComponent/DropdownInputDependsOnFieldAttribute.cs b/src/FormComponents/DropdownInputDependsOnFieldComponent/DropdownInputDependsOnFieldAttribute.cs index ee1601b..6002b44 100644 --- a/src/FormComponents/DropdownInputDependsOnFieldComponent/DropdownInputDependsOnFieldAttribute.cs +++ b/src/FormComponents/DropdownInputDependsOnFieldComponent/DropdownInputDependsOnFieldAttribute.cs @@ -2,7 +2,7 @@ namespace Xperience.DependingFieldComponents.FormComponents.DropdownInputDependsOnFieldComponent { - public class DropdownInputDependsOnFieldAttribute : DropDownComponentAttribute, IDependsOnPropertyProperties + public class DropdownInputDependsOnFieldAttribute : FormComponentAttribute, IDependsOnPropertyProperties { public string? DependsOn { get; set; } diff --git a/src/FormComponents/NumberInputDependsOnFieldComponent/NumberInputDependsOnFieldAttribute.cs b/src/FormComponents/NumberInputDependsOnFieldComponent/NumberInputDependsOnFieldAttribute.cs index 4a66990..adc84e4 100644 --- a/src/FormComponents/NumberInputDependsOnFieldComponent/NumberInputDependsOnFieldAttribute.cs +++ b/src/FormComponents/NumberInputDependsOnFieldComponent/NumberInputDependsOnFieldAttribute.cs @@ -2,7 +2,7 @@ namespace Xperience.DependingFieldComponents.FormComponents.NumberInputDependsOnFieldComponent { - public class NumberInputDependsOnFieldAttribute : NumberInputComponentAttribute, IDependsOnPropertyProperties + public class NumberInputDependsOnFieldAttribute : FormComponentAttribute, IDependsOnPropertyProperties { public string? DependsOn { get; set; } diff --git a/src/FormComponents/RadioGroupInputDependsOnFieldComponent/RadioGroupInputDependsOnFieldAttribute.cs b/src/FormComponents/RadioGroupInputDependsOnFieldComponent/RadioGroupInputDependsOnFieldAttribute.cs index da79111..69b1a6b 100644 --- a/src/FormComponents/RadioGroupInputDependsOnFieldComponent/RadioGroupInputDependsOnFieldAttribute.cs +++ b/src/FormComponents/RadioGroupInputDependsOnFieldComponent/RadioGroupInputDependsOnFieldAttribute.cs @@ -2,7 +2,7 @@ namespace Xperience.DependingFieldComponents.FormComponents.RadioGroupInputDependsOnFieldComponent { - public class RadioGroupInputDependsOnFieldAttribute : RadioGroupComponentAttribute, IDependsOnPropertyProperties + public class RadioGroupInputDependsOnFieldAttribute : FormComponentAttribute, IDependsOnPropertyProperties { public string? DependsOn { get; set; } diff --git a/src/FormComponents/TextInputDependsOnFieldComponent/TextInputDependsOnFieldAttribute.cs b/src/FormComponents/TextInputDependsOnFieldComponent/TextInputDependsOnFieldAttribute.cs index a73c837..9e8c4ca 100644 --- a/src/FormComponents/TextInputDependsOnFieldComponent/TextInputDependsOnFieldAttribute.cs +++ b/src/FormComponents/TextInputDependsOnFieldComponent/TextInputDependsOnFieldAttribute.cs @@ -2,7 +2,7 @@ namespace Xperience.DependingFieldComponents.FormComponents.TextInputDependsOnFieldComponent { - public class TextInputDependsOnFieldAttribute : TextInputComponentAttribute, IDependsOnPropertyProperties + public class TextInputDependsOnFieldAttribute : FormComponentAttribute, IDependsOnPropertyProperties { public string? DependsOn { get; set; }