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.
Files changed (193) hide show
  1. package/.github/workflows/main.yml +117 -11
  2. package/Gemfile +1 -0
  3. package/Gemfile.lock +5 -0
  4. package/Lottie.xcodeproj/project.pbxproj +1546 -194
  5. package/Lottie.xcodeproj/project.xcworkspace/xcuserdata/calstephens.xcuserdatad/UserInterfaceState.xcuserstate +0 -0
  6. package/Lottie.xcodeproj/xcshareddata/xcschemes/Lottie (iOS).xcscheme +1 -1
  7. package/Lottie.xcodeproj/xcshareddata/xcschemes/Lottie (macOS).xcscheme +1 -1
  8. package/Lottie.xcodeproj/xcshareddata/xcschemes/Lottie (tvOS).xcscheme +4 -5
  9. package/Lottie.xcodeproj/xcshareddata/xcschemes/Lottie (visionOS).xcscheme +66 -0
  10. package/Lottie.xcodeproj/xcuserdata/calstephens.xcuserdatad/xcschemes/xcschememanagement.plist +18 -0
  11. package/Lottie.xcworkspace/xcshareddata/swiftpm/Package.resolved +2 -11
  12. package/Lottie.xcworkspace/xcuserdata/calstephens.xcuserdatad/UserInterfaceState.xcuserstate +0 -0
  13. package/Lottie.xcworkspace/xcuserdata/calstephens.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist +374 -116
  14. package/Lottie.xcworkspace/xcuserdata/calstephens.xcuserdatad/xcdebugger/Expressions.xcexplist +16 -5
  15. package/Package.resolved +2 -2
  16. package/Package.swift +16 -9
  17. package/README.md +2 -2
  18. package/Rakefile +122 -25
  19. package/Sources/Private/CoreAnimation/Animations/CALayer+addAnimation.swift +3 -4
  20. package/Sources/Private/CoreAnimation/Animations/DropShadowAnimation.swift +160 -0
  21. package/Sources/Private/CoreAnimation/Animations/LayerProperty.swift +83 -10
  22. package/Sources/Private/CoreAnimation/Animations/TransformAnimations.swift +85 -79
  23. package/Sources/Private/CoreAnimation/CoreAnimationLayer.swift +11 -7
  24. package/Sources/Private/CoreAnimation/Extensions/Keyframes+combined.swift +67 -6
  25. package/Sources/Private/CoreAnimation/Layers/AnimationLayer.swift +21 -2
  26. package/Sources/Private/CoreAnimation/Layers/BaseCompositionLayer.swift +9 -0
  27. package/Sources/Private/CoreAnimation/Layers/ImageLayer.swift +1 -0
  28. package/Sources/Private/CoreAnimation/Layers/LayerModel+makeAnimationLayer.swift +1 -1
  29. package/Sources/Private/CoreAnimation/Layers/RepeaterLayer.swift +2 -0
  30. package/Sources/Private/CoreAnimation/Layers/ShapeLayer.swift +11 -13
  31. package/Sources/Private/CoreAnimation/Layers/SolidLayer.swift +20 -5
  32. package/Sources/Private/CoreAnimation/Layers/TextLayer.swift +13 -3
  33. package/Sources/Private/CoreAnimation/ValueProviderStore.swift +6 -4
  34. package/Sources/Private/EmbeddedLibraries/EpoxyCore/Diffing/Collection+Diff.swift +263 -0
  35. package/Sources/Private/EmbeddedLibraries/EpoxyCore/Diffing/Diffable.swift +18 -0
  36. package/Sources/Private/EmbeddedLibraries/EpoxyCore/Diffing/DiffableSection.swift +16 -0
  37. package/Sources/Private/EmbeddedLibraries/EpoxyCore/Diffing/IndexChangeset.swift +187 -0
  38. package/Sources/Private/EmbeddedLibraries/EpoxyCore/Diffing/SectionedChangeset.swift +32 -0
  39. package/Sources/Private/EmbeddedLibraries/EpoxyCore/Logging/EpoxyLogger.swift +99 -0
  40. package/Sources/Private/EmbeddedLibraries/EpoxyCore/Model/CallbackContextEpoxyModeled.swift +8 -0
  41. package/Sources/Private/EmbeddedLibraries/EpoxyCore/Model/EpoxyModelArrayBuilder.swift +48 -0
  42. package/Sources/Private/EmbeddedLibraries/EpoxyCore/Model/EpoxyModelProperty.swift +158 -0
  43. package/Sources/Private/EmbeddedLibraries/EpoxyCore/Model/EpoxyModelStorage.swift +88 -0
  44. package/Sources/Private/EmbeddedLibraries/EpoxyCore/Model/EpoxyModeled.swift +54 -0
  45. package/Sources/Private/EmbeddedLibraries/EpoxyCore/Model/Internal/AnyEpoxyModelProperty.swift +29 -0
  46. package/Sources/Private/EmbeddedLibraries/EpoxyCore/Model/Internal/ClassReference.swift +39 -0
  47. package/Sources/Private/EmbeddedLibraries/EpoxyCore/Model/Providers/AnimatedProviding.swift +10 -0
  48. package/Sources/Private/EmbeddedLibraries/EpoxyCore/Model/Providers/DataIDProviding.swift +57 -0
  49. package/Sources/Private/EmbeddedLibraries/EpoxyCore/Model/Providers/DidDisplayProviding.swift +41 -0
  50. package/Sources/Private/EmbeddedLibraries/EpoxyCore/Model/Providers/DidEndDisplayingProviding.swift +41 -0
  51. package/Sources/Private/EmbeddedLibraries/EpoxyCore/Model/Providers/DidSelectProviding.swift +36 -0
  52. package/Sources/Private/EmbeddedLibraries/EpoxyCore/Model/Providers/ErasedContentProviding.swift +49 -0
  53. package/Sources/Private/EmbeddedLibraries/EpoxyCore/Model/Providers/MakeViewProviding.swift +60 -0
  54. package/Sources/Private/EmbeddedLibraries/EpoxyCore/Model/Providers/SetBehaviorsProviding.swift +38 -0
  55. package/Sources/Private/EmbeddedLibraries/EpoxyCore/Model/Providers/SetContentProviding.swift +38 -0
  56. package/Sources/Private/EmbeddedLibraries/EpoxyCore/Model/Providers/StyleIDProviding.swift +37 -0
  57. package/Sources/Private/EmbeddedLibraries/EpoxyCore/Model/Providers/TraitCollectionProviding.swift +14 -0
  58. package/Sources/Private/EmbeddedLibraries/EpoxyCore/Model/Providers/ViewDifferentiatorProviding.swift +34 -0
  59. package/Sources/Private/EmbeddedLibraries/EpoxyCore/Model/Providers/ViewProviding.swift +13 -0
  60. package/Sources/Private/EmbeddedLibraries/EpoxyCore/Model/Providers/WillDisplayProviding.swift +41 -0
  61. package/Sources/Private/EmbeddedLibraries/EpoxyCore/Model/ViewEpoxyModeled.swift +10 -0
  62. package/Sources/Private/EmbeddedLibraries/EpoxyCore/README.md +31 -0
  63. package/Sources/Private/EmbeddedLibraries/EpoxyCore/SwiftUI/EpoxySwiftUIHostingController.swift +46 -0
  64. package/Sources/Private/EmbeddedLibraries/EpoxyCore/SwiftUI/EpoxySwiftUIHostingView.swift +391 -0
  65. package/Sources/Private/EmbeddedLibraries/EpoxyCore/SwiftUI/EpoxySwiftUIIntrinsicContentSizeInvalidator.swift +44 -0
  66. package/Sources/Private/EmbeddedLibraries/EpoxyCore/SwiftUI/EpoxySwiftUILayoutMargins.swift +51 -0
  67. package/Sources/Private/EmbeddedLibraries/EpoxyCore/SwiftUI/EpoxyableView+SwiftUIView.swift +172 -0
  68. package/Sources/Private/EmbeddedLibraries/EpoxyCore/SwiftUI/LayoutUtilities/MeasuringViewRepresentable.swift +128 -0
  69. package/Sources/Private/EmbeddedLibraries/EpoxyCore/SwiftUI/LayoutUtilities/SwiftUIMeasurementContainer.swift +452 -0
  70. package/Sources/Private/EmbeddedLibraries/EpoxyCore/SwiftUI/SwiftUIView.swift +148 -0
  71. package/Sources/Private/EmbeddedLibraries/EpoxyCore/SwiftUI/UIView+SwiftUIView.swift +40 -0
  72. package/Sources/Private/EmbeddedLibraries/EpoxyCore/SwiftUI/UIViewConfiguringSwiftUIView.swift +43 -0
  73. package/Sources/Private/EmbeddedLibraries/EpoxyCore/Views/BehaviorsConfigurableView.swift +45 -0
  74. package/Sources/Private/EmbeddedLibraries/EpoxyCore/Views/ContentConfigurableView.swift +36 -0
  75. package/Sources/Private/EmbeddedLibraries/EpoxyCore/Views/EpoxyableView.swift +5 -0
  76. package/Sources/Private/EmbeddedLibraries/EpoxyCore/Views/StyledView.swift +42 -0
  77. package/Sources/Private/EmbeddedLibraries/EpoxyCore/Views/ViewType.swift +51 -0
  78. package/Sources/Private/EmbeddedLibraries/README.md +27 -0
  79. package/Sources/Private/{Model/DotLottie → EmbeddedLibraries}/ZipFoundation/Archive+BackingConfiguration.swift +4 -4
  80. package/Sources/Private/{Model/DotLottie → EmbeddedLibraries}/ZipFoundation/Archive+MemoryFile.swift +2 -2
  81. package/Sources/Private/{Model/DotLottie → EmbeddedLibraries}/ZipFoundation/Archive+Writing.swift +4 -4
  82. package/Sources/Private/{Model/DotLottie → EmbeddedLibraries}/ZipFoundation/Archive.swift +8 -7
  83. package/Sources/Private/{Model/DotLottie → EmbeddedLibraries}/ZipFoundation/Data+Compression.swift +5 -5
  84. package/Sources/Private/{Model/DotLottie → EmbeddedLibraries}/ZipFoundation/FileManager+ZIP.swift +4 -4
  85. package/Sources/Private/MainThread/LayerContainers/CompLayers/ImageCompositionLayer.swift +6 -0
  86. package/Sources/Private/MainThread/LayerContainers/CompLayers/MaskContainerLayer.swift +3 -1
  87. package/Sources/Private/MainThread/LayerContainers/CompLayers/PreCompositionLayer.swift +18 -5
  88. package/Sources/Private/MainThread/LayerContainers/CompLayers/TextCompositionLayer.swift +31 -3
  89. package/Sources/Private/MainThread/LayerContainers/MainThreadAnimationLayer.swift +33 -8
  90. package/Sources/Private/MainThread/LayerContainers/Utility/CachedImageProvider.swift +8 -1
  91. package/Sources/Private/MainThread/LayerContainers/Utility/CompositionLayersInitializer.swift +13 -4
  92. package/Sources/Private/MainThread/LayerContainers/Utility/LayerFontProvider.swift +2 -2
  93. package/Sources/Private/MainThread/LayerContainers/Utility/LayerImageProvider.swift +1 -0
  94. package/Sources/Private/MainThread/LayerContainers/Utility/LayerTextProvider.swift +4 -4
  95. package/Sources/Private/MainThread/NodeRenderSystem/NodeProperties/Protocols/NodePropertyMap.swift +1 -1
  96. package/Sources/Private/MainThread/NodeRenderSystem/Nodes/ModifierNodes/TrimPathNode.swift +3 -1
  97. package/Sources/Private/MainThread/NodeRenderSystem/Nodes/OutputNodes/Renderables/GradientFillRenderer.swift +2 -1
  98. package/Sources/Private/MainThread/NodeRenderSystem/Nodes/OutputNodes/Renderables/LegacyGradientFillRenderer.swift +2 -1
  99. package/Sources/Private/MainThread/NodeRenderSystem/Nodes/RenderNodes/GradientFillNode.swift +1 -1
  100. package/Sources/Private/MainThread/NodeRenderSystem/Nodes/RenderNodes/GradientStrokeNode.swift +2 -2
  101. package/Sources/Private/MainThread/NodeRenderSystem/Nodes/RenderNodes/StrokeNode.swift +1 -1
  102. package/Sources/Private/MainThread/NodeRenderSystem/Nodes/Text/TextAnimatorNode.swift +1 -1
  103. package/Sources/Private/MainThread/NodeRenderSystem/RenderLayers/ShapeContainerLayer.swift +6 -2
  104. package/Sources/Private/Model/Assets/Asset.swift +8 -0
  105. package/Sources/Private/Model/Assets/AssetLibrary.swift +2 -2
  106. package/Sources/Private/Model/Assets/ImageAsset.swift +3 -3
  107. package/Sources/Private/Model/DotLottie/DotLottieAnimation.swift +16 -2
  108. package/Sources/Private/Model/DotLottie/DotLottieImageProvider.swift +20 -7
  109. package/Sources/Private/Model/Extensions/KeyedDecodingContainerExtensions.swift +26 -0
  110. package/Sources/Private/Model/Keyframes/KeyframeGroup.swift +8 -5
  111. package/Sources/Private/Model/LayerEffects/DropShadowEffect.swift +45 -0
  112. package/Sources/Private/Model/LayerEffects/EffectValues/ColorEffectValue.swift +38 -0
  113. package/Sources/Private/Model/LayerEffects/EffectValues/EffectValue.swift +98 -0
  114. package/Sources/Private/Model/LayerEffects/EffectValues/Vector1DEffectValue.swift +38 -0
  115. package/Sources/Private/Model/LayerEffects/LayerEffect.swift +103 -0
  116. package/Sources/Private/Model/LayerStyles/DropShadowStyle.swift +72 -0
  117. package/Sources/Private/Model/LayerStyles/LayerStyle.swift +85 -0
  118. package/Sources/Private/Model/Layers/LayerModel.swift +27 -0
  119. package/Sources/Private/Model/Objects/Marker.swift +1 -1
  120. package/Sources/Private/Model/Objects/Transform.swift +1 -2
  121. package/Sources/Private/Model/ShapeItems/GradientFill.swift +1 -1
  122. package/Sources/Private/Model/ShapeItems/GradientStroke.swift +2 -2
  123. package/Sources/Private/Model/ShapeItems/Merge.swift +1 -1
  124. package/Sources/Private/Model/ShapeItems/ShapeItem.swift +31 -26
  125. package/Sources/Private/Model/ShapeItems/ShapeTransform.swift +0 -9
  126. package/Sources/Private/Model/ShapeItems/Star.swift +1 -1
  127. package/Sources/Private/Model/Text/Font.swift +2 -2
  128. package/Sources/Private/Model/Text/Glyph.swift +1 -1
  129. package/Sources/Private/RootAnimationLayer.swift +2 -2
  130. package/Sources/Private/Utility/Debugging/LayerDebugging.swift +3 -1
  131. package/Sources/Private/Utility/Extensions/AnimationKeypathExtension.swift +32 -2
  132. package/Sources/Private/Utility/Helpers/AnimationContext.swift +4 -2
  133. package/Sources/Private/Utility/Helpers/AnyEquatable.swift +24 -0
  134. package/Sources/Private/Utility/Helpers/Binding+Map.swift +18 -0
  135. package/Sources/Private/Utility/Helpers/View+ValueChanged.swift +20 -0
  136. package/Sources/Private/Utility/LottieAnimationSource.swift +41 -0
  137. package/Sources/Private/Utility/Primitives/BezierPath.swift +2 -2
  138. package/Sources/Private/Utility/Primitives/BezierPathRoundExtension.swift +2 -2
  139. package/Sources/Private/Utility/Primitives/VectorsExtensions.swift +1 -1
  140. package/Sources/Public/Animation/LottieAnimation.swift +21 -2
  141. package/Sources/Public/Animation/LottieAnimationLayer.swift +1464 -0
  142. package/Sources/Public/Animation/LottieAnimationView.swift +259 -736
  143. package/Sources/Public/Animation/LottiePlaybackMode.swift +117 -0
  144. package/Sources/Public/Animation/LottieView.swift +462 -0
  145. package/Sources/Public/AnimationCache/AnimationCacheProvider.swift +2 -1
  146. package/Sources/Public/AnimationCache/DefaultAnimationCache.swift +5 -6
  147. package/Sources/Public/Configuration/DecodingStrategy.swift +15 -0
  148. package/Sources/Public/Configuration/LottieConfiguration.swift +47 -0
  149. package/Sources/Public/Configuration/ReducedMotionOption.swift +114 -0
  150. package/Sources/Public/{LottieConfiguration.swift → Configuration/RenderingEngineOption.swift} +2 -57
  151. package/Sources/Public/{iOS → Controls}/AnimatedButton.swift +56 -13
  152. package/Sources/Public/{iOS → Controls}/AnimatedControl.swift +80 -8
  153. package/Sources/Public/{iOS → Controls}/AnimatedSwitch.swift +71 -31
  154. package/Sources/Public/Controls/LottieButton.swift +122 -0
  155. package/Sources/Public/Controls/LottieSwitch.swift +144 -0
  156. package/Sources/Public/Controls/LottieViewType.swift +79 -0
  157. package/Sources/Public/DotLottie/DotLottieConfiguration.swift +24 -0
  158. package/Sources/Public/DotLottie/DotLottieFile.swift +21 -6
  159. package/Sources/Public/DotLottie/DotLottieFileHelpers.swift +79 -0
  160. package/Sources/Public/DynamicProperties/AnimationKeypath.swift +11 -1
  161. package/Sources/Public/DynamicProperties/ValueProviders/ColorValueProvider.swift +14 -0
  162. package/Sources/Public/DynamicProperties/ValueProviders/FloatValueProvider.swift +13 -0
  163. package/Sources/Public/DynamicProperties/ValueProviders/GradientValueProvider.swift +22 -5
  164. package/Sources/Public/DynamicProperties/ValueProviders/PointValueProvider.swift +14 -0
  165. package/Sources/Public/DynamicProperties/ValueProviders/SizeValueProvider.swift +13 -0
  166. package/Sources/Public/FontProvider/AnimationFontProvider.swift +8 -0
  167. package/Sources/Public/ImageProvider/AnimationImageProvider.swift +24 -0
  168. package/Sources/Public/Keyframes/Keyframe.swift +6 -0
  169. package/Sources/Public/Primitives/Vectors.swift +2 -2
  170. package/Sources/Public/TextProvider/AnimationTextProvider.swift +79 -6
  171. package/Sources/Public/iOS/AnimationSubview.swift +1 -1
  172. package/Sources/Public/iOS/BundleImageProvider.swift +16 -2
  173. package/Sources/Public/iOS/Compatibility/CompatibleAnimationView.swift +6 -4
  174. package/Sources/Public/iOS/FilepathImageProvider.swift +22 -3
  175. package/Sources/Public/iOS/LottieAnimationViewBase.swift +7 -1
  176. package/Sources/Public/macOS/BundleImageProvider.macOS.swift +15 -1
  177. package/Sources/Public/macOS/FilepathImageProvider.macOS.swift +21 -2
  178. package/lottie-ios.podspec +2 -1
  179. package/package.json +1 -1
  180. package/Sources/Private/Model/DotLottie/DotLottieConfiguration.swift +0 -15
  181. /package/Sources/Private/{Model/DotLottie → EmbeddedLibraries}/ZipFoundation/Archive+Helpers.swift +0 -0
  182. /package/Sources/Private/{Model/DotLottie → EmbeddedLibraries}/ZipFoundation/Archive+Progress.swift +0 -0
  183. /package/Sources/Private/{Model/DotLottie → EmbeddedLibraries}/ZipFoundation/Archive+Reading.swift +0 -0
  184. /package/Sources/Private/{Model/DotLottie → EmbeddedLibraries}/ZipFoundation/Archive+ReadingDeprecated.swift +0 -0
  185. /package/Sources/Private/{Model/DotLottie → EmbeddedLibraries}/ZipFoundation/Archive+WritingDeprecated.swift +0 -0
  186. /package/Sources/Private/{Model/DotLottie → EmbeddedLibraries}/ZipFoundation/Archive+ZIP64.swift +0 -0
  187. /package/Sources/Private/{Model/DotLottie → EmbeddedLibraries}/ZipFoundation/Data+CompressionDeprecated.swift +0 -0
  188. /package/Sources/Private/{Model/DotLottie → EmbeddedLibraries}/ZipFoundation/Data+Serialization.swift +0 -0
  189. /package/Sources/Private/{Model/DotLottie → EmbeddedLibraries}/ZipFoundation/Entry+Serialization.swift +0 -0
  190. /package/Sources/Private/{Model/DotLottie → EmbeddedLibraries}/ZipFoundation/Entry+ZIP64.swift +0 -0
  191. /package/Sources/Private/{Model/DotLottie → EmbeddedLibraries}/ZipFoundation/Entry.swift +0 -0
  192. /package/Sources/Private/{Model/DotLottie → EmbeddedLibraries}/ZipFoundation/README.md +0 -0
  193. /package/Sources/Private/{Model/DotLottie → EmbeddedLibraries}/ZipFoundation/URL+ZIP.swift +0 -0
