lottie-ios 4.2.0 → 4.3.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.github/workflows/main.yml +117 -11
- package/Gemfile +1 -0
- package/Gemfile.lock +5 -0
- package/Lottie.xcodeproj/project.pbxproj +1546 -194
- package/Lottie.xcodeproj/project.xcworkspace/xcuserdata/calstephens.xcuserdatad/UserInterfaceState.xcuserstate +0 -0
- package/Lottie.xcodeproj/xcshareddata/xcschemes/Lottie (iOS).xcscheme +1 -1
- package/Lottie.xcodeproj/xcshareddata/xcschemes/Lottie (macOS).xcscheme +1 -1
- package/Lottie.xcodeproj/xcshareddata/xcschemes/Lottie (tvOS).xcscheme +4 -5
- package/Lottie.xcodeproj/xcshareddata/xcschemes/Lottie (visionOS).xcscheme +66 -0
- package/Lottie.xcodeproj/xcuserdata/calstephens.xcuserdatad/xcschemes/xcschememanagement.plist +18 -0
- package/Lottie.xcworkspace/xcshareddata/swiftpm/Package.resolved +2 -11
- package/Lottie.xcworkspace/xcuserdata/calstephens.xcuserdatad/UserInterfaceState.xcuserstate +0 -0
- package/Lottie.xcworkspace/xcuserdata/calstephens.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist +374 -116
- package/Lottie.xcworkspace/xcuserdata/calstephens.xcuserdatad/xcdebugger/Expressions.xcexplist +16 -5
- package/Package.resolved +2 -2
- package/Package.swift +16 -9
- package/README.md +2 -2
- package/Rakefile +122 -25
- package/Sources/Private/CoreAnimation/Animations/CALayer+addAnimation.swift +3 -4
- package/Sources/Private/CoreAnimation/Animations/DropShadowAnimation.swift +160 -0
- package/Sources/Private/CoreAnimation/Animations/LayerProperty.swift +83 -10
- package/Sources/Private/CoreAnimation/Animations/TransformAnimations.swift +85 -79
- package/Sources/Private/CoreAnimation/CoreAnimationLayer.swift +11 -7
- package/Sources/Private/CoreAnimation/Extensions/Keyframes+combined.swift +67 -6
- package/Sources/Private/CoreAnimation/Layers/AnimationLayer.swift +21 -2
- package/Sources/Private/CoreAnimation/Layers/BaseCompositionLayer.swift +9 -0
- package/Sources/Private/CoreAnimation/Layers/ImageLayer.swift +1 -0
- package/Sources/Private/CoreAnimation/Layers/LayerModel+makeAnimationLayer.swift +1 -1
- package/Sources/Private/CoreAnimation/Layers/RepeaterLayer.swift +2 -0
- package/Sources/Private/CoreAnimation/Layers/ShapeLayer.swift +11 -13
- package/Sources/Private/CoreAnimation/Layers/SolidLayer.swift +20 -5
- package/Sources/Private/CoreAnimation/Layers/TextLayer.swift +13 -3
- package/Sources/Private/CoreAnimation/ValueProviderStore.swift +6 -4
- package/Sources/Private/EmbeddedLibraries/EpoxyCore/Diffing/Collection+Diff.swift +263 -0
- package/Sources/Private/EmbeddedLibraries/EpoxyCore/Diffing/Diffable.swift +18 -0
- package/Sources/Private/EmbeddedLibraries/EpoxyCore/Diffing/DiffableSection.swift +16 -0
- package/Sources/Private/EmbeddedLibraries/EpoxyCore/Diffing/IndexChangeset.swift +187 -0
- package/Sources/Private/EmbeddedLibraries/EpoxyCore/Diffing/SectionedChangeset.swift +32 -0
- package/Sources/Private/EmbeddedLibraries/EpoxyCore/Logging/EpoxyLogger.swift +99 -0
- package/Sources/Private/EmbeddedLibraries/EpoxyCore/Model/CallbackContextEpoxyModeled.swift +8 -0
- package/Sources/Private/EmbeddedLibraries/EpoxyCore/Model/EpoxyModelArrayBuilder.swift +48 -0
- package/Sources/Private/EmbeddedLibraries/EpoxyCore/Model/EpoxyModelProperty.swift +158 -0
- package/Sources/Private/EmbeddedLibraries/EpoxyCore/Model/EpoxyModelStorage.swift +88 -0
- package/Sources/Private/EmbeddedLibraries/EpoxyCore/Model/EpoxyModeled.swift +54 -0
- package/Sources/Private/EmbeddedLibraries/EpoxyCore/Model/Internal/AnyEpoxyModelProperty.swift +29 -0
- package/Sources/Private/EmbeddedLibraries/EpoxyCore/Model/Internal/ClassReference.swift +39 -0
- package/Sources/Private/EmbeddedLibraries/EpoxyCore/Model/Providers/AnimatedProviding.swift +10 -0
- package/Sources/Private/EmbeddedLibraries/EpoxyCore/Model/Providers/DataIDProviding.swift +57 -0
- package/Sources/Private/EmbeddedLibraries/EpoxyCore/Model/Providers/DidDisplayProviding.swift +41 -0
- package/Sources/Private/EmbeddedLibraries/EpoxyCore/Model/Providers/DidEndDisplayingProviding.swift +41 -0
- package/Sources/Private/EmbeddedLibraries/EpoxyCore/Model/Providers/DidSelectProviding.swift +36 -0
- package/Sources/Private/EmbeddedLibraries/EpoxyCore/Model/Providers/ErasedContentProviding.swift +49 -0
- package/Sources/Private/EmbeddedLibraries/EpoxyCore/Model/Providers/MakeViewProviding.swift +60 -0
- package/Sources/Private/EmbeddedLibraries/EpoxyCore/Model/Providers/SetBehaviorsProviding.swift +38 -0
- package/Sources/Private/EmbeddedLibraries/EpoxyCore/Model/Providers/SetContentProviding.swift +38 -0
- package/Sources/Private/EmbeddedLibraries/EpoxyCore/Model/Providers/StyleIDProviding.swift +37 -0
- package/Sources/Private/EmbeddedLibraries/EpoxyCore/Model/Providers/TraitCollectionProviding.swift +14 -0
- package/Sources/Private/EmbeddedLibraries/EpoxyCore/Model/Providers/ViewDifferentiatorProviding.swift +34 -0
- package/Sources/Private/EmbeddedLibraries/EpoxyCore/Model/Providers/ViewProviding.swift +13 -0
- package/Sources/Private/EmbeddedLibraries/EpoxyCore/Model/Providers/WillDisplayProviding.swift +41 -0
- package/Sources/Private/EmbeddedLibraries/EpoxyCore/Model/ViewEpoxyModeled.swift +10 -0
- package/Sources/Private/EmbeddedLibraries/EpoxyCore/README.md +31 -0
- package/Sources/Private/EmbeddedLibraries/EpoxyCore/SwiftUI/EpoxySwiftUIHostingController.swift +46 -0
- package/Sources/Private/EmbeddedLibraries/EpoxyCore/SwiftUI/EpoxySwiftUIHostingView.swift +391 -0
- package/Sources/Private/EmbeddedLibraries/EpoxyCore/SwiftUI/EpoxySwiftUIIntrinsicContentSizeInvalidator.swift +44 -0
- package/Sources/Private/EmbeddedLibraries/EpoxyCore/SwiftUI/EpoxySwiftUILayoutMargins.swift +51 -0
- package/Sources/Private/EmbeddedLibraries/EpoxyCore/SwiftUI/EpoxyableView+SwiftUIView.swift +172 -0
- package/Sources/Private/EmbeddedLibraries/EpoxyCore/SwiftUI/LayoutUtilities/MeasuringViewRepresentable.swift +128 -0
- package/Sources/Private/EmbeddedLibraries/EpoxyCore/SwiftUI/LayoutUtilities/SwiftUIMeasurementContainer.swift +452 -0
- package/Sources/Private/EmbeddedLibraries/EpoxyCore/SwiftUI/SwiftUIView.swift +148 -0
- package/Sources/Private/EmbeddedLibraries/EpoxyCore/SwiftUI/UIView+SwiftUIView.swift +40 -0
- package/Sources/Private/EmbeddedLibraries/EpoxyCore/SwiftUI/UIViewConfiguringSwiftUIView.swift +43 -0
- package/Sources/Private/EmbeddedLibraries/EpoxyCore/Views/BehaviorsConfigurableView.swift +45 -0
- package/Sources/Private/EmbeddedLibraries/EpoxyCore/Views/ContentConfigurableView.swift +36 -0
- package/Sources/Private/EmbeddedLibraries/EpoxyCore/Views/EpoxyableView.swift +5 -0
- package/Sources/Private/EmbeddedLibraries/EpoxyCore/Views/StyledView.swift +42 -0
- package/Sources/Private/EmbeddedLibraries/EpoxyCore/Views/ViewType.swift +51 -0
- package/Sources/Private/EmbeddedLibraries/README.md +27 -0
- package/Sources/Private/{Model/DotLottie → EmbeddedLibraries}/ZipFoundation/Archive+BackingConfiguration.swift +4 -4
- package/Sources/Private/{Model/DotLottie → EmbeddedLibraries}/ZipFoundation/Archive+MemoryFile.swift +2 -2
- package/Sources/Private/{Model/DotLottie → EmbeddedLibraries}/ZipFoundation/Archive+Writing.swift +4 -4
- package/Sources/Private/{Model/DotLottie → EmbeddedLibraries}/ZipFoundation/Archive.swift +8 -7
- package/Sources/Private/{Model/DotLottie → EmbeddedLibraries}/ZipFoundation/Data+Compression.swift +5 -5
- package/Sources/Private/{Model/DotLottie → EmbeddedLibraries}/ZipFoundation/FileManager+ZIP.swift +4 -4
- package/Sources/Private/MainThread/LayerContainers/CompLayers/ImageCompositionLayer.swift +6 -0
- package/Sources/Private/MainThread/LayerContainers/CompLayers/MaskContainerLayer.swift +3 -1
- package/Sources/Private/MainThread/LayerContainers/CompLayers/PreCompositionLayer.swift +18 -5
- package/Sources/Private/MainThread/LayerContainers/CompLayers/TextCompositionLayer.swift +31 -3
- package/Sources/Private/MainThread/LayerContainers/MainThreadAnimationLayer.swift +33 -8
- package/Sources/Private/MainThread/LayerContainers/Utility/CachedImageProvider.swift +8 -1
- package/Sources/Private/MainThread/LayerContainers/Utility/CompositionLayersInitializer.swift +13 -4
- package/Sources/Private/MainThread/LayerContainers/Utility/LayerFontProvider.swift +2 -2
- package/Sources/Private/MainThread/LayerContainers/Utility/LayerImageProvider.swift +1 -0
- package/Sources/Private/MainThread/LayerContainers/Utility/LayerTextProvider.swift +4 -4
- package/Sources/Private/MainThread/NodeRenderSystem/NodeProperties/Protocols/NodePropertyMap.swift +1 -1
- package/Sources/Private/MainThread/NodeRenderSystem/Nodes/ModifierNodes/TrimPathNode.swift +3 -1
- package/Sources/Private/MainThread/NodeRenderSystem/Nodes/OutputNodes/Renderables/GradientFillRenderer.swift +2 -1
- package/Sources/Private/MainThread/NodeRenderSystem/Nodes/OutputNodes/Renderables/LegacyGradientFillRenderer.swift +2 -1
- package/Sources/Private/MainThread/NodeRenderSystem/Nodes/RenderNodes/GradientFillNode.swift +1 -1
- package/Sources/Private/MainThread/NodeRenderSystem/Nodes/RenderNodes/GradientStrokeNode.swift +2 -2
- package/Sources/Private/MainThread/NodeRenderSystem/Nodes/RenderNodes/StrokeNode.swift +1 -1
- package/Sources/Private/MainThread/NodeRenderSystem/Nodes/Text/TextAnimatorNode.swift +1 -1
- package/Sources/Private/MainThread/NodeRenderSystem/RenderLayers/ShapeContainerLayer.swift +6 -2
- package/Sources/Private/Model/Assets/Asset.swift +8 -0
- package/Sources/Private/Model/Assets/AssetLibrary.swift +2 -2
- package/Sources/Private/Model/Assets/ImageAsset.swift +3 -3
- package/Sources/Private/Model/DotLottie/DotLottieAnimation.swift +16 -2
- package/Sources/Private/Model/DotLottie/DotLottieImageProvider.swift +20 -7
- package/Sources/Private/Model/Extensions/KeyedDecodingContainerExtensions.swift +26 -0
- package/Sources/Private/Model/Keyframes/KeyframeGroup.swift +8 -5
- package/Sources/Private/Model/LayerEffects/DropShadowEffect.swift +45 -0
- package/Sources/Private/Model/LayerEffects/EffectValues/ColorEffectValue.swift +38 -0
- package/Sources/Private/Model/LayerEffects/EffectValues/EffectValue.swift +98 -0
- package/Sources/Private/Model/LayerEffects/EffectValues/Vector1DEffectValue.swift +38 -0
- package/Sources/Private/Model/LayerEffects/LayerEffect.swift +103 -0
- package/Sources/Private/Model/LayerStyles/DropShadowStyle.swift +72 -0
- package/Sources/Private/Model/LayerStyles/LayerStyle.swift +85 -0
- package/Sources/Private/Model/Layers/LayerModel.swift +27 -0
- package/Sources/Private/Model/Objects/Marker.swift +1 -1
- package/Sources/Private/Model/Objects/Transform.swift +1 -2
- package/Sources/Private/Model/ShapeItems/GradientFill.swift +1 -1
- package/Sources/Private/Model/ShapeItems/GradientStroke.swift +2 -2
- package/Sources/Private/Model/ShapeItems/Merge.swift +1 -1
- package/Sources/Private/Model/ShapeItems/ShapeItem.swift +31 -26
- package/Sources/Private/Model/ShapeItems/ShapeTransform.swift +0 -9
- package/Sources/Private/Model/ShapeItems/Star.swift +1 -1
- package/Sources/Private/Model/Text/Font.swift +2 -2
- package/Sources/Private/Model/Text/Glyph.swift +1 -1
- package/Sources/Private/RootAnimationLayer.swift +2 -2
- package/Sources/Private/Utility/Debugging/LayerDebugging.swift +3 -1
- package/Sources/Private/Utility/Extensions/AnimationKeypathExtension.swift +32 -2
- package/Sources/Private/Utility/Helpers/AnimationContext.swift +4 -2
- package/Sources/Private/Utility/Helpers/AnyEquatable.swift +24 -0
- package/Sources/Private/Utility/Helpers/Binding+Map.swift +18 -0
- package/Sources/Private/Utility/Helpers/View+ValueChanged.swift +20 -0
- package/Sources/Private/Utility/LottieAnimationSource.swift +41 -0
- package/Sources/Private/Utility/Primitives/BezierPath.swift +2 -2
- package/Sources/Private/Utility/Primitives/BezierPathRoundExtension.swift +2 -2
- package/Sources/Private/Utility/Primitives/VectorsExtensions.swift +1 -1
- package/Sources/Public/Animation/LottieAnimation.swift +21 -2
- package/Sources/Public/Animation/LottieAnimationLayer.swift +1464 -0
- package/Sources/Public/Animation/LottieAnimationView.swift +259 -736
- package/Sources/Public/Animation/LottiePlaybackMode.swift +117 -0
- package/Sources/Public/Animation/LottieView.swift +462 -0
- package/Sources/Public/AnimationCache/AnimationCacheProvider.swift +2 -1
- package/Sources/Public/AnimationCache/DefaultAnimationCache.swift +5 -6
- package/Sources/Public/Configuration/DecodingStrategy.swift +15 -0
- package/Sources/Public/Configuration/LottieConfiguration.swift +47 -0
- package/Sources/Public/Configuration/ReducedMotionOption.swift +114 -0
- package/Sources/Public/{LottieConfiguration.swift → Configuration/RenderingEngineOption.swift} +2 -57
- package/Sources/Public/{iOS → Controls}/AnimatedButton.swift +56 -13
- package/Sources/Public/{iOS → Controls}/AnimatedControl.swift +80 -8
- package/Sources/Public/{iOS → Controls}/AnimatedSwitch.swift +71 -31
- package/Sources/Public/Controls/LottieButton.swift +122 -0
- package/Sources/Public/Controls/LottieSwitch.swift +144 -0
- package/Sources/Public/Controls/LottieViewType.swift +79 -0
- package/Sources/Public/DotLottie/DotLottieConfiguration.swift +24 -0
- package/Sources/Public/DotLottie/DotLottieFile.swift +21 -6
- package/Sources/Public/DotLottie/DotLottieFileHelpers.swift +79 -0
- package/Sources/Public/DynamicProperties/AnimationKeypath.swift +11 -1
- package/Sources/Public/DynamicProperties/ValueProviders/ColorValueProvider.swift +14 -0
- package/Sources/Public/DynamicProperties/ValueProviders/FloatValueProvider.swift +13 -0
- package/Sources/Public/DynamicProperties/ValueProviders/GradientValueProvider.swift +22 -5
- package/Sources/Public/DynamicProperties/ValueProviders/PointValueProvider.swift +14 -0
- package/Sources/Public/DynamicProperties/ValueProviders/SizeValueProvider.swift +13 -0
- package/Sources/Public/FontProvider/AnimationFontProvider.swift +8 -0
- package/Sources/Public/ImageProvider/AnimationImageProvider.swift +24 -0
- package/Sources/Public/Keyframes/Keyframe.swift +6 -0
- package/Sources/Public/Primitives/Vectors.swift +2 -2
- package/Sources/Public/TextProvider/AnimationTextProvider.swift +79 -6
- package/Sources/Public/iOS/AnimationSubview.swift +1 -1
- package/Sources/Public/iOS/BundleImageProvider.swift +16 -2
- package/Sources/Public/iOS/Compatibility/CompatibleAnimationView.swift +6 -4
- package/Sources/Public/iOS/FilepathImageProvider.swift +22 -3
- package/Sources/Public/iOS/LottieAnimationViewBase.swift +7 -1
- package/Sources/Public/macOS/BundleImageProvider.macOS.swift +15 -1
- package/Sources/Public/macOS/FilepathImageProvider.macOS.swift +21 -2
- package/lottie-ios.podspec +2 -1
- package/package.json +1 -1
- package/Sources/Private/Model/DotLottie/DotLottieConfiguration.swift +0 -15
- /package/Sources/Private/{Model/DotLottie → EmbeddedLibraries}/ZipFoundation/Archive+Helpers.swift +0 -0
- /package/Sources/Private/{Model/DotLottie → EmbeddedLibraries}/ZipFoundation/Archive+Progress.swift +0 -0
- /package/Sources/Private/{Model/DotLottie → EmbeddedLibraries}/ZipFoundation/Archive+Reading.swift +0 -0
- /package/Sources/Private/{Model/DotLottie → EmbeddedLibraries}/ZipFoundation/Archive+ReadingDeprecated.swift +0 -0
- /package/Sources/Private/{Model/DotLottie → EmbeddedLibraries}/ZipFoundation/Archive+WritingDeprecated.swift +0 -0
- /package/Sources/Private/{Model/DotLottie → EmbeddedLibraries}/ZipFoundation/Archive+ZIP64.swift +0 -0
- /package/Sources/Private/{Model/DotLottie → EmbeddedLibraries}/ZipFoundation/Data+CompressionDeprecated.swift +0 -0
- /package/Sources/Private/{Model/DotLottie → EmbeddedLibraries}/ZipFoundation/Data+Serialization.swift +0 -0
- /package/Sources/Private/{Model/DotLottie → EmbeddedLibraries}/ZipFoundation/Entry+Serialization.swift +0 -0
- /package/Sources/Private/{Model/DotLottie → EmbeddedLibraries}/ZipFoundation/Entry+ZIP64.swift +0 -0
- /package/Sources/Private/{Model/DotLottie → EmbeddedLibraries}/ZipFoundation/Entry.swift +0 -0
- /package/Sources/Private/{Model/DotLottie → EmbeddedLibraries}/ZipFoundation/README.md +0 -0
- /package/Sources/Private/{Model/DotLottie → EmbeddedLibraries}/ZipFoundation/URL+ZIP.swift +0 -0
package/Lottie.xcworkspace/xcuserdata/calstephens.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist
CHANGED
|
@@ -55,112 +55,252 @@
|
|
|
55
55
|
<BreakpointProxy
|
|
56
56
|
BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint">
|
|
57
57
|
<BreakpointContent
|
|
58
|
-
uuid = "
|
|
58
|
+
uuid = "4801815C-7DE8-430B-B7F8-900C71CB5F58"
|
|
59
59
|
shouldBeEnabled = "No"
|
|
60
|
+
condition = "customizableProperty.name.map { $0.rawValue } == ["Position"]"
|
|
60
61
|
ignoreCount = "0"
|
|
61
62
|
continueAfterRunningActions = "No"
|
|
62
|
-
filePath = "Sources/Private/CoreAnimation/Animations/
|
|
63
|
+
filePath = "Sources/Private/CoreAnimation/Animations/CALayer+addAnimation.swift"
|
|
63
64
|
startingColumnNumber = "9223372036854775807"
|
|
64
65
|
endingColumnNumber = "9223372036854775807"
|
|
65
|
-
startingLineNumber = "
|
|
66
|
-
endingLineNumber = "
|
|
67
|
-
landmarkName = "
|
|
68
|
-
landmarkType = "
|
|
66
|
+
startingLineNumber = "104"
|
|
67
|
+
endingLineNumber = "104"
|
|
68
|
+
landmarkName = "CALayer"
|
|
69
|
+
landmarkType = "21">
|
|
70
|
+
<Locations>
|
|
71
|
+
<Location
|
|
72
|
+
uuid = "4801815C-7DE8-430B-B7F8-900C71CB5F58 - a53351c05a040cfb"
|
|
73
|
+
shouldBeEnabled = "Yes"
|
|
74
|
+
ignoreCount = "0"
|
|
75
|
+
continueAfterRunningActions = "No"
|
|
76
|
+
symbolName = "__C.CALayer.customizedAnimation<τ_0_0>(for: Lottie.LayerProperty<τ_0_0>, context: Lottie.LayerAnimationContext) throws -> Swift.Optional<__C.CAPropertyAnimation>"
|
|
77
|
+
moduleName = "Lottie"
|
|
78
|
+
usesParentBreakpointCondition = "Yes"
|
|
79
|
+
urlString = "file:///Users/calstephens/Documents/lottie/Sources/Private/CoreAnimation/Animations/CALayer+addAnimation.swift"
|
|
80
|
+
startingColumnNumber = "9223372036854775807"
|
|
81
|
+
endingColumnNumber = "9223372036854775807"
|
|
82
|
+
startingLineNumber = "106"
|
|
83
|
+
endingLineNumber = "106"
|
|
84
|
+
offsetFromSymbolStart = "156">
|
|
85
|
+
</Location>
|
|
86
|
+
<Location
|
|
87
|
+
uuid = "4801815C-7DE8-430B-B7F8-900C71CB5F58 - a53351c05a040cfb"
|
|
88
|
+
shouldBeEnabled = "Yes"
|
|
89
|
+
ignoreCount = "0"
|
|
90
|
+
continueAfterRunningActions = "No"
|
|
91
|
+
symbolName = "__C.CALayer.customizedAnimation<τ_0_0>(for: Lottie.LayerProperty<τ_0_0>, context: Lottie.LayerAnimationContext) throws -> Swift.Optional<__C.CAPropertyAnimation>"
|
|
92
|
+
moduleName = "Lottie"
|
|
93
|
+
usesParentBreakpointCondition = "Yes"
|
|
94
|
+
urlString = "file:///Users/calstephens/Documents/lottie/Sources/Private/CoreAnimation/Animations/CALayer+addAnimation.swift"
|
|
95
|
+
startingColumnNumber = "9223372036854775807"
|
|
96
|
+
endingColumnNumber = "9223372036854775807"
|
|
97
|
+
startingLineNumber = "106"
|
|
98
|
+
endingLineNumber = "106"
|
|
99
|
+
offsetFromSymbolStart = "220">
|
|
100
|
+
</Location>
|
|
101
|
+
</Locations>
|
|
69
102
|
</BreakpointContent>
|
|
70
103
|
</BreakpointProxy>
|
|
71
104
|
<BreakpointProxy
|
|
72
105
|
BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint">
|
|
73
106
|
<BreakpointContent
|
|
74
|
-
uuid = "
|
|
75
|
-
shouldBeEnabled = "
|
|
107
|
+
uuid = "F52F692F-1F08-4469-8EE8-C10D7FC89847"
|
|
108
|
+
shouldBeEnabled = "No"
|
|
109
|
+
condition = "context.currentKeypath.fullPath.contains("Group 1")"
|
|
76
110
|
ignoreCount = "0"
|
|
77
111
|
continueAfterRunningActions = "No"
|
|
78
|
-
filePath = "Sources/Private/
|
|
112
|
+
filePath = "Sources/Private/CoreAnimation/Layers/ShapeItemLayer.swift"
|
|
79
113
|
startingColumnNumber = "9223372036854775807"
|
|
80
114
|
endingColumnNumber = "9223372036854775807"
|
|
81
|
-
startingLineNumber = "
|
|
82
|
-
endingLineNumber = "
|
|
83
|
-
landmarkName = "
|
|
115
|
+
startingLineNumber = "342"
|
|
116
|
+
endingLineNumber = "342"
|
|
117
|
+
landmarkName = "`for`(_:)"
|
|
84
118
|
landmarkType = "7">
|
|
85
119
|
</BreakpointContent>
|
|
86
120
|
</BreakpointProxy>
|
|
87
121
|
<BreakpointProxy
|
|
88
122
|
BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint">
|
|
89
123
|
<BreakpointContent
|
|
90
|
-
uuid = "
|
|
124
|
+
uuid = "B61AB02D-FB91-45DD-BAA4-59D15A088394"
|
|
91
125
|
shouldBeEnabled = "No"
|
|
92
126
|
ignoreCount = "0"
|
|
93
127
|
continueAfterRunningActions = "No"
|
|
94
|
-
filePath = "Sources/Private/CoreAnimation/
|
|
128
|
+
filePath = "Sources/Private/CoreAnimation/Animations/ShapeAnimation.swift"
|
|
95
129
|
startingColumnNumber = "9223372036854775807"
|
|
96
130
|
endingColumnNumber = "9223372036854775807"
|
|
97
|
-
startingLineNumber = "
|
|
98
|
-
endingLineNumber = "
|
|
99
|
-
landmarkName = "
|
|
131
|
+
startingLineNumber = "116"
|
|
132
|
+
endingLineNumber = "116"
|
|
133
|
+
landmarkName = "Trim"
|
|
100
134
|
landmarkType = "21">
|
|
101
135
|
</BreakpointContent>
|
|
102
136
|
</BreakpointProxy>
|
|
103
137
|
<BreakpointProxy
|
|
104
138
|
BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint">
|
|
105
139
|
<BreakpointContent
|
|
106
|
-
uuid = "
|
|
140
|
+
uuid = "F1C4DA17-6BE2-4FBD-A917-AAB0466350C6"
|
|
107
141
|
shouldBeEnabled = "No"
|
|
108
142
|
ignoreCount = "0"
|
|
109
143
|
continueAfterRunningActions = "No"
|
|
110
|
-
filePath = "Sources/Private/CoreAnimation/Layers/
|
|
144
|
+
filePath = "Sources/Private/CoreAnimation/Layers/PreCompLayer.swift"
|
|
111
145
|
startingColumnNumber = "9223372036854775807"
|
|
112
146
|
endingColumnNumber = "9223372036854775807"
|
|
113
|
-
startingLineNumber = "
|
|
114
|
-
endingLineNumber = "
|
|
115
|
-
landmarkName = "
|
|
147
|
+
startingLineNumber = "54"
|
|
148
|
+
endingLineNumber = "54"
|
|
149
|
+
landmarkName = "setup(context:)"
|
|
116
150
|
landmarkType = "7">
|
|
151
|
+
<Locations>
|
|
152
|
+
<Location
|
|
153
|
+
uuid = "F1C4DA17-6BE2-4FBD-A917-AAB0466350C6 - d485919a3415bc3f"
|
|
154
|
+
shouldBeEnabled = "Yes"
|
|
155
|
+
ignoreCount = "0"
|
|
156
|
+
continueAfterRunningActions = "No"
|
|
157
|
+
symbolName = "Lottie.PreCompLayer.setup(context: Lottie.LayerContext) throws -> ()"
|
|
158
|
+
moduleName = "Lottie"
|
|
159
|
+
usesParentBreakpointCondition = "Yes"
|
|
160
|
+
urlString = "file:///Users/calstephens/Documents/lottie/Sources/Private/CoreAnimation/Layers/PreCompLayer.swift"
|
|
161
|
+
startingColumnNumber = "9223372036854775807"
|
|
162
|
+
endingColumnNumber = "9223372036854775807"
|
|
163
|
+
startingLineNumber = "54"
|
|
164
|
+
endingLineNumber = "54"
|
|
165
|
+
offsetFromSymbolStart = "320">
|
|
166
|
+
</Location>
|
|
167
|
+
<Location
|
|
168
|
+
uuid = "F1C4DA17-6BE2-4FBD-A917-AAB0466350C6 - d485919a3415a337"
|
|
169
|
+
shouldBeEnabled = "Yes"
|
|
170
|
+
ignoreCount = "0"
|
|
171
|
+
continueAfterRunningActions = "No"
|
|
172
|
+
symbolName = "Lottie.PreCompLayer.setup(context: Lottie.LayerContext) throws -> ()"
|
|
173
|
+
moduleName = "Lottie"
|
|
174
|
+
usesParentBreakpointCondition = "Yes"
|
|
175
|
+
urlString = "file:///Users/calstephens/Documents/lottie/Sources/Private/CoreAnimation/Layers/PreCompLayer.swift"
|
|
176
|
+
startingColumnNumber = "9223372036854775807"
|
|
177
|
+
endingColumnNumber = "9223372036854775807"
|
|
178
|
+
startingLineNumber = "62"
|
|
179
|
+
endingLineNumber = "62"
|
|
180
|
+
offsetFromSymbolStart = "84">
|
|
181
|
+
</Location>
|
|
182
|
+
<Location
|
|
183
|
+
uuid = "F1C4DA17-6BE2-4FBD-A917-AAB0466350C6 - d485919a3415a337"
|
|
184
|
+
shouldBeEnabled = "Yes"
|
|
185
|
+
ignoreCount = "0"
|
|
186
|
+
continueAfterRunningActions = "No"
|
|
187
|
+
symbolName = "Lottie.PreCompLayer.setup(context: Lottie.LayerContext) throws -> ()"
|
|
188
|
+
moduleName = "Lottie"
|
|
189
|
+
usesParentBreakpointCondition = "Yes"
|
|
190
|
+
urlString = "file:///Users/calstephens/Documents/lottie/Sources/Private/CoreAnimation/Layers/PreCompLayer.swift"
|
|
191
|
+
startingColumnNumber = "9223372036854775807"
|
|
192
|
+
endingColumnNumber = "9223372036854775807"
|
|
193
|
+
startingLineNumber = "62"
|
|
194
|
+
endingLineNumber = "62"
|
|
195
|
+
offsetFromSymbolStart = "172">
|
|
196
|
+
</Location>
|
|
197
|
+
</Locations>
|
|
117
198
|
</BreakpointContent>
|
|
118
199
|
</BreakpointProxy>
|
|
119
200
|
<BreakpointProxy
|
|
120
201
|
BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint">
|
|
121
202
|
<BreakpointContent
|
|
122
|
-
uuid = "
|
|
123
|
-
shouldBeEnabled = "
|
|
124
|
-
condition = "customizableProperty.name.map { $0.rawValue } == ["Position"]"
|
|
203
|
+
uuid = "E5D4F221-8220-42A8-BB35-32D5BEE1328B"
|
|
204
|
+
shouldBeEnabled = "Yes"
|
|
125
205
|
ignoreCount = "0"
|
|
126
206
|
continueAfterRunningActions = "No"
|
|
127
|
-
filePath = "Sources/Private/
|
|
207
|
+
filePath = "Sources/Private/EmbeddedLibraries/EpoxyCore/SwiftUI/LayoutUtilities/SwiftUIMeasurementContainer.swift"
|
|
128
208
|
startingColumnNumber = "9223372036854775807"
|
|
129
209
|
endingColumnNumber = "9223372036854775807"
|
|
130
|
-
startingLineNumber = "
|
|
131
|
-
endingLineNumber = "
|
|
132
|
-
landmarkName = "
|
|
133
|
-
landmarkType = "
|
|
210
|
+
startingLineNumber = "411"
|
|
211
|
+
endingLineNumber = "411"
|
|
212
|
+
landmarkName = "systemLayoutFittingIntrinsicWidthFixedHeight(_:priority:)"
|
|
213
|
+
landmarkType = "7">
|
|
134
214
|
<Locations>
|
|
135
215
|
<Location
|
|
136
|
-
uuid = "
|
|
216
|
+
uuid = "E5D4F221-8220-42A8-BB35-32D5BEE1328B - 12a91848e5910a61"
|
|
137
217
|
shouldBeEnabled = "Yes"
|
|
138
218
|
ignoreCount = "0"
|
|
139
219
|
continueAfterRunningActions = "No"
|
|
140
|
-
symbolName = "__C.
|
|
220
|
+
symbolName = "__C.UIView.systemLayoutFittingIntrinsicWidthFixedHeight(_: CoreGraphics.CGFloat, priority: __C.UILayoutPriority) -> __C.CGSize"
|
|
141
221
|
moduleName = "Lottie"
|
|
142
222
|
usesParentBreakpointCondition = "Yes"
|
|
143
|
-
urlString = "file:///Users/calstephens/Documents/lottie/Sources/Private/
|
|
223
|
+
urlString = "file:///Users/calstephens/Documents/lottie/Sources/Private/EmbeddedLibraries/EpoxyCore/SwiftUI/LayoutUtilities/SwiftUIMeasurementContainer.swift"
|
|
144
224
|
startingColumnNumber = "9223372036854775807"
|
|
145
225
|
endingColumnNumber = "9223372036854775807"
|
|
146
|
-
startingLineNumber = "
|
|
147
|
-
endingLineNumber = "
|
|
148
|
-
offsetFromSymbolStart = "
|
|
226
|
+
startingLineNumber = "412"
|
|
227
|
+
endingLineNumber = "412"
|
|
228
|
+
offsetFromSymbolStart = "116">
|
|
149
229
|
</Location>
|
|
150
230
|
<Location
|
|
151
|
-
uuid = "
|
|
231
|
+
uuid = "E5D4F221-8220-42A8-BB35-32D5BEE1328B - 88a2ef8955d88f92"
|
|
152
232
|
shouldBeEnabled = "Yes"
|
|
153
233
|
ignoreCount = "0"
|
|
154
234
|
continueAfterRunningActions = "No"
|
|
155
|
-
symbolName = "__C.
|
|
235
|
+
symbolName = "__C.UIView.systemLayoutFittingIntrinsicWidthFixedHeight(_: CoreGraphics.CGFloat, priority: __C.UILayoutPriority) -> __C.CGSize"
|
|
236
|
+
moduleName = "Example (Multiplatform)"
|
|
237
|
+
usesParentBreakpointCondition = "Yes"
|
|
238
|
+
urlString = "file:///Users/calstephens/Documents/lottie/Sources/Private/EmbeddedLibraries/EpoxyCore/SwiftUI/LayoutUtilities/SwiftUIMeasurementContainer.swift"
|
|
239
|
+
startingColumnNumber = "9223372036854775807"
|
|
240
|
+
endingColumnNumber = "9223372036854775807"
|
|
241
|
+
startingLineNumber = "412"
|
|
242
|
+
endingLineNumber = "412"
|
|
243
|
+
offsetFromSymbolStart = "116">
|
|
244
|
+
</Location>
|
|
245
|
+
<Location
|
|
246
|
+
uuid = "E5D4F221-8220-42A8-BB35-32D5BEE1328B - 88a2ef8955d88f92"
|
|
247
|
+
shouldBeEnabled = "Yes"
|
|
248
|
+
ignoreCount = "0"
|
|
249
|
+
continueAfterRunningActions = "No"
|
|
250
|
+
symbolName = "__C.UIView.systemLayoutFittingIntrinsicWidthFixedHeight(_: CoreGraphics.CGFloat, priority: __C.UILayoutPriority) -> __C.CGSize"
|
|
251
|
+
moduleName = "Example (Multiplatform)"
|
|
252
|
+
usesParentBreakpointCondition = "Yes"
|
|
253
|
+
urlString = "file:///Users/calstephens/Documents/lottie/Sources/Private/EmbeddedLibraries/EpoxyCore/SwiftUI/LayoutUtilities/SwiftUIMeasurementContainer.swift"
|
|
254
|
+
startingColumnNumber = "9223372036854775807"
|
|
255
|
+
endingColumnNumber = "9223372036854775807"
|
|
256
|
+
startingLineNumber = "412"
|
|
257
|
+
endingLineNumber = "412"
|
|
258
|
+
offsetFromSymbolStart = "100">
|
|
259
|
+
</Location>
|
|
260
|
+
<Location
|
|
261
|
+
uuid = "E5D4F221-8220-42A8-BB35-32D5BEE1328B - 88a2ef8955d88f92"
|
|
262
|
+
shouldBeEnabled = "Yes"
|
|
263
|
+
ignoreCount = "0"
|
|
264
|
+
continueAfterRunningActions = "No"
|
|
265
|
+
symbolName = "__C.UIView.systemLayoutFittingIntrinsicWidthFixedHeight(_: CoreGraphics.CGFloat, priority: __C.UILayoutPriority) -> __C.CGSize"
|
|
266
|
+
moduleName = "Example (Multiplatform)"
|
|
267
|
+
usesParentBreakpointCondition = "Yes"
|
|
268
|
+
urlString = "file:///Users/calstephens/Documents/lottie/Sources/Private/EmbeddedLibraries/EpoxyCore/SwiftUI/LayoutUtilities/SwiftUIMeasurementContainer.swift"
|
|
269
|
+
startingColumnNumber = "9223372036854775807"
|
|
270
|
+
endingColumnNumber = "9223372036854775807"
|
|
271
|
+
startingLineNumber = "412"
|
|
272
|
+
endingLineNumber = "412"
|
|
273
|
+
offsetFromSymbolStart = "127">
|
|
274
|
+
</Location>
|
|
275
|
+
<Location
|
|
276
|
+
uuid = "E5D4F221-8220-42A8-BB35-32D5BEE1328B - 12a91848e5910a61"
|
|
277
|
+
shouldBeEnabled = "Yes"
|
|
278
|
+
ignoreCount = "0"
|
|
279
|
+
continueAfterRunningActions = "No"
|
|
280
|
+
symbolName = "__C.UIView.systemLayoutFittingIntrinsicWidthFixedHeight(_: CoreGraphics.CGFloat, priority: __C.UILayoutPriority) -> __C.CGSize"
|
|
156
281
|
moduleName = "Lottie"
|
|
157
282
|
usesParentBreakpointCondition = "Yes"
|
|
158
|
-
urlString = "file:///Users/calstephens/Documents/lottie/Sources/Private/
|
|
283
|
+
urlString = "file:///Users/calstephens/Documents/lottie/Sources/Private/EmbeddedLibraries/EpoxyCore/SwiftUI/LayoutUtilities/SwiftUIMeasurementContainer.swift"
|
|
159
284
|
startingColumnNumber = "9223372036854775807"
|
|
160
285
|
endingColumnNumber = "9223372036854775807"
|
|
161
|
-
startingLineNumber = "
|
|
162
|
-
endingLineNumber = "
|
|
163
|
-
offsetFromSymbolStart = "
|
|
286
|
+
startingLineNumber = "412"
|
|
287
|
+
endingLineNumber = "412"
|
|
288
|
+
offsetFromSymbolStart = "127">
|
|
289
|
+
</Location>
|
|
290
|
+
<Location
|
|
291
|
+
uuid = "E5D4F221-8220-42A8-BB35-32D5BEE1328B - 12a91848e5910a61"
|
|
292
|
+
shouldBeEnabled = "Yes"
|
|
293
|
+
ignoreCount = "0"
|
|
294
|
+
continueAfterRunningActions = "No"
|
|
295
|
+
symbolName = "__C.UIView.systemLayoutFittingIntrinsicWidthFixedHeight(_: CoreGraphics.CGFloat, priority: __C.UILayoutPriority) -> __C.CGSize"
|
|
296
|
+
moduleName = "Lottie"
|
|
297
|
+
usesParentBreakpointCondition = "Yes"
|
|
298
|
+
urlString = "file:///Users/calstephens/Documents/lottie/Sources/Private/EmbeddedLibraries/EpoxyCore/SwiftUI/LayoutUtilities/SwiftUIMeasurementContainer.swift"
|
|
299
|
+
startingColumnNumber = "9223372036854775807"
|
|
300
|
+
endingColumnNumber = "9223372036854775807"
|
|
301
|
+
startingLineNumber = "412"
|
|
302
|
+
endingLineNumber = "412"
|
|
303
|
+
offsetFromSymbolStart = "99">
|
|
164
304
|
</Location>
|
|
165
305
|
</Locations>
|
|
166
306
|
</BreakpointContent>
|
|
@@ -168,112 +308,123 @@
|
|
|
168
308
|
<BreakpointProxy
|
|
169
309
|
BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint">
|
|
170
310
|
<BreakpointContent
|
|
171
|
-
uuid = "
|
|
172
|
-
shouldBeEnabled = "
|
|
173
|
-
condition = "context.currentKeypath.fullPath.contains("Group 1")"
|
|
311
|
+
uuid = "1B4030EA-5C63-4382-BA53-C41BB0EA078E"
|
|
312
|
+
shouldBeEnabled = "Yes"
|
|
174
313
|
ignoreCount = "0"
|
|
175
314
|
continueAfterRunningActions = "No"
|
|
176
|
-
filePath = "Sources/Private/
|
|
315
|
+
filePath = "Sources/Private/EmbeddedLibraries/EpoxyCore/SwiftUI/LayoutUtilities/SwiftUIMeasurementContainer.swift"
|
|
177
316
|
startingColumnNumber = "9223372036854775807"
|
|
178
317
|
endingColumnNumber = "9223372036854775807"
|
|
179
|
-
startingLineNumber = "
|
|
180
|
-
endingLineNumber = "
|
|
181
|
-
landmarkName = "
|
|
318
|
+
startingLineNumber = "413"
|
|
319
|
+
endingLineNumber = "413"
|
|
320
|
+
landmarkName = "systemLayoutFittingIntrinsicWidthFixedHeight(_:priority:)"
|
|
182
321
|
landmarkType = "7">
|
|
183
322
|
</BreakpointContent>
|
|
184
323
|
</BreakpointProxy>
|
|
185
324
|
<BreakpointProxy
|
|
186
325
|
BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint">
|
|
187
326
|
<BreakpointContent
|
|
188
|
-
uuid = "
|
|
189
|
-
shouldBeEnabled = "
|
|
327
|
+
uuid = "7043C7FC-0028-426B-91A7-E05945E62122"
|
|
328
|
+
shouldBeEnabled = "Yes"
|
|
190
329
|
ignoreCount = "0"
|
|
191
330
|
continueAfterRunningActions = "No"
|
|
192
|
-
filePath = "Sources/Private/
|
|
331
|
+
filePath = "Sources/Private/EmbeddedLibraries/EpoxyCore/SwiftUI/LayoutUtilities/SwiftUIMeasurementContainer.swift"
|
|
193
332
|
startingColumnNumber = "9223372036854775807"
|
|
194
333
|
endingColumnNumber = "9223372036854775807"
|
|
195
|
-
startingLineNumber = "
|
|
196
|
-
endingLineNumber = "
|
|
197
|
-
landmarkName = "
|
|
198
|
-
landmarkType = "
|
|
334
|
+
startingLineNumber = "393"
|
|
335
|
+
endingLineNumber = "393"
|
|
336
|
+
landmarkName = "systemLayoutFittingIntrinsicHeightFixedWidth(_:priority:)"
|
|
337
|
+
landmarkType = "7">
|
|
199
338
|
<Locations>
|
|
200
339
|
<Location
|
|
201
|
-
uuid = "
|
|
340
|
+
uuid = "7043C7FC-0028-426B-91A7-E05945E62122 - 94200cadb594d8f7"
|
|
202
341
|
shouldBeEnabled = "Yes"
|
|
203
342
|
ignoreCount = "0"
|
|
204
343
|
continueAfterRunningActions = "No"
|
|
205
|
-
symbolName = "
|
|
344
|
+
symbolName = "__C.UIView.systemLayoutFittingIntrinsicHeightFixedWidth(_: CoreGraphics.CGFloat, priority: __C.UILayoutPriority) -> __C.CGSize"
|
|
206
345
|
moduleName = "Lottie"
|
|
207
346
|
usesParentBreakpointCondition = "Yes"
|
|
208
|
-
urlString = "file:///Users/calstephens/Documents/lottie/Sources/Private/
|
|
347
|
+
urlString = "file:///Users/calstephens/Documents/lottie/Sources/Private/EmbeddedLibraries/EpoxyCore/SwiftUI/LayoutUtilities/SwiftUIMeasurementContainer.swift"
|
|
209
348
|
startingColumnNumber = "9223372036854775807"
|
|
210
349
|
endingColumnNumber = "9223372036854775807"
|
|
211
|
-
startingLineNumber = "
|
|
212
|
-
endingLineNumber = "
|
|
213
|
-
offsetFromSymbolStart = "
|
|
350
|
+
startingLineNumber = "393"
|
|
351
|
+
endingLineNumber = "393"
|
|
352
|
+
offsetFromSymbolStart = "124">
|
|
214
353
|
</Location>
|
|
215
354
|
<Location
|
|
216
|
-
uuid = "
|
|
355
|
+
uuid = "7043C7FC-0028-426B-91A7-E05945E62122 - e2bfb6c05dd5d04"
|
|
217
356
|
shouldBeEnabled = "Yes"
|
|
218
357
|
ignoreCount = "0"
|
|
219
358
|
continueAfterRunningActions = "No"
|
|
220
|
-
symbolName = "
|
|
221
|
-
moduleName = "
|
|
359
|
+
symbolName = "__C.UIView.systemLayoutFittingIntrinsicHeightFixedWidth(_: CoreGraphics.CGFloat, priority: __C.UILayoutPriority) -> __C.CGSize"
|
|
360
|
+
moduleName = "Example (Multiplatform)"
|
|
222
361
|
usesParentBreakpointCondition = "Yes"
|
|
223
|
-
urlString = "file:///Users/calstephens/Documents/lottie/Sources/Private/
|
|
362
|
+
urlString = "file:///Users/calstephens/Documents/lottie/Sources/Private/EmbeddedLibraries/EpoxyCore/SwiftUI/LayoutUtilities/SwiftUIMeasurementContainer.swift"
|
|
224
363
|
startingColumnNumber = "9223372036854775807"
|
|
225
364
|
endingColumnNumber = "9223372036854775807"
|
|
226
|
-
startingLineNumber = "
|
|
227
|
-
endingLineNumber = "
|
|
228
|
-
offsetFromSymbolStart = "
|
|
365
|
+
startingLineNumber = "393"
|
|
366
|
+
endingLineNumber = "393"
|
|
367
|
+
offsetFromSymbolStart = "124">
|
|
368
|
+
</Location>
|
|
369
|
+
<Location
|
|
370
|
+
uuid = "7043C7FC-0028-426B-91A7-E05945E62122 - e2bfb6c05dd5d04"
|
|
371
|
+
shouldBeEnabled = "Yes"
|
|
372
|
+
ignoreCount = "0"
|
|
373
|
+
continueAfterRunningActions = "No"
|
|
374
|
+
symbolName = "__C.UIView.systemLayoutFittingIntrinsicHeightFixedWidth(_: CoreGraphics.CGFloat, priority: __C.UILayoutPriority) -> __C.CGSize"
|
|
375
|
+
moduleName = "Example (Multiplatform)"
|
|
376
|
+
usesParentBreakpointCondition = "Yes"
|
|
377
|
+
urlString = "file:///Users/calstephens/Documents/lottie/Sources/Private/EmbeddedLibraries/EpoxyCore/SwiftUI/LayoutUtilities/SwiftUIMeasurementContainer.swift"
|
|
378
|
+
startingColumnNumber = "9223372036854775807"
|
|
379
|
+
endingColumnNumber = "9223372036854775807"
|
|
380
|
+
startingLineNumber = "393"
|
|
381
|
+
endingLineNumber = "393"
|
|
382
|
+
offsetFromSymbolStart = "108">
|
|
383
|
+
</Location>
|
|
384
|
+
<Location
|
|
385
|
+
uuid = "7043C7FC-0028-426B-91A7-E05945E62122 - e2bfb6c05dd5d04"
|
|
386
|
+
shouldBeEnabled = "Yes"
|
|
387
|
+
ignoreCount = "0"
|
|
388
|
+
continueAfterRunningActions = "No"
|
|
389
|
+
symbolName = "__C.UIView.systemLayoutFittingIntrinsicHeightFixedWidth(_: CoreGraphics.CGFloat, priority: __C.UILayoutPriority) -> __C.CGSize"
|
|
390
|
+
moduleName = "Example (Multiplatform)"
|
|
391
|
+
usesParentBreakpointCondition = "Yes"
|
|
392
|
+
urlString = "file:///Users/calstephens/Documents/lottie/Sources/Private/EmbeddedLibraries/EpoxyCore/SwiftUI/LayoutUtilities/SwiftUIMeasurementContainer.swift"
|
|
393
|
+
startingColumnNumber = "9223372036854775807"
|
|
394
|
+
endingColumnNumber = "9223372036854775807"
|
|
395
|
+
startingLineNumber = "393"
|
|
396
|
+
endingLineNumber = "393"
|
|
397
|
+
offsetFromSymbolStart = "128">
|
|
229
398
|
</Location>
|
|
230
|
-
</Locations>
|
|
231
|
-
</BreakpointContent>
|
|
232
|
-
</BreakpointProxy>
|
|
233
|
-
<BreakpointProxy
|
|
234
|
-
BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint">
|
|
235
|
-
<BreakpointContent
|
|
236
|
-
uuid = "083F77B7-FF28-4132-ADBB-D0EA9B91C736"
|
|
237
|
-
shouldBeEnabled = "No"
|
|
238
|
-
ignoreCount = "0"
|
|
239
|
-
continueAfterRunningActions = "No"
|
|
240
|
-
filePath = "Sources/Private/CoreAnimation/Animations/LayerProperty.swift"
|
|
241
|
-
startingColumnNumber = "9223372036854775807"
|
|
242
|
-
endingColumnNumber = "9223372036854775807"
|
|
243
|
-
startingLineNumber = "293"
|
|
244
|
-
endingLineNumber = "293"
|
|
245
|
-
landmarkName = "scaleY"
|
|
246
|
-
landmarkType = "24">
|
|
247
|
-
<Locations>
|
|
248
399
|
<Location
|
|
249
|
-
uuid = "
|
|
400
|
+
uuid = "7043C7FC-0028-426B-91A7-E05945E62122 - 94200cadb594d8f7"
|
|
250
401
|
shouldBeEnabled = "Yes"
|
|
251
402
|
ignoreCount = "0"
|
|
252
403
|
continueAfterRunningActions = "No"
|
|
253
|
-
symbolName = "
|
|
404
|
+
symbolName = "__C.UIView.systemLayoutFittingIntrinsicHeightFixedWidth(_: CoreGraphics.CGFloat, priority: __C.UILayoutPriority) -> __C.CGSize"
|
|
254
405
|
moduleName = "Lottie"
|
|
255
406
|
usesParentBreakpointCondition = "Yes"
|
|
256
|
-
urlString = "file:///Users/calstephens/Documents/lottie/Sources/Private/
|
|
407
|
+
urlString = "file:///Users/calstephens/Documents/lottie/Sources/Private/EmbeddedLibraries/EpoxyCore/SwiftUI/LayoutUtilities/SwiftUIMeasurementContainer.swift"
|
|
257
408
|
startingColumnNumber = "9223372036854775807"
|
|
258
409
|
endingColumnNumber = "9223372036854775807"
|
|
259
|
-
startingLineNumber = "
|
|
260
|
-
endingLineNumber = "
|
|
261
|
-
offsetFromSymbolStart = "
|
|
410
|
+
startingLineNumber = "393"
|
|
411
|
+
endingLineNumber = "393"
|
|
412
|
+
offsetFromSymbolStart = "128">
|
|
262
413
|
</Location>
|
|
263
414
|
<Location
|
|
264
|
-
uuid = "
|
|
415
|
+
uuid = "7043C7FC-0028-426B-91A7-E05945E62122 - 94200cadb594d8f7"
|
|
265
416
|
shouldBeEnabled = "Yes"
|
|
266
417
|
ignoreCount = "0"
|
|
267
418
|
continueAfterRunningActions = "No"
|
|
268
|
-
symbolName = "
|
|
419
|
+
symbolName = "__C.UIView.systemLayoutFittingIntrinsicHeightFixedWidth(_: CoreGraphics.CGFloat, priority: __C.UILayoutPriority) -> __C.CGSize"
|
|
269
420
|
moduleName = "Lottie"
|
|
270
421
|
usesParentBreakpointCondition = "Yes"
|
|
271
|
-
urlString = "file:///Users/calstephens/Documents/lottie/Sources/Private/
|
|
422
|
+
urlString = "file:///Users/calstephens/Documents/lottie/Sources/Private/EmbeddedLibraries/EpoxyCore/SwiftUI/LayoutUtilities/SwiftUIMeasurementContainer.swift"
|
|
272
423
|
startingColumnNumber = "9223372036854775807"
|
|
273
424
|
endingColumnNumber = "9223372036854775807"
|
|
274
|
-
startingLineNumber = "
|
|
275
|
-
endingLineNumber = "
|
|
276
|
-
offsetFromSymbolStart = "
|
|
425
|
+
startingLineNumber = "393"
|
|
426
|
+
endingLineNumber = "393"
|
|
427
|
+
offsetFromSymbolStart = "97">
|
|
277
428
|
</Location>
|
|
278
429
|
</Locations>
|
|
279
430
|
</BreakpointContent>
|
|
@@ -281,49 +432,156 @@
|
|
|
281
432
|
<BreakpointProxy
|
|
282
433
|
BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint">
|
|
283
434
|
<BreakpointContent
|
|
284
|
-
uuid = "
|
|
435
|
+
uuid = "58C50FA3-5DB1-4BDC-963D-554C96793B8E"
|
|
436
|
+
shouldBeEnabled = "Yes"
|
|
437
|
+
ignoreCount = "0"
|
|
438
|
+
continueAfterRunningActions = "No"
|
|
439
|
+
filePath = "Sources/Private/EmbeddedLibraries/EpoxyCore/SwiftUI/LayoutUtilities/SwiftUIMeasurementContainer.swift"
|
|
440
|
+
startingColumnNumber = "9223372036854775807"
|
|
441
|
+
endingColumnNumber = "9223372036854775807"
|
|
442
|
+
startingLineNumber = "415"
|
|
443
|
+
endingLineNumber = "415"
|
|
444
|
+
landmarkName = "systemLayoutFittingIntrinsicWidthFixedHeight(_:priority:)"
|
|
445
|
+
landmarkType = "7">
|
|
446
|
+
</BreakpointContent>
|
|
447
|
+
</BreakpointProxy>
|
|
448
|
+
<BreakpointProxy
|
|
449
|
+
BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint">
|
|
450
|
+
<BreakpointContent
|
|
451
|
+
uuid = "46F5CCC2-A2B4-43BB-9372-588E157C15F8"
|
|
452
|
+
shouldBeEnabled = "Yes"
|
|
453
|
+
ignoreCount = "0"
|
|
454
|
+
continueAfterRunningActions = "No"
|
|
455
|
+
filePath = "Sources/Private/EmbeddedLibraries/EpoxyCore/SwiftUI/LayoutUtilities/SwiftUIMeasurementContainer.swift"
|
|
456
|
+
startingColumnNumber = "9223372036854775807"
|
|
457
|
+
endingColumnNumber = "9223372036854775807"
|
|
458
|
+
startingLineNumber = "395"
|
|
459
|
+
endingLineNumber = "395"
|
|
460
|
+
landmarkName = "systemLayoutFittingIntrinsicHeightFixedWidth(_:priority:)"
|
|
461
|
+
landmarkType = "7">
|
|
462
|
+
</BreakpointContent>
|
|
463
|
+
</BreakpointProxy>
|
|
464
|
+
<BreakpointProxy
|
|
465
|
+
BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint">
|
|
466
|
+
<BreakpointContent
|
|
467
|
+
uuid = "8FB76DCA-529E-41F7-9C40-3BA6FA8DF134"
|
|
468
|
+
shouldBeEnabled = "No"
|
|
469
|
+
ignoreCount = "0"
|
|
470
|
+
continueAfterRunningActions = "No"
|
|
471
|
+
filePath = "Sources/Public/iOS/AnimatedSwitch.swift"
|
|
472
|
+
startingColumnNumber = "9223372036854775807"
|
|
473
|
+
endingColumnNumber = "9223372036854775807"
|
|
474
|
+
startingLineNumber = "220"
|
|
475
|
+
endingLineNumber = "220"
|
|
476
|
+
landmarkName = "unknown"
|
|
477
|
+
landmarkType = "0">
|
|
478
|
+
</BreakpointContent>
|
|
479
|
+
</BreakpointProxy>
|
|
480
|
+
<BreakpointProxy
|
|
481
|
+
BreakpointExtensionID = "Xcode.Breakpoint.SymbolicBreakpoint">
|
|
482
|
+
<BreakpointContent
|
|
483
|
+
uuid = "F7CB69A9-F174-4CF0-8C0C-F43E48DE48B2"
|
|
484
|
+
shouldBeEnabled = "Yes"
|
|
485
|
+
ignoreCount = "0"
|
|
486
|
+
continueAfterRunningActions = "No"
|
|
487
|
+
symbolName = ""
|
|
488
|
+
moduleName = "">
|
|
489
|
+
<Locations>
|
|
490
|
+
</Locations>
|
|
491
|
+
</BreakpointContent>
|
|
492
|
+
</BreakpointProxy>
|
|
493
|
+
<BreakpointProxy
|
|
494
|
+
BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint">
|
|
495
|
+
<BreakpointContent
|
|
496
|
+
uuid = "3C169A2A-85F7-4FD3-ACB3-C255C87766C1"
|
|
285
497
|
shouldBeEnabled = "No"
|
|
286
498
|
ignoreCount = "0"
|
|
287
499
|
continueAfterRunningActions = "No"
|
|
288
|
-
filePath = "Sources/Private/CoreAnimation/
|
|
500
|
+
filePath = "Sources/Private/CoreAnimation/Layers/BaseAnimationLayer.swift"
|
|
289
501
|
startingColumnNumber = "9223372036854775807"
|
|
290
502
|
endingColumnNumber = "9223372036854775807"
|
|
291
|
-
startingLineNumber = "
|
|
292
|
-
endingLineNumber = "
|
|
293
|
-
landmarkName = "rotation"
|
|
294
|
-
landmarkType = "24">
|
|
503
|
+
startingLineNumber = "55"
|
|
504
|
+
endingLineNumber = "55">
|
|
295
505
|
</BreakpointContent>
|
|
296
506
|
</BreakpointProxy>
|
|
297
507
|
<BreakpointProxy
|
|
298
508
|
BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint">
|
|
299
509
|
<BreakpointContent
|
|
300
|
-
uuid = "
|
|
510
|
+
uuid = "BD2B1B69-E42C-4C98-860F-8C129397EEE7"
|
|
301
511
|
shouldBeEnabled = "No"
|
|
302
512
|
ignoreCount = "0"
|
|
303
513
|
continueAfterRunningActions = "No"
|
|
304
|
-
filePath = "Sources/Private/
|
|
514
|
+
filePath = "Sources/Private/Utility/Extensions/AnimationKeypathExtension.swift"
|
|
305
515
|
startingColumnNumber = "9223372036854775807"
|
|
306
516
|
endingColumnNumber = "9223372036854775807"
|
|
307
|
-
startingLineNumber = "
|
|
308
|
-
endingLineNumber = "
|
|
309
|
-
landmarkName = "
|
|
517
|
+
startingLineNumber = "160"
|
|
518
|
+
endingLineNumber = "160"
|
|
519
|
+
landmarkName = "layerKeypaths(for:)"
|
|
310
520
|
landmarkType = "7">
|
|
311
521
|
</BreakpointContent>
|
|
312
522
|
</BreakpointProxy>
|
|
313
523
|
<BreakpointProxy
|
|
314
524
|
BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint">
|
|
315
525
|
<BreakpointContent
|
|
316
|
-
uuid = "
|
|
526
|
+
uuid = "7F8F379C-35B0-4F4B-B25F-4A6D5910F1DA"
|
|
317
527
|
shouldBeEnabled = "No"
|
|
318
528
|
ignoreCount = "0"
|
|
319
529
|
continueAfterRunningActions = "No"
|
|
320
|
-
filePath = "Sources/Private/
|
|
530
|
+
filePath = "Sources/Private/Utility/Extensions/AnimationKeypathExtension.swift"
|
|
321
531
|
startingColumnNumber = "9223372036854775807"
|
|
322
532
|
endingColumnNumber = "9223372036854775807"
|
|
323
|
-
startingLineNumber = "
|
|
324
|
-
endingLineNumber = "
|
|
325
|
-
landmarkName = "
|
|
326
|
-
landmarkType = "
|
|
533
|
+
startingLineNumber = "165"
|
|
534
|
+
endingLineNumber = "165"
|
|
535
|
+
landmarkName = "layerKeypaths(for:)"
|
|
536
|
+
landmarkType = "7">
|
|
537
|
+
</BreakpointContent>
|
|
538
|
+
</BreakpointProxy>
|
|
539
|
+
<BreakpointProxy
|
|
540
|
+
BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint">
|
|
541
|
+
<BreakpointContent
|
|
542
|
+
uuid = "93EDC5AB-8948-4148-83CC-FDDCB8BE5AFE"
|
|
543
|
+
shouldBeEnabled = "No"
|
|
544
|
+
ignoreCount = "0"
|
|
545
|
+
continueAfterRunningActions = "No"
|
|
546
|
+
filePath = "Example/Example/AnimationPreviewView.swift"
|
|
547
|
+
startingColumnNumber = "9223372036854775807"
|
|
548
|
+
endingColumnNumber = "9223372036854775807"
|
|
549
|
+
startingLineNumber = "119"
|
|
550
|
+
endingLineNumber = "119"
|
|
551
|
+
landmarkName = "AnimationPreviewView"
|
|
552
|
+
landmarkType = "14">
|
|
553
|
+
</BreakpointContent>
|
|
554
|
+
</BreakpointProxy>
|
|
555
|
+
<BreakpointProxy
|
|
556
|
+
BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint">
|
|
557
|
+
<BreakpointContent
|
|
558
|
+
uuid = "6054DF71-1266-422E-9C2F-56F48E5C9F70"
|
|
559
|
+
shouldBeEnabled = "Yes"
|
|
560
|
+
ignoreCount = "0"
|
|
561
|
+
continueAfterRunningActions = "No"
|
|
562
|
+
filePath = "Sources/Public/iOS/FilepathImageProvider.swift"
|
|
563
|
+
startingColumnNumber = "9223372036854775807"
|
|
564
|
+
endingColumnNumber = "9223372036854775807"
|
|
565
|
+
startingLineNumber = "40"
|
|
566
|
+
endingLineNumber = "40"
|
|
567
|
+
landmarkName = "imageForAsset(asset:)"
|
|
568
|
+
landmarkType = "7">
|
|
569
|
+
</BreakpointContent>
|
|
570
|
+
</BreakpointProxy>
|
|
571
|
+
<BreakpointProxy
|
|
572
|
+
BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint">
|
|
573
|
+
<BreakpointContent
|
|
574
|
+
uuid = "8628051F-F131-475B-8FBA-5C9F7B7F9CF8"
|
|
575
|
+
shouldBeEnabled = "Yes"
|
|
576
|
+
ignoreCount = "0"
|
|
577
|
+
continueAfterRunningActions = "No"
|
|
578
|
+
filePath = "Sources/Private/MainThread/LayerContainers/Utility/LayerImageProvider.swift"
|
|
579
|
+
startingColumnNumber = "9223372036854775807"
|
|
580
|
+
endingColumnNumber = "9223372036854775807"
|
|
581
|
+
startingLineNumber = "49"
|
|
582
|
+
endingLineNumber = "49"
|
|
583
|
+
landmarkName = "reloadImages()"
|
|
584
|
+
landmarkType = "7">
|
|
327
585
|
</BreakpointContent>
|
|
328
586
|
</BreakpointProxy>
|
|
329
587
|
</Breakpoints>
|