├── .github └── workflows │ ├── static.yml │ └── swift.yml ├── .gitignore ├── .swift-version ├── .swiftformat ├── .swiftpm └── xcode │ ├── package.xcworkspace │ └── contents.xcworkspacedata │ └── xcshareddata │ └── xcschemes │ └── Inspector.xcscheme ├── BuildTools ├── Empty.swift ├── Package.resolved └── Package.swift ├── Documentation ├── inspector_demo.gif ├── inspector_header.png ├── inspector_interface.png └── inspector_key-commands.jpg ├── Example ├── Configuration │ └── SampleCode.xcconfig ├── Example-SwiftUI │ ├── ExampleApp.swift │ ├── Preview Content │ │ └── Preview Assets.xcassets │ │ │ └── Contents.json │ └── SwiftUI-Example-Info.plist ├── Example-UIKit │ ├── AppDelegate.swift │ ├── BaseViewController.swift │ ├── ElementLibrary │ │ ├── ExampleAttributesLibrary.swift │ │ └── RoundedButtonAttributesSectionDataSource.swift │ ├── Example-Info.plist │ ├── Extensions │ │ ├── UIDatePickerStyle+Extensions.swift │ │ └── UIView+Animations.swift │ ├── PlaygroundViewController.swift │ ├── ReadMeViewController.swift │ ├── RoundedButton.swift │ ├── SceneDelegate.swift │ ├── Storyboards │ │ └── Base.lproj │ │ │ ├── LaunchScreen.storyboard │ │ │ └── Main.storyboard │ └── WeakObject.swift ├── Example.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── Example.xcscheme │ │ └── SwiftUI Example.xcscheme └── Resources │ └── Assets.xcassets │ ├── AccentColor.colorset │ └── Contents.json │ ├── AppIcon.appiconset │ ├── Contents.json │ ├── InspectorExampleApp-app@2x.png │ ├── InspectorExampleApp-app@3x.png │ ├── InspectorExampleApp-appstore.png │ ├── InspectorExampleApp-ipad-app.png │ ├── InspectorExampleApp-ipad-app@2x.png │ ├── InspectorExampleApp-ipad-notifications.png │ ├── InspectorExampleApp-ipad-notifications@2x.png │ ├── InspectorExampleApp-ipad-pro-app@2x.png │ ├── InspectorExampleApp-ipad-settings.png │ ├── InspectorExampleApp-ipad-settings@2x.png │ ├── InspectorExampleApp-ipad-spotlight.png │ ├── InspectorExampleApp-ipad-spotlight@2x.png │ ├── InspectorExampleApp-notification@2x.png │ ├── InspectorExampleApp-notification@3x.png │ ├── InspectorExampleApp-settings@2x.png │ ├── InspectorExampleApp-settings@3x.png │ ├── InspectorExampleApp-spotlight@2x.png │ └── InspectorExampleApp-spotlight@3x.png │ ├── Contents.json │ ├── CustomAction_32.imageset │ ├── Contents.json │ ├── customAction_32.png │ ├── customAction_32@2x.png │ └── customAction_32@3x.png │ ├── RoundedButton_32.imageset │ ├── Contents.json │ ├── CustomButton.png │ ├── CustomButton@2x.png │ └── CustomButton@3x.png │ ├── tab-bar-inspector-off.imageset │ ├── Contents.json │ ├── tab-bar-inspector-off.png │ ├── tab-bar-inspector-off@2x.png │ └── tab-bar-inspector-off@3x.png │ ├── tab-bar-inspector-on.imageset │ ├── Contents.json │ ├── tab-bar-inspector-on.png │ ├── tab-bar-inspector-on@2x.png │ └── tab-bar-inspector-on@3x.png │ ├── tab-bar-playground-off.imageset │ ├── Contents.json │ ├── tab-bar-playground-off.png │ ├── tab-bar-playground-off@2x.png │ └── tab-bar-playground-off@3x.png │ ├── tab-bar-playground-on.imageset │ ├── Contents.json │ ├── tab-bar-playground-on.png │ ├── tab-bar-playground-on@2x.png │ └── tab-bar-playground-on@3x.png │ └── titleColor.colorset │ └── Contents.json ├── Inspector.xcworkspace ├── contents.xcworkspacedata └── xcshareddata │ ├── IDETemplateMacros.plist │ ├── IDEWorkspaceChecks.plist │ ├── WorkspaceSettings.xcsettings │ └── swiftpm │ └── Package.resolved ├── LICENSE ├── Package.resolved ├── Package.swift ├── README.md ├── Sources └── Inspector │ ├── CommonUI │ ├── Bases │ │ ├── BaseCardView.swift │ │ ├── BaseControl.swift │ │ ├── BaseFormControl.swift │ │ ├── BaseView.swift │ │ └── ScrollingStackView.swift │ ├── Controls │ │ ├── AccessoryControl.swift │ │ ├── ColorPreviewControl.swift │ │ ├── DirectionalEdgeInsetsControl.swift │ │ ├── EdgeInsetsControl.swift │ │ ├── ImagePreviewControl.swift │ │ ├── NoteControl.swift │ │ ├── OffsetControl.swift │ │ ├── OptionListControl.swift │ │ ├── PointControl.swift │ │ ├── RectControl.swift │ │ ├── SegmentedControl.swift │ │ ├── SizeControl.swift │ │ ├── StepperControl.swift │ │ ├── StepperPairControl.swift │ │ ├── TextFieldControl.swift │ │ ├── TextViewControl.swift │ │ └── ToggleControl.swift │ ├── Enums │ │ ├── Animation.swift │ │ └── ThumbnailBackgroundStyle.swift │ ├── Icons │ │ ├── Icon.Glyph.swift │ │ ├── Icon.swift │ │ ├── IconButton.swift │ │ └── IconKit.swift │ ├── SectionHeader │ │ └── SectionHeader.swift │ ├── SeparatorView │ │ └── SeparatorView.swift │ ├── SizeInspectorViews │ │ ├── LengthMeasurementView+ArrowView.swift │ │ ├── LengthMeasurementView.swift │ │ └── SizeInspectorView.swift │ └── ViewHierarchyElement │ │ ├── LiveViewHierarchyElementThumbnailView.swift │ │ ├── ViewHierarchyElementDescriptionView.swift │ │ ├── ViewHierarchyElementThumbnailView.swift │ │ └── ViewHierarchyThumbnailViewController.swift │ ├── Configuration │ ├── InspectorAppearance.swift │ ├── InspectorColorStyle.swift │ ├── InspectorConfiguration+KeyCommandSettings.swift │ └── InspectorConfiguration.swift │ ├── ConsoleLogger │ └── ConsoleLogger.swift │ ├── ElementInspector │ ├── Configuration │ │ ├── ElementInspectorAppearance.swift │ │ └── ElementInspectorConfiguration.swift │ ├── Coordinators │ │ ├── ElementInspectorCoordinator+ElementInspectorFormPanelDelegate.swift │ │ ├── ElementInspectorCoordinator+ElementInspectorNavigationControllerDismissDelegate.swift │ │ ├── ElementInspectorCoordinator+ElementInspectorViewControllerDelegate.swift │ │ ├── ElementInspectorCoordinator+OperationQueueManagerProtocol.swift │ │ └── ElementInspectorCoordinator.swift │ ├── Enums │ │ ├── ElementInspectorPanel.swift │ │ ├── ElementInspectorPanelListState.swift │ │ ├── ElementInspectorPanelSelectionMode.swift │ │ ├── InspectorElementItemSeparatorStyle.swift │ │ └── InspectorElementSectionState.swift │ ├── Protocols │ │ ├── ElementInspectorFormPanelDataSource.swift │ │ ├── ElementInspectorPanelViewControllerProtocol.swift │ │ └── InspectorElementSectionView.swift │ ├── Submodules │ │ ├── ChildrenPanel │ │ │ ├── Enums │ │ │ │ └── ElementChildrenPanelAction.swift │ │ │ ├── ViewControllers │ │ │ │ ├── ElementChildrenPanelViewController+UITableViewDataSource.swift │ │ │ │ ├── ElementChildrenPanelViewController+UITableViewDelegate.swift │ │ │ │ └── ElementChildrenPanelViewController.swift │ │ │ ├── ViewModels │ │ │ │ ├── CellViewModel.swift │ │ │ │ └── ElementChildrenPanelViewModel.swift │ │ │ └── Views │ │ │ │ ├── ElementChildrenPanelTableViewCodeCell.swift │ │ │ │ └── ElementChildrenPanelViewCode.swift │ │ └── FormPanel │ │ │ ├── DataSource │ │ │ └── DefaultFormPanelDataSource.swift │ │ │ ├── ElementInspectorFormPanelViewController+InspectorElementSectionViewControllerDelegate.swift │ │ │ ├── ElementInspectorFormPanelViewController.swift │ │ │ └── InspectorElementSectionViewController.swift │ ├── ViewControllers │ │ ├── ElementInspectorNavigationController.swift │ │ ├── ElementInspectorPanelViewController.swift │ │ └── ElementInspectorViewController.swift │ ├── ViewModel │ │ └── ElementInspectorViewModel.swift │ └── Views │ │ ├── ElementInspectorViewCode+Content.swift │ │ ├── ElementInspectorViewCode.swift │ │ ├── InspectorElementKeyCommandSectionView.swift │ │ ├── InspectorElementLayoutConstraintSectionView.swift │ │ ├── InspectorElementSectionFormView.swift │ │ └── ToogleCollapseButton.swift │ ├── ElementLibraries │ ├── DefaultElementAttributesLibrary.swift │ ├── DefaultElementIdentityLibrary.swift │ ├── DefaultElementSizeLibrary.swift │ └── Sections │ │ ├── Attributes │ │ ├── ActivityIndicatorViewAttributesSectionDataSource.swift │ │ ├── ApplicationAttributesSectionDataSource.swift │ │ ├── ApplicationShortcutItemSectionDataSource.swift │ │ ├── ButtonAttributesSectionDataSource.swift │ │ ├── ControlAttributesSectionDataSource.swift │ │ ├── DatePickerAttributesSectionDataSource.swift │ │ ├── ImageViewAttributesSectionDataSource.swift │ │ ├── KeyCommandsSectionDataSource.swift │ │ ├── LabelAttributesSectionDataSource.swift │ │ ├── LayerAttributesSectionDataSource.swift │ │ ├── MapViewAttributesSectionDataSource.swift │ │ ├── NavigationBarAppearanceAttributesSectionDataSource.swift │ │ ├── NavigationBarAttributesSectionDataSource.swift │ │ ├── NavigationControllerAttributesSectionDataSource.swift │ │ ├── NavigationItemAttributesSectionDataSource.swift │ │ ├── ScrollViewAttributesSectionDataSource.swift │ │ ├── SegmentedControlAttributesSectionDataSource.swift │ │ ├── SliderAttributesSectionDataSource.swift │ │ ├── StackViewAttributesSectionDataSource.swift │ │ ├── SwitchAttributesSectionDataSource.swift │ │ ├── TabBarAttributesSectionDataSource.swift │ │ ├── TabBarItemAttributesSectionDataSource.swift │ │ ├── TableViewAttributesSectionDataSource.swift │ │ ├── TextFieldAttributesSectionDataSource.swift │ │ ├── TextViewAttributesSectionDataSource.swift │ │ ├── ViewAttributesSectionDataSource.swift │ │ ├── ViewControllerAttributesSectionDataSource.swift │ │ └── WindowAttributesSectionDataSource.swift │ │ ├── Identity │ │ ├── HierarchyIdentitySectionDataSource.swift │ │ ├── HighlightViewSectionDataSource.swift │ │ ├── PreviewIdentitySectionDataSource.swift │ │ └── RuntimeAttributesIdentitySectionDataSource.swift │ │ └── Size │ │ ├── ButtonSizeSectionDataSource.swift │ │ ├── ContentLayoutPrioritySizeSectionDataSource.swift │ │ ├── LabelSizeSectionDataSource.swift │ │ ├── LayoutConstraintSizeSectionDataSource.swift │ │ ├── ScrollViewSizeSectionDataSource.swift │ │ ├── SegmentedControlSizeSectionDataSource.swift │ │ ├── TableViewSizeSectionDataSource.swift │ │ └── ViewFrameSizeSectionDataSource.swift │ ├── Extensions │ ├── Array │ │ ├── Array+Inserting.swift │ │ ├── Array+InspectorElementLibraryProtocol.swift │ │ ├── Array+UIKeyCommand.swift │ │ └── Array+UniqueValues.swift │ ├── BinaryFloatingPoint │ │ └── BinaryFloatingPoint+String.swift │ ├── CACornerMask │ │ └── CACornerMask+UIRectCorner.swift │ ├── CGRect │ │ └── CGRect+Hashable.swift │ ├── CGSize │ │ └── CGSize+Sizes.swift │ ├── CharacterSet │ │ └── CharacterSet+AllCharacters.swift │ ├── IndexPath │ │ └── IndexPath+FirstRow.swift │ ├── InspectorElementViewModelProperty │ │ ├── InspectorElementViewModelProperty+Color.swift │ │ ├── InspectorElementViewModelProperty+Font.swift │ │ ├── InspectorElementViewModelProperty+Hashable.swift │ │ ├── InspectorElementViewModelProperty+SegmentedControl.swift │ │ ├── InspectorElementViewModelProperty+Stepper.swift │ │ └── InspectorElementViewModelProperty+TextView.swift │ ├── Int │ │ ├── Int+CGFloat.swift │ │ └── Int+String.swift │ ├── MKMapView │ │ ├── MKMapView+CaseIterable.swift │ │ └── MKMapView+CustomStringConvertible.swift │ ├── NSDirectionalEdgeInsets │ │ └── NSDirectionalEdgeInsets+Update.swift │ ├── NSLayoutConstraint │ │ ├── Attribute │ │ │ └── NSLayoutConstraint+Attribute.swift │ │ ├── Axis │ │ │ ├── NSLayoutConstraint+Axis+CaseIterable.swift │ │ │ └── NSLayoutConstraint+Axis+SegmentedControlDisplayable.swift │ │ ├── NSLayoutConstraint+SafeIdentifier.swift │ │ └── Relation │ │ │ ├── NSLayoutConstraint+Relation+CaseIterable.swift │ │ │ └── NSLayoutConstraint+Relation+CustomStringConvertible.swift │ ├── NSObject │ │ ├── NSObject+ClassesForCoder.swift │ │ ├── NSObject+Create.swift │ │ ├── NSObject+PropertyNames.swift │ │ └── NSObjectProtocoll+Debounce.swift │ ├── NSRegularExpression │ │ └── NSRegularExpression+Matches.swift │ ├── NSTextAlignment │ │ ├── NSTextAlignment+CaseIterable.swift │ │ └── NSTextAlignment+SegmentedControlDisplayable.swift │ ├── NumberFormatter │ │ └── NumberFormatter+Convenience.swift │ ├── Optional │ │ └── Optional+Collection.swift │ ├── String │ │ └── String+Utils.swift │ ├── UIAction │ │ └── UIAction+Convenience.swift │ ├── UIActivityIndicatorView+Style │ │ ├── UIActivityIndicatorView+Style+CaseIterable.swift │ │ └── UIActivityIndicatorView+Style+CustomStringConvertible.swift │ ├── UIBarStyle │ │ ├── UIBarStyle+CaseIterable.swift │ │ └── UIBarStyle+CustomStringConvertible.swift │ ├── UIBlurEffect │ │ ├── Style │ │ │ └── UIBlurEffect.Style+CaseIterable.swift │ │ ├── UIBlurEffect+Style.swift │ │ └── UIBlurEffect.Style+CustomStringConvertible.swift │ ├── UIButton+ButtonType │ │ ├── UIButton+ButtonType+CaseIterable.swift │ │ └── UIButton.ButtonType+CustomStringConvertible.swift │ ├── UIColor │ │ ├── UIColor+Hex.swift │ │ ├── UIColor+Init.swift │ │ └── UIColor+RGBA.swift │ ├── UIContextMenuConfiguration │ │ └── UIContextMenuConfiguration+ViewHierarchyElement.swift │ ├── UIControl │ │ ├── ContentHorizontalAlignment │ │ │ ├── UIControl.ContentHorizontalAlignment+CaseIterable.swift │ │ │ └── UIControl.ContentHorizontalAlignment+SegmentedControlDisplayable.swift │ │ ├── ContentVerticalAlignment │ │ │ ├── UIControl.ContentVerticalAlignment+CaseIterable.swift │ │ │ └── UIControl.ContentVerticalAlignment+CustomStringConvertible.swift │ │ ├── State │ │ │ └── UIControl.State+CustomStringConvertible.swift │ │ └── UIControl+Animation.swift │ ├── UIDataDetectorTypes │ │ └── UIDataDetectorTypes+CustomStringConvertible.swift │ ├── UIDatePicker+Mode │ │ ├── UIDatePicker+Mode+CaseIterable.swift │ │ └── UIDatePicker+Mode+CustomStringConvertible.swift │ ├── UIDatePickerStyle │ │ ├── UIDatePickerStyle+CaseIterable.swift │ │ └── UIDatePickerStyle+CustomStringConvertible.swift │ ├── UIImage │ │ ├── UIImage+AssetName.swift │ │ ├── UIImage+Mask.swift │ │ ├── UIImage+ModuleImage.swift │ │ └── UIImage+Symbols.swift │ ├── UIKayboardAppearance │ │ ├── UIKeyboardAppearance+CaseIterable.swift │ │ └── UIKeyboardAppearance+CustomStringConvertible.swift │ ├── UIKeyCommand │ │ └── UIKeyCommandOptions+Init.swift │ ├── UIKeyboardType │ │ ├── UIKeyboardType+CaseIterable.swift │ │ └── UIKeyboardType+CustomStringConvertible.swift │ ├── UILayoutPriority │ │ ├── UILayoutPriority+CaseIterable.swift │ │ └── UILayoutPriority+CustomStringConvertible.swift │ ├── UIMenu │ │ └── UIMenu+ViewHierarchyElementRepresentable.swift │ ├── UIMenuElement │ │ └── UIMenuElement+Convenience.swift │ ├── UIModalPresentationStyle │ │ ├── UIModalPresentationStyle+CaseIterable.swift │ │ └── UIModalPresentationStyle+CustomStringConvertible.swift │ ├── UIModalTransitionStyle │ │ ├── UIModalTransitionStyle+CaseIterable.swift │ │ └── UIModalTransitionStyle+CustomStringConvertible.swift │ ├── UIReturnKeyType │ │ ├── UIReturnKeyType+CaseIterable.swift │ │ └── UIReturnKeyType+CustomStringConvertible.swift │ ├── UIScrollView │ │ ├── ContentInsetAdjustmentBehavior │ │ │ ├── UIScrollView.ContentInsetAdjustmentBehavior+CaseIterable.swift │ │ │ └── UIScrollView.ContentInsetAdjustmentBehavior+CustomStringConvertible.swift │ │ ├── IndicatorStyle │ │ │ ├── UIScrollView.IndicatorStyle+CaseIterable.swift │ │ │ └── UIScrollView.IndicatorStyle+CustomStringConvertible.swift │ │ └── KeyboardDismissMode │ │ │ ├── UIScrollView.KeyboardDismissMode+CaseIterable.swift │ │ │ └── UIScrollView.KeyboardDismissMode+CustomStringConvertible.swift │ ├── UISemanticContentAttribute │ │ ├── UISemanticContentAttribute+CaseIterable.swift │ │ └── UISemanticContentAttribute+CustomStringConvertible.swift │ ├── UIStackView │ │ ├── Alignment │ │ │ ├── UIStackView.Alignment+CaseIterable.swift │ │ │ └── UIStackView.Alignment+CustomStringConvertible.swift │ │ ├── Distribution │ │ │ ├── UIStackView.Distribution+CaseIterable.swift │ │ │ └── UIStackView.Distribution+CustomStringConvertible.swift │ │ └── UIStackView+Init.swift │ ├── UISwitch │ │ ├── UISwitch.Style+CaseIterable.swift │ │ └── UISwitch.Style+SegmentedControlDisplayable.swift │ ├── UITableView │ │ └── UITableView+Convenience.swift │ ├── UITextAutocapitalizationType │ │ ├── UITextAutocapitalizationType+CaseIterable.swift │ │ └── UITextAutocapitalizationType+CustomStringConvertible.swift │ ├── UITextAutocorrectionType │ │ ├── UITextAutocorrectionType+CaseIterable.swift │ │ └── UITextAutocorrectionType+CustomStringConvertible.swift │ ├── UITextContentType │ │ ├── UITextContentType+CaseIterable.swift │ │ └── UITextContentType+CustomStringConvertible.swift │ ├── UITextField │ │ ├── BorderStyle │ │ │ ├── UITextField.BorderStyle+CaseIterable.swift │ │ │ └── UITextField.BorderStyle+SegmentedControlDisplayable.swift │ │ └── ViewMode │ │ │ ├── UITextField.ViewMode+CaseIterable.swift │ │ │ └── UITextField.ViewMode+CustomStringConvertible.swift │ ├── UITextSmartDashesType │ │ ├── UITextSmartDashesType+CaseIterable.swift │ │ └── UITextSmartDashesType+CustomStringConvertible.swift │ ├── UITextSmartQuotesType │ │ ├── UITextSmartQuotesType+CaseIterable.swift │ │ └── UITextSmartQuotesType+CustomStringConvertible.swift │ ├── UITextSpellCheckingType │ │ ├── UITextSpellCheckingType+CaseIterable.swift │ │ └── UITextSpellCheckingType+CustomStringConvertible.swift │ ├── UITextView │ │ └── UITextView+Init.swift │ ├── UIView │ │ ├── AutoresizingMask │ │ │ ├── UIView.AutoresizingMask+CaseIterable.swift │ │ │ └── UIView.AutoresizingMask+CustomStringConvertible.swift │ │ ├── ContentMode │ │ │ ├── UIView.ContentMode+CaseIterable.swift │ │ │ └── UIView.ContentMode+CustomStringConvertible.swift │ │ ├── UIView+Convenience.swift │ │ ├── UIView+HightlightView.swift │ │ ├── UIView+Mask.swift │ │ ├── UIView+Snapshot.swift │ │ ├── UIView+Swizzling.swift │ │ └── UIView+ViewHierarchyElementRepresentable.swift │ ├── UIViewController │ │ ├── UIViewController+Children.swift │ │ ├── UIViewController+PopoverPresentationStyle.swift │ │ └── UIViewController+UIKeyCommand.swift │ ├── UIWindow │ │ └── UIWindow+PresentedViewController.swift │ └── ViewHierarchyLayer │ │ ├── ViewHierarchyLayer+Actionable.swift │ │ ├── ViewHierarchyLayer+AdditiveArithmetic.swift │ │ └── ViewHierarchyLayer+CustomStringConvertible.swift │ ├── Factories │ └── ViewHierarchyCoordinatorFactory.swift │ ├── Inspector.swift │ ├── InspectorView │ ├── Coordinators │ │ └── InspectorViewCoordinator.swift │ ├── Enums │ │ └── InspectorCommand.swift │ ├── ViewControllers │ │ ├── InspectorViewController+UITableViewDataSource.swift │ │ ├── InspectorViewController+UITableViewDelegate.swift │ │ ├── InspectorViewController+UITableViewKeyCommandsDelegate.swift │ │ └── InspectorViewController.swift │ ├── ViewModels │ │ ├── CommandGroupsViewModel.swift │ │ ├── HierarchyInspectorViewModel.swift │ │ └── SnapshotViewModel.swift │ └── Views │ │ ├── HierarchyInspectorActionTableViewCell.swift │ │ ├── HierarchyInspectorReferenceSummaryTableViewCell.swift │ │ ├── HierarchyInspectorSearchView.swift │ │ ├── HierarchyInspectorTableViewCell.swift │ │ ├── HierarchyInspectorTableViewHeaderView.swift │ │ └── HierarchyInspectorViewCode.swift │ ├── Manager │ ├── Manager+ElementInspectorCoordinatorDelegate.swift │ ├── Manager+InspectorViewCoordinatorDelegate.swift │ ├── Manager+KeyCommandPresentable.swift │ ├── Manager+ViewHierarchyActionableProtocol.swift │ ├── Manager+ViewHierarchyLayerManagerProtocol.swift │ └── Manager.swift │ ├── Models │ ├── BundleInfo.swift │ ├── Command.swift │ ├── CommandsGroup.swift │ ├── ElementCatalogIconProviderDefault.swift │ ├── ElementPanelType.swift │ ├── ExpirableStore.swift │ ├── FontReference.swift │ ├── HashableValue.swift │ ├── InspectorElementProperty.swift │ ├── InspectorElementSection.swift │ ├── LayoutConstraintElement.swift │ ├── Logger.swift │ ├── MainThreadAsyncOperation.swift │ ├── MainThreadOperation.swift │ ├── Provider.swift │ ├── SnapshotStore.swift │ ├── ViewHierarchy.swift │ ├── ViewHierarchyColorSchemeDefault.swift │ ├── ViewHierarchyElement.swift │ ├── ViewHierarchyElementAction.swift │ ├── ViewHierarchyElementController.swift │ ├── ViewHierarchyInformation.swift │ ├── ViewHierarchyInterfaceStyle.swift │ ├── ViewHierarchyIssue.swift │ ├── ViewHierarchyLayer.swift │ ├── ViewHierarchyLayerAction.swift │ ├── ViewHierarchyRoot.swift │ └── ViewHierarchySnapshot.swift │ ├── Presenters │ ├── AdaptiveModalPresenter.swift │ ├── ColorPickerPresenter.swift │ ├── ContextMenuPresenter.swift │ ├── DocumentPickerPresenter.swift │ └── UIViewControllerTransitionPresenter.swift │ ├── Protocols │ ├── Actionable.swift │ ├── AsyncOperationProtocol.swift │ ├── CaseIterable.swift │ ├── Create.swift │ ├── CustomImageConvertible.swift │ ├── CustomStringConvertible.swift │ ├── DataReloadingProtocol.swift │ ├── DismissablePresentationProtocol.swift │ ├── DraggableViewProtocol.swift │ ├── ElementInspectorAppearanceProviding.swift │ ├── ExpirableProtocol.swift │ ├── InspectorAppearanceProviding.swift │ ├── InspectorCustomizationProviding.swift │ ├── InspectorElementLibraryProtocol.swift │ ├── InspectorElementSectionDataSource.swift │ ├── InternalViewProtocol.swift │ ├── KeyCommandPresentable.swift │ ├── LayerCommandProtocol.swift │ ├── LayerViewProtocol.swift │ ├── MenuContentProtocol.swift │ ├── NonInspectableView.swift │ ├── OperationQueueManagerProtocol.swift │ ├── TextElement.swift │ ├── ViewHierarchyActionableProtocol.swift │ ├── ViewHierarchyControllerProtocol.swift │ ├── ViewHierarchyElementCatalog.swift │ ├── ViewHierarchyElementReference.swift │ ├── ViewHierarchyElementRepresentable.swift │ ├── ViewHierarchyLayerConstructorProtocol.swift │ ├── ViewHierarchyLayerManagerProtocol.swift │ └── ViewHierarchyRepresentable.swift │ ├── Resources │ ├── ElementLibrary.xcassets │ │ ├── Contents.json │ │ ├── NSObject.imageset │ │ │ ├── Contents.json │ │ │ └── NSObject-32_Light.pdf │ │ ├── Originals │ │ │ ├── Button-32_Normal.imageset │ │ │ │ ├── Button-32_Normal.png │ │ │ │ ├── Button-32_Normal@2x.png │ │ │ │ └── Contents.json │ │ │ ├── Contents.json │ │ │ ├── UIButton_32-Dark_Normal.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── UIButton_32-Dark_Normal.png │ │ │ │ └── UIButton_32-Dark_Normal@2x.png │ │ │ ├── UIDatePicker_32_Normal.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── UIDatePicker_32_Normal.png │ │ │ │ └── UIDatePicker_32_Normal@2x.png │ │ │ ├── UISegmentedControl_32_Dark_Normal.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── UISegmentedControl_32_Dark_Normal.png │ │ │ │ └── UISegmentedControl_32_Dark_Normal@2x.png │ │ │ ├── UISegmentedControl_32_Normal.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── UISegmentedControl_32_Normal.png │ │ │ │ └── UISegmentedControl_32_Normal@2x.png │ │ │ └── UISlider_32_Normal.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── UISlider_32_Normal.png │ │ │ │ └── UISlider_32_Normal@2x.png │ │ ├── Templates │ │ │ ├── BackgroundView-32_Normal.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── background-32_Normal.png │ │ │ │ └── background-32_Normal@2x.png │ │ │ ├── Contents.json │ │ │ ├── DatePicker-32_Normal.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── DatePicker-32_Normal.png │ │ │ │ └── DatePicker-32_Normal@2x.png │ │ │ ├── DropShadow-32_Normal.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── shadow-32_Normal.png │ │ │ │ └── shadow-32_Normal@2x.png │ │ │ ├── HStack-32_Normal.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── HStack-32_Normal.png │ │ │ │ └── HStack-32_Normal@2x.png │ │ │ ├── Hidden-32_Normal.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Hidden-32_Normal.pdf │ │ │ ├── ImageView-32_Normal.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── ImageView-32_Normal.png │ │ │ │ └── ImageView-32_Normal@2x.png │ │ │ ├── Key-UIWindow-32_Normal.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Key-UIWindow-32_Normal.pdf │ │ │ ├── NavigationBar-32_Normal.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── navigationBar-16_Normal@2x.png │ │ │ │ └── navigationBar-32_Normal@2x.png │ │ │ ├── TabItem-32_Normal.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── tabItem-32_Normal.png │ │ │ │ └── tabItem-32_Normal@2x.png │ │ │ ├── TabbedView-32_Normal.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── TabbedView-32_Normal.png │ │ │ │ └── TabbedView-32_Normal@2x.png │ │ │ ├── TextField-32_Normal.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── TextField-32_Normal.png │ │ │ │ └── TextField-32_Normal@2x.png │ │ │ ├── TextView-32_Normal.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── TextView-32_Normal.png │ │ │ │ └── TextView-32_Normal@2x.png │ │ │ ├── Toggle-32_Normal.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── Toggle-32_Normal.png │ │ │ │ └── Toggle-32_Normal@2x.png │ │ │ ├── UIActivityIndicator_32_Dark_Normal.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── UIActivityIndicator_32_Dark_Normal.png │ │ │ │ └── UIActivityIndicator_32_Dark_Normal@2x.png │ │ │ ├── UIControl-32_Normal.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── UIControl-32_Normal.pdf │ │ │ ├── UILabel_32-Dark_Normal.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── UILabel_32-Dark_Normal.png │ │ │ │ └── UILabel_32-Dark_Normal@2x.png │ │ │ ├── UIScrollView_32_Normal.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── UIScrollView_32_Normal.png │ │ │ │ └── UIScrollView_32_Normal@2x.png │ │ │ ├── UIToolbar-32_Normal.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── toolbar-32_Normal.png │ │ │ │ └── toolbar-32_Normal@2x.png │ │ │ ├── UITransitionView-32_Normal.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── transition-32_Normal.png │ │ │ │ └── transition-32_Normal@2x.png │ │ │ ├── UIView │ │ │ │ ├── Contents.json │ │ │ │ ├── EmptyView-32_Normal.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── UIView-32.pdf │ │ │ │ ├── filled-view-32_Normal.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── UIView-Filled-32.pdf │ │ │ │ └── missing-view-32_Normal.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── UIView-Missing-32.pdf │ │ │ ├── UIWindow-32_Normal.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── window-32.pdf │ │ │ ├── VStack-32_Normal.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── VStack-32_Normal.png │ │ │ │ └── VStack-32_Normal@2x.png │ │ │ ├── Webview-32_Normal.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Webview-32_Normal.pdf │ │ │ ├── Window-32_Normal.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── presentedWindowStyle-32_Normal.png │ │ │ │ └── presentedWindowStyle-32_Normal@2x.png │ │ │ ├── app-icon-template.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── app-icon-template.pdf │ │ │ └── keyboardShortcut-32_Normal.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── keyboardShortcut-32_Normal.png │ │ │ │ ├── keyboardShortcut-32_Normal@2x.png │ │ │ │ └── keyboardShortcut-32_Normal@3x.png │ │ ├── UICollectionViewController.imageset │ │ │ ├── Contents.json │ │ │ ├── UICollectionViewController_32_Normal.png │ │ │ └── UICollectionViewController_32_Normal@2x.png │ │ ├── UINavigationController.imageset │ │ │ ├── Contents.json │ │ │ ├── UINavigationController_32_Normal.png │ │ │ └── UINavigationController_32_Normal@2x.png │ │ ├── UIPageViewController.imageset │ │ │ ├── Contents.json │ │ │ ├── UIPageViewController_32_Normal.png │ │ │ └── UIPageViewController_32_Normal@2x.png │ │ ├── UISearchController.imageset │ │ │ ├── Contents.json │ │ │ ├── UISearchController_32_Normal.png │ │ │ └── UISearchController_32_Normal@2x.png │ │ ├── UITabBarController.imageset │ │ │ ├── Contents.json │ │ │ ├── UITabBarController_32_Normal.png │ │ │ └── UITabBarController_32_Normal@2x.png │ │ └── UITableViewController.imageset │ │ │ ├── Contents.json │ │ │ ├── UITableViewController_32_Normal.png │ │ │ └── UITableViewController_32_Normal@2x.png │ └── Symbols.xcassets │ │ ├── Contents.json │ │ ├── Generic │ │ ├── Contents.json │ │ ├── binoculars.imageset │ │ │ ├── Contents.json │ │ │ └── binoculars.pdf │ │ ├── binocularsFill.imageset │ │ │ ├── Contents.json │ │ │ └── binoculars.fill.pdf │ │ ├── collapse-mirrored.imageset │ │ │ ├── Contents.json │ │ │ └── collapse.png │ │ ├── collapse.imageset │ │ │ ├── Contents.json │ │ │ └── collapse.pdf │ │ ├── ellipsisCircle.imageset │ │ │ ├── Contents.json │ │ │ └── ellipsisCircle.pdf │ │ ├── ellipsisCircleFill.imageset │ │ │ ├── Contents.json │ │ │ └── ellipsisCircleFill.pdf │ │ ├── exclamationmark.triangle.imageset │ │ │ ├── Contents.json │ │ │ └── exclamationmark.triangle.pdf │ │ ├── expand.imageset │ │ │ ├── Contents.json │ │ │ └── expand.pdf │ │ └── info.circle.imageset │ │ │ ├── Contents.json │ │ │ └── info.circle.pdf │ │ ├── Layer Actions │ │ ├── Contents.json │ │ ├── LayerAction-empty.imageset │ │ │ ├── Contents.json │ │ │ └── LayerAction-empty.pdf │ │ ├── LayerAction-hidden.imageset │ │ │ ├── Contents.json │ │ │ └── LayerAction-hidden.pdf │ │ ├── LayerAction-hide-all.imageset │ │ │ ├── Contents.json │ │ │ └── LayerAction-hide-all Copy.pdf │ │ ├── LayerAction-show-all.imageset │ │ │ ├── Contents.json │ │ │ └── LayerAction-show-all Copy.pdf │ │ └── LayerAction-visible.imageset │ │ │ ├── Contents.json │ │ │ └── LayerAction-show-alt.pdf │ │ ├── Panel │ │ ├── Contents.json │ │ └── identityPanel.imageset │ │ │ ├── Contents.json │ │ │ └── identityPanel.pdf │ │ └── empty.imageset │ │ ├── Contents.json │ │ └── Empty.png │ ├── Strings │ └── Texts.swift │ ├── SwiftUI │ ├── DeviceShakeModifier.swift │ ├── InspectorModifier.swift │ └── InspectorUI.swift │ ├── TransitionCoordinator │ └── ElementInspectorSlidingPanelAnimator.swift │ └── ViewHierarchy │ ├── Coordinators │ ├── ViewHierarchyCoordinator+AsyncOperationProtocol.swift │ ├── ViewHierarchyCoordinator+LayerCommandProtocol.swift │ ├── ViewHierarchyCoordinator+LayerConstructorProtocol.swift │ ├── ViewHierarchyCoordinator+LayerViewDelegate.swift │ └── ViewHierarchyCoordinator.swift │ └── Views │ ├── ElementNameView.swift │ ├── HighlightView.swift │ ├── LayerView.swift │ ├── LayerViewComponent.swift │ ├── LoaderView.swift │ └── WireframeView.swift └── Tests ├── InspectorTests ├── InspectorTests.swift └── XCTestManifests.swift └── LinuxMain.swift /.github/workflows/static.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/.github/workflows/static.yml -------------------------------------------------------------------------------- /.github/workflows/swift.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/.github/workflows/swift.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/.gitignore -------------------------------------------------------------------------------- /.swift-version: -------------------------------------------------------------------------------- 1 | 5.3 -------------------------------------------------------------------------------- /.swiftformat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/.swiftformat -------------------------------------------------------------------------------- /.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /.swiftpm/xcode/xcshareddata/xcschemes/Inspector.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/.swiftpm/xcode/xcshareddata/xcschemes/Inspector.xcscheme -------------------------------------------------------------------------------- /BuildTools/Empty.swift: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /BuildTools/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/BuildTools/Package.resolved -------------------------------------------------------------------------------- /BuildTools/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/BuildTools/Package.swift -------------------------------------------------------------------------------- /Documentation/inspector_demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Documentation/inspector_demo.gif -------------------------------------------------------------------------------- /Documentation/inspector_header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Documentation/inspector_header.png -------------------------------------------------------------------------------- /Documentation/inspector_interface.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Documentation/inspector_interface.png -------------------------------------------------------------------------------- /Documentation/inspector_key-commands.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Documentation/inspector_key-commands.jpg -------------------------------------------------------------------------------- /Example/Configuration/SampleCode.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Example/Configuration/SampleCode.xcconfig -------------------------------------------------------------------------------- /Example/Example-SwiftUI/ExampleApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Example/Example-SwiftUI/ExampleApp.swift -------------------------------------------------------------------------------- /Example/Example-SwiftUI/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Example/Example-SwiftUI/Preview Content/Preview Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Example/Example-SwiftUI/SwiftUI-Example-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Example/Example-SwiftUI/SwiftUI-Example-Info.plist -------------------------------------------------------------------------------- /Example/Example-UIKit/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Example/Example-UIKit/AppDelegate.swift -------------------------------------------------------------------------------- /Example/Example-UIKit/BaseViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Example/Example-UIKit/BaseViewController.swift -------------------------------------------------------------------------------- /Example/Example-UIKit/ElementLibrary/ExampleAttributesLibrary.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Example/Example-UIKit/ElementLibrary/ExampleAttributesLibrary.swift -------------------------------------------------------------------------------- /Example/Example-UIKit/ElementLibrary/RoundedButtonAttributesSectionDataSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Example/Example-UIKit/ElementLibrary/RoundedButtonAttributesSectionDataSource.swift -------------------------------------------------------------------------------- /Example/Example-UIKit/Example-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Example/Example-UIKit/Example-Info.plist -------------------------------------------------------------------------------- /Example/Example-UIKit/Extensions/UIDatePickerStyle+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Example/Example-UIKit/Extensions/UIDatePickerStyle+Extensions.swift -------------------------------------------------------------------------------- /Example/Example-UIKit/Extensions/UIView+Animations.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Example/Example-UIKit/Extensions/UIView+Animations.swift -------------------------------------------------------------------------------- /Example/Example-UIKit/PlaygroundViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Example/Example-UIKit/PlaygroundViewController.swift -------------------------------------------------------------------------------- /Example/Example-UIKit/ReadMeViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Example/Example-UIKit/ReadMeViewController.swift -------------------------------------------------------------------------------- /Example/Example-UIKit/RoundedButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Example/Example-UIKit/RoundedButton.swift -------------------------------------------------------------------------------- /Example/Example-UIKit/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Example/Example-UIKit/SceneDelegate.swift -------------------------------------------------------------------------------- /Example/Example-UIKit/Storyboards/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Example/Example-UIKit/Storyboards/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Example/Example-UIKit/Storyboards/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Example/Example-UIKit/Storyboards/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Example/Example-UIKit/WeakObject.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Example/Example-UIKit/WeakObject.swift -------------------------------------------------------------------------------- /Example/Example.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Example/Example.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/Example.xcodeproj/xcshareddata/xcschemes/Example.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Example/Example.xcodeproj/xcshareddata/xcschemes/Example.xcscheme -------------------------------------------------------------------------------- /Example/Example.xcodeproj/xcshareddata/xcschemes/SwiftUI Example.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Example/Example.xcodeproj/xcshareddata/xcschemes/SwiftUI Example.xcscheme -------------------------------------------------------------------------------- /Example/Resources/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Example/Resources/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /Example/Resources/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Example/Resources/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/Resources/Assets.xcassets/AppIcon.appiconset/InspectorExampleApp-app@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Example/Resources/Assets.xcassets/AppIcon.appiconset/InspectorExampleApp-app@2x.png -------------------------------------------------------------------------------- /Example/Resources/Assets.xcassets/AppIcon.appiconset/InspectorExampleApp-app@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Example/Resources/Assets.xcassets/AppIcon.appiconset/InspectorExampleApp-app@3x.png -------------------------------------------------------------------------------- /Example/Resources/Assets.xcassets/AppIcon.appiconset/InspectorExampleApp-appstore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Example/Resources/Assets.xcassets/AppIcon.appiconset/InspectorExampleApp-appstore.png -------------------------------------------------------------------------------- /Example/Resources/Assets.xcassets/AppIcon.appiconset/InspectorExampleApp-ipad-app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Example/Resources/Assets.xcassets/AppIcon.appiconset/InspectorExampleApp-ipad-app.png -------------------------------------------------------------------------------- /Example/Resources/Assets.xcassets/AppIcon.appiconset/InspectorExampleApp-ipad-app@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Example/Resources/Assets.xcassets/AppIcon.appiconset/InspectorExampleApp-ipad-app@2x.png -------------------------------------------------------------------------------- /Example/Resources/Assets.xcassets/AppIcon.appiconset/InspectorExampleApp-ipad-notifications.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Example/Resources/Assets.xcassets/AppIcon.appiconset/InspectorExampleApp-ipad-notifications.png -------------------------------------------------------------------------------- /Example/Resources/Assets.xcassets/AppIcon.appiconset/InspectorExampleApp-ipad-notifications@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Example/Resources/Assets.xcassets/AppIcon.appiconset/InspectorExampleApp-ipad-notifications@2x.png -------------------------------------------------------------------------------- /Example/Resources/Assets.xcassets/AppIcon.appiconset/InspectorExampleApp-ipad-pro-app@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Example/Resources/Assets.xcassets/AppIcon.appiconset/InspectorExampleApp-ipad-pro-app@2x.png -------------------------------------------------------------------------------- /Example/Resources/Assets.xcassets/AppIcon.appiconset/InspectorExampleApp-ipad-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Example/Resources/Assets.xcassets/AppIcon.appiconset/InspectorExampleApp-ipad-settings.png -------------------------------------------------------------------------------- /Example/Resources/Assets.xcassets/AppIcon.appiconset/InspectorExampleApp-ipad-settings@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Example/Resources/Assets.xcassets/AppIcon.appiconset/InspectorExampleApp-ipad-settings@2x.png -------------------------------------------------------------------------------- /Example/Resources/Assets.xcassets/AppIcon.appiconset/InspectorExampleApp-ipad-spotlight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Example/Resources/Assets.xcassets/AppIcon.appiconset/InspectorExampleApp-ipad-spotlight.png -------------------------------------------------------------------------------- /Example/Resources/Assets.xcassets/AppIcon.appiconset/InspectorExampleApp-ipad-spotlight@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Example/Resources/Assets.xcassets/AppIcon.appiconset/InspectorExampleApp-ipad-spotlight@2x.png -------------------------------------------------------------------------------- /Example/Resources/Assets.xcassets/AppIcon.appiconset/InspectorExampleApp-notification@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Example/Resources/Assets.xcassets/AppIcon.appiconset/InspectorExampleApp-notification@2x.png -------------------------------------------------------------------------------- /Example/Resources/Assets.xcassets/AppIcon.appiconset/InspectorExampleApp-notification@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Example/Resources/Assets.xcassets/AppIcon.appiconset/InspectorExampleApp-notification@3x.png -------------------------------------------------------------------------------- /Example/Resources/Assets.xcassets/AppIcon.appiconset/InspectorExampleApp-settings@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Example/Resources/Assets.xcassets/AppIcon.appiconset/InspectorExampleApp-settings@2x.png -------------------------------------------------------------------------------- /Example/Resources/Assets.xcassets/AppIcon.appiconset/InspectorExampleApp-settings@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Example/Resources/Assets.xcassets/AppIcon.appiconset/InspectorExampleApp-settings@3x.png -------------------------------------------------------------------------------- /Example/Resources/Assets.xcassets/AppIcon.appiconset/InspectorExampleApp-spotlight@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Example/Resources/Assets.xcassets/AppIcon.appiconset/InspectorExampleApp-spotlight@2x.png -------------------------------------------------------------------------------- /Example/Resources/Assets.xcassets/AppIcon.appiconset/InspectorExampleApp-spotlight@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Example/Resources/Assets.xcassets/AppIcon.appiconset/InspectorExampleApp-spotlight@3x.png -------------------------------------------------------------------------------- /Example/Resources/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Example/Resources/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Example/Resources/Assets.xcassets/CustomAction_32.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Example/Resources/Assets.xcassets/CustomAction_32.imageset/Contents.json -------------------------------------------------------------------------------- /Example/Resources/Assets.xcassets/CustomAction_32.imageset/customAction_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Example/Resources/Assets.xcassets/CustomAction_32.imageset/customAction_32.png -------------------------------------------------------------------------------- /Example/Resources/Assets.xcassets/CustomAction_32.imageset/customAction_32@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Example/Resources/Assets.xcassets/CustomAction_32.imageset/customAction_32@2x.png -------------------------------------------------------------------------------- /Example/Resources/Assets.xcassets/CustomAction_32.imageset/customAction_32@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Example/Resources/Assets.xcassets/CustomAction_32.imageset/customAction_32@3x.png -------------------------------------------------------------------------------- /Example/Resources/Assets.xcassets/RoundedButton_32.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Example/Resources/Assets.xcassets/RoundedButton_32.imageset/Contents.json -------------------------------------------------------------------------------- /Example/Resources/Assets.xcassets/RoundedButton_32.imageset/CustomButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Example/Resources/Assets.xcassets/RoundedButton_32.imageset/CustomButton.png -------------------------------------------------------------------------------- /Example/Resources/Assets.xcassets/RoundedButton_32.imageset/CustomButton@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Example/Resources/Assets.xcassets/RoundedButton_32.imageset/CustomButton@2x.png -------------------------------------------------------------------------------- /Example/Resources/Assets.xcassets/RoundedButton_32.imageset/CustomButton@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Example/Resources/Assets.xcassets/RoundedButton_32.imageset/CustomButton@3x.png -------------------------------------------------------------------------------- /Example/Resources/Assets.xcassets/tab-bar-inspector-off.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Example/Resources/Assets.xcassets/tab-bar-inspector-off.imageset/Contents.json -------------------------------------------------------------------------------- /Example/Resources/Assets.xcassets/tab-bar-inspector-off.imageset/tab-bar-inspector-off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Example/Resources/Assets.xcassets/tab-bar-inspector-off.imageset/tab-bar-inspector-off.png -------------------------------------------------------------------------------- /Example/Resources/Assets.xcassets/tab-bar-inspector-off.imageset/tab-bar-inspector-off@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Example/Resources/Assets.xcassets/tab-bar-inspector-off.imageset/tab-bar-inspector-off@2x.png -------------------------------------------------------------------------------- /Example/Resources/Assets.xcassets/tab-bar-inspector-off.imageset/tab-bar-inspector-off@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Example/Resources/Assets.xcassets/tab-bar-inspector-off.imageset/tab-bar-inspector-off@3x.png -------------------------------------------------------------------------------- /Example/Resources/Assets.xcassets/tab-bar-inspector-on.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Example/Resources/Assets.xcassets/tab-bar-inspector-on.imageset/Contents.json -------------------------------------------------------------------------------- /Example/Resources/Assets.xcassets/tab-bar-inspector-on.imageset/tab-bar-inspector-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Example/Resources/Assets.xcassets/tab-bar-inspector-on.imageset/tab-bar-inspector-on.png -------------------------------------------------------------------------------- /Example/Resources/Assets.xcassets/tab-bar-inspector-on.imageset/tab-bar-inspector-on@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Example/Resources/Assets.xcassets/tab-bar-inspector-on.imageset/tab-bar-inspector-on@2x.png -------------------------------------------------------------------------------- /Example/Resources/Assets.xcassets/tab-bar-inspector-on.imageset/tab-bar-inspector-on@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Example/Resources/Assets.xcassets/tab-bar-inspector-on.imageset/tab-bar-inspector-on@3x.png -------------------------------------------------------------------------------- /Example/Resources/Assets.xcassets/tab-bar-playground-off.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Example/Resources/Assets.xcassets/tab-bar-playground-off.imageset/Contents.json -------------------------------------------------------------------------------- /Example/Resources/Assets.xcassets/tab-bar-playground-off.imageset/tab-bar-playground-off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Example/Resources/Assets.xcassets/tab-bar-playground-off.imageset/tab-bar-playground-off.png -------------------------------------------------------------------------------- /Example/Resources/Assets.xcassets/tab-bar-playground-off.imageset/tab-bar-playground-off@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Example/Resources/Assets.xcassets/tab-bar-playground-off.imageset/tab-bar-playground-off@2x.png -------------------------------------------------------------------------------- /Example/Resources/Assets.xcassets/tab-bar-playground-off.imageset/tab-bar-playground-off@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Example/Resources/Assets.xcassets/tab-bar-playground-off.imageset/tab-bar-playground-off@3x.png -------------------------------------------------------------------------------- /Example/Resources/Assets.xcassets/tab-bar-playground-on.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Example/Resources/Assets.xcassets/tab-bar-playground-on.imageset/Contents.json -------------------------------------------------------------------------------- /Example/Resources/Assets.xcassets/tab-bar-playground-on.imageset/tab-bar-playground-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Example/Resources/Assets.xcassets/tab-bar-playground-on.imageset/tab-bar-playground-on.png -------------------------------------------------------------------------------- /Example/Resources/Assets.xcassets/tab-bar-playground-on.imageset/tab-bar-playground-on@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Example/Resources/Assets.xcassets/tab-bar-playground-on.imageset/tab-bar-playground-on@2x.png -------------------------------------------------------------------------------- /Example/Resources/Assets.xcassets/tab-bar-playground-on.imageset/tab-bar-playground-on@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Example/Resources/Assets.xcassets/tab-bar-playground-on.imageset/tab-bar-playground-on@3x.png -------------------------------------------------------------------------------- /Example/Resources/Assets.xcassets/titleColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Example/Resources/Assets.xcassets/titleColor.colorset/Contents.json -------------------------------------------------------------------------------- /Inspector.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Inspector.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Inspector.xcworkspace/xcshareddata/IDETemplateMacros.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Inspector.xcworkspace/xcshareddata/IDETemplateMacros.plist -------------------------------------------------------------------------------- /Inspector.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Inspector.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Inspector.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Inspector.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /Inspector.xcworkspace/xcshareddata/swiftpm/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Inspector.xcworkspace/xcshareddata/swiftpm/Package.resolved -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/LICENSE -------------------------------------------------------------------------------- /Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Package.resolved -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/README.md -------------------------------------------------------------------------------- /Sources/Inspector/CommonUI/Bases/BaseCardView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/CommonUI/Bases/BaseCardView.swift -------------------------------------------------------------------------------- /Sources/Inspector/CommonUI/Bases/BaseControl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/CommonUI/Bases/BaseControl.swift -------------------------------------------------------------------------------- /Sources/Inspector/CommonUI/Bases/BaseFormControl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/CommonUI/Bases/BaseFormControl.swift -------------------------------------------------------------------------------- /Sources/Inspector/CommonUI/Bases/BaseView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/CommonUI/Bases/BaseView.swift -------------------------------------------------------------------------------- /Sources/Inspector/CommonUI/Bases/ScrollingStackView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/CommonUI/Bases/ScrollingStackView.swift -------------------------------------------------------------------------------- /Sources/Inspector/CommonUI/Controls/AccessoryControl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/CommonUI/Controls/AccessoryControl.swift -------------------------------------------------------------------------------- /Sources/Inspector/CommonUI/Controls/ColorPreviewControl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/CommonUI/Controls/ColorPreviewControl.swift -------------------------------------------------------------------------------- /Sources/Inspector/CommonUI/Controls/DirectionalEdgeInsetsControl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/CommonUI/Controls/DirectionalEdgeInsetsControl.swift -------------------------------------------------------------------------------- /Sources/Inspector/CommonUI/Controls/EdgeInsetsControl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/CommonUI/Controls/EdgeInsetsControl.swift -------------------------------------------------------------------------------- /Sources/Inspector/CommonUI/Controls/ImagePreviewControl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/CommonUI/Controls/ImagePreviewControl.swift -------------------------------------------------------------------------------- /Sources/Inspector/CommonUI/Controls/NoteControl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/CommonUI/Controls/NoteControl.swift -------------------------------------------------------------------------------- /Sources/Inspector/CommonUI/Controls/OffsetControl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/CommonUI/Controls/OffsetControl.swift -------------------------------------------------------------------------------- /Sources/Inspector/CommonUI/Controls/OptionListControl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/CommonUI/Controls/OptionListControl.swift -------------------------------------------------------------------------------- /Sources/Inspector/CommonUI/Controls/PointControl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/CommonUI/Controls/PointControl.swift -------------------------------------------------------------------------------- /Sources/Inspector/CommonUI/Controls/RectControl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/CommonUI/Controls/RectControl.swift -------------------------------------------------------------------------------- /Sources/Inspector/CommonUI/Controls/SegmentedControl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/CommonUI/Controls/SegmentedControl.swift -------------------------------------------------------------------------------- /Sources/Inspector/CommonUI/Controls/SizeControl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/CommonUI/Controls/SizeControl.swift -------------------------------------------------------------------------------- /Sources/Inspector/CommonUI/Controls/StepperControl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/CommonUI/Controls/StepperControl.swift -------------------------------------------------------------------------------- /Sources/Inspector/CommonUI/Controls/StepperPairControl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/CommonUI/Controls/StepperPairControl.swift -------------------------------------------------------------------------------- /Sources/Inspector/CommonUI/Controls/TextFieldControl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/CommonUI/Controls/TextFieldControl.swift -------------------------------------------------------------------------------- /Sources/Inspector/CommonUI/Controls/TextViewControl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/CommonUI/Controls/TextViewControl.swift -------------------------------------------------------------------------------- /Sources/Inspector/CommonUI/Controls/ToggleControl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/CommonUI/Controls/ToggleControl.swift -------------------------------------------------------------------------------- /Sources/Inspector/CommonUI/Enums/Animation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/CommonUI/Enums/Animation.swift -------------------------------------------------------------------------------- /Sources/Inspector/CommonUI/Enums/ThumbnailBackgroundStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/CommonUI/Enums/ThumbnailBackgroundStyle.swift -------------------------------------------------------------------------------- /Sources/Inspector/CommonUI/Icons/Icon.Glyph.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/CommonUI/Icons/Icon.Glyph.swift -------------------------------------------------------------------------------- /Sources/Inspector/CommonUI/Icons/Icon.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/CommonUI/Icons/Icon.swift -------------------------------------------------------------------------------- /Sources/Inspector/CommonUI/Icons/IconButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/CommonUI/Icons/IconButton.swift -------------------------------------------------------------------------------- /Sources/Inspector/CommonUI/Icons/IconKit.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/CommonUI/Icons/IconKit.swift -------------------------------------------------------------------------------- /Sources/Inspector/CommonUI/SectionHeader/SectionHeader.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/CommonUI/SectionHeader/SectionHeader.swift -------------------------------------------------------------------------------- /Sources/Inspector/CommonUI/SeparatorView/SeparatorView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/CommonUI/SeparatorView/SeparatorView.swift -------------------------------------------------------------------------------- /Sources/Inspector/CommonUI/SizeInspectorViews/LengthMeasurementView+ArrowView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/CommonUI/SizeInspectorViews/LengthMeasurementView+ArrowView.swift -------------------------------------------------------------------------------- /Sources/Inspector/CommonUI/SizeInspectorViews/LengthMeasurementView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/CommonUI/SizeInspectorViews/LengthMeasurementView.swift -------------------------------------------------------------------------------- /Sources/Inspector/CommonUI/SizeInspectorViews/SizeInspectorView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/CommonUI/SizeInspectorViews/SizeInspectorView.swift -------------------------------------------------------------------------------- /Sources/Inspector/CommonUI/ViewHierarchyElement/LiveViewHierarchyElementThumbnailView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/CommonUI/ViewHierarchyElement/LiveViewHierarchyElementThumbnailView.swift -------------------------------------------------------------------------------- /Sources/Inspector/CommonUI/ViewHierarchyElement/ViewHierarchyElementDescriptionView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/CommonUI/ViewHierarchyElement/ViewHierarchyElementDescriptionView.swift -------------------------------------------------------------------------------- /Sources/Inspector/CommonUI/ViewHierarchyElement/ViewHierarchyElementThumbnailView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/CommonUI/ViewHierarchyElement/ViewHierarchyElementThumbnailView.swift -------------------------------------------------------------------------------- /Sources/Inspector/CommonUI/ViewHierarchyElement/ViewHierarchyThumbnailViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/CommonUI/ViewHierarchyElement/ViewHierarchyThumbnailViewController.swift -------------------------------------------------------------------------------- /Sources/Inspector/Configuration/InspectorAppearance.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Configuration/InspectorAppearance.swift -------------------------------------------------------------------------------- /Sources/Inspector/Configuration/InspectorColorStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Configuration/InspectorColorStyle.swift -------------------------------------------------------------------------------- /Sources/Inspector/Configuration/InspectorConfiguration+KeyCommandSettings.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Configuration/InspectorConfiguration+KeyCommandSettings.swift -------------------------------------------------------------------------------- /Sources/Inspector/Configuration/InspectorConfiguration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Configuration/InspectorConfiguration.swift -------------------------------------------------------------------------------- /Sources/Inspector/ConsoleLogger/ConsoleLogger.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/ConsoleLogger/ConsoleLogger.swift -------------------------------------------------------------------------------- /Sources/Inspector/ElementInspector/Configuration/ElementInspectorAppearance.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/ElementInspector/Configuration/ElementInspectorAppearance.swift -------------------------------------------------------------------------------- /Sources/Inspector/ElementInspector/Configuration/ElementInspectorConfiguration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/ElementInspector/Configuration/ElementInspectorConfiguration.swift -------------------------------------------------------------------------------- /Sources/Inspector/ElementInspector/Coordinators/ElementInspectorCoordinator+ElementInspectorFormPanelDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/ElementInspector/Coordinators/ElementInspectorCoordinator+ElementInspectorFormPanelDelegate.swift -------------------------------------------------------------------------------- /Sources/Inspector/ElementInspector/Coordinators/ElementInspectorCoordinator+ElementInspectorNavigationControllerDismissDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/ElementInspector/Coordinators/ElementInspectorCoordinator+ElementInspectorNavigationControllerDismissDelegate.swift -------------------------------------------------------------------------------- /Sources/Inspector/ElementInspector/Coordinators/ElementInspectorCoordinator+ElementInspectorViewControllerDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/ElementInspector/Coordinators/ElementInspectorCoordinator+ElementInspectorViewControllerDelegate.swift -------------------------------------------------------------------------------- /Sources/Inspector/ElementInspector/Coordinators/ElementInspectorCoordinator+OperationQueueManagerProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/ElementInspector/Coordinators/ElementInspectorCoordinator+OperationQueueManagerProtocol.swift -------------------------------------------------------------------------------- /Sources/Inspector/ElementInspector/Coordinators/ElementInspectorCoordinator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/ElementInspector/Coordinators/ElementInspectorCoordinator.swift -------------------------------------------------------------------------------- /Sources/Inspector/ElementInspector/Enums/ElementInspectorPanel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/ElementInspector/Enums/ElementInspectorPanel.swift -------------------------------------------------------------------------------- /Sources/Inspector/ElementInspector/Enums/ElementInspectorPanelListState.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/ElementInspector/Enums/ElementInspectorPanelListState.swift -------------------------------------------------------------------------------- /Sources/Inspector/ElementInspector/Enums/ElementInspectorPanelSelectionMode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/ElementInspector/Enums/ElementInspectorPanelSelectionMode.swift -------------------------------------------------------------------------------- /Sources/Inspector/ElementInspector/Enums/InspectorElementItemSeparatorStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/ElementInspector/Enums/InspectorElementItemSeparatorStyle.swift -------------------------------------------------------------------------------- /Sources/Inspector/ElementInspector/Enums/InspectorElementSectionState.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/ElementInspector/Enums/InspectorElementSectionState.swift -------------------------------------------------------------------------------- /Sources/Inspector/ElementInspector/Protocols/ElementInspectorFormPanelDataSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/ElementInspector/Protocols/ElementInspectorFormPanelDataSource.swift -------------------------------------------------------------------------------- /Sources/Inspector/ElementInspector/Protocols/ElementInspectorPanelViewControllerProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/ElementInspector/Protocols/ElementInspectorPanelViewControllerProtocol.swift -------------------------------------------------------------------------------- /Sources/Inspector/ElementInspector/Protocols/InspectorElementSectionView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/ElementInspector/Protocols/InspectorElementSectionView.swift -------------------------------------------------------------------------------- /Sources/Inspector/ElementInspector/Submodules/ChildrenPanel/Enums/ElementChildrenPanelAction.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/ElementInspector/Submodules/ChildrenPanel/Enums/ElementChildrenPanelAction.swift -------------------------------------------------------------------------------- /Sources/Inspector/ElementInspector/Submodules/ChildrenPanel/ViewControllers/ElementChildrenPanelViewController+UITableViewDataSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/ElementInspector/Submodules/ChildrenPanel/ViewControllers/ElementChildrenPanelViewController+UITableViewDataSource.swift -------------------------------------------------------------------------------- /Sources/Inspector/ElementInspector/Submodules/ChildrenPanel/ViewControllers/ElementChildrenPanelViewController+UITableViewDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/ElementInspector/Submodules/ChildrenPanel/ViewControllers/ElementChildrenPanelViewController+UITableViewDelegate.swift -------------------------------------------------------------------------------- /Sources/Inspector/ElementInspector/Submodules/ChildrenPanel/ViewControllers/ElementChildrenPanelViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/ElementInspector/Submodules/ChildrenPanel/ViewControllers/ElementChildrenPanelViewController.swift -------------------------------------------------------------------------------- /Sources/Inspector/ElementInspector/Submodules/ChildrenPanel/ViewModels/CellViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/ElementInspector/Submodules/ChildrenPanel/ViewModels/CellViewModel.swift -------------------------------------------------------------------------------- /Sources/Inspector/ElementInspector/Submodules/ChildrenPanel/ViewModels/ElementChildrenPanelViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/ElementInspector/Submodules/ChildrenPanel/ViewModels/ElementChildrenPanelViewModel.swift -------------------------------------------------------------------------------- /Sources/Inspector/ElementInspector/Submodules/ChildrenPanel/Views/ElementChildrenPanelTableViewCodeCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/ElementInspector/Submodules/ChildrenPanel/Views/ElementChildrenPanelTableViewCodeCell.swift -------------------------------------------------------------------------------- /Sources/Inspector/ElementInspector/Submodules/ChildrenPanel/Views/ElementChildrenPanelViewCode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/ElementInspector/Submodules/ChildrenPanel/Views/ElementChildrenPanelViewCode.swift -------------------------------------------------------------------------------- /Sources/Inspector/ElementInspector/Submodules/FormPanel/DataSource/DefaultFormPanelDataSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/ElementInspector/Submodules/FormPanel/DataSource/DefaultFormPanelDataSource.swift -------------------------------------------------------------------------------- /Sources/Inspector/ElementInspector/Submodules/FormPanel/ElementInspectorFormPanelViewController+InspectorElementSectionViewControllerDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/ElementInspector/Submodules/FormPanel/ElementInspectorFormPanelViewController+InspectorElementSectionViewControllerDelegate.swift -------------------------------------------------------------------------------- /Sources/Inspector/ElementInspector/Submodules/FormPanel/ElementInspectorFormPanelViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/ElementInspector/Submodules/FormPanel/ElementInspectorFormPanelViewController.swift -------------------------------------------------------------------------------- /Sources/Inspector/ElementInspector/Submodules/FormPanel/InspectorElementSectionViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/ElementInspector/Submodules/FormPanel/InspectorElementSectionViewController.swift -------------------------------------------------------------------------------- /Sources/Inspector/ElementInspector/ViewControllers/ElementInspectorNavigationController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/ElementInspector/ViewControllers/ElementInspectorNavigationController.swift -------------------------------------------------------------------------------- /Sources/Inspector/ElementInspector/ViewControllers/ElementInspectorPanelViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/ElementInspector/ViewControllers/ElementInspectorPanelViewController.swift -------------------------------------------------------------------------------- /Sources/Inspector/ElementInspector/ViewControllers/ElementInspectorViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/ElementInspector/ViewControllers/ElementInspectorViewController.swift -------------------------------------------------------------------------------- /Sources/Inspector/ElementInspector/ViewModel/ElementInspectorViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/ElementInspector/ViewModel/ElementInspectorViewModel.swift -------------------------------------------------------------------------------- /Sources/Inspector/ElementInspector/Views/ElementInspectorViewCode+Content.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/ElementInspector/Views/ElementInspectorViewCode+Content.swift -------------------------------------------------------------------------------- /Sources/Inspector/ElementInspector/Views/ElementInspectorViewCode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/ElementInspector/Views/ElementInspectorViewCode.swift -------------------------------------------------------------------------------- /Sources/Inspector/ElementInspector/Views/InspectorElementKeyCommandSectionView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/ElementInspector/Views/InspectorElementKeyCommandSectionView.swift -------------------------------------------------------------------------------- /Sources/Inspector/ElementInspector/Views/InspectorElementLayoutConstraintSectionView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/ElementInspector/Views/InspectorElementLayoutConstraintSectionView.swift -------------------------------------------------------------------------------- /Sources/Inspector/ElementInspector/Views/InspectorElementSectionFormView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/ElementInspector/Views/InspectorElementSectionFormView.swift -------------------------------------------------------------------------------- /Sources/Inspector/ElementInspector/Views/ToogleCollapseButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/ElementInspector/Views/ToogleCollapseButton.swift -------------------------------------------------------------------------------- /Sources/Inspector/ElementLibraries/DefaultElementAttributesLibrary.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/ElementLibraries/DefaultElementAttributesLibrary.swift -------------------------------------------------------------------------------- /Sources/Inspector/ElementLibraries/DefaultElementIdentityLibrary.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/ElementLibraries/DefaultElementIdentityLibrary.swift -------------------------------------------------------------------------------- /Sources/Inspector/ElementLibraries/DefaultElementSizeLibrary.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/ElementLibraries/DefaultElementSizeLibrary.swift -------------------------------------------------------------------------------- /Sources/Inspector/ElementLibraries/Sections/Attributes/ActivityIndicatorViewAttributesSectionDataSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/ElementLibraries/Sections/Attributes/ActivityIndicatorViewAttributesSectionDataSource.swift -------------------------------------------------------------------------------- /Sources/Inspector/ElementLibraries/Sections/Attributes/ApplicationAttributesSectionDataSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/ElementLibraries/Sections/Attributes/ApplicationAttributesSectionDataSource.swift -------------------------------------------------------------------------------- /Sources/Inspector/ElementLibraries/Sections/Attributes/ApplicationShortcutItemSectionDataSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/ElementLibraries/Sections/Attributes/ApplicationShortcutItemSectionDataSource.swift -------------------------------------------------------------------------------- /Sources/Inspector/ElementLibraries/Sections/Attributes/ButtonAttributesSectionDataSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/ElementLibraries/Sections/Attributes/ButtonAttributesSectionDataSource.swift -------------------------------------------------------------------------------- /Sources/Inspector/ElementLibraries/Sections/Attributes/ControlAttributesSectionDataSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/ElementLibraries/Sections/Attributes/ControlAttributesSectionDataSource.swift -------------------------------------------------------------------------------- /Sources/Inspector/ElementLibraries/Sections/Attributes/DatePickerAttributesSectionDataSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/ElementLibraries/Sections/Attributes/DatePickerAttributesSectionDataSource.swift -------------------------------------------------------------------------------- /Sources/Inspector/ElementLibraries/Sections/Attributes/ImageViewAttributesSectionDataSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/ElementLibraries/Sections/Attributes/ImageViewAttributesSectionDataSource.swift -------------------------------------------------------------------------------- /Sources/Inspector/ElementLibraries/Sections/Attributes/KeyCommandsSectionDataSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/ElementLibraries/Sections/Attributes/KeyCommandsSectionDataSource.swift -------------------------------------------------------------------------------- /Sources/Inspector/ElementLibraries/Sections/Attributes/LabelAttributesSectionDataSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/ElementLibraries/Sections/Attributes/LabelAttributesSectionDataSource.swift -------------------------------------------------------------------------------- /Sources/Inspector/ElementLibraries/Sections/Attributes/LayerAttributesSectionDataSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/ElementLibraries/Sections/Attributes/LayerAttributesSectionDataSource.swift -------------------------------------------------------------------------------- /Sources/Inspector/ElementLibraries/Sections/Attributes/MapViewAttributesSectionDataSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/ElementLibraries/Sections/Attributes/MapViewAttributesSectionDataSource.swift -------------------------------------------------------------------------------- /Sources/Inspector/ElementLibraries/Sections/Attributes/NavigationBarAppearanceAttributesSectionDataSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/ElementLibraries/Sections/Attributes/NavigationBarAppearanceAttributesSectionDataSource.swift -------------------------------------------------------------------------------- /Sources/Inspector/ElementLibraries/Sections/Attributes/NavigationBarAttributesSectionDataSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/ElementLibraries/Sections/Attributes/NavigationBarAttributesSectionDataSource.swift -------------------------------------------------------------------------------- /Sources/Inspector/ElementLibraries/Sections/Attributes/NavigationControllerAttributesSectionDataSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/ElementLibraries/Sections/Attributes/NavigationControllerAttributesSectionDataSource.swift -------------------------------------------------------------------------------- /Sources/Inspector/ElementLibraries/Sections/Attributes/NavigationItemAttributesSectionDataSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/ElementLibraries/Sections/Attributes/NavigationItemAttributesSectionDataSource.swift -------------------------------------------------------------------------------- /Sources/Inspector/ElementLibraries/Sections/Attributes/ScrollViewAttributesSectionDataSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/ElementLibraries/Sections/Attributes/ScrollViewAttributesSectionDataSource.swift -------------------------------------------------------------------------------- /Sources/Inspector/ElementLibraries/Sections/Attributes/SegmentedControlAttributesSectionDataSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/ElementLibraries/Sections/Attributes/SegmentedControlAttributesSectionDataSource.swift -------------------------------------------------------------------------------- /Sources/Inspector/ElementLibraries/Sections/Attributes/SliderAttributesSectionDataSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/ElementLibraries/Sections/Attributes/SliderAttributesSectionDataSource.swift -------------------------------------------------------------------------------- /Sources/Inspector/ElementLibraries/Sections/Attributes/StackViewAttributesSectionDataSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/ElementLibraries/Sections/Attributes/StackViewAttributesSectionDataSource.swift -------------------------------------------------------------------------------- /Sources/Inspector/ElementLibraries/Sections/Attributes/SwitchAttributesSectionDataSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/ElementLibraries/Sections/Attributes/SwitchAttributesSectionDataSource.swift -------------------------------------------------------------------------------- /Sources/Inspector/ElementLibraries/Sections/Attributes/TabBarAttributesSectionDataSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/ElementLibraries/Sections/Attributes/TabBarAttributesSectionDataSource.swift -------------------------------------------------------------------------------- /Sources/Inspector/ElementLibraries/Sections/Attributes/TabBarItemAttributesSectionDataSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/ElementLibraries/Sections/Attributes/TabBarItemAttributesSectionDataSource.swift -------------------------------------------------------------------------------- /Sources/Inspector/ElementLibraries/Sections/Attributes/TableViewAttributesSectionDataSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/ElementLibraries/Sections/Attributes/TableViewAttributesSectionDataSource.swift -------------------------------------------------------------------------------- /Sources/Inspector/ElementLibraries/Sections/Attributes/TextFieldAttributesSectionDataSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/ElementLibraries/Sections/Attributes/TextFieldAttributesSectionDataSource.swift -------------------------------------------------------------------------------- /Sources/Inspector/ElementLibraries/Sections/Attributes/TextViewAttributesSectionDataSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/ElementLibraries/Sections/Attributes/TextViewAttributesSectionDataSource.swift -------------------------------------------------------------------------------- /Sources/Inspector/ElementLibraries/Sections/Attributes/ViewAttributesSectionDataSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/ElementLibraries/Sections/Attributes/ViewAttributesSectionDataSource.swift -------------------------------------------------------------------------------- /Sources/Inspector/ElementLibraries/Sections/Attributes/ViewControllerAttributesSectionDataSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/ElementLibraries/Sections/Attributes/ViewControllerAttributesSectionDataSource.swift -------------------------------------------------------------------------------- /Sources/Inspector/ElementLibraries/Sections/Attributes/WindowAttributesSectionDataSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/ElementLibraries/Sections/Attributes/WindowAttributesSectionDataSource.swift -------------------------------------------------------------------------------- /Sources/Inspector/ElementLibraries/Sections/Identity/HierarchyIdentitySectionDataSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/ElementLibraries/Sections/Identity/HierarchyIdentitySectionDataSource.swift -------------------------------------------------------------------------------- /Sources/Inspector/ElementLibraries/Sections/Identity/HighlightViewSectionDataSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/ElementLibraries/Sections/Identity/HighlightViewSectionDataSource.swift -------------------------------------------------------------------------------- /Sources/Inspector/ElementLibraries/Sections/Identity/PreviewIdentitySectionDataSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/ElementLibraries/Sections/Identity/PreviewIdentitySectionDataSource.swift -------------------------------------------------------------------------------- /Sources/Inspector/ElementLibraries/Sections/Identity/RuntimeAttributesIdentitySectionDataSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/ElementLibraries/Sections/Identity/RuntimeAttributesIdentitySectionDataSource.swift -------------------------------------------------------------------------------- /Sources/Inspector/ElementLibraries/Sections/Size/ButtonSizeSectionDataSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/ElementLibraries/Sections/Size/ButtonSizeSectionDataSource.swift -------------------------------------------------------------------------------- /Sources/Inspector/ElementLibraries/Sections/Size/ContentLayoutPrioritySizeSectionDataSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/ElementLibraries/Sections/Size/ContentLayoutPrioritySizeSectionDataSource.swift -------------------------------------------------------------------------------- /Sources/Inspector/ElementLibraries/Sections/Size/LabelSizeSectionDataSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/ElementLibraries/Sections/Size/LabelSizeSectionDataSource.swift -------------------------------------------------------------------------------- /Sources/Inspector/ElementLibraries/Sections/Size/LayoutConstraintSizeSectionDataSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/ElementLibraries/Sections/Size/LayoutConstraintSizeSectionDataSource.swift -------------------------------------------------------------------------------- /Sources/Inspector/ElementLibraries/Sections/Size/ScrollViewSizeSectionDataSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/ElementLibraries/Sections/Size/ScrollViewSizeSectionDataSource.swift -------------------------------------------------------------------------------- /Sources/Inspector/ElementLibraries/Sections/Size/SegmentedControlSizeSectionDataSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/ElementLibraries/Sections/Size/SegmentedControlSizeSectionDataSource.swift -------------------------------------------------------------------------------- /Sources/Inspector/ElementLibraries/Sections/Size/TableViewSizeSectionDataSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/ElementLibraries/Sections/Size/TableViewSizeSectionDataSource.swift -------------------------------------------------------------------------------- /Sources/Inspector/ElementLibraries/Sections/Size/ViewFrameSizeSectionDataSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/ElementLibraries/Sections/Size/ViewFrameSizeSectionDataSource.swift -------------------------------------------------------------------------------- /Sources/Inspector/Extensions/Array/Array+Inserting.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Extensions/Array/Array+Inserting.swift -------------------------------------------------------------------------------- /Sources/Inspector/Extensions/Array/Array+InspectorElementLibraryProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Extensions/Array/Array+InspectorElementLibraryProtocol.swift -------------------------------------------------------------------------------- /Sources/Inspector/Extensions/Array/Array+UIKeyCommand.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Extensions/Array/Array+UIKeyCommand.swift -------------------------------------------------------------------------------- /Sources/Inspector/Extensions/Array/Array+UniqueValues.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Extensions/Array/Array+UniqueValues.swift -------------------------------------------------------------------------------- /Sources/Inspector/Extensions/BinaryFloatingPoint/BinaryFloatingPoint+String.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Extensions/BinaryFloatingPoint/BinaryFloatingPoint+String.swift -------------------------------------------------------------------------------- /Sources/Inspector/Extensions/CACornerMask/CACornerMask+UIRectCorner.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Extensions/CACornerMask/CACornerMask+UIRectCorner.swift -------------------------------------------------------------------------------- /Sources/Inspector/Extensions/CGRect/CGRect+Hashable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Extensions/CGRect/CGRect+Hashable.swift -------------------------------------------------------------------------------- /Sources/Inspector/Extensions/CGSize/CGSize+Sizes.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Extensions/CGSize/CGSize+Sizes.swift -------------------------------------------------------------------------------- /Sources/Inspector/Extensions/CharacterSet/CharacterSet+AllCharacters.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Extensions/CharacterSet/CharacterSet+AllCharacters.swift -------------------------------------------------------------------------------- /Sources/Inspector/Extensions/IndexPath/IndexPath+FirstRow.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Extensions/IndexPath/IndexPath+FirstRow.swift -------------------------------------------------------------------------------- /Sources/Inspector/Extensions/InspectorElementViewModelProperty/InspectorElementViewModelProperty+Color.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Extensions/InspectorElementViewModelProperty/InspectorElementViewModelProperty+Color.swift -------------------------------------------------------------------------------- /Sources/Inspector/Extensions/InspectorElementViewModelProperty/InspectorElementViewModelProperty+Font.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Extensions/InspectorElementViewModelProperty/InspectorElementViewModelProperty+Font.swift -------------------------------------------------------------------------------- /Sources/Inspector/Extensions/InspectorElementViewModelProperty/InspectorElementViewModelProperty+Hashable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Extensions/InspectorElementViewModelProperty/InspectorElementViewModelProperty+Hashable.swift -------------------------------------------------------------------------------- /Sources/Inspector/Extensions/InspectorElementViewModelProperty/InspectorElementViewModelProperty+SegmentedControl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Extensions/InspectorElementViewModelProperty/InspectorElementViewModelProperty+SegmentedControl.swift -------------------------------------------------------------------------------- /Sources/Inspector/Extensions/InspectorElementViewModelProperty/InspectorElementViewModelProperty+Stepper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Extensions/InspectorElementViewModelProperty/InspectorElementViewModelProperty+Stepper.swift -------------------------------------------------------------------------------- /Sources/Inspector/Extensions/InspectorElementViewModelProperty/InspectorElementViewModelProperty+TextView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Extensions/InspectorElementViewModelProperty/InspectorElementViewModelProperty+TextView.swift -------------------------------------------------------------------------------- /Sources/Inspector/Extensions/Int/Int+CGFloat.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Extensions/Int/Int+CGFloat.swift -------------------------------------------------------------------------------- /Sources/Inspector/Extensions/Int/Int+String.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Extensions/Int/Int+String.swift -------------------------------------------------------------------------------- /Sources/Inspector/Extensions/MKMapView/MKMapView+CaseIterable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Extensions/MKMapView/MKMapView+CaseIterable.swift -------------------------------------------------------------------------------- /Sources/Inspector/Extensions/MKMapView/MKMapView+CustomStringConvertible.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Extensions/MKMapView/MKMapView+CustomStringConvertible.swift -------------------------------------------------------------------------------- /Sources/Inspector/Extensions/NSDirectionalEdgeInsets/NSDirectionalEdgeInsets+Update.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Extensions/NSDirectionalEdgeInsets/NSDirectionalEdgeInsets+Update.swift -------------------------------------------------------------------------------- /Sources/Inspector/Extensions/NSLayoutConstraint/Attribute/NSLayoutConstraint+Attribute.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Extensions/NSLayoutConstraint/Attribute/NSLayoutConstraint+Attribute.swift -------------------------------------------------------------------------------- /Sources/Inspector/Extensions/NSLayoutConstraint/Axis/NSLayoutConstraint+Axis+CaseIterable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Extensions/NSLayoutConstraint/Axis/NSLayoutConstraint+Axis+CaseIterable.swift -------------------------------------------------------------------------------- /Sources/Inspector/Extensions/NSLayoutConstraint/Axis/NSLayoutConstraint+Axis+SegmentedControlDisplayable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Extensions/NSLayoutConstraint/Axis/NSLayoutConstraint+Axis+SegmentedControlDisplayable.swift -------------------------------------------------------------------------------- /Sources/Inspector/Extensions/NSLayoutConstraint/NSLayoutConstraint+SafeIdentifier.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Extensions/NSLayoutConstraint/NSLayoutConstraint+SafeIdentifier.swift -------------------------------------------------------------------------------- /Sources/Inspector/Extensions/NSLayoutConstraint/Relation/NSLayoutConstraint+Relation+CaseIterable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Extensions/NSLayoutConstraint/Relation/NSLayoutConstraint+Relation+CaseIterable.swift -------------------------------------------------------------------------------- /Sources/Inspector/Extensions/NSLayoutConstraint/Relation/NSLayoutConstraint+Relation+CustomStringConvertible.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Extensions/NSLayoutConstraint/Relation/NSLayoutConstraint+Relation+CustomStringConvertible.swift -------------------------------------------------------------------------------- /Sources/Inspector/Extensions/NSObject/NSObject+ClassesForCoder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Extensions/NSObject/NSObject+ClassesForCoder.swift -------------------------------------------------------------------------------- /Sources/Inspector/Extensions/NSObject/NSObject+Create.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Extensions/NSObject/NSObject+Create.swift -------------------------------------------------------------------------------- /Sources/Inspector/Extensions/NSObject/NSObject+PropertyNames.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Extensions/NSObject/NSObject+PropertyNames.swift -------------------------------------------------------------------------------- /Sources/Inspector/Extensions/NSObject/NSObjectProtocoll+Debounce.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Extensions/NSObject/NSObjectProtocoll+Debounce.swift -------------------------------------------------------------------------------- /Sources/Inspector/Extensions/NSRegularExpression/NSRegularExpression+Matches.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Extensions/NSRegularExpression/NSRegularExpression+Matches.swift -------------------------------------------------------------------------------- /Sources/Inspector/Extensions/NSTextAlignment/NSTextAlignment+CaseIterable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Extensions/NSTextAlignment/NSTextAlignment+CaseIterable.swift -------------------------------------------------------------------------------- /Sources/Inspector/Extensions/NSTextAlignment/NSTextAlignment+SegmentedControlDisplayable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Extensions/NSTextAlignment/NSTextAlignment+SegmentedControlDisplayable.swift -------------------------------------------------------------------------------- /Sources/Inspector/Extensions/NumberFormatter/NumberFormatter+Convenience.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Extensions/NumberFormatter/NumberFormatter+Convenience.swift -------------------------------------------------------------------------------- /Sources/Inspector/Extensions/Optional/Optional+Collection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Extensions/Optional/Optional+Collection.swift -------------------------------------------------------------------------------- /Sources/Inspector/Extensions/String/String+Utils.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Extensions/String/String+Utils.swift -------------------------------------------------------------------------------- /Sources/Inspector/Extensions/UIAction/UIAction+Convenience.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Extensions/UIAction/UIAction+Convenience.swift -------------------------------------------------------------------------------- /Sources/Inspector/Extensions/UIActivityIndicatorView+Style/ UIActivityIndicatorView+Style+CaseIterable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Extensions/UIActivityIndicatorView+Style/ UIActivityIndicatorView+Style+CaseIterable.swift -------------------------------------------------------------------------------- /Sources/Inspector/Extensions/UIActivityIndicatorView+Style/UIActivityIndicatorView+Style+CustomStringConvertible.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Extensions/UIActivityIndicatorView+Style/UIActivityIndicatorView+Style+CustomStringConvertible.swift -------------------------------------------------------------------------------- /Sources/Inspector/Extensions/UIBarStyle/UIBarStyle+CaseIterable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Extensions/UIBarStyle/UIBarStyle+CaseIterable.swift -------------------------------------------------------------------------------- /Sources/Inspector/Extensions/UIBarStyle/UIBarStyle+CustomStringConvertible.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Extensions/UIBarStyle/UIBarStyle+CustomStringConvertible.swift -------------------------------------------------------------------------------- /Sources/Inspector/Extensions/UIBlurEffect/Style/UIBlurEffect.Style+CaseIterable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Extensions/UIBlurEffect/Style/UIBlurEffect.Style+CaseIterable.swift -------------------------------------------------------------------------------- /Sources/Inspector/Extensions/UIBlurEffect/UIBlurEffect+Style.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Extensions/UIBlurEffect/UIBlurEffect+Style.swift -------------------------------------------------------------------------------- /Sources/Inspector/Extensions/UIBlurEffect/UIBlurEffect.Style+CustomStringConvertible.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Extensions/UIBlurEffect/UIBlurEffect.Style+CustomStringConvertible.swift -------------------------------------------------------------------------------- /Sources/Inspector/Extensions/UIButton+ButtonType/UIButton+ButtonType+CaseIterable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Extensions/UIButton+ButtonType/UIButton+ButtonType+CaseIterable.swift -------------------------------------------------------------------------------- /Sources/Inspector/Extensions/UIButton+ButtonType/UIButton.ButtonType+CustomStringConvertible.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Extensions/UIButton+ButtonType/UIButton.ButtonType+CustomStringConvertible.swift -------------------------------------------------------------------------------- /Sources/Inspector/Extensions/UIColor/UIColor+Hex.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Extensions/UIColor/UIColor+Hex.swift -------------------------------------------------------------------------------- /Sources/Inspector/Extensions/UIColor/UIColor+Init.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Extensions/UIColor/UIColor+Init.swift -------------------------------------------------------------------------------- /Sources/Inspector/Extensions/UIColor/UIColor+RGBA.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Extensions/UIColor/UIColor+RGBA.swift -------------------------------------------------------------------------------- /Sources/Inspector/Extensions/UIContextMenuConfiguration/UIContextMenuConfiguration+ViewHierarchyElement.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Extensions/UIContextMenuConfiguration/UIContextMenuConfiguration+ViewHierarchyElement.swift -------------------------------------------------------------------------------- /Sources/Inspector/Extensions/UIControl/ContentHorizontalAlignment/UIControl.ContentHorizontalAlignment+CaseIterable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Extensions/UIControl/ContentHorizontalAlignment/UIControl.ContentHorizontalAlignment+CaseIterable.swift -------------------------------------------------------------------------------- /Sources/Inspector/Extensions/UIControl/ContentHorizontalAlignment/UIControl.ContentHorizontalAlignment+SegmentedControlDisplayable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Extensions/UIControl/ContentHorizontalAlignment/UIControl.ContentHorizontalAlignment+SegmentedControlDisplayable.swift -------------------------------------------------------------------------------- /Sources/Inspector/Extensions/UIControl/ContentVerticalAlignment/UIControl.ContentVerticalAlignment+CaseIterable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Extensions/UIControl/ContentVerticalAlignment/UIControl.ContentVerticalAlignment+CaseIterable.swift -------------------------------------------------------------------------------- /Sources/Inspector/Extensions/UIControl/ContentVerticalAlignment/UIControl.ContentVerticalAlignment+CustomStringConvertible.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Extensions/UIControl/ContentVerticalAlignment/UIControl.ContentVerticalAlignment+CustomStringConvertible.swift -------------------------------------------------------------------------------- /Sources/Inspector/Extensions/UIControl/State/UIControl.State+CustomStringConvertible.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Extensions/UIControl/State/UIControl.State+CustomStringConvertible.swift -------------------------------------------------------------------------------- /Sources/Inspector/Extensions/UIControl/UIControl+Animation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Extensions/UIControl/UIControl+Animation.swift -------------------------------------------------------------------------------- /Sources/Inspector/Extensions/UIDataDetectorTypes/UIDataDetectorTypes+CustomStringConvertible.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Extensions/UIDataDetectorTypes/UIDataDetectorTypes+CustomStringConvertible.swift -------------------------------------------------------------------------------- /Sources/Inspector/Extensions/UIDatePicker+Mode/UIDatePicker+Mode+CaseIterable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Extensions/UIDatePicker+Mode/UIDatePicker+Mode+CaseIterable.swift -------------------------------------------------------------------------------- /Sources/Inspector/Extensions/UIDatePicker+Mode/UIDatePicker+Mode+CustomStringConvertible.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Extensions/UIDatePicker+Mode/UIDatePicker+Mode+CustomStringConvertible.swift -------------------------------------------------------------------------------- /Sources/Inspector/Extensions/UIDatePickerStyle/UIDatePickerStyle+CaseIterable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Extensions/UIDatePickerStyle/UIDatePickerStyle+CaseIterable.swift -------------------------------------------------------------------------------- /Sources/Inspector/Extensions/UIDatePickerStyle/UIDatePickerStyle+CustomStringConvertible.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Extensions/UIDatePickerStyle/UIDatePickerStyle+CustomStringConvertible.swift -------------------------------------------------------------------------------- /Sources/Inspector/Extensions/UIImage/UIImage+AssetName.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Extensions/UIImage/UIImage+AssetName.swift -------------------------------------------------------------------------------- /Sources/Inspector/Extensions/UIImage/UIImage+Mask.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Extensions/UIImage/UIImage+Mask.swift -------------------------------------------------------------------------------- /Sources/Inspector/Extensions/UIImage/UIImage+ModuleImage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Extensions/UIImage/UIImage+ModuleImage.swift -------------------------------------------------------------------------------- /Sources/Inspector/Extensions/UIImage/UIImage+Symbols.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Extensions/UIImage/UIImage+Symbols.swift -------------------------------------------------------------------------------- /Sources/Inspector/Extensions/UIKayboardAppearance/UIKeyboardAppearance+CaseIterable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Extensions/UIKayboardAppearance/UIKeyboardAppearance+CaseIterable.swift -------------------------------------------------------------------------------- /Sources/Inspector/Extensions/UIKayboardAppearance/UIKeyboardAppearance+CustomStringConvertible.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Extensions/UIKayboardAppearance/UIKeyboardAppearance+CustomStringConvertible.swift -------------------------------------------------------------------------------- /Sources/Inspector/Extensions/UIKeyCommand/UIKeyCommandOptions+Init.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Extensions/UIKeyCommand/UIKeyCommandOptions+Init.swift -------------------------------------------------------------------------------- /Sources/Inspector/Extensions/UIKeyboardType/UIKeyboardType+CaseIterable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Extensions/UIKeyboardType/UIKeyboardType+CaseIterable.swift -------------------------------------------------------------------------------- /Sources/Inspector/Extensions/UIKeyboardType/UIKeyboardType+CustomStringConvertible.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Extensions/UIKeyboardType/UIKeyboardType+CustomStringConvertible.swift -------------------------------------------------------------------------------- /Sources/Inspector/Extensions/UILayoutPriority/UILayoutPriority+CaseIterable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Extensions/UILayoutPriority/UILayoutPriority+CaseIterable.swift -------------------------------------------------------------------------------- /Sources/Inspector/Extensions/UILayoutPriority/UILayoutPriority+CustomStringConvertible.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Extensions/UILayoutPriority/UILayoutPriority+CustomStringConvertible.swift -------------------------------------------------------------------------------- /Sources/Inspector/Extensions/UIMenu/UIMenu+ViewHierarchyElementRepresentable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Extensions/UIMenu/UIMenu+ViewHierarchyElementRepresentable.swift -------------------------------------------------------------------------------- /Sources/Inspector/Extensions/UIMenuElement/UIMenuElement+Convenience.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Extensions/UIMenuElement/UIMenuElement+Convenience.swift -------------------------------------------------------------------------------- /Sources/Inspector/Extensions/UIModalPresentationStyle/UIModalPresentationStyle+CaseIterable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Extensions/UIModalPresentationStyle/UIModalPresentationStyle+CaseIterable.swift -------------------------------------------------------------------------------- /Sources/Inspector/Extensions/UIModalPresentationStyle/UIModalPresentationStyle+CustomStringConvertible.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Extensions/UIModalPresentationStyle/UIModalPresentationStyle+CustomStringConvertible.swift -------------------------------------------------------------------------------- /Sources/Inspector/Extensions/UIModalTransitionStyle/UIModalTransitionStyle+CaseIterable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Extensions/UIModalTransitionStyle/UIModalTransitionStyle+CaseIterable.swift -------------------------------------------------------------------------------- /Sources/Inspector/Extensions/UIModalTransitionStyle/UIModalTransitionStyle+CustomStringConvertible.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Extensions/UIModalTransitionStyle/UIModalTransitionStyle+CustomStringConvertible.swift -------------------------------------------------------------------------------- /Sources/Inspector/Extensions/UIReturnKeyType/UIReturnKeyType+CaseIterable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Extensions/UIReturnKeyType/UIReturnKeyType+CaseIterable.swift -------------------------------------------------------------------------------- /Sources/Inspector/Extensions/UIReturnKeyType/UIReturnKeyType+CustomStringConvertible.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Extensions/UIReturnKeyType/UIReturnKeyType+CustomStringConvertible.swift -------------------------------------------------------------------------------- /Sources/Inspector/Extensions/UIScrollView/ContentInsetAdjustmentBehavior/UIScrollView.ContentInsetAdjustmentBehavior+CaseIterable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Extensions/UIScrollView/ContentInsetAdjustmentBehavior/UIScrollView.ContentInsetAdjustmentBehavior+CaseIterable.swift -------------------------------------------------------------------------------- /Sources/Inspector/Extensions/UIScrollView/ContentInsetAdjustmentBehavior/UIScrollView.ContentInsetAdjustmentBehavior+CustomStringConvertible.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Extensions/UIScrollView/ContentInsetAdjustmentBehavior/UIScrollView.ContentInsetAdjustmentBehavior+CustomStringConvertible.swift -------------------------------------------------------------------------------- /Sources/Inspector/Extensions/UIScrollView/IndicatorStyle/UIScrollView.IndicatorStyle+CaseIterable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Extensions/UIScrollView/IndicatorStyle/UIScrollView.IndicatorStyle+CaseIterable.swift -------------------------------------------------------------------------------- /Sources/Inspector/Extensions/UIScrollView/IndicatorStyle/UIScrollView.IndicatorStyle+CustomStringConvertible.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Extensions/UIScrollView/IndicatorStyle/UIScrollView.IndicatorStyle+CustomStringConvertible.swift -------------------------------------------------------------------------------- /Sources/Inspector/Extensions/UIScrollView/KeyboardDismissMode/UIScrollView.KeyboardDismissMode+CaseIterable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Extensions/UIScrollView/KeyboardDismissMode/UIScrollView.KeyboardDismissMode+CaseIterable.swift -------------------------------------------------------------------------------- /Sources/Inspector/Extensions/UIScrollView/KeyboardDismissMode/UIScrollView.KeyboardDismissMode+CustomStringConvertible.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Extensions/UIScrollView/KeyboardDismissMode/UIScrollView.KeyboardDismissMode+CustomStringConvertible.swift -------------------------------------------------------------------------------- /Sources/Inspector/Extensions/UISemanticContentAttribute/UISemanticContentAttribute+CaseIterable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Extensions/UISemanticContentAttribute/UISemanticContentAttribute+CaseIterable.swift -------------------------------------------------------------------------------- /Sources/Inspector/Extensions/UISemanticContentAttribute/UISemanticContentAttribute+CustomStringConvertible.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Extensions/UISemanticContentAttribute/UISemanticContentAttribute+CustomStringConvertible.swift -------------------------------------------------------------------------------- /Sources/Inspector/Extensions/UIStackView/Alignment/UIStackView.Alignment+CaseIterable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Extensions/UIStackView/Alignment/UIStackView.Alignment+CaseIterable.swift -------------------------------------------------------------------------------- /Sources/Inspector/Extensions/UIStackView/Alignment/UIStackView.Alignment+CustomStringConvertible.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Extensions/UIStackView/Alignment/UIStackView.Alignment+CustomStringConvertible.swift -------------------------------------------------------------------------------- /Sources/Inspector/Extensions/UIStackView/Distribution/UIStackView.Distribution+CaseIterable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Extensions/UIStackView/Distribution/UIStackView.Distribution+CaseIterable.swift -------------------------------------------------------------------------------- /Sources/Inspector/Extensions/UIStackView/Distribution/UIStackView.Distribution+CustomStringConvertible.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Extensions/UIStackView/Distribution/UIStackView.Distribution+CustomStringConvertible.swift -------------------------------------------------------------------------------- /Sources/Inspector/Extensions/UIStackView/UIStackView+Init.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Extensions/UIStackView/UIStackView+Init.swift -------------------------------------------------------------------------------- /Sources/Inspector/Extensions/UISwitch/UISwitch.Style+CaseIterable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Extensions/UISwitch/UISwitch.Style+CaseIterable.swift -------------------------------------------------------------------------------- /Sources/Inspector/Extensions/UISwitch/UISwitch.Style+SegmentedControlDisplayable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Extensions/UISwitch/UISwitch.Style+SegmentedControlDisplayable.swift -------------------------------------------------------------------------------- /Sources/Inspector/Extensions/UITableView/UITableView+Convenience.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Extensions/UITableView/UITableView+Convenience.swift -------------------------------------------------------------------------------- /Sources/Inspector/Extensions/UITextAutocapitalizationType/UITextAutocapitalizationType+CaseIterable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Extensions/UITextAutocapitalizationType/UITextAutocapitalizationType+CaseIterable.swift -------------------------------------------------------------------------------- /Sources/Inspector/Extensions/UITextAutocapitalizationType/UITextAutocapitalizationType+CustomStringConvertible.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Extensions/UITextAutocapitalizationType/UITextAutocapitalizationType+CustomStringConvertible.swift -------------------------------------------------------------------------------- /Sources/Inspector/Extensions/UITextAutocorrectionType/UITextAutocorrectionType+CaseIterable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Extensions/UITextAutocorrectionType/UITextAutocorrectionType+CaseIterable.swift -------------------------------------------------------------------------------- /Sources/Inspector/Extensions/UITextAutocorrectionType/UITextAutocorrectionType+CustomStringConvertible.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Extensions/UITextAutocorrectionType/UITextAutocorrectionType+CustomStringConvertible.swift -------------------------------------------------------------------------------- /Sources/Inspector/Extensions/UITextContentType/UITextContentType+CaseIterable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Extensions/UITextContentType/UITextContentType+CaseIterable.swift -------------------------------------------------------------------------------- /Sources/Inspector/Extensions/UITextContentType/UITextContentType+CustomStringConvertible.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Extensions/UITextContentType/UITextContentType+CustomStringConvertible.swift -------------------------------------------------------------------------------- /Sources/Inspector/Extensions/UITextField/BorderStyle/UITextField.BorderStyle+CaseIterable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Extensions/UITextField/BorderStyle/UITextField.BorderStyle+CaseIterable.swift -------------------------------------------------------------------------------- /Sources/Inspector/Extensions/UITextField/BorderStyle/UITextField.BorderStyle+SegmentedControlDisplayable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Extensions/UITextField/BorderStyle/UITextField.BorderStyle+SegmentedControlDisplayable.swift -------------------------------------------------------------------------------- /Sources/Inspector/Extensions/UITextField/ViewMode/UITextField.ViewMode+CaseIterable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Extensions/UITextField/ViewMode/UITextField.ViewMode+CaseIterable.swift -------------------------------------------------------------------------------- /Sources/Inspector/Extensions/UITextField/ViewMode/UITextField.ViewMode+CustomStringConvertible.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Extensions/UITextField/ViewMode/UITextField.ViewMode+CustomStringConvertible.swift -------------------------------------------------------------------------------- /Sources/Inspector/Extensions/UITextSmartDashesType/UITextSmartDashesType+CaseIterable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Extensions/UITextSmartDashesType/UITextSmartDashesType+CaseIterable.swift -------------------------------------------------------------------------------- /Sources/Inspector/Extensions/UITextSmartDashesType/UITextSmartDashesType+CustomStringConvertible.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Extensions/UITextSmartDashesType/UITextSmartDashesType+CustomStringConvertible.swift -------------------------------------------------------------------------------- /Sources/Inspector/Extensions/UITextSmartQuotesType/UITextSmartQuotesType+CaseIterable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Extensions/UITextSmartQuotesType/UITextSmartQuotesType+CaseIterable.swift -------------------------------------------------------------------------------- /Sources/Inspector/Extensions/UITextSmartQuotesType/UITextSmartQuotesType+CustomStringConvertible.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Extensions/UITextSmartQuotesType/UITextSmartQuotesType+CustomStringConvertible.swift -------------------------------------------------------------------------------- /Sources/Inspector/Extensions/UITextSpellCheckingType/UITextSpellCheckingType+CaseIterable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Extensions/UITextSpellCheckingType/UITextSpellCheckingType+CaseIterable.swift -------------------------------------------------------------------------------- /Sources/Inspector/Extensions/UITextSpellCheckingType/UITextSpellCheckingType+CustomStringConvertible.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Extensions/UITextSpellCheckingType/UITextSpellCheckingType+CustomStringConvertible.swift -------------------------------------------------------------------------------- /Sources/Inspector/Extensions/UITextView/UITextView+Init.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Extensions/UITextView/UITextView+Init.swift -------------------------------------------------------------------------------- /Sources/Inspector/Extensions/UIView/AutoresizingMask/UIView.AutoresizingMask+CaseIterable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Extensions/UIView/AutoresizingMask/UIView.AutoresizingMask+CaseIterable.swift -------------------------------------------------------------------------------- /Sources/Inspector/Extensions/UIView/AutoresizingMask/UIView.AutoresizingMask+CustomStringConvertible.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Extensions/UIView/AutoresizingMask/UIView.AutoresizingMask+CustomStringConvertible.swift -------------------------------------------------------------------------------- /Sources/Inspector/Extensions/UIView/ContentMode/UIView.ContentMode+CaseIterable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Extensions/UIView/ContentMode/UIView.ContentMode+CaseIterable.swift -------------------------------------------------------------------------------- /Sources/Inspector/Extensions/UIView/ContentMode/UIView.ContentMode+CustomStringConvertible.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Extensions/UIView/ContentMode/UIView.ContentMode+CustomStringConvertible.swift -------------------------------------------------------------------------------- /Sources/Inspector/Extensions/UIView/UIView+Convenience.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Extensions/UIView/UIView+Convenience.swift -------------------------------------------------------------------------------- /Sources/Inspector/Extensions/UIView/UIView+HightlightView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Extensions/UIView/UIView+HightlightView.swift -------------------------------------------------------------------------------- /Sources/Inspector/Extensions/UIView/UIView+Mask.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Extensions/UIView/UIView+Mask.swift -------------------------------------------------------------------------------- /Sources/Inspector/Extensions/UIView/UIView+Snapshot.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Extensions/UIView/UIView+Snapshot.swift -------------------------------------------------------------------------------- /Sources/Inspector/Extensions/UIView/UIView+Swizzling.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Extensions/UIView/UIView+Swizzling.swift -------------------------------------------------------------------------------- /Sources/Inspector/Extensions/UIView/UIView+ViewHierarchyElementRepresentable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Extensions/UIView/UIView+ViewHierarchyElementRepresentable.swift -------------------------------------------------------------------------------- /Sources/Inspector/Extensions/UIViewController/UIViewController+Children.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Extensions/UIViewController/UIViewController+Children.swift -------------------------------------------------------------------------------- /Sources/Inspector/Extensions/UIViewController/UIViewController+PopoverPresentationStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Extensions/UIViewController/UIViewController+PopoverPresentationStyle.swift -------------------------------------------------------------------------------- /Sources/Inspector/Extensions/UIViewController/UIViewController+UIKeyCommand.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Extensions/UIViewController/UIViewController+UIKeyCommand.swift -------------------------------------------------------------------------------- /Sources/Inspector/Extensions/UIWindow/UIWindow+PresentedViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Extensions/UIWindow/UIWindow+PresentedViewController.swift -------------------------------------------------------------------------------- /Sources/Inspector/Extensions/ViewHierarchyLayer/ViewHierarchyLayer+Actionable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Extensions/ViewHierarchyLayer/ViewHierarchyLayer+Actionable.swift -------------------------------------------------------------------------------- /Sources/Inspector/Extensions/ViewHierarchyLayer/ViewHierarchyLayer+AdditiveArithmetic.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Extensions/ViewHierarchyLayer/ViewHierarchyLayer+AdditiveArithmetic.swift -------------------------------------------------------------------------------- /Sources/Inspector/Extensions/ViewHierarchyLayer/ViewHierarchyLayer+CustomStringConvertible.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Extensions/ViewHierarchyLayer/ViewHierarchyLayer+CustomStringConvertible.swift -------------------------------------------------------------------------------- /Sources/Inspector/Factories/ViewHierarchyCoordinatorFactory.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Factories/ViewHierarchyCoordinatorFactory.swift -------------------------------------------------------------------------------- /Sources/Inspector/Inspector.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Inspector.swift -------------------------------------------------------------------------------- /Sources/Inspector/InspectorView/Coordinators/InspectorViewCoordinator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/InspectorView/Coordinators/InspectorViewCoordinator.swift -------------------------------------------------------------------------------- /Sources/Inspector/InspectorView/Enums/InspectorCommand.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/InspectorView/Enums/InspectorCommand.swift -------------------------------------------------------------------------------- /Sources/Inspector/InspectorView/ViewControllers/InspectorViewController+UITableViewDataSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/InspectorView/ViewControllers/InspectorViewController+UITableViewDataSource.swift -------------------------------------------------------------------------------- /Sources/Inspector/InspectorView/ViewControllers/InspectorViewController+UITableViewDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/InspectorView/ViewControllers/InspectorViewController+UITableViewDelegate.swift -------------------------------------------------------------------------------- /Sources/Inspector/InspectorView/ViewControllers/InspectorViewController+UITableViewKeyCommandsDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/InspectorView/ViewControllers/InspectorViewController+UITableViewKeyCommandsDelegate.swift -------------------------------------------------------------------------------- /Sources/Inspector/InspectorView/ViewControllers/InspectorViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/InspectorView/ViewControllers/InspectorViewController.swift -------------------------------------------------------------------------------- /Sources/Inspector/InspectorView/ViewModels/CommandGroupsViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/InspectorView/ViewModels/CommandGroupsViewModel.swift -------------------------------------------------------------------------------- /Sources/Inspector/InspectorView/ViewModels/HierarchyInspectorViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/InspectorView/ViewModels/HierarchyInspectorViewModel.swift -------------------------------------------------------------------------------- /Sources/Inspector/InspectorView/ViewModels/SnapshotViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/InspectorView/ViewModels/SnapshotViewModel.swift -------------------------------------------------------------------------------- /Sources/Inspector/InspectorView/Views/HierarchyInspectorActionTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/InspectorView/Views/HierarchyInspectorActionTableViewCell.swift -------------------------------------------------------------------------------- /Sources/Inspector/InspectorView/Views/HierarchyInspectorReferenceSummaryTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/InspectorView/Views/HierarchyInspectorReferenceSummaryTableViewCell.swift -------------------------------------------------------------------------------- /Sources/Inspector/InspectorView/Views/HierarchyInspectorSearchView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/InspectorView/Views/HierarchyInspectorSearchView.swift -------------------------------------------------------------------------------- /Sources/Inspector/InspectorView/Views/HierarchyInspectorTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/InspectorView/Views/HierarchyInspectorTableViewCell.swift -------------------------------------------------------------------------------- /Sources/Inspector/InspectorView/Views/HierarchyInspectorTableViewHeaderView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/InspectorView/Views/HierarchyInspectorTableViewHeaderView.swift -------------------------------------------------------------------------------- /Sources/Inspector/InspectorView/Views/HierarchyInspectorViewCode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/InspectorView/Views/HierarchyInspectorViewCode.swift -------------------------------------------------------------------------------- /Sources/Inspector/Manager/Manager+ElementInspectorCoordinatorDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Manager/Manager+ElementInspectorCoordinatorDelegate.swift -------------------------------------------------------------------------------- /Sources/Inspector/Manager/Manager+InspectorViewCoordinatorDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Manager/Manager+InspectorViewCoordinatorDelegate.swift -------------------------------------------------------------------------------- /Sources/Inspector/Manager/Manager+KeyCommandPresentable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Manager/Manager+KeyCommandPresentable.swift -------------------------------------------------------------------------------- /Sources/Inspector/Manager/Manager+ViewHierarchyActionableProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Manager/Manager+ViewHierarchyActionableProtocol.swift -------------------------------------------------------------------------------- /Sources/Inspector/Manager/Manager+ViewHierarchyLayerManagerProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Manager/Manager+ViewHierarchyLayerManagerProtocol.swift -------------------------------------------------------------------------------- /Sources/Inspector/Manager/Manager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Manager/Manager.swift -------------------------------------------------------------------------------- /Sources/Inspector/Models/BundleInfo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Models/BundleInfo.swift -------------------------------------------------------------------------------- /Sources/Inspector/Models/Command.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Models/Command.swift -------------------------------------------------------------------------------- /Sources/Inspector/Models/CommandsGroup.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Models/CommandsGroup.swift -------------------------------------------------------------------------------- /Sources/Inspector/Models/ElementCatalogIconProviderDefault.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Models/ElementCatalogIconProviderDefault.swift -------------------------------------------------------------------------------- /Sources/Inspector/Models/ElementPanelType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Models/ElementPanelType.swift -------------------------------------------------------------------------------- /Sources/Inspector/Models/ExpirableStore.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Models/ExpirableStore.swift -------------------------------------------------------------------------------- /Sources/Inspector/Models/FontReference.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Models/FontReference.swift -------------------------------------------------------------------------------- /Sources/Inspector/Models/HashableValue.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Models/HashableValue.swift -------------------------------------------------------------------------------- /Sources/Inspector/Models/InspectorElementProperty.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Models/InspectorElementProperty.swift -------------------------------------------------------------------------------- /Sources/Inspector/Models/InspectorElementSection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Models/InspectorElementSection.swift -------------------------------------------------------------------------------- /Sources/Inspector/Models/LayoutConstraintElement.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Models/LayoutConstraintElement.swift -------------------------------------------------------------------------------- /Sources/Inspector/Models/Logger.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Models/Logger.swift -------------------------------------------------------------------------------- /Sources/Inspector/Models/MainThreadAsyncOperation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Models/MainThreadAsyncOperation.swift -------------------------------------------------------------------------------- /Sources/Inspector/Models/MainThreadOperation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Models/MainThreadOperation.swift -------------------------------------------------------------------------------- /Sources/Inspector/Models/Provider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Models/Provider.swift -------------------------------------------------------------------------------- /Sources/Inspector/Models/SnapshotStore.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Models/SnapshotStore.swift -------------------------------------------------------------------------------- /Sources/Inspector/Models/ViewHierarchy.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Models/ViewHierarchy.swift -------------------------------------------------------------------------------- /Sources/Inspector/Models/ViewHierarchyColorSchemeDefault.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Models/ViewHierarchyColorSchemeDefault.swift -------------------------------------------------------------------------------- /Sources/Inspector/Models/ViewHierarchyElement.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Models/ViewHierarchyElement.swift -------------------------------------------------------------------------------- /Sources/Inspector/Models/ViewHierarchyElementAction.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Models/ViewHierarchyElementAction.swift -------------------------------------------------------------------------------- /Sources/Inspector/Models/ViewHierarchyElementController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Models/ViewHierarchyElementController.swift -------------------------------------------------------------------------------- /Sources/Inspector/Models/ViewHierarchyInformation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Models/ViewHierarchyInformation.swift -------------------------------------------------------------------------------- /Sources/Inspector/Models/ViewHierarchyInterfaceStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Models/ViewHierarchyInterfaceStyle.swift -------------------------------------------------------------------------------- /Sources/Inspector/Models/ViewHierarchyIssue.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Models/ViewHierarchyIssue.swift -------------------------------------------------------------------------------- /Sources/Inspector/Models/ViewHierarchyLayer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Models/ViewHierarchyLayer.swift -------------------------------------------------------------------------------- /Sources/Inspector/Models/ViewHierarchyLayerAction.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Models/ViewHierarchyLayerAction.swift -------------------------------------------------------------------------------- /Sources/Inspector/Models/ViewHierarchyRoot.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Models/ViewHierarchyRoot.swift -------------------------------------------------------------------------------- /Sources/Inspector/Models/ViewHierarchySnapshot.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Models/ViewHierarchySnapshot.swift -------------------------------------------------------------------------------- /Sources/Inspector/Presenters/AdaptiveModalPresenter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Presenters/AdaptiveModalPresenter.swift -------------------------------------------------------------------------------- /Sources/Inspector/Presenters/ColorPickerPresenter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Presenters/ColorPickerPresenter.swift -------------------------------------------------------------------------------- /Sources/Inspector/Presenters/ContextMenuPresenter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Presenters/ContextMenuPresenter.swift -------------------------------------------------------------------------------- /Sources/Inspector/Presenters/DocumentPickerPresenter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Presenters/DocumentPickerPresenter.swift -------------------------------------------------------------------------------- /Sources/Inspector/Presenters/UIViewControllerTransitionPresenter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Presenters/UIViewControllerTransitionPresenter.swift -------------------------------------------------------------------------------- /Sources/Inspector/Protocols/Actionable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Protocols/Actionable.swift -------------------------------------------------------------------------------- /Sources/Inspector/Protocols/AsyncOperationProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Protocols/AsyncOperationProtocol.swift -------------------------------------------------------------------------------- /Sources/Inspector/Protocols/CaseIterable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Protocols/CaseIterable.swift -------------------------------------------------------------------------------- /Sources/Inspector/Protocols/Create.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Protocols/Create.swift -------------------------------------------------------------------------------- /Sources/Inspector/Protocols/CustomImageConvertible.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Protocols/CustomImageConvertible.swift -------------------------------------------------------------------------------- /Sources/Inspector/Protocols/CustomStringConvertible.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Protocols/CustomStringConvertible.swift -------------------------------------------------------------------------------- /Sources/Inspector/Protocols/DataReloadingProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Protocols/DataReloadingProtocol.swift -------------------------------------------------------------------------------- /Sources/Inspector/Protocols/DismissablePresentationProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Protocols/DismissablePresentationProtocol.swift -------------------------------------------------------------------------------- /Sources/Inspector/Protocols/DraggableViewProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Protocols/DraggableViewProtocol.swift -------------------------------------------------------------------------------- /Sources/Inspector/Protocols/ElementInspectorAppearanceProviding.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Protocols/ElementInspectorAppearanceProviding.swift -------------------------------------------------------------------------------- /Sources/Inspector/Protocols/ExpirableProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Protocols/ExpirableProtocol.swift -------------------------------------------------------------------------------- /Sources/Inspector/Protocols/InspectorAppearanceProviding.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Protocols/InspectorAppearanceProviding.swift -------------------------------------------------------------------------------- /Sources/Inspector/Protocols/InspectorCustomizationProviding.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Protocols/InspectorCustomizationProviding.swift -------------------------------------------------------------------------------- /Sources/Inspector/Protocols/InspectorElementLibraryProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Protocols/InspectorElementLibraryProtocol.swift -------------------------------------------------------------------------------- /Sources/Inspector/Protocols/InspectorElementSectionDataSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Protocols/InspectorElementSectionDataSource.swift -------------------------------------------------------------------------------- /Sources/Inspector/Protocols/InternalViewProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Protocols/InternalViewProtocol.swift -------------------------------------------------------------------------------- /Sources/Inspector/Protocols/KeyCommandPresentable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Protocols/KeyCommandPresentable.swift -------------------------------------------------------------------------------- /Sources/Inspector/Protocols/LayerCommandProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Protocols/LayerCommandProtocol.swift -------------------------------------------------------------------------------- /Sources/Inspector/Protocols/LayerViewProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Protocols/LayerViewProtocol.swift -------------------------------------------------------------------------------- /Sources/Inspector/Protocols/MenuContentProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Protocols/MenuContentProtocol.swift -------------------------------------------------------------------------------- /Sources/Inspector/Protocols/NonInspectableView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Protocols/NonInspectableView.swift -------------------------------------------------------------------------------- /Sources/Inspector/Protocols/OperationQueueManagerProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Protocols/OperationQueueManagerProtocol.swift -------------------------------------------------------------------------------- /Sources/Inspector/Protocols/TextElement.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Protocols/TextElement.swift -------------------------------------------------------------------------------- /Sources/Inspector/Protocols/ViewHierarchyActionableProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Protocols/ViewHierarchyActionableProtocol.swift -------------------------------------------------------------------------------- /Sources/Inspector/Protocols/ViewHierarchyControllerProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Protocols/ViewHierarchyControllerProtocol.swift -------------------------------------------------------------------------------- /Sources/Inspector/Protocols/ViewHierarchyElementCatalog.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Protocols/ViewHierarchyElementCatalog.swift -------------------------------------------------------------------------------- /Sources/Inspector/Protocols/ViewHierarchyElementReference.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Protocols/ViewHierarchyElementReference.swift -------------------------------------------------------------------------------- /Sources/Inspector/Protocols/ViewHierarchyElementRepresentable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Protocols/ViewHierarchyElementRepresentable.swift -------------------------------------------------------------------------------- /Sources/Inspector/Protocols/ViewHierarchyLayerConstructorProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Protocols/ViewHierarchyLayerConstructorProtocol.swift -------------------------------------------------------------------------------- /Sources/Inspector/Protocols/ViewHierarchyLayerManagerProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Protocols/ViewHierarchyLayerManagerProtocol.swift -------------------------------------------------------------------------------- /Sources/Inspector/Protocols/ViewHierarchyRepresentable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Protocols/ViewHierarchyRepresentable.swift -------------------------------------------------------------------------------- /Sources/Inspector/Resources/ElementLibrary.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Resources/ElementLibrary.xcassets/Contents.json -------------------------------------------------------------------------------- /Sources/Inspector/Resources/ElementLibrary.xcassets/NSObject.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Resources/ElementLibrary.xcassets/NSObject.imageset/Contents.json -------------------------------------------------------------------------------- /Sources/Inspector/Resources/ElementLibrary.xcassets/NSObject.imageset/NSObject-32_Light.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Resources/ElementLibrary.xcassets/NSObject.imageset/NSObject-32_Light.pdf -------------------------------------------------------------------------------- /Sources/Inspector/Resources/ElementLibrary.xcassets/Originals/Button-32_Normal.imageset/Button-32_Normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Resources/ElementLibrary.xcassets/Originals/Button-32_Normal.imageset/Button-32_Normal.png -------------------------------------------------------------------------------- /Sources/Inspector/Resources/ElementLibrary.xcassets/Originals/Button-32_Normal.imageset/Button-32_Normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Resources/ElementLibrary.xcassets/Originals/Button-32_Normal.imageset/Button-32_Normal@2x.png -------------------------------------------------------------------------------- /Sources/Inspector/Resources/ElementLibrary.xcassets/Originals/Button-32_Normal.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Resources/ElementLibrary.xcassets/Originals/Button-32_Normal.imageset/Contents.json -------------------------------------------------------------------------------- /Sources/Inspector/Resources/ElementLibrary.xcassets/Originals/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Resources/ElementLibrary.xcassets/Originals/Contents.json -------------------------------------------------------------------------------- /Sources/Inspector/Resources/ElementLibrary.xcassets/Originals/UIButton_32-Dark_Normal.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Resources/ElementLibrary.xcassets/Originals/UIButton_32-Dark_Normal.imageset/Contents.json -------------------------------------------------------------------------------- /Sources/Inspector/Resources/ElementLibrary.xcassets/Originals/UIButton_32-Dark_Normal.imageset/UIButton_32-Dark_Normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Resources/ElementLibrary.xcassets/Originals/UIButton_32-Dark_Normal.imageset/UIButton_32-Dark_Normal.png -------------------------------------------------------------------------------- /Sources/Inspector/Resources/ElementLibrary.xcassets/Originals/UIButton_32-Dark_Normal.imageset/UIButton_32-Dark_Normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Resources/ElementLibrary.xcassets/Originals/UIButton_32-Dark_Normal.imageset/UIButton_32-Dark_Normal@2x.png -------------------------------------------------------------------------------- /Sources/Inspector/Resources/ElementLibrary.xcassets/Originals/UIDatePicker_32_Normal.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Resources/ElementLibrary.xcassets/Originals/UIDatePicker_32_Normal.imageset/Contents.json -------------------------------------------------------------------------------- /Sources/Inspector/Resources/ElementLibrary.xcassets/Originals/UIDatePicker_32_Normal.imageset/UIDatePicker_32_Normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Resources/ElementLibrary.xcassets/Originals/UIDatePicker_32_Normal.imageset/UIDatePicker_32_Normal.png -------------------------------------------------------------------------------- /Sources/Inspector/Resources/ElementLibrary.xcassets/Originals/UIDatePicker_32_Normal.imageset/UIDatePicker_32_Normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Resources/ElementLibrary.xcassets/Originals/UIDatePicker_32_Normal.imageset/UIDatePicker_32_Normal@2x.png -------------------------------------------------------------------------------- /Sources/Inspector/Resources/ElementLibrary.xcassets/Originals/UISegmentedControl_32_Dark_Normal.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Resources/ElementLibrary.xcassets/Originals/UISegmentedControl_32_Dark_Normal.imageset/Contents.json -------------------------------------------------------------------------------- /Sources/Inspector/Resources/ElementLibrary.xcassets/Originals/UISegmentedControl_32_Dark_Normal.imageset/UISegmentedControl_32_Dark_Normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Resources/ElementLibrary.xcassets/Originals/UISegmentedControl_32_Dark_Normal.imageset/UISegmentedControl_32_Dark_Normal.png -------------------------------------------------------------------------------- /Sources/Inspector/Resources/ElementLibrary.xcassets/Originals/UISegmentedControl_32_Dark_Normal.imageset/UISegmentedControl_32_Dark_Normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Resources/ElementLibrary.xcassets/Originals/UISegmentedControl_32_Dark_Normal.imageset/UISegmentedControl_32_Dark_Normal@2x.png -------------------------------------------------------------------------------- /Sources/Inspector/Resources/ElementLibrary.xcassets/Originals/UISegmentedControl_32_Normal.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Resources/ElementLibrary.xcassets/Originals/UISegmentedControl_32_Normal.imageset/Contents.json -------------------------------------------------------------------------------- /Sources/Inspector/Resources/ElementLibrary.xcassets/Originals/UISegmentedControl_32_Normal.imageset/UISegmentedControl_32_Normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Resources/ElementLibrary.xcassets/Originals/UISegmentedControl_32_Normal.imageset/UISegmentedControl_32_Normal.png -------------------------------------------------------------------------------- /Sources/Inspector/Resources/ElementLibrary.xcassets/Originals/UISegmentedControl_32_Normal.imageset/UISegmentedControl_32_Normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Resources/ElementLibrary.xcassets/Originals/UISegmentedControl_32_Normal.imageset/UISegmentedControl_32_Normal@2x.png -------------------------------------------------------------------------------- /Sources/Inspector/Resources/ElementLibrary.xcassets/Originals/UISlider_32_Normal.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Resources/ElementLibrary.xcassets/Originals/UISlider_32_Normal.imageset/Contents.json -------------------------------------------------------------------------------- /Sources/Inspector/Resources/ElementLibrary.xcassets/Originals/UISlider_32_Normal.imageset/UISlider_32_Normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Resources/ElementLibrary.xcassets/Originals/UISlider_32_Normal.imageset/UISlider_32_Normal.png -------------------------------------------------------------------------------- /Sources/Inspector/Resources/ElementLibrary.xcassets/Originals/UISlider_32_Normal.imageset/UISlider_32_Normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Resources/ElementLibrary.xcassets/Originals/UISlider_32_Normal.imageset/UISlider_32_Normal@2x.png -------------------------------------------------------------------------------- /Sources/Inspector/Resources/ElementLibrary.xcassets/Templates/BackgroundView-32_Normal.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Resources/ElementLibrary.xcassets/Templates/BackgroundView-32_Normal.imageset/Contents.json -------------------------------------------------------------------------------- /Sources/Inspector/Resources/ElementLibrary.xcassets/Templates/BackgroundView-32_Normal.imageset/background-32_Normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Resources/ElementLibrary.xcassets/Templates/BackgroundView-32_Normal.imageset/background-32_Normal.png -------------------------------------------------------------------------------- /Sources/Inspector/Resources/ElementLibrary.xcassets/Templates/BackgroundView-32_Normal.imageset/background-32_Normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Resources/ElementLibrary.xcassets/Templates/BackgroundView-32_Normal.imageset/background-32_Normal@2x.png -------------------------------------------------------------------------------- /Sources/Inspector/Resources/ElementLibrary.xcassets/Templates/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Resources/ElementLibrary.xcassets/Templates/Contents.json -------------------------------------------------------------------------------- /Sources/Inspector/Resources/ElementLibrary.xcassets/Templates/DatePicker-32_Normal.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Resources/ElementLibrary.xcassets/Templates/DatePicker-32_Normal.imageset/Contents.json -------------------------------------------------------------------------------- /Sources/Inspector/Resources/ElementLibrary.xcassets/Templates/DatePicker-32_Normal.imageset/DatePicker-32_Normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Resources/ElementLibrary.xcassets/Templates/DatePicker-32_Normal.imageset/DatePicker-32_Normal.png -------------------------------------------------------------------------------- /Sources/Inspector/Resources/ElementLibrary.xcassets/Templates/DatePicker-32_Normal.imageset/DatePicker-32_Normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Resources/ElementLibrary.xcassets/Templates/DatePicker-32_Normal.imageset/DatePicker-32_Normal@2x.png -------------------------------------------------------------------------------- /Sources/Inspector/Resources/ElementLibrary.xcassets/Templates/DropShadow-32_Normal.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Resources/ElementLibrary.xcassets/Templates/DropShadow-32_Normal.imageset/Contents.json -------------------------------------------------------------------------------- /Sources/Inspector/Resources/ElementLibrary.xcassets/Templates/DropShadow-32_Normal.imageset/shadow-32_Normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Resources/ElementLibrary.xcassets/Templates/DropShadow-32_Normal.imageset/shadow-32_Normal.png -------------------------------------------------------------------------------- /Sources/Inspector/Resources/ElementLibrary.xcassets/Templates/DropShadow-32_Normal.imageset/shadow-32_Normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Resources/ElementLibrary.xcassets/Templates/DropShadow-32_Normal.imageset/shadow-32_Normal@2x.png -------------------------------------------------------------------------------- /Sources/Inspector/Resources/ElementLibrary.xcassets/Templates/HStack-32_Normal.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Resources/ElementLibrary.xcassets/Templates/HStack-32_Normal.imageset/Contents.json -------------------------------------------------------------------------------- /Sources/Inspector/Resources/ElementLibrary.xcassets/Templates/HStack-32_Normal.imageset/HStack-32_Normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Resources/ElementLibrary.xcassets/Templates/HStack-32_Normal.imageset/HStack-32_Normal.png -------------------------------------------------------------------------------- /Sources/Inspector/Resources/ElementLibrary.xcassets/Templates/HStack-32_Normal.imageset/HStack-32_Normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Resources/ElementLibrary.xcassets/Templates/HStack-32_Normal.imageset/HStack-32_Normal@2x.png -------------------------------------------------------------------------------- /Sources/Inspector/Resources/ElementLibrary.xcassets/Templates/Hidden-32_Normal.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Resources/ElementLibrary.xcassets/Templates/Hidden-32_Normal.imageset/Contents.json -------------------------------------------------------------------------------- /Sources/Inspector/Resources/ElementLibrary.xcassets/Templates/Hidden-32_Normal.imageset/Hidden-32_Normal.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Resources/ElementLibrary.xcassets/Templates/Hidden-32_Normal.imageset/Hidden-32_Normal.pdf -------------------------------------------------------------------------------- /Sources/Inspector/Resources/ElementLibrary.xcassets/Templates/ImageView-32_Normal.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Resources/ElementLibrary.xcassets/Templates/ImageView-32_Normal.imageset/Contents.json -------------------------------------------------------------------------------- /Sources/Inspector/Resources/ElementLibrary.xcassets/Templates/ImageView-32_Normal.imageset/ImageView-32_Normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Resources/ElementLibrary.xcassets/Templates/ImageView-32_Normal.imageset/ImageView-32_Normal.png -------------------------------------------------------------------------------- /Sources/Inspector/Resources/ElementLibrary.xcassets/Templates/ImageView-32_Normal.imageset/ImageView-32_Normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Resources/ElementLibrary.xcassets/Templates/ImageView-32_Normal.imageset/ImageView-32_Normal@2x.png -------------------------------------------------------------------------------- /Sources/Inspector/Resources/ElementLibrary.xcassets/Templates/Key-UIWindow-32_Normal.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Resources/ElementLibrary.xcassets/Templates/Key-UIWindow-32_Normal.imageset/Contents.json -------------------------------------------------------------------------------- /Sources/Inspector/Resources/ElementLibrary.xcassets/Templates/Key-UIWindow-32_Normal.imageset/Key-UIWindow-32_Normal.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Resources/ElementLibrary.xcassets/Templates/Key-UIWindow-32_Normal.imageset/Key-UIWindow-32_Normal.pdf -------------------------------------------------------------------------------- /Sources/Inspector/Resources/ElementLibrary.xcassets/Templates/NavigationBar-32_Normal.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Resources/ElementLibrary.xcassets/Templates/NavigationBar-32_Normal.imageset/Contents.json -------------------------------------------------------------------------------- /Sources/Inspector/Resources/ElementLibrary.xcassets/Templates/NavigationBar-32_Normal.imageset/navigationBar-16_Normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Resources/ElementLibrary.xcassets/Templates/NavigationBar-32_Normal.imageset/navigationBar-16_Normal@2x.png -------------------------------------------------------------------------------- /Sources/Inspector/Resources/ElementLibrary.xcassets/Templates/NavigationBar-32_Normal.imageset/navigationBar-32_Normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Resources/ElementLibrary.xcassets/Templates/NavigationBar-32_Normal.imageset/navigationBar-32_Normal@2x.png -------------------------------------------------------------------------------- /Sources/Inspector/Resources/ElementLibrary.xcassets/Templates/TabItem-32_Normal.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Resources/ElementLibrary.xcassets/Templates/TabItem-32_Normal.imageset/Contents.json -------------------------------------------------------------------------------- /Sources/Inspector/Resources/ElementLibrary.xcassets/Templates/TabItem-32_Normal.imageset/tabItem-32_Normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Resources/ElementLibrary.xcassets/Templates/TabItem-32_Normal.imageset/tabItem-32_Normal.png -------------------------------------------------------------------------------- /Sources/Inspector/Resources/ElementLibrary.xcassets/Templates/TabItem-32_Normal.imageset/tabItem-32_Normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Resources/ElementLibrary.xcassets/Templates/TabItem-32_Normal.imageset/tabItem-32_Normal@2x.png -------------------------------------------------------------------------------- /Sources/Inspector/Resources/ElementLibrary.xcassets/Templates/TabbedView-32_Normal.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Resources/ElementLibrary.xcassets/Templates/TabbedView-32_Normal.imageset/Contents.json -------------------------------------------------------------------------------- /Sources/Inspector/Resources/ElementLibrary.xcassets/Templates/TabbedView-32_Normal.imageset/TabbedView-32_Normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Resources/ElementLibrary.xcassets/Templates/TabbedView-32_Normal.imageset/TabbedView-32_Normal.png -------------------------------------------------------------------------------- /Sources/Inspector/Resources/ElementLibrary.xcassets/Templates/TabbedView-32_Normal.imageset/TabbedView-32_Normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Resources/ElementLibrary.xcassets/Templates/TabbedView-32_Normal.imageset/TabbedView-32_Normal@2x.png -------------------------------------------------------------------------------- /Sources/Inspector/Resources/ElementLibrary.xcassets/Templates/TextField-32_Normal.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Resources/ElementLibrary.xcassets/Templates/TextField-32_Normal.imageset/Contents.json -------------------------------------------------------------------------------- /Sources/Inspector/Resources/ElementLibrary.xcassets/Templates/TextField-32_Normal.imageset/TextField-32_Normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Resources/ElementLibrary.xcassets/Templates/TextField-32_Normal.imageset/TextField-32_Normal.png -------------------------------------------------------------------------------- /Sources/Inspector/Resources/ElementLibrary.xcassets/Templates/TextField-32_Normal.imageset/TextField-32_Normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Resources/ElementLibrary.xcassets/Templates/TextField-32_Normal.imageset/TextField-32_Normal@2x.png -------------------------------------------------------------------------------- /Sources/Inspector/Resources/ElementLibrary.xcassets/Templates/TextView-32_Normal.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Resources/ElementLibrary.xcassets/Templates/TextView-32_Normal.imageset/Contents.json -------------------------------------------------------------------------------- /Sources/Inspector/Resources/ElementLibrary.xcassets/Templates/TextView-32_Normal.imageset/TextView-32_Normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Resources/ElementLibrary.xcassets/Templates/TextView-32_Normal.imageset/TextView-32_Normal.png -------------------------------------------------------------------------------- /Sources/Inspector/Resources/ElementLibrary.xcassets/Templates/TextView-32_Normal.imageset/TextView-32_Normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Resources/ElementLibrary.xcassets/Templates/TextView-32_Normal.imageset/TextView-32_Normal@2x.png -------------------------------------------------------------------------------- /Sources/Inspector/Resources/ElementLibrary.xcassets/Templates/Toggle-32_Normal.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Resources/ElementLibrary.xcassets/Templates/Toggle-32_Normal.imageset/Contents.json -------------------------------------------------------------------------------- /Sources/Inspector/Resources/ElementLibrary.xcassets/Templates/Toggle-32_Normal.imageset/Toggle-32_Normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Resources/ElementLibrary.xcassets/Templates/Toggle-32_Normal.imageset/Toggle-32_Normal.png -------------------------------------------------------------------------------- /Sources/Inspector/Resources/ElementLibrary.xcassets/Templates/Toggle-32_Normal.imageset/Toggle-32_Normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Resources/ElementLibrary.xcassets/Templates/Toggle-32_Normal.imageset/Toggle-32_Normal@2x.png -------------------------------------------------------------------------------- /Sources/Inspector/Resources/ElementLibrary.xcassets/Templates/UIActivityIndicator_32_Dark_Normal.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Resources/ElementLibrary.xcassets/Templates/UIActivityIndicator_32_Dark_Normal.imageset/Contents.json -------------------------------------------------------------------------------- /Sources/Inspector/Resources/ElementLibrary.xcassets/Templates/UIActivityIndicator_32_Dark_Normal.imageset/UIActivityIndicator_32_Dark_Normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Resources/ElementLibrary.xcassets/Templates/UIActivityIndicator_32_Dark_Normal.imageset/UIActivityIndicator_32_Dark_Normal.png -------------------------------------------------------------------------------- /Sources/Inspector/Resources/ElementLibrary.xcassets/Templates/UIActivityIndicator_32_Dark_Normal.imageset/UIActivityIndicator_32_Dark_Normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Resources/ElementLibrary.xcassets/Templates/UIActivityIndicator_32_Dark_Normal.imageset/UIActivityIndicator_32_Dark_Normal@2x.png -------------------------------------------------------------------------------- /Sources/Inspector/Resources/ElementLibrary.xcassets/Templates/UIControl-32_Normal.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Resources/ElementLibrary.xcassets/Templates/UIControl-32_Normal.imageset/Contents.json -------------------------------------------------------------------------------- /Sources/Inspector/Resources/ElementLibrary.xcassets/Templates/UIControl-32_Normal.imageset/UIControl-32_Normal.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Resources/ElementLibrary.xcassets/Templates/UIControl-32_Normal.imageset/UIControl-32_Normal.pdf -------------------------------------------------------------------------------- /Sources/Inspector/Resources/ElementLibrary.xcassets/Templates/UILabel_32-Dark_Normal.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Resources/ElementLibrary.xcassets/Templates/UILabel_32-Dark_Normal.imageset/Contents.json -------------------------------------------------------------------------------- /Sources/Inspector/Resources/ElementLibrary.xcassets/Templates/UILabel_32-Dark_Normal.imageset/UILabel_32-Dark_Normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Resources/ElementLibrary.xcassets/Templates/UILabel_32-Dark_Normal.imageset/UILabel_32-Dark_Normal.png -------------------------------------------------------------------------------- /Sources/Inspector/Resources/ElementLibrary.xcassets/Templates/UILabel_32-Dark_Normal.imageset/UILabel_32-Dark_Normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Resources/ElementLibrary.xcassets/Templates/UILabel_32-Dark_Normal.imageset/UILabel_32-Dark_Normal@2x.png -------------------------------------------------------------------------------- /Sources/Inspector/Resources/ElementLibrary.xcassets/Templates/UIScrollView_32_Normal.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Resources/ElementLibrary.xcassets/Templates/UIScrollView_32_Normal.imageset/Contents.json -------------------------------------------------------------------------------- /Sources/Inspector/Resources/ElementLibrary.xcassets/Templates/UIScrollView_32_Normal.imageset/UIScrollView_32_Normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Resources/ElementLibrary.xcassets/Templates/UIScrollView_32_Normal.imageset/UIScrollView_32_Normal.png -------------------------------------------------------------------------------- /Sources/Inspector/Resources/ElementLibrary.xcassets/Templates/UIScrollView_32_Normal.imageset/UIScrollView_32_Normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Resources/ElementLibrary.xcassets/Templates/UIScrollView_32_Normal.imageset/UIScrollView_32_Normal@2x.png -------------------------------------------------------------------------------- /Sources/Inspector/Resources/ElementLibrary.xcassets/Templates/UIToolbar-32_Normal.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Resources/ElementLibrary.xcassets/Templates/UIToolbar-32_Normal.imageset/Contents.json -------------------------------------------------------------------------------- /Sources/Inspector/Resources/ElementLibrary.xcassets/Templates/UIToolbar-32_Normal.imageset/toolbar-32_Normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Resources/ElementLibrary.xcassets/Templates/UIToolbar-32_Normal.imageset/toolbar-32_Normal.png -------------------------------------------------------------------------------- /Sources/Inspector/Resources/ElementLibrary.xcassets/Templates/UIToolbar-32_Normal.imageset/toolbar-32_Normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Resources/ElementLibrary.xcassets/Templates/UIToolbar-32_Normal.imageset/toolbar-32_Normal@2x.png -------------------------------------------------------------------------------- /Sources/Inspector/Resources/ElementLibrary.xcassets/Templates/UITransitionView-32_Normal.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Resources/ElementLibrary.xcassets/Templates/UITransitionView-32_Normal.imageset/Contents.json -------------------------------------------------------------------------------- /Sources/Inspector/Resources/ElementLibrary.xcassets/Templates/UITransitionView-32_Normal.imageset/transition-32_Normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Resources/ElementLibrary.xcassets/Templates/UITransitionView-32_Normal.imageset/transition-32_Normal.png -------------------------------------------------------------------------------- /Sources/Inspector/Resources/ElementLibrary.xcassets/Templates/UITransitionView-32_Normal.imageset/transition-32_Normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Resources/ElementLibrary.xcassets/Templates/UITransitionView-32_Normal.imageset/transition-32_Normal@2x.png -------------------------------------------------------------------------------- /Sources/Inspector/Resources/ElementLibrary.xcassets/Templates/UIView/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Resources/ElementLibrary.xcassets/Templates/UIView/Contents.json -------------------------------------------------------------------------------- /Sources/Inspector/Resources/ElementLibrary.xcassets/Templates/UIView/EmptyView-32_Normal.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Resources/ElementLibrary.xcassets/Templates/UIView/EmptyView-32_Normal.imageset/Contents.json -------------------------------------------------------------------------------- /Sources/Inspector/Resources/ElementLibrary.xcassets/Templates/UIView/EmptyView-32_Normal.imageset/UIView-32.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Resources/ElementLibrary.xcassets/Templates/UIView/EmptyView-32_Normal.imageset/UIView-32.pdf -------------------------------------------------------------------------------- /Sources/Inspector/Resources/ElementLibrary.xcassets/Templates/UIView/filled-view-32_Normal.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Resources/ElementLibrary.xcassets/Templates/UIView/filled-view-32_Normal.imageset/Contents.json -------------------------------------------------------------------------------- /Sources/Inspector/Resources/ElementLibrary.xcassets/Templates/UIView/filled-view-32_Normal.imageset/UIView-Filled-32.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Resources/ElementLibrary.xcassets/Templates/UIView/filled-view-32_Normal.imageset/UIView-Filled-32.pdf -------------------------------------------------------------------------------- /Sources/Inspector/Resources/ElementLibrary.xcassets/Templates/UIView/missing-view-32_Normal.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Resources/ElementLibrary.xcassets/Templates/UIView/missing-view-32_Normal.imageset/Contents.json -------------------------------------------------------------------------------- /Sources/Inspector/Resources/ElementLibrary.xcassets/Templates/UIView/missing-view-32_Normal.imageset/UIView-Missing-32.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Resources/ElementLibrary.xcassets/Templates/UIView/missing-view-32_Normal.imageset/UIView-Missing-32.pdf -------------------------------------------------------------------------------- /Sources/Inspector/Resources/ElementLibrary.xcassets/Templates/UIWindow-32_Normal.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Resources/ElementLibrary.xcassets/Templates/UIWindow-32_Normal.imageset/Contents.json -------------------------------------------------------------------------------- /Sources/Inspector/Resources/ElementLibrary.xcassets/Templates/UIWindow-32_Normal.imageset/window-32.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Resources/ElementLibrary.xcassets/Templates/UIWindow-32_Normal.imageset/window-32.pdf -------------------------------------------------------------------------------- /Sources/Inspector/Resources/ElementLibrary.xcassets/Templates/VStack-32_Normal.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Resources/ElementLibrary.xcassets/Templates/VStack-32_Normal.imageset/Contents.json -------------------------------------------------------------------------------- /Sources/Inspector/Resources/ElementLibrary.xcassets/Templates/VStack-32_Normal.imageset/VStack-32_Normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Resources/ElementLibrary.xcassets/Templates/VStack-32_Normal.imageset/VStack-32_Normal.png -------------------------------------------------------------------------------- /Sources/Inspector/Resources/ElementLibrary.xcassets/Templates/VStack-32_Normal.imageset/VStack-32_Normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Resources/ElementLibrary.xcassets/Templates/VStack-32_Normal.imageset/VStack-32_Normal@2x.png -------------------------------------------------------------------------------- /Sources/Inspector/Resources/ElementLibrary.xcassets/Templates/Webview-32_Normal.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Resources/ElementLibrary.xcassets/Templates/Webview-32_Normal.imageset/Contents.json -------------------------------------------------------------------------------- /Sources/Inspector/Resources/ElementLibrary.xcassets/Templates/Webview-32_Normal.imageset/Webview-32_Normal.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Resources/ElementLibrary.xcassets/Templates/Webview-32_Normal.imageset/Webview-32_Normal.pdf -------------------------------------------------------------------------------- /Sources/Inspector/Resources/ElementLibrary.xcassets/Templates/Window-32_Normal.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Resources/ElementLibrary.xcassets/Templates/Window-32_Normal.imageset/Contents.json -------------------------------------------------------------------------------- /Sources/Inspector/Resources/ElementLibrary.xcassets/Templates/Window-32_Normal.imageset/presentedWindowStyle-32_Normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Resources/ElementLibrary.xcassets/Templates/Window-32_Normal.imageset/presentedWindowStyle-32_Normal.png -------------------------------------------------------------------------------- /Sources/Inspector/Resources/ElementLibrary.xcassets/Templates/Window-32_Normal.imageset/presentedWindowStyle-32_Normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Resources/ElementLibrary.xcassets/Templates/Window-32_Normal.imageset/presentedWindowStyle-32_Normal@2x.png -------------------------------------------------------------------------------- /Sources/Inspector/Resources/ElementLibrary.xcassets/Templates/app-icon-template.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Resources/ElementLibrary.xcassets/Templates/app-icon-template.imageset/Contents.json -------------------------------------------------------------------------------- /Sources/Inspector/Resources/ElementLibrary.xcassets/Templates/app-icon-template.imageset/app-icon-template.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Resources/ElementLibrary.xcassets/Templates/app-icon-template.imageset/app-icon-template.pdf -------------------------------------------------------------------------------- /Sources/Inspector/Resources/ElementLibrary.xcassets/Templates/keyboardShortcut-32_Normal.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Resources/ElementLibrary.xcassets/Templates/keyboardShortcut-32_Normal.imageset/Contents.json -------------------------------------------------------------------------------- /Sources/Inspector/Resources/ElementLibrary.xcassets/Templates/keyboardShortcut-32_Normal.imageset/keyboardShortcut-32_Normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Resources/ElementLibrary.xcassets/Templates/keyboardShortcut-32_Normal.imageset/keyboardShortcut-32_Normal.png -------------------------------------------------------------------------------- /Sources/Inspector/Resources/ElementLibrary.xcassets/Templates/keyboardShortcut-32_Normal.imageset/keyboardShortcut-32_Normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Resources/ElementLibrary.xcassets/Templates/keyboardShortcut-32_Normal.imageset/keyboardShortcut-32_Normal@2x.png -------------------------------------------------------------------------------- /Sources/Inspector/Resources/ElementLibrary.xcassets/Templates/keyboardShortcut-32_Normal.imageset/keyboardShortcut-32_Normal@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Resources/ElementLibrary.xcassets/Templates/keyboardShortcut-32_Normal.imageset/keyboardShortcut-32_Normal@3x.png -------------------------------------------------------------------------------- /Sources/Inspector/Resources/ElementLibrary.xcassets/UICollectionViewController.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Resources/ElementLibrary.xcassets/UICollectionViewController.imageset/Contents.json -------------------------------------------------------------------------------- /Sources/Inspector/Resources/ElementLibrary.xcassets/UICollectionViewController.imageset/UICollectionViewController_32_Normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Resources/ElementLibrary.xcassets/UICollectionViewController.imageset/UICollectionViewController_32_Normal.png -------------------------------------------------------------------------------- /Sources/Inspector/Resources/ElementLibrary.xcassets/UICollectionViewController.imageset/UICollectionViewController_32_Normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Resources/ElementLibrary.xcassets/UICollectionViewController.imageset/UICollectionViewController_32_Normal@2x.png -------------------------------------------------------------------------------- /Sources/Inspector/Resources/ElementLibrary.xcassets/UINavigationController.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Resources/ElementLibrary.xcassets/UINavigationController.imageset/Contents.json -------------------------------------------------------------------------------- /Sources/Inspector/Resources/ElementLibrary.xcassets/UINavigationController.imageset/UINavigationController_32_Normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Resources/ElementLibrary.xcassets/UINavigationController.imageset/UINavigationController_32_Normal.png -------------------------------------------------------------------------------- /Sources/Inspector/Resources/ElementLibrary.xcassets/UINavigationController.imageset/UINavigationController_32_Normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Resources/ElementLibrary.xcassets/UINavigationController.imageset/UINavigationController_32_Normal@2x.png -------------------------------------------------------------------------------- /Sources/Inspector/Resources/ElementLibrary.xcassets/UIPageViewController.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Resources/ElementLibrary.xcassets/UIPageViewController.imageset/Contents.json -------------------------------------------------------------------------------- /Sources/Inspector/Resources/ElementLibrary.xcassets/UIPageViewController.imageset/UIPageViewController_32_Normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Resources/ElementLibrary.xcassets/UIPageViewController.imageset/UIPageViewController_32_Normal.png -------------------------------------------------------------------------------- /Sources/Inspector/Resources/ElementLibrary.xcassets/UIPageViewController.imageset/UIPageViewController_32_Normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Resources/ElementLibrary.xcassets/UIPageViewController.imageset/UIPageViewController_32_Normal@2x.png -------------------------------------------------------------------------------- /Sources/Inspector/Resources/ElementLibrary.xcassets/UISearchController.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Resources/ElementLibrary.xcassets/UISearchController.imageset/Contents.json -------------------------------------------------------------------------------- /Sources/Inspector/Resources/ElementLibrary.xcassets/UISearchController.imageset/UISearchController_32_Normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Resources/ElementLibrary.xcassets/UISearchController.imageset/UISearchController_32_Normal.png -------------------------------------------------------------------------------- /Sources/Inspector/Resources/ElementLibrary.xcassets/UISearchController.imageset/UISearchController_32_Normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Resources/ElementLibrary.xcassets/UISearchController.imageset/UISearchController_32_Normal@2x.png -------------------------------------------------------------------------------- /Sources/Inspector/Resources/ElementLibrary.xcassets/UITabBarController.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Resources/ElementLibrary.xcassets/UITabBarController.imageset/Contents.json -------------------------------------------------------------------------------- /Sources/Inspector/Resources/ElementLibrary.xcassets/UITabBarController.imageset/UITabBarController_32_Normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Resources/ElementLibrary.xcassets/UITabBarController.imageset/UITabBarController_32_Normal.png -------------------------------------------------------------------------------- /Sources/Inspector/Resources/ElementLibrary.xcassets/UITabBarController.imageset/UITabBarController_32_Normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Resources/ElementLibrary.xcassets/UITabBarController.imageset/UITabBarController_32_Normal@2x.png -------------------------------------------------------------------------------- /Sources/Inspector/Resources/ElementLibrary.xcassets/UITableViewController.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Resources/ElementLibrary.xcassets/UITableViewController.imageset/Contents.json -------------------------------------------------------------------------------- /Sources/Inspector/Resources/ElementLibrary.xcassets/UITableViewController.imageset/UITableViewController_32_Normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Resources/ElementLibrary.xcassets/UITableViewController.imageset/UITableViewController_32_Normal.png -------------------------------------------------------------------------------- /Sources/Inspector/Resources/ElementLibrary.xcassets/UITableViewController.imageset/UITableViewController_32_Normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Resources/ElementLibrary.xcassets/UITableViewController.imageset/UITableViewController_32_Normal@2x.png -------------------------------------------------------------------------------- /Sources/Inspector/Resources/Symbols.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Resources/Symbols.xcassets/Contents.json -------------------------------------------------------------------------------- /Sources/Inspector/Resources/Symbols.xcassets/Generic/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Resources/Symbols.xcassets/Generic/Contents.json -------------------------------------------------------------------------------- /Sources/Inspector/Resources/Symbols.xcassets/Generic/binoculars.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Resources/Symbols.xcassets/Generic/binoculars.imageset/Contents.json -------------------------------------------------------------------------------- /Sources/Inspector/Resources/Symbols.xcassets/Generic/binoculars.imageset/binoculars.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Resources/Symbols.xcassets/Generic/binoculars.imageset/binoculars.pdf -------------------------------------------------------------------------------- /Sources/Inspector/Resources/Symbols.xcassets/Generic/binocularsFill.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Resources/Symbols.xcassets/Generic/binocularsFill.imageset/Contents.json -------------------------------------------------------------------------------- /Sources/Inspector/Resources/Symbols.xcassets/Generic/binocularsFill.imageset/binoculars.fill.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Resources/Symbols.xcassets/Generic/binocularsFill.imageset/binoculars.fill.pdf -------------------------------------------------------------------------------- /Sources/Inspector/Resources/Symbols.xcassets/Generic/collapse-mirrored.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Resources/Symbols.xcassets/Generic/collapse-mirrored.imageset/Contents.json -------------------------------------------------------------------------------- /Sources/Inspector/Resources/Symbols.xcassets/Generic/collapse-mirrored.imageset/collapse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Resources/Symbols.xcassets/Generic/collapse-mirrored.imageset/collapse.png -------------------------------------------------------------------------------- /Sources/Inspector/Resources/Symbols.xcassets/Generic/collapse.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Resources/Symbols.xcassets/Generic/collapse.imageset/Contents.json -------------------------------------------------------------------------------- /Sources/Inspector/Resources/Symbols.xcassets/Generic/collapse.imageset/collapse.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Resources/Symbols.xcassets/Generic/collapse.imageset/collapse.pdf -------------------------------------------------------------------------------- /Sources/Inspector/Resources/Symbols.xcassets/Generic/ellipsisCircle.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Resources/Symbols.xcassets/Generic/ellipsisCircle.imageset/Contents.json -------------------------------------------------------------------------------- /Sources/Inspector/Resources/Symbols.xcassets/Generic/ellipsisCircle.imageset/ellipsisCircle.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Resources/Symbols.xcassets/Generic/ellipsisCircle.imageset/ellipsisCircle.pdf -------------------------------------------------------------------------------- /Sources/Inspector/Resources/Symbols.xcassets/Generic/ellipsisCircleFill.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Resources/Symbols.xcassets/Generic/ellipsisCircleFill.imageset/Contents.json -------------------------------------------------------------------------------- /Sources/Inspector/Resources/Symbols.xcassets/Generic/ellipsisCircleFill.imageset/ellipsisCircleFill.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Resources/Symbols.xcassets/Generic/ellipsisCircleFill.imageset/ellipsisCircleFill.pdf -------------------------------------------------------------------------------- /Sources/Inspector/Resources/Symbols.xcassets/Generic/exclamationmark.triangle.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Resources/Symbols.xcassets/Generic/exclamationmark.triangle.imageset/Contents.json -------------------------------------------------------------------------------- /Sources/Inspector/Resources/Symbols.xcassets/Generic/exclamationmark.triangle.imageset/exclamationmark.triangle.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Resources/Symbols.xcassets/Generic/exclamationmark.triangle.imageset/exclamationmark.triangle.pdf -------------------------------------------------------------------------------- /Sources/Inspector/Resources/Symbols.xcassets/Generic/expand.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Resources/Symbols.xcassets/Generic/expand.imageset/Contents.json -------------------------------------------------------------------------------- /Sources/Inspector/Resources/Symbols.xcassets/Generic/expand.imageset/expand.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Resources/Symbols.xcassets/Generic/expand.imageset/expand.pdf -------------------------------------------------------------------------------- /Sources/Inspector/Resources/Symbols.xcassets/Generic/info.circle.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Resources/Symbols.xcassets/Generic/info.circle.imageset/Contents.json -------------------------------------------------------------------------------- /Sources/Inspector/Resources/Symbols.xcassets/Generic/info.circle.imageset/info.circle.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Resources/Symbols.xcassets/Generic/info.circle.imageset/info.circle.pdf -------------------------------------------------------------------------------- /Sources/Inspector/Resources/Symbols.xcassets/Layer Actions/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Resources/Symbols.xcassets/Layer Actions/Contents.json -------------------------------------------------------------------------------- /Sources/Inspector/Resources/Symbols.xcassets/Layer Actions/LayerAction-empty.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Resources/Symbols.xcassets/Layer Actions/LayerAction-empty.imageset/Contents.json -------------------------------------------------------------------------------- /Sources/Inspector/Resources/Symbols.xcassets/Layer Actions/LayerAction-empty.imageset/LayerAction-empty.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Resources/Symbols.xcassets/Layer Actions/LayerAction-empty.imageset/LayerAction-empty.pdf -------------------------------------------------------------------------------- /Sources/Inspector/Resources/Symbols.xcassets/Layer Actions/LayerAction-hidden.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Resources/Symbols.xcassets/Layer Actions/LayerAction-hidden.imageset/Contents.json -------------------------------------------------------------------------------- /Sources/Inspector/Resources/Symbols.xcassets/Layer Actions/LayerAction-hidden.imageset/LayerAction-hidden.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Resources/Symbols.xcassets/Layer Actions/LayerAction-hidden.imageset/LayerAction-hidden.pdf -------------------------------------------------------------------------------- /Sources/Inspector/Resources/Symbols.xcassets/Layer Actions/LayerAction-hide-all.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Resources/Symbols.xcassets/Layer Actions/LayerAction-hide-all.imageset/Contents.json -------------------------------------------------------------------------------- /Sources/Inspector/Resources/Symbols.xcassets/Layer Actions/LayerAction-hide-all.imageset/LayerAction-hide-all Copy.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Resources/Symbols.xcassets/Layer Actions/LayerAction-hide-all.imageset/LayerAction-hide-all Copy.pdf -------------------------------------------------------------------------------- /Sources/Inspector/Resources/Symbols.xcassets/Layer Actions/LayerAction-show-all.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Resources/Symbols.xcassets/Layer Actions/LayerAction-show-all.imageset/Contents.json -------------------------------------------------------------------------------- /Sources/Inspector/Resources/Symbols.xcassets/Layer Actions/LayerAction-show-all.imageset/LayerAction-show-all Copy.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Resources/Symbols.xcassets/Layer Actions/LayerAction-show-all.imageset/LayerAction-show-all Copy.pdf -------------------------------------------------------------------------------- /Sources/Inspector/Resources/Symbols.xcassets/Layer Actions/LayerAction-visible.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Resources/Symbols.xcassets/Layer Actions/LayerAction-visible.imageset/Contents.json -------------------------------------------------------------------------------- /Sources/Inspector/Resources/Symbols.xcassets/Layer Actions/LayerAction-visible.imageset/LayerAction-show-alt.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Resources/Symbols.xcassets/Layer Actions/LayerAction-visible.imageset/LayerAction-show-alt.pdf -------------------------------------------------------------------------------- /Sources/Inspector/Resources/Symbols.xcassets/Panel/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Resources/Symbols.xcassets/Panel/Contents.json -------------------------------------------------------------------------------- /Sources/Inspector/Resources/Symbols.xcassets/Panel/identityPanel.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Resources/Symbols.xcassets/Panel/identityPanel.imageset/Contents.json -------------------------------------------------------------------------------- /Sources/Inspector/Resources/Symbols.xcassets/Panel/identityPanel.imageset/identityPanel.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Resources/Symbols.xcassets/Panel/identityPanel.imageset/identityPanel.pdf -------------------------------------------------------------------------------- /Sources/Inspector/Resources/Symbols.xcassets/empty.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Resources/Symbols.xcassets/empty.imageset/Contents.json -------------------------------------------------------------------------------- /Sources/Inspector/Resources/Symbols.xcassets/empty.imageset/Empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Resources/Symbols.xcassets/empty.imageset/Empty.png -------------------------------------------------------------------------------- /Sources/Inspector/Strings/Texts.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/Strings/Texts.swift -------------------------------------------------------------------------------- /Sources/Inspector/SwiftUI/DeviceShakeModifier.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/SwiftUI/DeviceShakeModifier.swift -------------------------------------------------------------------------------- /Sources/Inspector/SwiftUI/InspectorModifier.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/SwiftUI/InspectorModifier.swift -------------------------------------------------------------------------------- /Sources/Inspector/SwiftUI/InspectorUI.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/SwiftUI/InspectorUI.swift -------------------------------------------------------------------------------- /Sources/Inspector/TransitionCoordinator/ElementInspectorSlidingPanelAnimator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/TransitionCoordinator/ElementInspectorSlidingPanelAnimator.swift -------------------------------------------------------------------------------- /Sources/Inspector/ViewHierarchy/Coordinators/ViewHierarchyCoordinator+AsyncOperationProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/ViewHierarchy/Coordinators/ViewHierarchyCoordinator+AsyncOperationProtocol.swift -------------------------------------------------------------------------------- /Sources/Inspector/ViewHierarchy/Coordinators/ViewHierarchyCoordinator+LayerCommandProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/ViewHierarchy/Coordinators/ViewHierarchyCoordinator+LayerCommandProtocol.swift -------------------------------------------------------------------------------- /Sources/Inspector/ViewHierarchy/Coordinators/ViewHierarchyCoordinator+LayerConstructorProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/ViewHierarchy/Coordinators/ViewHierarchyCoordinator+LayerConstructorProtocol.swift -------------------------------------------------------------------------------- /Sources/Inspector/ViewHierarchy/Coordinators/ViewHierarchyCoordinator+LayerViewDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/ViewHierarchy/Coordinators/ViewHierarchyCoordinator+LayerViewDelegate.swift -------------------------------------------------------------------------------- /Sources/Inspector/ViewHierarchy/Coordinators/ViewHierarchyCoordinator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/ViewHierarchy/Coordinators/ViewHierarchyCoordinator.swift -------------------------------------------------------------------------------- /Sources/Inspector/ViewHierarchy/Views/ElementNameView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/ViewHierarchy/Views/ElementNameView.swift -------------------------------------------------------------------------------- /Sources/Inspector/ViewHierarchy/Views/HighlightView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/ViewHierarchy/Views/HighlightView.swift -------------------------------------------------------------------------------- /Sources/Inspector/ViewHierarchy/Views/LayerView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/ViewHierarchy/Views/LayerView.swift -------------------------------------------------------------------------------- /Sources/Inspector/ViewHierarchy/Views/LayerViewComponent.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/ViewHierarchy/Views/LayerViewComponent.swift -------------------------------------------------------------------------------- /Sources/Inspector/ViewHierarchy/Views/LoaderView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/ViewHierarchy/Views/LoaderView.swift -------------------------------------------------------------------------------- /Sources/Inspector/ViewHierarchy/Views/WireframeView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Sources/Inspector/ViewHierarchy/Views/WireframeView.swift -------------------------------------------------------------------------------- /Tests/InspectorTests/InspectorTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Tests/InspectorTests/InspectorTests.swift -------------------------------------------------------------------------------- /Tests/InspectorTests/XCTestManifests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Tests/InspectorTests/XCTestManifests.swift -------------------------------------------------------------------------------- /Tests/LinuxMain.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipedro/Inspector/HEAD/Tests/LinuxMain.swift --------------------------------------------------------------------------------