@@ -55,112 +55,252 @@
55
55
  <BreakpointProxy
56
56
  BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint">
57
57
  <BreakpointContent
58
- uuid = "69613CF7-1A73-4964-BA21-D493D8A4F285"
58
+ uuid = "4801815C-7DE8-430B-B7F8-900C71CB5F58"
59
59
  shouldBeEnabled = "No"
60
+ condition = "customizableProperty.name.map { $0.rawValue } == [&quot;Position&quot;]"
60
61
  ignoreCount = "0"
61
62
  continueAfterRunningActions = "No"
62
- filePath = "Sources/Private/CoreAnimation/Animations/CAAnimation+TimingConfiguration.swift"
63
+ filePath = "Sources/Private/CoreAnimation/Animations/CALayer+addAnimation.swift"
63
64
  startingColumnNumber = "9223372036854775807"
64
65
  endingColumnNumber = "9223372036854775807"
65
- startingLineNumber = "24"
66
- endingLineNumber = "24"
67
- landmarkName = "timed(with:for:)"
68
- landmarkType = "7">
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&lt;&#x3c4;_0_0&gt;(for: Lottie.LayerProperty&lt;&#x3c4;_0_0&gt;, context: Lottie.LayerAnimationContext) throws -&gt; Swift.Optional&lt;__C.CAPropertyAnimation&gt;"
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&lt;&#x3c4;_0_0&gt;(for: Lottie.LayerProperty&lt;&#x3c4;_0_0&gt;, context: Lottie.LayerAnimationContext) throws -&gt; Swift.Optional&lt;__C.CAPropertyAnimation&gt;"
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 = "F26C2C9A-5A5F-482E-9611-B74F8D65E1D9"
75
- shouldBeEnabled = "Yes"
107
+ uuid = "F52F692F-1F08-4469-8EE8-C10D7FC89847"
108
+ shouldBeEnabled = "No"
109
+ condition = "context.currentKeypath.fullPath.contains(&quot;Group 1&quot;)"
76
110
  ignoreCount = "0"
