├── .github └── workflows │ └── swift.yml ├── .gitignore ├── Demo └── FastSpringCheckoutDemo │ ├── FastSpringCheckoutDemo.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist │ └── FastSpringCheckoutDemo │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── Base.lproj │ └── MainMenu.xib │ ├── Configuration.swift │ ├── FastSpringCheckoutDemo.entitlements │ └── Info.plist ├── FastSpringCheckoutDemo.xcworkspace ├── contents.xcworkspacedata └── xcshareddata │ └── IDEWorkspaceChecks.plist ├── LICENSE ├── Package.swift ├── README.md └── Sources └── FSCheckoutSheet ├── CheckoutPageHTML.swift ├── FSCheckoutSheet.swift └── FindLicenseJavaScript.swift /.github/workflows/swift.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeeZide/FSCheckoutSheet/HEAD/.github/workflows/swift.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeeZide/FSCheckoutSheet/HEAD/.gitignore -------------------------------------------------------------------------------- /Demo/FastSpringCheckoutDemo/FastSpringCheckoutDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeeZide/FSCheckoutSheet/HEAD/Demo/FastSpringCheckoutDemo/FastSpringCheckoutDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Demo/FastSpringCheckoutDemo/FastSpringCheckoutDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeeZide/FSCheckoutSheet/HEAD/Demo/FastSpringCheckoutDemo/FastSpringCheckoutDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Demo/FastSpringCheckoutDemo/FastSpringCheckoutDemo.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeeZide/FSCheckoutSheet/HEAD/Demo/FastSpringCheckoutDemo/FastSpringCheckoutDemo.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Demo/FastSpringCheckoutDemo/FastSpringCheckoutDemo/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeeZide/FSCheckoutSheet/HEAD/Demo/FastSpringCheckoutDemo/FastSpringCheckoutDemo/AppDelegate.swift -------------------------------------------------------------------------------- /Demo/FastSpringCheckoutDemo/FastSpringCheckoutDemo/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeeZide/FSCheckoutSheet/HEAD/Demo/FastSpringCheckoutDemo/FastSpringCheckoutDemo/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Demo/FastSpringCheckoutDemo/FastSpringCheckoutDemo/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeeZide/FSCheckoutSheet/HEAD/Demo/FastSpringCheckoutDemo/FastSpringCheckoutDemo/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Demo/FastSpringCheckoutDemo/FastSpringCheckoutDemo/Base.lproj/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeeZide/FSCheckoutSheet/HEAD/Demo/FastSpringCheckoutDemo/FastSpringCheckoutDemo/Base.lproj/MainMenu.xib -------------------------------------------------------------------------------- /Demo/FastSpringCheckoutDemo/FastSpringCheckoutDemo/Configuration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeeZide/FSCheckoutSheet/HEAD/Demo/FastSpringCheckoutDemo/FastSpringCheckoutDemo/Configuration.swift -------------------------------------------------------------------------------- /Demo/FastSpringCheckoutDemo/FastSpringCheckoutDemo/FastSpringCheckoutDemo.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeeZide/FSCheckoutSheet/HEAD/Demo/FastSpringCheckoutDemo/FastSpringCheckoutDemo/FastSpringCheckoutDemo.entitlements -------------------------------------------------------------------------------- /Demo/FastSpringCheckoutDemo/FastSpringCheckoutDemo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeeZide/FSCheckoutSheet/HEAD/Demo/FastSpringCheckoutDemo/FastSpringCheckoutDemo/Info.plist -------------------------------------------------------------------------------- /FastSpringCheckoutDemo.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeeZide/FSCheckoutSheet/HEAD/FastSpringCheckoutDemo.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /FastSpringCheckoutDemo.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeeZide/FSCheckoutSheet/HEAD/FastSpringCheckoutDemo.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeeZide/FSCheckoutSheet/HEAD/LICENSE -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeeZide/FSCheckoutSheet/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeeZide/FSCheckoutSheet/HEAD/README.md -------------------------------------------------------------------------------- /Sources/FSCheckoutSheet/CheckoutPageHTML.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeeZide/FSCheckoutSheet/HEAD/Sources/FSCheckoutSheet/CheckoutPageHTML.swift -------------------------------------------------------------------------------- /Sources/FSCheckoutSheet/FSCheckoutSheet.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeeZide/FSCheckoutSheet/HEAD/Sources/FSCheckoutSheet/FSCheckoutSheet.swift -------------------------------------------------------------------------------- /Sources/FSCheckoutSheet/FindLicenseJavaScript.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeeZide/FSCheckoutSheet/HEAD/Sources/FSCheckoutSheet/FindLicenseJavaScript.swift --------------------------------------------------------------------------------