├── .gitignore ├── .swiftpm └── xcode │ └── package.xcworkspace │ └── contents.xcworkspacedata ├── LICENSE ├── Package.swift ├── README.md ├── SheeKit.podspec ├── SheeKit.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ └── contents.xcworkspacedata └── xcshareddata │ └── xcschemes │ ├── SheeKit.xcscheme │ ├── SheeKitDemo.xcscheme │ ├── SheeKitTests.xcscheme │ └── SheeKitTestsHost.xcscheme ├── SheeKitDemo.entitlements ├── Sources ├── SheeKit │ ├── AdaptiveDelegate.swift │ ├── Extensions.swift │ ├── ModalPresentationStyle.swift │ ├── SheeKit.docc │ │ ├── Resources │ │ │ ├── SwiftUI-FullScreenCoverIsPresented@2x.png │ │ │ ├── SwiftUI-FullScreenCoverItemOnDismissContent@2x.png │ │ │ ├── SwiftUI-View-PopoverItemContent@2x.png │ │ │ ├── SwiftUI-View-PopverIspresentedContent@2x.png │ │ │ ├── SwiftUI-View-SheetIsPresentingContent@2x.png │ │ │ └── SwiftUI-View-SheetItemContent@2x.png │ │ └── SheeKit.md │ ├── SheeKit.h │ ├── SheetHostingController.swift │ ├── SheetModifier.swift │ ├── SheetPresenterController.swift │ ├── SheetProperties.swift │ └── UIViewControllerProxy.swift └── SheeKitDemo │ ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── Extensions.swift │ ├── InitialPresentationPropertiesView.swift │ ├── Launch Screen.storyboard │ ├── PreferredContentSizeView.swift │ ├── Preview Content │ └── Preview Assets.xcassets │ │ └── Contents.json │ ├── RootView.swift │ ├── SheeKitDemoApp.swift │ ├── SheetContentView.swift │ ├── Theme.swift │ └── UpdatablePresentationPropertiesView.swift ├── Tests ├── TestsHost │ ├── Assets.xcassets │ │ ├── AccentColor.colorset │ │ │ └── Contents.json │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Preview Content │ │ └── Preview Assets.xcassets │ │ │ └── Contents.json │ └── SheeKitTestsHostApp.swift ├── UnitTests │ └── SheeKitTests.swift └── UnitTestsWithHost │ ├── SheeTestCase.swift │ └── ViewTestCase.swift └── docs ├── README.md ├── _config.yml ├── css └── site.css ├── documentation └── sheekit │ ├── dismissaction │ ├── callasfunction().html │ └── index.html │ ├── index.html │ ├── modalpresentationstyle │ ├── automatic.html │ ├── custom(transitioningdelegate:).html │ ├── formsheet(properties:).html │ ├── index.html │ ├── overcurrentcontext.html │ ├── overfullscreen.html │ ├── pagesheet(properties:).html │ └── popover(permittedarrowdirections:sourcerecttransform:adaptivesheetproperties:).html │ ├── modalpresentationstylecompat │ ├── automatic.html │ ├── custom(transitioningdelegate:).html │ ├── formsheet(properties:).html │ ├── index.html │ ├── overfullscreen.html │ ├── pagesheet(properties:).html │ └── popover(permittedarrowdirections:sourcerecttransform:adaptivesheetproperties:).html │ ├── shee_library │ ├── index.html │ ├── librarycontentprovider-implementations.html │ ├── modifiers(base:).html │ └── views.html │ ├── shee_previews │ ├── index.html │ ├── platform.html │ ├── previewprovider-implementations.html │ └── previews.html │ ├── sheetproperties │ ├── animatesselecteddetentidentifierchange.html │ ├── detents.html │ ├── index.html │ ├── init(prefersedgeattachedincompactheight:widthfollowspreferredcontentsizewhenedgeattached:prefersgrabbervisible:preferredcornerradius:detents:selecteddetentidentifier:animatesselecteddetentidentifierchange:largestundimmeddetentidentifier:pre-4nkl1.html │ ├── largestundimmeddetentidentifier.html │ ├── preferredcornerradius.html │ ├── prefersedgeattachedincompactheight.html │ ├── prefersgrabbervisible.html │ ├── prefersscrollingexpandswhenscrolledtoedge.html │ ├── selecteddetentidentifier.html │ ├── shouldadjusttosourceview.html │ └── widthfollowspreferredcontentsizewhenedgeattached.html │ ├── sheetpropertiescompat.html │ └── uiviewcontrollerproxy │ ├── definespresentationcontext.html │ ├── disablesautomatickeyboarddismissal.html │ ├── focusgroupidentifier.html │ ├── index.html │ ├── init().html │ ├── ismodalinpresentation.html │ ├── modalpresentationcapturesstatusbarappearance.html │ ├── modaltransitionstyle.html │ ├── preferredcontentsize.html │ ├── preferredscreenedgesdeferringsystemgestures.html │ ├── preferredstatusbarstyle.html │ ├── preferredstatusbarupdateanimation.html │ ├── prefershomeindicatorautohidden.html │ ├── preferspointerlocked.html │ ├── prefersstatusbarhidden.html │ ├── providespresentationcontexttransitionstyle.html │ └── restoresfocusaftertransition.html ├── favicon.ico ├── favicon.svg ├── images ├── SwiftUI-FullScreenCoverIsPresented@2x.png ├── SwiftUI-FullScreenCoverItemOnDismissContent@2x.png ├── SwiftUI-View-PopoverItemContent@2x.png ├── SwiftUI-View-PopverIspresentedContent@2x.png ├── SwiftUI-View-SheetIsPresentingContent@2x.png └── SwiftUI-View-SheetItemContent@2x.png └── img ├── added-icon.svg ├── deprecated-icon.svg └── modified-icon.svg /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edudnyk/SheeKit/HEAD/.gitignore -------------------------------------------------------------------------------- /.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edudnyk/SheeKit/HEAD/.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edudnyk/SheeKit/HEAD/LICENSE -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edudnyk/SheeKit/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edudnyk/SheeKit/HEAD/README.md -------------------------------------------------------------------------------- /SheeKit.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edudnyk/SheeKit/HEAD/SheeKit.podspec -------------------------------------------------------------------------------- /SheeKit.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edudnyk/SheeKit/HEAD/SheeKit.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /SheeKit.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edudnyk/SheeKit/HEAD/SheeKit.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /SheeKit.xcodeproj/xcshareddata/xcschemes/SheeKit.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edudnyk/SheeKit/HEAD/SheeKit.xcodeproj/xcshareddata/xcschemes/SheeKit.xcscheme -------------------------------------------------------------------------------- /SheeKit.xcodeproj/xcshareddata/xcschemes/SheeKitDemo.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edudnyk/SheeKit/HEAD/SheeKit.xcodeproj/xcshareddata/xcschemes/SheeKitDemo.xcscheme -------------------------------------------------------------------------------- /SheeKit.xcodeproj/xcshareddata/xcschemes/SheeKitTests.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edudnyk/SheeKit/HEAD/SheeKit.xcodeproj/xcshareddata/xcschemes/SheeKitTests.xcscheme -------------------------------------------------------------------------------- /SheeKit.xcodeproj/xcshareddata/xcschemes/SheeKitTestsHost.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edudnyk/SheeKit/HEAD/SheeKit.xcodeproj/xcshareddata/xcschemes/SheeKitTestsHost.xcscheme -------------------------------------------------------------------------------- /SheeKitDemo.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edudnyk/SheeKit/HEAD/SheeKitDemo.entitlements -------------------------------------------------------------------------------- /Sources/SheeKit/AdaptiveDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edudnyk/SheeKit/HEAD/Sources/SheeKit/AdaptiveDelegate.swift -------------------------------------------------------------------------------- /Sources/SheeKit/Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edudnyk/SheeKit/HEAD/Sources/SheeKit/Extensions.swift -------------------------------------------------------------------------------- /Sources/SheeKit/ModalPresentationStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edudnyk/SheeKit/HEAD/Sources/SheeKit/ModalPresentationStyle.swift -------------------------------------------------------------------------------- /Sources/SheeKit/SheeKit.docc/Resources/SwiftUI-FullScreenCoverIsPresented@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edudnyk/SheeKit/HEAD/Sources/SheeKit/SheeKit.docc/Resources/SwiftUI-FullScreenCoverIsPresented@2x.png -------------------------------------------------------------------------------- /Sources/SheeKit/SheeKit.docc/Resources/SwiftUI-FullScreenCoverItemOnDismissContent@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edudnyk/SheeKit/HEAD/Sources/SheeKit/SheeKit.docc/Resources/SwiftUI-FullScreenCoverItemOnDismissContent@2x.png -------------------------------------------------------------------------------- /Sources/SheeKit/SheeKit.docc/Resources/SwiftUI-View-PopoverItemContent@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edudnyk/SheeKit/HEAD/Sources/SheeKit/SheeKit.docc/Resources/SwiftUI-View-PopoverItemContent@2x.png -------------------------------------------------------------------------------- /Sources/SheeKit/SheeKit.docc/Resources/SwiftUI-View-PopverIspresentedContent@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edudnyk/SheeKit/HEAD/Sources/SheeKit/SheeKit.docc/Resources/SwiftUI-View-PopverIspresentedContent@2x.png -------------------------------------------------------------------------------- /Sources/SheeKit/SheeKit.docc/Resources/SwiftUI-View-SheetIsPresentingContent@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edudnyk/SheeKit/HEAD/Sources/SheeKit/SheeKit.docc/Resources/SwiftUI-View-SheetIsPresentingContent@2x.png -------------------------------------------------------------------------------- /Sources/SheeKit/SheeKit.docc/Resources/SwiftUI-View-SheetItemContent@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edudnyk/SheeKit/HEAD/Sources/SheeKit/SheeKit.docc/Resources/SwiftUI-View-SheetItemContent@2x.png -------------------------------------------------------------------------------- /Sources/SheeKit/SheeKit.docc/SheeKit.md: -------------------------------------------------------------------------------- 1 | ../../../README.md -------------------------------------------------------------------------------- /Sources/SheeKit/SheeKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edudnyk/SheeKit/HEAD/Sources/SheeKit/SheeKit.h -------------------------------------------------------------------------------- /Sources/SheeKit/SheetHostingController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edudnyk/SheeKit/HEAD/Sources/SheeKit/SheetHostingController.swift -------------------------------------------------------------------------------- /Sources/SheeKit/SheetModifier.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edudnyk/SheeKit/HEAD/Sources/SheeKit/SheetModifier.swift -------------------------------------------------------------------------------- /Sources/SheeKit/SheetPresenterController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edudnyk/SheeKit/HEAD/Sources/SheeKit/SheetPresenterController.swift -------------------------------------------------------------------------------- /Sources/SheeKit/SheetProperties.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edudnyk/SheeKit/HEAD/Sources/SheeKit/SheetProperties.swift -------------------------------------------------------------------------------- /Sources/SheeKit/UIViewControllerProxy.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edudnyk/SheeKit/HEAD/Sources/SheeKit/UIViewControllerProxy.swift -------------------------------------------------------------------------------- /Sources/SheeKitDemo/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edudnyk/SheeKit/HEAD/Sources/SheeKitDemo/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /Sources/SheeKitDemo/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edudnyk/SheeKit/HEAD/Sources/SheeKitDemo/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Sources/SheeKitDemo/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edudnyk/SheeKit/HEAD/Sources/SheeKitDemo/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Sources/SheeKitDemo/Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edudnyk/SheeKit/HEAD/Sources/SheeKitDemo/Extensions.swift -------------------------------------------------------------------------------- /Sources/SheeKitDemo/InitialPresentationPropertiesView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edudnyk/SheeKit/HEAD/Sources/SheeKitDemo/InitialPresentationPropertiesView.swift -------------------------------------------------------------------------------- /Sources/SheeKitDemo/Launch Screen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edudnyk/SheeKit/HEAD/Sources/SheeKitDemo/Launch Screen.storyboard -------------------------------------------------------------------------------- /Sources/SheeKitDemo/PreferredContentSizeView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edudnyk/SheeKit/HEAD/Sources/SheeKitDemo/PreferredContentSizeView.swift -------------------------------------------------------------------------------- /Sources/SheeKitDemo/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edudnyk/SheeKit/HEAD/Sources/SheeKitDemo/Preview Content/Preview Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Sources/SheeKitDemo/RootView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edudnyk/SheeKit/HEAD/Sources/SheeKitDemo/RootView.swift -------------------------------------------------------------------------------- /Sources/SheeKitDemo/SheeKitDemoApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edudnyk/SheeKit/HEAD/Sources/SheeKitDemo/SheeKitDemoApp.swift -------------------------------------------------------------------------------- /Sources/SheeKitDemo/SheetContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edudnyk/SheeKit/HEAD/Sources/SheeKitDemo/SheetContentView.swift -------------------------------------------------------------------------------- /Sources/SheeKitDemo/Theme.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edudnyk/SheeKit/HEAD/Sources/SheeKitDemo/Theme.swift -------------------------------------------------------------------------------- /Sources/SheeKitDemo/UpdatablePresentationPropertiesView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edudnyk/SheeKit/HEAD/Sources/SheeKitDemo/UpdatablePresentationPropertiesView.swift -------------------------------------------------------------------------------- /Tests/TestsHost/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edudnyk/SheeKit/HEAD/Tests/TestsHost/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /Tests/TestsHost/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edudnyk/SheeKit/HEAD/Tests/TestsHost/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Tests/TestsHost/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edudnyk/SheeKit/HEAD/Tests/TestsHost/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Tests/TestsHost/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edudnyk/SheeKit/HEAD/Tests/TestsHost/Preview Content/Preview Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Tests/TestsHost/SheeKitTestsHostApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edudnyk/SheeKit/HEAD/Tests/TestsHost/SheeKitTestsHostApp.swift -------------------------------------------------------------------------------- /Tests/UnitTests/SheeKitTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edudnyk/SheeKit/HEAD/Tests/UnitTests/SheeKitTests.swift -------------------------------------------------------------------------------- /Tests/UnitTestsWithHost/SheeTestCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edudnyk/SheeKit/HEAD/Tests/UnitTestsWithHost/SheeTestCase.swift -------------------------------------------------------------------------------- /Tests/UnitTestsWithHost/ViewTestCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edudnyk/SheeKit/HEAD/Tests/UnitTestsWithHost/ViewTestCase.swift -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edudnyk/SheeKit/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edudnyk/SheeKit/HEAD/docs/_config.yml -------------------------------------------------------------------------------- /docs/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edudnyk/SheeKit/HEAD/docs/css/site.css -------------------------------------------------------------------------------- /docs/documentation/sheekit/dismissaction/callasfunction().html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edudnyk/SheeKit/HEAD/docs/documentation/sheekit/dismissaction/callasfunction().html -------------------------------------------------------------------------------- /docs/documentation/sheekit/dismissaction/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edudnyk/SheeKit/HEAD/docs/documentation/sheekit/dismissaction/index.html -------------------------------------------------------------------------------- /docs/documentation/sheekit/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edudnyk/SheeKit/HEAD/docs/documentation/sheekit/index.html -------------------------------------------------------------------------------- /docs/documentation/sheekit/modalpresentationstyle/automatic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edudnyk/SheeKit/HEAD/docs/documentation/sheekit/modalpresentationstyle/automatic.html -------------------------------------------------------------------------------- /docs/documentation/sheekit/modalpresentationstyle/custom(transitioningdelegate:).html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edudnyk/SheeKit/HEAD/docs/documentation/sheekit/modalpresentationstyle/custom(transitioningdelegate:).html -------------------------------------------------------------------------------- /docs/documentation/sheekit/modalpresentationstyle/formsheet(properties:).html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edudnyk/SheeKit/HEAD/docs/documentation/sheekit/modalpresentationstyle/formsheet(properties:).html -------------------------------------------------------------------------------- /docs/documentation/sheekit/modalpresentationstyle/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edudnyk/SheeKit/HEAD/docs/documentation/sheekit/modalpresentationstyle/index.html -------------------------------------------------------------------------------- /docs/documentation/sheekit/modalpresentationstyle/overcurrentcontext.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edudnyk/SheeKit/HEAD/docs/documentation/sheekit/modalpresentationstyle/overcurrentcontext.html -------------------------------------------------------------------------------- /docs/documentation/sheekit/modalpresentationstyle/overfullscreen.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edudnyk/SheeKit/HEAD/docs/documentation/sheekit/modalpresentationstyle/overfullscreen.html -------------------------------------------------------------------------------- /docs/documentation/sheekit/modalpresentationstyle/pagesheet(properties:).html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edudnyk/SheeKit/HEAD/docs/documentation/sheekit/modalpresentationstyle/pagesheet(properties:).html -------------------------------------------------------------------------------- /docs/documentation/sheekit/modalpresentationstyle/popover(permittedarrowdirections:sourcerecttransform:adaptivesheetproperties:).html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edudnyk/SheeKit/HEAD/docs/documentation/sheekit/modalpresentationstyle/popover(permittedarrowdirections:sourcerecttransform:adaptivesheetproperties:).html -------------------------------------------------------------------------------- /docs/documentation/sheekit/modalpresentationstylecompat/automatic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edudnyk/SheeKit/HEAD/docs/documentation/sheekit/modalpresentationstylecompat/automatic.html -------------------------------------------------------------------------------- /docs/documentation/sheekit/modalpresentationstylecompat/custom(transitioningdelegate:).html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edudnyk/SheeKit/HEAD/docs/documentation/sheekit/modalpresentationstylecompat/custom(transitioningdelegate:).html -------------------------------------------------------------------------------- /docs/documentation/sheekit/modalpresentationstylecompat/formsheet(properties:).html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edudnyk/SheeKit/HEAD/docs/documentation/sheekit/modalpresentationstylecompat/formsheet(properties:).html -------------------------------------------------------------------------------- /docs/documentation/sheekit/modalpresentationstylecompat/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edudnyk/SheeKit/HEAD/docs/documentation/sheekit/modalpresentationstylecompat/index.html -------------------------------------------------------------------------------- /docs/documentation/sheekit/modalpresentationstylecompat/overfullscreen.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edudnyk/SheeKit/HEAD/docs/documentation/sheekit/modalpresentationstylecompat/overfullscreen.html -------------------------------------------------------------------------------- /docs/documentation/sheekit/modalpresentationstylecompat/pagesheet(properties:).html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edudnyk/SheeKit/HEAD/docs/documentation/sheekit/modalpresentationstylecompat/pagesheet(properties:).html -------------------------------------------------------------------------------- /docs/documentation/sheekit/modalpresentationstylecompat/popover(permittedarrowdirections:sourcerecttransform:adaptivesheetproperties:).html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edudnyk/SheeKit/HEAD/docs/documentation/sheekit/modalpresentationstylecompat/popover(permittedarrowdirections:sourcerecttransform:adaptivesheetproperties:).html -------------------------------------------------------------------------------- /docs/documentation/sheekit/shee_library/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edudnyk/SheeKit/HEAD/docs/documentation/sheekit/shee_library/index.html -------------------------------------------------------------------------------- /docs/documentation/sheekit/shee_library/librarycontentprovider-implementations.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edudnyk/SheeKit/HEAD/docs/documentation/sheekit/shee_library/librarycontentprovider-implementations.html -------------------------------------------------------------------------------- /docs/documentation/sheekit/shee_library/modifiers(base:).html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edudnyk/SheeKit/HEAD/docs/documentation/sheekit/shee_library/modifiers(base:).html -------------------------------------------------------------------------------- /docs/documentation/sheekit/shee_library/views.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edudnyk/SheeKit/HEAD/docs/documentation/sheekit/shee_library/views.html -------------------------------------------------------------------------------- /docs/documentation/sheekit/shee_previews/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edudnyk/SheeKit/HEAD/docs/documentation/sheekit/shee_previews/index.html -------------------------------------------------------------------------------- /docs/documentation/sheekit/shee_previews/platform.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edudnyk/SheeKit/HEAD/docs/documentation/sheekit/shee_previews/platform.html -------------------------------------------------------------------------------- /docs/documentation/sheekit/shee_previews/previewprovider-implementations.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edudnyk/SheeKit/HEAD/docs/documentation/sheekit/shee_previews/previewprovider-implementations.html -------------------------------------------------------------------------------- /docs/documentation/sheekit/shee_previews/previews.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edudnyk/SheeKit/HEAD/docs/documentation/sheekit/shee_previews/previews.html -------------------------------------------------------------------------------- /docs/documentation/sheekit/sheetproperties/animatesselecteddetentidentifierchange.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edudnyk/SheeKit/HEAD/docs/documentation/sheekit/sheetproperties/animatesselecteddetentidentifierchange.html -------------------------------------------------------------------------------- /docs/documentation/sheekit/sheetproperties/detents.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edudnyk/SheeKit/HEAD/docs/documentation/sheekit/sheetproperties/detents.html -------------------------------------------------------------------------------- /docs/documentation/sheekit/sheetproperties/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edudnyk/SheeKit/HEAD/docs/documentation/sheekit/sheetproperties/index.html -------------------------------------------------------------------------------- /docs/documentation/sheekit/sheetproperties/init(prefersedgeattachedincompactheight:widthfollowspreferredcontentsizewhenedgeattached:prefersgrabbervisible:preferredcornerradius:detents:selecteddetentidentifier:animatesselecteddetentidentifierchange:largestundimmeddetentidentifier:pre-4nkl1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edudnyk/SheeKit/HEAD/docs/documentation/sheekit/sheetproperties/init(prefersedgeattachedincompactheight:widthfollowspreferredcontentsizewhenedgeattached:prefersgrabbervisible:preferredcornerradius:detents:selecteddetentidentifier:animatesselecteddetentidentifierchange:largestundimmeddetentidentifier:pre-4nkl1.html -------------------------------------------------------------------------------- /docs/documentation/sheekit/sheetproperties/largestundimmeddetentidentifier.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edudnyk/SheeKit/HEAD/docs/documentation/sheekit/sheetproperties/largestundimmeddetentidentifier.html -------------------------------------------------------------------------------- /docs/documentation/sheekit/sheetproperties/preferredcornerradius.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edudnyk/SheeKit/HEAD/docs/documentation/sheekit/sheetproperties/preferredcornerradius.html -------------------------------------------------------------------------------- /docs/documentation/sheekit/sheetproperties/prefersedgeattachedincompactheight.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edudnyk/SheeKit/HEAD/docs/documentation/sheekit/sheetproperties/prefersedgeattachedincompactheight.html -------------------------------------------------------------------------------- /docs/documentation/sheekit/sheetproperties/prefersgrabbervisible.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edudnyk/SheeKit/HEAD/docs/documentation/sheekit/sheetproperties/prefersgrabbervisible.html -------------------------------------------------------------------------------- /docs/documentation/sheekit/sheetproperties/prefersscrollingexpandswhenscrolledtoedge.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edudnyk/SheeKit/HEAD/docs/documentation/sheekit/sheetproperties/prefersscrollingexpandswhenscrolledtoedge.html -------------------------------------------------------------------------------- /docs/documentation/sheekit/sheetproperties/selecteddetentidentifier.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edudnyk/SheeKit/HEAD/docs/documentation/sheekit/sheetproperties/selecteddetentidentifier.html -------------------------------------------------------------------------------- /docs/documentation/sheekit/sheetproperties/shouldadjusttosourceview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edudnyk/SheeKit/HEAD/docs/documentation/sheekit/sheetproperties/shouldadjusttosourceview.html -------------------------------------------------------------------------------- /docs/documentation/sheekit/sheetproperties/widthfollowspreferredcontentsizewhenedgeattached.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edudnyk/SheeKit/HEAD/docs/documentation/sheekit/sheetproperties/widthfollowspreferredcontentsizewhenedgeattached.html -------------------------------------------------------------------------------- /docs/documentation/sheekit/sheetpropertiescompat.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edudnyk/SheeKit/HEAD/docs/documentation/sheekit/sheetpropertiescompat.html -------------------------------------------------------------------------------- /docs/documentation/sheekit/uiviewcontrollerproxy/definespresentationcontext.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edudnyk/SheeKit/HEAD/docs/documentation/sheekit/uiviewcontrollerproxy/definespresentationcontext.html -------------------------------------------------------------------------------- /docs/documentation/sheekit/uiviewcontrollerproxy/disablesautomatickeyboarddismissal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edudnyk/SheeKit/HEAD/docs/documentation/sheekit/uiviewcontrollerproxy/disablesautomatickeyboarddismissal.html -------------------------------------------------------------------------------- /docs/documentation/sheekit/uiviewcontrollerproxy/focusgroupidentifier.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edudnyk/SheeKit/HEAD/docs/documentation/sheekit/uiviewcontrollerproxy/focusgroupidentifier.html -------------------------------------------------------------------------------- /docs/documentation/sheekit/uiviewcontrollerproxy/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edudnyk/SheeKit/HEAD/docs/documentation/sheekit/uiviewcontrollerproxy/index.html -------------------------------------------------------------------------------- /docs/documentation/sheekit/uiviewcontrollerproxy/init().html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edudnyk/SheeKit/HEAD/docs/documentation/sheekit/uiviewcontrollerproxy/init().html -------------------------------------------------------------------------------- /docs/documentation/sheekit/uiviewcontrollerproxy/ismodalinpresentation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edudnyk/SheeKit/HEAD/docs/documentation/sheekit/uiviewcontrollerproxy/ismodalinpresentation.html -------------------------------------------------------------------------------- /docs/documentation/sheekit/uiviewcontrollerproxy/modalpresentationcapturesstatusbarappearance.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edudnyk/SheeKit/HEAD/docs/documentation/sheekit/uiviewcontrollerproxy/modalpresentationcapturesstatusbarappearance.html -------------------------------------------------------------------------------- /docs/documentation/sheekit/uiviewcontrollerproxy/modaltransitionstyle.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edudnyk/SheeKit/HEAD/docs/documentation/sheekit/uiviewcontrollerproxy/modaltransitionstyle.html -------------------------------------------------------------------------------- /docs/documentation/sheekit/uiviewcontrollerproxy/preferredcontentsize.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edudnyk/SheeKit/HEAD/docs/documentation/sheekit/uiviewcontrollerproxy/preferredcontentsize.html -------------------------------------------------------------------------------- /docs/documentation/sheekit/uiviewcontrollerproxy/preferredscreenedgesdeferringsystemgestures.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edudnyk/SheeKit/HEAD/docs/documentation/sheekit/uiviewcontrollerproxy/preferredscreenedgesdeferringsystemgestures.html -------------------------------------------------------------------------------- /docs/documentation/sheekit/uiviewcontrollerproxy/preferredstatusbarstyle.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edudnyk/SheeKit/HEAD/docs/documentation/sheekit/uiviewcontrollerproxy/preferredstatusbarstyle.html -------------------------------------------------------------------------------- /docs/documentation/sheekit/uiviewcontrollerproxy/preferredstatusbarupdateanimation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edudnyk/SheeKit/HEAD/docs/documentation/sheekit/uiviewcontrollerproxy/preferredstatusbarupdateanimation.html -------------------------------------------------------------------------------- /docs/documentation/sheekit/uiviewcontrollerproxy/prefershomeindicatorautohidden.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edudnyk/SheeKit/HEAD/docs/documentation/sheekit/uiviewcontrollerproxy/prefershomeindicatorautohidden.html -------------------------------------------------------------------------------- /docs/documentation/sheekit/uiviewcontrollerproxy/preferspointerlocked.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edudnyk/SheeKit/HEAD/docs/documentation/sheekit/uiviewcontrollerproxy/preferspointerlocked.html -------------------------------------------------------------------------------- /docs/documentation/sheekit/uiviewcontrollerproxy/prefersstatusbarhidden.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edudnyk/SheeKit/HEAD/docs/documentation/sheekit/uiviewcontrollerproxy/prefersstatusbarhidden.html -------------------------------------------------------------------------------- /docs/documentation/sheekit/uiviewcontrollerproxy/providespresentationcontexttransitionstyle.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edudnyk/SheeKit/HEAD/docs/documentation/sheekit/uiviewcontrollerproxy/providespresentationcontexttransitionstyle.html -------------------------------------------------------------------------------- /docs/documentation/sheekit/uiviewcontrollerproxy/restoresfocusaftertransition.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edudnyk/SheeKit/HEAD/docs/documentation/sheekit/uiviewcontrollerproxy/restoresfocusaftertransition.html -------------------------------------------------------------------------------- /docs/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edudnyk/SheeKit/HEAD/docs/favicon.ico -------------------------------------------------------------------------------- /docs/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edudnyk/SheeKit/HEAD/docs/favicon.svg -------------------------------------------------------------------------------- /docs/images/SwiftUI-FullScreenCoverIsPresented@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edudnyk/SheeKit/HEAD/docs/images/SwiftUI-FullScreenCoverIsPresented@2x.png -------------------------------------------------------------------------------- /docs/images/SwiftUI-FullScreenCoverItemOnDismissContent@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edudnyk/SheeKit/HEAD/docs/images/SwiftUI-FullScreenCoverItemOnDismissContent@2x.png -------------------------------------------------------------------------------- /docs/images/SwiftUI-View-PopoverItemContent@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edudnyk/SheeKit/HEAD/docs/images/SwiftUI-View-PopoverItemContent@2x.png -------------------------------------------------------------------------------- /docs/images/SwiftUI-View-PopverIspresentedContent@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edudnyk/SheeKit/HEAD/docs/images/SwiftUI-View-PopverIspresentedContent@2x.png -------------------------------------------------------------------------------- /docs/images/SwiftUI-View-SheetIsPresentingContent@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edudnyk/SheeKit/HEAD/docs/images/SwiftUI-View-SheetIsPresentingContent@2x.png -------------------------------------------------------------------------------- /docs/images/SwiftUI-View-SheetItemContent@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edudnyk/SheeKit/HEAD/docs/images/SwiftUI-View-SheetItemContent@2x.png -------------------------------------------------------------------------------- /docs/img/added-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edudnyk/SheeKit/HEAD/docs/img/added-icon.svg -------------------------------------------------------------------------------- /docs/img/deprecated-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edudnyk/SheeKit/HEAD/docs/img/deprecated-icon.svg -------------------------------------------------------------------------------- /docs/img/modified-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edudnyk/SheeKit/HEAD/docs/img/modified-icon.svg --------------------------------------------------------------------------------