77
111
  continueAfterRunningActions = "No"
78
- filePath = "Sources/Private/Utility/Extensions/DataExtension.swift"
112
+ filePath = "Sources/Private/CoreAnimation/Layers/ShapeItemLayer.swift"
79
113
  startingColumnNumber = "9223372036854775807"
80
114
  endingColumnNumber = "9223372036854775807"
81
- startingLineNumber = "31"
82
- endingLineNumber = "31"
83
- landmarkName = "init(assetName:in:)"
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 = "780F4614-9704-4CED-973D-AA8D154C4D4E"
124
+ uuid = "B61AB02D-FB91-45DD-BAA4-59D15A088394"
91
125
  shouldBeEnabled = "No"
92
126
  ignoreCount = "0"
93
127
  continueAfterRunningActions = "No"
94
- filePath = "Sources/Private/CoreAnimation/Layers/ShapeLayer.swift"
128
+ filePath = "Sources/Private/CoreAnimation/Animations/ShapeAnimation.swift"
95
129
  startingColumnNumber = "9223372036854775807"
96
130
  endingColumnNumber = "9223372036854775807"
97
- startingLineNumber = "241"
98
- endingLineNumber = "241"
99
- landmarkName = "CALayer"
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 = "7317D33F-83F7-487F-92D8-361AFDC3108F"
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/AnimationLayer.swift"
144
+ filePath = "Sources/Private/CoreAnimation/Layers/PreCompLayer.swift"
111
145
  startingColumnNumber = "9223372036854775807"
