├── .gitignore ├── AttachmentInput.gif ├── AttachmentInput.png ├── AttachmentInput.podspec ├── AttachmentInput.xcworkspace ├── contents.xcworkspacedata └── xcshareddata │ └── IDEWorkspaceChecks.plist ├── Example ├── Example.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── Example │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ ├── Contents.json │ ├── button.imageset │ │ ├── Contents.json │ │ ├── camera.png │ │ ├── camera@2x.png │ │ └── camera@3x.png │ ├── deleteFile.imageset │ │ ├── Contents.json │ │ ├── deleteFile.png │ │ ├── deleteFile@2x.png │ │ └── deleteFile@3x.png │ └── general-file-square.imageset │ │ ├── Contents.json │ │ ├── general-file-square.png │ │ ├── general-file-square@2x.png │ │ └── general-file-square@3x.png │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── ButtonAccessoryView.swift │ ├── ButtonAccessoryView.xib │ ├── ImageCell.swift │ ├── Info.plist │ ├── MainViewController.swift │ ├── MainViewModel.swift │ └── PhotoData.swift ├── Gemfile ├── Gemfile.lock ├── LICENSE ├── Package.swift ├── Podfile ├── Podfile.lock ├── README.md └── Sources ├── AttachmentInput.xcodeproj └── project.pbxproj ├── AttachmentInput ├── AttachmentInput.h ├── AttachmentInput.swift ├── AttachmentInputConfiguration.swift ├── AttachmentInputDelegate.swift ├── AttachmentInputError.swift ├── Info.plist ├── Logic │ ├── AttachmentInputPhoto.swift │ ├── AttachmentInputPhotoStatus.swift │ ├── AttachmentInputUtil.swift │ ├── AttachmentInputViewLogic.swift │ └── ImagePickerAuthorization.swift └── View │ ├── AttachmentInputView.swift │ ├── AttachmentInputView.xib │ ├── CameraCell.swift │ ├── CameraCell.xib │ ├── CameraView.swift │ ├── ImagePickerCell.swift │ ├── ImagePickerCell.xib │ ├── PhotoCell.swift │ └── PhotoCell.xib ├── Extension ├── BehaviorSubjectExtension.swift ├── ObservableTypeExtension.swift └── UICollectionViewFlowLayoutExtension.swift └── Resources ├── AttachmentInput.strings ├── AttachmentInputColor.swift ├── AttachmentInputFont.swift └── image.xcassets ├── Contents.json ├── album.imageset ├── Contents.json ├── album.png ├── album@2x.png └── album@3x.png ├── camera.imageset ├── Contents.json ├── camera.png ├── camera@2x.png └── camera@3x.png ├── shutter.imageset ├── Contents.json ├── shutter.png ├── shutter@2x.png └── shutter@3x.png ├── thumbCheck.imageset ├── Contents.json ├── thumbCheck.png ├── thumbCheck@2x.png └── thumbCheck@3x.png ├── thumbError.imageset ├── Contents.json ├── thumbError.png ├── thumbError@2x.png └── thumbError@3x.png └── thumbMovie.imageset ├── Contents.json ├── thumbMovie.png ├── thumbMovie@2x.png └── thumbMovie@3x.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybozu/AttachmentInput/HEAD/.gitignore -------------------------------------------------------------------------------- /AttachmentInput.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybozu/AttachmentInput/HEAD/AttachmentInput.gif -------------------------------------------------------------------------------- /AttachmentInput.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybozu/AttachmentInput/HEAD/AttachmentInput.png -------------------------------------------------------------------------------- /AttachmentInput.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybozu/AttachmentInput/HEAD/AttachmentInput.podspec -------------------------------------------------------------------------------- /AttachmentInput.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybozu/AttachmentInput/HEAD/AttachmentInput.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /AttachmentInput.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybozu/AttachmentInput/HEAD/AttachmentInput.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Example/Example.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybozu/AttachmentInput/HEAD/Example/Example.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/Example.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybozu/AttachmentInput/HEAD/Example/Example.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/Example.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybozu/AttachmentInput/HEAD/Example/Example.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Example/Example/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybozu/AttachmentInput/HEAD/Example/Example/AppDelegate.swift -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybozu/AttachmentInput/HEAD/Example/Example/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybozu/AttachmentInput/HEAD/Example/Example/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/button.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybozu/AttachmentInput/HEAD/Example/Example/Assets.xcassets/button.imageset/Contents.json -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/button.imageset/camera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybozu/AttachmentInput/HEAD/Example/Example/Assets.xcassets/button.imageset/camera.png -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/button.imageset/camera@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybozu/AttachmentInput/HEAD/Example/Example/Assets.xcassets/button.imageset/camera@2x.png -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/button.imageset/camera@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybozu/AttachmentInput/HEAD/Example/Example/Assets.xcassets/button.imageset/camera@3x.png -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/deleteFile.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybozu/AttachmentInput/HEAD/Example/Example/Assets.xcassets/deleteFile.imageset/Contents.json -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/deleteFile.imageset/deleteFile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybozu/AttachmentInput/HEAD/Example/Example/Assets.xcassets/deleteFile.imageset/deleteFile.png -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/deleteFile.imageset/deleteFile@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybozu/AttachmentInput/HEAD/Example/Example/Assets.xcassets/deleteFile.imageset/deleteFile@2x.png -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/deleteFile.imageset/deleteFile@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybozu/AttachmentInput/HEAD/Example/Example/Assets.xcassets/deleteFile.imageset/deleteFile@3x.png -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/general-file-square.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybozu/AttachmentInput/HEAD/Example/Example/Assets.xcassets/general-file-square.imageset/Contents.json -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/general-file-square.imageset/general-file-square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybozu/AttachmentInput/HEAD/Example/Example/Assets.xcassets/general-file-square.imageset/general-file-square.png -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/general-file-square.imageset/general-file-square@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybozu/AttachmentInput/HEAD/Example/Example/Assets.xcassets/general-file-square.imageset/general-file-square@2x.png -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/general-file-square.imageset/general-file-square@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybozu/AttachmentInput/HEAD/Example/Example/Assets.xcassets/general-file-square.imageset/general-file-square@3x.png -------------------------------------------------------------------------------- /Example/Example/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybozu/AttachmentInput/HEAD/Example/Example/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Example/Example/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybozu/AttachmentInput/HEAD/Example/Example/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Example/Example/ButtonAccessoryView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybozu/AttachmentInput/HEAD/Example/Example/ButtonAccessoryView.swift -------------------------------------------------------------------------------- /Example/Example/ButtonAccessoryView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybozu/AttachmentInput/HEAD/Example/Example/ButtonAccessoryView.xib -------------------------------------------------------------------------------- /Example/Example/ImageCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybozu/AttachmentInput/HEAD/Example/Example/ImageCell.swift -------------------------------------------------------------------------------- /Example/Example/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybozu/AttachmentInput/HEAD/Example/Example/Info.plist -------------------------------------------------------------------------------- /Example/Example/MainViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybozu/AttachmentInput/HEAD/Example/Example/MainViewController.swift -------------------------------------------------------------------------------- /Example/Example/MainViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybozu/AttachmentInput/HEAD/Example/Example/MainViewModel.swift -------------------------------------------------------------------------------- /Example/Example/PhotoData.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybozu/AttachmentInput/HEAD/Example/Example/PhotoData.swift -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- 1 | source "https://rubygems.org" 2 | 3 | gem 'cocoapods' -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybozu/AttachmentInput/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybozu/AttachmentInput/HEAD/LICENSE -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybozu/AttachmentInput/HEAD/Package.swift -------------------------------------------------------------------------------- /Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybozu/AttachmentInput/HEAD/Podfile -------------------------------------------------------------------------------- /Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybozu/AttachmentInput/HEAD/Podfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybozu/AttachmentInput/HEAD/README.md -------------------------------------------------------------------------------- /Sources/AttachmentInput.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybozu/AttachmentInput/HEAD/Sources/AttachmentInput.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Sources/AttachmentInput/AttachmentInput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybozu/AttachmentInput/HEAD/Sources/AttachmentInput/AttachmentInput.h -------------------------------------------------------------------------------- /Sources/AttachmentInput/AttachmentInput.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybozu/AttachmentInput/HEAD/Sources/AttachmentInput/AttachmentInput.swift -------------------------------------------------------------------------------- /Sources/AttachmentInput/AttachmentInputConfiguration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybozu/AttachmentInput/HEAD/Sources/AttachmentInput/AttachmentInputConfiguration.swift -------------------------------------------------------------------------------- /Sources/AttachmentInput/AttachmentInputDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybozu/AttachmentInput/HEAD/Sources/AttachmentInput/AttachmentInputDelegate.swift -------------------------------------------------------------------------------- /Sources/AttachmentInput/AttachmentInputError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybozu/AttachmentInput/HEAD/Sources/AttachmentInput/AttachmentInputError.swift -------------------------------------------------------------------------------- /Sources/AttachmentInput/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybozu/AttachmentInput/HEAD/Sources/AttachmentInput/Info.plist -------------------------------------------------------------------------------- /Sources/AttachmentInput/Logic/AttachmentInputPhoto.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybozu/AttachmentInput/HEAD/Sources/AttachmentInput/Logic/AttachmentInputPhoto.swift -------------------------------------------------------------------------------- /Sources/AttachmentInput/Logic/AttachmentInputPhotoStatus.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybozu/AttachmentInput/HEAD/Sources/AttachmentInput/Logic/AttachmentInputPhotoStatus.swift -------------------------------------------------------------------------------- /Sources/AttachmentInput/Logic/AttachmentInputUtil.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybozu/AttachmentInput/HEAD/Sources/AttachmentInput/Logic/AttachmentInputUtil.swift -------------------------------------------------------------------------------- /Sources/AttachmentInput/Logic/AttachmentInputViewLogic.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybozu/AttachmentInput/HEAD/Sources/AttachmentInput/Logic/AttachmentInputViewLogic.swift -------------------------------------------------------------------------------- /Sources/AttachmentInput/Logic/ImagePickerAuthorization.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybozu/AttachmentInput/HEAD/Sources/AttachmentInput/Logic/ImagePickerAuthorization.swift -------------------------------------------------------------------------------- /Sources/AttachmentInput/View/AttachmentInputView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybozu/AttachmentInput/HEAD/Sources/AttachmentInput/View/AttachmentInputView.swift -------------------------------------------------------------------------------- /Sources/AttachmentInput/View/AttachmentInputView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybozu/AttachmentInput/HEAD/Sources/AttachmentInput/View/AttachmentInputView.xib -------------------------------------------------------------------------------- /Sources/AttachmentInput/View/CameraCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybozu/AttachmentInput/HEAD/Sources/AttachmentInput/View/CameraCell.swift -------------------------------------------------------------------------------- /Sources/AttachmentInput/View/CameraCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybozu/AttachmentInput/HEAD/Sources/AttachmentInput/View/CameraCell.xib -------------------------------------------------------------------------------- /Sources/AttachmentInput/View/CameraView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybozu/AttachmentInput/HEAD/Sources/AttachmentInput/View/CameraView.swift -------------------------------------------------------------------------------- /Sources/AttachmentInput/View/ImagePickerCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybozu/AttachmentInput/HEAD/Sources/AttachmentInput/View/ImagePickerCell.swift -------------------------------------------------------------------------------- /Sources/AttachmentInput/View/ImagePickerCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybozu/AttachmentInput/HEAD/Sources/AttachmentInput/View/ImagePickerCell.xib -------------------------------------------------------------------------------- /Sources/AttachmentInput/View/PhotoCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybozu/AttachmentInput/HEAD/Sources/AttachmentInput/View/PhotoCell.swift -------------------------------------------------------------------------------- /Sources/AttachmentInput/View/PhotoCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybozu/AttachmentInput/HEAD/Sources/AttachmentInput/View/PhotoCell.xib -------------------------------------------------------------------------------- /Sources/Extension/BehaviorSubjectExtension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybozu/AttachmentInput/HEAD/Sources/Extension/BehaviorSubjectExtension.swift -------------------------------------------------------------------------------- /Sources/Extension/ObservableTypeExtension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybozu/AttachmentInput/HEAD/Sources/Extension/ObservableTypeExtension.swift -------------------------------------------------------------------------------- /Sources/Extension/UICollectionViewFlowLayoutExtension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybozu/AttachmentInput/HEAD/Sources/Extension/UICollectionViewFlowLayoutExtension.swift -------------------------------------------------------------------------------- /Sources/Resources/AttachmentInput.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybozu/AttachmentInput/HEAD/Sources/Resources/AttachmentInput.strings -------------------------------------------------------------------------------- /Sources/Resources/AttachmentInputColor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybozu/AttachmentInput/HEAD/Sources/Resources/AttachmentInputColor.swift -------------------------------------------------------------------------------- /Sources/Resources/AttachmentInputFont.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybozu/AttachmentInput/HEAD/Sources/Resources/AttachmentInputFont.swift -------------------------------------------------------------------------------- /Sources/Resources/image.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybozu/AttachmentInput/HEAD/Sources/Resources/image.xcassets/Contents.json -------------------------------------------------------------------------------- /Sources/Resources/image.xcassets/album.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybozu/AttachmentInput/HEAD/Sources/Resources/image.xcassets/album.imageset/Contents.json -------------------------------------------------------------------------------- /Sources/Resources/image.xcassets/album.imageset/album.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybozu/AttachmentInput/HEAD/Sources/Resources/image.xcassets/album.imageset/album.png -------------------------------------------------------------------------------- /Sources/Resources/image.xcassets/album.imageset/album@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybozu/AttachmentInput/HEAD/Sources/Resources/image.xcassets/album.imageset/album@2x.png -------------------------------------------------------------------------------- /Sources/Resources/image.xcassets/album.imageset/album@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybozu/AttachmentInput/HEAD/Sources/Resources/image.xcassets/album.imageset/album@3x.png -------------------------------------------------------------------------------- /Sources/Resources/image.xcassets/camera.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybozu/AttachmentInput/HEAD/Sources/Resources/image.xcassets/camera.imageset/Contents.json -------------------------------------------------------------------------------- /Sources/Resources/image.xcassets/camera.imageset/camera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybozu/AttachmentInput/HEAD/Sources/Resources/image.xcassets/camera.imageset/camera.png -------------------------------------------------------------------------------- /Sources/Resources/image.xcassets/camera.imageset/camera@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybozu/AttachmentInput/HEAD/Sources/Resources/image.xcassets/camera.imageset/camera@2x.png -------------------------------------------------------------------------------- /Sources/Resources/image.xcassets/camera.imageset/camera@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybozu/AttachmentInput/HEAD/Sources/Resources/image.xcassets/camera.imageset/camera@3x.png -------------------------------------------------------------------------------- /Sources/Resources/image.xcassets/shutter.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybozu/AttachmentInput/HEAD/Sources/Resources/image.xcassets/shutter.imageset/Contents.json -------------------------------------------------------------------------------- /Sources/Resources/image.xcassets/shutter.imageset/shutter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybozu/AttachmentInput/HEAD/Sources/Resources/image.xcassets/shutter.imageset/shutter.png -------------------------------------------------------------------------------- /Sources/Resources/image.xcassets/shutter.imageset/shutter@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybozu/AttachmentInput/HEAD/Sources/Resources/image.xcassets/shutter.imageset/shutter@2x.png -------------------------------------------------------------------------------- /Sources/Resources/image.xcassets/shutter.imageset/shutter@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybozu/AttachmentInput/HEAD/Sources/Resources/image.xcassets/shutter.imageset/shutter@3x.png -------------------------------------------------------------------------------- /Sources/Resources/image.xcassets/thumbCheck.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybozu/AttachmentInput/HEAD/Sources/Resources/image.xcassets/thumbCheck.imageset/Contents.json -------------------------------------------------------------------------------- /Sources/Resources/image.xcassets/thumbCheck.imageset/thumbCheck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybozu/AttachmentInput/HEAD/Sources/Resources/image.xcassets/thumbCheck.imageset/thumbCheck.png -------------------------------------------------------------------------------- /Sources/Resources/image.xcassets/thumbCheck.imageset/thumbCheck@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybozu/AttachmentInput/HEAD/Sources/Resources/image.xcassets/thumbCheck.imageset/thumbCheck@2x.png -------------------------------------------------------------------------------- /Sources/Resources/image.xcassets/thumbCheck.imageset/thumbCheck@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybozu/AttachmentInput/HEAD/Sources/Resources/image.xcassets/thumbCheck.imageset/thumbCheck@3x.png -------------------------------------------------------------------------------- /Sources/Resources/image.xcassets/thumbError.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybozu/AttachmentInput/HEAD/Sources/Resources/image.xcassets/thumbError.imageset/Contents.json -------------------------------------------------------------------------------- /Sources/Resources/image.xcassets/thumbError.imageset/thumbError.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybozu/AttachmentInput/HEAD/Sources/Resources/image.xcassets/thumbError.imageset/thumbError.png -------------------------------------------------------------------------------- /Sources/Resources/image.xcassets/thumbError.imageset/thumbError@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybozu/AttachmentInput/HEAD/Sources/Resources/image.xcassets/thumbError.imageset/thumbError@2x.png -------------------------------------------------------------------------------- /Sources/Resources/image.xcassets/thumbError.imageset/thumbError@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybozu/AttachmentInput/HEAD/Sources/Resources/image.xcassets/thumbError.imageset/thumbError@3x.png -------------------------------------------------------------------------------- /Sources/Resources/image.xcassets/thumbMovie.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybozu/AttachmentInput/HEAD/Sources/Resources/image.xcassets/thumbMovie.imageset/Contents.json -------------------------------------------------------------------------------- /Sources/Resources/image.xcassets/thumbMovie.imageset/thumbMovie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybozu/AttachmentInput/HEAD/Sources/Resources/image.xcassets/thumbMovie.imageset/thumbMovie.png -------------------------------------------------------------------------------- /Sources/Resources/image.xcassets/thumbMovie.imageset/thumbMovie@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybozu/AttachmentInput/HEAD/Sources/Resources/image.xcassets/thumbMovie.imageset/thumbMovie@2x.png -------------------------------------------------------------------------------- /Sources/Resources/image.xcassets/thumbMovie.imageset/thumbMovie@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybozu/AttachmentInput/HEAD/Sources/Resources/image.xcassets/thumbMovie.imageset/thumbMovie@3x.png --------------------------------------------------------------------------------