├── .gitignore ├── .swift-version ├── .swiftformat ├── .travis.yml ├── CHANGELOG.md ├── Demo ├── FilestackDemo.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ └── WorkspaceSettings.xcsettings │ └── xcshareddata │ │ └── xcschemes │ │ └── FilestackDemo.xcscheme └── FilestackDemo │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ ├── AppIcon.png │ │ ├── AppIcon_iPadApp_76.png │ │ ├── AppIcon_iPadApp_76@2x.png │ │ ├── AppIcon_iPadProApp_83.5@2x.png │ │ ├── AppIcon_iPadSettings_29.png │ │ ├── AppIcon_iPadSettings_29@2x.png │ │ ├── AppIcon_iPadSpotlight_40.png │ │ ├── AppIcon_iPadSpotlight_40@2x.png │ │ ├── AppIcon_iPhoneApp_60@2x.png │ │ ├── AppIcon_iPhoneApp_60@3x.png │ │ ├── AppIcon_iPhoneSettings_29.png │ │ ├── AppIcon_iPhoneSettings_29@2x.png │ │ ├── AppIcon_iPhoneSettings_29@3x.png │ │ ├── AppIcon_iPhoneSpotlight_40@2x.png │ │ ├── AppIcon_iPhoneSpotlight_40@3x.png │ │ └── Contents.json │ ├── Contents.json │ └── icon-custom-source.imageset │ │ ├── Contents.json │ │ ├── icon-unsplash.png │ │ └── icon-unsplash@2x.png │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Custom Source Providers │ ├── Cells │ │ └── CustomCell.swift │ └── View Controllers │ │ └── MyCustomSourceProvider.swift │ ├── Demo Content │ ├── demo1.jpg │ ├── demo2.jpg │ ├── demo3.jpg │ ├── demo4.jpg │ └── demo5.jpg │ ├── Extensions │ └── UIViewController+PresentAlert.swift │ ├── Info.plist │ └── ViewController.swift ├── Filestack.podspec ├── Filestack.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ ├── IDEWorkspaceChecks.plist │ │ ├── WorkspaceSettings.xcsettings │ │ └── swiftpm │ │ └── Package.resolved └── xcshareddata │ └── xcschemes │ └── Filestack.xcscheme ├── Filestack.xcworkspace ├── contents.xcworkspacedata └── xcshareddata │ ├── IDEWorkspaceChecks.plist │ ├── WorkspaceSettings.xcsettings │ └── swiftpm │ └── Package.resolved ├── LICENSE ├── Package.resolved ├── Package.swift ├── README.md ├── Sources └── Filestack │ ├── Filestack.h │ ├── Info.plist │ ├── Internal │ ├── Bundle.swift │ ├── Constants.swift │ ├── Extensions │ │ ├── AVAsset+Export.swift │ │ ├── Array+SafeIndex.swift │ │ ├── Data+JSON.swift │ │ ├── ImageEdition │ │ │ ├── CGPoint+Distance.swift │ │ │ ├── CGRect+Scale.swift │ │ │ ├── UIImage+CIImageTransformations.swift │ │ │ ├── UIImage+Rect.swift │ │ │ └── UIImage+Sanitize.swift │ │ ├── ImageURLExportPreset+asImagePickerControllerImageURLExportPreset.swift │ │ ├── Math+Clamp.swift │ │ ├── String+UTI.swift │ │ ├── UICollectionView+Reusable.swift │ │ ├── UIColor+Bundle.swift │ │ ├── UIColor+Predefined.swift │ │ ├── UIImage+Bundle.swift │ │ ├── UIImage+Export.swift │ │ ├── UIImage+HEIC.swift │ │ ├── UIImage+Resized.swift │ │ ├── UIImage+Write.swift │ │ ├── UIView+Constraints.swift │ │ ├── URL+Copy.swift │ │ ├── URL+IsDirectory.swift │ │ ├── URL+Move.swift │ │ └── URLSession+FilestackDefault.swift │ ├── Extractors │ │ ├── URLExtractor.swift │ │ └── UploadableExtractor.swift │ ├── Formatters │ │ └── DurationNumberFormatter.swift │ ├── Operations │ │ └── AssetURLExtractorOperation.swift │ ├── Protocols │ │ └── CloudRequest.swift │ ├── Requests │ │ ├── FolderListRequest.swift │ │ ├── LogoutRequest.swift │ │ ├── PrefetchRequest.swift │ │ └── StoreRequest.swift │ ├── Services │ │ └── CloudService.swift │ └── TrackingProgress.swift │ ├── Public │ ├── CompletionHandlers.swift │ ├── Enums │ │ ├── ClientError.swift │ │ ├── CloudProvider.swift │ │ ├── ImageURLExportPreset.swift │ │ ├── PhotosPickerFilter.swift │ │ └── PickerBehavior.swift │ ├── Extensions │ │ ├── Client+Deprecated.swift │ │ └── Client+ObjC.swift │ ├── Models │ │ ├── Client.swift │ │ └── Config.swift │ └── Responses │ │ ├── CloudResponse.swift │ │ ├── FolderListResponse.swift │ │ ├── LogoutResponse.swift │ │ ├── PrefetchResponse.swift │ │ └── StoreResponse.swift │ ├── Resources │ ├── Colors.xcassets │ │ ├── Contents.json │ │ └── SelectionCellBorderColor.colorset │ │ │ └── Contents.json │ ├── Icons.xcassets │ │ ├── Contents.json │ │ ├── clear-pattern.imageset │ │ │ ├── Contents.json │ │ │ └── clear-pattern.png │ │ ├── file.imageset │ │ │ ├── Contents.json │ │ │ ├── file.png │ │ │ └── file@2x.png │ │ ├── icon-box.imageset │ │ │ ├── Contents.json │ │ │ ├── icon-box.png │ │ │ └── icon-box@2x.png │ │ ├── icon-camera.imageset │ │ │ ├── Contents.json │ │ │ ├── icon-camera.png │ │ │ └── icon-camera@2x.png │ │ ├── icon-circle.imageset │ │ │ ├── Contents.json │ │ │ └── circle_icon.png │ │ ├── icon-clouddrive.imageset │ │ │ ├── Contents.json │ │ │ ├── icon-clouddrive.png │ │ │ └── icon-clouddrive@2x.png │ │ ├── icon-crop.imageset │ │ │ ├── Contents.json │ │ │ └── crop_icon.png │ │ ├── icon-customsource.imageset │ │ │ ├── Contents.json │ │ │ ├── icon-customsource.png │ │ │ └── icon-customsource@2x.png │ │ ├── icon-documents.imageset │ │ │ ├── Contents.json │ │ │ ├── documents.png │ │ │ └── documents@2x.png │ │ ├── icon-dropbox.imageset │ │ │ ├── Contents.json │ │ │ ├── icon-dropbox.png │ │ │ └── icon-dropbox@2x.png │ │ ├── icon-edit.imageset │ │ │ ├── Contents.json │ │ │ └── icon-pencil.png │ │ ├── icon-facebook.imageset │ │ │ ├── Contents.json │ │ │ ├── icon-facebook.png │ │ │ └── icon-facebook@2x.png │ │ ├── icon-file-image.imageset │ │ │ ├── Contents.json │ │ │ └── icon-image.png │ │ ├── icon-file-pdf.imageset │ │ │ ├── Contents.json │ │ │ └── icon-file-pdf.png │ │ ├── icon-file-unknown.imageset │ │ │ ├── Contents.json │ │ │ └── icon-file-unknown.png │ │ ├── icon-file-video.imageset │ │ │ ├── Contents.json │ │ │ └── icon-video-camera.png │ │ ├── icon-github.imageset │ │ │ ├── Contents.json │ │ │ ├── icon-github.png │ │ │ └── icon-github@2x.png │ │ ├── icon-gmail.imageset │ │ │ ├── Contents.json │ │ │ ├── icon-gmail.png │ │ │ └── icon-gmail@2x.png │ │ ├── icon-googledrive.imageset │ │ │ ├── Contents.json │ │ │ ├── icon-googledrive.png │ │ │ └── icon-googledrive@2x.png │ │ ├── icon-grid.imageset │ │ │ ├── Contents.json │ │ │ ├── icon-grid.png │ │ │ ├── icon-grid@2x.png │ │ │ └── icon-grid@3x.png │ │ ├── icon-image.imageset │ │ │ ├── Contents.json │ │ │ └── icon-image.png │ │ ├── icon-instagram.imageset │ │ │ ├── Contents.json │ │ │ ├── icon-instagram.png │ │ │ └── icon-instagram@2x.png │ │ ├── icon-list.imageset │ │ │ ├── Contents.json │ │ │ ├── icon-list.png │ │ │ ├── icon-list@2x.png │ │ │ └── icon-list@3x.png │ │ ├── icon-logout.imageset │ │ │ ├── Contents.json │ │ │ ├── icon-logout.png │ │ │ ├── icon-logout@2x.png │ │ │ └── icon-logout@3x.png │ │ ├── icon-onedrive.imageset │ │ │ ├── Contents.json │ │ │ ├── icon-skydrive.png │ │ │ └── icon-skydrive@2x.png │ │ ├── icon-photolibrary.imageset │ │ │ ├── Contents.json │ │ │ ├── icon-albums.png │ │ │ └── icon-albums@2x.png │ │ ├── icon-picasa.imageset │ │ │ ├── Contents.json │ │ │ ├── icon-picasa.png │ │ │ └── icon-picasa@2x.png │ │ ├── icon-redo.imageset │ │ │ ├── Contents.json │ │ │ └── redo_icon.png │ │ ├── icon-rotate.imageset │ │ │ ├── Contents.json │ │ │ └── rotate_icon.png │ │ ├── icon-selected.imageset │ │ │ ├── Contents.json │ │ │ ├── photoIcon-1.png │ │ │ ├── photoIcon-2.png │ │ │ └── photoIcon.png │ │ ├── icon-tick.imageset │ │ │ ├── Contents.json │ │ │ └── checkmark-solid.png │ │ ├── icon-undo.imageset │ │ │ ├── Contents.json │ │ │ └── undo_icon.png │ │ ├── icon-unsplash.imageset │ │ │ ├── Contents.json │ │ │ ├── icon-unsplash.png │ │ │ └── icon-unsplash@2x.png │ │ ├── icon-upload.imageset │ │ │ ├── Contents.json │ │ │ └── icon_upload.png │ │ └── placeholder.imageset │ │ │ ├── Contents.json │ │ │ └── placeholder.png │ ├── PhotoPicker.storyboard │ └── Picker.storyboard │ ├── UI │ ├── Internal │ │ ├── Collection View Cells │ │ │ ├── ActivityIndicatorCollectionViewCell.swift │ │ │ └── CloudItemCollectionViewCell.swift │ │ ├── Controllers │ │ │ ├── CloudSourceCollectionViewController.swift │ │ │ ├── CloudSourceTabBarController.swift │ │ │ ├── CloudSourceTableViewController.swift │ │ │ ├── CustomPickerUploadController.swift │ │ │ ├── DocumentPickerUploadController.swift │ │ │ ├── ImagePickerUploadController.swift │ │ │ ├── MonitorViewController.swift │ │ │ ├── SourceTableViewController.swift │ │ │ └── URLPickerUploadController.swift │ │ ├── Enums │ │ │ └── CloudSourceViewType.swift │ │ ├── Extensions │ │ │ ├── Scene+Defaults.swift │ │ │ ├── Storyboard+Scenes.swift │ │ │ ├── UIImage+Squared.swift │ │ │ └── UserDefaults+State.swift │ │ ├── FlowLayouts │ │ │ └── CollectionViewFlowLayout.swift │ │ ├── Models │ │ │ └── CloudItem.swift │ │ ├── PhotoEditor │ │ │ ├── EditionController │ │ │ │ ├── EditorToolbar.swift │ │ │ │ ├── Enums │ │ │ │ │ └── ImageEditorCommand.swift │ │ │ │ ├── Handlers │ │ │ │ │ ├── CircleGesturesHandler.swift │ │ │ │ │ └── CropGesturesHandler.swift │ │ │ │ ├── ImageEditor.swift │ │ │ │ ├── Layers │ │ │ │ │ ├── CircleLayer.swift │ │ │ │ │ └── CropLayer.swift │ │ │ │ ├── ViewController │ │ │ │ │ ├── EditorViewController+EditDataSource.swift │ │ │ │ │ ├── EditorViewController+ToolbarDelegate.swift │ │ │ │ │ ├── EditorViewController+ViewSetup.swift │ │ │ │ │ └── EditorViewController.swift │ │ │ │ └── Views │ │ │ │ │ └── ImageEditorView.swift │ │ │ └── SelectionList │ │ │ │ ├── SelectableElement.swift │ │ │ │ ├── SelectionCell.swift │ │ │ │ ├── SelectionListViewController+FlowLayout.swift │ │ │ │ ├── SelectionListViewController+UICollectionView.swift │ │ │ │ ├── SelectionListViewController.swift │ │ │ │ └── Uploadable.swift │ │ ├── PhotoPicker │ │ │ ├── AlbumList │ │ │ │ ├── AlbumCell.swift │ │ │ │ └── AlbumListViewController.swift │ │ │ ├── AssetCollection │ │ │ │ ├── AssetCell.swift │ │ │ │ └── AssetCollectionViewController.swift │ │ │ ├── PhotoAlbumRepository.swift │ │ │ ├── PhotoPickerController.swift │ │ │ └── PhotosExtensions.swift │ │ ├── Protocols │ │ │ ├── CellDescriptibleSource.swift │ │ │ ├── CloudSourceDataSource.swift │ │ │ ├── CloudSourceDataSourceConsumer.swift │ │ │ └── Scene.swift │ │ ├── Scenes │ │ │ ├── CloudSourceBarTabScene.swift │ │ │ └── PickerNavigationScene.swift │ │ └── Table View Cells │ │ │ ├── ActivityIndicatorTableViewCell.swift │ │ │ └── CloudItemTableViewCell.swift │ └── Public │ │ ├── Controllers │ │ └── PickerNavigationController.swift │ │ ├── Enums │ │ └── LocalProvider.swift │ │ ├── Models │ │ ├── CloudSource.swift │ │ ├── LocalSource.swift │ │ └── Stylizer.swift │ │ └── Protocols │ │ ├── SourceProvider.swift │ │ ├── SourceProviderDelegate.swift │ │ └── StylizerDelegate.swift │ └── VERSION ├── VERSION └── bin ├── apply-swiftformat.sh ├── deploy-docs.sh ├── generate-and-deploy-docs.sh ├── generate-docs.sh ├── set-buildnumber.sh └── set-version.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/.gitignore -------------------------------------------------------------------------------- /.swift-version: -------------------------------------------------------------------------------- 1 | 4.2 -------------------------------------------------------------------------------- /.swiftformat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/.swiftformat -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Demo/FilestackDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Demo/FilestackDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Demo/FilestackDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Demo/FilestackDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Demo/FilestackDemo.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Demo/FilestackDemo.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Demo/FilestackDemo.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Demo/FilestackDemo.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /Demo/FilestackDemo.xcodeproj/xcshareddata/xcschemes/FilestackDemo.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Demo/FilestackDemo.xcodeproj/xcshareddata/xcschemes/FilestackDemo.xcscheme -------------------------------------------------------------------------------- /Demo/FilestackDemo/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Demo/FilestackDemo/AppDelegate.swift -------------------------------------------------------------------------------- /Demo/FilestackDemo/Assets.xcassets/AppIcon.appiconset/AppIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Demo/FilestackDemo/Assets.xcassets/AppIcon.appiconset/AppIcon.png -------------------------------------------------------------------------------- /Demo/FilestackDemo/Assets.xcassets/AppIcon.appiconset/AppIcon_iPadApp_76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Demo/FilestackDemo/Assets.xcassets/AppIcon.appiconset/AppIcon_iPadApp_76.png -------------------------------------------------------------------------------- /Demo/FilestackDemo/Assets.xcassets/AppIcon.appiconset/AppIcon_iPadApp_76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Demo/FilestackDemo/Assets.xcassets/AppIcon.appiconset/AppIcon_iPadApp_76@2x.png -------------------------------------------------------------------------------- /Demo/FilestackDemo/Assets.xcassets/AppIcon.appiconset/AppIcon_iPadProApp_83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Demo/FilestackDemo/Assets.xcassets/AppIcon.appiconset/AppIcon_iPadProApp_83.5@2x.png -------------------------------------------------------------------------------- /Demo/FilestackDemo/Assets.xcassets/AppIcon.appiconset/AppIcon_iPadSettings_29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Demo/FilestackDemo/Assets.xcassets/AppIcon.appiconset/AppIcon_iPadSettings_29.png -------------------------------------------------------------------------------- /Demo/FilestackDemo/Assets.xcassets/AppIcon.appiconset/AppIcon_iPadSettings_29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Demo/FilestackDemo/Assets.xcassets/AppIcon.appiconset/AppIcon_iPadSettings_29@2x.png -------------------------------------------------------------------------------- /Demo/FilestackDemo/Assets.xcassets/AppIcon.appiconset/AppIcon_iPadSpotlight_40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Demo/FilestackDemo/Assets.xcassets/AppIcon.appiconset/AppIcon_iPadSpotlight_40.png -------------------------------------------------------------------------------- /Demo/FilestackDemo/Assets.xcassets/AppIcon.appiconset/AppIcon_iPadSpotlight_40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Demo/FilestackDemo/Assets.xcassets/AppIcon.appiconset/AppIcon_iPadSpotlight_40@2x.png -------------------------------------------------------------------------------- /Demo/FilestackDemo/Assets.xcassets/AppIcon.appiconset/AppIcon_iPhoneApp_60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Demo/FilestackDemo/Assets.xcassets/AppIcon.appiconset/AppIcon_iPhoneApp_60@2x.png -------------------------------------------------------------------------------- /Demo/FilestackDemo/Assets.xcassets/AppIcon.appiconset/AppIcon_iPhoneApp_60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Demo/FilestackDemo/Assets.xcassets/AppIcon.appiconset/AppIcon_iPhoneApp_60@3x.png -------------------------------------------------------------------------------- /Demo/FilestackDemo/Assets.xcassets/AppIcon.appiconset/AppIcon_iPhoneSettings_29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Demo/FilestackDemo/Assets.xcassets/AppIcon.appiconset/AppIcon_iPhoneSettings_29.png -------------------------------------------------------------------------------- /Demo/FilestackDemo/Assets.xcassets/AppIcon.appiconset/AppIcon_iPhoneSettings_29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Demo/FilestackDemo/Assets.xcassets/AppIcon.appiconset/AppIcon_iPhoneSettings_29@2x.png -------------------------------------------------------------------------------- /Demo/FilestackDemo/Assets.xcassets/AppIcon.appiconset/AppIcon_iPhoneSettings_29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Demo/FilestackDemo/Assets.xcassets/AppIcon.appiconset/AppIcon_iPhoneSettings_29@3x.png -------------------------------------------------------------------------------- /Demo/FilestackDemo/Assets.xcassets/AppIcon.appiconset/AppIcon_iPhoneSpotlight_40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Demo/FilestackDemo/Assets.xcassets/AppIcon.appiconset/AppIcon_iPhoneSpotlight_40@2x.png -------------------------------------------------------------------------------- /Demo/FilestackDemo/Assets.xcassets/AppIcon.appiconset/AppIcon_iPhoneSpotlight_40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Demo/FilestackDemo/Assets.xcassets/AppIcon.appiconset/AppIcon_iPhoneSpotlight_40@3x.png -------------------------------------------------------------------------------- /Demo/FilestackDemo/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Demo/FilestackDemo/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Demo/FilestackDemo/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Demo/FilestackDemo/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Demo/FilestackDemo/Assets.xcassets/icon-custom-source.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Demo/FilestackDemo/Assets.xcassets/icon-custom-source.imageset/Contents.json -------------------------------------------------------------------------------- /Demo/FilestackDemo/Assets.xcassets/icon-custom-source.imageset/icon-unsplash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Demo/FilestackDemo/Assets.xcassets/icon-custom-source.imageset/icon-unsplash.png -------------------------------------------------------------------------------- /Demo/FilestackDemo/Assets.xcassets/icon-custom-source.imageset/icon-unsplash@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Demo/FilestackDemo/Assets.xcassets/icon-custom-source.imageset/icon-unsplash@2x.png -------------------------------------------------------------------------------- /Demo/FilestackDemo/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Demo/FilestackDemo/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Demo/FilestackDemo/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Demo/FilestackDemo/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Demo/FilestackDemo/Custom Source Providers/Cells/CustomCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Demo/FilestackDemo/Custom Source Providers/Cells/CustomCell.swift -------------------------------------------------------------------------------- /Demo/FilestackDemo/Custom Source Providers/View Controllers/MyCustomSourceProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Demo/FilestackDemo/Custom Source Providers/View Controllers/MyCustomSourceProvider.swift -------------------------------------------------------------------------------- /Demo/FilestackDemo/Demo Content/demo1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Demo/FilestackDemo/Demo Content/demo1.jpg -------------------------------------------------------------------------------- /Demo/FilestackDemo/Demo Content/demo2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Demo/FilestackDemo/Demo Content/demo2.jpg -------------------------------------------------------------------------------- /Demo/FilestackDemo/Demo Content/demo3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Demo/FilestackDemo/Demo Content/demo3.jpg -------------------------------------------------------------------------------- /Demo/FilestackDemo/Demo Content/demo4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Demo/FilestackDemo/Demo Content/demo4.jpg -------------------------------------------------------------------------------- /Demo/FilestackDemo/Demo Content/demo5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Demo/FilestackDemo/Demo Content/demo5.jpg -------------------------------------------------------------------------------- /Demo/FilestackDemo/Extensions/UIViewController+PresentAlert.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Demo/FilestackDemo/Extensions/UIViewController+PresentAlert.swift -------------------------------------------------------------------------------- /Demo/FilestackDemo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Demo/FilestackDemo/Info.plist -------------------------------------------------------------------------------- /Demo/FilestackDemo/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Demo/FilestackDemo/ViewController.swift -------------------------------------------------------------------------------- /Filestack.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Filestack.podspec -------------------------------------------------------------------------------- /Filestack.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Filestack.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Filestack.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Filestack.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Filestack.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Filestack.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Filestack.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Filestack.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /Filestack.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Filestack.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved -------------------------------------------------------------------------------- /Filestack.xcodeproj/xcshareddata/xcschemes/Filestack.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Filestack.xcodeproj/xcshareddata/xcschemes/Filestack.xcscheme -------------------------------------------------------------------------------- /Filestack.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Filestack.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Filestack.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Filestack.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Filestack.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Filestack.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /Filestack.xcworkspace/xcshareddata/swiftpm/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Filestack.xcworkspace/xcshareddata/swiftpm/Package.resolved -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/LICENSE -------------------------------------------------------------------------------- /Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Package.resolved -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/README.md -------------------------------------------------------------------------------- /Sources/Filestack/Filestack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Sources/Filestack/Filestack.h -------------------------------------------------------------------------------- /Sources/Filestack/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Sources/Filestack/Info.plist -------------------------------------------------------------------------------- /Sources/Filestack/Internal/Bundle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Sources/Filestack/Internal/Bundle.swift -------------------------------------------------------------------------------- /Sources/Filestack/Internal/Constants.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Sources/Filestack/Internal/Constants.swift -------------------------------------------------------------------------------- /Sources/Filestack/Internal/Extensions/AVAsset+Export.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Sources/Filestack/Internal/Extensions/AVAsset+Export.swift -------------------------------------------------------------------------------- /Sources/Filestack/Internal/Extensions/Array+SafeIndex.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Sources/Filestack/Internal/Extensions/Array+SafeIndex.swift -------------------------------------------------------------------------------- /Sources/Filestack/Internal/Extensions/Data+JSON.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Sources/Filestack/Internal/Extensions/Data+JSON.swift -------------------------------------------------------------------------------- /Sources/Filestack/Internal/Extensions/ImageEdition/CGPoint+Distance.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Sources/Filestack/Internal/Extensions/ImageEdition/CGPoint+Distance.swift -------------------------------------------------------------------------------- /Sources/Filestack/Internal/Extensions/ImageEdition/CGRect+Scale.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Sources/Filestack/Internal/Extensions/ImageEdition/CGRect+Scale.swift -------------------------------------------------------------------------------- /Sources/Filestack/Internal/Extensions/ImageEdition/UIImage+CIImageTransformations.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Sources/Filestack/Internal/Extensions/ImageEdition/UIImage+CIImageTransformations.swift -------------------------------------------------------------------------------- /Sources/Filestack/Internal/Extensions/ImageEdition/UIImage+Rect.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Sources/Filestack/Internal/Extensions/ImageEdition/UIImage+Rect.swift -------------------------------------------------------------------------------- /Sources/Filestack/Internal/Extensions/ImageEdition/UIImage+Sanitize.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Sources/Filestack/Internal/Extensions/ImageEdition/UIImage+Sanitize.swift -------------------------------------------------------------------------------- /Sources/Filestack/Internal/Extensions/ImageURLExportPreset+asImagePickerControllerImageURLExportPreset.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Sources/Filestack/Internal/Extensions/ImageURLExportPreset+asImagePickerControllerImageURLExportPreset.swift -------------------------------------------------------------------------------- /Sources/Filestack/Internal/Extensions/Math+Clamp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Sources/Filestack/Internal/Extensions/Math+Clamp.swift -------------------------------------------------------------------------------- /Sources/Filestack/Internal/Extensions/String+UTI.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Sources/Filestack/Internal/Extensions/String+UTI.swift -------------------------------------------------------------------------------- /Sources/Filestack/Internal/Extensions/UICollectionView+Reusable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Sources/Filestack/Internal/Extensions/UICollectionView+Reusable.swift -------------------------------------------------------------------------------- /Sources/Filestack/Internal/Extensions/UIColor+Bundle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Sources/Filestack/Internal/Extensions/UIColor+Bundle.swift -------------------------------------------------------------------------------- /Sources/Filestack/Internal/Extensions/UIColor+Predefined.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Sources/Filestack/Internal/Extensions/UIColor+Predefined.swift -------------------------------------------------------------------------------- /Sources/Filestack/Internal/Extensions/UIImage+Bundle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Sources/Filestack/Internal/Extensions/UIImage+Bundle.swift -------------------------------------------------------------------------------- /Sources/Filestack/Internal/Extensions/UIImage+Export.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Sources/Filestack/Internal/Extensions/UIImage+Export.swift -------------------------------------------------------------------------------- /Sources/Filestack/Internal/Extensions/UIImage+HEIC.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Sources/Filestack/Internal/Extensions/UIImage+HEIC.swift -------------------------------------------------------------------------------- /Sources/Filestack/Internal/Extensions/UIImage+Resized.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Sources/Filestack/Internal/Extensions/UIImage+Resized.swift -------------------------------------------------------------------------------- /Sources/Filestack/Internal/Extensions/UIImage+Write.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Sources/Filestack/Internal/Extensions/UIImage+Write.swift -------------------------------------------------------------------------------- /Sources/Filestack/Internal/Extensions/UIView+Constraints.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Sources/Filestack/Internal/Extensions/UIView+Constraints.swift -------------------------------------------------------------------------------- /Sources/Filestack/Internal/Extensions/URL+Copy.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Sources/Filestack/Internal/Extensions/URL+Copy.swift -------------------------------------------------------------------------------- /Sources/Filestack/Internal/Extensions/URL+IsDirectory.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Sources/Filestack/Internal/Extensions/URL+IsDirectory.swift -------------------------------------------------------------------------------- /Sources/Filestack/Internal/Extensions/URL+Move.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Sources/Filestack/Internal/Extensions/URL+Move.swift -------------------------------------------------------------------------------- /Sources/Filestack/Internal/Extensions/URLSession+FilestackDefault.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Sources/Filestack/Internal/Extensions/URLSession+FilestackDefault.swift -------------------------------------------------------------------------------- /Sources/Filestack/Internal/Extractors/URLExtractor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Sources/Filestack/Internal/Extractors/URLExtractor.swift -------------------------------------------------------------------------------- /Sources/Filestack/Internal/Extractors/UploadableExtractor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Sources/Filestack/Internal/Extractors/UploadableExtractor.swift -------------------------------------------------------------------------------- /Sources/Filestack/Internal/Formatters/DurationNumberFormatter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Sources/Filestack/Internal/Formatters/DurationNumberFormatter.swift -------------------------------------------------------------------------------- /Sources/Filestack/Internal/Operations/AssetURLExtractorOperation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Sources/Filestack/Internal/Operations/AssetURLExtractorOperation.swift -------------------------------------------------------------------------------- /Sources/Filestack/Internal/Protocols/CloudRequest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Sources/Filestack/Internal/Protocols/CloudRequest.swift -------------------------------------------------------------------------------- /Sources/Filestack/Internal/Requests/FolderListRequest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Sources/Filestack/Internal/Requests/FolderListRequest.swift -------------------------------------------------------------------------------- /Sources/Filestack/Internal/Requests/LogoutRequest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Sources/Filestack/Internal/Requests/LogoutRequest.swift -------------------------------------------------------------------------------- /Sources/Filestack/Internal/Requests/PrefetchRequest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Sources/Filestack/Internal/Requests/PrefetchRequest.swift -------------------------------------------------------------------------------- /Sources/Filestack/Internal/Requests/StoreRequest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Sources/Filestack/Internal/Requests/StoreRequest.swift -------------------------------------------------------------------------------- /Sources/Filestack/Internal/Services/CloudService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Sources/Filestack/Internal/Services/CloudService.swift -------------------------------------------------------------------------------- /Sources/Filestack/Internal/TrackingProgress.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Sources/Filestack/Internal/TrackingProgress.swift -------------------------------------------------------------------------------- /Sources/Filestack/Public/CompletionHandlers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Sources/Filestack/Public/CompletionHandlers.swift -------------------------------------------------------------------------------- /Sources/Filestack/Public/Enums/ClientError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Sources/Filestack/Public/Enums/ClientError.swift -------------------------------------------------------------------------------- /Sources/Filestack/Public/Enums/CloudProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Sources/Filestack/Public/Enums/CloudProvider.swift -------------------------------------------------------------------------------- /Sources/Filestack/Public/Enums/ImageURLExportPreset.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Sources/Filestack/Public/Enums/ImageURLExportPreset.swift -------------------------------------------------------------------------------- /Sources/Filestack/Public/Enums/PhotosPickerFilter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Sources/Filestack/Public/Enums/PhotosPickerFilter.swift -------------------------------------------------------------------------------- /Sources/Filestack/Public/Enums/PickerBehavior.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Sources/Filestack/Public/Enums/PickerBehavior.swift -------------------------------------------------------------------------------- /Sources/Filestack/Public/Extensions/Client+Deprecated.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Sources/Filestack/Public/Extensions/Client+Deprecated.swift -------------------------------------------------------------------------------- /Sources/Filestack/Public/Extensions/Client+ObjC.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Sources/Filestack/Public/Extensions/Client+ObjC.swift -------------------------------------------------------------------------------- /Sources/Filestack/Public/Models/Client.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Sources/Filestack/Public/Models/Client.swift -------------------------------------------------------------------------------- /Sources/Filestack/Public/Models/Config.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Sources/Filestack/Public/Models/Config.swift -------------------------------------------------------------------------------- /Sources/Filestack/Public/Responses/CloudResponse.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Sources/Filestack/Public/Responses/CloudResponse.swift -------------------------------------------------------------------------------- /Sources/Filestack/Public/Responses/FolderListResponse.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Sources/Filestack/Public/Responses/FolderListResponse.swift -------------------------------------------------------------------------------- /Sources/Filestack/Public/Responses/LogoutResponse.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Sources/Filestack/Public/Responses/LogoutResponse.swift -------------------------------------------------------------------------------- /Sources/Filestack/Public/Responses/PrefetchResponse.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Sources/Filestack/Public/Responses/PrefetchResponse.swift -------------------------------------------------------------------------------- /Sources/Filestack/Public/Responses/StoreResponse.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Sources/Filestack/Public/Responses/StoreResponse.swift -------------------------------------------------------------------------------- /Sources/Filestack/Resources/Colors.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Sources/Filestack/Resources/Colors.xcassets/Contents.json -------------------------------------------------------------------------------- /Sources/Filestack/Resources/Colors.xcassets/SelectionCellBorderColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Sources/Filestack/Resources/Colors.xcassets/SelectionCellBorderColor.colorset/Contents.json -------------------------------------------------------------------------------- /Sources/Filestack/Resources/Icons.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Sources/Filestack/Resources/Icons.xcassets/Contents.json -------------------------------------------------------------------------------- /Sources/Filestack/Resources/Icons.xcassets/clear-pattern.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Sources/Filestack/Resources/Icons.xcassets/clear-pattern.imageset/Contents.json -------------------------------------------------------------------------------- /Sources/Filestack/Resources/Icons.xcassets/clear-pattern.imageset/clear-pattern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Sources/Filestack/Resources/Icons.xcassets/clear-pattern.imageset/clear-pattern.png -------------------------------------------------------------------------------- /Sources/Filestack/Resources/Icons.xcassets/file.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Sources/Filestack/Resources/Icons.xcassets/file.imageset/Contents.json -------------------------------------------------------------------------------- /Sources/Filestack/Resources/Icons.xcassets/file.imageset/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Sources/Filestack/Resources/Icons.xcassets/file.imageset/file.png -------------------------------------------------------------------------------- /Sources/Filestack/Resources/Icons.xcassets/file.imageset/file@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Sources/Filestack/Resources/Icons.xcassets/file.imageset/file@2x.png -------------------------------------------------------------------------------- /Sources/Filestack/Resources/Icons.xcassets/icon-box.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Sources/Filestack/Resources/Icons.xcassets/icon-box.imageset/Contents.json -------------------------------------------------------------------------------- /Sources/Filestack/Resources/Icons.xcassets/icon-box.imageset/icon-box.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Sources/Filestack/Resources/Icons.xcassets/icon-box.imageset/icon-box.png -------------------------------------------------------------------------------- /Sources/Filestack/Resources/Icons.xcassets/icon-box.imageset/icon-box@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Sources/Filestack/Resources/Icons.xcassets/icon-box.imageset/icon-box@2x.png -------------------------------------------------------------------------------- /Sources/Filestack/Resources/Icons.xcassets/icon-camera.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Sources/Filestack/Resources/Icons.xcassets/icon-camera.imageset/Contents.json -------------------------------------------------------------------------------- /Sources/Filestack/Resources/Icons.xcassets/icon-camera.imageset/icon-camera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Sources/Filestack/Resources/Icons.xcassets/icon-camera.imageset/icon-camera.png -------------------------------------------------------------------------------- /Sources/Filestack/Resources/Icons.xcassets/icon-camera.imageset/icon-camera@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Sources/Filestack/Resources/Icons.xcassets/icon-camera.imageset/icon-camera@2x.png -------------------------------------------------------------------------------- /Sources/Filestack/Resources/Icons.xcassets/icon-circle.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Sources/Filestack/Resources/Icons.xcassets/icon-circle.imageset/Contents.json -------------------------------------------------------------------------------- /Sources/Filestack/Resources/Icons.xcassets/icon-circle.imageset/circle_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Sources/Filestack/Resources/Icons.xcassets/icon-circle.imageset/circle_icon.png -------------------------------------------------------------------------------- /Sources/Filestack/Resources/Icons.xcassets/icon-clouddrive.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Sources/Filestack/Resources/Icons.xcassets/icon-clouddrive.imageset/Contents.json -------------------------------------------------------------------------------- /Sources/Filestack/Resources/Icons.xcassets/icon-clouddrive.imageset/icon-clouddrive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Sources/Filestack/Resources/Icons.xcassets/icon-clouddrive.imageset/icon-clouddrive.png -------------------------------------------------------------------------------- /Sources/Filestack/Resources/Icons.xcassets/icon-clouddrive.imageset/icon-clouddrive@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Sources/Filestack/Resources/Icons.xcassets/icon-clouddrive.imageset/icon-clouddrive@2x.png -------------------------------------------------------------------------------- /Sources/Filestack/Resources/Icons.xcassets/icon-crop.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Sources/Filestack/Resources/Icons.xcassets/icon-crop.imageset/Contents.json -------------------------------------------------------------------------------- /Sources/Filestack/Resources/Icons.xcassets/icon-crop.imageset/crop_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Sources/Filestack/Resources/Icons.xcassets/icon-crop.imageset/crop_icon.png -------------------------------------------------------------------------------- /Sources/Filestack/Resources/Icons.xcassets/icon-customsource.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Sources/Filestack/Resources/Icons.xcassets/icon-customsource.imageset/Contents.json -------------------------------------------------------------------------------- /Sources/Filestack/Resources/Icons.xcassets/icon-customsource.imageset/icon-customsource.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Sources/Filestack/Resources/Icons.xcassets/icon-customsource.imageset/icon-customsource.png -------------------------------------------------------------------------------- /Sources/Filestack/Resources/Icons.xcassets/icon-customsource.imageset/icon-customsource@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Sources/Filestack/Resources/Icons.xcassets/icon-customsource.imageset/icon-customsource@2x.png -------------------------------------------------------------------------------- /Sources/Filestack/Resources/Icons.xcassets/icon-documents.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Sources/Filestack/Resources/Icons.xcassets/icon-documents.imageset/Contents.json -------------------------------------------------------------------------------- /Sources/Filestack/Resources/Icons.xcassets/icon-documents.imageset/documents.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Sources/Filestack/Resources/Icons.xcassets/icon-documents.imageset/documents.png -------------------------------------------------------------------------------- /Sources/Filestack/Resources/Icons.xcassets/icon-documents.imageset/documents@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Sources/Filestack/Resources/Icons.xcassets/icon-documents.imageset/documents@2x.png -------------------------------------------------------------------------------- /Sources/Filestack/Resources/Icons.xcassets/icon-dropbox.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Sources/Filestack/Resources/Icons.xcassets/icon-dropbox.imageset/Contents.json -------------------------------------------------------------------------------- /Sources/Filestack/Resources/Icons.xcassets/icon-dropbox.imageset/icon-dropbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Sources/Filestack/Resources/Icons.xcassets/icon-dropbox.imageset/icon-dropbox.png -------------------------------------------------------------------------------- /Sources/Filestack/Resources/Icons.xcassets/icon-dropbox.imageset/icon-dropbox@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Sources/Filestack/Resources/Icons.xcassets/icon-dropbox.imageset/icon-dropbox@2x.png -------------------------------------------------------------------------------- /Sources/Filestack/Resources/Icons.xcassets/icon-edit.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Sources/Filestack/Resources/Icons.xcassets/icon-edit.imageset/Contents.json -------------------------------------------------------------------------------- /Sources/Filestack/Resources/Icons.xcassets/icon-edit.imageset/icon-pencil.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Sources/Filestack/Resources/Icons.xcassets/icon-edit.imageset/icon-pencil.png -------------------------------------------------------------------------------- /Sources/Filestack/Resources/Icons.xcassets/icon-facebook.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Sources/Filestack/Resources/Icons.xcassets/icon-facebook.imageset/Contents.json -------------------------------------------------------------------------------- /Sources/Filestack/Resources/Icons.xcassets/icon-facebook.imageset/icon-facebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Sources/Filestack/Resources/Icons.xcassets/icon-facebook.imageset/icon-facebook.png -------------------------------------------------------------------------------- /Sources/Filestack/Resources/Icons.xcassets/icon-facebook.imageset/icon-facebook@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Sources/Filestack/Resources/Icons.xcassets/icon-facebook.imageset/icon-facebook@2x.png -------------------------------------------------------------------------------- /Sources/Filestack/Resources/Icons.xcassets/icon-file-image.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Sources/Filestack/Resources/Icons.xcassets/icon-file-image.imageset/Contents.json -------------------------------------------------------------------------------- /Sources/Filestack/Resources/Icons.xcassets/icon-file-image.imageset/icon-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Sources/Filestack/Resources/Icons.xcassets/icon-file-image.imageset/icon-image.png -------------------------------------------------------------------------------- /Sources/Filestack/Resources/Icons.xcassets/icon-file-pdf.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Sources/Filestack/Resources/Icons.xcassets/icon-file-pdf.imageset/Contents.json -------------------------------------------------------------------------------- /Sources/Filestack/Resources/Icons.xcassets/icon-file-pdf.imageset/icon-file-pdf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Sources/Filestack/Resources/Icons.xcassets/icon-file-pdf.imageset/icon-file-pdf.png -------------------------------------------------------------------------------- /Sources/Filestack/Resources/Icons.xcassets/icon-file-unknown.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Sources/Filestack/Resources/Icons.xcassets/icon-file-unknown.imageset/Contents.json -------------------------------------------------------------------------------- /Sources/Filestack/Resources/Icons.xcassets/icon-file-unknown.imageset/icon-file-unknown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Sources/Filestack/Resources/Icons.xcassets/icon-file-unknown.imageset/icon-file-unknown.png -------------------------------------------------------------------------------- /Sources/Filestack/Resources/Icons.xcassets/icon-file-video.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Sources/Filestack/Resources/Icons.xcassets/icon-file-video.imageset/Contents.json -------------------------------------------------------------------------------- /Sources/Filestack/Resources/Icons.xcassets/icon-file-video.imageset/icon-video-camera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Sources/Filestack/Resources/Icons.xcassets/icon-file-video.imageset/icon-video-camera.png -------------------------------------------------------------------------------- /Sources/Filestack/Resources/Icons.xcassets/icon-github.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Sources/Filestack/Resources/Icons.xcassets/icon-github.imageset/Contents.json -------------------------------------------------------------------------------- /Sources/Filestack/Resources/Icons.xcassets/icon-github.imageset/icon-github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Sources/Filestack/Resources/Icons.xcassets/icon-github.imageset/icon-github.png -------------------------------------------------------------------------------- /Sources/Filestack/Resources/Icons.xcassets/icon-github.imageset/icon-github@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Sources/Filestack/Resources/Icons.xcassets/icon-github.imageset/icon-github@2x.png -------------------------------------------------------------------------------- /Sources/Filestack/Resources/Icons.xcassets/icon-gmail.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Sources/Filestack/Resources/Icons.xcassets/icon-gmail.imageset/Contents.json -------------------------------------------------------------------------------- /Sources/Filestack/Resources/Icons.xcassets/icon-gmail.imageset/icon-gmail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Sources/Filestack/Resources/Icons.xcassets/icon-gmail.imageset/icon-gmail.png -------------------------------------------------------------------------------- /Sources/Filestack/Resources/Icons.xcassets/icon-gmail.imageset/icon-gmail@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Sources/Filestack/Resources/Icons.xcassets/icon-gmail.imageset/icon-gmail@2x.png -------------------------------------------------------------------------------- /Sources/Filestack/Resources/Icons.xcassets/icon-googledrive.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Sources/Filestack/Resources/Icons.xcassets/icon-googledrive.imageset/Contents.json -------------------------------------------------------------------------------- /Sources/Filestack/Resources/Icons.xcassets/icon-googledrive.imageset/icon-googledrive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Sources/Filestack/Resources/Icons.xcassets/icon-googledrive.imageset/icon-googledrive.png -------------------------------------------------------------------------------- /Sources/Filestack/Resources/Icons.xcassets/icon-googledrive.imageset/icon-googledrive@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Sources/Filestack/Resources/Icons.xcassets/icon-googledrive.imageset/icon-googledrive@2x.png -------------------------------------------------------------------------------- /Sources/Filestack/Resources/Icons.xcassets/icon-grid.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Sources/Filestack/Resources/Icons.xcassets/icon-grid.imageset/Contents.json -------------------------------------------------------------------------------- /Sources/Filestack/Resources/Icons.xcassets/icon-grid.imageset/icon-grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Sources/Filestack/Resources/Icons.xcassets/icon-grid.imageset/icon-grid.png -------------------------------------------------------------------------------- /Sources/Filestack/Resources/Icons.xcassets/icon-grid.imageset/icon-grid@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Sources/Filestack/Resources/Icons.xcassets/icon-grid.imageset/icon-grid@2x.png -------------------------------------------------------------------------------- /Sources/Filestack/Resources/Icons.xcassets/icon-grid.imageset/icon-grid@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Sources/Filestack/Resources/Icons.xcassets/icon-grid.imageset/icon-grid@3x.png -------------------------------------------------------------------------------- /Sources/Filestack/Resources/Icons.xcassets/icon-image.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Sources/Filestack/Resources/Icons.xcassets/icon-image.imageset/Contents.json -------------------------------------------------------------------------------- /Sources/Filestack/Resources/Icons.xcassets/icon-image.imageset/icon-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Sources/Filestack/Resources/Icons.xcassets/icon-image.imageset/icon-image.png -------------------------------------------------------------------------------- /Sources/Filestack/Resources/Icons.xcassets/icon-instagram.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Sources/Filestack/Resources/Icons.xcassets/icon-instagram.imageset/Contents.json -------------------------------------------------------------------------------- /Sources/Filestack/Resources/Icons.xcassets/icon-instagram.imageset/icon-instagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Sources/Filestack/Resources/Icons.xcassets/icon-instagram.imageset/icon-instagram.png -------------------------------------------------------------------------------- /Sources/Filestack/Resources/Icons.xcassets/icon-instagram.imageset/icon-instagram@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Sources/Filestack/Resources/Icons.xcassets/icon-instagram.imageset/icon-instagram@2x.png -------------------------------------------------------------------------------- /Sources/Filestack/Resources/Icons.xcassets/icon-list.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Sources/Filestack/Resources/Icons.xcassets/icon-list.imageset/Contents.json -------------------------------------------------------------------------------- /Sources/Filestack/Resources/Icons.xcassets/icon-list.imageset/icon-list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Sources/Filestack/Resources/Icons.xcassets/icon-list.imageset/icon-list.png -------------------------------------------------------------------------------- /Sources/Filestack/Resources/Icons.xcassets/icon-list.imageset/icon-list@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Sources/Filestack/Resources/Icons.xcassets/icon-list.imageset/icon-list@2x.png -------------------------------------------------------------------------------- /Sources/Filestack/Resources/Icons.xcassets/icon-list.imageset/icon-list@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Sources/Filestack/Resources/Icons.xcassets/icon-list.imageset/icon-list@3x.png -------------------------------------------------------------------------------- /Sources/Filestack/Resources/Icons.xcassets/icon-logout.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Sources/Filestack/Resources/Icons.xcassets/icon-logout.imageset/Contents.json -------------------------------------------------------------------------------- /Sources/Filestack/Resources/Icons.xcassets/icon-logout.imageset/icon-logout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Sources/Filestack/Resources/Icons.xcassets/icon-logout.imageset/icon-logout.png -------------------------------------------------------------------------------- /Sources/Filestack/Resources/Icons.xcassets/icon-logout.imageset/icon-logout@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Sources/Filestack/Resources/Icons.xcassets/icon-logout.imageset/icon-logout@2x.png -------------------------------------------------------------------------------- /Sources/Filestack/Resources/Icons.xcassets/icon-logout.imageset/icon-logout@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Sources/Filestack/Resources/Icons.xcassets/icon-logout.imageset/icon-logout@3x.png -------------------------------------------------------------------------------- /Sources/Filestack/Resources/Icons.xcassets/icon-onedrive.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Sources/Filestack/Resources/Icons.xcassets/icon-onedrive.imageset/Contents.json -------------------------------------------------------------------------------- /Sources/Filestack/Resources/Icons.xcassets/icon-onedrive.imageset/icon-skydrive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Sources/Filestack/Resources/Icons.xcassets/icon-onedrive.imageset/icon-skydrive.png -------------------------------------------------------------------------------- /Sources/Filestack/Resources/Icons.xcassets/icon-onedrive.imageset/icon-skydrive@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Sources/Filestack/Resources/Icons.xcassets/icon-onedrive.imageset/icon-skydrive@2x.png -------------------------------------------------------------------------------- /Sources/Filestack/Resources/Icons.xcassets/icon-photolibrary.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Sources/Filestack/Resources/Icons.xcassets/icon-photolibrary.imageset/Contents.json -------------------------------------------------------------------------------- /Sources/Filestack/Resources/Icons.xcassets/icon-photolibrary.imageset/icon-albums.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Sources/Filestack/Resources/Icons.xcassets/icon-photolibrary.imageset/icon-albums.png -------------------------------------------------------------------------------- /Sources/Filestack/Resources/Icons.xcassets/icon-photolibrary.imageset/icon-albums@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Sources/Filestack/Resources/Icons.xcassets/icon-photolibrary.imageset/icon-albums@2x.png -------------------------------------------------------------------------------- /Sources/Filestack/Resources/Icons.xcassets/icon-picasa.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Sources/Filestack/Resources/Icons.xcassets/icon-picasa.imageset/Contents.json -------------------------------------------------------------------------------- /Sources/Filestack/Resources/Icons.xcassets/icon-picasa.imageset/icon-picasa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Sources/Filestack/Resources/Icons.xcassets/icon-picasa.imageset/icon-picasa.png -------------------------------------------------------------------------------- /Sources/Filestack/Resources/Icons.xcassets/icon-picasa.imageset/icon-picasa@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Sources/Filestack/Resources/Icons.xcassets/icon-picasa.imageset/icon-picasa@2x.png -------------------------------------------------------------------------------- /Sources/Filestack/Resources/Icons.xcassets/icon-redo.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Sources/Filestack/Resources/Icons.xcassets/icon-redo.imageset/Contents.json -------------------------------------------------------------------------------- /Sources/Filestack/Resources/Icons.xcassets/icon-redo.imageset/redo_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Sources/Filestack/Resources/Icons.xcassets/icon-redo.imageset/redo_icon.png -------------------------------------------------------------------------------- /Sources/Filestack/Resources/Icons.xcassets/icon-rotate.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Sources/Filestack/Resources/Icons.xcassets/icon-rotate.imageset/Contents.json -------------------------------------------------------------------------------- /Sources/Filestack/Resources/Icons.xcassets/icon-rotate.imageset/rotate_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Sources/Filestack/Resources/Icons.xcassets/icon-rotate.imageset/rotate_icon.png -------------------------------------------------------------------------------- /Sources/Filestack/Resources/Icons.xcassets/icon-selected.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Sources/Filestack/Resources/Icons.xcassets/icon-selected.imageset/Contents.json -------------------------------------------------------------------------------- /Sources/Filestack/Resources/Icons.xcassets/icon-selected.imageset/photoIcon-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Sources/Filestack/Resources/Icons.xcassets/icon-selected.imageset/photoIcon-1.png -------------------------------------------------------------------------------- /Sources/Filestack/Resources/Icons.xcassets/icon-selected.imageset/photoIcon-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Sources/Filestack/Resources/Icons.xcassets/icon-selected.imageset/photoIcon-2.png -------------------------------------------------------------------------------- /Sources/Filestack/Resources/Icons.xcassets/icon-selected.imageset/photoIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Sources/Filestack/Resources/Icons.xcassets/icon-selected.imageset/photoIcon.png -------------------------------------------------------------------------------- /Sources/Filestack/Resources/Icons.xcassets/icon-tick.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Sources/Filestack/Resources/Icons.xcassets/icon-tick.imageset/Contents.json -------------------------------------------------------------------------------- /Sources/Filestack/Resources/Icons.xcassets/icon-tick.imageset/checkmark-solid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Sources/Filestack/Resources/Icons.xcassets/icon-tick.imageset/checkmark-solid.png -------------------------------------------------------------------------------- /Sources/Filestack/Resources/Icons.xcassets/icon-undo.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Sources/Filestack/Resources/Icons.xcassets/icon-undo.imageset/Contents.json -------------------------------------------------------------------------------- /Sources/Filestack/Resources/Icons.xcassets/icon-undo.imageset/undo_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Sources/Filestack/Resources/Icons.xcassets/icon-undo.imageset/undo_icon.png -------------------------------------------------------------------------------- /Sources/Filestack/Resources/Icons.xcassets/icon-unsplash.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Sources/Filestack/Resources/Icons.xcassets/icon-unsplash.imageset/Contents.json -------------------------------------------------------------------------------- /Sources/Filestack/Resources/Icons.xcassets/icon-unsplash.imageset/icon-unsplash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Sources/Filestack/Resources/Icons.xcassets/icon-unsplash.imageset/icon-unsplash.png -------------------------------------------------------------------------------- /Sources/Filestack/Resources/Icons.xcassets/icon-unsplash.imageset/icon-unsplash@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Sources/Filestack/Resources/Icons.xcassets/icon-unsplash.imageset/icon-unsplash@2x.png -------------------------------------------------------------------------------- /Sources/Filestack/Resources/Icons.xcassets/icon-upload.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Sources/Filestack/Resources/Icons.xcassets/icon-upload.imageset/Contents.json -------------------------------------------------------------------------------- /Sources/Filestack/Resources/Icons.xcassets/icon-upload.imageset/icon_upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Sources/Filestack/Resources/Icons.xcassets/icon-upload.imageset/icon_upload.png -------------------------------------------------------------------------------- /Sources/Filestack/Resources/Icons.xcassets/placeholder.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Sources/Filestack/Resources/Icons.xcassets/placeholder.imageset/Contents.json -------------------------------------------------------------------------------- /Sources/Filestack/Resources/Icons.xcassets/placeholder.imageset/placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Sources/Filestack/Resources/Icons.xcassets/placeholder.imageset/placeholder.png -------------------------------------------------------------------------------- /Sources/Filestack/Resources/PhotoPicker.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Sources/Filestack/Resources/PhotoPicker.storyboard -------------------------------------------------------------------------------- /Sources/Filestack/Resources/Picker.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Sources/Filestack/Resources/Picker.storyboard -------------------------------------------------------------------------------- /Sources/Filestack/UI/Internal/Collection View Cells/ActivityIndicatorCollectionViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Sources/Filestack/UI/Internal/Collection View Cells/ActivityIndicatorCollectionViewCell.swift -------------------------------------------------------------------------------- /Sources/Filestack/UI/Internal/Collection View Cells/CloudItemCollectionViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Sources/Filestack/UI/Internal/Collection View Cells/CloudItemCollectionViewCell.swift -------------------------------------------------------------------------------- /Sources/Filestack/UI/Internal/Controllers/CloudSourceCollectionViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Sources/Filestack/UI/Internal/Controllers/CloudSourceCollectionViewController.swift -------------------------------------------------------------------------------- /Sources/Filestack/UI/Internal/Controllers/CloudSourceTabBarController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Sources/Filestack/UI/Internal/Controllers/CloudSourceTabBarController.swift -------------------------------------------------------------------------------- /Sources/Filestack/UI/Internal/Controllers/CloudSourceTableViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Sources/Filestack/UI/Internal/Controllers/CloudSourceTableViewController.swift -------------------------------------------------------------------------------- /Sources/Filestack/UI/Internal/Controllers/CustomPickerUploadController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Sources/Filestack/UI/Internal/Controllers/CustomPickerUploadController.swift -------------------------------------------------------------------------------- /Sources/Filestack/UI/Internal/Controllers/DocumentPickerUploadController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Sources/Filestack/UI/Internal/Controllers/DocumentPickerUploadController.swift -------------------------------------------------------------------------------- /Sources/Filestack/UI/Internal/Controllers/ImagePickerUploadController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Sources/Filestack/UI/Internal/Controllers/ImagePickerUploadController.swift -------------------------------------------------------------------------------- /Sources/Filestack/UI/Internal/Controllers/MonitorViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Sources/Filestack/UI/Internal/Controllers/MonitorViewController.swift -------------------------------------------------------------------------------- /Sources/Filestack/UI/Internal/Controllers/SourceTableViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Sources/Filestack/UI/Internal/Controllers/SourceTableViewController.swift -------------------------------------------------------------------------------- /Sources/Filestack/UI/Internal/Controllers/URLPickerUploadController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Sources/Filestack/UI/Internal/Controllers/URLPickerUploadController.swift -------------------------------------------------------------------------------- /Sources/Filestack/UI/Internal/Enums/CloudSourceViewType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Sources/Filestack/UI/Internal/Enums/CloudSourceViewType.swift -------------------------------------------------------------------------------- /Sources/Filestack/UI/Internal/Extensions/Scene+Defaults.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Sources/Filestack/UI/Internal/Extensions/Scene+Defaults.swift -------------------------------------------------------------------------------- /Sources/Filestack/UI/Internal/Extensions/Storyboard+Scenes.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Sources/Filestack/UI/Internal/Extensions/Storyboard+Scenes.swift -------------------------------------------------------------------------------- /Sources/Filestack/UI/Internal/Extensions/UIImage+Squared.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Sources/Filestack/UI/Internal/Extensions/UIImage+Squared.swift -------------------------------------------------------------------------------- /Sources/Filestack/UI/Internal/Extensions/UserDefaults+State.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Sources/Filestack/UI/Internal/Extensions/UserDefaults+State.swift -------------------------------------------------------------------------------- /Sources/Filestack/UI/Internal/FlowLayouts/CollectionViewFlowLayout.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Sources/Filestack/UI/Internal/FlowLayouts/CollectionViewFlowLayout.swift -------------------------------------------------------------------------------- /Sources/Filestack/UI/Internal/Models/CloudItem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Sources/Filestack/UI/Internal/Models/CloudItem.swift -------------------------------------------------------------------------------- /Sources/Filestack/UI/Internal/PhotoEditor/EditionController/EditorToolbar.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Sources/Filestack/UI/Internal/PhotoEditor/EditionController/EditorToolbar.swift -------------------------------------------------------------------------------- /Sources/Filestack/UI/Internal/PhotoEditor/EditionController/Enums/ImageEditorCommand.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Sources/Filestack/UI/Internal/PhotoEditor/EditionController/Enums/ImageEditorCommand.swift -------------------------------------------------------------------------------- /Sources/Filestack/UI/Internal/PhotoEditor/EditionController/Handlers/CircleGesturesHandler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Sources/Filestack/UI/Internal/PhotoEditor/EditionController/Handlers/CircleGesturesHandler.swift -------------------------------------------------------------------------------- /Sources/Filestack/UI/Internal/PhotoEditor/EditionController/Handlers/CropGesturesHandler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Sources/Filestack/UI/Internal/PhotoEditor/EditionController/Handlers/CropGesturesHandler.swift -------------------------------------------------------------------------------- /Sources/Filestack/UI/Internal/PhotoEditor/EditionController/ImageEditor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Sources/Filestack/UI/Internal/PhotoEditor/EditionController/ImageEditor.swift -------------------------------------------------------------------------------- /Sources/Filestack/UI/Internal/PhotoEditor/EditionController/Layers/CircleLayer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Sources/Filestack/UI/Internal/PhotoEditor/EditionController/Layers/CircleLayer.swift -------------------------------------------------------------------------------- /Sources/Filestack/UI/Internal/PhotoEditor/EditionController/Layers/CropLayer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Sources/Filestack/UI/Internal/PhotoEditor/EditionController/Layers/CropLayer.swift -------------------------------------------------------------------------------- /Sources/Filestack/UI/Internal/PhotoEditor/EditionController/ViewController/EditorViewController+EditDataSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Sources/Filestack/UI/Internal/PhotoEditor/EditionController/ViewController/EditorViewController+EditDataSource.swift -------------------------------------------------------------------------------- /Sources/Filestack/UI/Internal/PhotoEditor/EditionController/ViewController/EditorViewController+ToolbarDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Sources/Filestack/UI/Internal/PhotoEditor/EditionController/ViewController/EditorViewController+ToolbarDelegate.swift -------------------------------------------------------------------------------- /Sources/Filestack/UI/Internal/PhotoEditor/EditionController/ViewController/EditorViewController+ViewSetup.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Sources/Filestack/UI/Internal/PhotoEditor/EditionController/ViewController/EditorViewController+ViewSetup.swift -------------------------------------------------------------------------------- /Sources/Filestack/UI/Internal/PhotoEditor/EditionController/ViewController/EditorViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Sources/Filestack/UI/Internal/PhotoEditor/EditionController/ViewController/EditorViewController.swift -------------------------------------------------------------------------------- /Sources/Filestack/UI/Internal/PhotoEditor/EditionController/Views/ImageEditorView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Sources/Filestack/UI/Internal/PhotoEditor/EditionController/Views/ImageEditorView.swift -------------------------------------------------------------------------------- /Sources/Filestack/UI/Internal/PhotoEditor/SelectionList/SelectableElement.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Sources/Filestack/UI/Internal/PhotoEditor/SelectionList/SelectableElement.swift -------------------------------------------------------------------------------- /Sources/Filestack/UI/Internal/PhotoEditor/SelectionList/SelectionCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Sources/Filestack/UI/Internal/PhotoEditor/SelectionList/SelectionCell.swift -------------------------------------------------------------------------------- /Sources/Filestack/UI/Internal/PhotoEditor/SelectionList/SelectionListViewController+FlowLayout.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Sources/Filestack/UI/Internal/PhotoEditor/SelectionList/SelectionListViewController+FlowLayout.swift -------------------------------------------------------------------------------- /Sources/Filestack/UI/Internal/PhotoEditor/SelectionList/SelectionListViewController+UICollectionView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Sources/Filestack/UI/Internal/PhotoEditor/SelectionList/SelectionListViewController+UICollectionView.swift -------------------------------------------------------------------------------- /Sources/Filestack/UI/Internal/PhotoEditor/SelectionList/SelectionListViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Sources/Filestack/UI/Internal/PhotoEditor/SelectionList/SelectionListViewController.swift -------------------------------------------------------------------------------- /Sources/Filestack/UI/Internal/PhotoEditor/SelectionList/Uploadable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Sources/Filestack/UI/Internal/PhotoEditor/SelectionList/Uploadable.swift -------------------------------------------------------------------------------- /Sources/Filestack/UI/Internal/PhotoPicker/AlbumList/AlbumCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Sources/Filestack/UI/Internal/PhotoPicker/AlbumList/AlbumCell.swift -------------------------------------------------------------------------------- /Sources/Filestack/UI/Internal/PhotoPicker/AlbumList/AlbumListViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Sources/Filestack/UI/Internal/PhotoPicker/AlbumList/AlbumListViewController.swift -------------------------------------------------------------------------------- /Sources/Filestack/UI/Internal/PhotoPicker/AssetCollection/AssetCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Sources/Filestack/UI/Internal/PhotoPicker/AssetCollection/AssetCell.swift -------------------------------------------------------------------------------- /Sources/Filestack/UI/Internal/PhotoPicker/AssetCollection/AssetCollectionViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Sources/Filestack/UI/Internal/PhotoPicker/AssetCollection/AssetCollectionViewController.swift -------------------------------------------------------------------------------- /Sources/Filestack/UI/Internal/PhotoPicker/PhotoAlbumRepository.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Sources/Filestack/UI/Internal/PhotoPicker/PhotoAlbumRepository.swift -------------------------------------------------------------------------------- /Sources/Filestack/UI/Internal/PhotoPicker/PhotoPickerController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Sources/Filestack/UI/Internal/PhotoPicker/PhotoPickerController.swift -------------------------------------------------------------------------------- /Sources/Filestack/UI/Internal/PhotoPicker/PhotosExtensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Sources/Filestack/UI/Internal/PhotoPicker/PhotosExtensions.swift -------------------------------------------------------------------------------- /Sources/Filestack/UI/Internal/Protocols/CellDescriptibleSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Sources/Filestack/UI/Internal/Protocols/CellDescriptibleSource.swift -------------------------------------------------------------------------------- /Sources/Filestack/UI/Internal/Protocols/CloudSourceDataSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Sources/Filestack/UI/Internal/Protocols/CloudSourceDataSource.swift -------------------------------------------------------------------------------- /Sources/Filestack/UI/Internal/Protocols/CloudSourceDataSourceConsumer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Sources/Filestack/UI/Internal/Protocols/CloudSourceDataSourceConsumer.swift -------------------------------------------------------------------------------- /Sources/Filestack/UI/Internal/Protocols/Scene.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Sources/Filestack/UI/Internal/Protocols/Scene.swift -------------------------------------------------------------------------------- /Sources/Filestack/UI/Internal/Scenes/CloudSourceBarTabScene.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Sources/Filestack/UI/Internal/Scenes/CloudSourceBarTabScene.swift -------------------------------------------------------------------------------- /Sources/Filestack/UI/Internal/Scenes/PickerNavigationScene.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Sources/Filestack/UI/Internal/Scenes/PickerNavigationScene.swift -------------------------------------------------------------------------------- /Sources/Filestack/UI/Internal/Table View Cells/ActivityIndicatorTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Sources/Filestack/UI/Internal/Table View Cells/ActivityIndicatorTableViewCell.swift -------------------------------------------------------------------------------- /Sources/Filestack/UI/Internal/Table View Cells/CloudItemTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Sources/Filestack/UI/Internal/Table View Cells/CloudItemTableViewCell.swift -------------------------------------------------------------------------------- /Sources/Filestack/UI/Public/Controllers/PickerNavigationController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Sources/Filestack/UI/Public/Controllers/PickerNavigationController.swift -------------------------------------------------------------------------------- /Sources/Filestack/UI/Public/Enums/LocalProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Sources/Filestack/UI/Public/Enums/LocalProvider.swift -------------------------------------------------------------------------------- /Sources/Filestack/UI/Public/Models/CloudSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Sources/Filestack/UI/Public/Models/CloudSource.swift -------------------------------------------------------------------------------- /Sources/Filestack/UI/Public/Models/LocalSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Sources/Filestack/UI/Public/Models/LocalSource.swift -------------------------------------------------------------------------------- /Sources/Filestack/UI/Public/Models/Stylizer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Sources/Filestack/UI/Public/Models/Stylizer.swift -------------------------------------------------------------------------------- /Sources/Filestack/UI/Public/Protocols/SourceProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Sources/Filestack/UI/Public/Protocols/SourceProvider.swift -------------------------------------------------------------------------------- /Sources/Filestack/UI/Public/Protocols/SourceProviderDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Sources/Filestack/UI/Public/Protocols/SourceProviderDelegate.swift -------------------------------------------------------------------------------- /Sources/Filestack/UI/Public/Protocols/StylizerDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/Sources/Filestack/UI/Public/Protocols/StylizerDelegate.swift -------------------------------------------------------------------------------- /Sources/Filestack/VERSION: -------------------------------------------------------------------------------- 1 | ../../VERSION -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 3.0.1 2 | -------------------------------------------------------------------------------- /bin/apply-swiftformat.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/bin/apply-swiftformat.sh -------------------------------------------------------------------------------- /bin/deploy-docs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/bin/deploy-docs.sh -------------------------------------------------------------------------------- /bin/generate-and-deploy-docs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/bin/generate-and-deploy-docs.sh -------------------------------------------------------------------------------- /bin/generate-docs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/bin/generate-docs.sh -------------------------------------------------------------------------------- /bin/set-buildnumber.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/bin/set-buildnumber.sh -------------------------------------------------------------------------------- /bin/set-version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filestack/filestack-ios/HEAD/bin/set-version.sh --------------------------------------------------------------------------------