112
146
  endingColumnNumber = "9223372036854775807"
113
- startingLineNumber = "59"
114
- endingLineNumber = "59"
115
- landmarkName = "addingKeypathComponent(_:)"
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 -&gt; ()"
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 -&gt; ()"
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 -&gt; ()"
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 = "4801815C-7DE8-430B-B7F8-900C71CB5F58"
123
- shouldBeEnabled = "No"
124
- condition = "customizableProperty.name.map { $0.rawValue } == [&quot;Position&quot;]"
203
+ uuid = "E5D4F221-8220-42A8-BB35-32D5BEE1328B"
204
+ shouldBeEnabled = "Yes"
125
205
  ignoreCount = "0"
126
206
  continueAfterRunningActions = "No"
127
- filePath = "Sources/Private/CoreAnimation/Animations/CALayer+addAnimation.swift"
207
+ filePath = "Sources/Private/EmbeddedLibraries/EpoxyCore/SwiftUI/LayoutUtilities/SwiftUIMeasurementContainer.swift"
128
208
  startingColumnNumber = "9223372036854775807"
129
209
  endingColumnNumber = "9223372036854775807"
130
- startingLineNumber = "105"
131
- endingLineNumber = "105"
132
- landmarkName = "CALayer"
133
- landmarkType = "21">
210
+ startingLineNumber = "411"
211
+ endingLineNumber = "411"
212
+ landmarkName = "systemLayoutFittingIntrinsicWidthFixedHeight(_:priority:)"
213
+ landmarkType = "7">
134
214
  <Locations>
