├── .github └── workflows │ └── swift.yml ├── .gitignore ├── LICENSE ├── Package.swift ├── README.md └── Sources ├── TokenField ├── FormTokenField.swift └── TokenField.swift └── TokenFieldTests └── TokenFieldTests.swift /.github/workflows/swift.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcanas/TokenField/HEAD/.github/workflows/swift.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcanas/TokenField/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcanas/TokenField/HEAD/LICENSE -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcanas/TokenField/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcanas/TokenField/HEAD/README.md -------------------------------------------------------------------------------- /Sources/TokenField/FormTokenField.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcanas/TokenField/HEAD/Sources/TokenField/FormTokenField.swift -------------------------------------------------------------------------------- /Sources/TokenField/TokenField.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcanas/TokenField/HEAD/Sources/TokenField/TokenField.swift -------------------------------------------------------------------------------- /Sources/TokenFieldTests/TokenFieldTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcanas/TokenField/HEAD/Sources/TokenFieldTests/TokenFieldTests.swift --------------------------------------------------------------------------------