├── .github └── workflows │ └── ios.yml ├── .gitignore ├── .swiftpm └── xcode │ └── package.xcworkspace │ └── contents.xcworkspacedata ├── FormattableTextView.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ ├── IDEWorkspaceChecks.plist │ │ └── swiftpm │ │ └── Package.resolved └── xcshareddata │ └── xcschemes │ └── FormattableTextView.xcscheme ├── FormattableTextView ├── CALayer+AttributedText.swift ├── FormattableInput.swift ├── FormattableKernTextView.swift ├── FormattableTextField.swift ├── FormattableTextView.h └── Info.plist ├── FormattableTextViewExample ├── AppDelegate.swift ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ ├── Contents.json │ │ ├── Icon-120.png │ │ ├── Icon-152.png │ │ ├── Icon-167.png │ │ ├── Icon-180.png │ │ └── Icon-76.png │ └── Contents.json ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── Info.plist └── ViewController.swift ├── FormattableTextViewSnapshotTests ├── FormattableKernTextViewSnapshotTests.swift ├── FormattableTextFieldSnapshotTests.swift ├── SnapshotTestHelper.swift └── __Snapshots__ │ ├── FormattableKernTextViewSnapshotTests │ ├── testCurrencySymbol.iOS12.png │ ├── testCurrencySymbol.iOS13.png │ ├── testCurrencySymbol.iOS14.png │ ├── testCurrencySymbol.iOS15.png │ ├── testFieldPhoneNumber.iOS12.png │ ├── testFieldPhoneNumber.iOS13.png │ ├── testFieldPhoneNumber.iOS14.png │ ├── testFieldPhoneNumber.iOS15.png │ ├── testLeftOnlyFormat.iOS12.png │ ├── testLeftOnlyFormat.iOS13.png │ ├── testLeftOnlyFormat.iOS14.png │ ├── testLeftOnlyFormat.iOS15.png │ ├── testWholeFormat.iOS12.png │ ├── testWholeFormat.iOS13.png │ ├── testWholeFormat.iOS14.png │ └── testWholeFormat.iOS15.png │ └── FormattableTextFieldSnapshotTests │ ├── testCurrencySymbol.iOS12.png │ ├── testCurrencySymbol.iOS13.png │ ├── testCurrencySymbol.iOS14.png │ ├── testCurrencySymbol.iOS15.png │ ├── testFieldPhoneNumber.iOS12.png │ ├── testFieldPhoneNumber.iOS13.png │ ├── testFieldPhoneNumber.iOS14.png │ ├── testFieldPhoneNumber.iOS15.png │ ├── testLeftOnlyFormat.iOS12.png │ ├── testLeftOnlyFormat.iOS13.png │ ├── testLeftOnlyFormat.iOS14.png │ ├── testLeftOnlyFormat.iOS15.png │ ├── testWholeFormat.iOS12.png │ ├── testWholeFormat.iOS13.png │ ├── testWholeFormat.iOS14.png │ └── testWholeFormat.iOS15.png ├── FormattableTextViewTests ├── FormattableTextTests.swift └── Info.plist ├── FormattedTextView.podspec ├── LICENSE ├── Package.swift ├── README.md └── images ├── left.gif ├── left.png ├── leftAndRight.png ├── perspective.gif ├── whole.gif └── whole.png /.github/workflows/ios.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiwi/FormattableTextView/HEAD/.github/workflows/ios.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiwi/FormattableTextView/HEAD/.gitignore -------------------------------------------------------------------------------- /.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiwi/FormattableTextView/HEAD/.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /FormattableTextView.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiwi/FormattableTextView/HEAD/FormattableTextView.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /FormattableTextView.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiwi/FormattableTextView/HEAD/FormattableTextView.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /FormattableTextView.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiwi/FormattableTextView/HEAD/FormattableTextView.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /FormattableTextView.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiwi/FormattableTextView/HEAD/FormattableTextView.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved -------------------------------------------------------------------------------- /FormattableTextView.xcodeproj/xcshareddata/xcschemes/FormattableTextView.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiwi/FormattableTextView/HEAD/FormattableTextView.xcodeproj/xcshareddata/xcschemes/FormattableTextView.xcscheme -------------------------------------------------------------------------------- /FormattableTextView/CALayer+AttributedText.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiwi/FormattableTextView/HEAD/FormattableTextView/CALayer+AttributedText.swift -------------------------------------------------------------------------------- /FormattableTextView/FormattableInput.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiwi/FormattableTextView/HEAD/FormattableTextView/FormattableInput.swift -------------------------------------------------------------------------------- /FormattableTextView/FormattableKernTextView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiwi/FormattableTextView/HEAD/FormattableTextView/FormattableKernTextView.swift -------------------------------------------------------------------------------- /FormattableTextView/FormattableTextField.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiwi/FormattableTextView/HEAD/FormattableTextView/FormattableTextField.swift -------------------------------------------------------------------------------- /FormattableTextView/FormattableTextView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiwi/FormattableTextView/HEAD/FormattableTextView/FormattableTextView.h -------------------------------------------------------------------------------- /FormattableTextView/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiwi/FormattableTextView/HEAD/FormattableTextView/Info.plist -------------------------------------------------------------------------------- /FormattableTextViewExample/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiwi/FormattableTextView/HEAD/FormattableTextViewExample/AppDelegate.swift -------------------------------------------------------------------------------- /FormattableTextViewExample/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiwi/FormattableTextView/HEAD/FormattableTextViewExample/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /FormattableTextViewExample/Assets.xcassets/AppIcon.appiconset/Icon-120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiwi/FormattableTextView/HEAD/FormattableTextViewExample/Assets.xcassets/AppIcon.appiconset/Icon-120.png -------------------------------------------------------------------------------- /FormattableTextViewExample/Assets.xcassets/AppIcon.appiconset/Icon-152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiwi/FormattableTextView/HEAD/FormattableTextViewExample/Assets.xcassets/AppIcon.appiconset/Icon-152.png -------------------------------------------------------------------------------- /FormattableTextViewExample/Assets.xcassets/AppIcon.appiconset/Icon-167.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiwi/FormattableTextView/HEAD/FormattableTextViewExample/Assets.xcassets/AppIcon.appiconset/Icon-167.png -------------------------------------------------------------------------------- /FormattableTextViewExample/Assets.xcassets/AppIcon.appiconset/Icon-180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiwi/FormattableTextView/HEAD/FormattableTextViewExample/Assets.xcassets/AppIcon.appiconset/Icon-180.png -------------------------------------------------------------------------------- /FormattableTextViewExample/Assets.xcassets/AppIcon.appiconset/Icon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiwi/FormattableTextView/HEAD/FormattableTextViewExample/Assets.xcassets/AppIcon.appiconset/Icon-76.png -------------------------------------------------------------------------------- /FormattableTextViewExample/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiwi/FormattableTextView/HEAD/FormattableTextViewExample/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /FormattableTextViewExample/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiwi/FormattableTextView/HEAD/FormattableTextViewExample/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /FormattableTextViewExample/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiwi/FormattableTextView/HEAD/FormattableTextViewExample/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /FormattableTextViewExample/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiwi/FormattableTextView/HEAD/FormattableTextViewExample/Info.plist -------------------------------------------------------------------------------- /FormattableTextViewExample/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiwi/FormattableTextView/HEAD/FormattableTextViewExample/ViewController.swift -------------------------------------------------------------------------------- /FormattableTextViewSnapshotTests/FormattableKernTextViewSnapshotTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiwi/FormattableTextView/HEAD/FormattableTextViewSnapshotTests/FormattableKernTextViewSnapshotTests.swift -------------------------------------------------------------------------------- /FormattableTextViewSnapshotTests/FormattableTextFieldSnapshotTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiwi/FormattableTextView/HEAD/FormattableTextViewSnapshotTests/FormattableTextFieldSnapshotTests.swift -------------------------------------------------------------------------------- /FormattableTextViewSnapshotTests/SnapshotTestHelper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiwi/FormattableTextView/HEAD/FormattableTextViewSnapshotTests/SnapshotTestHelper.swift -------------------------------------------------------------------------------- /FormattableTextViewSnapshotTests/__Snapshots__/FormattableKernTextViewSnapshotTests/testCurrencySymbol.iOS12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiwi/FormattableTextView/HEAD/FormattableTextViewSnapshotTests/__Snapshots__/FormattableKernTextViewSnapshotTests/testCurrencySymbol.iOS12.png -------------------------------------------------------------------------------- /FormattableTextViewSnapshotTests/__Snapshots__/FormattableKernTextViewSnapshotTests/testCurrencySymbol.iOS13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiwi/FormattableTextView/HEAD/FormattableTextViewSnapshotTests/__Snapshots__/FormattableKernTextViewSnapshotTests/testCurrencySymbol.iOS13.png -------------------------------------------------------------------------------- /FormattableTextViewSnapshotTests/__Snapshots__/FormattableKernTextViewSnapshotTests/testCurrencySymbol.iOS14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiwi/FormattableTextView/HEAD/FormattableTextViewSnapshotTests/__Snapshots__/FormattableKernTextViewSnapshotTests/testCurrencySymbol.iOS14.png -------------------------------------------------------------------------------- /FormattableTextViewSnapshotTests/__Snapshots__/FormattableKernTextViewSnapshotTests/testCurrencySymbol.iOS15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiwi/FormattableTextView/HEAD/FormattableTextViewSnapshotTests/__Snapshots__/FormattableKernTextViewSnapshotTests/testCurrencySymbol.iOS15.png -------------------------------------------------------------------------------- /FormattableTextViewSnapshotTests/__Snapshots__/FormattableKernTextViewSnapshotTests/testFieldPhoneNumber.iOS12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiwi/FormattableTextView/HEAD/FormattableTextViewSnapshotTests/__Snapshots__/FormattableKernTextViewSnapshotTests/testFieldPhoneNumber.iOS12.png -------------------------------------------------------------------------------- /FormattableTextViewSnapshotTests/__Snapshots__/FormattableKernTextViewSnapshotTests/testFieldPhoneNumber.iOS13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiwi/FormattableTextView/HEAD/FormattableTextViewSnapshotTests/__Snapshots__/FormattableKernTextViewSnapshotTests/testFieldPhoneNumber.iOS13.png -------------------------------------------------------------------------------- /FormattableTextViewSnapshotTests/__Snapshots__/FormattableKernTextViewSnapshotTests/testFieldPhoneNumber.iOS14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiwi/FormattableTextView/HEAD/FormattableTextViewSnapshotTests/__Snapshots__/FormattableKernTextViewSnapshotTests/testFieldPhoneNumber.iOS14.png -------------------------------------------------------------------------------- /FormattableTextViewSnapshotTests/__Snapshots__/FormattableKernTextViewSnapshotTests/testFieldPhoneNumber.iOS15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiwi/FormattableTextView/HEAD/FormattableTextViewSnapshotTests/__Snapshots__/FormattableKernTextViewSnapshotTests/testFieldPhoneNumber.iOS15.png -------------------------------------------------------------------------------- /FormattableTextViewSnapshotTests/__Snapshots__/FormattableKernTextViewSnapshotTests/testLeftOnlyFormat.iOS12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiwi/FormattableTextView/HEAD/FormattableTextViewSnapshotTests/__Snapshots__/FormattableKernTextViewSnapshotTests/testLeftOnlyFormat.iOS12.png -------------------------------------------------------------------------------- /FormattableTextViewSnapshotTests/__Snapshots__/FormattableKernTextViewSnapshotTests/testLeftOnlyFormat.iOS13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiwi/FormattableTextView/HEAD/FormattableTextViewSnapshotTests/__Snapshots__/FormattableKernTextViewSnapshotTests/testLeftOnlyFormat.iOS13.png -------------------------------------------------------------------------------- /FormattableTextViewSnapshotTests/__Snapshots__/FormattableKernTextViewSnapshotTests/testLeftOnlyFormat.iOS14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiwi/FormattableTextView/HEAD/FormattableTextViewSnapshotTests/__Snapshots__/FormattableKernTextViewSnapshotTests/testLeftOnlyFormat.iOS14.png -------------------------------------------------------------------------------- /FormattableTextViewSnapshotTests/__Snapshots__/FormattableKernTextViewSnapshotTests/testLeftOnlyFormat.iOS15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiwi/FormattableTextView/HEAD/FormattableTextViewSnapshotTests/__Snapshots__/FormattableKernTextViewSnapshotTests/testLeftOnlyFormat.iOS15.png -------------------------------------------------------------------------------- /FormattableTextViewSnapshotTests/__Snapshots__/FormattableKernTextViewSnapshotTests/testWholeFormat.iOS12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiwi/FormattableTextView/HEAD/FormattableTextViewSnapshotTests/__Snapshots__/FormattableKernTextViewSnapshotTests/testWholeFormat.iOS12.png -------------------------------------------------------------------------------- /FormattableTextViewSnapshotTests/__Snapshots__/FormattableKernTextViewSnapshotTests/testWholeFormat.iOS13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiwi/FormattableTextView/HEAD/FormattableTextViewSnapshotTests/__Snapshots__/FormattableKernTextViewSnapshotTests/testWholeFormat.iOS13.png -------------------------------------------------------------------------------- /FormattableTextViewSnapshotTests/__Snapshots__/FormattableKernTextViewSnapshotTests/testWholeFormat.iOS14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiwi/FormattableTextView/HEAD/FormattableTextViewSnapshotTests/__Snapshots__/FormattableKernTextViewSnapshotTests/testWholeFormat.iOS14.png -------------------------------------------------------------------------------- /FormattableTextViewSnapshotTests/__Snapshots__/FormattableKernTextViewSnapshotTests/testWholeFormat.iOS15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiwi/FormattableTextView/HEAD/FormattableTextViewSnapshotTests/__Snapshots__/FormattableKernTextViewSnapshotTests/testWholeFormat.iOS15.png -------------------------------------------------------------------------------- /FormattableTextViewSnapshotTests/__Snapshots__/FormattableTextFieldSnapshotTests/testCurrencySymbol.iOS12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiwi/FormattableTextView/HEAD/FormattableTextViewSnapshotTests/__Snapshots__/FormattableTextFieldSnapshotTests/testCurrencySymbol.iOS12.png -------------------------------------------------------------------------------- /FormattableTextViewSnapshotTests/__Snapshots__/FormattableTextFieldSnapshotTests/testCurrencySymbol.iOS13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiwi/FormattableTextView/HEAD/FormattableTextViewSnapshotTests/__Snapshots__/FormattableTextFieldSnapshotTests/testCurrencySymbol.iOS13.png -------------------------------------------------------------------------------- /FormattableTextViewSnapshotTests/__Snapshots__/FormattableTextFieldSnapshotTests/testCurrencySymbol.iOS14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiwi/FormattableTextView/HEAD/FormattableTextViewSnapshotTests/__Snapshots__/FormattableTextFieldSnapshotTests/testCurrencySymbol.iOS14.png -------------------------------------------------------------------------------- /FormattableTextViewSnapshotTests/__Snapshots__/FormattableTextFieldSnapshotTests/testCurrencySymbol.iOS15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiwi/FormattableTextView/HEAD/FormattableTextViewSnapshotTests/__Snapshots__/FormattableTextFieldSnapshotTests/testCurrencySymbol.iOS15.png -------------------------------------------------------------------------------- /FormattableTextViewSnapshotTests/__Snapshots__/FormattableTextFieldSnapshotTests/testFieldPhoneNumber.iOS12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiwi/FormattableTextView/HEAD/FormattableTextViewSnapshotTests/__Snapshots__/FormattableTextFieldSnapshotTests/testFieldPhoneNumber.iOS12.png -------------------------------------------------------------------------------- /FormattableTextViewSnapshotTests/__Snapshots__/FormattableTextFieldSnapshotTests/testFieldPhoneNumber.iOS13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiwi/FormattableTextView/HEAD/FormattableTextViewSnapshotTests/__Snapshots__/FormattableTextFieldSnapshotTests/testFieldPhoneNumber.iOS13.png -------------------------------------------------------------------------------- /FormattableTextViewSnapshotTests/__Snapshots__/FormattableTextFieldSnapshotTests/testFieldPhoneNumber.iOS14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiwi/FormattableTextView/HEAD/FormattableTextViewSnapshotTests/__Snapshots__/FormattableTextFieldSnapshotTests/testFieldPhoneNumber.iOS14.png -------------------------------------------------------------------------------- /FormattableTextViewSnapshotTests/__Snapshots__/FormattableTextFieldSnapshotTests/testFieldPhoneNumber.iOS15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiwi/FormattableTextView/HEAD/FormattableTextViewSnapshotTests/__Snapshots__/FormattableTextFieldSnapshotTests/testFieldPhoneNumber.iOS15.png -------------------------------------------------------------------------------- /FormattableTextViewSnapshotTests/__Snapshots__/FormattableTextFieldSnapshotTests/testLeftOnlyFormat.iOS12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiwi/FormattableTextView/HEAD/FormattableTextViewSnapshotTests/__Snapshots__/FormattableTextFieldSnapshotTests/testLeftOnlyFormat.iOS12.png -------------------------------------------------------------------------------- /FormattableTextViewSnapshotTests/__Snapshots__/FormattableTextFieldSnapshotTests/testLeftOnlyFormat.iOS13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiwi/FormattableTextView/HEAD/FormattableTextViewSnapshotTests/__Snapshots__/FormattableTextFieldSnapshotTests/testLeftOnlyFormat.iOS13.png -------------------------------------------------------------------------------- /FormattableTextViewSnapshotTests/__Snapshots__/FormattableTextFieldSnapshotTests/testLeftOnlyFormat.iOS14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiwi/FormattableTextView/HEAD/FormattableTextViewSnapshotTests/__Snapshots__/FormattableTextFieldSnapshotTests/testLeftOnlyFormat.iOS14.png -------------------------------------------------------------------------------- /FormattableTextViewSnapshotTests/__Snapshots__/FormattableTextFieldSnapshotTests/testLeftOnlyFormat.iOS15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiwi/FormattableTextView/HEAD/FormattableTextViewSnapshotTests/__Snapshots__/FormattableTextFieldSnapshotTests/testLeftOnlyFormat.iOS15.png -------------------------------------------------------------------------------- /FormattableTextViewSnapshotTests/__Snapshots__/FormattableTextFieldSnapshotTests/testWholeFormat.iOS12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiwi/FormattableTextView/HEAD/FormattableTextViewSnapshotTests/__Snapshots__/FormattableTextFieldSnapshotTests/testWholeFormat.iOS12.png -------------------------------------------------------------------------------- /FormattableTextViewSnapshotTests/__Snapshots__/FormattableTextFieldSnapshotTests/testWholeFormat.iOS13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiwi/FormattableTextView/HEAD/FormattableTextViewSnapshotTests/__Snapshots__/FormattableTextFieldSnapshotTests/testWholeFormat.iOS13.png -------------------------------------------------------------------------------- /FormattableTextViewSnapshotTests/__Snapshots__/FormattableTextFieldSnapshotTests/testWholeFormat.iOS14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiwi/FormattableTextView/HEAD/FormattableTextViewSnapshotTests/__Snapshots__/FormattableTextFieldSnapshotTests/testWholeFormat.iOS14.png -------------------------------------------------------------------------------- /FormattableTextViewSnapshotTests/__Snapshots__/FormattableTextFieldSnapshotTests/testWholeFormat.iOS15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiwi/FormattableTextView/HEAD/FormattableTextViewSnapshotTests/__Snapshots__/FormattableTextFieldSnapshotTests/testWholeFormat.iOS15.png -------------------------------------------------------------------------------- /FormattableTextViewTests/FormattableTextTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiwi/FormattableTextView/HEAD/FormattableTextViewTests/FormattableTextTests.swift -------------------------------------------------------------------------------- /FormattableTextViewTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiwi/FormattableTextView/HEAD/FormattableTextViewTests/Info.plist -------------------------------------------------------------------------------- /FormattedTextView.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiwi/FormattableTextView/HEAD/FormattedTextView.podspec -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiwi/FormattableTextView/HEAD/LICENSE -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiwi/FormattableTextView/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiwi/FormattableTextView/HEAD/README.md -------------------------------------------------------------------------------- /images/left.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiwi/FormattableTextView/HEAD/images/left.gif -------------------------------------------------------------------------------- /images/left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiwi/FormattableTextView/HEAD/images/left.png -------------------------------------------------------------------------------- /images/leftAndRight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiwi/FormattableTextView/HEAD/images/leftAndRight.png -------------------------------------------------------------------------------- /images/perspective.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiwi/FormattableTextView/HEAD/images/perspective.gif -------------------------------------------------------------------------------- /images/whole.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiwi/FormattableTextView/HEAD/images/whole.gif -------------------------------------------------------------------------------- /images/whole.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiwi/FormattableTextView/HEAD/images/whole.png --------------------------------------------------------------------------------