135
215
  <Location
136
- uuid = "4801815C-7DE8-430B-B7F8-900C71CB5F58 - a53351c05a040cfb"
216
+ uuid = "E5D4F221-8220-42A8-BB35-32D5BEE1328B - 12a91848e5910a61"
137
217
  shouldBeEnabled = "Yes"
138
218
  ignoreCount = "0"
139
219
  continueAfterRunningActions = "No"
140
- symbolName = "__C.CALayer.customizedAnimation&lt;&#x3c4;_0_0&gt;(for: Lottie.LayerProperty&lt;&#x3c4;_0_0&gt;, context: Lottie.LayerAnimationContext) throws -&gt; Swift.Optional&lt;__C.CAPropertyAnimation&gt;"
220
+ symbolName = "__C.UIView.systemLayoutFittingIntrinsicWidthFixedHeight(_: CoreGraphics.CGFloat, priority: __C.UILayoutPriority) -&gt; __C.CGSize"
141
221
  moduleName = "Lottie"
142
222
  usesParentBreakpointCondition = "Yes"
143
- urlString = "file:///Users/calstephens/Documents/lottie/Sources/Private/CoreAnimation/Animations/CALayer+addAnimation.swift"
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 = "106"
147
- endingLineNumber = "106"
148
- offsetFromSymbolStart = "156">
226
+ startingLineNumber = "412"
227
+ endingLineNumber = "412"
228
+ offsetFromSymbolStart = "116">
149
229
  </Location>
