fix for name collision

This commit is contained in:
Scott Pfeil 2022-11-07 10:09:55 -05:00
parent 47a3710cf4
commit 1db0660023
2 changed files with 2 additions and 0 deletions

View File

@ -15,6 +15,7 @@ public enum HelperTextPlacement: String, CaseIterable {
case bottom, right
}
@objc(VDSEntryField)
open class EntryField: Control, Accessable {
//--------------------------------------------------
// MARK: - Initializers

View File

@ -15,6 +15,7 @@ public enum TextEntryFieldType: String, CaseIterable {
case text, number, calendar, inlineAction, password, creditCard, tel, date, securityCode
}
@objc(VDSTextEntryField)
public class TextEntryField: TextEntryFieldBase{}
open class TextEntryFieldBase: EntryField {