├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── workflows │ └── swift.yml ├── .gitignore ├── .swiftlint.yml ├── Example ├── .swiftlint.yml ├── Gemfile ├── Makefile ├── Podfile ├── Rambafile ├── Templates │ ├── surf_mvp_coordinatable_alert │ │ ├── Code │ │ │ ├── Configurator │ │ │ │ └── module_configurator.swift.liquid │ │ │ ├── Presenter │ │ │ │ ├── module_input.swift.liquid │ │ │ │ ├── module_output.swift.liquid │ │ │ │ └── presenter.swift.liquid │ │ │ └── View │ │ │ │ ├── view_controller.swift.liquid │ │ │ │ ├── view_input.swift.liquid │ │ │ │ └── view_output.swift.liquid │ │ └── surf_mvp_coordinatable_alert.rambaspec │ └── surf_mvp_coordinatable_module │ │ ├── Code │ │ ├── Configurator │ │ │ └── module_configurator.swift.liquid │ │ ├── Presenter │ │ │ ├── module_input.swift.liquid │ │ │ ├── module_output.swift.liquid │ │ │ └── presenter.swift.liquid │ │ └── View │ │ │ ├── view_controller.storyboard.liquid │ │ │ ├── view_controller.swift.liquid │ │ │ ├── view_controller.xib.liquid │ │ │ ├── view_input.swift.liquid │ │ │ └── view_output.swift.liquid │ │ ├── Tests │ │ ├── Configurator │ │ │ └── module_configurator_tests.swift.liquid │ │ ├── Presenter │ │ │ └── presenter_tests.swift.liquid │ │ └── View │ │ │ └── view_tests.swift.liquid │ │ └── surf_mvp_coordinatable_module.rambaspec ├── TextFieldsCatalogExample.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ └── xcshareddata │ │ └── xcschemes │ │ └── TextFieldsCatalogExample.xcscheme ├── TextFieldsCatalogExample.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── TextFieldsCatalogExample │ ├── Application │ │ ├── AppDelegate.swift │ │ ├── ApplicationCoordinator.swift │ │ ├── Base.lproj │ │ │ └── LaunchScreen.storyboard │ │ ├── DeepLinkOption.swift │ │ └── ru.lproj │ │ │ └── LaunchScreen.strings │ ├── Flows │ │ ├── Example │ │ │ ├── ExampleCoordinator.swift │ │ │ ├── ExampleCoordinatorOutput.swift │ │ │ └── Examples │ │ │ │ ├── Configurator │ │ │ │ └── ExamplesModuleConfigurator.swift │ │ │ │ ├── Presenter │ │ │ │ ├── ExamplesModuleInput.swift │ │ │ │ ├── ExamplesModuleOutput.swift │ │ │ │ └── ExamplesPresenter.swift │ │ │ │ └── View │ │ │ │ ├── ExamplesViewController.swift │ │ │ │ ├── ExamplesViewController.xib │ │ │ │ ├── ExamplesViewInput.swift │ │ │ │ └── ExamplesViewOutput.swift │ │ ├── Info │ │ │ ├── Info │ │ │ │ ├── Configurator │ │ │ │ │ └── InfoModuleConfigurator.swift │ │ │ │ ├── Presenter │ │ │ │ │ ├── InfoModuleInput.swift │ │ │ │ │ ├── InfoModuleOutput.swift │ │ │ │ │ └── InfoPresenter.swift │ │ │ │ └── View │ │ │ │ │ ├── InfoViewController.swift │ │ │ │ │ ├── InfoViewController.xib │ │ │ │ │ ├── InfoViewInput.swift │ │ │ │ │ └── InfoViewOutput.swift │ │ │ ├── InfoCoordinator.swift │ │ │ └── InfoCoordinatorOutput.swift │ │ ├── Main │ │ │ ├── FieldExample │ │ │ │ ├── Configurator │ │ │ │ │ └── FieldExampleModuleConfigurator.swift │ │ │ │ ├── Presenter │ │ │ │ │ ├── FieldExampleModuleInput.swift │ │ │ │ │ ├── FieldExampleModuleOutput.swift │ │ │ │ │ └── FieldExamplePresenter.swift │ │ │ │ └── View │ │ │ │ │ ├── FieldExampleViewController.swift │ │ │ │ │ ├── FieldExampleViewController.xib │ │ │ │ │ ├── FieldExampleViewInput.swift │ │ │ │ │ └── FieldExampleViewOutput.swift │ │ │ ├── FieldPresets │ │ │ │ ├── Configurator │ │ │ │ │ └── FieldPresetsModuleConfigurator.swift │ │ │ │ ├── Presenter │ │ │ │ │ ├── FieldPresetsModuleInput.swift │ │ │ │ │ ├── FieldPresetsModuleOutput.swift │ │ │ │ │ └── FieldPresetsPresenter.swift │ │ │ │ └── View │ │ │ │ │ ├── Adapter │ │ │ │ │ ├── Cell │ │ │ │ │ │ ├── FieldPresetTableViewCell.swift │ │ │ │ │ │ └── FieldPresetTableViewCell.xib │ │ │ │ │ └── FieldPresetsAdapter.swift │ │ │ │ │ ├── FieldPresetsViewController.swift │ │ │ │ │ ├── FieldPresetsViewController.xib │ │ │ │ │ ├── FieldPresetsViewInput.swift │ │ │ │ │ └── FieldPresetsViewOutput.swift │ │ │ ├── Main │ │ │ │ ├── Configurator │ │ │ │ │ └── MainModuleConfigurator.swift │ │ │ │ ├── Presenter │ │ │ │ │ ├── MainModuleInput.swift │ │ │ │ │ ├── MainModuleOutput.swift │ │ │ │ │ └── MainPresenter.swift │ │ │ │ └── View │ │ │ │ │ ├── Adapter │ │ │ │ │ ├── Cell │ │ │ │ │ │ ├── MainFieldTableViewCell │ │ │ │ │ │ │ ├── MainFieldTableViewCell.swift │ │ │ │ │ │ │ └── MainFieldTableViewCell.xib │ │ │ │ │ │ └── MainMessageTableViewCell │ │ │ │ │ │ │ ├── MainMessageTableViewCell.swift │ │ │ │ │ │ │ └── MainMessageTableViewCell.xib │ │ │ │ │ └── MainAdapter.swift │ │ │ │ │ ├── MainViewController.swift │ │ │ │ │ ├── MainViewController.xib │ │ │ │ │ ├── MainViewInput.swift │ │ │ │ │ ├── MainViewOutput.swift │ │ │ │ │ └── ViewModel │ │ │ │ │ └── MainModuleViewModel.swift │ │ │ ├── MainCoordinator.swift │ │ │ └── MainCoordinatorOutput.swift │ │ └── MainTabBar │ │ │ ├── MainTabBar │ │ │ ├── Configurator │ │ │ │ └── MainTabBarModuleConfigurator.swift │ │ │ ├── Presenter │ │ │ │ ├── MainTabBarModuleInput.swift │ │ │ │ ├── MainTabBarModuleOutput.swift │ │ │ │ └── MainTabBarPresenter.swift │ │ │ └── View │ │ │ │ ├── MainTabBarViewController.swift │ │ │ │ ├── MainTabBarViewInput.swift │ │ │ │ └── MainTabBarViewOutput.swift │ │ │ ├── MainTabBarCoordinator.swift │ │ │ └── MainTabBarCoordinatorOutput.swift │ ├── Info.plist │ ├── Library │ │ ├── BaseClasses │ │ │ ├── BaseCoordinator.swift │ │ │ ├── DesignableView.swift │ │ │ └── StorkContainerViewController │ │ │ │ ├── StorkContainerViewController.swift │ │ │ │ └── StorkContainerViewController.xib │ │ ├── Extensions │ │ │ ├── FormatterMasks.swift │ │ │ ├── Foundation.swift │ │ │ ├── String.swift │ │ │ ├── UIApplication.swift │ │ │ ├── UIColor.swift │ │ │ ├── UIDevice.swift │ │ │ ├── UIImage.swift │ │ │ ├── UITableView.swift │ │ │ ├── UITableViewCell.swift │ │ │ ├── UIView.swift │ │ │ └── UIViewController.swift │ │ ├── Protocols │ │ │ ├── AppliedPreset.swift │ │ │ ├── Coordinator.swift │ │ │ ├── CustomNavigationTitlePresentable.swift │ │ │ ├── Presentable.swift │ │ │ └── Router.swift │ │ ├── Reusable │ │ │ ├── CommonNavigationController.swift │ │ │ ├── CommonTableHeader │ │ │ │ ├── CommonTableHeader.swift │ │ │ │ └── CommonTableHeader.xib │ │ │ ├── CustomTitleView │ │ │ │ ├── CustomTitleView.swift │ │ │ │ └── CustomTitleView.xib │ │ │ └── MainButton.swift │ │ └── Routers │ │ │ └── MainRouter.swift │ ├── Resources │ │ ├── Colors │ │ │ └── Color.swift │ │ ├── Constants │ │ │ ├── Closures.swift │ │ │ ├── MainTab.swift │ │ │ ├── Sex.swift │ │ │ └── SharedRegex.swift │ │ ├── Images │ │ │ ├── Assets.swift │ │ │ └── Assets.xcassets │ │ │ │ ├── AppIcon.appiconset │ │ │ │ ├── Contents.json │ │ │ │ ├── Icon.png │ │ │ │ ├── icon_20pt.png │ │ │ │ ├── icon_20pt@2x-1.png │ │ │ │ ├── icon_20pt@2x.png │ │ │ │ ├── icon_20pt@3x.png │ │ │ │ ├── icon_29pt.png │ │ │ │ ├── icon_29pt@2x-1.png │ │ │ │ ├── icon_29pt@2x.png │ │ │ │ ├── icon_29pt@3x.png │ │ │ │ ├── icon_40pt.png │ │ │ │ ├── icon_40pt@2x-1.png │ │ │ │ ├── icon_40pt@2x.png │ │ │ │ ├── icon_40pt@3x.png │ │ │ │ ├── icon_60pt@2x.png │ │ │ │ ├── icon_60pt@3x.png │ │ │ │ ├── icon_76pt.png │ │ │ │ ├── icon_76pt@2x.png │ │ │ │ └── icon_83.5@2x.png │ │ │ │ ├── Colors │ │ │ │ ├── Contents.json │ │ │ │ ├── active.colorset │ │ │ │ │ └── Contents.json │ │ │ │ ├── activePress.colorset │ │ │ │ │ └── Contents.json │ │ │ │ ├── background.colorset │ │ │ │ │ └── Contents.json │ │ │ │ ├── error.colorset │ │ │ │ │ └── Contents.json │ │ │ │ ├── fieldNormal.colorset │ │ │ │ │ └── Contents.json │ │ │ │ ├── highlighted.colorset │ │ │ │ │ └── Contents.json │ │ │ │ ├── mainButtonText.colorset │ │ │ │ │ └── Contents.json │ │ │ │ ├── placeholderGray.colorset │ │ │ │ │ └── Contents.json │ │ │ │ ├── regular.colorset │ │ │ │ │ └── Contents.json │ │ │ │ └── text.colorset │ │ │ │ │ └── Contents.json │ │ │ │ ├── Contents.json │ │ │ │ ├── MainTab │ │ │ │ ├── Contents.json │ │ │ │ ├── catalog.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── icon-cart.pdf │ │ │ │ ├── example.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── icon-catalog.pdf │ │ │ │ └── info.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── icon-profile.pdf │ │ │ │ ├── close.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── ic_close.png │ │ │ │ ├── ic_close@2x.png │ │ │ │ └── ic_close@3x.png │ │ │ │ ├── customEyeOff.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── iconEyeClose.png │ │ │ │ ├── iconEyeClose@2x.png │ │ │ │ └── iconEyeClose@3x.png │ │ │ │ ├── customEyeOn.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── iconEyeShow.png │ │ │ │ ├── iconEyeShow@2x.png │ │ │ │ └── iconEyeShow@3x.png │ │ │ │ ├── info.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── Group 12.3.png │ │ │ │ ├── Group 12.3@2x.png │ │ │ │ └── Group 12.3@3x.png │ │ │ │ └── qrCode.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── ic_qr.png │ │ │ │ ├── ic_qr@2x.png │ │ │ │ └── ic_qr@3x.png │ │ └── Strings │ │ │ ├── Strings.swift │ │ │ ├── en.lproj │ │ │ └── Localizable.strings │ │ │ └── ru.lproj │ │ │ └── Localizable.strings │ └── TextFields │ │ ├── TextFields │ │ ├── BoxTextField │ │ │ ├── BoxTextField.swift │ │ │ └── BoxTextField.xib │ │ ├── CustomUnderlinedTextField │ │ │ ├── CustomUnderlinedTextField.swift │ │ │ └── CustomUnderlinedTextField.xib │ │ ├── InputViews │ │ │ └── InputViews.swift │ │ ├── SumTextField │ │ │ ├── CurrencyPlaceholderService.swift │ │ │ ├── SumTextField.swift │ │ │ └── SumTextField.xib │ │ └── UnderlinedTextField │ │ │ └── UnderlinedTextField.swift │ │ └── Types and presets │ │ ├── Presets │ │ ├── SumFieldPreset.swift │ │ ├── UnderlinedFieldPreset.swift │ │ └── UnderlinedTextViewPreset.swift │ │ └── TextFieldType.swift ├── TextFieldsCatalogExampleTests │ ├── FieldTests │ │ ├── UnderlinedFieldTests.swift │ │ └── UnderlinedViewTests.swift │ ├── Info.plist │ ├── ReferenceImages_64 │ │ ├── TextFieldsCatalogExampleTests.MainFieldTableViewCellTests │ │ │ └── testCellLayout@2x.png │ │ ├── TextFieldsCatalogExampleTests.UnderlinedFieldTests │ │ │ ├── testDefaultField@2x.png │ │ │ ├── testEmptyDisabledField@2x.png │ │ │ ├── testEmptyErrorField@2x.png │ │ │ ├── testEmptyField@2x.png │ │ │ ├── testFilledDisabledField@2x.png │ │ │ ├── testFilledErrorField@2x.png │ │ │ ├── testFilledField@2x.png │ │ │ ├── testMultilineErrorMessage@2x.png │ │ │ ├── testPasswordEmptyField@2x.png │ │ │ ├── testPasswordSecureField@2x.png │ │ │ └── testPasswordVisibleField@2x.png │ │ └── TextFieldsCatalogExampleTests.UnderlinedViewTests │ │ │ ├── testDefaultField@2x.png │ │ │ ├── testEmptyDisabledField@2x.png │ │ │ ├── testEmptyErrorField@2x.png │ │ │ ├── testEmptyField@2x.png │ │ │ ├── testFilledDisabledField@2x.png │ │ │ ├── testFilledErrorField@2x.png │ │ │ ├── testFilledField@2x.png │ │ │ ├── testMultilineErrorMessage@2x.png │ │ │ └── testMultilineText@2x.png │ └── Support │ │ └── TableViewCellSnapshotContainer.swift └── swiftgen.yml ├── Gemfile ├── LICENSE ├── Makefile ├── Package.resolved ├── Package.swift ├── Podfile ├── README.md ├── ROADMAP.md ├── TextFieldsCatalog.podspec ├── TextFieldsCatalog.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── xcshareddata │ └── xcschemes │ └── TextFieldsCatalog.xcscheme ├── TextFieldsCatalog.xcworkspace ├── contents.xcworkspacedata └── xcshareddata │ └── IDEWorkspaceChecks.plist ├── TextFieldsCatalog ├── Info.plist ├── Library │ ├── BaseClasses │ │ ├── CommonButton.swift │ │ ├── InnerDesignableView.swift │ │ ├── InnerTextField.swift │ │ └── InnerTextView.swift │ ├── Extensions │ │ ├── Foundation.swift │ │ ├── String.swift │ │ └── UIKit │ │ │ ├── UIColor.swift │ │ │ ├── UIImage.swift │ │ │ ├── UITextField.swift │ │ │ └── UITextView.swift │ ├── Protocols │ │ ├── TextField │ │ │ ├── DateTextField.swift │ │ │ ├── GuidedTextField.swift │ │ │ ├── PickerTextField.swift │ │ │ ├── ResetableField.swift │ │ │ └── RespondableField.swift │ │ ├── TextFieldValidation.swift │ │ └── ToolBarInterface.swift │ ├── Reusable │ │ ├── IconButton.swift │ │ └── Pickers │ │ │ ├── DatePickerView.swift │ │ │ ├── PlainPickerView.swift │ │ │ └── TopView │ │ │ ├── PickerTopView.swift │ │ │ ├── PickerTopView.xib │ │ │ └── PickerTopViewConfiguration.swift │ └── Utils │ │ ├── AssetManager.swift │ │ ├── FormatterMasks.swift │ │ ├── MaskTextFieldFormatter.swift │ │ ├── StandardEditActions.swift │ │ └── TextFieldValidator.swift ├── Resources │ ├── Colors │ │ └── Color.swift │ ├── Constants │ │ ├── FieldContainerState.swift │ │ ├── HeightLayoutPolicy.swift │ │ ├── HintVisibleStates.swift │ │ ├── Internal │ │ │ ├── AccessibilityIdentifiers.swift │ │ │ ├── AnimationTime.swift │ │ │ └── FieldState.swift │ │ ├── NativePlaceholderBehavior.swift │ │ ├── PasteOverflowPolicy.swift │ │ ├── SharedRegex.swift │ │ ├── TextFieldMode.swift │ │ ├── TextFieldPasswordModeBehavior.swift │ │ └── ValidationPolicy.swift │ ├── Images │ │ ├── close.png │ │ ├── close@2x.png │ │ ├── close@3x.png │ │ ├── eyeOff.png │ │ ├── eyeOff@2x.png │ │ ├── eyeOff@3x.png │ │ ├── eyeOn.png │ │ ├── eyeOn@2x.png │ │ ├── eyeOn@3x.png │ │ ├── leftArrow.png │ │ ├── leftArrow@2x.png │ │ ├── leftArrow@3x.png │ │ ├── rightArrow.png │ │ ├── rightArrow@2x.png │ │ └── rightArrow@3x.png │ └── Strings │ │ ├── Strings.swift │ │ ├── en.lproj │ │ └── Localizable.strings │ │ └── ru.lproj │ │ └── Localizable.strings ├── TextFields │ ├── Configuration │ │ ├── ConfigurationParameters.swift │ │ ├── FlexibleHeightPolicy.swift │ │ └── TextFieldConfigurations.swift │ ├── Services │ │ ├── AppearanceServices │ │ │ ├── FieldService.swift │ │ │ ├── HintService.swift │ │ │ ├── LineService.swift │ │ │ └── Placeholder │ │ │ │ ├── FloatingPlaceholderService.swift │ │ │ │ ├── NativePlaceholderService.swift │ │ │ │ └── StaticPlaceholderService.swift │ │ └── Support │ │ │ ├── AbstractHintService.swift │ │ │ ├── AbstractPlaceholderService.swift │ │ │ └── InputFieldProtocol.swift │ ├── UnderlinedTextField │ │ ├── UnderlinedTextField.swift │ │ └── UnderlinedTextField.xib │ └── UnderlinedTextView │ │ ├── UnderlinedTextView.swift │ │ └── UnderlinedTextView.xib └── TextFieldsCatalog.h ├── TextFieldsCatalogTests ├── Extensions │ ├── UITextField.swift │ └── UITextView.swift ├── Info.plist ├── TextFields │ ├── Configuration │ │ └── ColorConfiguration.swift │ └── Services │ │ └── FieldService.swift └── Utils │ ├── AssetManager.swift │ ├── MaskTextFieldFormatter.swift │ └── TextFieldValidator.swift ├── docs ├── Classes.html ├── Classes │ ├── ActionButtonConfiguration.html │ ├── BackgroundConfiguration.html │ ├── BaseFieldConfiguration.html │ ├── ColorConfiguration.html │ ├── DatePickerView.html │ ├── FloatingPlaceholderConfiguration.html │ ├── FloatingPlaceholderService.html │ ├── HintConfiguration.html │ ├── HintService.html │ ├── InnerDesignableView.html │ ├── InnerTextField.html │ ├── InnerTextView.html │ ├── LineConfiguration.html │ ├── MaskTextFieldFormatter.html │ ├── NativePlaceholderConfiguration.html │ ├── NativePlaceholderService.html │ ├── PasswordModeConfiguration.html │ ├── PickerTopView.html │ ├── PickerTopViewButtonConfiguration.html │ ├── PickerTopViewConfiguration.html │ ├── PlainPickerView.html │ ├── StaticPlaceholderConfiguration.html │ ├── StaticPlaceholderService.html │ ├── TextFieldConfiguration.html │ ├── TextFieldValidator.html │ ├── UnderlinedTextField.html │ ├── UnderlinedTextFieldConfiguration.html │ ├── UnderlinedTextView.html │ └── UnderlinedTextViewConfiguration.html ├── Enums.html ├── Enums │ ├── FieldContainerState.html │ ├── FieldState.html │ ├── FormatterMasks.html │ ├── HeightLayoutPolicy.html │ ├── NativePlaceholderBehavior.html │ ├── PasteOverflowPolicy.html │ ├── SharedRegex.html │ ├── StandardEditActions.html │ ├── TextFieldMode.html │ ├── TextFieldPasswordModeBehavior.html │ └── ValidationPolicy.html ├── Extensions.html ├── Extensions │ ├── Array.html │ └── UITextView.html ├── Protocols.html ├── Protocols │ ├── AbstractHintService.html │ ├── AbstractPlaceholderService.html │ ├── DateTextField.html │ ├── GuidedTextField.html │ ├── InputField.html │ ├── PickerTextField.html │ ├── ResetableField.html │ ├── RespondableField.html │ ├── TextFieldValidation.html │ └── ToolBarInterface.html ├── Structs.html ├── Structs │ ├── FlexibleHeightPolicy.html │ └── HintVisibleStates.html ├── badge.svg ├── css │ ├── highlight.css │ └── jazzy.css ├── docsets │ ├── TextFieldsCatalog.docset │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── Resources │ │ │ ├── Documents │ │ │ ├── Classes.html │ │ │ ├── Classes │ │ │ │ ├── ActionButtonConfiguration.html │ │ │ │ ├── BackgroundConfiguration.html │ │ │ │ ├── BaseFieldConfiguration.html │ │ │ │ ├── ColorConfiguration.html │ │ │ │ ├── DatePickerView.html │ │ │ │ ├── FloatingPlaceholderConfiguration.html │ │ │ │ ├── FloatingPlaceholderService.html │ │ │ │ ├── HintConfiguration.html │ │ │ │ ├── HintService.html │ │ │ │ ├── InnerDesignableView.html │ │ │ │ ├── InnerTextField.html │ │ │ │ ├── InnerTextView.html │ │ │ │ ├── LineConfiguration.html │ │ │ │ ├── MaskTextFieldFormatter.html │ │ │ │ ├── NativePlaceholderConfiguration.html │ │ │ │ ├── NativePlaceholderService.html │ │ │ │ ├── PasswordModeConfiguration.html │ │ │ │ ├── PickerTopView.html │ │ │ │ ├── PickerTopViewButtonConfiguration.html │ │ │ │ ├── PickerTopViewConfiguration.html │ │ │ │ ├── PlainPickerView.html │ │ │ │ ├── StaticPlaceholderConfiguration.html │ │ │ │ ├── StaticPlaceholderService.html │ │ │ │ ├── TextFieldConfiguration.html │ │ │ │ ├── TextFieldValidator.html │ │ │ │ ├── UnderlinedTextField.html │ │ │ │ ├── UnderlinedTextFieldConfiguration.html │ │ │ │ ├── UnderlinedTextView.html │ │ │ │ └── UnderlinedTextViewConfiguration.html │ │ │ ├── Enums.html │ │ │ ├── Enums │ │ │ │ ├── FieldContainerState.html │ │ │ │ ├── FieldState.html │ │ │ │ ├── FormatterMasks.html │ │ │ │ ├── HeightLayoutPolicy.html │ │ │ │ ├── NativePlaceholderBehavior.html │ │ │ │ ├── PasteOverflowPolicy.html │ │ │ │ ├── SharedRegex.html │ │ │ │ ├── StandardEditActions.html │ │ │ │ ├── TextFieldMode.html │ │ │ │ ├── TextFieldPasswordModeBehavior.html │ │ │ │ └── ValidationPolicy.html │ │ │ ├── Extensions.html │ │ │ ├── Extensions │ │ │ │ ├── Array.html │ │ │ │ └── UITextView.html │ │ │ ├── Protocols.html │ │ │ ├── Protocols │ │ │ │ ├── AbstractHintService.html │ │ │ │ ├── AbstractPlaceholderService.html │ │ │ │ ├── DateTextField.html │ │ │ │ ├── GuidedTextField.html │ │ │ │ ├── InputField.html │ │ │ │ ├── PickerTextField.html │ │ │ │ ├── ResetableField.html │ │ │ │ ├── RespondableField.html │ │ │ │ ├── TextFieldValidation.html │ │ │ │ └── ToolBarInterface.html │ │ │ ├── Structs.html │ │ │ ├── Structs │ │ │ │ ├── FlexibleHeightPolicy.html │ │ │ │ └── HintVisibleStates.html │ │ │ ├── css │ │ │ │ ├── highlight.css │ │ │ │ └── jazzy.css │ │ │ ├── img │ │ │ │ ├── carat.png │ │ │ │ ├── dash.png │ │ │ │ └── gh.png │ │ │ ├── index.html │ │ │ ├── js │ │ │ │ ├── jazzy.js │ │ │ │ └── jquery.min.js │ │ │ └── search.json │ │ │ └── docSet.dsidx │ └── TextFieldsCatalog.tgz ├── img │ ├── carat.png │ ├── dash.png │ └── gh.png ├── index.html ├── js │ ├── jazzy.js │ └── jquery.min.js ├── search.json └── undocumented.json ├── fastlane ├── Appfile ├── Fastfile ├── Pluginfile └── README.md ├── swiftgen.yml └── tech_docs ├── Configuration.md ├── DevNotes.md ├── ExampleProject.md ├── Images ├── BorderedTextField.png ├── DatePickerView.png ├── DatePickerViewCustomized.png ├── NativePlaceholderService.png ├── PlainPickerView.png ├── TextFieldsCatalog_video.gif ├── UnderlinedTextField.png ├── UnderlinedTextView.png └── textView_scheme.png ├── PodProject.md └── Usage.md /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/swift.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/.github/workflows/swift.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/.gitignore -------------------------------------------------------------------------------- /.swiftlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/.swiftlint.yml -------------------------------------------------------------------------------- /Example/.swiftlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/.swiftlint.yml -------------------------------------------------------------------------------- /Example/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/Gemfile -------------------------------------------------------------------------------- /Example/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/Makefile -------------------------------------------------------------------------------- /Example/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/Podfile -------------------------------------------------------------------------------- /Example/Rambafile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/Rambafile -------------------------------------------------------------------------------- /Example/Templates/surf_mvp_coordinatable_alert/Code/Configurator/module_configurator.swift.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/Templates/surf_mvp_coordinatable_alert/Code/Configurator/module_configurator.swift.liquid -------------------------------------------------------------------------------- /Example/Templates/surf_mvp_coordinatable_alert/Code/Presenter/module_input.swift.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/Templates/surf_mvp_coordinatable_alert/Code/Presenter/module_input.swift.liquid -------------------------------------------------------------------------------- /Example/Templates/surf_mvp_coordinatable_alert/Code/Presenter/module_output.swift.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/Templates/surf_mvp_coordinatable_alert/Code/Presenter/module_output.swift.liquid -------------------------------------------------------------------------------- /Example/Templates/surf_mvp_coordinatable_alert/Code/Presenter/presenter.swift.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/Templates/surf_mvp_coordinatable_alert/Code/Presenter/presenter.swift.liquid -------------------------------------------------------------------------------- /Example/Templates/surf_mvp_coordinatable_alert/Code/View/view_controller.swift.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/Templates/surf_mvp_coordinatable_alert/Code/View/view_controller.swift.liquid -------------------------------------------------------------------------------- /Example/Templates/surf_mvp_coordinatable_alert/Code/View/view_input.swift.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/Templates/surf_mvp_coordinatable_alert/Code/View/view_input.swift.liquid -------------------------------------------------------------------------------- /Example/Templates/surf_mvp_coordinatable_alert/Code/View/view_output.swift.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/Templates/surf_mvp_coordinatable_alert/Code/View/view_output.swift.liquid -------------------------------------------------------------------------------- /Example/Templates/surf_mvp_coordinatable_alert/surf_mvp_coordinatable_alert.rambaspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/Templates/surf_mvp_coordinatable_alert/surf_mvp_coordinatable_alert.rambaspec -------------------------------------------------------------------------------- /Example/Templates/surf_mvp_coordinatable_module/Code/Configurator/module_configurator.swift.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/Templates/surf_mvp_coordinatable_module/Code/Configurator/module_configurator.swift.liquid -------------------------------------------------------------------------------- /Example/Templates/surf_mvp_coordinatable_module/Code/Presenter/module_input.swift.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/Templates/surf_mvp_coordinatable_module/Code/Presenter/module_input.swift.liquid -------------------------------------------------------------------------------- /Example/Templates/surf_mvp_coordinatable_module/Code/Presenter/module_output.swift.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/Templates/surf_mvp_coordinatable_module/Code/Presenter/module_output.swift.liquid -------------------------------------------------------------------------------- /Example/Templates/surf_mvp_coordinatable_module/Code/Presenter/presenter.swift.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/Templates/surf_mvp_coordinatable_module/Code/Presenter/presenter.swift.liquid -------------------------------------------------------------------------------- /Example/Templates/surf_mvp_coordinatable_module/Code/View/view_controller.storyboard.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/Templates/surf_mvp_coordinatable_module/Code/View/view_controller.storyboard.liquid -------------------------------------------------------------------------------- /Example/Templates/surf_mvp_coordinatable_module/Code/View/view_controller.swift.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/Templates/surf_mvp_coordinatable_module/Code/View/view_controller.swift.liquid -------------------------------------------------------------------------------- /Example/Templates/surf_mvp_coordinatable_module/Code/View/view_controller.xib.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/Templates/surf_mvp_coordinatable_module/Code/View/view_controller.xib.liquid -------------------------------------------------------------------------------- /Example/Templates/surf_mvp_coordinatable_module/Code/View/view_input.swift.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/Templates/surf_mvp_coordinatable_module/Code/View/view_input.swift.liquid -------------------------------------------------------------------------------- /Example/Templates/surf_mvp_coordinatable_module/Code/View/view_output.swift.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/Templates/surf_mvp_coordinatable_module/Code/View/view_output.swift.liquid -------------------------------------------------------------------------------- /Example/Templates/surf_mvp_coordinatable_module/Tests/Configurator/module_configurator_tests.swift.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/Templates/surf_mvp_coordinatable_module/Tests/Configurator/module_configurator_tests.swift.liquid -------------------------------------------------------------------------------- /Example/Templates/surf_mvp_coordinatable_module/Tests/Presenter/presenter_tests.swift.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/Templates/surf_mvp_coordinatable_module/Tests/Presenter/presenter_tests.swift.liquid -------------------------------------------------------------------------------- /Example/Templates/surf_mvp_coordinatable_module/Tests/View/view_tests.swift.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/Templates/surf_mvp_coordinatable_module/Tests/View/view_tests.swift.liquid -------------------------------------------------------------------------------- /Example/Templates/surf_mvp_coordinatable_module/surf_mvp_coordinatable_module.rambaspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/Templates/surf_mvp_coordinatable_module/surf_mvp_coordinatable_module.rambaspec -------------------------------------------------------------------------------- /Example/TextFieldsCatalogExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/TextFieldsCatalogExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/TextFieldsCatalogExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/TextFieldsCatalogExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/TextFieldsCatalogExample.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/TextFieldsCatalogExample.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Example/TextFieldsCatalogExample.xcodeproj/xcshareddata/xcschemes/TextFieldsCatalogExample.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/TextFieldsCatalogExample.xcodeproj/xcshareddata/xcschemes/TextFieldsCatalogExample.xcscheme -------------------------------------------------------------------------------- /Example/TextFieldsCatalogExample.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/TextFieldsCatalogExample.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/TextFieldsCatalogExample.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/TextFieldsCatalogExample.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Example/TextFieldsCatalogExample/Application/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/TextFieldsCatalogExample/Application/AppDelegate.swift -------------------------------------------------------------------------------- /Example/TextFieldsCatalogExample/Application/ApplicationCoordinator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/TextFieldsCatalogExample/Application/ApplicationCoordinator.swift -------------------------------------------------------------------------------- /Example/TextFieldsCatalogExample/Application/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/TextFieldsCatalogExample/Application/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Example/TextFieldsCatalogExample/Application/DeepLinkOption.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/TextFieldsCatalogExample/Application/DeepLinkOption.swift -------------------------------------------------------------------------------- /Example/TextFieldsCatalogExample/Application/ru.lproj/LaunchScreen.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/TextFieldsCatalogExample/Application/ru.lproj/LaunchScreen.strings -------------------------------------------------------------------------------- /Example/TextFieldsCatalogExample/Flows/Example/ExampleCoordinator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/TextFieldsCatalogExample/Flows/Example/ExampleCoordinator.swift -------------------------------------------------------------------------------- /Example/TextFieldsCatalogExample/Flows/Example/ExampleCoordinatorOutput.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/TextFieldsCatalogExample/Flows/Example/ExampleCoordinatorOutput.swift -------------------------------------------------------------------------------- /Example/TextFieldsCatalogExample/Flows/Example/Examples/Configurator/ExamplesModuleConfigurator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/TextFieldsCatalogExample/Flows/Example/Examples/Configurator/ExamplesModuleConfigurator.swift -------------------------------------------------------------------------------- /Example/TextFieldsCatalogExample/Flows/Example/Examples/Presenter/ExamplesModuleInput.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/TextFieldsCatalogExample/Flows/Example/Examples/Presenter/ExamplesModuleInput.swift -------------------------------------------------------------------------------- /Example/TextFieldsCatalogExample/Flows/Example/Examples/Presenter/ExamplesModuleOutput.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/TextFieldsCatalogExample/Flows/Example/Examples/Presenter/ExamplesModuleOutput.swift -------------------------------------------------------------------------------- /Example/TextFieldsCatalogExample/Flows/Example/Examples/Presenter/ExamplesPresenter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/TextFieldsCatalogExample/Flows/Example/Examples/Presenter/ExamplesPresenter.swift -------------------------------------------------------------------------------- /Example/TextFieldsCatalogExample/Flows/Example/Examples/View/ExamplesViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/TextFieldsCatalogExample/Flows/Example/Examples/View/ExamplesViewController.swift -------------------------------------------------------------------------------- /Example/TextFieldsCatalogExample/Flows/Example/Examples/View/ExamplesViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/TextFieldsCatalogExample/Flows/Example/Examples/View/ExamplesViewController.xib -------------------------------------------------------------------------------- /Example/TextFieldsCatalogExample/Flows/Example/Examples/View/ExamplesViewInput.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/TextFieldsCatalogExample/Flows/Example/Examples/View/ExamplesViewInput.swift -------------------------------------------------------------------------------- /Example/TextFieldsCatalogExample/Flows/Example/Examples/View/ExamplesViewOutput.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/TextFieldsCatalogExample/Flows/Example/Examples/View/ExamplesViewOutput.swift -------------------------------------------------------------------------------- /Example/TextFieldsCatalogExample/Flows/Info/Info/Configurator/InfoModuleConfigurator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/TextFieldsCatalogExample/Flows/Info/Info/Configurator/InfoModuleConfigurator.swift -------------------------------------------------------------------------------- /Example/TextFieldsCatalogExample/Flows/Info/Info/Presenter/InfoModuleInput.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/TextFieldsCatalogExample/Flows/Info/Info/Presenter/InfoModuleInput.swift -------------------------------------------------------------------------------- /Example/TextFieldsCatalogExample/Flows/Info/Info/Presenter/InfoModuleOutput.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/TextFieldsCatalogExample/Flows/Info/Info/Presenter/InfoModuleOutput.swift -------------------------------------------------------------------------------- /Example/TextFieldsCatalogExample/Flows/Info/Info/Presenter/InfoPresenter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/TextFieldsCatalogExample/Flows/Info/Info/Presenter/InfoPresenter.swift -------------------------------------------------------------------------------- /Example/TextFieldsCatalogExample/Flows/Info/Info/View/InfoViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/TextFieldsCatalogExample/Flows/Info/Info/View/InfoViewController.swift -------------------------------------------------------------------------------- /Example/TextFieldsCatalogExample/Flows/Info/Info/View/InfoViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/TextFieldsCatalogExample/Flows/Info/Info/View/InfoViewController.xib -------------------------------------------------------------------------------- /Example/TextFieldsCatalogExample/Flows/Info/Info/View/InfoViewInput.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/TextFieldsCatalogExample/Flows/Info/Info/View/InfoViewInput.swift -------------------------------------------------------------------------------- /Example/TextFieldsCatalogExample/Flows/Info/Info/View/InfoViewOutput.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/TextFieldsCatalogExample/Flows/Info/Info/View/InfoViewOutput.swift -------------------------------------------------------------------------------- /Example/TextFieldsCatalogExample/Flows/Info/InfoCoordinator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/TextFieldsCatalogExample/Flows/Info/InfoCoordinator.swift -------------------------------------------------------------------------------- /Example/TextFieldsCatalogExample/Flows/Info/InfoCoordinatorOutput.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/TextFieldsCatalogExample/Flows/Info/InfoCoordinatorOutput.swift -------------------------------------------------------------------------------- /Example/TextFieldsCatalogExample/Flows/Main/FieldExample/Configurator/FieldExampleModuleConfigurator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/TextFieldsCatalogExample/Flows/Main/FieldExample/Configurator/FieldExampleModuleConfigurator.swift -------------------------------------------------------------------------------- /Example/TextFieldsCatalogExample/Flows/Main/FieldExample/Presenter/FieldExampleModuleInput.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/TextFieldsCatalogExample/Flows/Main/FieldExample/Presenter/FieldExampleModuleInput.swift -------------------------------------------------------------------------------- /Example/TextFieldsCatalogExample/Flows/Main/FieldExample/Presenter/FieldExampleModuleOutput.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/TextFieldsCatalogExample/Flows/Main/FieldExample/Presenter/FieldExampleModuleOutput.swift -------------------------------------------------------------------------------- /Example/TextFieldsCatalogExample/Flows/Main/FieldExample/Presenter/FieldExamplePresenter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/TextFieldsCatalogExample/Flows/Main/FieldExample/Presenter/FieldExamplePresenter.swift -------------------------------------------------------------------------------- /Example/TextFieldsCatalogExample/Flows/Main/FieldExample/View/FieldExampleViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/TextFieldsCatalogExample/Flows/Main/FieldExample/View/FieldExampleViewController.swift -------------------------------------------------------------------------------- /Example/TextFieldsCatalogExample/Flows/Main/FieldExample/View/FieldExampleViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/TextFieldsCatalogExample/Flows/Main/FieldExample/View/FieldExampleViewController.xib -------------------------------------------------------------------------------- /Example/TextFieldsCatalogExample/Flows/Main/FieldExample/View/FieldExampleViewInput.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/TextFieldsCatalogExample/Flows/Main/FieldExample/View/FieldExampleViewInput.swift -------------------------------------------------------------------------------- /Example/TextFieldsCatalogExample/Flows/Main/FieldExample/View/FieldExampleViewOutput.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/TextFieldsCatalogExample/Flows/Main/FieldExample/View/FieldExampleViewOutput.swift -------------------------------------------------------------------------------- /Example/TextFieldsCatalogExample/Flows/Main/FieldPresets/Configurator/FieldPresetsModuleConfigurator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/TextFieldsCatalogExample/Flows/Main/FieldPresets/Configurator/FieldPresetsModuleConfigurator.swift -------------------------------------------------------------------------------- /Example/TextFieldsCatalogExample/Flows/Main/FieldPresets/Presenter/FieldPresetsModuleInput.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/TextFieldsCatalogExample/Flows/Main/FieldPresets/Presenter/FieldPresetsModuleInput.swift -------------------------------------------------------------------------------- /Example/TextFieldsCatalogExample/Flows/Main/FieldPresets/Presenter/FieldPresetsModuleOutput.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/TextFieldsCatalogExample/Flows/Main/FieldPresets/Presenter/FieldPresetsModuleOutput.swift -------------------------------------------------------------------------------- /Example/TextFieldsCatalogExample/Flows/Main/FieldPresets/Presenter/FieldPresetsPresenter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/TextFieldsCatalogExample/Flows/Main/FieldPresets/Presenter/FieldPresetsPresenter.swift -------------------------------------------------------------------------------- /Example/TextFieldsCatalogExample/Flows/Main/FieldPresets/View/Adapter/Cell/FieldPresetTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/TextFieldsCatalogExample/Flows/Main/FieldPresets/View/Adapter/Cell/FieldPresetTableViewCell.swift -------------------------------------------------------------------------------- /Example/TextFieldsCatalogExample/Flows/Main/FieldPresets/View/Adapter/Cell/FieldPresetTableViewCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/TextFieldsCatalogExample/Flows/Main/FieldPresets/View/Adapter/Cell/FieldPresetTableViewCell.xib -------------------------------------------------------------------------------- /Example/TextFieldsCatalogExample/Flows/Main/FieldPresets/View/Adapter/FieldPresetsAdapter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/TextFieldsCatalogExample/Flows/Main/FieldPresets/View/Adapter/FieldPresetsAdapter.swift -------------------------------------------------------------------------------- /Example/TextFieldsCatalogExample/Flows/Main/FieldPresets/View/FieldPresetsViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/TextFieldsCatalogExample/Flows/Main/FieldPresets/View/FieldPresetsViewController.swift -------------------------------------------------------------------------------- /Example/TextFieldsCatalogExample/Flows/Main/FieldPresets/View/FieldPresetsViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/TextFieldsCatalogExample/Flows/Main/FieldPresets/View/FieldPresetsViewController.xib -------------------------------------------------------------------------------- /Example/TextFieldsCatalogExample/Flows/Main/FieldPresets/View/FieldPresetsViewInput.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/TextFieldsCatalogExample/Flows/Main/FieldPresets/View/FieldPresetsViewInput.swift -------------------------------------------------------------------------------- /Example/TextFieldsCatalogExample/Flows/Main/FieldPresets/View/FieldPresetsViewOutput.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/TextFieldsCatalogExample/Flows/Main/FieldPresets/View/FieldPresetsViewOutput.swift -------------------------------------------------------------------------------- /Example/TextFieldsCatalogExample/Flows/Main/Main/Configurator/MainModuleConfigurator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/TextFieldsCatalogExample/Flows/Main/Main/Configurator/MainModuleConfigurator.swift -------------------------------------------------------------------------------- /Example/TextFieldsCatalogExample/Flows/Main/Main/Presenter/MainModuleInput.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/TextFieldsCatalogExample/Flows/Main/Main/Presenter/MainModuleInput.swift -------------------------------------------------------------------------------- /Example/TextFieldsCatalogExample/Flows/Main/Main/Presenter/MainModuleOutput.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/TextFieldsCatalogExample/Flows/Main/Main/Presenter/MainModuleOutput.swift -------------------------------------------------------------------------------- /Example/TextFieldsCatalogExample/Flows/Main/Main/Presenter/MainPresenter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/TextFieldsCatalogExample/Flows/Main/Main/Presenter/MainPresenter.swift -------------------------------------------------------------------------------- /Example/TextFieldsCatalogExample/Flows/Main/Main/View/Adapter/Cell/MainFieldTableViewCell/MainFieldTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/TextFieldsCatalogExample/Flows/Main/Main/View/Adapter/Cell/MainFieldTableViewCell/MainFieldTableViewCell.swift -------------------------------------------------------------------------------- /Example/TextFieldsCatalogExample/Flows/Main/Main/View/Adapter/Cell/MainFieldTableViewCell/MainFieldTableViewCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/TextFieldsCatalogExample/Flows/Main/Main/View/Adapter/Cell/MainFieldTableViewCell/MainFieldTableViewCell.xib -------------------------------------------------------------------------------- /Example/TextFieldsCatalogExample/Flows/Main/Main/View/Adapter/Cell/MainMessageTableViewCell/MainMessageTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/TextFieldsCatalogExample/Flows/Main/Main/View/Adapter/Cell/MainMessageTableViewCell/MainMessageTableViewCell.swift -------------------------------------------------------------------------------- /Example/TextFieldsCatalogExample/Flows/Main/Main/View/Adapter/Cell/MainMessageTableViewCell/MainMessageTableViewCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/TextFieldsCatalogExample/Flows/Main/Main/View/Adapter/Cell/MainMessageTableViewCell/MainMessageTableViewCell.xib -------------------------------------------------------------------------------- /Example/TextFieldsCatalogExample/Flows/Main/Main/View/Adapter/MainAdapter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/TextFieldsCatalogExample/Flows/Main/Main/View/Adapter/MainAdapter.swift -------------------------------------------------------------------------------- /Example/TextFieldsCatalogExample/Flows/Main/Main/View/MainViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/TextFieldsCatalogExample/Flows/Main/Main/View/MainViewController.swift -------------------------------------------------------------------------------- /Example/TextFieldsCatalogExample/Flows/Main/Main/View/MainViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/TextFieldsCatalogExample/Flows/Main/Main/View/MainViewController.xib -------------------------------------------------------------------------------- /Example/TextFieldsCatalogExample/Flows/Main/Main/View/MainViewInput.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/TextFieldsCatalogExample/Flows/Main/Main/View/MainViewInput.swift -------------------------------------------------------------------------------- /Example/TextFieldsCatalogExample/Flows/Main/Main/View/MainViewOutput.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/TextFieldsCatalogExample/Flows/Main/Main/View/MainViewOutput.swift -------------------------------------------------------------------------------- /Example/TextFieldsCatalogExample/Flows/Main/Main/View/ViewModel/MainModuleViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/TextFieldsCatalogExample/Flows/Main/Main/View/ViewModel/MainModuleViewModel.swift -------------------------------------------------------------------------------- /Example/TextFieldsCatalogExample/Flows/Main/MainCoordinator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/TextFieldsCatalogExample/Flows/Main/MainCoordinator.swift -------------------------------------------------------------------------------- /Example/TextFieldsCatalogExample/Flows/Main/MainCoordinatorOutput.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/TextFieldsCatalogExample/Flows/Main/MainCoordinatorOutput.swift -------------------------------------------------------------------------------- /Example/TextFieldsCatalogExample/Flows/MainTabBar/MainTabBar/Configurator/MainTabBarModuleConfigurator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/TextFieldsCatalogExample/Flows/MainTabBar/MainTabBar/Configurator/MainTabBarModuleConfigurator.swift -------------------------------------------------------------------------------- /Example/TextFieldsCatalogExample/Flows/MainTabBar/MainTabBar/Presenter/MainTabBarModuleInput.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/TextFieldsCatalogExample/Flows/MainTabBar/MainTabBar/Presenter/MainTabBarModuleInput.swift -------------------------------------------------------------------------------- /Example/TextFieldsCatalogExample/Flows/MainTabBar/MainTabBar/Presenter/MainTabBarModuleOutput.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/TextFieldsCatalogExample/Flows/MainTabBar/MainTabBar/Presenter/MainTabBarModuleOutput.swift -------------------------------------------------------------------------------- /Example/TextFieldsCatalogExample/Flows/MainTabBar/MainTabBar/Presenter/MainTabBarPresenter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/TextFieldsCatalogExample/Flows/MainTabBar/MainTabBar/Presenter/MainTabBarPresenter.swift -------------------------------------------------------------------------------- /Example/TextFieldsCatalogExample/Flows/MainTabBar/MainTabBar/View/MainTabBarViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/TextFieldsCatalogExample/Flows/MainTabBar/MainTabBar/View/MainTabBarViewController.swift -------------------------------------------------------------------------------- /Example/TextFieldsCatalogExample/Flows/MainTabBar/MainTabBar/View/MainTabBarViewInput.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/TextFieldsCatalogExample/Flows/MainTabBar/MainTabBar/View/MainTabBarViewInput.swift -------------------------------------------------------------------------------- /Example/TextFieldsCatalogExample/Flows/MainTabBar/MainTabBar/View/MainTabBarViewOutput.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/TextFieldsCatalogExample/Flows/MainTabBar/MainTabBar/View/MainTabBarViewOutput.swift -------------------------------------------------------------------------------- /Example/TextFieldsCatalogExample/Flows/MainTabBar/MainTabBarCoordinator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/TextFieldsCatalogExample/Flows/MainTabBar/MainTabBarCoordinator.swift -------------------------------------------------------------------------------- /Example/TextFieldsCatalogExample/Flows/MainTabBar/MainTabBarCoordinatorOutput.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/TextFieldsCatalogExample/Flows/MainTabBar/MainTabBarCoordinatorOutput.swift -------------------------------------------------------------------------------- /Example/TextFieldsCatalogExample/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/TextFieldsCatalogExample/Info.plist -------------------------------------------------------------------------------- /Example/TextFieldsCatalogExample/Library/BaseClasses/BaseCoordinator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/TextFieldsCatalogExample/Library/BaseClasses/BaseCoordinator.swift -------------------------------------------------------------------------------- /Example/TextFieldsCatalogExample/Library/BaseClasses/DesignableView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/TextFieldsCatalogExample/Library/BaseClasses/DesignableView.swift -------------------------------------------------------------------------------- /Example/TextFieldsCatalogExample/Library/BaseClasses/StorkContainerViewController/StorkContainerViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/TextFieldsCatalogExample/Library/BaseClasses/StorkContainerViewController/StorkContainerViewController.swift -------------------------------------------------------------------------------- /Example/TextFieldsCatalogExample/Library/BaseClasses/StorkContainerViewController/StorkContainerViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/TextFieldsCatalogExample/Library/BaseClasses/StorkContainerViewController/StorkContainerViewController.xib -------------------------------------------------------------------------------- /Example/TextFieldsCatalogExample/Library/Extensions/FormatterMasks.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/TextFieldsCatalogExample/Library/Extensions/FormatterMasks.swift -------------------------------------------------------------------------------- /Example/TextFieldsCatalogExample/Library/Extensions/Foundation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/TextFieldsCatalogExample/Library/Extensions/Foundation.swift -------------------------------------------------------------------------------- /Example/TextFieldsCatalogExample/Library/Extensions/String.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/TextFieldsCatalogExample/Library/Extensions/String.swift -------------------------------------------------------------------------------- /Example/TextFieldsCatalogExample/Library/Extensions/UIApplication.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/TextFieldsCatalogExample/Library/Extensions/UIApplication.swift -------------------------------------------------------------------------------- /Example/TextFieldsCatalogExample/Library/Extensions/UIColor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/TextFieldsCatalogExample/Library/Extensions/UIColor.swift -------------------------------------------------------------------------------- /Example/TextFieldsCatalogExample/Library/Extensions/UIDevice.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/TextFieldsCatalogExample/Library/Extensions/UIDevice.swift -------------------------------------------------------------------------------- /Example/TextFieldsCatalogExample/Library/Extensions/UIImage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/TextFieldsCatalogExample/Library/Extensions/UIImage.swift -------------------------------------------------------------------------------- /Example/TextFieldsCatalogExample/Library/Extensions/UITableView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/TextFieldsCatalogExample/Library/Extensions/UITableView.swift -------------------------------------------------------------------------------- /Example/TextFieldsCatalogExample/Library/Extensions/UITableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/TextFieldsCatalogExample/Library/Extensions/UITableViewCell.swift -------------------------------------------------------------------------------- /Example/TextFieldsCatalogExample/Library/Extensions/UIView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/TextFieldsCatalogExample/Library/Extensions/UIView.swift -------------------------------------------------------------------------------- /Example/TextFieldsCatalogExample/Library/Extensions/UIViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/TextFieldsCatalogExample/Library/Extensions/UIViewController.swift -------------------------------------------------------------------------------- /Example/TextFieldsCatalogExample/Library/Protocols/AppliedPreset.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/TextFieldsCatalogExample/Library/Protocols/AppliedPreset.swift -------------------------------------------------------------------------------- /Example/TextFieldsCatalogExample/Library/Protocols/Coordinator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/TextFieldsCatalogExample/Library/Protocols/Coordinator.swift -------------------------------------------------------------------------------- /Example/TextFieldsCatalogExample/Library/Protocols/CustomNavigationTitlePresentable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/TextFieldsCatalogExample/Library/Protocols/CustomNavigationTitlePresentable.swift -------------------------------------------------------------------------------- /Example/TextFieldsCatalogExample/Library/Protocols/Presentable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/TextFieldsCatalogExample/Library/Protocols/Presentable.swift -------------------------------------------------------------------------------- /Example/TextFieldsCatalogExample/Library/Protocols/Router.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/TextFieldsCatalogExample/Library/Protocols/Router.swift -------------------------------------------------------------------------------- /Example/TextFieldsCatalogExample/Library/Reusable/CommonNavigationController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/TextFieldsCatalogExample/Library/Reusable/CommonNavigationController.swift -------------------------------------------------------------------------------- /Example/TextFieldsCatalogExample/Library/Reusable/CommonTableHeader/CommonTableHeader.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/TextFieldsCatalogExample/Library/Reusable/CommonTableHeader/CommonTableHeader.swift -------------------------------------------------------------------------------- /Example/TextFieldsCatalogExample/Library/Reusable/CommonTableHeader/CommonTableHeader.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/TextFieldsCatalogExample/Library/Reusable/CommonTableHeader/CommonTableHeader.xib -------------------------------------------------------------------------------- /Example/TextFieldsCatalogExample/Library/Reusable/CustomTitleView/CustomTitleView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/TextFieldsCatalogExample/Library/Reusable/CustomTitleView/CustomTitleView.swift -------------------------------------------------------------------------------- /Example/TextFieldsCatalogExample/Library/Reusable/CustomTitleView/CustomTitleView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/TextFieldsCatalogExample/Library/Reusable/CustomTitleView/CustomTitleView.xib -------------------------------------------------------------------------------- /Example/TextFieldsCatalogExample/Library/Reusable/MainButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/TextFieldsCatalogExample/Library/Reusable/MainButton.swift -------------------------------------------------------------------------------- /Example/TextFieldsCatalogExample/Library/Routers/MainRouter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/TextFieldsCatalogExample/Library/Routers/MainRouter.swift -------------------------------------------------------------------------------- /Example/TextFieldsCatalogExample/Resources/Colors/Color.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/TextFieldsCatalogExample/Resources/Colors/Color.swift -------------------------------------------------------------------------------- /Example/TextFieldsCatalogExample/Resources/Constants/Closures.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/TextFieldsCatalogExample/Resources/Constants/Closures.swift -------------------------------------------------------------------------------- /Example/TextFieldsCatalogExample/Resources/Constants/MainTab.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/TextFieldsCatalogExample/Resources/Constants/MainTab.swift -------------------------------------------------------------------------------- /Example/TextFieldsCatalogExample/Resources/Constants/Sex.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/TextFieldsCatalogExample/Resources/Constants/Sex.swift -------------------------------------------------------------------------------- /Example/TextFieldsCatalogExample/Resources/Constants/SharedRegex.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/TextFieldsCatalogExample/Resources/Constants/SharedRegex.swift -------------------------------------------------------------------------------- /Example/TextFieldsCatalogExample/Resources/Images/Assets.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/TextFieldsCatalogExample/Resources/Images/Assets.swift -------------------------------------------------------------------------------- /Example/TextFieldsCatalogExample/Resources/Images/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/TextFieldsCatalogExample/Resources/Images/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/TextFieldsCatalogExample/Resources/Images/Assets.xcassets/AppIcon.appiconset/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/TextFieldsCatalogExample/Resources/Images/Assets.xcassets/AppIcon.appiconset/Icon.png -------------------------------------------------------------------------------- /Example/TextFieldsCatalogExample/Resources/Images/Assets.xcassets/AppIcon.appiconset/icon_20pt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/TextFieldsCatalogExample/Resources/Images/Assets.xcassets/AppIcon.appiconset/icon_20pt.png -------------------------------------------------------------------------------- /Example/TextFieldsCatalogExample/Resources/Images/Assets.xcassets/AppIcon.appiconset/icon_20pt@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/TextFieldsCatalogExample/Resources/Images/Assets.xcassets/AppIcon.appiconset/icon_20pt@2x-1.png -------------------------------------------------------------------------------- /Example/TextFieldsCatalogExample/Resources/Images/Assets.xcassets/AppIcon.appiconset/icon_20pt@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/TextFieldsCatalogExample/Resources/Images/Assets.xcassets/AppIcon.appiconset/icon_20pt@2x.png -------------------------------------------------------------------------------- /Example/TextFieldsCatalogExample/Resources/Images/Assets.xcassets/AppIcon.appiconset/icon_20pt@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/TextFieldsCatalogExample/Resources/Images/Assets.xcassets/AppIcon.appiconset/icon_20pt@3x.png -------------------------------------------------------------------------------- /Example/TextFieldsCatalogExample/Resources/Images/Assets.xcassets/AppIcon.appiconset/icon_29pt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/TextFieldsCatalogExample/Resources/Images/Assets.xcassets/AppIcon.appiconset/icon_29pt.png -------------------------------------------------------------------------------- /Example/TextFieldsCatalogExample/Resources/Images/Assets.xcassets/AppIcon.appiconset/icon_29pt@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/TextFieldsCatalogExample/Resources/Images/Assets.xcassets/AppIcon.appiconset/icon_29pt@2x-1.png -------------------------------------------------------------------------------- /Example/TextFieldsCatalogExample/Resources/Images/Assets.xcassets/AppIcon.appiconset/icon_29pt@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/TextFieldsCatalogExample/Resources/Images/Assets.xcassets/AppIcon.appiconset/icon_29pt@2x.png -------------------------------------------------------------------------------- /Example/TextFieldsCatalogExample/Resources/Images/Assets.xcassets/AppIcon.appiconset/icon_29pt@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/TextFieldsCatalogExample/Resources/Images/Assets.xcassets/AppIcon.appiconset/icon_29pt@3x.png -------------------------------------------------------------------------------- /Example/TextFieldsCatalogExample/Resources/Images/Assets.xcassets/AppIcon.appiconset/icon_40pt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/TextFieldsCatalogExample/Resources/Images/Assets.xcassets/AppIcon.appiconset/icon_40pt.png -------------------------------------------------------------------------------- /Example/TextFieldsCatalogExample/Resources/Images/Assets.xcassets/AppIcon.appiconset/icon_40pt@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/TextFieldsCatalogExample/Resources/Images/Assets.xcassets/AppIcon.appiconset/icon_40pt@2x-1.png -------------------------------------------------------------------------------- /Example/TextFieldsCatalogExample/Resources/Images/Assets.xcassets/AppIcon.appiconset/icon_40pt@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/TextFieldsCatalogExample/Resources/Images/Assets.xcassets/AppIcon.appiconset/icon_40pt@2x.png -------------------------------------------------------------------------------- /Example/TextFieldsCatalogExample/Resources/Images/Assets.xcassets/AppIcon.appiconset/icon_40pt@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/TextFieldsCatalogExample/Resources/Images/Assets.xcassets/AppIcon.appiconset/icon_40pt@3x.png -------------------------------------------------------------------------------- /Example/TextFieldsCatalogExample/Resources/Images/Assets.xcassets/AppIcon.appiconset/icon_60pt@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/TextFieldsCatalogExample/Resources/Images/Assets.xcassets/AppIcon.appiconset/icon_60pt@2x.png -------------------------------------------------------------------------------- /Example/TextFieldsCatalogExample/Resources/Images/Assets.xcassets/AppIcon.appiconset/icon_60pt@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/TextFieldsCatalogExample/Resources/Images/Assets.xcassets/AppIcon.appiconset/icon_60pt@3x.png -------------------------------------------------------------------------------- /Example/TextFieldsCatalogExample/Resources/Images/Assets.xcassets/AppIcon.appiconset/icon_76pt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/TextFieldsCatalogExample/Resources/Images/Assets.xcassets/AppIcon.appiconset/icon_76pt.png -------------------------------------------------------------------------------- /Example/TextFieldsCatalogExample/Resources/Images/Assets.xcassets/AppIcon.appiconset/icon_76pt@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/TextFieldsCatalogExample/Resources/Images/Assets.xcassets/AppIcon.appiconset/icon_76pt@2x.png -------------------------------------------------------------------------------- /Example/TextFieldsCatalogExample/Resources/Images/Assets.xcassets/AppIcon.appiconset/icon_83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/TextFieldsCatalogExample/Resources/Images/Assets.xcassets/AppIcon.appiconset/icon_83.5@2x.png -------------------------------------------------------------------------------- /Example/TextFieldsCatalogExample/Resources/Images/Assets.xcassets/Colors/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/TextFieldsCatalogExample/Resources/Images/Assets.xcassets/Colors/Contents.json -------------------------------------------------------------------------------- /Example/TextFieldsCatalogExample/Resources/Images/Assets.xcassets/Colors/active.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/TextFieldsCatalogExample/Resources/Images/Assets.xcassets/Colors/active.colorset/Contents.json -------------------------------------------------------------------------------- /Example/TextFieldsCatalogExample/Resources/Images/Assets.xcassets/Colors/activePress.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/TextFieldsCatalogExample/Resources/Images/Assets.xcassets/Colors/activePress.colorset/Contents.json -------------------------------------------------------------------------------- /Example/TextFieldsCatalogExample/Resources/Images/Assets.xcassets/Colors/background.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/TextFieldsCatalogExample/Resources/Images/Assets.xcassets/Colors/background.colorset/Contents.json -------------------------------------------------------------------------------- /Example/TextFieldsCatalogExample/Resources/Images/Assets.xcassets/Colors/error.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/TextFieldsCatalogExample/Resources/Images/Assets.xcassets/Colors/error.colorset/Contents.json -------------------------------------------------------------------------------- /Example/TextFieldsCatalogExample/Resources/Images/Assets.xcassets/Colors/fieldNormal.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/TextFieldsCatalogExample/Resources/Images/Assets.xcassets/Colors/fieldNormal.colorset/Contents.json -------------------------------------------------------------------------------- /Example/TextFieldsCatalogExample/Resources/Images/Assets.xcassets/Colors/highlighted.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/TextFieldsCatalogExample/Resources/Images/Assets.xcassets/Colors/highlighted.colorset/Contents.json -------------------------------------------------------------------------------- /Example/TextFieldsCatalogExample/Resources/Images/Assets.xcassets/Colors/mainButtonText.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/TextFieldsCatalogExample/Resources/Images/Assets.xcassets/Colors/mainButtonText.colorset/Contents.json -------------------------------------------------------------------------------- /Example/TextFieldsCatalogExample/Resources/Images/Assets.xcassets/Colors/placeholderGray.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/TextFieldsCatalogExample/Resources/Images/Assets.xcassets/Colors/placeholderGray.colorset/Contents.json -------------------------------------------------------------------------------- /Example/TextFieldsCatalogExample/Resources/Images/Assets.xcassets/Colors/regular.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/TextFieldsCatalogExample/Resources/Images/Assets.xcassets/Colors/regular.colorset/Contents.json -------------------------------------------------------------------------------- /Example/TextFieldsCatalogExample/Resources/Images/Assets.xcassets/Colors/text.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/TextFieldsCatalogExample/Resources/Images/Assets.xcassets/Colors/text.colorset/Contents.json -------------------------------------------------------------------------------- /Example/TextFieldsCatalogExample/Resources/Images/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/TextFieldsCatalogExample/Resources/Images/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Example/TextFieldsCatalogExample/Resources/Images/Assets.xcassets/MainTab/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/TextFieldsCatalogExample/Resources/Images/Assets.xcassets/MainTab/Contents.json -------------------------------------------------------------------------------- /Example/TextFieldsCatalogExample/Resources/Images/Assets.xcassets/MainTab/catalog.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/TextFieldsCatalogExample/Resources/Images/Assets.xcassets/MainTab/catalog.imageset/Contents.json -------------------------------------------------------------------------------- /Example/TextFieldsCatalogExample/Resources/Images/Assets.xcassets/MainTab/catalog.imageset/icon-cart.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/TextFieldsCatalogExample/Resources/Images/Assets.xcassets/MainTab/catalog.imageset/icon-cart.pdf -------------------------------------------------------------------------------- /Example/TextFieldsCatalogExample/Resources/Images/Assets.xcassets/MainTab/example.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/TextFieldsCatalogExample/Resources/Images/Assets.xcassets/MainTab/example.imageset/Contents.json -------------------------------------------------------------------------------- /Example/TextFieldsCatalogExample/Resources/Images/Assets.xcassets/MainTab/example.imageset/icon-catalog.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/TextFieldsCatalogExample/Resources/Images/Assets.xcassets/MainTab/example.imageset/icon-catalog.pdf -------------------------------------------------------------------------------- /Example/TextFieldsCatalogExample/Resources/Images/Assets.xcassets/MainTab/info.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/TextFieldsCatalogExample/Resources/Images/Assets.xcassets/MainTab/info.imageset/Contents.json -------------------------------------------------------------------------------- /Example/TextFieldsCatalogExample/Resources/Images/Assets.xcassets/MainTab/info.imageset/icon-profile.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/TextFieldsCatalogExample/Resources/Images/Assets.xcassets/MainTab/info.imageset/icon-profile.pdf -------------------------------------------------------------------------------- /Example/TextFieldsCatalogExample/Resources/Images/Assets.xcassets/close.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/TextFieldsCatalogExample/Resources/Images/Assets.xcassets/close.imageset/Contents.json -------------------------------------------------------------------------------- /Example/TextFieldsCatalogExample/Resources/Images/Assets.xcassets/close.imageset/ic_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/TextFieldsCatalogExample/Resources/Images/Assets.xcassets/close.imageset/ic_close.png -------------------------------------------------------------------------------- /Example/TextFieldsCatalogExample/Resources/Images/Assets.xcassets/close.imageset/ic_close@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/TextFieldsCatalogExample/Resources/Images/Assets.xcassets/close.imageset/ic_close@2x.png -------------------------------------------------------------------------------- /Example/TextFieldsCatalogExample/Resources/Images/Assets.xcassets/close.imageset/ic_close@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/TextFieldsCatalogExample/Resources/Images/Assets.xcassets/close.imageset/ic_close@3x.png -------------------------------------------------------------------------------- /Example/TextFieldsCatalogExample/Resources/Images/Assets.xcassets/customEyeOff.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/TextFieldsCatalogExample/Resources/Images/Assets.xcassets/customEyeOff.imageset/Contents.json -------------------------------------------------------------------------------- /Example/TextFieldsCatalogExample/Resources/Images/Assets.xcassets/customEyeOff.imageset/iconEyeClose.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/TextFieldsCatalogExample/Resources/Images/Assets.xcassets/customEyeOff.imageset/iconEyeClose.png -------------------------------------------------------------------------------- /Example/TextFieldsCatalogExample/Resources/Images/Assets.xcassets/customEyeOff.imageset/iconEyeClose@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/TextFieldsCatalogExample/Resources/Images/Assets.xcassets/customEyeOff.imageset/iconEyeClose@2x.png -------------------------------------------------------------------------------- /Example/TextFieldsCatalogExample/Resources/Images/Assets.xcassets/customEyeOff.imageset/iconEyeClose@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/TextFieldsCatalogExample/Resources/Images/Assets.xcassets/customEyeOff.imageset/iconEyeClose@3x.png -------------------------------------------------------------------------------- /Example/TextFieldsCatalogExample/Resources/Images/Assets.xcassets/customEyeOn.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/TextFieldsCatalogExample/Resources/Images/Assets.xcassets/customEyeOn.imageset/Contents.json -------------------------------------------------------------------------------- /Example/TextFieldsCatalogExample/Resources/Images/Assets.xcassets/customEyeOn.imageset/iconEyeShow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/TextFieldsCatalogExample/Resources/Images/Assets.xcassets/customEyeOn.imageset/iconEyeShow.png -------------------------------------------------------------------------------- /Example/TextFieldsCatalogExample/Resources/Images/Assets.xcassets/customEyeOn.imageset/iconEyeShow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/TextFieldsCatalogExample/Resources/Images/Assets.xcassets/customEyeOn.imageset/iconEyeShow@2x.png -------------------------------------------------------------------------------- /Example/TextFieldsCatalogExample/Resources/Images/Assets.xcassets/customEyeOn.imageset/iconEyeShow@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/TextFieldsCatalogExample/Resources/Images/Assets.xcassets/customEyeOn.imageset/iconEyeShow@3x.png -------------------------------------------------------------------------------- /Example/TextFieldsCatalogExample/Resources/Images/Assets.xcassets/info.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/TextFieldsCatalogExample/Resources/Images/Assets.xcassets/info.imageset/Contents.json -------------------------------------------------------------------------------- /Example/TextFieldsCatalogExample/Resources/Images/Assets.xcassets/info.imageset/Group 12.3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/TextFieldsCatalogExample/Resources/Images/Assets.xcassets/info.imageset/Group 12.3.png -------------------------------------------------------------------------------- /Example/TextFieldsCatalogExample/Resources/Images/Assets.xcassets/info.imageset/Group 12.3@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/TextFieldsCatalogExample/Resources/Images/Assets.xcassets/info.imageset/Group 12.3@2x.png -------------------------------------------------------------------------------- /Example/TextFieldsCatalogExample/Resources/Images/Assets.xcassets/info.imageset/Group 12.3@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/TextFieldsCatalogExample/Resources/Images/Assets.xcassets/info.imageset/Group 12.3@3x.png -------------------------------------------------------------------------------- /Example/TextFieldsCatalogExample/Resources/Images/Assets.xcassets/qrCode.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/TextFieldsCatalogExample/Resources/Images/Assets.xcassets/qrCode.imageset/Contents.json -------------------------------------------------------------------------------- /Example/TextFieldsCatalogExample/Resources/Images/Assets.xcassets/qrCode.imageset/ic_qr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/TextFieldsCatalogExample/Resources/Images/Assets.xcassets/qrCode.imageset/ic_qr.png -------------------------------------------------------------------------------- /Example/TextFieldsCatalogExample/Resources/Images/Assets.xcassets/qrCode.imageset/ic_qr@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/TextFieldsCatalogExample/Resources/Images/Assets.xcassets/qrCode.imageset/ic_qr@2x.png -------------------------------------------------------------------------------- /Example/TextFieldsCatalogExample/Resources/Images/Assets.xcassets/qrCode.imageset/ic_qr@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/TextFieldsCatalogExample/Resources/Images/Assets.xcassets/qrCode.imageset/ic_qr@3x.png -------------------------------------------------------------------------------- /Example/TextFieldsCatalogExample/Resources/Strings/Strings.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/TextFieldsCatalogExample/Resources/Strings/Strings.swift -------------------------------------------------------------------------------- /Example/TextFieldsCatalogExample/Resources/Strings/en.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/TextFieldsCatalogExample/Resources/Strings/en.lproj/Localizable.strings -------------------------------------------------------------------------------- /Example/TextFieldsCatalogExample/Resources/Strings/ru.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/TextFieldsCatalogExample/Resources/Strings/ru.lproj/Localizable.strings -------------------------------------------------------------------------------- /Example/TextFieldsCatalogExample/TextFields/TextFields/BoxTextField/BoxTextField.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/TextFieldsCatalogExample/TextFields/TextFields/BoxTextField/BoxTextField.swift -------------------------------------------------------------------------------- /Example/TextFieldsCatalogExample/TextFields/TextFields/BoxTextField/BoxTextField.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/TextFieldsCatalogExample/TextFields/TextFields/BoxTextField/BoxTextField.xib -------------------------------------------------------------------------------- /Example/TextFieldsCatalogExample/TextFields/TextFields/CustomUnderlinedTextField/CustomUnderlinedTextField.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/TextFieldsCatalogExample/TextFields/TextFields/CustomUnderlinedTextField/CustomUnderlinedTextField.swift -------------------------------------------------------------------------------- /Example/TextFieldsCatalogExample/TextFields/TextFields/CustomUnderlinedTextField/CustomUnderlinedTextField.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/TextFieldsCatalogExample/TextFields/TextFields/CustomUnderlinedTextField/CustomUnderlinedTextField.xib -------------------------------------------------------------------------------- /Example/TextFieldsCatalogExample/TextFields/TextFields/InputViews/InputViews.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/TextFieldsCatalogExample/TextFields/TextFields/InputViews/InputViews.swift -------------------------------------------------------------------------------- /Example/TextFieldsCatalogExample/TextFields/TextFields/SumTextField/CurrencyPlaceholderService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/TextFieldsCatalogExample/TextFields/TextFields/SumTextField/CurrencyPlaceholderService.swift -------------------------------------------------------------------------------- /Example/TextFieldsCatalogExample/TextFields/TextFields/SumTextField/SumTextField.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/TextFieldsCatalogExample/TextFields/TextFields/SumTextField/SumTextField.swift -------------------------------------------------------------------------------- /Example/TextFieldsCatalogExample/TextFields/TextFields/SumTextField/SumTextField.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/TextFieldsCatalogExample/TextFields/TextFields/SumTextField/SumTextField.xib -------------------------------------------------------------------------------- /Example/TextFieldsCatalogExample/TextFields/TextFields/UnderlinedTextField/UnderlinedTextField.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/TextFieldsCatalogExample/TextFields/TextFields/UnderlinedTextField/UnderlinedTextField.swift -------------------------------------------------------------------------------- /Example/TextFieldsCatalogExample/TextFields/Types and presets/Presets/SumFieldPreset.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/TextFieldsCatalogExample/TextFields/Types and presets/Presets/SumFieldPreset.swift -------------------------------------------------------------------------------- /Example/TextFieldsCatalogExample/TextFields/Types and presets/Presets/UnderlinedFieldPreset.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/TextFieldsCatalogExample/TextFields/Types and presets/Presets/UnderlinedFieldPreset.swift -------------------------------------------------------------------------------- /Example/TextFieldsCatalogExample/TextFields/Types and presets/Presets/UnderlinedTextViewPreset.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/TextFieldsCatalogExample/TextFields/Types and presets/Presets/UnderlinedTextViewPreset.swift -------------------------------------------------------------------------------- /Example/TextFieldsCatalogExample/TextFields/Types and presets/TextFieldType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/TextFieldsCatalogExample/TextFields/Types and presets/TextFieldType.swift -------------------------------------------------------------------------------- /Example/TextFieldsCatalogExampleTests/FieldTests/UnderlinedFieldTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/TextFieldsCatalogExampleTests/FieldTests/UnderlinedFieldTests.swift -------------------------------------------------------------------------------- /Example/TextFieldsCatalogExampleTests/FieldTests/UnderlinedViewTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/TextFieldsCatalogExampleTests/FieldTests/UnderlinedViewTests.swift -------------------------------------------------------------------------------- /Example/TextFieldsCatalogExampleTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/TextFieldsCatalogExampleTests/Info.plist -------------------------------------------------------------------------------- /Example/TextFieldsCatalogExampleTests/ReferenceImages_64/TextFieldsCatalogExampleTests.MainFieldTableViewCellTests/testCellLayout@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/TextFieldsCatalogExampleTests/ReferenceImages_64/TextFieldsCatalogExampleTests.MainFieldTableViewCellTests/testCellLayout@2x.png -------------------------------------------------------------------------------- /Example/TextFieldsCatalogExampleTests/ReferenceImages_64/TextFieldsCatalogExampleTests.UnderlinedFieldTests/testDefaultField@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/TextFieldsCatalogExampleTests/ReferenceImages_64/TextFieldsCatalogExampleTests.UnderlinedFieldTests/testDefaultField@2x.png -------------------------------------------------------------------------------- /Example/TextFieldsCatalogExampleTests/ReferenceImages_64/TextFieldsCatalogExampleTests.UnderlinedFieldTests/testEmptyDisabledField@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/TextFieldsCatalogExampleTests/ReferenceImages_64/TextFieldsCatalogExampleTests.UnderlinedFieldTests/testEmptyDisabledField@2x.png -------------------------------------------------------------------------------- /Example/TextFieldsCatalogExampleTests/ReferenceImages_64/TextFieldsCatalogExampleTests.UnderlinedFieldTests/testEmptyErrorField@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/TextFieldsCatalogExampleTests/ReferenceImages_64/TextFieldsCatalogExampleTests.UnderlinedFieldTests/testEmptyErrorField@2x.png -------------------------------------------------------------------------------- /Example/TextFieldsCatalogExampleTests/ReferenceImages_64/TextFieldsCatalogExampleTests.UnderlinedFieldTests/testEmptyField@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/TextFieldsCatalogExampleTests/ReferenceImages_64/TextFieldsCatalogExampleTests.UnderlinedFieldTests/testEmptyField@2x.png -------------------------------------------------------------------------------- /Example/TextFieldsCatalogExampleTests/ReferenceImages_64/TextFieldsCatalogExampleTests.UnderlinedFieldTests/testFilledDisabledField@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/TextFieldsCatalogExampleTests/ReferenceImages_64/TextFieldsCatalogExampleTests.UnderlinedFieldTests/testFilledDisabledField@2x.png -------------------------------------------------------------------------------- /Example/TextFieldsCatalogExampleTests/ReferenceImages_64/TextFieldsCatalogExampleTests.UnderlinedFieldTests/testFilledErrorField@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/TextFieldsCatalogExampleTests/ReferenceImages_64/TextFieldsCatalogExampleTests.UnderlinedFieldTests/testFilledErrorField@2x.png -------------------------------------------------------------------------------- /Example/TextFieldsCatalogExampleTests/ReferenceImages_64/TextFieldsCatalogExampleTests.UnderlinedFieldTests/testFilledField@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/TextFieldsCatalogExampleTests/ReferenceImages_64/TextFieldsCatalogExampleTests.UnderlinedFieldTests/testFilledField@2x.png -------------------------------------------------------------------------------- /Example/TextFieldsCatalogExampleTests/ReferenceImages_64/TextFieldsCatalogExampleTests.UnderlinedFieldTests/testMultilineErrorMessage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/TextFieldsCatalogExampleTests/ReferenceImages_64/TextFieldsCatalogExampleTests.UnderlinedFieldTests/testMultilineErrorMessage@2x.png -------------------------------------------------------------------------------- /Example/TextFieldsCatalogExampleTests/ReferenceImages_64/TextFieldsCatalogExampleTests.UnderlinedFieldTests/testPasswordEmptyField@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/TextFieldsCatalogExampleTests/ReferenceImages_64/TextFieldsCatalogExampleTests.UnderlinedFieldTests/testPasswordEmptyField@2x.png -------------------------------------------------------------------------------- /Example/TextFieldsCatalogExampleTests/ReferenceImages_64/TextFieldsCatalogExampleTests.UnderlinedFieldTests/testPasswordSecureField@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/TextFieldsCatalogExampleTests/ReferenceImages_64/TextFieldsCatalogExampleTests.UnderlinedFieldTests/testPasswordSecureField@2x.png -------------------------------------------------------------------------------- /Example/TextFieldsCatalogExampleTests/ReferenceImages_64/TextFieldsCatalogExampleTests.UnderlinedFieldTests/testPasswordVisibleField@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/TextFieldsCatalogExampleTests/ReferenceImages_64/TextFieldsCatalogExampleTests.UnderlinedFieldTests/testPasswordVisibleField@2x.png -------------------------------------------------------------------------------- /Example/TextFieldsCatalogExampleTests/ReferenceImages_64/TextFieldsCatalogExampleTests.UnderlinedViewTests/testDefaultField@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/TextFieldsCatalogExampleTests/ReferenceImages_64/TextFieldsCatalogExampleTests.UnderlinedViewTests/testDefaultField@2x.png -------------------------------------------------------------------------------- /Example/TextFieldsCatalogExampleTests/ReferenceImages_64/TextFieldsCatalogExampleTests.UnderlinedViewTests/testEmptyDisabledField@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/TextFieldsCatalogExampleTests/ReferenceImages_64/TextFieldsCatalogExampleTests.UnderlinedViewTests/testEmptyDisabledField@2x.png -------------------------------------------------------------------------------- /Example/TextFieldsCatalogExampleTests/ReferenceImages_64/TextFieldsCatalogExampleTests.UnderlinedViewTests/testEmptyErrorField@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/TextFieldsCatalogExampleTests/ReferenceImages_64/TextFieldsCatalogExampleTests.UnderlinedViewTests/testEmptyErrorField@2x.png -------------------------------------------------------------------------------- /Example/TextFieldsCatalogExampleTests/ReferenceImages_64/TextFieldsCatalogExampleTests.UnderlinedViewTests/testEmptyField@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/TextFieldsCatalogExampleTests/ReferenceImages_64/TextFieldsCatalogExampleTests.UnderlinedViewTests/testEmptyField@2x.png -------------------------------------------------------------------------------- /Example/TextFieldsCatalogExampleTests/ReferenceImages_64/TextFieldsCatalogExampleTests.UnderlinedViewTests/testFilledDisabledField@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/TextFieldsCatalogExampleTests/ReferenceImages_64/TextFieldsCatalogExampleTests.UnderlinedViewTests/testFilledDisabledField@2x.png -------------------------------------------------------------------------------- /Example/TextFieldsCatalogExampleTests/ReferenceImages_64/TextFieldsCatalogExampleTests.UnderlinedViewTests/testFilledErrorField@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/TextFieldsCatalogExampleTests/ReferenceImages_64/TextFieldsCatalogExampleTests.UnderlinedViewTests/testFilledErrorField@2x.png -------------------------------------------------------------------------------- /Example/TextFieldsCatalogExampleTests/ReferenceImages_64/TextFieldsCatalogExampleTests.UnderlinedViewTests/testFilledField@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/TextFieldsCatalogExampleTests/ReferenceImages_64/TextFieldsCatalogExampleTests.UnderlinedViewTests/testFilledField@2x.png -------------------------------------------------------------------------------- /Example/TextFieldsCatalogExampleTests/ReferenceImages_64/TextFieldsCatalogExampleTests.UnderlinedViewTests/testMultilineErrorMessage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/TextFieldsCatalogExampleTests/ReferenceImages_64/TextFieldsCatalogExampleTests.UnderlinedViewTests/testMultilineErrorMessage@2x.png -------------------------------------------------------------------------------- /Example/TextFieldsCatalogExampleTests/ReferenceImages_64/TextFieldsCatalogExampleTests.UnderlinedViewTests/testMultilineText@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/TextFieldsCatalogExampleTests/ReferenceImages_64/TextFieldsCatalogExampleTests.UnderlinedViewTests/testMultilineText@2x.png -------------------------------------------------------------------------------- /Example/TextFieldsCatalogExampleTests/Support/TableViewCellSnapshotContainer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/TextFieldsCatalogExampleTests/Support/TableViewCellSnapshotContainer.swift -------------------------------------------------------------------------------- /Example/swiftgen.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Example/swiftgen.yml -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Makefile -------------------------------------------------------------------------------- /Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Package.resolved -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Package.swift -------------------------------------------------------------------------------- /Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/Podfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/README.md -------------------------------------------------------------------------------- /ROADMAP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/ROADMAP.md -------------------------------------------------------------------------------- /TextFieldsCatalog.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/TextFieldsCatalog.podspec -------------------------------------------------------------------------------- /TextFieldsCatalog.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/TextFieldsCatalog.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /TextFieldsCatalog.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/TextFieldsCatalog.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /TextFieldsCatalog.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/TextFieldsCatalog.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /TextFieldsCatalog.xcodeproj/xcshareddata/xcschemes/TextFieldsCatalog.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/TextFieldsCatalog.xcodeproj/xcshareddata/xcschemes/TextFieldsCatalog.xcscheme -------------------------------------------------------------------------------- /TextFieldsCatalog.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/TextFieldsCatalog.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /TextFieldsCatalog.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/TextFieldsCatalog.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /TextFieldsCatalog/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/TextFieldsCatalog/Info.plist -------------------------------------------------------------------------------- /TextFieldsCatalog/Library/BaseClasses/CommonButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/TextFieldsCatalog/Library/BaseClasses/CommonButton.swift -------------------------------------------------------------------------------- /TextFieldsCatalog/Library/BaseClasses/InnerDesignableView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/TextFieldsCatalog/Library/BaseClasses/InnerDesignableView.swift -------------------------------------------------------------------------------- /TextFieldsCatalog/Library/BaseClasses/InnerTextField.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/TextFieldsCatalog/Library/BaseClasses/InnerTextField.swift -------------------------------------------------------------------------------- /TextFieldsCatalog/Library/BaseClasses/InnerTextView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/TextFieldsCatalog/Library/BaseClasses/InnerTextView.swift -------------------------------------------------------------------------------- /TextFieldsCatalog/Library/Extensions/Foundation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/TextFieldsCatalog/Library/Extensions/Foundation.swift -------------------------------------------------------------------------------- /TextFieldsCatalog/Library/Extensions/String.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/TextFieldsCatalog/Library/Extensions/String.swift -------------------------------------------------------------------------------- /TextFieldsCatalog/Library/Extensions/UIKit/UIColor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/TextFieldsCatalog/Library/Extensions/UIKit/UIColor.swift -------------------------------------------------------------------------------- /TextFieldsCatalog/Library/Extensions/UIKit/UIImage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/TextFieldsCatalog/Library/Extensions/UIKit/UIImage.swift -------------------------------------------------------------------------------- /TextFieldsCatalog/Library/Extensions/UIKit/UITextField.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/TextFieldsCatalog/Library/Extensions/UIKit/UITextField.swift -------------------------------------------------------------------------------- /TextFieldsCatalog/Library/Extensions/UIKit/UITextView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/TextFieldsCatalog/Library/Extensions/UIKit/UITextView.swift -------------------------------------------------------------------------------- /TextFieldsCatalog/Library/Protocols/TextField/DateTextField.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/TextFieldsCatalog/Library/Protocols/TextField/DateTextField.swift -------------------------------------------------------------------------------- /TextFieldsCatalog/Library/Protocols/TextField/GuidedTextField.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/TextFieldsCatalog/Library/Protocols/TextField/GuidedTextField.swift -------------------------------------------------------------------------------- /TextFieldsCatalog/Library/Protocols/TextField/PickerTextField.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/TextFieldsCatalog/Library/Protocols/TextField/PickerTextField.swift -------------------------------------------------------------------------------- /TextFieldsCatalog/Library/Protocols/TextField/ResetableField.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/TextFieldsCatalog/Library/Protocols/TextField/ResetableField.swift -------------------------------------------------------------------------------- /TextFieldsCatalog/Library/Protocols/TextField/RespondableField.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/TextFieldsCatalog/Library/Protocols/TextField/RespondableField.swift -------------------------------------------------------------------------------- /TextFieldsCatalog/Library/Protocols/TextFieldValidation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/TextFieldsCatalog/Library/Protocols/TextFieldValidation.swift -------------------------------------------------------------------------------- /TextFieldsCatalog/Library/Protocols/ToolBarInterface.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/TextFieldsCatalog/Library/Protocols/ToolBarInterface.swift -------------------------------------------------------------------------------- /TextFieldsCatalog/Library/Reusable/IconButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/TextFieldsCatalog/Library/Reusable/IconButton.swift -------------------------------------------------------------------------------- /TextFieldsCatalog/Library/Reusable/Pickers/DatePickerView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/TextFieldsCatalog/Library/Reusable/Pickers/DatePickerView.swift -------------------------------------------------------------------------------- /TextFieldsCatalog/Library/Reusable/Pickers/PlainPickerView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/TextFieldsCatalog/Library/Reusable/Pickers/PlainPickerView.swift -------------------------------------------------------------------------------- /TextFieldsCatalog/Library/Reusable/Pickers/TopView/PickerTopView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/TextFieldsCatalog/Library/Reusable/Pickers/TopView/PickerTopView.swift -------------------------------------------------------------------------------- /TextFieldsCatalog/Library/Reusable/Pickers/TopView/PickerTopView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/TextFieldsCatalog/Library/Reusable/Pickers/TopView/PickerTopView.xib -------------------------------------------------------------------------------- /TextFieldsCatalog/Library/Reusable/Pickers/TopView/PickerTopViewConfiguration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/TextFieldsCatalog/Library/Reusable/Pickers/TopView/PickerTopViewConfiguration.swift -------------------------------------------------------------------------------- /TextFieldsCatalog/Library/Utils/AssetManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/TextFieldsCatalog/Library/Utils/AssetManager.swift -------------------------------------------------------------------------------- /TextFieldsCatalog/Library/Utils/FormatterMasks.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/TextFieldsCatalog/Library/Utils/FormatterMasks.swift -------------------------------------------------------------------------------- /TextFieldsCatalog/Library/Utils/MaskTextFieldFormatter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/TextFieldsCatalog/Library/Utils/MaskTextFieldFormatter.swift -------------------------------------------------------------------------------- /TextFieldsCatalog/Library/Utils/StandardEditActions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/TextFieldsCatalog/Library/Utils/StandardEditActions.swift -------------------------------------------------------------------------------- /TextFieldsCatalog/Library/Utils/TextFieldValidator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/TextFieldsCatalog/Library/Utils/TextFieldValidator.swift -------------------------------------------------------------------------------- /TextFieldsCatalog/Resources/Colors/Color.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/TextFieldsCatalog/Resources/Colors/Color.swift -------------------------------------------------------------------------------- /TextFieldsCatalog/Resources/Constants/FieldContainerState.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/TextFieldsCatalog/Resources/Constants/FieldContainerState.swift -------------------------------------------------------------------------------- /TextFieldsCatalog/Resources/Constants/HeightLayoutPolicy.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/TextFieldsCatalog/Resources/Constants/HeightLayoutPolicy.swift -------------------------------------------------------------------------------- /TextFieldsCatalog/Resources/Constants/HintVisibleStates.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/TextFieldsCatalog/Resources/Constants/HintVisibleStates.swift -------------------------------------------------------------------------------- /TextFieldsCatalog/Resources/Constants/Internal/AccessibilityIdentifiers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/TextFieldsCatalog/Resources/Constants/Internal/AccessibilityIdentifiers.swift -------------------------------------------------------------------------------- /TextFieldsCatalog/Resources/Constants/Internal/AnimationTime.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/TextFieldsCatalog/Resources/Constants/Internal/AnimationTime.swift -------------------------------------------------------------------------------- /TextFieldsCatalog/Resources/Constants/Internal/FieldState.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/TextFieldsCatalog/Resources/Constants/Internal/FieldState.swift -------------------------------------------------------------------------------- /TextFieldsCatalog/Resources/Constants/NativePlaceholderBehavior.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/TextFieldsCatalog/Resources/Constants/NativePlaceholderBehavior.swift -------------------------------------------------------------------------------- /TextFieldsCatalog/Resources/Constants/PasteOverflowPolicy.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/TextFieldsCatalog/Resources/Constants/PasteOverflowPolicy.swift -------------------------------------------------------------------------------- /TextFieldsCatalog/Resources/Constants/SharedRegex.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/TextFieldsCatalog/Resources/Constants/SharedRegex.swift -------------------------------------------------------------------------------- /TextFieldsCatalog/Resources/Constants/TextFieldMode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/TextFieldsCatalog/Resources/Constants/TextFieldMode.swift -------------------------------------------------------------------------------- /TextFieldsCatalog/Resources/Constants/TextFieldPasswordModeBehavior.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/TextFieldsCatalog/Resources/Constants/TextFieldPasswordModeBehavior.swift -------------------------------------------------------------------------------- /TextFieldsCatalog/Resources/Constants/ValidationPolicy.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/TextFieldsCatalog/Resources/Constants/ValidationPolicy.swift -------------------------------------------------------------------------------- /TextFieldsCatalog/Resources/Images/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/TextFieldsCatalog/Resources/Images/close.png -------------------------------------------------------------------------------- /TextFieldsCatalog/Resources/Images/close@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/TextFieldsCatalog/Resources/Images/close@2x.png -------------------------------------------------------------------------------- /TextFieldsCatalog/Resources/Images/close@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/TextFieldsCatalog/Resources/Images/close@3x.png -------------------------------------------------------------------------------- /TextFieldsCatalog/Resources/Images/eyeOff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/TextFieldsCatalog/Resources/Images/eyeOff.png -------------------------------------------------------------------------------- /TextFieldsCatalog/Resources/Images/eyeOff@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/TextFieldsCatalog/Resources/Images/eyeOff@2x.png -------------------------------------------------------------------------------- /TextFieldsCatalog/Resources/Images/eyeOff@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/TextFieldsCatalog/Resources/Images/eyeOff@3x.png -------------------------------------------------------------------------------- /TextFieldsCatalog/Resources/Images/eyeOn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/TextFieldsCatalog/Resources/Images/eyeOn.png -------------------------------------------------------------------------------- /TextFieldsCatalog/Resources/Images/eyeOn@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/TextFieldsCatalog/Resources/Images/eyeOn@2x.png -------------------------------------------------------------------------------- /TextFieldsCatalog/Resources/Images/eyeOn@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/TextFieldsCatalog/Resources/Images/eyeOn@3x.png -------------------------------------------------------------------------------- /TextFieldsCatalog/Resources/Images/leftArrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/TextFieldsCatalog/Resources/Images/leftArrow.png -------------------------------------------------------------------------------- /TextFieldsCatalog/Resources/Images/leftArrow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/TextFieldsCatalog/Resources/Images/leftArrow@2x.png -------------------------------------------------------------------------------- /TextFieldsCatalog/Resources/Images/leftArrow@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/TextFieldsCatalog/Resources/Images/leftArrow@3x.png -------------------------------------------------------------------------------- /TextFieldsCatalog/Resources/Images/rightArrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/TextFieldsCatalog/Resources/Images/rightArrow.png -------------------------------------------------------------------------------- /TextFieldsCatalog/Resources/Images/rightArrow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/TextFieldsCatalog/Resources/Images/rightArrow@2x.png -------------------------------------------------------------------------------- /TextFieldsCatalog/Resources/Images/rightArrow@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/TextFieldsCatalog/Resources/Images/rightArrow@3x.png -------------------------------------------------------------------------------- /TextFieldsCatalog/Resources/Strings/Strings.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/TextFieldsCatalog/Resources/Strings/Strings.swift -------------------------------------------------------------------------------- /TextFieldsCatalog/Resources/Strings/en.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/TextFieldsCatalog/Resources/Strings/en.lproj/Localizable.strings -------------------------------------------------------------------------------- /TextFieldsCatalog/Resources/Strings/ru.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/TextFieldsCatalog/Resources/Strings/ru.lproj/Localizable.strings -------------------------------------------------------------------------------- /TextFieldsCatalog/TextFields/Configuration/ConfigurationParameters.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/TextFieldsCatalog/TextFields/Configuration/ConfigurationParameters.swift -------------------------------------------------------------------------------- /TextFieldsCatalog/TextFields/Configuration/FlexibleHeightPolicy.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/TextFieldsCatalog/TextFields/Configuration/FlexibleHeightPolicy.swift -------------------------------------------------------------------------------- /TextFieldsCatalog/TextFields/Configuration/TextFieldConfigurations.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/TextFieldsCatalog/TextFields/Configuration/TextFieldConfigurations.swift -------------------------------------------------------------------------------- /TextFieldsCatalog/TextFields/Services/AppearanceServices/FieldService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/TextFieldsCatalog/TextFields/Services/AppearanceServices/FieldService.swift -------------------------------------------------------------------------------- /TextFieldsCatalog/TextFields/Services/AppearanceServices/HintService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/TextFieldsCatalog/TextFields/Services/AppearanceServices/HintService.swift -------------------------------------------------------------------------------- /TextFieldsCatalog/TextFields/Services/AppearanceServices/LineService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/TextFieldsCatalog/TextFields/Services/AppearanceServices/LineService.swift -------------------------------------------------------------------------------- /TextFieldsCatalog/TextFields/Services/AppearanceServices/Placeholder/FloatingPlaceholderService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/TextFieldsCatalog/TextFields/Services/AppearanceServices/Placeholder/FloatingPlaceholderService.swift -------------------------------------------------------------------------------- /TextFieldsCatalog/TextFields/Services/AppearanceServices/Placeholder/NativePlaceholderService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/TextFieldsCatalog/TextFields/Services/AppearanceServices/Placeholder/NativePlaceholderService.swift -------------------------------------------------------------------------------- /TextFieldsCatalog/TextFields/Services/AppearanceServices/Placeholder/StaticPlaceholderService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/TextFieldsCatalog/TextFields/Services/AppearanceServices/Placeholder/StaticPlaceholderService.swift -------------------------------------------------------------------------------- /TextFieldsCatalog/TextFields/Services/Support/AbstractHintService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/TextFieldsCatalog/TextFields/Services/Support/AbstractHintService.swift -------------------------------------------------------------------------------- /TextFieldsCatalog/TextFields/Services/Support/AbstractPlaceholderService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/TextFieldsCatalog/TextFields/Services/Support/AbstractPlaceholderService.swift -------------------------------------------------------------------------------- /TextFieldsCatalog/TextFields/Services/Support/InputFieldProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/TextFieldsCatalog/TextFields/Services/Support/InputFieldProtocol.swift -------------------------------------------------------------------------------- /TextFieldsCatalog/TextFields/UnderlinedTextField/UnderlinedTextField.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/TextFieldsCatalog/TextFields/UnderlinedTextField/UnderlinedTextField.swift -------------------------------------------------------------------------------- /TextFieldsCatalog/TextFields/UnderlinedTextField/UnderlinedTextField.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/TextFieldsCatalog/TextFields/UnderlinedTextField/UnderlinedTextField.xib -------------------------------------------------------------------------------- /TextFieldsCatalog/TextFields/UnderlinedTextView/UnderlinedTextView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/TextFieldsCatalog/TextFields/UnderlinedTextView/UnderlinedTextView.swift -------------------------------------------------------------------------------- /TextFieldsCatalog/TextFields/UnderlinedTextView/UnderlinedTextView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/TextFieldsCatalog/TextFields/UnderlinedTextView/UnderlinedTextView.xib -------------------------------------------------------------------------------- /TextFieldsCatalog/TextFieldsCatalog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/TextFieldsCatalog/TextFieldsCatalog.h -------------------------------------------------------------------------------- /TextFieldsCatalogTests/Extensions/UITextField.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/TextFieldsCatalogTests/Extensions/UITextField.swift -------------------------------------------------------------------------------- /TextFieldsCatalogTests/Extensions/UITextView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/TextFieldsCatalogTests/Extensions/UITextView.swift -------------------------------------------------------------------------------- /TextFieldsCatalogTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/TextFieldsCatalogTests/Info.plist -------------------------------------------------------------------------------- /TextFieldsCatalogTests/TextFields/Configuration/ColorConfiguration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/TextFieldsCatalogTests/TextFields/Configuration/ColorConfiguration.swift -------------------------------------------------------------------------------- /TextFieldsCatalogTests/TextFields/Services/FieldService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/TextFieldsCatalogTests/TextFields/Services/FieldService.swift -------------------------------------------------------------------------------- /TextFieldsCatalogTests/Utils/AssetManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/TextFieldsCatalogTests/Utils/AssetManager.swift -------------------------------------------------------------------------------- /TextFieldsCatalogTests/Utils/MaskTextFieldFormatter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/TextFieldsCatalogTests/Utils/MaskTextFieldFormatter.swift -------------------------------------------------------------------------------- /TextFieldsCatalogTests/Utils/TextFieldValidator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/TextFieldsCatalogTests/Utils/TextFieldValidator.swift -------------------------------------------------------------------------------- /docs/Classes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/docs/Classes.html -------------------------------------------------------------------------------- /docs/Classes/ActionButtonConfiguration.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/docs/Classes/ActionButtonConfiguration.html -------------------------------------------------------------------------------- /docs/Classes/BackgroundConfiguration.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/docs/Classes/BackgroundConfiguration.html -------------------------------------------------------------------------------- /docs/Classes/BaseFieldConfiguration.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/docs/Classes/BaseFieldConfiguration.html -------------------------------------------------------------------------------- /docs/Classes/ColorConfiguration.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/docs/Classes/ColorConfiguration.html -------------------------------------------------------------------------------- /docs/Classes/DatePickerView.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/docs/Classes/DatePickerView.html -------------------------------------------------------------------------------- /docs/Classes/FloatingPlaceholderConfiguration.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/docs/Classes/FloatingPlaceholderConfiguration.html -------------------------------------------------------------------------------- /docs/Classes/FloatingPlaceholderService.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/docs/Classes/FloatingPlaceholderService.html -------------------------------------------------------------------------------- /docs/Classes/HintConfiguration.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/docs/Classes/HintConfiguration.html -------------------------------------------------------------------------------- /docs/Classes/HintService.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/docs/Classes/HintService.html -------------------------------------------------------------------------------- /docs/Classes/InnerDesignableView.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/docs/Classes/InnerDesignableView.html -------------------------------------------------------------------------------- /docs/Classes/InnerTextField.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/docs/Classes/InnerTextField.html -------------------------------------------------------------------------------- /docs/Classes/InnerTextView.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/docs/Classes/InnerTextView.html -------------------------------------------------------------------------------- /docs/Classes/LineConfiguration.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/docs/Classes/LineConfiguration.html -------------------------------------------------------------------------------- /docs/Classes/MaskTextFieldFormatter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/docs/Classes/MaskTextFieldFormatter.html -------------------------------------------------------------------------------- /docs/Classes/NativePlaceholderConfiguration.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/docs/Classes/NativePlaceholderConfiguration.html -------------------------------------------------------------------------------- /docs/Classes/NativePlaceholderService.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/docs/Classes/NativePlaceholderService.html -------------------------------------------------------------------------------- /docs/Classes/PasswordModeConfiguration.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/docs/Classes/PasswordModeConfiguration.html -------------------------------------------------------------------------------- /docs/Classes/PickerTopView.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/docs/Classes/PickerTopView.html -------------------------------------------------------------------------------- /docs/Classes/PickerTopViewButtonConfiguration.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/docs/Classes/PickerTopViewButtonConfiguration.html -------------------------------------------------------------------------------- /docs/Classes/PickerTopViewConfiguration.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/docs/Classes/PickerTopViewConfiguration.html -------------------------------------------------------------------------------- /docs/Classes/PlainPickerView.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/docs/Classes/PlainPickerView.html -------------------------------------------------------------------------------- /docs/Classes/StaticPlaceholderConfiguration.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/docs/Classes/StaticPlaceholderConfiguration.html -------------------------------------------------------------------------------- /docs/Classes/StaticPlaceholderService.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/docs/Classes/StaticPlaceholderService.html -------------------------------------------------------------------------------- /docs/Classes/TextFieldConfiguration.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/docs/Classes/TextFieldConfiguration.html -------------------------------------------------------------------------------- /docs/Classes/TextFieldValidator.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/docs/Classes/TextFieldValidator.html -------------------------------------------------------------------------------- /docs/Classes/UnderlinedTextField.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/docs/Classes/UnderlinedTextField.html -------------------------------------------------------------------------------- /docs/Classes/UnderlinedTextFieldConfiguration.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/docs/Classes/UnderlinedTextFieldConfiguration.html -------------------------------------------------------------------------------- /docs/Classes/UnderlinedTextView.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/docs/Classes/UnderlinedTextView.html -------------------------------------------------------------------------------- /docs/Classes/UnderlinedTextViewConfiguration.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/docs/Classes/UnderlinedTextViewConfiguration.html -------------------------------------------------------------------------------- /docs/Enums.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/docs/Enums.html -------------------------------------------------------------------------------- /docs/Enums/FieldContainerState.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/docs/Enums/FieldContainerState.html -------------------------------------------------------------------------------- /docs/Enums/FieldState.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/docs/Enums/FieldState.html -------------------------------------------------------------------------------- /docs/Enums/FormatterMasks.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/docs/Enums/FormatterMasks.html -------------------------------------------------------------------------------- /docs/Enums/HeightLayoutPolicy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/docs/Enums/HeightLayoutPolicy.html -------------------------------------------------------------------------------- /docs/Enums/NativePlaceholderBehavior.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/docs/Enums/NativePlaceholderBehavior.html -------------------------------------------------------------------------------- /docs/Enums/PasteOverflowPolicy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/docs/Enums/PasteOverflowPolicy.html -------------------------------------------------------------------------------- /docs/Enums/SharedRegex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/docs/Enums/SharedRegex.html -------------------------------------------------------------------------------- /docs/Enums/StandardEditActions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/docs/Enums/StandardEditActions.html -------------------------------------------------------------------------------- /docs/Enums/TextFieldMode.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/docs/Enums/TextFieldMode.html -------------------------------------------------------------------------------- /docs/Enums/TextFieldPasswordModeBehavior.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/docs/Enums/TextFieldPasswordModeBehavior.html -------------------------------------------------------------------------------- /docs/Enums/ValidationPolicy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/docs/Enums/ValidationPolicy.html -------------------------------------------------------------------------------- /docs/Extensions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/docs/Extensions.html -------------------------------------------------------------------------------- /docs/Extensions/Array.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/docs/Extensions/Array.html -------------------------------------------------------------------------------- /docs/Extensions/UITextView.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/docs/Extensions/UITextView.html -------------------------------------------------------------------------------- /docs/Protocols.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/docs/Protocols.html -------------------------------------------------------------------------------- /docs/Protocols/AbstractHintService.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/docs/Protocols/AbstractHintService.html -------------------------------------------------------------------------------- /docs/Protocols/AbstractPlaceholderService.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/docs/Protocols/AbstractPlaceholderService.html -------------------------------------------------------------------------------- /docs/Protocols/DateTextField.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/docs/Protocols/DateTextField.html -------------------------------------------------------------------------------- /docs/Protocols/GuidedTextField.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/docs/Protocols/GuidedTextField.html -------------------------------------------------------------------------------- /docs/Protocols/InputField.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/docs/Protocols/InputField.html -------------------------------------------------------------------------------- /docs/Protocols/PickerTextField.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/docs/Protocols/PickerTextField.html -------------------------------------------------------------------------------- /docs/Protocols/ResetableField.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/docs/Protocols/ResetableField.html -------------------------------------------------------------------------------- /docs/Protocols/RespondableField.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/docs/Protocols/RespondableField.html -------------------------------------------------------------------------------- /docs/Protocols/TextFieldValidation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/docs/Protocols/TextFieldValidation.html -------------------------------------------------------------------------------- /docs/Protocols/ToolBarInterface.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/docs/Protocols/ToolBarInterface.html -------------------------------------------------------------------------------- /docs/Structs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/docs/Structs.html -------------------------------------------------------------------------------- /docs/Structs/FlexibleHeightPolicy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/docs/Structs/FlexibleHeightPolicy.html -------------------------------------------------------------------------------- /docs/Structs/HintVisibleStates.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/docs/Structs/HintVisibleStates.html -------------------------------------------------------------------------------- /docs/badge.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/docs/badge.svg -------------------------------------------------------------------------------- /docs/css/highlight.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/docs/css/highlight.css -------------------------------------------------------------------------------- /docs/css/jazzy.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/docs/css/jazzy.css -------------------------------------------------------------------------------- /docs/docsets/TextFieldsCatalog.docset/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/docs/docsets/TextFieldsCatalog.docset/Contents/Info.plist -------------------------------------------------------------------------------- /docs/docsets/TextFieldsCatalog.docset/Contents/Resources/Documents/Classes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/docs/docsets/TextFieldsCatalog.docset/Contents/Resources/Documents/Classes.html -------------------------------------------------------------------------------- /docs/docsets/TextFieldsCatalog.docset/Contents/Resources/Documents/Classes/ActionButtonConfiguration.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/docs/docsets/TextFieldsCatalog.docset/Contents/Resources/Documents/Classes/ActionButtonConfiguration.html -------------------------------------------------------------------------------- /docs/docsets/TextFieldsCatalog.docset/Contents/Resources/Documents/Classes/BackgroundConfiguration.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/docs/docsets/TextFieldsCatalog.docset/Contents/Resources/Documents/Classes/BackgroundConfiguration.html -------------------------------------------------------------------------------- /docs/docsets/TextFieldsCatalog.docset/Contents/Resources/Documents/Classes/BaseFieldConfiguration.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/docs/docsets/TextFieldsCatalog.docset/Contents/Resources/Documents/Classes/BaseFieldConfiguration.html -------------------------------------------------------------------------------- /docs/docsets/TextFieldsCatalog.docset/Contents/Resources/Documents/Classes/ColorConfiguration.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/docs/docsets/TextFieldsCatalog.docset/Contents/Resources/Documents/Classes/ColorConfiguration.html -------------------------------------------------------------------------------- /docs/docsets/TextFieldsCatalog.docset/Contents/Resources/Documents/Classes/DatePickerView.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/docs/docsets/TextFieldsCatalog.docset/Contents/Resources/Documents/Classes/DatePickerView.html -------------------------------------------------------------------------------- /docs/docsets/TextFieldsCatalog.docset/Contents/Resources/Documents/Classes/FloatingPlaceholderConfiguration.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/docs/docsets/TextFieldsCatalog.docset/Contents/Resources/Documents/Classes/FloatingPlaceholderConfiguration.html -------------------------------------------------------------------------------- /docs/docsets/TextFieldsCatalog.docset/Contents/Resources/Documents/Classes/FloatingPlaceholderService.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/docs/docsets/TextFieldsCatalog.docset/Contents/Resources/Documents/Classes/FloatingPlaceholderService.html -------------------------------------------------------------------------------- /docs/docsets/TextFieldsCatalog.docset/Contents/Resources/Documents/Classes/HintConfiguration.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/docs/docsets/TextFieldsCatalog.docset/Contents/Resources/Documents/Classes/HintConfiguration.html -------------------------------------------------------------------------------- /docs/docsets/TextFieldsCatalog.docset/Contents/Resources/Documents/Classes/HintService.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/docs/docsets/TextFieldsCatalog.docset/Contents/Resources/Documents/Classes/HintService.html -------------------------------------------------------------------------------- /docs/docsets/TextFieldsCatalog.docset/Contents/Resources/Documents/Classes/InnerDesignableView.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/docs/docsets/TextFieldsCatalog.docset/Contents/Resources/Documents/Classes/InnerDesignableView.html -------------------------------------------------------------------------------- /docs/docsets/TextFieldsCatalog.docset/Contents/Resources/Documents/Classes/InnerTextField.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/docs/docsets/TextFieldsCatalog.docset/Contents/Resources/Documents/Classes/InnerTextField.html -------------------------------------------------------------------------------- /docs/docsets/TextFieldsCatalog.docset/Contents/Resources/Documents/Classes/InnerTextView.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/docs/docsets/TextFieldsCatalog.docset/Contents/Resources/Documents/Classes/InnerTextView.html -------------------------------------------------------------------------------- /docs/docsets/TextFieldsCatalog.docset/Contents/Resources/Documents/Classes/LineConfiguration.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/docs/docsets/TextFieldsCatalog.docset/Contents/Resources/Documents/Classes/LineConfiguration.html -------------------------------------------------------------------------------- /docs/docsets/TextFieldsCatalog.docset/Contents/Resources/Documents/Classes/MaskTextFieldFormatter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/docs/docsets/TextFieldsCatalog.docset/Contents/Resources/Documents/Classes/MaskTextFieldFormatter.html -------------------------------------------------------------------------------- /docs/docsets/TextFieldsCatalog.docset/Contents/Resources/Documents/Classes/NativePlaceholderConfiguration.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/docs/docsets/TextFieldsCatalog.docset/Contents/Resources/Documents/Classes/NativePlaceholderConfiguration.html -------------------------------------------------------------------------------- /docs/docsets/TextFieldsCatalog.docset/Contents/Resources/Documents/Classes/NativePlaceholderService.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/docs/docsets/TextFieldsCatalog.docset/Contents/Resources/Documents/Classes/NativePlaceholderService.html -------------------------------------------------------------------------------- /docs/docsets/TextFieldsCatalog.docset/Contents/Resources/Documents/Classes/PasswordModeConfiguration.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/docs/docsets/TextFieldsCatalog.docset/Contents/Resources/Documents/Classes/PasswordModeConfiguration.html -------------------------------------------------------------------------------- /docs/docsets/TextFieldsCatalog.docset/Contents/Resources/Documents/Classes/PickerTopView.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/docs/docsets/TextFieldsCatalog.docset/Contents/Resources/Documents/Classes/PickerTopView.html -------------------------------------------------------------------------------- /docs/docsets/TextFieldsCatalog.docset/Contents/Resources/Documents/Classes/PickerTopViewButtonConfiguration.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/docs/docsets/TextFieldsCatalog.docset/Contents/Resources/Documents/Classes/PickerTopViewButtonConfiguration.html -------------------------------------------------------------------------------- /docs/docsets/TextFieldsCatalog.docset/Contents/Resources/Documents/Classes/PickerTopViewConfiguration.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/docs/docsets/TextFieldsCatalog.docset/Contents/Resources/Documents/Classes/PickerTopViewConfiguration.html -------------------------------------------------------------------------------- /docs/docsets/TextFieldsCatalog.docset/Contents/Resources/Documents/Classes/PlainPickerView.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/docs/docsets/TextFieldsCatalog.docset/Contents/Resources/Documents/Classes/PlainPickerView.html -------------------------------------------------------------------------------- /docs/docsets/TextFieldsCatalog.docset/Contents/Resources/Documents/Classes/StaticPlaceholderConfiguration.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/docs/docsets/TextFieldsCatalog.docset/Contents/Resources/Documents/Classes/StaticPlaceholderConfiguration.html -------------------------------------------------------------------------------- /docs/docsets/TextFieldsCatalog.docset/Contents/Resources/Documents/Classes/StaticPlaceholderService.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/docs/docsets/TextFieldsCatalog.docset/Contents/Resources/Documents/Classes/StaticPlaceholderService.html -------------------------------------------------------------------------------- /docs/docsets/TextFieldsCatalog.docset/Contents/Resources/Documents/Classes/TextFieldConfiguration.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/docs/docsets/TextFieldsCatalog.docset/Contents/Resources/Documents/Classes/TextFieldConfiguration.html -------------------------------------------------------------------------------- /docs/docsets/TextFieldsCatalog.docset/Contents/Resources/Documents/Classes/TextFieldValidator.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/docs/docsets/TextFieldsCatalog.docset/Contents/Resources/Documents/Classes/TextFieldValidator.html -------------------------------------------------------------------------------- /docs/docsets/TextFieldsCatalog.docset/Contents/Resources/Documents/Classes/UnderlinedTextField.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/docs/docsets/TextFieldsCatalog.docset/Contents/Resources/Documents/Classes/UnderlinedTextField.html -------------------------------------------------------------------------------- /docs/docsets/TextFieldsCatalog.docset/Contents/Resources/Documents/Classes/UnderlinedTextFieldConfiguration.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/docs/docsets/TextFieldsCatalog.docset/Contents/Resources/Documents/Classes/UnderlinedTextFieldConfiguration.html -------------------------------------------------------------------------------- /docs/docsets/TextFieldsCatalog.docset/Contents/Resources/Documents/Classes/UnderlinedTextView.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/docs/docsets/TextFieldsCatalog.docset/Contents/Resources/Documents/Classes/UnderlinedTextView.html -------------------------------------------------------------------------------- /docs/docsets/TextFieldsCatalog.docset/Contents/Resources/Documents/Classes/UnderlinedTextViewConfiguration.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/docs/docsets/TextFieldsCatalog.docset/Contents/Resources/Documents/Classes/UnderlinedTextViewConfiguration.html -------------------------------------------------------------------------------- /docs/docsets/TextFieldsCatalog.docset/Contents/Resources/Documents/Enums.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/docs/docsets/TextFieldsCatalog.docset/Contents/Resources/Documents/Enums.html -------------------------------------------------------------------------------- /docs/docsets/TextFieldsCatalog.docset/Contents/Resources/Documents/Enums/FieldContainerState.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/docs/docsets/TextFieldsCatalog.docset/Contents/Resources/Documents/Enums/FieldContainerState.html -------------------------------------------------------------------------------- /docs/docsets/TextFieldsCatalog.docset/Contents/Resources/Documents/Enums/FieldState.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/docs/docsets/TextFieldsCatalog.docset/Contents/Resources/Documents/Enums/FieldState.html -------------------------------------------------------------------------------- /docs/docsets/TextFieldsCatalog.docset/Contents/Resources/Documents/Enums/FormatterMasks.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/docs/docsets/TextFieldsCatalog.docset/Contents/Resources/Documents/Enums/FormatterMasks.html -------------------------------------------------------------------------------- /docs/docsets/TextFieldsCatalog.docset/Contents/Resources/Documents/Enums/HeightLayoutPolicy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/docs/docsets/TextFieldsCatalog.docset/Contents/Resources/Documents/Enums/HeightLayoutPolicy.html -------------------------------------------------------------------------------- /docs/docsets/TextFieldsCatalog.docset/Contents/Resources/Documents/Enums/NativePlaceholderBehavior.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/docs/docsets/TextFieldsCatalog.docset/Contents/Resources/Documents/Enums/NativePlaceholderBehavior.html -------------------------------------------------------------------------------- /docs/docsets/TextFieldsCatalog.docset/Contents/Resources/Documents/Enums/PasteOverflowPolicy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/docs/docsets/TextFieldsCatalog.docset/Contents/Resources/Documents/Enums/PasteOverflowPolicy.html -------------------------------------------------------------------------------- /docs/docsets/TextFieldsCatalog.docset/Contents/Resources/Documents/Enums/SharedRegex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/docs/docsets/TextFieldsCatalog.docset/Contents/Resources/Documents/Enums/SharedRegex.html -------------------------------------------------------------------------------- /docs/docsets/TextFieldsCatalog.docset/Contents/Resources/Documents/Enums/StandardEditActions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/docs/docsets/TextFieldsCatalog.docset/Contents/Resources/Documents/Enums/StandardEditActions.html -------------------------------------------------------------------------------- /docs/docsets/TextFieldsCatalog.docset/Contents/Resources/Documents/Enums/TextFieldMode.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/docs/docsets/TextFieldsCatalog.docset/Contents/Resources/Documents/Enums/TextFieldMode.html -------------------------------------------------------------------------------- /docs/docsets/TextFieldsCatalog.docset/Contents/Resources/Documents/Enums/TextFieldPasswordModeBehavior.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/docs/docsets/TextFieldsCatalog.docset/Contents/Resources/Documents/Enums/TextFieldPasswordModeBehavior.html -------------------------------------------------------------------------------- /docs/docsets/TextFieldsCatalog.docset/Contents/Resources/Documents/Enums/ValidationPolicy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/docs/docsets/TextFieldsCatalog.docset/Contents/Resources/Documents/Enums/ValidationPolicy.html -------------------------------------------------------------------------------- /docs/docsets/TextFieldsCatalog.docset/Contents/Resources/Documents/Extensions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/docs/docsets/TextFieldsCatalog.docset/Contents/Resources/Documents/Extensions.html -------------------------------------------------------------------------------- /docs/docsets/TextFieldsCatalog.docset/Contents/Resources/Documents/Extensions/Array.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/docs/docsets/TextFieldsCatalog.docset/Contents/Resources/Documents/Extensions/Array.html -------------------------------------------------------------------------------- /docs/docsets/TextFieldsCatalog.docset/Contents/Resources/Documents/Extensions/UITextView.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/docs/docsets/TextFieldsCatalog.docset/Contents/Resources/Documents/Extensions/UITextView.html -------------------------------------------------------------------------------- /docs/docsets/TextFieldsCatalog.docset/Contents/Resources/Documents/Protocols.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/docs/docsets/TextFieldsCatalog.docset/Contents/Resources/Documents/Protocols.html -------------------------------------------------------------------------------- /docs/docsets/TextFieldsCatalog.docset/Contents/Resources/Documents/Protocols/AbstractHintService.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/docs/docsets/TextFieldsCatalog.docset/Contents/Resources/Documents/Protocols/AbstractHintService.html -------------------------------------------------------------------------------- /docs/docsets/TextFieldsCatalog.docset/Contents/Resources/Documents/Protocols/AbstractPlaceholderService.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/docs/docsets/TextFieldsCatalog.docset/Contents/Resources/Documents/Protocols/AbstractPlaceholderService.html -------------------------------------------------------------------------------- /docs/docsets/TextFieldsCatalog.docset/Contents/Resources/Documents/Protocols/DateTextField.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/docs/docsets/TextFieldsCatalog.docset/Contents/Resources/Documents/Protocols/DateTextField.html -------------------------------------------------------------------------------- /docs/docsets/TextFieldsCatalog.docset/Contents/Resources/Documents/Protocols/GuidedTextField.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/docs/docsets/TextFieldsCatalog.docset/Contents/Resources/Documents/Protocols/GuidedTextField.html -------------------------------------------------------------------------------- /docs/docsets/TextFieldsCatalog.docset/Contents/Resources/Documents/Protocols/InputField.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/docs/docsets/TextFieldsCatalog.docset/Contents/Resources/Documents/Protocols/InputField.html -------------------------------------------------------------------------------- /docs/docsets/TextFieldsCatalog.docset/Contents/Resources/Documents/Protocols/PickerTextField.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/docs/docsets/TextFieldsCatalog.docset/Contents/Resources/Documents/Protocols/PickerTextField.html -------------------------------------------------------------------------------- /docs/docsets/TextFieldsCatalog.docset/Contents/Resources/Documents/Protocols/ResetableField.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/docs/docsets/TextFieldsCatalog.docset/Contents/Resources/Documents/Protocols/ResetableField.html -------------------------------------------------------------------------------- /docs/docsets/TextFieldsCatalog.docset/Contents/Resources/Documents/Protocols/RespondableField.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/docs/docsets/TextFieldsCatalog.docset/Contents/Resources/Documents/Protocols/RespondableField.html -------------------------------------------------------------------------------- /docs/docsets/TextFieldsCatalog.docset/Contents/Resources/Documents/Protocols/TextFieldValidation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/docs/docsets/TextFieldsCatalog.docset/Contents/Resources/Documents/Protocols/TextFieldValidation.html -------------------------------------------------------------------------------- /docs/docsets/TextFieldsCatalog.docset/Contents/Resources/Documents/Protocols/ToolBarInterface.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/docs/docsets/TextFieldsCatalog.docset/Contents/Resources/Documents/Protocols/ToolBarInterface.html -------------------------------------------------------------------------------- /docs/docsets/TextFieldsCatalog.docset/Contents/Resources/Documents/Structs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/docs/docsets/TextFieldsCatalog.docset/Contents/Resources/Documents/Structs.html -------------------------------------------------------------------------------- /docs/docsets/TextFieldsCatalog.docset/Contents/Resources/Documents/Structs/FlexibleHeightPolicy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/docs/docsets/TextFieldsCatalog.docset/Contents/Resources/Documents/Structs/FlexibleHeightPolicy.html -------------------------------------------------------------------------------- /docs/docsets/TextFieldsCatalog.docset/Contents/Resources/Documents/Structs/HintVisibleStates.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/docs/docsets/TextFieldsCatalog.docset/Contents/Resources/Documents/Structs/HintVisibleStates.html -------------------------------------------------------------------------------- /docs/docsets/TextFieldsCatalog.docset/Contents/Resources/Documents/css/highlight.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/docs/docsets/TextFieldsCatalog.docset/Contents/Resources/Documents/css/highlight.css -------------------------------------------------------------------------------- /docs/docsets/TextFieldsCatalog.docset/Contents/Resources/Documents/css/jazzy.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/docs/docsets/TextFieldsCatalog.docset/Contents/Resources/Documents/css/jazzy.css -------------------------------------------------------------------------------- /docs/docsets/TextFieldsCatalog.docset/Contents/Resources/Documents/img/carat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/docs/docsets/TextFieldsCatalog.docset/Contents/Resources/Documents/img/carat.png -------------------------------------------------------------------------------- /docs/docsets/TextFieldsCatalog.docset/Contents/Resources/Documents/img/dash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/docs/docsets/TextFieldsCatalog.docset/Contents/Resources/Documents/img/dash.png -------------------------------------------------------------------------------- /docs/docsets/TextFieldsCatalog.docset/Contents/Resources/Documents/img/gh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/docs/docsets/TextFieldsCatalog.docset/Contents/Resources/Documents/img/gh.png -------------------------------------------------------------------------------- /docs/docsets/TextFieldsCatalog.docset/Contents/Resources/Documents/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/docs/docsets/TextFieldsCatalog.docset/Contents/Resources/Documents/index.html -------------------------------------------------------------------------------- /docs/docsets/TextFieldsCatalog.docset/Contents/Resources/Documents/js/jazzy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/docs/docsets/TextFieldsCatalog.docset/Contents/Resources/Documents/js/jazzy.js -------------------------------------------------------------------------------- /docs/docsets/TextFieldsCatalog.docset/Contents/Resources/Documents/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/docs/docsets/TextFieldsCatalog.docset/Contents/Resources/Documents/js/jquery.min.js -------------------------------------------------------------------------------- /docs/docsets/TextFieldsCatalog.docset/Contents/Resources/Documents/search.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/docs/docsets/TextFieldsCatalog.docset/Contents/Resources/Documents/search.json -------------------------------------------------------------------------------- /docs/docsets/TextFieldsCatalog.docset/Contents/Resources/docSet.dsidx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/docs/docsets/TextFieldsCatalog.docset/Contents/Resources/docSet.dsidx -------------------------------------------------------------------------------- /docs/docsets/TextFieldsCatalog.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/docs/docsets/TextFieldsCatalog.tgz -------------------------------------------------------------------------------- /docs/img/carat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/docs/img/carat.png -------------------------------------------------------------------------------- /docs/img/dash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/docs/img/dash.png -------------------------------------------------------------------------------- /docs/img/gh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/docs/img/gh.png -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/js/jazzy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/docs/js/jazzy.js -------------------------------------------------------------------------------- /docs/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/docs/js/jquery.min.js -------------------------------------------------------------------------------- /docs/search.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/docs/search.json -------------------------------------------------------------------------------- /docs/undocumented.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/docs/undocumented.json -------------------------------------------------------------------------------- /fastlane/Appfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/fastlane/Appfile -------------------------------------------------------------------------------- /fastlane/Fastfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/fastlane/Fastfile -------------------------------------------------------------------------------- /fastlane/Pluginfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/fastlane/Pluginfile -------------------------------------------------------------------------------- /fastlane/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/fastlane/README.md -------------------------------------------------------------------------------- /swiftgen.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/swiftgen.yml -------------------------------------------------------------------------------- /tech_docs/Configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/tech_docs/Configuration.md -------------------------------------------------------------------------------- /tech_docs/DevNotes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/tech_docs/DevNotes.md -------------------------------------------------------------------------------- /tech_docs/ExampleProject.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/tech_docs/ExampleProject.md -------------------------------------------------------------------------------- /tech_docs/Images/BorderedTextField.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/tech_docs/Images/BorderedTextField.png -------------------------------------------------------------------------------- /tech_docs/Images/DatePickerView.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/tech_docs/Images/DatePickerView.png -------------------------------------------------------------------------------- /tech_docs/Images/DatePickerViewCustomized.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/tech_docs/Images/DatePickerViewCustomized.png -------------------------------------------------------------------------------- /tech_docs/Images/NativePlaceholderService.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/tech_docs/Images/NativePlaceholderService.png -------------------------------------------------------------------------------- /tech_docs/Images/PlainPickerView.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/tech_docs/Images/PlainPickerView.png -------------------------------------------------------------------------------- /tech_docs/Images/TextFieldsCatalog_video.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/tech_docs/Images/TextFieldsCatalog_video.gif -------------------------------------------------------------------------------- /tech_docs/Images/UnderlinedTextField.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/tech_docs/Images/UnderlinedTextField.png -------------------------------------------------------------------------------- /tech_docs/Images/UnderlinedTextView.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/tech_docs/Images/UnderlinedTextView.png -------------------------------------------------------------------------------- /tech_docs/Images/textView_scheme.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/tech_docs/Images/textView_scheme.png -------------------------------------------------------------------------------- /tech_docs/PodProject.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/tech_docs/PodProject.md -------------------------------------------------------------------------------- /tech_docs/Usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chausovSurfStudio/TextFieldsCatalog/HEAD/tech_docs/Usage.md --------------------------------------------------------------------------------