150
230
  <Location
151
- uuid = "4801815C-7DE8-430B-B7F8-900C71CB5F58 - a53351c05a040cfb"
231
+ uuid = "E5D4F221-8220-42A8-BB35-32D5BEE1328B - 88a2ef8955d88f92"
152
232
  shouldBeEnabled = "Yes"
153
233
  ignoreCount = "0"
154
234
  continueAfterRunningActions = "No"
155
- symbolName = "__C.CALayer.customizedAnimation&lt;&#x3c4;_0_0&gt;(for: Lottie.LayerProperty&lt;&#x3c4;_0_0&gt;, context: Lottie.LayerAnimationContext) throws -&gt; Swift.Optional&lt;__C.CAPropertyAnimation&gt;"
235
+ symbolName = "__C.UIView.systemLayoutFittingIntrinsicWidthFixedHeight(_: CoreGraphics.CGFloat, priority: __C.UILayoutPriority) -&gt; __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) -&gt; __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) -&gt; __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) -&gt; __C.CGSize"
156
281
  moduleName = "Lottie"
157
282
  usesParentBreakpointCondition = "Yes"
158
- urlString = "file:///Users/calstephens/Documents/lottie/Sources/Private/CoreAnimation/Animations/CALayer+addAnimation.swift"
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 = "106"
162
- endingLineNumber = "106"
163
- offsetFromSymbolStart = "220">
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) -&gt; __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 = "F52F692F-1F08-4469-8EE8-C10D7FC89847"
172
- shouldBeEnabled = "No"
173
- condition = "context.currentKeypath.fullPath.contains(&quot;Group 1&quot;)"
311
+ uuid = "1B4030EA-5C63-4382-BA53-C41BB0EA078E"
312
+ shouldBeEnabled = "Yes"
174
313
  ignoreCount = "0"
