├── .github ├── pull_request_template.md └── workflows │ ├── env.properties │ └── run_tests.yml ├── .gitignore ├── .mise.toml ├── .ruby-version ├── BlueprintUILists ├── Sources │ ├── BlueprintHeaderFooterContent.swift │ ├── BlueprintItemContent.swift │ ├── Deprecations.swift │ ├── Exports.swift │ ├── HeaderFooter.swift │ ├── Internal │ │ └── Assertions.swift │ ├── Item.swift │ ├── List.ContentContext.swift │ ├── List.Measurement.swift │ ├── List.swift │ ├── ListEnvironment+Blueprint.swift │ └── ListReorderGesture.swift └── Tests │ ├── List.MeasurementTests.swift │ ├── ListPerformanceTesting.swift │ ├── ListTests.swift │ └── XCTestCaseAdditions.swift ├── CHANGELOG.md ├── Development ├── Demo │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Base.lproj │ │ └── LaunchScreen.storyboard │ └── Info.plist ├── Internal │ ├── EnglishDictionary │ │ ├── Resources │ │ │ └── dictionary.json │ │ └── Sources │ │ │ └── EnglishDictionary.swift │ └── Snapshot │ │ ├── Sources │ │ ├── Snapshot.swift │ │ ├── SnapshotSettings.swift │ │ ├── ViewHierarchySnapshot.swift │ │ ├── ViewImageSnapshot.swift │ │ ├── ViewIterations.swift │ │ └── iOSDevice.swift │ │ └── Tests │ │ ├── Snapshot Results │ │ └── SnapshotTests.swift │ │ │ └── All │ │ │ ├── test_different_asset_fails() │ │ │ └── TestOutput │ │ │ │ └── Test.test.txt │ │ │ ├── test_identical_asset_passes() │ │ │ └── TestOutput │ │ │ │ └── Test.test.txt │ │ │ ├── test_image_and_text_output() │ │ │ ├── Hierarchies │ │ │ │ ├── 200x200.hierarchy.txt │ │ │ │ └── 300x300.hierarchy.txt │ │ │ └── Images │ │ │ │ ├── 200x200.png │ │ │ │ └── 300x300.png │ │ │ └── test_no_asset_writes_and_passes() │ │ │ └── TestOutput │ │ │ └── Test.test.txt │ │ ├── SnapshotSettingsTests.swift │ │ └── SnapshotTests.swift ├── Project.swift ├── Resources │ └── Assets.xcassets │ │ ├── Contents.json │ │ ├── People │ │ ├── Contents.json │ │ └── kyle.imageset │ │ │ ├── Contents.json │ │ │ └── kyle.png │ │ ├── Podcasts │ │ ├── Contents.json │ │ ├── are-we-there-yet.imageset │ │ │ ├── Contents.json │ │ │ └── are-we-there-yet.png │ │ ├── nancy.imageset │ │ │ ├── Contents.json │ │ │ └── nancy.png │ │ ├── outside-lands.imageset │ │ │ ├── Contents.json │ │ │ └── outside-lands.jpg │ │ ├── planet-money.imageset │ │ │ ├── Contents.json │ │ │ └── planet-money.jpg │ │ ├── the-impact.imageset │ │ │ ├── Contents.json │ │ │ └── the-impact.png │ │ ├── this-american-life.imageset │ │ │ ├── Contents.json │ │ │ └── this-american-life.jpg │ │ └── wait-wait.imageset │ │ │ ├── Contents.json │ │ │ └── wait-wait.png │ │ ├── ReorderControl.imageset │ │ ├── Contents.json │ │ ├── ReorderControl.png │ │ ├── ReorderControl@2x.png │ │ └── ReorderControl@3x.png │ │ └── bookmark.imageset │ │ ├── Contents.json │ │ └── bookmark.pdf ├── Sources │ ├── AppDelegate.swift │ └── Demos │ │ ├── BestPractices.swift │ │ ├── Demo Screens │ │ ├── AccordionViewController.swift │ │ ├── AutoLayoutDemoViewController.swift │ │ ├── AutoScrollingViewController.swift │ │ ├── AutoScrollingViewController2.swift │ │ ├── AutoScrollingViewController3.swift │ │ ├── BlueprintListDemoViewController.swift │ │ ├── CarouselLayoutViewController.swift │ │ ├── CenterSnappingTableViewController.swift │ │ ├── ChatDemoViewController.swift │ │ ├── CollectionViewAppearance.swift │ │ ├── CollectionViewBasicDemoViewController.swift │ │ ├── CoordinatorViewController.swift │ │ ├── FlowLayoutViewController.swift │ │ ├── HorizontalLayoutViewController.swift │ │ ├── IdentifierChangedViewController.swift │ │ ├── InvoicesPaymentScheduleDemoViewController.swift │ │ ├── ItemInsertAndRemoveAnimationsViewController.swift │ │ ├── ItemizationEditorViewController.swift │ │ ├── KeyboardNavigationDemoViewController.swift │ │ ├── KeyboardTestingViewController.swift │ │ ├── ListAppearsAfterKeyboardViewController.swift │ │ ├── ListStateViewController.swift │ │ ├── LocalizedCollationViewController.swift │ │ ├── ManualSelectionManagementViewController.swift │ │ ├── MultiSelectViewController.swift │ │ ├── OnTapItemAnimationViewController.swift │ │ ├── PagedViewController.swift │ │ ├── PaymentTypesViewController.swift │ │ ├── PeekingPagedViewController.swift │ │ ├── RefreshControlOffsetAdjustmentViewController.swift │ │ ├── ReorderingViewController.swift │ │ ├── ScrollCompletionHandlerViewController.swift │ │ ├── ScrollViewEdgesPlaygroundViewController.swift │ │ ├── SearchableDictionaryViewController.swift │ │ ├── SpacingCustomizationViewController.swift │ │ ├── SupplementaryTestingViewController.swift │ │ ├── SwipeActionsViewController.swift │ │ ├── SystemFlowLayoutViewController.swift │ │ ├── UpdateFuzzingViewController.swift │ │ └── WidthCustomizationViewController.swift │ │ ├── DemosRootViewController.swift │ │ └── XcodePreviewDemo.swift ├── Test Targets │ ├── Info.plist │ └── Test_Targets.swift ├── Tuist │ ├── Package.resolved │ └── Package.swift └── Workspace.swift ├── Gemfile ├── Gemfile.lock ├── LICENSE ├── ListableUI ├── Resources │ ├── .gitkeep │ ├── README.md │ ├── ca-ES.lproj │ │ └── Localizable.strings │ ├── en-GB.lproj │ │ └── Localizable.strings │ ├── en-IE.lproj │ │ └── Localizable.strings │ ├── en-au.lproj │ │ └── Localizable.strings │ ├── en-ca.lproj │ │ └── Localizable.strings │ ├── en.lproj │ │ └── Localizable.strings │ ├── es-ES.lproj │ │ └── Localizable.strings │ ├── es.lproj │ │ └── Localizable.strings │ ├── fr-FR.lproj │ │ └── Localizable.strings │ ├── fr-ca.lproj │ │ └── Localizable.strings │ ├── ja.lproj │ │ └── Localizable.strings │ └── pt-PT.lproj │ │ └── Localizable.strings ├── Sources │ ├── .gitkeep │ ├── Appearance.swift │ ├── ApplyReason.swift │ ├── AutoScrollAction.swift │ ├── Behavior.swift │ ├── Bundle+ListableUI.swift │ ├── CacheClearer.swift │ ├── Color.swift │ ├── Content.swift │ ├── ContentBounds │ │ ├── ListContentBounds.monopic │ │ └── ListContentBounds.swift │ ├── ContentContext.swift │ ├── ContentFilters.swift │ ├── ContentLayoutsStorage.swift │ ├── DebuggingAndLogging │ │ └── SignpostLogger.swift │ ├── Deprecations.swift │ ├── EmbeddedList.swift │ ├── Environment │ │ ├── ListEnvironment.swift │ │ └── ListEnvironmentKey.swift │ ├── HeaderFooter │ │ ├── AnyHeaderFooter.swift │ │ ├── AnyHeaderFooterConvertible.swift │ │ ├── DefaultHeaderFooterProperties.swift │ │ ├── HeaderFooter.swift │ │ ├── HeaderFooterCallbacks.swift │ │ ├── HeaderFooterContent.swift │ │ └── HeaderFooterLayouts.swift │ ├── Identifier.swift │ ├── Internal │ │ ├── Array.swift │ │ ├── Assertions.swift │ │ ├── CGRect.swift │ │ ├── CGSize.swift │ │ ├── Diff │ │ │ ├── ArrayDiff.swift │ │ │ └── SectionedDiff.swift │ │ ├── DirectionalPanGestureRecognizer.swift │ │ ├── HeaderFooterContentView.swift │ │ ├── ItemCell.ContentViewContainer.swift │ │ ├── ItemCell.swift │ │ ├── Modify.swift │ │ ├── PresentationState │ │ │ ├── PresentationState.HeaderFooterState.swift │ │ │ ├── PresentationState.ItemState.swift │ │ │ ├── PresentationState.RefreshControl.swift │ │ │ ├── PresentationState.SectionState.swift │ │ │ └── PresentationState.swift │ │ ├── ReusableViewCache.swift │ │ ├── ReuseIdentifier.swift │ │ ├── SupplementaryContainerView.swift │ │ ├── SwipeActionsView.swift │ │ ├── SwipeActionsViewStyle.swift │ │ ├── TouchDownGestureRecognizer.swift │ │ ├── UIEdgeInsets.swift │ │ ├── UIView.swift │ │ ├── UIViewPropertyAnimator.swift │ │ └── Validations.swift │ ├── Item │ │ ├── AnyItem.swift │ │ ├── AnyItemConvertible.swift │ │ ├── DefaultItemProperties.swift │ │ ├── Item.swift │ │ ├── ItemCallbacks.swift │ │ ├── ItemContent.swift │ │ ├── ItemContentCoordinator.swift │ │ ├── ItemInsertAndRemoveAnimations.swift │ │ ├── ItemLayouts.swift │ │ ├── ItemPosition.swift │ │ ├── ItemReordering.swift │ │ ├── ItemSelectionStyle.swift │ │ └── ItemState.swift │ ├── KeyboardObserver │ │ ├── KeyboardObserver.swift │ │ └── SetupKeyboardObserverOnAppStartup.m │ ├── Layout │ │ ├── CollectionViewLayout.swift │ │ ├── Flow │ │ │ ├── FlowAppearance.monopic │ │ │ └── FlowListLayout.swift │ │ ├── ListLayout │ │ │ ├── LayoutDescription.swift │ │ │ ├── ListContentLayoutAttributes.swift │ │ │ ├── ListHeaderPosition.swift │ │ │ ├── ListLayout+Layout.swift │ │ │ ├── ListLayout.swift │ │ │ ├── ListLayoutAppearance.swift │ │ │ ├── ListLayoutAttributes.swift │ │ │ ├── ListLayoutContent.swift │ │ │ ├── ListLayoutDefaults.swift │ │ │ ├── ListLayoutResult.swift │ │ │ ├── ListLayoutScrollViewProperties.swift │ │ │ └── ListPagingBehavior.swift │ │ ├── Paged │ │ │ ├── PagedAppearance.monopic │ │ │ └── PagedListLayout.swift │ │ ├── SupplementaryKind.swift │ │ └── Table │ │ │ ├── TableAppearance.monopic │ │ │ └── TableListLayout.swift │ ├── LayoutDirection.swift │ ├── ListActions.swift │ ├── ListAnimation.swift │ ├── ListProperties.swift │ ├── ListScrollPositionInfo.swift │ ├── ListStateObserver.swift │ ├── ListView │ │ ├── ListChangesQueue.swift │ │ ├── ListView+ContentSize.swift │ │ ├── ListView+iOS16.4Workaround.swift │ │ ├── ListView.CollectionViewChanges.swift │ │ ├── ListView.DataSource.swift │ │ ├── ListView.Delegate.swift │ │ ├── ListView.LayoutManager.swift │ │ ├── ListView.Storage.swift │ │ ├── ListView.VisibleContent.swift │ │ ├── ListView.swift │ │ └── UpdateCallbacks.swift │ ├── ListViewController.swift │ ├── ListViewSource.swift │ ├── ListableBuilder.swift │ ├── ListableLocalizedStrings.swift │ ├── LocalizedItemCollator.swift │ ├── Previews │ │ ├── ItemPreview.swift │ │ ├── ItemPreviewAppearance.swift │ │ └── ItemPreviewView.swift │ ├── ReappliesToVisibleView.swift │ ├── RefreshControl.swift │ ├── ReorderingActions.swift │ ├── ScrollPosition.swift │ ├── Section │ │ ├── Section.swift │ │ ├── SectionLayouts.swift │ │ ├── SectionPosition.swift │ │ └── SectionReordering.swift │ ├── Sizing.swift │ ├── SwipeActionsConfiguration.swift │ ├── UIScrollView+Extensions.swift │ ├── ViewAnimation.swift │ └── ViewProperties.swift └── Tests │ ├── AppearanceTests.swift │ ├── ApplyReasonTests.swift │ ├── BehaviorTests.swift │ ├── CacheClearerTests.swift │ ├── ColorTests.swift │ ├── ContentFiltersTests.swift │ ├── ContentTests.swift │ ├── Debugging and Logging │ └── SignpostLoggerTests.swift │ ├── EmbeddedListTests.swift │ ├── Fixtures │ ├── ListLayoutDefaults+Fixtures.swift │ └── PresentationState+Fixtures.swift │ ├── HeaderFooter │ └── HeaderFooterTests.swift │ ├── IdentifierTests.swift │ ├── Internal │ ├── ArrayTests.swift │ ├── CGRectTests.swift │ ├── CGSizeTests.swift │ ├── Diff │ │ ├── ArrayDiffTests.swift │ │ ├── DiffPerformanceTesting.swift │ │ ├── SectionedDiffTests.swift │ │ └── StableRNG.swift │ ├── ItemCellTests.swift │ ├── KeyboardObserverTests.swift │ ├── Presentation State │ │ ├── PresentationState.HeaderFooterStateTests.swift │ │ ├── PresentationState.ItemStateTests.swift │ │ ├── PresentationState.SectionStateTests.swift │ │ └── PresentationStateTests.swift │ ├── ReusableViewCacheTests.swift │ ├── ReuseIdentifierTests.swift │ ├── SupplementaryContainerViewTests.swift │ └── UIViewTests.swift │ ├── Item │ ├── ItemContentCoordinatorTests.swift │ ├── ItemContentTests.swift │ ├── ItemReorderingTests.swift │ └── ItemTests.swift │ ├── Layout │ ├── Flow │ │ ├── FlowListLayoutTests.swift │ │ └── Snapshot Results │ │ │ └── FlowListLayoutTests.swift │ │ │ └── All │ │ │ ├── test_layout_horizontal() │ │ │ ├── Images │ │ │ │ └── Snapshot.png │ │ │ └── ListAttributes │ │ │ │ └── Snapshot.txt │ │ │ └── test_layout_vertical() │ │ │ ├── Images │ │ │ └── Snapshot.png │ │ │ └── ListAttributes │ │ │ └── Snapshot.txt │ ├── LayoutAttributesSnapshot.swift │ ├── ListLayout │ │ ├── LayoutDescriptionTests.swift │ │ ├── ListLayoutContentTests.swift │ │ ├── ListLayoutScrollViewPropertiesTests.swift │ │ └── ListLayoutTests.swift │ ├── Paged │ │ ├── PagedListLayoutTests.swift │ │ └── Snapshot Results │ │ │ └── PagedListLayoutTests.swift │ │ │ └── All │ │ │ ├── test_layout_horizontal_bounds() │ │ │ ├── Images │ │ │ │ └── Snapshot.png │ │ │ └── ListAttributes │ │ │ │ └── Snapshot.txt │ │ │ ├── test_layout_horizontal_full() │ │ │ ├── Images │ │ │ │ └── Snapshot.png │ │ │ └── ListAttributes │ │ │ │ └── Snapshot.txt │ │ │ ├── test_layout_vertical_bounds() │ │ │ ├── Images │ │ │ │ └── Snapshot.png │ │ │ └── ListAttributes │ │ │ │ └── Snapshot.txt │ │ │ └── test_layout_vertical_full() │ │ │ ├── Images │ │ │ └── Snapshot.png │ │ │ └── ListAttributes │ │ │ └── Snapshot.txt │ └── Table │ │ ├── Snapshot Results │ │ └── TableListLayoutTests.swift │ │ │ └── All │ │ │ ├── test_layout_horizontal_excludingHeader() │ │ │ ├── Images │ │ │ │ └── Snapshot.png │ │ │ └── ListAttributes │ │ │ │ └── Snapshot.txt │ │ │ ├── test_layout_horizontal_includingHeader() │ │ │ ├── Images │ │ │ │ └── Snapshot.png │ │ │ └── ListAttributes │ │ │ │ └── Snapshot.txt │ │ │ ├── test_layout_horizontal_stickyHeader() │ │ │ ├── Images │ │ │ │ └── Snapshot.png │ │ │ └── ListAttributes │ │ │ │ └── Snapshot.txt │ │ │ ├── test_layout_vertical_excludingHeader() │ │ │ ├── Images │ │ │ │ ├── 200.0 x 680.0.snapshot.png │ │ │ │ └── Snapshot.png │ │ │ └── ListAttributes │ │ │ │ ├── 200.0 x 680.0.txt │ │ │ │ └── Snapshot.txt │ │ │ ├── test_layout_vertical_includingHeader() │ │ │ ├── Images │ │ │ │ ├── 200.0 x 740.0.snapshot.png │ │ │ │ └── Snapshot.png │ │ │ └── ListAttributes │ │ │ │ ├── 200.0 x 740.0.txt │ │ │ │ └── Snapshot.txt │ │ │ └── test_layout_vertical_stickyHeader() │ │ │ ├── Images │ │ │ └── Snapshot.png │ │ │ └── ListAttributes │ │ │ └── Snapshot.txt │ │ └── TableListLayoutTests.swift │ ├── LayoutDirectionTests.swift │ ├── ListPropertiesTests.swift │ ├── ListScrollPositionInfoTests.swift │ ├── ListStateObserverTests.swift │ ├── ListView │ ├── ListChangesQueueTests.swift │ ├── ListView+ContentSizeTests.swift │ ├── ListView.DataSourceTests.swift │ ├── ListView.DelegateTests.swift │ ├── ListView.LayoutManagerTests.swift │ ├── ListView.StorageTests.swift │ ├── ListView.VisibleContentTests.swift │ ├── ListViewPerformanceTesting.swift │ ├── ListViewTests.swift │ └── UpdateCallbacksTests.swift │ ├── ListViewSourceTests.swift │ ├── ListableBuilderTests.swift │ ├── LocalizedItemCollatorTests.swift │ ├── Previews │ ├── ItemPreviewAppearanceTests.swift │ ├── ItemPreviewViewTests.swift │ └── Snapshot Results │ │ └── ItemPreviewViewTests.swift │ │ └── All │ │ └── test_set() │ │ └── Images │ │ ├── false,false.png │ │ ├── false,true.png │ │ ├── true,false.png │ │ └── true,true.png │ ├── ReappliesToVisibleViewTests.swift │ ├── RefreshControlTests.swift │ ├── ReorderingActionsTests.swift │ ├── Resources │ └── random_numbers.json │ ├── ScrollPositionTests.swift │ ├── SizingTests.swift │ ├── SwipeActionsTests.swift │ ├── UITestHost │ └── AppDelegate.swift │ └── XCTestCaseAdditions.swift ├── Package.swift ├── README.md ├── RELEASING.md ├── Resources └── en.lproj │ └── Localizable.strings ├── Scripts ├── extract_english_strings.sh ├── generate_docs.sh ├── release.sh └── tag_release.sh ├── Section ├── SectionReorderingTests.swift └── SectionTests.swift ├── TASKLIST.md ├── docs ├── .nojekyll ├── BlueprintLists │ ├── Enums.html │ ├── Enums │ │ └── ListContentContextKey.html │ ├── Extensions.html │ ├── Extensions │ │ ├── Element.html │ │ └── Environment.html │ ├── Functions.html │ ├── Protocols.html │ ├── Protocols │ │ ├── BlueprintHeaderFooterContent.html │ │ └── BlueprintItemContent.html │ ├── Structs.html │ ├── Structs │ │ ├── ElementHeaderFooterContent.html │ │ ├── ElementItemContent.html │ │ ├── List.html │ │ ├── List │ │ │ ├── Measurement.html │ │ │ └── Measurement │ │ │ │ ├── FillRule.html │ │ │ │ └── SafeArea.html │ │ ├── ListReorderGesture.html │ │ └── ListReorderGesture │ │ │ └── Begins.html │ ├── Typealiases.html │ ├── badge.svg │ ├── css │ │ ├── highlight.css │ │ └── jazzy.css │ ├── docsets │ │ ├── BlueprintLists.docset │ │ │ └── Contents │ │ │ │ ├── Info.plist │ │ │ │ └── Resources │ │ │ │ ├── Documents │ │ │ │ ├── Enums.html │ │ │ │ ├── Enums │ │ │ │ │ └── ListContentContextKey.html │ │ │ │ ├── Extensions.html │ │ │ │ ├── Extensions │ │ │ │ │ ├── Element.html │ │ │ │ │ └── Environment.html │ │ │ │ ├── Functions.html │ │ │ │ ├── Protocols.html │ │ │ │ ├── Protocols │ │ │ │ │ ├── BlueprintHeaderFooterContent.html │ │ │ │ │ └── BlueprintItemContent.html │ │ │ │ ├── Structs.html │ │ │ │ ├── Structs │ │ │ │ │ ├── ElementHeaderFooterContent.html │ │ │ │ │ ├── ElementItemContent.html │ │ │ │ │ ├── List.html │ │ │ │ │ ├── List │ │ │ │ │ │ ├── Measurement.html │ │ │ │ │ │ └── Measurement │ │ │ │ │ │ │ ├── FillRule.html │ │ │ │ │ │ │ └── SafeArea.html │ │ │ │ │ ├── ListReorderGesture.html │ │ │ │ │ └── ListReorderGesture │ │ │ │ │ │ └── Begins.html │ │ │ │ ├── Typealiases.html │ │ │ │ ├── css │ │ │ │ │ ├── highlight.css │ │ │ │ │ └── jazzy.css │ │ │ │ ├── img │ │ │ │ │ ├── carat.png │ │ │ │ │ ├── dash.png │ │ │ │ │ ├── gh.png │ │ │ │ │ └── spinner.gif │ │ │ │ ├── index.html │ │ │ │ ├── js │ │ │ │ │ ├── jazzy.js │ │ │ │ │ ├── jazzy.search.js │ │ │ │ │ ├── jquery.min.js │ │ │ │ │ ├── lunr.min.js │ │ │ │ │ └── typeahead.jquery.js │ │ │ │ └── search.json │ │ │ │ └── docSet.dsidx │ │ └── BlueprintLists.tgz │ ├── img │ │ ├── carat.png │ │ ├── dash.png │ │ ├── gh.png │ │ └── spinner.gif │ ├── index.html │ ├── js │ │ ├── jazzy.js │ │ ├── jazzy.search.js │ │ ├── jquery.min.js │ │ ├── lunr.min.js │ │ └── typeahead.jquery.js │ ├── search.json │ └── undocumented.json ├── BlueprintUILists.yml ├── JSON │ ├── .gitkeep │ ├── BlueprintUILists.json │ └── ListableUI.json ├── Listable │ ├── Classes.html │ ├── Classes │ │ ├── AnyIdentifier.html │ │ ├── DefaultItemContentCoordinator.html │ │ ├── DynamicSource.html │ │ ├── Identifier.html │ │ ├── ItemContentCoordinatorActions.html │ │ ├── ItemContentCoordinatorInfo.html │ │ ├── ItemPreviewView.html │ │ ├── ListActions.html │ │ ├── ListActions │ │ │ ├── Scrolling.html │ │ │ └── ViewControllerTransitioning.html │ │ ├── ListLayoutContent.html │ │ ├── ListLayoutContent │ │ │ ├── ItemInfo.html │ │ │ ├── SectionInfo.html │ │ │ └── SupplementaryItemInfo.html │ │ ├── ListView.html │ │ ├── ListView │ │ │ └── ScrollViewInsets.html │ │ ├── ListViewController.html │ │ ├── ReorderingActions.html │ │ ├── ReorderingActions │ │ │ ├── AccessibilityMoveDirection.html │ │ │ └── Result.html │ │ ├── SourceState.html │ │ ├── StateAccessor.html │ │ ├── StaticSource.html │ │ └── StaticSource │ │ │ └── State.html │ ├── Enums.html │ ├── Enums │ │ ├── ApplyReason.html │ │ ├── AutoScrollAction.html │ │ ├── AutoScrollAction │ │ │ ├── Configuration.html │ │ │ ├── OnInsertedItem.html │ │ │ ├── Pin.html │ │ │ └── ScrollDestination.html │ │ ├── ContentFilters.html │ │ ├── ContentInsetAdjustmentBehavior.html │ │ ├── CustomWidth.html │ │ ├── CustomWidth │ │ │ ├── Alignment.html │ │ │ ├── Custom.html │ │ │ └── Position.html │ │ ├── ItemPosition.html │ │ ├── ItemSelectionStyle.html │ │ ├── KeyboardFrame.html │ │ ├── LayoutDirection.html │ │ ├── ListContentBoundsKey.html │ │ ├── ListHeaderPosition.html │ │ ├── ListPagingBehavior.html │ │ ├── ListableBuilder.html │ │ ├── PageScrollingBehavior.html │ │ ├── ReappliesToVisibleView.html │ │ ├── SectionPosition.html │ │ ├── Sizing.html │ │ ├── Sizing │ │ │ ├── Constraint.html │ │ │ ├── Constraint │ │ │ │ └── Axis.html │ │ │ └── MeasureInfo.html │ │ ├── SupplementaryKind.html │ │ ├── SwipeActionsViewStyleKey.html │ │ ├── ViewAnimation.html │ │ ├── ViewAnimation │ │ │ └── AnimationOptions.html │ │ └── WidthConstraint.html │ ├── Extensions.html │ ├── Extensions │ │ ├── ArrayDiff.html │ │ ├── PresentationState.html │ │ ├── SectionedDiff.html │ │ ├── SectionedDiff │ │ │ ├── ItemChanges.html │ │ │ └── SectionChanges.html │ │ ├── Set.html │ │ └── UIRectEdge.html │ ├── Functions.html │ ├── Protocols.html │ ├── Protocols │ │ ├── AnyHeaderFooter.html │ │ ├── AnyHeaderFooterConvertible.html │ │ ├── AnyHeaderFooter_Internal.html │ │ ├── AnyItem.html │ │ ├── AnyItemConvertible.html │ │ ├── AnyItem_Internal.html │ │ ├── AnyLayoutDescriptionConfiguration.html │ │ ├── AnyListLayout.html │ │ ├── AnyLocalizedCollatableItem.html │ │ ├── CollectionViewLayoutDelegate.html │ │ ├── HeaderFooterContent.html │ │ ├── HeaderFooterLayoutsValue.html │ │ ├── ItemContent.html │ │ ├── ItemContentCoordinator.html │ │ ├── ItemLayoutsValue.html │ │ ├── KeyboardCurrentFrameProvider.html │ │ ├── ListEnvironmentKey.html │ │ ├── ListLayout.html │ │ ├── ListLayoutAppearance.html │ │ ├── ListLayoutContentItem.html │ │ ├── ListViewSource.html │ │ ├── LocalizedCollatableItemContent.html │ │ └── SectionLayoutsValue.html │ ├── Structs.html │ ├── Structs │ │ ├── Appearance.html │ │ ├── ApplyHeaderFooterContentInfo.html │ │ ├── ApplyItemContentInfo.html │ │ ├── Behavior.html │ │ ├── Behavior │ │ │ ├── DecelerationRate.html │ │ │ ├── FocusConfiguration.html │ │ │ ├── KeyboardAdjustmentMode.html │ │ │ ├── ScrollsToTop.html │ │ │ ├── SelectionMode.html │ │ │ ├── Underflow.html │ │ │ ├── Underflow │ │ │ │ └── Alignment.html │ │ │ └── VerticalLayoutGravity.html │ │ ├── Color.html │ │ ├── Content.html │ │ ├── ContentContext.html │ │ ├── DefaultHeaderFooterProperties.html │ │ ├── DefaultItemProperties.html │ │ ├── EmbeddedList.html │ │ ├── EmbeddedList │ │ │ └── Sizing.html │ │ ├── EmptyHeaderFooterLayoutsValue.html │ │ ├── EmptyItemLayoutsValue.html │ │ ├── EmptySectionLayoutsValue.html │ │ ├── FlowAppearance.html │ │ ├── FlowAppearance │ │ │ ├── HeaderFooterLayout.html │ │ │ ├── ItemLayout.html │ │ │ ├── ItemLayout │ │ │ │ └── Width.html │ │ │ ├── ItemSizing.html │ │ │ ├── RowItemsAlignment.html │ │ │ ├── RowUnderflowAlignment.html │ │ │ ├── RowUnderflowAlignment │ │ │ │ └── FillLastRowAlignment.html │ │ │ ├── SectionLayout.html │ │ │ ├── Spacings.html │ │ │ └── Spacings │ │ │ │ └── InterSectionSpacing.html │ │ ├── HeaderFooter.html │ │ ├── HeaderFooter │ │ │ ├── OnDisplay.html │ │ │ └── OnEndDisplay.html │ │ ├── HeaderFooterContentViews.html │ │ ├── HeaderFooterLayouts.html │ │ ├── HorizontalPadding.html │ │ ├── Item.html │ │ ├── Item │ │ │ ├── OnDeselect.html │ │ │ ├── OnDisplay.html │ │ │ ├── OnEndDisplay.html │ │ │ ├── OnInsert.html │ │ │ ├── OnMove.html │ │ │ ├── OnRemove.html │ │ │ ├── OnSelect.html │ │ │ └── OnUpdate.html │ │ ├── ItemContentViews.html │ │ ├── ItemInsertAndRemoveAnimations.html │ │ ├── ItemLayouts.html │ │ ├── ItemPreview.html │ │ ├── ItemPreview │ │ │ └── Properties.html │ │ ├── ItemPreviewAppearance.html │ │ ├── ItemReordering.html │ │ ├── ItemReordering │ │ │ ├── GestureRecognizer.html │ │ │ ├── Result.html │ │ │ └── Sections.html │ │ ├── ItemState.html │ │ ├── LayoutDescription.html │ │ ├── LayoutDescription │ │ │ └── Configuration.html │ │ ├── ListAnimation.html │ │ ├── ListContentBounds.html │ │ ├── ListContentBounds │ │ │ └── Context.html │ │ ├── ListContentLayoutAttributes.html │ │ ├── ListEnvironment.html │ │ ├── ListLayoutAppearanceProperties.html │ │ ├── ListLayoutDefaults.html │ │ ├── ListLayoutLayoutContext.html │ │ ├── ListLayoutResult.html │ │ ├── ListLayoutScrollViewProperties.html │ │ ├── ListProperties.html │ │ ├── ListScrollPositionInfo.html │ │ ├── ListScrollPositionInfo │ │ │ └── VisibleItem.html │ │ ├── ListStateObserver.html │ │ ├── ListStateObserver │ │ │ ├── BeginDrag.html │ │ │ ├── ContentUpdated.html │ │ │ ├── ContentUpdated │ │ │ │ ├── InsertionsAndRemovals.html │ │ │ │ └── InsertionsAndRemovals │ │ │ │ │ └── ChangedIDs.html │ │ │ ├── DidEndDeceleration.html │ │ │ ├── DidEndScrollingAnimation.html │ │ │ ├── DidScroll.html │ │ │ ├── FrameChanged.html │ │ │ ├── ItemReordered.html │ │ │ ├── SelectionChanged.html │ │ │ └── VisibilityChanged.html │ │ ├── ListableLocalizedStrings.html │ │ ├── ListableLocalizedStrings │ │ │ └── ReorderGesture.html │ │ ├── LocalizedItemCollator.html │ │ ├── LocalizedItemCollator │ │ │ └── CollatedSection.html │ │ ├── MeasuredListSize.html │ │ ├── PagedAppearance.html │ │ ├── PagedAppearance │ │ │ ├── Peek.html │ │ │ └── Peek │ │ │ │ └── FirstItemConfiguration.html │ │ ├── RefreshControl.html │ │ ├── RefreshControl │ │ │ ├── OffsetAdjustmentBehavior.html │ │ │ └── Title.html │ │ ├── ScrollPosition.html │ │ ├── ScrollPosition │ │ │ ├── IfAlreadyVisible.html │ │ │ └── Position.html │ │ ├── Section.html │ │ ├── SectionLayouts.html │ │ ├── SectionReordering.html │ │ ├── SwipeAction.html │ │ ├── SwipeAction │ │ │ └── OnDidPerformActionAnimation.html │ │ ├── SwipeActionsConfiguration.html │ │ ├── SwipeActionsViewStyle.html │ │ ├── SwipeActionsViewStyle │ │ │ ├── ButtonSizing.html │ │ │ └── Shape.html │ │ ├── TableAppearance.html │ │ ├── TableAppearance │ │ │ ├── HeaderFooterLayout.html │ │ │ ├── ItemLayout.html │ │ │ ├── Layout.html │ │ │ ├── SectionLayout.html │ │ │ └── SectionLayout │ │ │ │ └── Columns.html │ │ ├── ViewProperties.html │ │ └── ViewProperties │ │ │ ├── CornerCurve.html │ │ │ ├── CornerStyle.html │ │ │ └── CornerStyle │ │ │ └── Corners.html │ ├── Typealiases.html │ ├── badge.svg │ ├── css │ │ ├── highlight.css │ │ └── jazzy.css │ ├── docsets │ │ ├── Listable.docset │ │ │ └── Contents │ │ │ │ ├── Info.plist │ │ │ │ └── Resources │ │ │ │ ├── Documents │ │ │ │ ├── Classes.html │ │ │ │ ├── Classes │ │ │ │ │ ├── AnyIdentifier.html │ │ │ │ │ ├── DefaultItemContentCoordinator.html │ │ │ │ │ ├── DynamicSource.html │ │ │ │ │ ├── Identifier.html │ │ │ │ │ ├── ItemContentCoordinatorActions.html │ │ │ │ │ ├── ItemContentCoordinatorInfo.html │ │ │ │ │ ├── ItemPreviewView.html │ │ │ │ │ ├── ListActions.html │ │ │ │ │ ├── ListActions │ │ │ │ │ │ ├── Scrolling.html │ │ │ │ │ │ └── ViewControllerTransitioning.html │ │ │ │ │ ├── ListLayoutContent.html │ │ │ │ │ ├── ListLayoutContent │ │ │ │ │ │ ├── ItemInfo.html │ │ │ │ │ │ ├── SectionInfo.html │ │ │ │ │ │ └── SupplementaryItemInfo.html │ │ │ │ │ ├── ListView.html │ │ │ │ │ ├── ListView │ │ │ │ │ │ └── ScrollViewInsets.html │ │ │ │ │ ├── ListViewController.html │ │ │ │ │ ├── ReorderingActions.html │ │ │ │ │ ├── ReorderingActions │ │ │ │ │ │ ├── AccessibilityMoveDirection.html │ │ │ │ │ │ └── Result.html │ │ │ │ │ ├── SourceState.html │ │ │ │ │ ├── StateAccessor.html │ │ │ │ │ ├── StaticSource.html │ │ │ │ │ └── StaticSource │ │ │ │ │ │ └── State.html │ │ │ │ ├── Enums.html │ │ │ │ ├── Enums │ │ │ │ │ ├── ApplyReason.html │ │ │ │ │ ├── AutoScrollAction.html │ │ │ │ │ ├── AutoScrollAction │ │ │ │ │ │ ├── Configuration.html │ │ │ │ │ │ ├── OnInsertedItem.html │ │ │ │ │ │ ├── Pin.html │ │ │ │ │ │ └── ScrollDestination.html │ │ │ │ │ ├── ContentFilters.html │ │ │ │ │ ├── ContentInsetAdjustmentBehavior.html │ │ │ │ │ ├── CustomWidth.html │ │ │ │ │ ├── CustomWidth │ │ │ │ │ │ ├── Alignment.html │ │ │ │ │ │ ├── Custom.html │ │ │ │ │ │ └── Position.html │ │ │ │ │ ├── ItemPosition.html │ │ │ │ │ ├── ItemSelectionStyle.html │ │ │ │ │ ├── KeyboardFrame.html │ │ │ │ │ ├── LayoutDirection.html │ │ │ │ │ ├── ListContentBoundsKey.html │ │ │ │ │ ├── ListHeaderPosition.html │ │ │ │ │ ├── ListPagingBehavior.html │ │ │ │ │ ├── ListableBuilder.html │ │ │ │ │ ├── PageScrollingBehavior.html │ │ │ │ │ ├── ReappliesToVisibleView.html │ │ │ │ │ ├── SectionPosition.html │ │ │ │ │ ├── Sizing.html │ │ │ │ │ ├── Sizing │ │ │ │ │ │ ├── Constraint.html │ │ │ │ │ │ ├── Constraint │ │ │ │ │ │ │ └── Axis.html │ │ │ │ │ │ └── MeasureInfo.html │ │ │ │ │ ├── SupplementaryKind.html │ │ │ │ │ ├── SwipeActionsViewStyleKey.html │ │ │ │ │ ├── ViewAnimation.html │ │ │ │ │ ├── ViewAnimation │ │ │ │ │ │ └── AnimationOptions.html │ │ │ │ │ └── WidthConstraint.html │ │ │ │ ├── Extensions.html │ │ │ │ ├── Extensions │ │ │ │ │ ├── ArrayDiff.html │ │ │ │ │ ├── PresentationState.html │ │ │ │ │ ├── SectionedDiff.html │ │ │ │ │ ├── SectionedDiff │ │ │ │ │ │ ├── ItemChanges.html │ │ │ │ │ │ └── SectionChanges.html │ │ │ │ │ ├── Set.html │ │ │ │ │ └── UIRectEdge.html │ │ │ │ ├── Functions.html │ │ │ │ ├── Protocols.html │ │ │ │ ├── Protocols │ │ │ │ │ ├── AnyHeaderFooter.html │ │ │ │ │ ├── AnyHeaderFooterConvertible.html │ │ │ │ │ ├── AnyHeaderFooter_Internal.html │ │ │ │ │ ├── AnyItem.html │ │ │ │ │ ├── AnyItemConvertible.html │ │ │ │ │ ├── AnyItem_Internal.html │ │ │ │ │ ├── AnyLayoutDescriptionConfiguration.html │ │ │ │ │ ├── AnyListLayout.html │ │ │ │ │ ├── AnyLocalizedCollatableItem.html │ │ │ │ │ ├── CollectionViewLayoutDelegate.html │ │ │ │ │ ├── HeaderFooterContent.html │ │ │ │ │ ├── HeaderFooterLayoutsValue.html │ │ │ │ │ ├── ItemContent.html │ │ │ │ │ ├── ItemContentCoordinator.html │ │ │ │ │ ├── ItemLayoutsValue.html │ │ │ │ │ ├── KeyboardCurrentFrameProvider.html │ │ │ │ │ ├── ListEnvironmentKey.html │ │ │ │ │ ├── ListLayout.html │ │ │ │ │ ├── ListLayoutAppearance.html │ │ │ │ │ ├── ListLayoutContentItem.html │ │ │ │ │ ├── ListViewSource.html │ │ │ │ │ ├── LocalizedCollatableItemContent.html │ │ │ │ │ └── SectionLayoutsValue.html │ │ │ │ ├── Structs.html │ │ │ │ ├── Structs │ │ │ │ │ ├── Appearance.html │ │ │ │ │ ├── ApplyHeaderFooterContentInfo.html │ │ │ │ │ ├── ApplyItemContentInfo.html │ │ │ │ │ ├── Behavior.html │ │ │ │ │ ├── Behavior │ │ │ │ │ │ ├── DecelerationRate.html │ │ │ │ │ │ ├── FocusConfiguration.html │ │ │ │ │ │ ├── KeyboardAdjustmentMode.html │ │ │ │ │ │ ├── ScrollsToTop.html │ │ │ │ │ │ ├── SelectionMode.html │ │ │ │ │ │ ├── Underflow.html │ │ │ │ │ │ ├── Underflow │ │ │ │ │ │ │ └── Alignment.html │ │ │ │ │ │ └── VerticalLayoutGravity.html │ │ │ │ │ ├── Color.html │ │ │ │ │ ├── Content.html │ │ │ │ │ ├── ContentContext.html │ │ │ │ │ ├── DefaultHeaderFooterProperties.html │ │ │ │ │ ├── DefaultItemProperties.html │ │ │ │ │ ├── EmbeddedList.html │ │ │ │ │ ├── EmbeddedList │ │ │ │ │ │ └── Sizing.html │ │ │ │ │ ├── EmptyHeaderFooterLayoutsValue.html │ │ │ │ │ ├── EmptyItemLayoutsValue.html │ │ │ │ │ ├── EmptySectionLayoutsValue.html │ │ │ │ │ ├── FlowAppearance.html │ │ │ │ │ ├── FlowAppearance │ │ │ │ │ │ ├── HeaderFooterLayout.html │ │ │ │ │ │ ├── ItemLayout.html │ │ │ │ │ │ ├── ItemLayout │ │ │ │ │ │ │ └── Width.html │ │ │ │ │ │ ├── ItemSizing.html │ │ │ │ │ │ ├── RowItemsAlignment.html │ │ │ │ │ │ ├── RowUnderflowAlignment.html │ │ │ │ │ │ ├── RowUnderflowAlignment │ │ │ │ │ │ │ └── FillLastRowAlignment.html │ │ │ │ │ │ ├── SectionLayout.html │ │ │ │ │ │ ├── Spacings.html │ │ │ │ │ │ └── Spacings │ │ │ │ │ │ │ └── InterSectionSpacing.html │ │ │ │ │ ├── HeaderFooter.html │ │ │ │ │ ├── HeaderFooter │ │ │ │ │ │ ├── OnDisplay.html │ │ │ │ │ │ └── OnEndDisplay.html │ │ │ │ │ ├── HeaderFooterContentViews.html │ │ │ │ │ ├── HeaderFooterLayouts.html │ │ │ │ │ ├── HorizontalPadding.html │ │ │ │ │ ├── Item.html │ │ │ │ │ ├── Item │ │ │ │ │ │ ├── OnDeselect.html │ │ │ │ │ │ ├── OnDisplay.html │ │ │ │ │ │ ├── OnEndDisplay.html │ │ │ │ │ │ ├── OnInsert.html │ │ │ │ │ │ ├── OnMove.html │ │ │ │ │ │ ├── OnRemove.html │ │ │ │ │ │ ├── OnSelect.html │ │ │ │ │ │ └── OnUpdate.html │ │ │ │ │ ├── ItemContentViews.html │ │ │ │ │ ├── ItemInsertAndRemoveAnimations.html │ │ │ │ │ ├── ItemLayouts.html │ │ │ │ │ ├── ItemPreview.html │ │ │ │ │ ├── ItemPreview │ │ │ │ │ │ └── Properties.html │ │ │ │ │ ├── ItemPreviewAppearance.html │ │ │ │ │ ├── ItemReordering.html │ │ │ │ │ ├── ItemReordering │ │ │ │ │ │ ├── GestureRecognizer.html │ │ │ │ │ │ ├── Result.html │ │ │ │ │ │ └── Sections.html │ │ │ │ │ ├── ItemState.html │ │ │ │ │ ├── LayoutDescription.html │ │ │ │ │ ├── LayoutDescription │ │ │ │ │ │ └── Configuration.html │ │ │ │ │ ├── ListAnimation.html │ │ │ │ │ ├── ListContentBounds.html │ │ │ │ │ ├── ListContentBounds │ │ │ │ │ │ └── Context.html │ │ │ │ │ ├── ListContentLayoutAttributes.html │ │ │ │ │ ├── ListEnvironment.html │ │ │ │ │ ├── ListLayoutAppearanceProperties.html │ │ │ │ │ ├── ListLayoutDefaults.html │ │ │ │ │ ├── ListLayoutLayoutContext.html │ │ │ │ │ ├── ListLayoutResult.html │ │ │ │ │ ├── ListLayoutScrollViewProperties.html │ │ │ │ │ ├── ListProperties.html │ │ │ │ │ ├── ListScrollPositionInfo.html │ │ │ │ │ ├── ListScrollPositionInfo │ │ │ │ │ │ └── VisibleItem.html │ │ │ │ │ ├── ListStateObserver.html │ │ │ │ │ ├── ListStateObserver │ │ │ │ │ │ ├── BeginDrag.html │ │ │ │ │ │ ├── ContentUpdated.html │ │ │ │ │ │ ├── ContentUpdated │ │ │ │ │ │ │ ├── InsertionsAndRemovals.html │ │ │ │ │ │ │ └── InsertionsAndRemovals │ │ │ │ │ │ │ │ └── ChangedIDs.html │ │ │ │ │ │ ├── DidEndDeceleration.html │ │ │ │ │ │ ├── DidEndScrollingAnimation.html │ │ │ │ │ │ ├── DidScroll.html │ │ │ │ │ │ ├── FrameChanged.html │ │ │ │ │ │ ├── ItemReordered.html │ │ │ │ │ │ ├── SelectionChanged.html │ │ │ │ │ │ └── VisibilityChanged.html │ │ │ │ │ ├── ListableLocalizedStrings.html │ │ │ │ │ ├── ListableLocalizedStrings │ │ │ │ │ │ └── ReorderGesture.html │ │ │ │ │ ├── LocalizedItemCollator.html │ │ │ │ │ ├── LocalizedItemCollator │ │ │ │ │ │ └── CollatedSection.html │ │ │ │ │ ├── MeasuredListSize.html │ │ │ │ │ ├── PagedAppearance.html │ │ │ │ │ ├── PagedAppearance │ │ │ │ │ │ ├── Peek.html │ │ │ │ │ │ └── Peek │ │ │ │ │ │ │ └── FirstItemConfiguration.html │ │ │ │ │ ├── RefreshControl.html │ │ │ │ │ ├── RefreshControl │ │ │ │ │ │ ├── OffsetAdjustmentBehavior.html │ │ │ │ │ │ └── Title.html │ │ │ │ │ ├── ScrollPosition.html │ │ │ │ │ ├── ScrollPosition │ │ │ │ │ │ ├── IfAlreadyVisible.html │ │ │ │ │ │ └── Position.html │ │ │ │ │ ├── Section.html │ │ │ │ │ ├── SectionLayouts.html │ │ │ │ │ ├── SectionReordering.html │ │ │ │ │ ├── SwipeAction.html │ │ │ │ │ ├── SwipeAction │ │ │ │ │ │ └── OnDidPerformActionAnimation.html │ │ │ │ │ ├── SwipeActionsConfiguration.html │ │ │ │ │ ├── SwipeActionsViewStyle.html │ │ │ │ │ ├── SwipeActionsViewStyle │ │ │ │ │ │ ├── ButtonSizing.html │ │ │ │ │ │ └── Shape.html │ │ │ │ │ ├── TableAppearance.html │ │ │ │ │ ├── TableAppearance │ │ │ │ │ │ ├── HeaderFooterLayout.html │ │ │ │ │ │ ├── ItemLayout.html │ │ │ │ │ │ ├── Layout.html │ │ │ │ │ │ ├── SectionLayout.html │ │ │ │ │ │ └── SectionLayout │ │ │ │ │ │ │ └── Columns.html │ │ │ │ │ ├── ViewProperties.html │ │ │ │ │ └── ViewProperties │ │ │ │ │ │ ├── CornerCurve.html │ │ │ │ │ │ ├── CornerStyle.html │ │ │ │ │ │ └── CornerStyle │ │ │ │ │ │ └── Corners.html │ │ │ │ ├── Typealiases.html │ │ │ │ ├── css │ │ │ │ │ ├── highlight.css │ │ │ │ │ └── jazzy.css │ │ │ │ ├── img │ │ │ │ │ ├── carat.png │ │ │ │ │ ├── dash.png │ │ │ │ │ ├── gh.png │ │ │ │ │ └── spinner.gif │ │ │ │ ├── index.html │ │ │ │ ├── js │ │ │ │ │ ├── jazzy.js │ │ │ │ │ ├── jazzy.search.js │ │ │ │ │ ├── jquery.min.js │ │ │ │ │ ├── lunr.min.js │ │ │ │ │ └── typeahead.jquery.js │ │ │ │ └── search.json │ │ │ │ └── docSet.dsidx │ │ └── Listable.tgz │ ├── img │ │ ├── carat.png │ │ ├── dash.png │ │ ├── gh.png │ │ └── spinner.gif │ ├── index.html │ ├── js │ │ ├── jazzy.js │ │ ├── jazzy.search.js │ │ ├── jquery.min.js │ │ ├── lunr.min.js │ │ └── typeahead.jquery.js │ ├── search.json │ └── undocumented.json └── ListableUI.yml └── version.rb /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/env.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/.github/workflows/env.properties -------------------------------------------------------------------------------- /.github/workflows/run_tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/.github/workflows/run_tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/.gitignore -------------------------------------------------------------------------------- /.mise.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/.mise.toml -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | 3.2.2 2 | -------------------------------------------------------------------------------- /BlueprintUILists/Sources/BlueprintHeaderFooterContent.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/BlueprintUILists/Sources/BlueprintHeaderFooterContent.swift -------------------------------------------------------------------------------- /BlueprintUILists/Sources/BlueprintItemContent.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/BlueprintUILists/Sources/BlueprintItemContent.swift -------------------------------------------------------------------------------- /BlueprintUILists/Sources/Deprecations.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/BlueprintUILists/Sources/Deprecations.swift -------------------------------------------------------------------------------- /BlueprintUILists/Sources/Exports.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/BlueprintUILists/Sources/Exports.swift -------------------------------------------------------------------------------- /BlueprintUILists/Sources/HeaderFooter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/BlueprintUILists/Sources/HeaderFooter.swift -------------------------------------------------------------------------------- /BlueprintUILists/Sources/Internal/Assertions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/BlueprintUILists/Sources/Internal/Assertions.swift -------------------------------------------------------------------------------- /BlueprintUILists/Sources/Item.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/BlueprintUILists/Sources/Item.swift -------------------------------------------------------------------------------- /BlueprintUILists/Sources/List.ContentContext.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/BlueprintUILists/Sources/List.ContentContext.swift -------------------------------------------------------------------------------- /BlueprintUILists/Sources/List.Measurement.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/BlueprintUILists/Sources/List.Measurement.swift -------------------------------------------------------------------------------- /BlueprintUILists/Sources/List.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/BlueprintUILists/Sources/List.swift -------------------------------------------------------------------------------- /BlueprintUILists/Sources/ListEnvironment+Blueprint.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/BlueprintUILists/Sources/ListEnvironment+Blueprint.swift -------------------------------------------------------------------------------- /BlueprintUILists/Sources/ListReorderGesture.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/BlueprintUILists/Sources/ListReorderGesture.swift -------------------------------------------------------------------------------- /BlueprintUILists/Tests/List.MeasurementTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/BlueprintUILists/Tests/List.MeasurementTests.swift -------------------------------------------------------------------------------- /BlueprintUILists/Tests/ListPerformanceTesting.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/BlueprintUILists/Tests/ListPerformanceTesting.swift -------------------------------------------------------------------------------- /BlueprintUILists/Tests/ListTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/BlueprintUILists/Tests/ListTests.swift -------------------------------------------------------------------------------- /BlueprintUILists/Tests/XCTestCaseAdditions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/BlueprintUILists/Tests/XCTestCaseAdditions.swift -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Development/Demo/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/Development/Demo/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Development/Demo/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/Development/Demo/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Development/Demo/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/Development/Demo/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Development/Demo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/Development/Demo/Info.plist -------------------------------------------------------------------------------- /Development/Internal/EnglishDictionary/Resources/dictionary.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/Development/Internal/EnglishDictionary/Resources/dictionary.json -------------------------------------------------------------------------------- /Development/Internal/EnglishDictionary/Sources/EnglishDictionary.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/Development/Internal/EnglishDictionary/Sources/EnglishDictionary.swift -------------------------------------------------------------------------------- /Development/Internal/Snapshot/Sources/Snapshot.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/Development/Internal/Snapshot/Sources/Snapshot.swift -------------------------------------------------------------------------------- /Development/Internal/Snapshot/Sources/SnapshotSettings.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/Development/Internal/Snapshot/Sources/SnapshotSettings.swift -------------------------------------------------------------------------------- /Development/Internal/Snapshot/Sources/ViewHierarchySnapshot.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/Development/Internal/Snapshot/Sources/ViewHierarchySnapshot.swift -------------------------------------------------------------------------------- /Development/Internal/Snapshot/Sources/ViewImageSnapshot.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/Development/Internal/Snapshot/Sources/ViewImageSnapshot.swift -------------------------------------------------------------------------------- /Development/Internal/Snapshot/Sources/ViewIterations.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/Development/Internal/Snapshot/Sources/ViewIterations.swift -------------------------------------------------------------------------------- /Development/Internal/Snapshot/Sources/iOSDevice.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/Development/Internal/Snapshot/Sources/iOSDevice.swift -------------------------------------------------------------------------------- /Development/Internal/Snapshot/Tests/Snapshot Results/SnapshotTests.swift/All/test_different_asset_fails()/TestOutput/Test.test.txt: -------------------------------------------------------------------------------- 1 | New -------------------------------------------------------------------------------- /Development/Internal/Snapshot/Tests/Snapshot Results/SnapshotTests.swift/All/test_identical_asset_passes()/TestOutput/Test.test.txt: -------------------------------------------------------------------------------- 1 | Result -------------------------------------------------------------------------------- /Development/Internal/Snapshot/Tests/Snapshot Results/SnapshotTests.swift/All/test_no_asset_writes_and_passes()/TestOutput/Test.test.txt: -------------------------------------------------------------------------------- 1 | Result -------------------------------------------------------------------------------- /Development/Internal/Snapshot/Tests/SnapshotSettingsTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/Development/Internal/Snapshot/Tests/SnapshotSettingsTests.swift -------------------------------------------------------------------------------- /Development/Internal/Snapshot/Tests/SnapshotTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/Development/Internal/Snapshot/Tests/SnapshotTests.swift -------------------------------------------------------------------------------- /Development/Project.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/Development/Project.swift -------------------------------------------------------------------------------- /Development/Resources/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/Development/Resources/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Development/Resources/Assets.xcassets/People/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/Development/Resources/Assets.xcassets/People/Contents.json -------------------------------------------------------------------------------- /Development/Resources/Assets.xcassets/People/kyle.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/Development/Resources/Assets.xcassets/People/kyle.imageset/Contents.json -------------------------------------------------------------------------------- /Development/Resources/Assets.xcassets/People/kyle.imageset/kyle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/Development/Resources/Assets.xcassets/People/kyle.imageset/kyle.png -------------------------------------------------------------------------------- /Development/Resources/Assets.xcassets/Podcasts/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/Development/Resources/Assets.xcassets/Podcasts/Contents.json -------------------------------------------------------------------------------- /Development/Resources/Assets.xcassets/Podcasts/are-we-there-yet.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/Development/Resources/Assets.xcassets/Podcasts/are-we-there-yet.imageset/Contents.json -------------------------------------------------------------------------------- /Development/Resources/Assets.xcassets/Podcasts/are-we-there-yet.imageset/are-we-there-yet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/Development/Resources/Assets.xcassets/Podcasts/are-we-there-yet.imageset/are-we-there-yet.png -------------------------------------------------------------------------------- /Development/Resources/Assets.xcassets/Podcasts/nancy.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/Development/Resources/Assets.xcassets/Podcasts/nancy.imageset/Contents.json -------------------------------------------------------------------------------- /Development/Resources/Assets.xcassets/Podcasts/nancy.imageset/nancy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/Development/Resources/Assets.xcassets/Podcasts/nancy.imageset/nancy.png -------------------------------------------------------------------------------- /Development/Resources/Assets.xcassets/Podcasts/outside-lands.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/Development/Resources/Assets.xcassets/Podcasts/outside-lands.imageset/Contents.json -------------------------------------------------------------------------------- /Development/Resources/Assets.xcassets/Podcasts/outside-lands.imageset/outside-lands.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/Development/Resources/Assets.xcassets/Podcasts/outside-lands.imageset/outside-lands.jpg -------------------------------------------------------------------------------- /Development/Resources/Assets.xcassets/Podcasts/planet-money.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/Development/Resources/Assets.xcassets/Podcasts/planet-money.imageset/Contents.json -------------------------------------------------------------------------------- /Development/Resources/Assets.xcassets/Podcasts/planet-money.imageset/planet-money.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/Development/Resources/Assets.xcassets/Podcasts/planet-money.imageset/planet-money.jpg -------------------------------------------------------------------------------- /Development/Resources/Assets.xcassets/Podcasts/the-impact.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/Development/Resources/Assets.xcassets/Podcasts/the-impact.imageset/Contents.json -------------------------------------------------------------------------------- /Development/Resources/Assets.xcassets/Podcasts/the-impact.imageset/the-impact.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/Development/Resources/Assets.xcassets/Podcasts/the-impact.imageset/the-impact.png -------------------------------------------------------------------------------- /Development/Resources/Assets.xcassets/Podcasts/this-american-life.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/Development/Resources/Assets.xcassets/Podcasts/this-american-life.imageset/Contents.json -------------------------------------------------------------------------------- /Development/Resources/Assets.xcassets/Podcasts/this-american-life.imageset/this-american-life.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/Development/Resources/Assets.xcassets/Podcasts/this-american-life.imageset/this-american-life.jpg -------------------------------------------------------------------------------- /Development/Resources/Assets.xcassets/Podcasts/wait-wait.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/Development/Resources/Assets.xcassets/Podcasts/wait-wait.imageset/Contents.json -------------------------------------------------------------------------------- /Development/Resources/Assets.xcassets/Podcasts/wait-wait.imageset/wait-wait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/Development/Resources/Assets.xcassets/Podcasts/wait-wait.imageset/wait-wait.png -------------------------------------------------------------------------------- /Development/Resources/Assets.xcassets/ReorderControl.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/Development/Resources/Assets.xcassets/ReorderControl.imageset/Contents.json -------------------------------------------------------------------------------- /Development/Resources/Assets.xcassets/ReorderControl.imageset/ReorderControl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/Development/Resources/Assets.xcassets/ReorderControl.imageset/ReorderControl.png -------------------------------------------------------------------------------- /Development/Resources/Assets.xcassets/ReorderControl.imageset/ReorderControl@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/Development/Resources/Assets.xcassets/ReorderControl.imageset/ReorderControl@2x.png -------------------------------------------------------------------------------- /Development/Resources/Assets.xcassets/ReorderControl.imageset/ReorderControl@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/Development/Resources/Assets.xcassets/ReorderControl.imageset/ReorderControl@3x.png -------------------------------------------------------------------------------- /Development/Resources/Assets.xcassets/bookmark.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/Development/Resources/Assets.xcassets/bookmark.imageset/Contents.json -------------------------------------------------------------------------------- /Development/Resources/Assets.xcassets/bookmark.imageset/bookmark.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/Development/Resources/Assets.xcassets/bookmark.imageset/bookmark.pdf -------------------------------------------------------------------------------- /Development/Sources/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/Development/Sources/AppDelegate.swift -------------------------------------------------------------------------------- /Development/Sources/Demos/BestPractices.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/Development/Sources/Demos/BestPractices.swift -------------------------------------------------------------------------------- /Development/Sources/Demos/Demo Screens/AccordionViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/Development/Sources/Demos/Demo Screens/AccordionViewController.swift -------------------------------------------------------------------------------- /Development/Sources/Demos/Demo Screens/AutoLayoutDemoViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/Development/Sources/Demos/Demo Screens/AutoLayoutDemoViewController.swift -------------------------------------------------------------------------------- /Development/Sources/Demos/Demo Screens/AutoScrollingViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/Development/Sources/Demos/Demo Screens/AutoScrollingViewController.swift -------------------------------------------------------------------------------- /Development/Sources/Demos/Demo Screens/AutoScrollingViewController2.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/Development/Sources/Demos/Demo Screens/AutoScrollingViewController2.swift -------------------------------------------------------------------------------- /Development/Sources/Demos/Demo Screens/AutoScrollingViewController3.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/Development/Sources/Demos/Demo Screens/AutoScrollingViewController3.swift -------------------------------------------------------------------------------- /Development/Sources/Demos/Demo Screens/BlueprintListDemoViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/Development/Sources/Demos/Demo Screens/BlueprintListDemoViewController.swift -------------------------------------------------------------------------------- /Development/Sources/Demos/Demo Screens/CarouselLayoutViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/Development/Sources/Demos/Demo Screens/CarouselLayoutViewController.swift -------------------------------------------------------------------------------- /Development/Sources/Demos/Demo Screens/CenterSnappingTableViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/Development/Sources/Demos/Demo Screens/CenterSnappingTableViewController.swift -------------------------------------------------------------------------------- /Development/Sources/Demos/Demo Screens/ChatDemoViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/Development/Sources/Demos/Demo Screens/ChatDemoViewController.swift -------------------------------------------------------------------------------- /Development/Sources/Demos/Demo Screens/CollectionViewAppearance.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/Development/Sources/Demos/Demo Screens/CollectionViewAppearance.swift -------------------------------------------------------------------------------- /Development/Sources/Demos/Demo Screens/CollectionViewBasicDemoViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/Development/Sources/Demos/Demo Screens/CollectionViewBasicDemoViewController.swift -------------------------------------------------------------------------------- /Development/Sources/Demos/Demo Screens/CoordinatorViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/Development/Sources/Demos/Demo Screens/CoordinatorViewController.swift -------------------------------------------------------------------------------- /Development/Sources/Demos/Demo Screens/FlowLayoutViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/Development/Sources/Demos/Demo Screens/FlowLayoutViewController.swift -------------------------------------------------------------------------------- /Development/Sources/Demos/Demo Screens/HorizontalLayoutViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/Development/Sources/Demos/Demo Screens/HorizontalLayoutViewController.swift -------------------------------------------------------------------------------- /Development/Sources/Demos/Demo Screens/IdentifierChangedViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/Development/Sources/Demos/Demo Screens/IdentifierChangedViewController.swift -------------------------------------------------------------------------------- /Development/Sources/Demos/Demo Screens/InvoicesPaymentScheduleDemoViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/Development/Sources/Demos/Demo Screens/InvoicesPaymentScheduleDemoViewController.swift -------------------------------------------------------------------------------- /Development/Sources/Demos/Demo Screens/ItemInsertAndRemoveAnimationsViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/Development/Sources/Demos/Demo Screens/ItemInsertAndRemoveAnimationsViewController.swift -------------------------------------------------------------------------------- /Development/Sources/Demos/Demo Screens/ItemizationEditorViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/Development/Sources/Demos/Demo Screens/ItemizationEditorViewController.swift -------------------------------------------------------------------------------- /Development/Sources/Demos/Demo Screens/KeyboardNavigationDemoViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/Development/Sources/Demos/Demo Screens/KeyboardNavigationDemoViewController.swift -------------------------------------------------------------------------------- /Development/Sources/Demos/Demo Screens/KeyboardTestingViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/Development/Sources/Demos/Demo Screens/KeyboardTestingViewController.swift -------------------------------------------------------------------------------- /Development/Sources/Demos/Demo Screens/ListAppearsAfterKeyboardViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/Development/Sources/Demos/Demo Screens/ListAppearsAfterKeyboardViewController.swift -------------------------------------------------------------------------------- /Development/Sources/Demos/Demo Screens/ListStateViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/Development/Sources/Demos/Demo Screens/ListStateViewController.swift -------------------------------------------------------------------------------- /Development/Sources/Demos/Demo Screens/LocalizedCollationViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/Development/Sources/Demos/Demo Screens/LocalizedCollationViewController.swift -------------------------------------------------------------------------------- /Development/Sources/Demos/Demo Screens/ManualSelectionManagementViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/Development/Sources/Demos/Demo Screens/ManualSelectionManagementViewController.swift -------------------------------------------------------------------------------- /Development/Sources/Demos/Demo Screens/MultiSelectViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/Development/Sources/Demos/Demo Screens/MultiSelectViewController.swift -------------------------------------------------------------------------------- /Development/Sources/Demos/Demo Screens/OnTapItemAnimationViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/Development/Sources/Demos/Demo Screens/OnTapItemAnimationViewController.swift -------------------------------------------------------------------------------- /Development/Sources/Demos/Demo Screens/PagedViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/Development/Sources/Demos/Demo Screens/PagedViewController.swift -------------------------------------------------------------------------------- /Development/Sources/Demos/Demo Screens/PaymentTypesViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/Development/Sources/Demos/Demo Screens/PaymentTypesViewController.swift -------------------------------------------------------------------------------- /Development/Sources/Demos/Demo Screens/PeekingPagedViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/Development/Sources/Demos/Demo Screens/PeekingPagedViewController.swift -------------------------------------------------------------------------------- /Development/Sources/Demos/Demo Screens/RefreshControlOffsetAdjustmentViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/Development/Sources/Demos/Demo Screens/RefreshControlOffsetAdjustmentViewController.swift -------------------------------------------------------------------------------- /Development/Sources/Demos/Demo Screens/ReorderingViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/Development/Sources/Demos/Demo Screens/ReorderingViewController.swift -------------------------------------------------------------------------------- /Development/Sources/Demos/Demo Screens/ScrollCompletionHandlerViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/Development/Sources/Demos/Demo Screens/ScrollCompletionHandlerViewController.swift -------------------------------------------------------------------------------- /Development/Sources/Demos/Demo Screens/ScrollViewEdgesPlaygroundViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/Development/Sources/Demos/Demo Screens/ScrollViewEdgesPlaygroundViewController.swift -------------------------------------------------------------------------------- /Development/Sources/Demos/Demo Screens/SearchableDictionaryViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/Development/Sources/Demos/Demo Screens/SearchableDictionaryViewController.swift -------------------------------------------------------------------------------- /Development/Sources/Demos/Demo Screens/SpacingCustomizationViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/Development/Sources/Demos/Demo Screens/SpacingCustomizationViewController.swift -------------------------------------------------------------------------------- /Development/Sources/Demos/Demo Screens/SupplementaryTestingViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/Development/Sources/Demos/Demo Screens/SupplementaryTestingViewController.swift -------------------------------------------------------------------------------- /Development/Sources/Demos/Demo Screens/SwipeActionsViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/Development/Sources/Demos/Demo Screens/SwipeActionsViewController.swift -------------------------------------------------------------------------------- /Development/Sources/Demos/Demo Screens/SystemFlowLayoutViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/Development/Sources/Demos/Demo Screens/SystemFlowLayoutViewController.swift -------------------------------------------------------------------------------- /Development/Sources/Demos/Demo Screens/UpdateFuzzingViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/Development/Sources/Demos/Demo Screens/UpdateFuzzingViewController.swift -------------------------------------------------------------------------------- /Development/Sources/Demos/Demo Screens/WidthCustomizationViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/Development/Sources/Demos/Demo Screens/WidthCustomizationViewController.swift -------------------------------------------------------------------------------- /Development/Sources/Demos/DemosRootViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/Development/Sources/Demos/DemosRootViewController.swift -------------------------------------------------------------------------------- /Development/Sources/Demos/XcodePreviewDemo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/Development/Sources/Demos/XcodePreviewDemo.swift -------------------------------------------------------------------------------- /Development/Test Targets/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/Development/Test Targets/Info.plist -------------------------------------------------------------------------------- /Development/Test Targets/Test_Targets.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/Development/Test Targets/Test_Targets.swift -------------------------------------------------------------------------------- /Development/Tuist/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/Development/Tuist/Package.resolved -------------------------------------------------------------------------------- /Development/Tuist/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/Development/Tuist/Package.swift -------------------------------------------------------------------------------- /Development/Workspace.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/Development/Workspace.swift -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/LICENSE -------------------------------------------------------------------------------- /ListableUI/Resources/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ListableUI/Resources/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/ListableUI/Resources/README.md -------------------------------------------------------------------------------- /ListableUI/Resources/ca-ES.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/ListableUI/Resources/ca-ES.lproj/Localizable.strings -------------------------------------------------------------------------------- /ListableUI/Resources/en-GB.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/ListableUI/Resources/en-GB.lproj/Localizable.strings -------------------------------------------------------------------------------- /ListableUI/Resources/en-IE.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/ListableUI/Resources/en-IE.lproj/Localizable.strings -------------------------------------------------------------------------------- /ListableUI/Resources/en-au.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/ListableUI/Resources/en-au.lproj/Localizable.strings -------------------------------------------------------------------------------- /ListableUI/Resources/en-ca.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/ListableUI/Resources/en-ca.lproj/Localizable.strings -------------------------------------------------------------------------------- /ListableUI/Resources/en.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/ListableUI/Resources/en.lproj/Localizable.strings -------------------------------------------------------------------------------- /ListableUI/Resources/es-ES.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/ListableUI/Resources/es-ES.lproj/Localizable.strings -------------------------------------------------------------------------------- /ListableUI/Resources/es.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/ListableUI/Resources/es.lproj/Localizable.strings -------------------------------------------------------------------------------- /ListableUI/Resources/fr-FR.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/ListableUI/Resources/fr-FR.lproj/Localizable.strings -------------------------------------------------------------------------------- /ListableUI/Resources/fr-ca.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/ListableUI/Resources/fr-ca.lproj/Localizable.strings -------------------------------------------------------------------------------- /ListableUI/Resources/ja.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/ListableUI/Resources/ja.lproj/Localizable.strings -------------------------------------------------------------------------------- /ListableUI/Resources/pt-PT.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/ListableUI/Resources/pt-PT.lproj/Localizable.strings -------------------------------------------------------------------------------- /ListableUI/Sources/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ListableUI/Sources/Appearance.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/ListableUI/Sources/Appearance.swift -------------------------------------------------------------------------------- /ListableUI/Sources/ApplyReason.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/ListableUI/Sources/ApplyReason.swift -------------------------------------------------------------------------------- /ListableUI/Sources/AutoScrollAction.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/ListableUI/Sources/AutoScrollAction.swift -------------------------------------------------------------------------------- /ListableUI/Sources/Behavior.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/ListableUI/Sources/Behavior.swift -------------------------------------------------------------------------------- /ListableUI/Sources/Bundle+ListableUI.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/ListableUI/Sources/Bundle+ListableUI.swift -------------------------------------------------------------------------------- /ListableUI/Sources/CacheClearer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/ListableUI/Sources/CacheClearer.swift -------------------------------------------------------------------------------- /ListableUI/Sources/Color.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/ListableUI/Sources/Color.swift -------------------------------------------------------------------------------- /ListableUI/Sources/Content.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/ListableUI/Sources/Content.swift -------------------------------------------------------------------------------- /ListableUI/Sources/ContentBounds/ListContentBounds.monopic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/ListableUI/Sources/ContentBounds/ListContentBounds.monopic -------------------------------------------------------------------------------- /ListableUI/Sources/ContentBounds/ListContentBounds.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/ListableUI/Sources/ContentBounds/ListContentBounds.swift -------------------------------------------------------------------------------- /ListableUI/Sources/ContentContext.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/ListableUI/Sources/ContentContext.swift -------------------------------------------------------------------------------- /ListableUI/Sources/ContentFilters.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/ListableUI/Sources/ContentFilters.swift -------------------------------------------------------------------------------- /ListableUI/Sources/ContentLayoutsStorage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/ListableUI/Sources/ContentLayoutsStorage.swift -------------------------------------------------------------------------------- /ListableUI/Sources/DebuggingAndLogging/SignpostLogger.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/ListableUI/Sources/DebuggingAndLogging/SignpostLogger.swift -------------------------------------------------------------------------------- /ListableUI/Sources/Deprecations.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/ListableUI/Sources/Deprecations.swift -------------------------------------------------------------------------------- /ListableUI/Sources/EmbeddedList.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/ListableUI/Sources/EmbeddedList.swift -------------------------------------------------------------------------------- /ListableUI/Sources/Environment/ListEnvironment.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/ListableUI/Sources/Environment/ListEnvironment.swift -------------------------------------------------------------------------------- /ListableUI/Sources/Environment/ListEnvironmentKey.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/ListableUI/Sources/Environment/ListEnvironmentKey.swift -------------------------------------------------------------------------------- /ListableUI/Sources/HeaderFooter/AnyHeaderFooter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/ListableUI/Sources/HeaderFooter/AnyHeaderFooter.swift -------------------------------------------------------------------------------- /ListableUI/Sources/HeaderFooter/AnyHeaderFooterConvertible.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/ListableUI/Sources/HeaderFooter/AnyHeaderFooterConvertible.swift -------------------------------------------------------------------------------- /ListableUI/Sources/HeaderFooter/DefaultHeaderFooterProperties.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/ListableUI/Sources/HeaderFooter/DefaultHeaderFooterProperties.swift -------------------------------------------------------------------------------- /ListableUI/Sources/HeaderFooter/HeaderFooter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/ListableUI/Sources/HeaderFooter/HeaderFooter.swift -------------------------------------------------------------------------------- /ListableUI/Sources/HeaderFooter/HeaderFooterCallbacks.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/ListableUI/Sources/HeaderFooter/HeaderFooterCallbacks.swift -------------------------------------------------------------------------------- /ListableUI/Sources/HeaderFooter/HeaderFooterContent.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/ListableUI/Sources/HeaderFooter/HeaderFooterContent.swift -------------------------------------------------------------------------------- /ListableUI/Sources/HeaderFooter/HeaderFooterLayouts.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/ListableUI/Sources/HeaderFooter/HeaderFooterLayouts.swift -------------------------------------------------------------------------------- /ListableUI/Sources/Identifier.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/ListableUI/Sources/Identifier.swift -------------------------------------------------------------------------------- /ListableUI/Sources/Internal/Array.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/ListableUI/Sources/Internal/Array.swift -------------------------------------------------------------------------------- /ListableUI/Sources/Internal/Assertions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/ListableUI/Sources/Internal/Assertions.swift -------------------------------------------------------------------------------- /ListableUI/Sources/Internal/CGRect.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/ListableUI/Sources/Internal/CGRect.swift -------------------------------------------------------------------------------- /ListableUI/Sources/Internal/CGSize.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/ListableUI/Sources/Internal/CGSize.swift -------------------------------------------------------------------------------- /ListableUI/Sources/Internal/Diff/ArrayDiff.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/ListableUI/Sources/Internal/Diff/ArrayDiff.swift -------------------------------------------------------------------------------- /ListableUI/Sources/Internal/Diff/SectionedDiff.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/ListableUI/Sources/Internal/Diff/SectionedDiff.swift -------------------------------------------------------------------------------- /ListableUI/Sources/Internal/DirectionalPanGestureRecognizer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/ListableUI/Sources/Internal/DirectionalPanGestureRecognizer.swift -------------------------------------------------------------------------------- /ListableUI/Sources/Internal/HeaderFooterContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/ListableUI/Sources/Internal/HeaderFooterContentView.swift -------------------------------------------------------------------------------- /ListableUI/Sources/Internal/ItemCell.ContentViewContainer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/ListableUI/Sources/Internal/ItemCell.ContentViewContainer.swift -------------------------------------------------------------------------------- /ListableUI/Sources/Internal/ItemCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/ListableUI/Sources/Internal/ItemCell.swift -------------------------------------------------------------------------------- /ListableUI/Sources/Internal/Modify.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/ListableUI/Sources/Internal/Modify.swift -------------------------------------------------------------------------------- /ListableUI/Sources/Internal/PresentationState/PresentationState.HeaderFooterState.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/ListableUI/Sources/Internal/PresentationState/PresentationState.HeaderFooterState.swift -------------------------------------------------------------------------------- /ListableUI/Sources/Internal/PresentationState/PresentationState.ItemState.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/ListableUI/Sources/Internal/PresentationState/PresentationState.ItemState.swift -------------------------------------------------------------------------------- /ListableUI/Sources/Internal/PresentationState/PresentationState.RefreshControl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/ListableUI/Sources/Internal/PresentationState/PresentationState.RefreshControl.swift -------------------------------------------------------------------------------- /ListableUI/Sources/Internal/PresentationState/PresentationState.SectionState.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/ListableUI/Sources/Internal/PresentationState/PresentationState.SectionState.swift -------------------------------------------------------------------------------- /ListableUI/Sources/Internal/PresentationState/PresentationState.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/ListableUI/Sources/Internal/PresentationState/PresentationState.swift -------------------------------------------------------------------------------- /ListableUI/Sources/Internal/ReusableViewCache.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/ListableUI/Sources/Internal/ReusableViewCache.swift -------------------------------------------------------------------------------- /ListableUI/Sources/Internal/ReuseIdentifier.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/ListableUI/Sources/Internal/ReuseIdentifier.swift -------------------------------------------------------------------------------- /ListableUI/Sources/Internal/SupplementaryContainerView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/ListableUI/Sources/Internal/SupplementaryContainerView.swift -------------------------------------------------------------------------------- /ListableUI/Sources/Internal/SwipeActionsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/ListableUI/Sources/Internal/SwipeActionsView.swift -------------------------------------------------------------------------------- /ListableUI/Sources/Internal/SwipeActionsViewStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/ListableUI/Sources/Internal/SwipeActionsViewStyle.swift -------------------------------------------------------------------------------- /ListableUI/Sources/Internal/TouchDownGestureRecognizer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/ListableUI/Sources/Internal/TouchDownGestureRecognizer.swift -------------------------------------------------------------------------------- /ListableUI/Sources/Internal/UIEdgeInsets.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/ListableUI/Sources/Internal/UIEdgeInsets.swift -------------------------------------------------------------------------------- /ListableUI/Sources/Internal/UIView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/ListableUI/Sources/Internal/UIView.swift -------------------------------------------------------------------------------- /ListableUI/Sources/Internal/UIViewPropertyAnimator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/ListableUI/Sources/Internal/UIViewPropertyAnimator.swift -------------------------------------------------------------------------------- /ListableUI/Sources/Internal/Validations.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/ListableUI/Sources/Internal/Validations.swift -------------------------------------------------------------------------------- /ListableUI/Sources/Item/AnyItem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/ListableUI/Sources/Item/AnyItem.swift -------------------------------------------------------------------------------- /ListableUI/Sources/Item/AnyItemConvertible.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/ListableUI/Sources/Item/AnyItemConvertible.swift -------------------------------------------------------------------------------- /ListableUI/Sources/Item/DefaultItemProperties.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/ListableUI/Sources/Item/DefaultItemProperties.swift -------------------------------------------------------------------------------- /ListableUI/Sources/Item/Item.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/ListableUI/Sources/Item/Item.swift -------------------------------------------------------------------------------- /ListableUI/Sources/Item/ItemCallbacks.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/ListableUI/Sources/Item/ItemCallbacks.swift -------------------------------------------------------------------------------- /ListableUI/Sources/Item/ItemContent.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/ListableUI/Sources/Item/ItemContent.swift -------------------------------------------------------------------------------- /ListableUI/Sources/Item/ItemContentCoordinator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/ListableUI/Sources/Item/ItemContentCoordinator.swift -------------------------------------------------------------------------------- /ListableUI/Sources/Item/ItemInsertAndRemoveAnimations.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/ListableUI/Sources/Item/ItemInsertAndRemoveAnimations.swift -------------------------------------------------------------------------------- /ListableUI/Sources/Item/ItemLayouts.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/ListableUI/Sources/Item/ItemLayouts.swift -------------------------------------------------------------------------------- /ListableUI/Sources/Item/ItemPosition.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/ListableUI/Sources/Item/ItemPosition.swift -------------------------------------------------------------------------------- /ListableUI/Sources/Item/ItemReordering.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/ListableUI/Sources/Item/ItemReordering.swift -------------------------------------------------------------------------------- /ListableUI/Sources/Item/ItemSelectionStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/ListableUI/Sources/Item/ItemSelectionStyle.swift -------------------------------------------------------------------------------- /ListableUI/Sources/Item/ItemState.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/ListableUI/Sources/Item/ItemState.swift -------------------------------------------------------------------------------- /ListableUI/Sources/KeyboardObserver/KeyboardObserver.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/ListableUI/Sources/KeyboardObserver/KeyboardObserver.swift -------------------------------------------------------------------------------- /ListableUI/Sources/KeyboardObserver/SetupKeyboardObserverOnAppStartup.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/ListableUI/Sources/KeyboardObserver/SetupKeyboardObserverOnAppStartup.m -------------------------------------------------------------------------------- /ListableUI/Sources/Layout/CollectionViewLayout.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/ListableUI/Sources/Layout/CollectionViewLayout.swift -------------------------------------------------------------------------------- /ListableUI/Sources/Layout/Flow/FlowAppearance.monopic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/ListableUI/Sources/Layout/Flow/FlowAppearance.monopic -------------------------------------------------------------------------------- /ListableUI/Sources/Layout/Flow/FlowListLayout.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/ListableUI/Sources/Layout/Flow/FlowListLayout.swift -------------------------------------------------------------------------------- /ListableUI/Sources/Layout/ListLayout/LayoutDescription.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/ListableUI/Sources/Layout/ListLayout/LayoutDescription.swift -------------------------------------------------------------------------------- /ListableUI/Sources/Layout/ListLayout/ListContentLayoutAttributes.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/ListableUI/Sources/Layout/ListLayout/ListContentLayoutAttributes.swift -------------------------------------------------------------------------------- /ListableUI/Sources/Layout/ListLayout/ListHeaderPosition.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/ListableUI/Sources/Layout/ListLayout/ListHeaderPosition.swift -------------------------------------------------------------------------------- /ListableUI/Sources/Layout/ListLayout/ListLayout+Layout.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/ListableUI/Sources/Layout/ListLayout/ListLayout+Layout.swift -------------------------------------------------------------------------------- /ListableUI/Sources/Layout/ListLayout/ListLayout.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/ListableUI/Sources/Layout/ListLayout/ListLayout.swift -------------------------------------------------------------------------------- /ListableUI/Sources/Layout/ListLayout/ListLayoutAppearance.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/ListableUI/Sources/Layout/ListLayout/ListLayoutAppearance.swift -------------------------------------------------------------------------------- /ListableUI/Sources/Layout/ListLayout/ListLayoutAttributes.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/ListableUI/Sources/Layout/ListLayout/ListLayoutAttributes.swift -------------------------------------------------------------------------------- /ListableUI/Sources/Layout/ListLayout/ListLayoutContent.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/ListableUI/Sources/Layout/ListLayout/ListLayoutContent.swift -------------------------------------------------------------------------------- /ListableUI/Sources/Layout/ListLayout/ListLayoutDefaults.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/ListableUI/Sources/Layout/ListLayout/ListLayoutDefaults.swift -------------------------------------------------------------------------------- /ListableUI/Sources/Layout/ListLayout/ListLayoutResult.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/ListableUI/Sources/Layout/ListLayout/ListLayoutResult.swift -------------------------------------------------------------------------------- /ListableUI/Sources/Layout/ListLayout/ListLayoutScrollViewProperties.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/ListableUI/Sources/Layout/ListLayout/ListLayoutScrollViewProperties.swift -------------------------------------------------------------------------------- /ListableUI/Sources/Layout/ListLayout/ListPagingBehavior.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/ListableUI/Sources/Layout/ListLayout/ListPagingBehavior.swift -------------------------------------------------------------------------------- /ListableUI/Sources/Layout/Paged/PagedAppearance.monopic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/ListableUI/Sources/Layout/Paged/PagedAppearance.monopic -------------------------------------------------------------------------------- /ListableUI/Sources/Layout/Paged/PagedListLayout.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/ListableUI/Sources/Layout/Paged/PagedListLayout.swift -------------------------------------------------------------------------------- /ListableUI/Sources/Layout/SupplementaryKind.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/ListableUI/Sources/Layout/SupplementaryKind.swift -------------------------------------------------------------------------------- /ListableUI/Sources/Layout/Table/TableAppearance.monopic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/ListableUI/Sources/Layout/Table/TableAppearance.monopic -------------------------------------------------------------------------------- /ListableUI/Sources/Layout/Table/TableListLayout.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/ListableUI/Sources/Layout/Table/TableListLayout.swift -------------------------------------------------------------------------------- /ListableUI/Sources/LayoutDirection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/ListableUI/Sources/LayoutDirection.swift -------------------------------------------------------------------------------- /ListableUI/Sources/ListActions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/ListableUI/Sources/ListActions.swift -------------------------------------------------------------------------------- /ListableUI/Sources/ListAnimation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/ListableUI/Sources/ListAnimation.swift -------------------------------------------------------------------------------- /ListableUI/Sources/ListProperties.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/ListableUI/Sources/ListProperties.swift -------------------------------------------------------------------------------- /ListableUI/Sources/ListScrollPositionInfo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/ListableUI/Sources/ListScrollPositionInfo.swift -------------------------------------------------------------------------------- /ListableUI/Sources/ListStateObserver.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/ListableUI/Sources/ListStateObserver.swift -------------------------------------------------------------------------------- /ListableUI/Sources/ListView/ListChangesQueue.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/ListableUI/Sources/ListView/ListChangesQueue.swift -------------------------------------------------------------------------------- /ListableUI/Sources/ListView/ListView+ContentSize.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/ListableUI/Sources/ListView/ListView+ContentSize.swift -------------------------------------------------------------------------------- /ListableUI/Sources/ListView/ListView+iOS16.4Workaround.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/ListableUI/Sources/ListView/ListView+iOS16.4Workaround.swift -------------------------------------------------------------------------------- /ListableUI/Sources/ListView/ListView.CollectionViewChanges.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/ListableUI/Sources/ListView/ListView.CollectionViewChanges.swift -------------------------------------------------------------------------------- /ListableUI/Sources/ListView/ListView.DataSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/ListableUI/Sources/ListView/ListView.DataSource.swift -------------------------------------------------------------------------------- /ListableUI/Sources/ListView/ListView.Delegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/ListableUI/Sources/ListView/ListView.Delegate.swift -------------------------------------------------------------------------------- /ListableUI/Sources/ListView/ListView.LayoutManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/ListableUI/Sources/ListView/ListView.LayoutManager.swift -------------------------------------------------------------------------------- /ListableUI/Sources/ListView/ListView.Storage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/ListableUI/Sources/ListView/ListView.Storage.swift -------------------------------------------------------------------------------- /ListableUI/Sources/ListView/ListView.VisibleContent.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/ListableUI/Sources/ListView/ListView.VisibleContent.swift -------------------------------------------------------------------------------- /ListableUI/Sources/ListView/ListView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/ListableUI/Sources/ListView/ListView.swift -------------------------------------------------------------------------------- /ListableUI/Sources/ListView/UpdateCallbacks.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/ListableUI/Sources/ListView/UpdateCallbacks.swift -------------------------------------------------------------------------------- /ListableUI/Sources/ListViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/ListableUI/Sources/ListViewController.swift -------------------------------------------------------------------------------- /ListableUI/Sources/ListViewSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/ListableUI/Sources/ListViewSource.swift -------------------------------------------------------------------------------- /ListableUI/Sources/ListableBuilder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/ListableUI/Sources/ListableBuilder.swift -------------------------------------------------------------------------------- /ListableUI/Sources/ListableLocalizedStrings.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/ListableUI/Sources/ListableLocalizedStrings.swift -------------------------------------------------------------------------------- /ListableUI/Sources/LocalizedItemCollator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/ListableUI/Sources/LocalizedItemCollator.swift -------------------------------------------------------------------------------- /ListableUI/Sources/Previews/ItemPreview.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/ListableUI/Sources/Previews/ItemPreview.swift -------------------------------------------------------------------------------- /ListableUI/Sources/Previews/ItemPreviewAppearance.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/ListableUI/Sources/Previews/ItemPreviewAppearance.swift -------------------------------------------------------------------------------- /ListableUI/Sources/Previews/ItemPreviewView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/ListableUI/Sources/Previews/ItemPreviewView.swift -------------------------------------------------------------------------------- /ListableUI/Sources/ReappliesToVisibleView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/ListableUI/Sources/ReappliesToVisibleView.swift -------------------------------------------------------------------------------- /ListableUI/Sources/RefreshControl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/ListableUI/Sources/RefreshControl.swift -------------------------------------------------------------------------------- /ListableUI/Sources/ReorderingActions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/ListableUI/Sources/ReorderingActions.swift -------------------------------------------------------------------------------- /ListableUI/Sources/ScrollPosition.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/ListableUI/Sources/ScrollPosition.swift -------------------------------------------------------------------------------- /ListableUI/Sources/Section/Section.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/ListableUI/Sources/Section/Section.swift -------------------------------------------------------------------------------- /ListableUI/Sources/Section/SectionLayouts.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/ListableUI/Sources/Section/SectionLayouts.swift -------------------------------------------------------------------------------- /ListableUI/Sources/Section/SectionPosition.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/ListableUI/Sources/Section/SectionPosition.swift -------------------------------------------------------------------------------- /ListableUI/Sources/Section/SectionReordering.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/ListableUI/Sources/Section/SectionReordering.swift -------------------------------------------------------------------------------- /ListableUI/Sources/Sizing.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/ListableUI/Sources/Sizing.swift -------------------------------------------------------------------------------- /ListableUI/Sources/SwipeActionsConfiguration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/ListableUI/Sources/SwipeActionsConfiguration.swift -------------------------------------------------------------------------------- /ListableUI/Sources/UIScrollView+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/ListableUI/Sources/UIScrollView+Extensions.swift -------------------------------------------------------------------------------- /ListableUI/Sources/ViewAnimation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/ListableUI/Sources/ViewAnimation.swift -------------------------------------------------------------------------------- /ListableUI/Sources/ViewProperties.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/ListableUI/Sources/ViewProperties.swift -------------------------------------------------------------------------------- /ListableUI/Tests/AppearanceTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/ListableUI/Tests/AppearanceTests.swift -------------------------------------------------------------------------------- /ListableUI/Tests/ApplyReasonTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/ListableUI/Tests/ApplyReasonTests.swift -------------------------------------------------------------------------------- /ListableUI/Tests/BehaviorTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/ListableUI/Tests/BehaviorTests.swift -------------------------------------------------------------------------------- /ListableUI/Tests/CacheClearerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/ListableUI/Tests/CacheClearerTests.swift -------------------------------------------------------------------------------- /ListableUI/Tests/ColorTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/ListableUI/Tests/ColorTests.swift -------------------------------------------------------------------------------- /ListableUI/Tests/ContentFiltersTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/ListableUI/Tests/ContentFiltersTests.swift -------------------------------------------------------------------------------- /ListableUI/Tests/ContentTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/ListableUI/Tests/ContentTests.swift -------------------------------------------------------------------------------- /ListableUI/Tests/Debugging and Logging/SignpostLoggerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/ListableUI/Tests/Debugging and Logging/SignpostLoggerTests.swift -------------------------------------------------------------------------------- /ListableUI/Tests/EmbeddedListTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/ListableUI/Tests/EmbeddedListTests.swift -------------------------------------------------------------------------------- /ListableUI/Tests/Fixtures/ListLayoutDefaults+Fixtures.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/ListableUI/Tests/Fixtures/ListLayoutDefaults+Fixtures.swift -------------------------------------------------------------------------------- /ListableUI/Tests/Fixtures/PresentationState+Fixtures.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/ListableUI/Tests/Fixtures/PresentationState+Fixtures.swift -------------------------------------------------------------------------------- /ListableUI/Tests/HeaderFooter/HeaderFooterTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/ListableUI/Tests/HeaderFooter/HeaderFooterTests.swift -------------------------------------------------------------------------------- /ListableUI/Tests/IdentifierTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/ListableUI/Tests/IdentifierTests.swift -------------------------------------------------------------------------------- /ListableUI/Tests/Internal/ArrayTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/ListableUI/Tests/Internal/ArrayTests.swift -------------------------------------------------------------------------------- /ListableUI/Tests/Internal/CGRectTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/ListableUI/Tests/Internal/CGRectTests.swift -------------------------------------------------------------------------------- /ListableUI/Tests/Internal/CGSizeTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/ListableUI/Tests/Internal/CGSizeTests.swift -------------------------------------------------------------------------------- /ListableUI/Tests/Internal/Diff/ArrayDiffTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/ListableUI/Tests/Internal/Diff/ArrayDiffTests.swift -------------------------------------------------------------------------------- /ListableUI/Tests/Internal/Diff/DiffPerformanceTesting.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/ListableUI/Tests/Internal/Diff/DiffPerformanceTesting.swift -------------------------------------------------------------------------------- /ListableUI/Tests/Internal/Diff/SectionedDiffTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/ListableUI/Tests/Internal/Diff/SectionedDiffTests.swift -------------------------------------------------------------------------------- /ListableUI/Tests/Internal/Diff/StableRNG.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/ListableUI/Tests/Internal/Diff/StableRNG.swift -------------------------------------------------------------------------------- /ListableUI/Tests/Internal/ItemCellTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/ListableUI/Tests/Internal/ItemCellTests.swift -------------------------------------------------------------------------------- /ListableUI/Tests/Internal/KeyboardObserverTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/ListableUI/Tests/Internal/KeyboardObserverTests.swift -------------------------------------------------------------------------------- /ListableUI/Tests/Internal/Presentation State/PresentationState.HeaderFooterStateTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/ListableUI/Tests/Internal/Presentation State/PresentationState.HeaderFooterStateTests.swift -------------------------------------------------------------------------------- /ListableUI/Tests/Internal/Presentation State/PresentationState.ItemStateTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/ListableUI/Tests/Internal/Presentation State/PresentationState.ItemStateTests.swift -------------------------------------------------------------------------------- /ListableUI/Tests/Internal/Presentation State/PresentationState.SectionStateTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/ListableUI/Tests/Internal/Presentation State/PresentationState.SectionStateTests.swift -------------------------------------------------------------------------------- /ListableUI/Tests/Internal/Presentation State/PresentationStateTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/ListableUI/Tests/Internal/Presentation State/PresentationStateTests.swift -------------------------------------------------------------------------------- /ListableUI/Tests/Internal/ReusableViewCacheTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/ListableUI/Tests/Internal/ReusableViewCacheTests.swift -------------------------------------------------------------------------------- /ListableUI/Tests/Internal/ReuseIdentifierTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/ListableUI/Tests/Internal/ReuseIdentifierTests.swift -------------------------------------------------------------------------------- /ListableUI/Tests/Internal/SupplementaryContainerViewTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/ListableUI/Tests/Internal/SupplementaryContainerViewTests.swift -------------------------------------------------------------------------------- /ListableUI/Tests/Internal/UIViewTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/ListableUI/Tests/Internal/UIViewTests.swift -------------------------------------------------------------------------------- /ListableUI/Tests/Item/ItemContentCoordinatorTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/ListableUI/Tests/Item/ItemContentCoordinatorTests.swift -------------------------------------------------------------------------------- /ListableUI/Tests/Item/ItemContentTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/ListableUI/Tests/Item/ItemContentTests.swift -------------------------------------------------------------------------------- /ListableUI/Tests/Item/ItemReorderingTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/ListableUI/Tests/Item/ItemReorderingTests.swift -------------------------------------------------------------------------------- /ListableUI/Tests/Item/ItemTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/ListableUI/Tests/Item/ItemTests.swift -------------------------------------------------------------------------------- /ListableUI/Tests/Layout/Flow/FlowListLayoutTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/ListableUI/Tests/Layout/Flow/FlowListLayoutTests.swift -------------------------------------------------------------------------------- /ListableUI/Tests/Layout/LayoutAttributesSnapshot.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/ListableUI/Tests/Layout/LayoutAttributesSnapshot.swift -------------------------------------------------------------------------------- /ListableUI/Tests/Layout/ListLayout/LayoutDescriptionTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/ListableUI/Tests/Layout/ListLayout/LayoutDescriptionTests.swift -------------------------------------------------------------------------------- /ListableUI/Tests/Layout/ListLayout/ListLayoutContentTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/ListableUI/Tests/Layout/ListLayout/ListLayoutContentTests.swift -------------------------------------------------------------------------------- /ListableUI/Tests/Layout/ListLayout/ListLayoutScrollViewPropertiesTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/ListableUI/Tests/Layout/ListLayout/ListLayoutScrollViewPropertiesTests.swift -------------------------------------------------------------------------------- /ListableUI/Tests/Layout/ListLayout/ListLayoutTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/ListableUI/Tests/Layout/ListLayout/ListLayoutTests.swift -------------------------------------------------------------------------------- /ListableUI/Tests/Layout/Paged/PagedListLayoutTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/ListableUI/Tests/Layout/Paged/PagedListLayoutTests.swift -------------------------------------------------------------------------------- /ListableUI/Tests/Layout/Table/TableListLayoutTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/ListableUI/Tests/Layout/Table/TableListLayoutTests.swift -------------------------------------------------------------------------------- /ListableUI/Tests/LayoutDirectionTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/ListableUI/Tests/LayoutDirectionTests.swift -------------------------------------------------------------------------------- /ListableUI/Tests/ListPropertiesTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/ListableUI/Tests/ListPropertiesTests.swift -------------------------------------------------------------------------------- /ListableUI/Tests/ListScrollPositionInfoTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/ListableUI/Tests/ListScrollPositionInfoTests.swift -------------------------------------------------------------------------------- /ListableUI/Tests/ListStateObserverTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/ListableUI/Tests/ListStateObserverTests.swift -------------------------------------------------------------------------------- /ListableUI/Tests/ListView/ListChangesQueueTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/ListableUI/Tests/ListView/ListChangesQueueTests.swift -------------------------------------------------------------------------------- /ListableUI/Tests/ListView/ListView+ContentSizeTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/ListableUI/Tests/ListView/ListView+ContentSizeTests.swift -------------------------------------------------------------------------------- /ListableUI/Tests/ListView/ListView.DataSourceTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/ListableUI/Tests/ListView/ListView.DataSourceTests.swift -------------------------------------------------------------------------------- /ListableUI/Tests/ListView/ListView.DelegateTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/ListableUI/Tests/ListView/ListView.DelegateTests.swift -------------------------------------------------------------------------------- /ListableUI/Tests/ListView/ListView.LayoutManagerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/ListableUI/Tests/ListView/ListView.LayoutManagerTests.swift -------------------------------------------------------------------------------- /ListableUI/Tests/ListView/ListView.StorageTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/ListableUI/Tests/ListView/ListView.StorageTests.swift -------------------------------------------------------------------------------- /ListableUI/Tests/ListView/ListView.VisibleContentTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/ListableUI/Tests/ListView/ListView.VisibleContentTests.swift -------------------------------------------------------------------------------- /ListableUI/Tests/ListView/ListViewPerformanceTesting.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/ListableUI/Tests/ListView/ListViewPerformanceTesting.swift -------------------------------------------------------------------------------- /ListableUI/Tests/ListView/ListViewTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/ListableUI/Tests/ListView/ListViewTests.swift -------------------------------------------------------------------------------- /ListableUI/Tests/ListView/UpdateCallbacksTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/ListableUI/Tests/ListView/UpdateCallbacksTests.swift -------------------------------------------------------------------------------- /ListableUI/Tests/ListViewSourceTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/ListableUI/Tests/ListViewSourceTests.swift -------------------------------------------------------------------------------- /ListableUI/Tests/ListableBuilderTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/ListableUI/Tests/ListableBuilderTests.swift -------------------------------------------------------------------------------- /ListableUI/Tests/LocalizedItemCollatorTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/ListableUI/Tests/LocalizedItemCollatorTests.swift -------------------------------------------------------------------------------- /ListableUI/Tests/Previews/ItemPreviewAppearanceTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/ListableUI/Tests/Previews/ItemPreviewAppearanceTests.swift -------------------------------------------------------------------------------- /ListableUI/Tests/Previews/ItemPreviewViewTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/ListableUI/Tests/Previews/ItemPreviewViewTests.swift -------------------------------------------------------------------------------- /ListableUI/Tests/ReappliesToVisibleViewTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/ListableUI/Tests/ReappliesToVisibleViewTests.swift -------------------------------------------------------------------------------- /ListableUI/Tests/RefreshControlTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/ListableUI/Tests/RefreshControlTests.swift -------------------------------------------------------------------------------- /ListableUI/Tests/ReorderingActionsTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/ListableUI/Tests/ReorderingActionsTests.swift -------------------------------------------------------------------------------- /ListableUI/Tests/Resources/random_numbers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/ListableUI/Tests/Resources/random_numbers.json -------------------------------------------------------------------------------- /ListableUI/Tests/ScrollPositionTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/ListableUI/Tests/ScrollPositionTests.swift -------------------------------------------------------------------------------- /ListableUI/Tests/SizingTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/ListableUI/Tests/SizingTests.swift -------------------------------------------------------------------------------- /ListableUI/Tests/SwipeActionsTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/ListableUI/Tests/SwipeActionsTests.swift -------------------------------------------------------------------------------- /ListableUI/Tests/UITestHost/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/ListableUI/Tests/UITestHost/AppDelegate.swift -------------------------------------------------------------------------------- /ListableUI/Tests/XCTestCaseAdditions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/ListableUI/Tests/XCTestCaseAdditions.swift -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/README.md -------------------------------------------------------------------------------- /RELEASING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/RELEASING.md -------------------------------------------------------------------------------- /Resources/en.lproj/Localizable.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Scripts/extract_english_strings.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/Scripts/extract_english_strings.sh -------------------------------------------------------------------------------- /Scripts/generate_docs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/Scripts/generate_docs.sh -------------------------------------------------------------------------------- /Scripts/release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/Scripts/release.sh -------------------------------------------------------------------------------- /Scripts/tag_release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/Scripts/tag_release.sh -------------------------------------------------------------------------------- /Section/SectionReorderingTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/Section/SectionReorderingTests.swift -------------------------------------------------------------------------------- /Section/SectionTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/Section/SectionTests.swift -------------------------------------------------------------------------------- /TASKLIST.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/TASKLIST.md -------------------------------------------------------------------------------- /docs/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/BlueprintLists/Enums.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/BlueprintLists/Enums.html -------------------------------------------------------------------------------- /docs/BlueprintLists/Enums/ListContentContextKey.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/BlueprintLists/Enums/ListContentContextKey.html -------------------------------------------------------------------------------- /docs/BlueprintLists/Extensions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/BlueprintLists/Extensions.html -------------------------------------------------------------------------------- /docs/BlueprintLists/Extensions/Element.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/BlueprintLists/Extensions/Element.html -------------------------------------------------------------------------------- /docs/BlueprintLists/Extensions/Environment.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/BlueprintLists/Extensions/Environment.html -------------------------------------------------------------------------------- /docs/BlueprintLists/Functions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/BlueprintLists/Functions.html -------------------------------------------------------------------------------- /docs/BlueprintLists/Protocols.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/BlueprintLists/Protocols.html -------------------------------------------------------------------------------- /docs/BlueprintLists/Protocols/BlueprintHeaderFooterContent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/BlueprintLists/Protocols/BlueprintHeaderFooterContent.html -------------------------------------------------------------------------------- /docs/BlueprintLists/Protocols/BlueprintItemContent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/BlueprintLists/Protocols/BlueprintItemContent.html -------------------------------------------------------------------------------- /docs/BlueprintLists/Structs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/BlueprintLists/Structs.html -------------------------------------------------------------------------------- /docs/BlueprintLists/Structs/ElementHeaderFooterContent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/BlueprintLists/Structs/ElementHeaderFooterContent.html -------------------------------------------------------------------------------- /docs/BlueprintLists/Structs/ElementItemContent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/BlueprintLists/Structs/ElementItemContent.html -------------------------------------------------------------------------------- /docs/BlueprintLists/Structs/List.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/BlueprintLists/Structs/List.html -------------------------------------------------------------------------------- /docs/BlueprintLists/Structs/List/Measurement.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/BlueprintLists/Structs/List/Measurement.html -------------------------------------------------------------------------------- /docs/BlueprintLists/Structs/List/Measurement/FillRule.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/BlueprintLists/Structs/List/Measurement/FillRule.html -------------------------------------------------------------------------------- /docs/BlueprintLists/Structs/List/Measurement/SafeArea.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/BlueprintLists/Structs/List/Measurement/SafeArea.html -------------------------------------------------------------------------------- /docs/BlueprintLists/Structs/ListReorderGesture.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/BlueprintLists/Structs/ListReorderGesture.html -------------------------------------------------------------------------------- /docs/BlueprintLists/Structs/ListReorderGesture/Begins.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/BlueprintLists/Structs/ListReorderGesture/Begins.html -------------------------------------------------------------------------------- /docs/BlueprintLists/Typealiases.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/BlueprintLists/Typealiases.html -------------------------------------------------------------------------------- /docs/BlueprintLists/badge.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/BlueprintLists/badge.svg -------------------------------------------------------------------------------- /docs/BlueprintLists/css/highlight.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/BlueprintLists/css/highlight.css -------------------------------------------------------------------------------- /docs/BlueprintLists/css/jazzy.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/BlueprintLists/css/jazzy.css -------------------------------------------------------------------------------- /docs/BlueprintLists/docsets/BlueprintLists.docset/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/BlueprintLists/docsets/BlueprintLists.docset/Contents/Info.plist -------------------------------------------------------------------------------- /docs/BlueprintLists/docsets/BlueprintLists.docset/Contents/Resources/Documents/Enums.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/BlueprintLists/docsets/BlueprintLists.docset/Contents/Resources/Documents/Enums.html -------------------------------------------------------------------------------- /docs/BlueprintLists/docsets/BlueprintLists.docset/Contents/Resources/Documents/Extensions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/BlueprintLists/docsets/BlueprintLists.docset/Contents/Resources/Documents/Extensions.html -------------------------------------------------------------------------------- /docs/BlueprintLists/docsets/BlueprintLists.docset/Contents/Resources/Documents/Functions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/BlueprintLists/docsets/BlueprintLists.docset/Contents/Resources/Documents/Functions.html -------------------------------------------------------------------------------- /docs/BlueprintLists/docsets/BlueprintLists.docset/Contents/Resources/Documents/Protocols.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/BlueprintLists/docsets/BlueprintLists.docset/Contents/Resources/Documents/Protocols.html -------------------------------------------------------------------------------- /docs/BlueprintLists/docsets/BlueprintLists.docset/Contents/Resources/Documents/Structs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/BlueprintLists/docsets/BlueprintLists.docset/Contents/Resources/Documents/Structs.html -------------------------------------------------------------------------------- /docs/BlueprintLists/docsets/BlueprintLists.docset/Contents/Resources/Documents/Structs/List.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/BlueprintLists/docsets/BlueprintLists.docset/Contents/Resources/Documents/Structs/List.html -------------------------------------------------------------------------------- /docs/BlueprintLists/docsets/BlueprintLists.docset/Contents/Resources/Documents/Typealiases.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/BlueprintLists/docsets/BlueprintLists.docset/Contents/Resources/Documents/Typealiases.html -------------------------------------------------------------------------------- /docs/BlueprintLists/docsets/BlueprintLists.docset/Contents/Resources/Documents/css/highlight.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/BlueprintLists/docsets/BlueprintLists.docset/Contents/Resources/Documents/css/highlight.css -------------------------------------------------------------------------------- /docs/BlueprintLists/docsets/BlueprintLists.docset/Contents/Resources/Documents/css/jazzy.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/BlueprintLists/docsets/BlueprintLists.docset/Contents/Resources/Documents/css/jazzy.css -------------------------------------------------------------------------------- /docs/BlueprintLists/docsets/BlueprintLists.docset/Contents/Resources/Documents/img/carat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/BlueprintLists/docsets/BlueprintLists.docset/Contents/Resources/Documents/img/carat.png -------------------------------------------------------------------------------- /docs/BlueprintLists/docsets/BlueprintLists.docset/Contents/Resources/Documents/img/dash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/BlueprintLists/docsets/BlueprintLists.docset/Contents/Resources/Documents/img/dash.png -------------------------------------------------------------------------------- /docs/BlueprintLists/docsets/BlueprintLists.docset/Contents/Resources/Documents/img/gh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/BlueprintLists/docsets/BlueprintLists.docset/Contents/Resources/Documents/img/gh.png -------------------------------------------------------------------------------- /docs/BlueprintLists/docsets/BlueprintLists.docset/Contents/Resources/Documents/img/spinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/BlueprintLists/docsets/BlueprintLists.docset/Contents/Resources/Documents/img/spinner.gif -------------------------------------------------------------------------------- /docs/BlueprintLists/docsets/BlueprintLists.docset/Contents/Resources/Documents/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/BlueprintLists/docsets/BlueprintLists.docset/Contents/Resources/Documents/index.html -------------------------------------------------------------------------------- /docs/BlueprintLists/docsets/BlueprintLists.docset/Contents/Resources/Documents/js/jazzy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/BlueprintLists/docsets/BlueprintLists.docset/Contents/Resources/Documents/js/jazzy.js -------------------------------------------------------------------------------- /docs/BlueprintLists/docsets/BlueprintLists.docset/Contents/Resources/Documents/js/jazzy.search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/BlueprintLists/docsets/BlueprintLists.docset/Contents/Resources/Documents/js/jazzy.search.js -------------------------------------------------------------------------------- /docs/BlueprintLists/docsets/BlueprintLists.docset/Contents/Resources/Documents/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/BlueprintLists/docsets/BlueprintLists.docset/Contents/Resources/Documents/js/jquery.min.js -------------------------------------------------------------------------------- /docs/BlueprintLists/docsets/BlueprintLists.docset/Contents/Resources/Documents/js/lunr.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/BlueprintLists/docsets/BlueprintLists.docset/Contents/Resources/Documents/js/lunr.min.js -------------------------------------------------------------------------------- /docs/BlueprintLists/docsets/BlueprintLists.docset/Contents/Resources/Documents/search.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/BlueprintLists/docsets/BlueprintLists.docset/Contents/Resources/Documents/search.json -------------------------------------------------------------------------------- /docs/BlueprintLists/docsets/BlueprintLists.docset/Contents/Resources/docSet.dsidx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/BlueprintLists/docsets/BlueprintLists.docset/Contents/Resources/docSet.dsidx -------------------------------------------------------------------------------- /docs/BlueprintLists/docsets/BlueprintLists.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/BlueprintLists/docsets/BlueprintLists.tgz -------------------------------------------------------------------------------- /docs/BlueprintLists/img/carat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/BlueprintLists/img/carat.png -------------------------------------------------------------------------------- /docs/BlueprintLists/img/dash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/BlueprintLists/img/dash.png -------------------------------------------------------------------------------- /docs/BlueprintLists/img/gh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/BlueprintLists/img/gh.png -------------------------------------------------------------------------------- /docs/BlueprintLists/img/spinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/BlueprintLists/img/spinner.gif -------------------------------------------------------------------------------- /docs/BlueprintLists/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/BlueprintLists/index.html -------------------------------------------------------------------------------- /docs/BlueprintLists/js/jazzy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/BlueprintLists/js/jazzy.js -------------------------------------------------------------------------------- /docs/BlueprintLists/js/jazzy.search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/BlueprintLists/js/jazzy.search.js -------------------------------------------------------------------------------- /docs/BlueprintLists/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/BlueprintLists/js/jquery.min.js -------------------------------------------------------------------------------- /docs/BlueprintLists/js/lunr.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/BlueprintLists/js/lunr.min.js -------------------------------------------------------------------------------- /docs/BlueprintLists/js/typeahead.jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/BlueprintLists/js/typeahead.jquery.js -------------------------------------------------------------------------------- /docs/BlueprintLists/search.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/BlueprintLists/search.json -------------------------------------------------------------------------------- /docs/BlueprintLists/undocumented.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/BlueprintLists/undocumented.json -------------------------------------------------------------------------------- /docs/BlueprintUILists.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/BlueprintUILists.yml -------------------------------------------------------------------------------- /docs/JSON/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/JSON/BlueprintUILists.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/JSON/BlueprintUILists.json -------------------------------------------------------------------------------- /docs/JSON/ListableUI.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/JSON/ListableUI.json -------------------------------------------------------------------------------- /docs/Listable/Classes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/Classes.html -------------------------------------------------------------------------------- /docs/Listable/Classes/AnyIdentifier.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/Classes/AnyIdentifier.html -------------------------------------------------------------------------------- /docs/Listable/Classes/DefaultItemContentCoordinator.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/Classes/DefaultItemContentCoordinator.html -------------------------------------------------------------------------------- /docs/Listable/Classes/DynamicSource.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/Classes/DynamicSource.html -------------------------------------------------------------------------------- /docs/Listable/Classes/Identifier.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/Classes/Identifier.html -------------------------------------------------------------------------------- /docs/Listable/Classes/ItemContentCoordinatorActions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/Classes/ItemContentCoordinatorActions.html -------------------------------------------------------------------------------- /docs/Listable/Classes/ItemContentCoordinatorInfo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/Classes/ItemContentCoordinatorInfo.html -------------------------------------------------------------------------------- /docs/Listable/Classes/ItemPreviewView.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/Classes/ItemPreviewView.html -------------------------------------------------------------------------------- /docs/Listable/Classes/ListActions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/Classes/ListActions.html -------------------------------------------------------------------------------- /docs/Listable/Classes/ListActions/Scrolling.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/Classes/ListActions/Scrolling.html -------------------------------------------------------------------------------- /docs/Listable/Classes/ListActions/ViewControllerTransitioning.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/Classes/ListActions/ViewControllerTransitioning.html -------------------------------------------------------------------------------- /docs/Listable/Classes/ListLayoutContent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/Classes/ListLayoutContent.html -------------------------------------------------------------------------------- /docs/Listable/Classes/ListLayoutContent/ItemInfo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/Classes/ListLayoutContent/ItemInfo.html -------------------------------------------------------------------------------- /docs/Listable/Classes/ListLayoutContent/SectionInfo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/Classes/ListLayoutContent/SectionInfo.html -------------------------------------------------------------------------------- /docs/Listable/Classes/ListLayoutContent/SupplementaryItemInfo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/Classes/ListLayoutContent/SupplementaryItemInfo.html -------------------------------------------------------------------------------- /docs/Listable/Classes/ListView.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/Classes/ListView.html -------------------------------------------------------------------------------- /docs/Listable/Classes/ListView/ScrollViewInsets.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/Classes/ListView/ScrollViewInsets.html -------------------------------------------------------------------------------- /docs/Listable/Classes/ListViewController.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/Classes/ListViewController.html -------------------------------------------------------------------------------- /docs/Listable/Classes/ReorderingActions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/Classes/ReorderingActions.html -------------------------------------------------------------------------------- /docs/Listable/Classes/ReorderingActions/AccessibilityMoveDirection.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/Classes/ReorderingActions/AccessibilityMoveDirection.html -------------------------------------------------------------------------------- /docs/Listable/Classes/ReorderingActions/Result.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/Classes/ReorderingActions/Result.html -------------------------------------------------------------------------------- /docs/Listable/Classes/SourceState.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/Classes/SourceState.html -------------------------------------------------------------------------------- /docs/Listable/Classes/StateAccessor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/Classes/StateAccessor.html -------------------------------------------------------------------------------- /docs/Listable/Classes/StaticSource.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/Classes/StaticSource.html -------------------------------------------------------------------------------- /docs/Listable/Classes/StaticSource/State.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/Classes/StaticSource/State.html -------------------------------------------------------------------------------- /docs/Listable/Enums.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/Enums.html -------------------------------------------------------------------------------- /docs/Listable/Enums/ApplyReason.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/Enums/ApplyReason.html -------------------------------------------------------------------------------- /docs/Listable/Enums/AutoScrollAction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/Enums/AutoScrollAction.html -------------------------------------------------------------------------------- /docs/Listable/Enums/AutoScrollAction/Configuration.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/Enums/AutoScrollAction/Configuration.html -------------------------------------------------------------------------------- /docs/Listable/Enums/AutoScrollAction/OnInsertedItem.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/Enums/AutoScrollAction/OnInsertedItem.html -------------------------------------------------------------------------------- /docs/Listable/Enums/AutoScrollAction/Pin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/Enums/AutoScrollAction/Pin.html -------------------------------------------------------------------------------- /docs/Listable/Enums/AutoScrollAction/ScrollDestination.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/Enums/AutoScrollAction/ScrollDestination.html -------------------------------------------------------------------------------- /docs/Listable/Enums/ContentFilters.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/Enums/ContentFilters.html -------------------------------------------------------------------------------- /docs/Listable/Enums/ContentInsetAdjustmentBehavior.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/Enums/ContentInsetAdjustmentBehavior.html -------------------------------------------------------------------------------- /docs/Listable/Enums/CustomWidth.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/Enums/CustomWidth.html -------------------------------------------------------------------------------- /docs/Listable/Enums/CustomWidth/Alignment.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/Enums/CustomWidth/Alignment.html -------------------------------------------------------------------------------- /docs/Listable/Enums/CustomWidth/Custom.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/Enums/CustomWidth/Custom.html -------------------------------------------------------------------------------- /docs/Listable/Enums/CustomWidth/Position.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/Enums/CustomWidth/Position.html -------------------------------------------------------------------------------- /docs/Listable/Enums/ItemPosition.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/Enums/ItemPosition.html -------------------------------------------------------------------------------- /docs/Listable/Enums/ItemSelectionStyle.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/Enums/ItemSelectionStyle.html -------------------------------------------------------------------------------- /docs/Listable/Enums/KeyboardFrame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/Enums/KeyboardFrame.html -------------------------------------------------------------------------------- /docs/Listable/Enums/LayoutDirection.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/Enums/LayoutDirection.html -------------------------------------------------------------------------------- /docs/Listable/Enums/ListContentBoundsKey.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/Enums/ListContentBoundsKey.html -------------------------------------------------------------------------------- /docs/Listable/Enums/ListHeaderPosition.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/Enums/ListHeaderPosition.html -------------------------------------------------------------------------------- /docs/Listable/Enums/ListPagingBehavior.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/Enums/ListPagingBehavior.html -------------------------------------------------------------------------------- /docs/Listable/Enums/ListableBuilder.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/Enums/ListableBuilder.html -------------------------------------------------------------------------------- /docs/Listable/Enums/PageScrollingBehavior.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/Enums/PageScrollingBehavior.html -------------------------------------------------------------------------------- /docs/Listable/Enums/ReappliesToVisibleView.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/Enums/ReappliesToVisibleView.html -------------------------------------------------------------------------------- /docs/Listable/Enums/SectionPosition.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/Enums/SectionPosition.html -------------------------------------------------------------------------------- /docs/Listable/Enums/Sizing.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/Enums/Sizing.html -------------------------------------------------------------------------------- /docs/Listable/Enums/Sizing/Constraint.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/Enums/Sizing/Constraint.html -------------------------------------------------------------------------------- /docs/Listable/Enums/Sizing/Constraint/Axis.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/Enums/Sizing/Constraint/Axis.html -------------------------------------------------------------------------------- /docs/Listable/Enums/Sizing/MeasureInfo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/Enums/Sizing/MeasureInfo.html -------------------------------------------------------------------------------- /docs/Listable/Enums/SupplementaryKind.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/Enums/SupplementaryKind.html -------------------------------------------------------------------------------- /docs/Listable/Enums/SwipeActionsViewStyleKey.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/Enums/SwipeActionsViewStyleKey.html -------------------------------------------------------------------------------- /docs/Listable/Enums/ViewAnimation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/Enums/ViewAnimation.html -------------------------------------------------------------------------------- /docs/Listable/Enums/ViewAnimation/AnimationOptions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/Enums/ViewAnimation/AnimationOptions.html -------------------------------------------------------------------------------- /docs/Listable/Enums/WidthConstraint.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/Enums/WidthConstraint.html -------------------------------------------------------------------------------- /docs/Listable/Extensions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/Extensions.html -------------------------------------------------------------------------------- /docs/Listable/Extensions/ArrayDiff.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/Extensions/ArrayDiff.html -------------------------------------------------------------------------------- /docs/Listable/Extensions/PresentationState.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/Extensions/PresentationState.html -------------------------------------------------------------------------------- /docs/Listable/Extensions/SectionedDiff.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/Extensions/SectionedDiff.html -------------------------------------------------------------------------------- /docs/Listable/Extensions/SectionedDiff/ItemChanges.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/Extensions/SectionedDiff/ItemChanges.html -------------------------------------------------------------------------------- /docs/Listable/Extensions/SectionedDiff/SectionChanges.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/Extensions/SectionedDiff/SectionChanges.html -------------------------------------------------------------------------------- /docs/Listable/Extensions/Set.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/Extensions/Set.html -------------------------------------------------------------------------------- /docs/Listable/Extensions/UIRectEdge.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/Extensions/UIRectEdge.html -------------------------------------------------------------------------------- /docs/Listable/Functions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/Functions.html -------------------------------------------------------------------------------- /docs/Listable/Protocols.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/Protocols.html -------------------------------------------------------------------------------- /docs/Listable/Protocols/AnyHeaderFooter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/Protocols/AnyHeaderFooter.html -------------------------------------------------------------------------------- /docs/Listable/Protocols/AnyHeaderFooterConvertible.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/Protocols/AnyHeaderFooterConvertible.html -------------------------------------------------------------------------------- /docs/Listable/Protocols/AnyHeaderFooter_Internal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/Protocols/AnyHeaderFooter_Internal.html -------------------------------------------------------------------------------- /docs/Listable/Protocols/AnyItem.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/Protocols/AnyItem.html -------------------------------------------------------------------------------- /docs/Listable/Protocols/AnyItemConvertible.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/Protocols/AnyItemConvertible.html -------------------------------------------------------------------------------- /docs/Listable/Protocols/AnyItem_Internal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/Protocols/AnyItem_Internal.html -------------------------------------------------------------------------------- /docs/Listable/Protocols/AnyLayoutDescriptionConfiguration.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/Protocols/AnyLayoutDescriptionConfiguration.html -------------------------------------------------------------------------------- /docs/Listable/Protocols/AnyListLayout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/Protocols/AnyListLayout.html -------------------------------------------------------------------------------- /docs/Listable/Protocols/AnyLocalizedCollatableItem.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/Protocols/AnyLocalizedCollatableItem.html -------------------------------------------------------------------------------- /docs/Listable/Protocols/CollectionViewLayoutDelegate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/Protocols/CollectionViewLayoutDelegate.html -------------------------------------------------------------------------------- /docs/Listable/Protocols/HeaderFooterContent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/Protocols/HeaderFooterContent.html -------------------------------------------------------------------------------- /docs/Listable/Protocols/HeaderFooterLayoutsValue.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/Protocols/HeaderFooterLayoutsValue.html -------------------------------------------------------------------------------- /docs/Listable/Protocols/ItemContent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/Protocols/ItemContent.html -------------------------------------------------------------------------------- /docs/Listable/Protocols/ItemContentCoordinator.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/Protocols/ItemContentCoordinator.html -------------------------------------------------------------------------------- /docs/Listable/Protocols/ItemLayoutsValue.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/Protocols/ItemLayoutsValue.html -------------------------------------------------------------------------------- /docs/Listable/Protocols/KeyboardCurrentFrameProvider.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/Protocols/KeyboardCurrentFrameProvider.html -------------------------------------------------------------------------------- /docs/Listable/Protocols/ListEnvironmentKey.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/Protocols/ListEnvironmentKey.html -------------------------------------------------------------------------------- /docs/Listable/Protocols/ListLayout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/Protocols/ListLayout.html -------------------------------------------------------------------------------- /docs/Listable/Protocols/ListLayoutAppearance.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/Protocols/ListLayoutAppearance.html -------------------------------------------------------------------------------- /docs/Listable/Protocols/ListLayoutContentItem.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/Protocols/ListLayoutContentItem.html -------------------------------------------------------------------------------- /docs/Listable/Protocols/ListViewSource.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/Protocols/ListViewSource.html -------------------------------------------------------------------------------- /docs/Listable/Protocols/LocalizedCollatableItemContent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/Protocols/LocalizedCollatableItemContent.html -------------------------------------------------------------------------------- /docs/Listable/Protocols/SectionLayoutsValue.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/Protocols/SectionLayoutsValue.html -------------------------------------------------------------------------------- /docs/Listable/Structs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/Structs.html -------------------------------------------------------------------------------- /docs/Listable/Structs/Appearance.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/Structs/Appearance.html -------------------------------------------------------------------------------- /docs/Listable/Structs/ApplyHeaderFooterContentInfo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/Structs/ApplyHeaderFooterContentInfo.html -------------------------------------------------------------------------------- /docs/Listable/Structs/ApplyItemContentInfo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/Structs/ApplyItemContentInfo.html -------------------------------------------------------------------------------- /docs/Listable/Structs/Behavior.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/Structs/Behavior.html -------------------------------------------------------------------------------- /docs/Listable/Structs/Behavior/DecelerationRate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/Structs/Behavior/DecelerationRate.html -------------------------------------------------------------------------------- /docs/Listable/Structs/Behavior/FocusConfiguration.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/Structs/Behavior/FocusConfiguration.html -------------------------------------------------------------------------------- /docs/Listable/Structs/Behavior/KeyboardAdjustmentMode.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/Structs/Behavior/KeyboardAdjustmentMode.html -------------------------------------------------------------------------------- /docs/Listable/Structs/Behavior/ScrollsToTop.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/Structs/Behavior/ScrollsToTop.html -------------------------------------------------------------------------------- /docs/Listable/Structs/Behavior/SelectionMode.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/Structs/Behavior/SelectionMode.html -------------------------------------------------------------------------------- /docs/Listable/Structs/Behavior/Underflow.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/Structs/Behavior/Underflow.html -------------------------------------------------------------------------------- /docs/Listable/Structs/Behavior/Underflow/Alignment.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/Structs/Behavior/Underflow/Alignment.html -------------------------------------------------------------------------------- /docs/Listable/Structs/Behavior/VerticalLayoutGravity.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/Structs/Behavior/VerticalLayoutGravity.html -------------------------------------------------------------------------------- /docs/Listable/Structs/Color.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/Structs/Color.html -------------------------------------------------------------------------------- /docs/Listable/Structs/Content.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/Structs/Content.html -------------------------------------------------------------------------------- /docs/Listable/Structs/ContentContext.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/Structs/ContentContext.html -------------------------------------------------------------------------------- /docs/Listable/Structs/DefaultHeaderFooterProperties.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/Structs/DefaultHeaderFooterProperties.html -------------------------------------------------------------------------------- /docs/Listable/Structs/DefaultItemProperties.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/Structs/DefaultItemProperties.html -------------------------------------------------------------------------------- /docs/Listable/Structs/EmbeddedList.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/Structs/EmbeddedList.html -------------------------------------------------------------------------------- /docs/Listable/Structs/EmbeddedList/Sizing.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/Structs/EmbeddedList/Sizing.html -------------------------------------------------------------------------------- /docs/Listable/Structs/EmptyHeaderFooterLayoutsValue.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/Structs/EmptyHeaderFooterLayoutsValue.html -------------------------------------------------------------------------------- /docs/Listable/Structs/EmptyItemLayoutsValue.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/Structs/EmptyItemLayoutsValue.html -------------------------------------------------------------------------------- /docs/Listable/Structs/EmptySectionLayoutsValue.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/Structs/EmptySectionLayoutsValue.html -------------------------------------------------------------------------------- /docs/Listable/Structs/FlowAppearance.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/Structs/FlowAppearance.html -------------------------------------------------------------------------------- /docs/Listable/Structs/FlowAppearance/HeaderFooterLayout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/Structs/FlowAppearance/HeaderFooterLayout.html -------------------------------------------------------------------------------- /docs/Listable/Structs/FlowAppearance/ItemLayout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/Structs/FlowAppearance/ItemLayout.html -------------------------------------------------------------------------------- /docs/Listable/Structs/FlowAppearance/ItemLayout/Width.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/Structs/FlowAppearance/ItemLayout/Width.html -------------------------------------------------------------------------------- /docs/Listable/Structs/FlowAppearance/ItemSizing.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/Structs/FlowAppearance/ItemSizing.html -------------------------------------------------------------------------------- /docs/Listable/Structs/FlowAppearance/RowItemsAlignment.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/Structs/FlowAppearance/RowItemsAlignment.html -------------------------------------------------------------------------------- /docs/Listable/Structs/FlowAppearance/RowUnderflowAlignment.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/Structs/FlowAppearance/RowUnderflowAlignment.html -------------------------------------------------------------------------------- /docs/Listable/Structs/FlowAppearance/RowUnderflowAlignment/FillLastRowAlignment.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/Structs/FlowAppearance/RowUnderflowAlignment/FillLastRowAlignment.html -------------------------------------------------------------------------------- /docs/Listable/Structs/FlowAppearance/SectionLayout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/Structs/FlowAppearance/SectionLayout.html -------------------------------------------------------------------------------- /docs/Listable/Structs/FlowAppearance/Spacings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/Structs/FlowAppearance/Spacings.html -------------------------------------------------------------------------------- /docs/Listable/Structs/FlowAppearance/Spacings/InterSectionSpacing.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/Structs/FlowAppearance/Spacings/InterSectionSpacing.html -------------------------------------------------------------------------------- /docs/Listable/Structs/HeaderFooter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/Structs/HeaderFooter.html -------------------------------------------------------------------------------- /docs/Listable/Structs/HeaderFooter/OnDisplay.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/Structs/HeaderFooter/OnDisplay.html -------------------------------------------------------------------------------- /docs/Listable/Structs/HeaderFooter/OnEndDisplay.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/Structs/HeaderFooter/OnEndDisplay.html -------------------------------------------------------------------------------- /docs/Listable/Structs/HeaderFooterContentViews.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/Structs/HeaderFooterContentViews.html -------------------------------------------------------------------------------- /docs/Listable/Structs/HeaderFooterLayouts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/Structs/HeaderFooterLayouts.html -------------------------------------------------------------------------------- /docs/Listable/Structs/HorizontalPadding.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/Structs/HorizontalPadding.html -------------------------------------------------------------------------------- /docs/Listable/Structs/Item.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/Structs/Item.html -------------------------------------------------------------------------------- /docs/Listable/Structs/Item/OnDeselect.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/Structs/Item/OnDeselect.html -------------------------------------------------------------------------------- /docs/Listable/Structs/Item/OnDisplay.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/Structs/Item/OnDisplay.html -------------------------------------------------------------------------------- /docs/Listable/Structs/Item/OnEndDisplay.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/Structs/Item/OnEndDisplay.html -------------------------------------------------------------------------------- /docs/Listable/Structs/Item/OnInsert.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/Structs/Item/OnInsert.html -------------------------------------------------------------------------------- /docs/Listable/Structs/Item/OnMove.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/Structs/Item/OnMove.html -------------------------------------------------------------------------------- /docs/Listable/Structs/Item/OnRemove.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/Structs/Item/OnRemove.html -------------------------------------------------------------------------------- /docs/Listable/Structs/Item/OnSelect.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/Structs/Item/OnSelect.html -------------------------------------------------------------------------------- /docs/Listable/Structs/Item/OnUpdate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/Structs/Item/OnUpdate.html -------------------------------------------------------------------------------- /docs/Listable/Structs/ItemContentViews.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/Structs/ItemContentViews.html -------------------------------------------------------------------------------- /docs/Listable/Structs/ItemInsertAndRemoveAnimations.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/Structs/ItemInsertAndRemoveAnimations.html -------------------------------------------------------------------------------- /docs/Listable/Structs/ItemLayouts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/Structs/ItemLayouts.html -------------------------------------------------------------------------------- /docs/Listable/Structs/ItemPreview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/Structs/ItemPreview.html -------------------------------------------------------------------------------- /docs/Listable/Structs/ItemPreview/Properties.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/Structs/ItemPreview/Properties.html -------------------------------------------------------------------------------- /docs/Listable/Structs/ItemPreviewAppearance.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/Structs/ItemPreviewAppearance.html -------------------------------------------------------------------------------- /docs/Listable/Structs/ItemReordering.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/Structs/ItemReordering.html -------------------------------------------------------------------------------- /docs/Listable/Structs/ItemReordering/GestureRecognizer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/Structs/ItemReordering/GestureRecognizer.html -------------------------------------------------------------------------------- /docs/Listable/Structs/ItemReordering/Result.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/Structs/ItemReordering/Result.html -------------------------------------------------------------------------------- /docs/Listable/Structs/ItemReordering/Sections.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/Structs/ItemReordering/Sections.html -------------------------------------------------------------------------------- /docs/Listable/Structs/ItemState.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/Structs/ItemState.html -------------------------------------------------------------------------------- /docs/Listable/Structs/LayoutDescription.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/Structs/LayoutDescription.html -------------------------------------------------------------------------------- /docs/Listable/Structs/LayoutDescription/Configuration.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/Structs/LayoutDescription/Configuration.html -------------------------------------------------------------------------------- /docs/Listable/Structs/ListAnimation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/Structs/ListAnimation.html -------------------------------------------------------------------------------- /docs/Listable/Structs/ListContentBounds.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/Structs/ListContentBounds.html -------------------------------------------------------------------------------- /docs/Listable/Structs/ListContentBounds/Context.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/Structs/ListContentBounds/Context.html -------------------------------------------------------------------------------- /docs/Listable/Structs/ListContentLayoutAttributes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/Structs/ListContentLayoutAttributes.html -------------------------------------------------------------------------------- /docs/Listable/Structs/ListEnvironment.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/Structs/ListEnvironment.html -------------------------------------------------------------------------------- /docs/Listable/Structs/ListLayoutAppearanceProperties.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/Structs/ListLayoutAppearanceProperties.html -------------------------------------------------------------------------------- /docs/Listable/Structs/ListLayoutDefaults.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/Structs/ListLayoutDefaults.html -------------------------------------------------------------------------------- /docs/Listable/Structs/ListLayoutLayoutContext.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/Structs/ListLayoutLayoutContext.html -------------------------------------------------------------------------------- /docs/Listable/Structs/ListLayoutResult.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/Structs/ListLayoutResult.html -------------------------------------------------------------------------------- /docs/Listable/Structs/ListLayoutScrollViewProperties.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/Structs/ListLayoutScrollViewProperties.html -------------------------------------------------------------------------------- /docs/Listable/Structs/ListProperties.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/Structs/ListProperties.html -------------------------------------------------------------------------------- /docs/Listable/Structs/ListScrollPositionInfo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/Structs/ListScrollPositionInfo.html -------------------------------------------------------------------------------- /docs/Listable/Structs/ListScrollPositionInfo/VisibleItem.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/Structs/ListScrollPositionInfo/VisibleItem.html -------------------------------------------------------------------------------- /docs/Listable/Structs/ListStateObserver.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/Structs/ListStateObserver.html -------------------------------------------------------------------------------- /docs/Listable/Structs/ListStateObserver/BeginDrag.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/Structs/ListStateObserver/BeginDrag.html -------------------------------------------------------------------------------- /docs/Listable/Structs/ListStateObserver/ContentUpdated.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/Structs/ListStateObserver/ContentUpdated.html -------------------------------------------------------------------------------- /docs/Listable/Structs/ListStateObserver/ContentUpdated/InsertionsAndRemovals.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/Structs/ListStateObserver/ContentUpdated/InsertionsAndRemovals.html -------------------------------------------------------------------------------- /docs/Listable/Structs/ListStateObserver/ContentUpdated/InsertionsAndRemovals/ChangedIDs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/Structs/ListStateObserver/ContentUpdated/InsertionsAndRemovals/ChangedIDs.html -------------------------------------------------------------------------------- /docs/Listable/Structs/ListStateObserver/DidEndDeceleration.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/Structs/ListStateObserver/DidEndDeceleration.html -------------------------------------------------------------------------------- /docs/Listable/Structs/ListStateObserver/DidEndScrollingAnimation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/Structs/ListStateObserver/DidEndScrollingAnimation.html -------------------------------------------------------------------------------- /docs/Listable/Structs/ListStateObserver/DidScroll.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/Structs/ListStateObserver/DidScroll.html -------------------------------------------------------------------------------- /docs/Listable/Structs/ListStateObserver/FrameChanged.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/Structs/ListStateObserver/FrameChanged.html -------------------------------------------------------------------------------- /docs/Listable/Structs/ListStateObserver/ItemReordered.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/Structs/ListStateObserver/ItemReordered.html -------------------------------------------------------------------------------- /docs/Listable/Structs/ListStateObserver/SelectionChanged.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/Structs/ListStateObserver/SelectionChanged.html -------------------------------------------------------------------------------- /docs/Listable/Structs/ListStateObserver/VisibilityChanged.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/Structs/ListStateObserver/VisibilityChanged.html -------------------------------------------------------------------------------- /docs/Listable/Structs/ListableLocalizedStrings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/Structs/ListableLocalizedStrings.html -------------------------------------------------------------------------------- /docs/Listable/Structs/ListableLocalizedStrings/ReorderGesture.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/Structs/ListableLocalizedStrings/ReorderGesture.html -------------------------------------------------------------------------------- /docs/Listable/Structs/LocalizedItemCollator.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/Structs/LocalizedItemCollator.html -------------------------------------------------------------------------------- /docs/Listable/Structs/LocalizedItemCollator/CollatedSection.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/Structs/LocalizedItemCollator/CollatedSection.html -------------------------------------------------------------------------------- /docs/Listable/Structs/MeasuredListSize.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/Structs/MeasuredListSize.html -------------------------------------------------------------------------------- /docs/Listable/Structs/PagedAppearance.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/Structs/PagedAppearance.html -------------------------------------------------------------------------------- /docs/Listable/Structs/PagedAppearance/Peek.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/Structs/PagedAppearance/Peek.html -------------------------------------------------------------------------------- /docs/Listable/Structs/PagedAppearance/Peek/FirstItemConfiguration.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/Structs/PagedAppearance/Peek/FirstItemConfiguration.html -------------------------------------------------------------------------------- /docs/Listable/Structs/RefreshControl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/Structs/RefreshControl.html -------------------------------------------------------------------------------- /docs/Listable/Structs/RefreshControl/OffsetAdjustmentBehavior.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/Structs/RefreshControl/OffsetAdjustmentBehavior.html -------------------------------------------------------------------------------- /docs/Listable/Structs/RefreshControl/Title.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/Structs/RefreshControl/Title.html -------------------------------------------------------------------------------- /docs/Listable/Structs/ScrollPosition.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/Structs/ScrollPosition.html -------------------------------------------------------------------------------- /docs/Listable/Structs/ScrollPosition/IfAlreadyVisible.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/Structs/ScrollPosition/IfAlreadyVisible.html -------------------------------------------------------------------------------- /docs/Listable/Structs/ScrollPosition/Position.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/Structs/ScrollPosition/Position.html -------------------------------------------------------------------------------- /docs/Listable/Structs/Section.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/Structs/Section.html -------------------------------------------------------------------------------- /docs/Listable/Structs/SectionLayouts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/Structs/SectionLayouts.html -------------------------------------------------------------------------------- /docs/Listable/Structs/SectionReordering.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/Structs/SectionReordering.html -------------------------------------------------------------------------------- /docs/Listable/Structs/SwipeAction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/Structs/SwipeAction.html -------------------------------------------------------------------------------- /docs/Listable/Structs/SwipeAction/OnDidPerformActionAnimation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/Structs/SwipeAction/OnDidPerformActionAnimation.html -------------------------------------------------------------------------------- /docs/Listable/Structs/SwipeActionsConfiguration.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/Structs/SwipeActionsConfiguration.html -------------------------------------------------------------------------------- /docs/Listable/Structs/SwipeActionsViewStyle.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/Structs/SwipeActionsViewStyle.html -------------------------------------------------------------------------------- /docs/Listable/Structs/SwipeActionsViewStyle/ButtonSizing.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/Structs/SwipeActionsViewStyle/ButtonSizing.html -------------------------------------------------------------------------------- /docs/Listable/Structs/SwipeActionsViewStyle/Shape.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/Structs/SwipeActionsViewStyle/Shape.html -------------------------------------------------------------------------------- /docs/Listable/Structs/TableAppearance.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/Structs/TableAppearance.html -------------------------------------------------------------------------------- /docs/Listable/Structs/TableAppearance/HeaderFooterLayout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/Structs/TableAppearance/HeaderFooterLayout.html -------------------------------------------------------------------------------- /docs/Listable/Structs/TableAppearance/ItemLayout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/Structs/TableAppearance/ItemLayout.html -------------------------------------------------------------------------------- /docs/Listable/Structs/TableAppearance/Layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/Structs/TableAppearance/Layout.html -------------------------------------------------------------------------------- /docs/Listable/Structs/TableAppearance/SectionLayout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/Structs/TableAppearance/SectionLayout.html -------------------------------------------------------------------------------- /docs/Listable/Structs/TableAppearance/SectionLayout/Columns.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/Structs/TableAppearance/SectionLayout/Columns.html -------------------------------------------------------------------------------- /docs/Listable/Structs/ViewProperties.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/Structs/ViewProperties.html -------------------------------------------------------------------------------- /docs/Listable/Structs/ViewProperties/CornerCurve.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/Structs/ViewProperties/CornerCurve.html -------------------------------------------------------------------------------- /docs/Listable/Structs/ViewProperties/CornerStyle.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/Structs/ViewProperties/CornerStyle.html -------------------------------------------------------------------------------- /docs/Listable/Structs/ViewProperties/CornerStyle/Corners.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/Structs/ViewProperties/CornerStyle/Corners.html -------------------------------------------------------------------------------- /docs/Listable/Typealiases.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/Typealiases.html -------------------------------------------------------------------------------- /docs/Listable/badge.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/badge.svg -------------------------------------------------------------------------------- /docs/Listable/css/highlight.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/css/highlight.css -------------------------------------------------------------------------------- /docs/Listable/css/jazzy.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/css/jazzy.css -------------------------------------------------------------------------------- /docs/Listable/docsets/Listable.docset/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/docsets/Listable.docset/Contents/Info.plist -------------------------------------------------------------------------------- /docs/Listable/docsets/Listable.docset/Contents/Resources/Documents/Classes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/docsets/Listable.docset/Contents/Resources/Documents/Classes.html -------------------------------------------------------------------------------- /docs/Listable/docsets/Listable.docset/Contents/Resources/Documents/Classes/AnyIdentifier.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/docsets/Listable.docset/Contents/Resources/Documents/Classes/AnyIdentifier.html -------------------------------------------------------------------------------- /docs/Listable/docsets/Listable.docset/Contents/Resources/Documents/Classes/DynamicSource.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/docsets/Listable.docset/Contents/Resources/Documents/Classes/DynamicSource.html -------------------------------------------------------------------------------- /docs/Listable/docsets/Listable.docset/Contents/Resources/Documents/Classes/Identifier.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/docsets/Listable.docset/Contents/Resources/Documents/Classes/Identifier.html -------------------------------------------------------------------------------- /docs/Listable/docsets/Listable.docset/Contents/Resources/Documents/Classes/ItemPreviewView.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/docsets/Listable.docset/Contents/Resources/Documents/Classes/ItemPreviewView.html -------------------------------------------------------------------------------- /docs/Listable/docsets/Listable.docset/Contents/Resources/Documents/Classes/ListActions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/docsets/Listable.docset/Contents/Resources/Documents/Classes/ListActions.html -------------------------------------------------------------------------------- /docs/Listable/docsets/Listable.docset/Contents/Resources/Documents/Classes/ListLayoutContent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/docsets/Listable.docset/Contents/Resources/Documents/Classes/ListLayoutContent.html -------------------------------------------------------------------------------- /docs/Listable/docsets/Listable.docset/Contents/Resources/Documents/Classes/ListView.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/docsets/Listable.docset/Contents/Resources/Documents/Classes/ListView.html -------------------------------------------------------------------------------- /docs/Listable/docsets/Listable.docset/Contents/Resources/Documents/Classes/ListViewController.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/docsets/Listable.docset/Contents/Resources/Documents/Classes/ListViewController.html -------------------------------------------------------------------------------- /docs/Listable/docsets/Listable.docset/Contents/Resources/Documents/Classes/ReorderingActions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/docsets/Listable.docset/Contents/Resources/Documents/Classes/ReorderingActions.html -------------------------------------------------------------------------------- /docs/Listable/docsets/Listable.docset/Contents/Resources/Documents/Classes/SourceState.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/docsets/Listable.docset/Contents/Resources/Documents/Classes/SourceState.html -------------------------------------------------------------------------------- /docs/Listable/docsets/Listable.docset/Contents/Resources/Documents/Classes/StateAccessor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/docsets/Listable.docset/Contents/Resources/Documents/Classes/StateAccessor.html -------------------------------------------------------------------------------- /docs/Listable/docsets/Listable.docset/Contents/Resources/Documents/Classes/StaticSource.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/docsets/Listable.docset/Contents/Resources/Documents/Classes/StaticSource.html -------------------------------------------------------------------------------- /docs/Listable/docsets/Listable.docset/Contents/Resources/Documents/Classes/StaticSource/State.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/docsets/Listable.docset/Contents/Resources/Documents/Classes/StaticSource/State.html -------------------------------------------------------------------------------- /docs/Listable/docsets/Listable.docset/Contents/Resources/Documents/Enums.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/docsets/Listable.docset/Contents/Resources/Documents/Enums.html -------------------------------------------------------------------------------- /docs/Listable/docsets/Listable.docset/Contents/Resources/Documents/Enums/ApplyReason.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/docsets/Listable.docset/Contents/Resources/Documents/Enums/ApplyReason.html -------------------------------------------------------------------------------- /docs/Listable/docsets/Listable.docset/Contents/Resources/Documents/Enums/AutoScrollAction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/docsets/Listable.docset/Contents/Resources/Documents/Enums/AutoScrollAction.html -------------------------------------------------------------------------------- /docs/Listable/docsets/Listable.docset/Contents/Resources/Documents/Enums/AutoScrollAction/Pin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/docsets/Listable.docset/Contents/Resources/Documents/Enums/AutoScrollAction/Pin.html -------------------------------------------------------------------------------- /docs/Listable/docsets/Listable.docset/Contents/Resources/Documents/Enums/ContentFilters.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/docsets/Listable.docset/Contents/Resources/Documents/Enums/ContentFilters.html -------------------------------------------------------------------------------- /docs/Listable/docsets/Listable.docset/Contents/Resources/Documents/Enums/CustomWidth.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/docsets/Listable.docset/Contents/Resources/Documents/Enums/CustomWidth.html -------------------------------------------------------------------------------- /docs/Listable/docsets/Listable.docset/Contents/Resources/Documents/Enums/CustomWidth/Custom.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/docsets/Listable.docset/Contents/Resources/Documents/Enums/CustomWidth/Custom.html -------------------------------------------------------------------------------- /docs/Listable/docsets/Listable.docset/Contents/Resources/Documents/Enums/CustomWidth/Position.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/docsets/Listable.docset/Contents/Resources/Documents/Enums/CustomWidth/Position.html -------------------------------------------------------------------------------- /docs/Listable/docsets/Listable.docset/Contents/Resources/Documents/Enums/ItemPosition.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/docsets/Listable.docset/Contents/Resources/Documents/Enums/ItemPosition.html -------------------------------------------------------------------------------- /docs/Listable/docsets/Listable.docset/Contents/Resources/Documents/Enums/ItemSelectionStyle.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/docsets/Listable.docset/Contents/Resources/Documents/Enums/ItemSelectionStyle.html -------------------------------------------------------------------------------- /docs/Listable/docsets/Listable.docset/Contents/Resources/Documents/Enums/KeyboardFrame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/docsets/Listable.docset/Contents/Resources/Documents/Enums/KeyboardFrame.html -------------------------------------------------------------------------------- /docs/Listable/docsets/Listable.docset/Contents/Resources/Documents/Enums/LayoutDirection.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/docsets/Listable.docset/Contents/Resources/Documents/Enums/LayoutDirection.html -------------------------------------------------------------------------------- /docs/Listable/docsets/Listable.docset/Contents/Resources/Documents/Enums/ListContentBoundsKey.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/docsets/Listable.docset/Contents/Resources/Documents/Enums/ListContentBoundsKey.html -------------------------------------------------------------------------------- /docs/Listable/docsets/Listable.docset/Contents/Resources/Documents/Enums/ListHeaderPosition.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/docsets/Listable.docset/Contents/Resources/Documents/Enums/ListHeaderPosition.html -------------------------------------------------------------------------------- /docs/Listable/docsets/Listable.docset/Contents/Resources/Documents/Enums/ListPagingBehavior.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/docsets/Listable.docset/Contents/Resources/Documents/Enums/ListPagingBehavior.html -------------------------------------------------------------------------------- /docs/Listable/docsets/Listable.docset/Contents/Resources/Documents/Enums/ListableBuilder.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/docsets/Listable.docset/Contents/Resources/Documents/Enums/ListableBuilder.html -------------------------------------------------------------------------------- /docs/Listable/docsets/Listable.docset/Contents/Resources/Documents/Enums/SectionPosition.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/docsets/Listable.docset/Contents/Resources/Documents/Enums/SectionPosition.html -------------------------------------------------------------------------------- /docs/Listable/docsets/Listable.docset/Contents/Resources/Documents/Enums/Sizing.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/docsets/Listable.docset/Contents/Resources/Documents/Enums/Sizing.html -------------------------------------------------------------------------------- /docs/Listable/docsets/Listable.docset/Contents/Resources/Documents/Enums/Sizing/Constraint.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/docsets/Listable.docset/Contents/Resources/Documents/Enums/Sizing/Constraint.html -------------------------------------------------------------------------------- /docs/Listable/docsets/Listable.docset/Contents/Resources/Documents/Enums/Sizing/MeasureInfo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/docsets/Listable.docset/Contents/Resources/Documents/Enums/Sizing/MeasureInfo.html -------------------------------------------------------------------------------- /docs/Listable/docsets/Listable.docset/Contents/Resources/Documents/Enums/SupplementaryKind.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/docsets/Listable.docset/Contents/Resources/Documents/Enums/SupplementaryKind.html -------------------------------------------------------------------------------- /docs/Listable/docsets/Listable.docset/Contents/Resources/Documents/Enums/ViewAnimation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/docsets/Listable.docset/Contents/Resources/Documents/Enums/ViewAnimation.html -------------------------------------------------------------------------------- /docs/Listable/docsets/Listable.docset/Contents/Resources/Documents/Enums/WidthConstraint.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/docsets/Listable.docset/Contents/Resources/Documents/Enums/WidthConstraint.html -------------------------------------------------------------------------------- /docs/Listable/docsets/Listable.docset/Contents/Resources/Documents/Extensions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/docsets/Listable.docset/Contents/Resources/Documents/Extensions.html -------------------------------------------------------------------------------- /docs/Listable/docsets/Listable.docset/Contents/Resources/Documents/Extensions/ArrayDiff.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/docsets/Listable.docset/Contents/Resources/Documents/Extensions/ArrayDiff.html -------------------------------------------------------------------------------- /docs/Listable/docsets/Listable.docset/Contents/Resources/Documents/Extensions/SectionedDiff.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/docsets/Listable.docset/Contents/Resources/Documents/Extensions/SectionedDiff.html -------------------------------------------------------------------------------- /docs/Listable/docsets/Listable.docset/Contents/Resources/Documents/Extensions/Set.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/docsets/Listable.docset/Contents/Resources/Documents/Extensions/Set.html -------------------------------------------------------------------------------- /docs/Listable/docsets/Listable.docset/Contents/Resources/Documents/Extensions/UIRectEdge.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/docsets/Listable.docset/Contents/Resources/Documents/Extensions/UIRectEdge.html -------------------------------------------------------------------------------- /docs/Listable/docsets/Listable.docset/Contents/Resources/Documents/Functions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/docsets/Listable.docset/Contents/Resources/Documents/Functions.html -------------------------------------------------------------------------------- /docs/Listable/docsets/Listable.docset/Contents/Resources/Documents/Protocols.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/docsets/Listable.docset/Contents/Resources/Documents/Protocols.html -------------------------------------------------------------------------------- /docs/Listable/docsets/Listable.docset/Contents/Resources/Documents/Protocols/AnyHeaderFooter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/docsets/Listable.docset/Contents/Resources/Documents/Protocols/AnyHeaderFooter.html -------------------------------------------------------------------------------- /docs/Listable/docsets/Listable.docset/Contents/Resources/Documents/Protocols/AnyItem.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/docsets/Listable.docset/Contents/Resources/Documents/Protocols/AnyItem.html -------------------------------------------------------------------------------- /docs/Listable/docsets/Listable.docset/Contents/Resources/Documents/Protocols/AnyItem_Internal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/docsets/Listable.docset/Contents/Resources/Documents/Protocols/AnyItem_Internal.html -------------------------------------------------------------------------------- /docs/Listable/docsets/Listable.docset/Contents/Resources/Documents/Protocols/AnyListLayout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/docsets/Listable.docset/Contents/Resources/Documents/Protocols/AnyListLayout.html -------------------------------------------------------------------------------- /docs/Listable/docsets/Listable.docset/Contents/Resources/Documents/Protocols/ItemContent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/docsets/Listable.docset/Contents/Resources/Documents/Protocols/ItemContent.html -------------------------------------------------------------------------------- /docs/Listable/docsets/Listable.docset/Contents/Resources/Documents/Protocols/ItemLayoutsValue.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/docsets/Listable.docset/Contents/Resources/Documents/Protocols/ItemLayoutsValue.html -------------------------------------------------------------------------------- /docs/Listable/docsets/Listable.docset/Contents/Resources/Documents/Protocols/ListLayout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/docsets/Listable.docset/Contents/Resources/Documents/Protocols/ListLayout.html -------------------------------------------------------------------------------- /docs/Listable/docsets/Listable.docset/Contents/Resources/Documents/Protocols/ListViewSource.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/docsets/Listable.docset/Contents/Resources/Documents/Protocols/ListViewSource.html -------------------------------------------------------------------------------- /docs/Listable/docsets/Listable.docset/Contents/Resources/Documents/Structs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/docsets/Listable.docset/Contents/Resources/Documents/Structs.html -------------------------------------------------------------------------------- /docs/Listable/docsets/Listable.docset/Contents/Resources/Documents/Structs/Appearance.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/docsets/Listable.docset/Contents/Resources/Documents/Structs/Appearance.html -------------------------------------------------------------------------------- /docs/Listable/docsets/Listable.docset/Contents/Resources/Documents/Structs/Behavior.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/docsets/Listable.docset/Contents/Resources/Documents/Structs/Behavior.html -------------------------------------------------------------------------------- /docs/Listable/docsets/Listable.docset/Contents/Resources/Documents/Structs/Behavior/Underflow.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/docsets/Listable.docset/Contents/Resources/Documents/Structs/Behavior/Underflow.html -------------------------------------------------------------------------------- /docs/Listable/docsets/Listable.docset/Contents/Resources/Documents/Structs/Color.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/docsets/Listable.docset/Contents/Resources/Documents/Structs/Color.html -------------------------------------------------------------------------------- /docs/Listable/docsets/Listable.docset/Contents/Resources/Documents/Structs/Content.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/docsets/Listable.docset/Contents/Resources/Documents/Structs/Content.html -------------------------------------------------------------------------------- /docs/Listable/docsets/Listable.docset/Contents/Resources/Documents/Structs/ContentContext.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/docsets/Listable.docset/Contents/Resources/Documents/Structs/ContentContext.html -------------------------------------------------------------------------------- /docs/Listable/docsets/Listable.docset/Contents/Resources/Documents/Structs/EmbeddedList.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/docsets/Listable.docset/Contents/Resources/Documents/Structs/EmbeddedList.html -------------------------------------------------------------------------------- /docs/Listable/docsets/Listable.docset/Contents/Resources/Documents/Structs/FlowAppearance.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/docsets/Listable.docset/Contents/Resources/Documents/Structs/FlowAppearance.html -------------------------------------------------------------------------------- /docs/Listable/docsets/Listable.docset/Contents/Resources/Documents/Structs/HeaderFooter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/docsets/Listable.docset/Contents/Resources/Documents/Structs/HeaderFooter.html -------------------------------------------------------------------------------- /docs/Listable/docsets/Listable.docset/Contents/Resources/Documents/Structs/HorizontalPadding.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/docsets/Listable.docset/Contents/Resources/Documents/Structs/HorizontalPadding.html -------------------------------------------------------------------------------- /docs/Listable/docsets/Listable.docset/Contents/Resources/Documents/Structs/Item.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/docsets/Listable.docset/Contents/Resources/Documents/Structs/Item.html -------------------------------------------------------------------------------- /docs/Listable/docsets/Listable.docset/Contents/Resources/Documents/Structs/Item/OnDeselect.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/docsets/Listable.docset/Contents/Resources/Documents/Structs/Item/OnDeselect.html -------------------------------------------------------------------------------- /docs/Listable/docsets/Listable.docset/Contents/Resources/Documents/Structs/Item/OnDisplay.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/docsets/Listable.docset/Contents/Resources/Documents/Structs/Item/OnDisplay.html -------------------------------------------------------------------------------- /docs/Listable/docsets/Listable.docset/Contents/Resources/Documents/Structs/Item/OnEndDisplay.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/docsets/Listable.docset/Contents/Resources/Documents/Structs/Item/OnEndDisplay.html -------------------------------------------------------------------------------- /docs/Listable/docsets/Listable.docset/Contents/Resources/Documents/Structs/Item/OnInsert.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/docsets/Listable.docset/Contents/Resources/Documents/Structs/Item/OnInsert.html -------------------------------------------------------------------------------- /docs/Listable/docsets/Listable.docset/Contents/Resources/Documents/Structs/Item/OnMove.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/docsets/Listable.docset/Contents/Resources/Documents/Structs/Item/OnMove.html -------------------------------------------------------------------------------- /docs/Listable/docsets/Listable.docset/Contents/Resources/Documents/Structs/Item/OnRemove.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/docsets/Listable.docset/Contents/Resources/Documents/Structs/Item/OnRemove.html -------------------------------------------------------------------------------- /docs/Listable/docsets/Listable.docset/Contents/Resources/Documents/Structs/Item/OnSelect.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/docsets/Listable.docset/Contents/Resources/Documents/Structs/Item/OnSelect.html -------------------------------------------------------------------------------- /docs/Listable/docsets/Listable.docset/Contents/Resources/Documents/Structs/Item/OnUpdate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/docsets/Listable.docset/Contents/Resources/Documents/Structs/Item/OnUpdate.html -------------------------------------------------------------------------------- /docs/Listable/docsets/Listable.docset/Contents/Resources/Documents/Structs/ItemContentViews.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/docsets/Listable.docset/Contents/Resources/Documents/Structs/ItemContentViews.html -------------------------------------------------------------------------------- /docs/Listable/docsets/Listable.docset/Contents/Resources/Documents/Structs/ItemLayouts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/docsets/Listable.docset/Contents/Resources/Documents/Structs/ItemLayouts.html -------------------------------------------------------------------------------- /docs/Listable/docsets/Listable.docset/Contents/Resources/Documents/Structs/ItemPreview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/docsets/Listable.docset/Contents/Resources/Documents/Structs/ItemPreview.html -------------------------------------------------------------------------------- /docs/Listable/docsets/Listable.docset/Contents/Resources/Documents/Structs/ItemReordering.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/docsets/Listable.docset/Contents/Resources/Documents/Structs/ItemReordering.html -------------------------------------------------------------------------------- /docs/Listable/docsets/Listable.docset/Contents/Resources/Documents/Structs/ItemState.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/docsets/Listable.docset/Contents/Resources/Documents/Structs/ItemState.html -------------------------------------------------------------------------------- /docs/Listable/docsets/Listable.docset/Contents/Resources/Documents/Structs/LayoutDescription.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/docsets/Listable.docset/Contents/Resources/Documents/Structs/LayoutDescription.html -------------------------------------------------------------------------------- /docs/Listable/docsets/Listable.docset/Contents/Resources/Documents/Structs/ListAnimation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/docsets/Listable.docset/Contents/Resources/Documents/Structs/ListAnimation.html -------------------------------------------------------------------------------- /docs/Listable/docsets/Listable.docset/Contents/Resources/Documents/Structs/ListContentBounds.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/docsets/Listable.docset/Contents/Resources/Documents/Structs/ListContentBounds.html -------------------------------------------------------------------------------- /docs/Listable/docsets/Listable.docset/Contents/Resources/Documents/Structs/ListEnvironment.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/docsets/Listable.docset/Contents/Resources/Documents/Structs/ListEnvironment.html -------------------------------------------------------------------------------- /docs/Listable/docsets/Listable.docset/Contents/Resources/Documents/Structs/ListLayoutDefaults.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/docsets/Listable.docset/Contents/Resources/Documents/Structs/ListLayoutDefaults.html -------------------------------------------------------------------------------- /docs/Listable/docsets/Listable.docset/Contents/Resources/Documents/Structs/ListLayoutResult.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/docsets/Listable.docset/Contents/Resources/Documents/Structs/ListLayoutResult.html -------------------------------------------------------------------------------- /docs/Listable/docsets/Listable.docset/Contents/Resources/Documents/Structs/ListProperties.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/docsets/Listable.docset/Contents/Resources/Documents/Structs/ListProperties.html -------------------------------------------------------------------------------- /docs/Listable/docsets/Listable.docset/Contents/Resources/Documents/Structs/MeasuredListSize.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/docsets/Listable.docset/Contents/Resources/Documents/Structs/MeasuredListSize.html -------------------------------------------------------------------------------- /docs/Listable/docsets/Listable.docset/Contents/Resources/Documents/Structs/PagedAppearance.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/docsets/Listable.docset/Contents/Resources/Documents/Structs/PagedAppearance.html -------------------------------------------------------------------------------- /docs/Listable/docsets/Listable.docset/Contents/Resources/Documents/Structs/RefreshControl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/docsets/Listable.docset/Contents/Resources/Documents/Structs/RefreshControl.html -------------------------------------------------------------------------------- /docs/Listable/docsets/Listable.docset/Contents/Resources/Documents/Structs/ScrollPosition.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/docsets/Listable.docset/Contents/Resources/Documents/Structs/ScrollPosition.html -------------------------------------------------------------------------------- /docs/Listable/docsets/Listable.docset/Contents/Resources/Documents/Structs/Section.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/docsets/Listable.docset/Contents/Resources/Documents/Structs/Section.html -------------------------------------------------------------------------------- /docs/Listable/docsets/Listable.docset/Contents/Resources/Documents/Structs/SectionLayouts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/docsets/Listable.docset/Contents/Resources/Documents/Structs/SectionLayouts.html -------------------------------------------------------------------------------- /docs/Listable/docsets/Listable.docset/Contents/Resources/Documents/Structs/SwipeAction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/docsets/Listable.docset/Contents/Resources/Documents/Structs/SwipeAction.html -------------------------------------------------------------------------------- /docs/Listable/docsets/Listable.docset/Contents/Resources/Documents/Structs/TableAppearance.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/docsets/Listable.docset/Contents/Resources/Documents/Structs/TableAppearance.html -------------------------------------------------------------------------------- /docs/Listable/docsets/Listable.docset/Contents/Resources/Documents/Structs/ViewProperties.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/docsets/Listable.docset/Contents/Resources/Documents/Structs/ViewProperties.html -------------------------------------------------------------------------------- /docs/Listable/docsets/Listable.docset/Contents/Resources/Documents/Typealiases.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/docsets/Listable.docset/Contents/Resources/Documents/Typealiases.html -------------------------------------------------------------------------------- /docs/Listable/docsets/Listable.docset/Contents/Resources/Documents/css/highlight.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/docsets/Listable.docset/Contents/Resources/Documents/css/highlight.css -------------------------------------------------------------------------------- /docs/Listable/docsets/Listable.docset/Contents/Resources/Documents/css/jazzy.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/docsets/Listable.docset/Contents/Resources/Documents/css/jazzy.css -------------------------------------------------------------------------------- /docs/Listable/docsets/Listable.docset/Contents/Resources/Documents/img/carat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/docsets/Listable.docset/Contents/Resources/Documents/img/carat.png -------------------------------------------------------------------------------- /docs/Listable/docsets/Listable.docset/Contents/Resources/Documents/img/dash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/docsets/Listable.docset/Contents/Resources/Documents/img/dash.png -------------------------------------------------------------------------------- /docs/Listable/docsets/Listable.docset/Contents/Resources/Documents/img/gh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/docsets/Listable.docset/Contents/Resources/Documents/img/gh.png -------------------------------------------------------------------------------- /docs/Listable/docsets/Listable.docset/Contents/Resources/Documents/img/spinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/docsets/Listable.docset/Contents/Resources/Documents/img/spinner.gif -------------------------------------------------------------------------------- /docs/Listable/docsets/Listable.docset/Contents/Resources/Documents/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/docsets/Listable.docset/Contents/Resources/Documents/index.html -------------------------------------------------------------------------------- /docs/Listable/docsets/Listable.docset/Contents/Resources/Documents/js/jazzy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/docsets/Listable.docset/Contents/Resources/Documents/js/jazzy.js -------------------------------------------------------------------------------- /docs/Listable/docsets/Listable.docset/Contents/Resources/Documents/js/jazzy.search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/docsets/Listable.docset/Contents/Resources/Documents/js/jazzy.search.js -------------------------------------------------------------------------------- /docs/Listable/docsets/Listable.docset/Contents/Resources/Documents/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/docsets/Listable.docset/Contents/Resources/Documents/js/jquery.min.js -------------------------------------------------------------------------------- /docs/Listable/docsets/Listable.docset/Contents/Resources/Documents/js/lunr.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/docsets/Listable.docset/Contents/Resources/Documents/js/lunr.min.js -------------------------------------------------------------------------------- /docs/Listable/docsets/Listable.docset/Contents/Resources/Documents/js/typeahead.jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/docsets/Listable.docset/Contents/Resources/Documents/js/typeahead.jquery.js -------------------------------------------------------------------------------- /docs/Listable/docsets/Listable.docset/Contents/Resources/Documents/search.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/docsets/Listable.docset/Contents/Resources/Documents/search.json -------------------------------------------------------------------------------- /docs/Listable/docsets/Listable.docset/Contents/Resources/docSet.dsidx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/docsets/Listable.docset/Contents/Resources/docSet.dsidx -------------------------------------------------------------------------------- /docs/Listable/docsets/Listable.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/docsets/Listable.tgz -------------------------------------------------------------------------------- /docs/Listable/img/carat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/img/carat.png -------------------------------------------------------------------------------- /docs/Listable/img/dash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/img/dash.png -------------------------------------------------------------------------------- /docs/Listable/img/gh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/img/gh.png -------------------------------------------------------------------------------- /docs/Listable/img/spinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/img/spinner.gif -------------------------------------------------------------------------------- /docs/Listable/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/index.html -------------------------------------------------------------------------------- /docs/Listable/js/jazzy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/js/jazzy.js -------------------------------------------------------------------------------- /docs/Listable/js/jazzy.search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/js/jazzy.search.js -------------------------------------------------------------------------------- /docs/Listable/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/js/jquery.min.js -------------------------------------------------------------------------------- /docs/Listable/js/lunr.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/js/lunr.min.js -------------------------------------------------------------------------------- /docs/Listable/js/typeahead.jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/js/typeahead.jquery.js -------------------------------------------------------------------------------- /docs/Listable/search.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/search.json -------------------------------------------------------------------------------- /docs/Listable/undocumented.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/Listable/undocumented.json -------------------------------------------------------------------------------- /docs/ListableUI.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/docs/ListableUI.yml -------------------------------------------------------------------------------- /version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Listable/HEAD/version.rb --------------------------------------------------------------------------------