175
314
  continueAfterRunningActions = "No"
176
- filePath = "Sources/Private/CoreAnimation/Layers/ShapeItemLayer.swift"
315
+ filePath = "Sources/Private/EmbeddedLibraries/EpoxyCore/SwiftUI/LayoutUtilities/SwiftUIMeasurementContainer.swift"
177
316
  startingColumnNumber = "9223372036854775807"
178
317
  endingColumnNumber = "9223372036854775807"
179
- startingLineNumber = "342"
180
- endingLineNumber = "342"
181
- landmarkName = "`for`(_:)"
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 = "A8A829E3-8C9D-40A2-96C0-111C9B6F69B9"
189
- shouldBeEnabled = "No"
327
+ uuid = "7043C7FC-0028-426B-91A7-E05945E62122"
328
+ shouldBeEnabled = "Yes"
190
329
  ignoreCount = "0"
191
330
  continueAfterRunningActions = "No"
192
- filePath = "Sources/Private/CoreAnimation/Animations/LayerProperty.swift"
331
+ filePath = "Sources/Private/EmbeddedLibraries/EpoxyCore/SwiftUI/LayoutUtilities/SwiftUIMeasurementContainer.swift"
193
332
  startingColumnNumber = "9223372036854775807"
194
333
  endingColumnNumber = "9223372036854775807"
195
- startingLineNumber = "306"
196
- endingLineNumber = "306"
197
- landmarkName = "rotation"
198
- landmarkType = "24">
334
+ startingLineNumber = "393"
335
+ endingLineNumber = "393"
336
+ landmarkName = "systemLayoutFittingIntrinsicHeightFixedWidth(_:priority:)"
337
+ landmarkType = "7">
199
338
  <Locations>
200
339
  <Location
201
- uuid = "A8A829E3-8C9D-40A2-96C0-111C9B6F69B9 - 6c551e311a4aacb0"
340
+ uuid = "7043C7FC-0028-426B-91A7-E05945E62122 - 94200cadb594d8f7"
202
341
  shouldBeEnabled = "Yes"
203
342
  ignoreCount = "0"
204
343
  continueAfterRunningActions = "No"
205
- symbolName = "closure #1 (Any) -&gt; Swift.Optional&lt;CoreGraphics.CGFloat&gt; in static Lottie.CustomizableProperty.scaleY.getter : Lottie.CustomizableProperty&lt;CoreGraphics.CGFloat&gt;"
344
+ symbolName = "__C.UIView.systemLayoutFittingIntrinsicHeightFixedWidth(_: CoreGraphics.CGFloat, priority: __C.UILayoutPriority) -&gt; __C.CGSize"
206
345
  moduleName = "Lottie"
207
346
  usesParentBreakpointCondition = "Yes"
208
- urlString = "file:///Users/calstephens/Documents/lottie/Sources/Private/CoreAnimation/Animations/LayerProperty.swift"
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 = "292"
212
- endingLineNumber = "292"
213
- offsetFromSymbolStart = "296">
350
+ startingLineNumber = "393"
351
+ endingLineNumber = "393"
352
+ offsetFromSymbolStart = "124">
214
353
  </Location>
215
354
  <Location
216
- uuid = "A8A829E3-8C9D-40A2-96C0-111C9B6F69B9 - 6c551e311a4aacb0"
355
+ uuid = "7043C7FC-0028-426B-91A7-E05945E62122 - e2bfb6c05dd5d04"
217
356
  shouldBeEnabled = "Yes"
218
357
  ignoreCount = "0"
219
358
  continueAfterRunningActions = "No"
220
- symbolName = "closure #1 (Any) -&gt; Swift.Optional&lt;CoreGraphics.CGFloat&gt; in static Lottie.CustomizableProperty.scaleY.getter : Lottie.CustomizableProperty&lt;CoreGraphics.CGFloat&gt;"
221
- moduleName = "Lottie"
359
+ symbolName = "__C.UIView.systemLayoutFittingIntrinsicHeightFixedWidth(_: CoreGraphics.CGFloat, priority: __C.UILayoutPriority) -&gt; __C.CGSize"
360
+ moduleName = "Example (Multiplatform)"
222
361
  usesParentBreakpointCondition = "Yes"
223
- urlString = "file:///Users/calstephens/Documents/lottie/Sources/Private/CoreAnimation/Animations/LayerProperty.swift"
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 = "292"
227
- endingLineNumber = "292"
228
- offsetFromSymbolStart = "344">
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) -&gt; __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) -&gt; __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 = "083F77B7-FF28-4132-ADBB-D0EA9B91C736 - 6c551e311a4ab35d"
400
+ uuid = "7043C7FC-0028-426B-91A7-E05945E62122 - 94200cadb594d8f7"
250
401
  shouldBeEnabled = "Yes"
251
402
  ignoreCount = "0"
252
403
  continueAfterRunningActions = "No"
253
- symbolName = "closure #1 (Any) -&gt; Swift.Optional&lt;CoreGraphics.CGFloat&gt; in static Lottie.CustomizableProperty.scaleX.getter : Lottie.CustomizableProperty&lt;CoreGraphics.CGFloat&gt;"
404
+ symbolName = "__C.UIView.systemLayoutFittingIntrinsicHeightFixedWidth(_: CoreGraphics.CGFloat, priority: __C.UILayoutPriority) -&gt; __C.CGSize"
254
405
  moduleName = "Lottie"
255
406
  usesParentBreakpointCondition = "Yes"
256
- urlString = "file:///Users/calstephens/Documents/lottie/Sources/Private/CoreAnimation/Animations/LayerProperty.swift"
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 = "279"
260
- endingLineNumber = "279"
261
- offsetFromSymbolStart = "296">
410
+ startingLineNumber = "393"
411
+ endingLineNumber = "393"
412
+ offsetFromSymbolStart = "128">
262
413
  </Location>
263
414
  <Location
264
- uuid = "083F77B7-FF28-4132-ADBB-D0EA9B91C736 - 6c551e311a4ab35d"
415
+ uuid = "7043C7FC-0028-426B-91A7-E05945E62122 - 94200cadb594d8f7"
265
416
  shouldBeEnabled = "Yes"
266
417
  ignoreCount = "0"
267
418
  continueAfterRunningActions = "No"
268
- symbolName = "closure #1 (Any) -&gt; Swift.Optional&lt;CoreGraphics.CGFloat&gt; in static Lottie.CustomizableProperty.scaleX.getter : Lottie.CustomizableProperty&lt;CoreGraphics.CGFloat&gt;"
419
+ symbolName = "__C.UIView.systemLayoutFittingIntrinsicHeightFixedWidth(_: CoreGraphics.CGFloat, priority: __C.UILayoutPriority) -&gt; __C.CGSize"
269
420
  moduleName = "Lottie"
270
421
  usesParentBreakpointCondition = "Yes"
271
- urlString = "file:///Users/calstephens/Documents/lottie/Sources/Private/CoreAnimation/Animations/LayerProperty.swift"
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 = "279"
275
- endingLineNumber = "279"
276
- offsetFromSymbolStart = "344">
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 = "232AD61E-2983-4DD6-A6D6-721AA2D12700"
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/Animations/LayerProperty.swift"
500
+ filePath = "Sources/Private/CoreAnimation/Layers/BaseAnimationLayer.swift"
289
501
  startingColumnNumber = "9223372036854775807"
290
502
  endingColumnNumber = "9223372036854775807"
291
- startingLineNumber = "305"
292
- endingLineNumber = "305"
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 = "DE9A3966-371D-4974-992F-6F20AF21055B"
510
+ uuid = "BD2B1B69-E42C-4C98-860F-8C129397EEE7"
301
511
  shouldBeEnabled = "No"
302
512
  ignoreCount = "0"
303
513
  continueAfterRunningActions = "No"
304
- filePath = "Sources/Private/CoreAnimation/Animations/StrokeAnimation.swift"
514
+ filePath = "Sources/Private/Utility/Extensions/AnimationKeypathExtension.swift"
305
515
  startingColumnNumber = "9223372036854775807"
306
516
  endingColumnNumber = "9223372036854775807"
307
- startingLineNumber = "73"
308
- endingLineNumber = "73"
309
- landmarkName = "addStrokeAnimations(for:context:)"
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 = "B61AB02D-FB91-45DD-BAA4-59D15A088394"
526
+ uuid = "7F8F379C-35B0-4F4B-B25F-4A6D5910F1DA"
317
527
  shouldBeEnabled = "No"
318
528
  ignoreCount = "0"
319
529
  continueAfterRunningActions = "No"
320
- filePath = "Sources/Private/CoreAnimation/Animations/ShapeAnimation.swift"
530
+ filePath = "Sources/Private/Utility/Extensions/AnimationKeypathExtension.swift"
321
531
  startingColumnNumber = "9223372036854775807"
322
532
  endingColumnNumber = "9223372036854775807"
323
- startingLineNumber = "116"
324
- endingLineNumber = "116"
325
- landmarkName = "Trim"
326
- landmarkType = "21">
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>