lottie-ios 4.2.0 → 4.3.0

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 (192) 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 +1542 -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 +346 -102
  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/DropShadowAnimation.swift +160 -0
  20. package/Sources/Private/CoreAnimation/Animations/LayerProperty.swift +83 -10
  21. package/Sources/Private/CoreAnimation/Animations/TransformAnimations.swift +85 -79
  22. package/Sources/Private/CoreAnimation/CoreAnimationLayer.swift +7 -7
  23. package/Sources/Private/CoreAnimation/Extensions/Keyframes+combined.swift +67 -6
  24. package/Sources/Private/CoreAnimation/Layers/AnimationLayer.swift +2 -2
  25. package/Sources/Private/CoreAnimation/Layers/BaseCompositionLayer.swift +9 -0
  26. package/Sources/Private/CoreAnimation/Layers/ImageLayer.swift +1 -0
  27. package/Sources/Private/CoreAnimation/Layers/LayerModel+makeAnimationLayer.swift +1 -1
  28. package/Sources/Private/CoreAnimation/Layers/RepeaterLayer.swift +2 -0
  29. package/Sources/Private/CoreAnimation/Layers/ShapeLayer.swift +11 -13
  30. package/Sources/Private/CoreAnimation/Layers/SolidLayer.swift +20 -5
  31. package/Sources/Private/CoreAnimation/Layers/TextLayer.swift +13 -3
  32. package/Sources/Private/CoreAnimation/ValueProviderStore.swift +6 -4
  33. package/Sources/Private/EmbeddedLibraries/EpoxyCore/Diffing/Collection+Diff.swift +263 -0
  34. package/Sources/Private/EmbeddedLibraries/EpoxyCore/Diffing/Diffable.swift +18 -0
  35. package/Sources/Private/EmbeddedLibraries/EpoxyCore/Diffing/DiffableSection.swift +16 -0
  36. package/Sources/Private/EmbeddedLibraries/EpoxyCore/Diffing/IndexChangeset.swift +187 -0
  37. package/Sources/Private/EmbeddedLibraries/EpoxyCore/Diffing/SectionedChangeset.swift +32 -0
  38. package/Sources/Private/EmbeddedLibraries/EpoxyCore/Logging/EpoxyLogger.swift +99 -0
  39. package/Sources/Private/EmbeddedLibraries/EpoxyCore/Model/CallbackContextEpoxyModeled.swift +8 -0
  40. package/Sources/Private/EmbeddedLibraries/EpoxyCore/Model/EpoxyModelArrayBuilder.swift +48 -0
  41. package/Sources/Private/EmbeddedLibraries/EpoxyCore/Model/EpoxyModelProperty.swift +158 -0
  42. package/Sources/Private/EmbeddedLibraries/EpoxyCore/Model/EpoxyModelStorage.swift +88 -0
  43. package/Sources/Private/EmbeddedLibraries/EpoxyCore/Model/EpoxyModeled.swift +54 -0
  44. package/Sources/Private/EmbeddedLibraries/EpoxyCore/Model/Internal/AnyEpoxyModelProperty.swift +29 -0
  45. package/Sources/Private/EmbeddedLibraries/EpoxyCore/Model/Internal/ClassReference.swift +39 -0
  46. package/Sources/Private/EmbeddedLibraries/EpoxyCore/Model/Providers/AnimatedProviding.swift +10 -0
  47. package/Sources/Private/EmbeddedLibraries/EpoxyCore/Model/Providers/DataIDProviding.swift +57 -0
  48. package/Sources/Private/EmbeddedLibraries/EpoxyCore/Model/Providers/DidDisplayProviding.swift +41 -0
  49. package/Sources/Private/EmbeddedLibraries/EpoxyCore/Model/Providers/DidEndDisplayingProviding.swift +41 -0
  50. package/Sources/Private/EmbeddedLibraries/EpoxyCore/Model/Providers/DidSelectProviding.swift +36 -0
  51. package/Sources/Private/EmbeddedLibraries/EpoxyCore/Model/Providers/ErasedContentProviding.swift +49 -0
  52. package/Sources/Private/EmbeddedLibraries/EpoxyCore/Model/Providers/MakeViewProviding.swift +60 -0
  53. package/Sources/Private/EmbeddedLibraries/EpoxyCore/Model/Providers/SetBehaviorsProviding.swift +38 -0
  54. package/Sources/Private/EmbeddedLibraries/EpoxyCore/Model/Providers/SetContentProviding.swift +38 -0
  55. package/Sources/Private/EmbeddedLibraries/EpoxyCore/Model/Providers/StyleIDProviding.swift +37 -0
  56. package/Sources/Private/EmbeddedLibraries/EpoxyCore/Model/Providers/TraitCollectionProviding.swift +14 -0
  57. package/Sources/Private/EmbeddedLibraries/EpoxyCore/Model/Providers/ViewDifferentiatorProviding.swift +34 -0
  58. package/Sources/Private/EmbeddedLibraries/EpoxyCore/Model/Providers/ViewProviding.swift +13 -0
  59. package/Sources/Private/EmbeddedLibraries/EpoxyCore/Model/Providers/WillDisplayProviding.swift +41 -0
  60. package/Sources/Private/EmbeddedLibraries/EpoxyCore/Model/ViewEpoxyModeled.swift +10 -0
  61. package/Sources/Private/EmbeddedLibraries/EpoxyCore/README.md +31 -0
  62. package/Sources/Private/EmbeddedLibraries/EpoxyCore/SwiftUI/EpoxySwiftUIHostingController.swift +46 -0
  63. package/Sources/Private/EmbeddedLibraries/EpoxyCore/SwiftUI/EpoxySwiftUIHostingView.swift +391 -0
  64. package/Sources/Private/EmbeddedLibraries/EpoxyCore/SwiftUI/EpoxySwiftUIIntrinsicContentSizeInvalidator.swift +44 -0
  65. package/Sources/Private/EmbeddedLibraries/EpoxyCore/SwiftUI/EpoxySwiftUILayoutMargins.swift +51 -0
  66. package/Sources/Private/EmbeddedLibraries/EpoxyCore/SwiftUI/EpoxyableView+SwiftUIView.swift +172 -0
  67. package/Sources/Private/EmbeddedLibraries/EpoxyCore/SwiftUI/LayoutUtilities/MeasuringViewRepresentable.swift +128 -0
  68. package/Sources/Private/EmbeddedLibraries/EpoxyCore/SwiftUI/LayoutUtilities/SwiftUIMeasurementContainer.swift +452 -0
  69. package/Sources/Private/EmbeddedLibraries/EpoxyCore/SwiftUI/SwiftUIView.swift +148 -0
  70. package/Sources/Private/EmbeddedLibraries/EpoxyCore/SwiftUI/UIView+SwiftUIView.swift +40 -0
  71. package/Sources/Private/EmbeddedLibraries/EpoxyCore/SwiftUI/UIViewConfiguringSwiftUIView.swift +43 -0
  72. package/Sources/Private/EmbeddedLibraries/EpoxyCore/Views/BehaviorsConfigurableView.swift +45 -0
  73. package/Sources/Private/EmbeddedLibraries/EpoxyCore/Views/ContentConfigurableView.swift +36 -0
  74. package/Sources/Private/EmbeddedLibraries/EpoxyCore/Views/EpoxyableView.swift +5 -0
  75. package/Sources/Private/EmbeddedLibraries/EpoxyCore/Views/StyledView.swift +42 -0
  76. package/Sources/Private/EmbeddedLibraries/EpoxyCore/Views/ViewType.swift +51 -0
  77. package/Sources/Private/EmbeddedLibraries/README.md +27 -0
  78. package/Sources/Private/{Model/DotLottie → EmbeddedLibraries}/ZipFoundation/Archive+BackingConfiguration.swift +4 -4
  79. package/Sources/Private/{Model/DotLottie → EmbeddedLibraries}/ZipFoundation/Archive+MemoryFile.swift +2 -2
  80. package/Sources/Private/{Model/DotLottie → EmbeddedLibraries}/ZipFoundation/Archive+Writing.swift +4 -4
  81. package/Sources/Private/{Model/DotLottie → EmbeddedLibraries}/ZipFoundation/Archive.swift +8 -7
  82. package/Sources/Private/{Model/DotLottie → EmbeddedLibraries}/ZipFoundation/Data+Compression.swift +5 -5
  83. package/Sources/Private/{Model/DotLottie → EmbeddedLibraries}/ZipFoundation/FileManager+ZIP.swift +4 -4
  84. package/Sources/Private/MainThread/LayerContainers/CompLayers/ImageCompositionLayer.swift +6 -0
  85. package/Sources/Private/MainThread/LayerContainers/CompLayers/MaskContainerLayer.swift +3 -1
  86. package/Sources/Private/MainThread/LayerContainers/CompLayers/PreCompositionLayer.swift +18 -5
  87. package/Sources/Private/MainThread/LayerContainers/CompLayers/TextCompositionLayer.swift +31 -3
  88. package/Sources/Private/MainThread/LayerContainers/MainThreadAnimationLayer.swift +33 -8
  89. package/Sources/Private/MainThread/LayerContainers/Utility/CachedImageProvider.swift +8 -1
  90. package/Sources/Private/MainThread/LayerContainers/Utility/CompositionLayersInitializer.swift +13 -4
  91. package/Sources/Private/MainThread/LayerContainers/Utility/LayerFontProvider.swift +2 -2
  92. package/Sources/Private/MainThread/LayerContainers/Utility/LayerImageProvider.swift +1 -0
  93. package/Sources/Private/MainThread/LayerContainers/Utility/LayerTextProvider.swift +4 -4
  94. package/Sources/Private/MainThread/NodeRenderSystem/NodeProperties/Protocols/NodePropertyMap.swift +1 -1
  95. package/Sources/Private/MainThread/NodeRenderSystem/Nodes/ModifierNodes/TrimPathNode.swift +3 -1
  96. package/Sources/Private/MainThread/NodeRenderSystem/Nodes/OutputNodes/Renderables/GradientFillRenderer.swift +2 -1
  97. package/Sources/Private/MainThread/NodeRenderSystem/Nodes/OutputNodes/Renderables/LegacyGradientFillRenderer.swift +2 -1
  98. package/Sources/Private/MainThread/NodeRenderSystem/Nodes/RenderNodes/GradientFillNode.swift +1 -1
  99. package/Sources/Private/MainThread/NodeRenderSystem/Nodes/RenderNodes/GradientStrokeNode.swift +2 -2
  100. package/Sources/Private/MainThread/NodeRenderSystem/Nodes/RenderNodes/StrokeNode.swift +1 -1
  101. package/Sources/Private/MainThread/NodeRenderSystem/Nodes/Text/TextAnimatorNode.swift +1 -1
  102. package/Sources/Private/MainThread/NodeRenderSystem/RenderLayers/ShapeContainerLayer.swift +6 -2
  103. package/Sources/Private/Model/Assets/Asset.swift +8 -0
  104. package/Sources/Private/Model/Assets/AssetLibrary.swift +2 -2
  105. package/Sources/Private/Model/Assets/ImageAsset.swift +3 -3
  106. package/Sources/Private/Model/DotLottie/DotLottieAnimation.swift +16 -2
  107. package/Sources/Private/Model/DotLottie/DotLottieImageProvider.swift +20 -7
  108. package/Sources/Private/Model/Extensions/KeyedDecodingContainerExtensions.swift +26 -0
  109. package/Sources/Private/Model/Keyframes/KeyframeGroup.swift +8 -5
  110. package/Sources/Private/Model/LayerEffects/DropShadowEffect.swift +45 -0
  111. package/Sources/Private/Model/LayerEffects/EffectValues/ColorEffectValue.swift +38 -0
  112. package/Sources/Private/Model/LayerEffects/EffectValues/EffectValue.swift +98 -0
  113. package/Sources/Private/Model/LayerEffects/EffectValues/Vector1DEffectValue.swift +38 -0
  114. package/Sources/Private/Model/LayerEffects/LayerEffect.swift +103 -0
  115. package/Sources/Private/Model/LayerStyles/DropShadowStyle.swift +72 -0
  116. package/Sources/Private/Model/LayerStyles/LayerStyle.swift +85 -0
  117. package/Sources/Private/Model/Layers/LayerModel.swift +27 -0
  118. package/Sources/Private/Model/Objects/Marker.swift +1 -1
  119. package/Sources/Private/Model/Objects/Transform.swift +1 -2
  120. package/Sources/Private/Model/ShapeItems/GradientFill.swift +1 -1
  121. package/Sources/Private/Model/ShapeItems/GradientStroke.swift +2 -2
  122. package/Sources/Private/Model/ShapeItems/Merge.swift +1 -1
  123. package/Sources/Private/Model/ShapeItems/ShapeItem.swift +31 -26
  124. package/Sources/Private/Model/ShapeItems/ShapeTransform.swift +0 -9
  125. package/Sources/Private/Model/ShapeItems/Star.swift +1 -1
  126. package/Sources/Private/Model/Text/Font.swift +2 -2
  127. package/Sources/Private/Model/Text/Glyph.swift +1 -1
  128. package/Sources/Private/RootAnimationLayer.swift +2 -2
  129. package/Sources/Private/Utility/Debugging/LayerDebugging.swift +3 -1
  130. package/Sources/Private/Utility/Extensions/AnimationKeypathExtension.swift +32 -2
  131. package/Sources/Private/Utility/Helpers/AnimationContext.swift +4 -2
  132. package/Sources/Private/Utility/Helpers/AnyEquatable.swift +24 -0
  133. package/Sources/Private/Utility/Helpers/Binding+Map.swift +18 -0
  134. package/Sources/Private/Utility/Helpers/View+ValueChanged.swift +20 -0
  135. package/Sources/Private/Utility/LottieAnimationSource.swift +41 -0
  136. package/Sources/Private/Utility/Primitives/BezierPath.swift +2 -2
  137. package/Sources/Private/Utility/Primitives/BezierPathRoundExtension.swift +2 -2
  138. package/Sources/Private/Utility/Primitives/VectorsExtensions.swift +1 -1
  139. package/Sources/Public/Animation/LottieAnimation.swift +21 -2
  140. package/Sources/Public/Animation/LottieAnimationLayer.swift +1464 -0
  141. package/Sources/Public/Animation/LottieAnimationView.swift +258 -735
  142. package/Sources/Public/Animation/LottiePlaybackMode.swift +117 -0
  143. package/Sources/Public/Animation/LottieView.swift +462 -0
  144. package/Sources/Public/AnimationCache/AnimationCacheProvider.swift +2 -1
  145. package/Sources/Public/AnimationCache/DefaultAnimationCache.swift +5 -6
  146. package/Sources/Public/Configuration/DecodingStrategy.swift +15 -0
  147. package/Sources/Public/Configuration/LottieConfiguration.swift +47 -0
  148. package/Sources/Public/Configuration/ReducedMotionOption.swift +114 -0
  149. package/Sources/Public/{LottieConfiguration.swift → Configuration/RenderingEngineOption.swift} +2 -57
  150. package/Sources/Public/{iOS → Controls}/AnimatedButton.swift +56 -13
  151. package/Sources/Public/{iOS → Controls}/AnimatedControl.swift +80 -8
  152. package/Sources/Public/{iOS → Controls}/AnimatedSwitch.swift +71 -31
  153. package/Sources/Public/Controls/LottieButton.swift +122 -0
  154. package/Sources/Public/Controls/LottieSwitch.swift +144 -0
  155. package/Sources/Public/Controls/LottieViewType.swift +79 -0
  156. package/Sources/Public/DotLottie/DotLottieConfiguration.swift +24 -0
  157. package/Sources/Public/DotLottie/DotLottieFile.swift +21 -6
  158. package/Sources/Public/DotLottie/DotLottieFileHelpers.swift +79 -0
  159. package/Sources/Public/DynamicProperties/AnimationKeypath.swift +11 -1
  160. package/Sources/Public/DynamicProperties/ValueProviders/ColorValueProvider.swift +14 -0
  161. package/Sources/Public/DynamicProperties/ValueProviders/FloatValueProvider.swift +13 -0
  162. package/Sources/Public/DynamicProperties/ValueProviders/GradientValueProvider.swift +22 -5
  163. package/Sources/Public/DynamicProperties/ValueProviders/PointValueProvider.swift +14 -0
  164. package/Sources/Public/DynamicProperties/ValueProviders/SizeValueProvider.swift +13 -0
  165. package/Sources/Public/FontProvider/AnimationFontProvider.swift +8 -0
  166. package/Sources/Public/ImageProvider/AnimationImageProvider.swift +24 -0
  167. package/Sources/Public/Keyframes/Keyframe.swift +6 -0
  168. package/Sources/Public/Primitives/Vectors.swift +2 -2
  169. package/Sources/Public/TextProvider/AnimationTextProvider.swift +79 -6
  170. package/Sources/Public/iOS/AnimationSubview.swift +1 -1
  171. package/Sources/Public/iOS/BundleImageProvider.swift +16 -2
  172. package/Sources/Public/iOS/Compatibility/CompatibleAnimationView.swift +2 -2
  173. package/Sources/Public/iOS/FilepathImageProvider.swift +22 -3
  174. package/Sources/Public/iOS/LottieAnimationViewBase.swift +7 -1
  175. package/Sources/Public/macOS/BundleImageProvider.macOS.swift +15 -1
  176. package/Sources/Public/macOS/FilepathImageProvider.macOS.swift +21 -2
  177. package/lottie-ios.podspec +2 -1
  178. package/package.json +1 -1
  179. package/Sources/Private/Model/DotLottie/DotLottieConfiguration.swift +0 -15
  180. /package/Sources/Private/{Model/DotLottie → EmbeddedLibraries}/ZipFoundation/Archive+Helpers.swift +0 -0
  181. /package/Sources/Private/{Model/DotLottie → EmbeddedLibraries}/ZipFoundation/Archive+Progress.swift +0 -0
  182. /package/Sources/Private/{Model/DotLottie → EmbeddedLibraries}/ZipFoundation/Archive+Reading.swift +0 -0
  183. /package/Sources/Private/{Model/DotLottie → EmbeddedLibraries}/ZipFoundation/Archive+ReadingDeprecated.swift +0 -0
  184. /package/Sources/Private/{Model/DotLottie → EmbeddedLibraries}/ZipFoundation/Archive+WritingDeprecated.swift +0 -0
  185. /package/Sources/Private/{Model/DotLottie → EmbeddedLibraries}/ZipFoundation/Archive+ZIP64.swift +0 -0
  186. /package/Sources/Private/{Model/DotLottie → EmbeddedLibraries}/ZipFoundation/Data+CompressionDeprecated.swift +0 -0
  187. /package/Sources/Private/{Model/DotLottie → EmbeddedLibraries}/ZipFoundation/Data+Serialization.swift +0 -0
  188. /package/Sources/Private/{Model/DotLottie → EmbeddedLibraries}/ZipFoundation/Entry+Serialization.swift +0 -0
  189. /package/Sources/Private/{Model/DotLottie → EmbeddedLibraries}/ZipFoundation/Entry+ZIP64.swift +0 -0
  190. /package/Sources/Private/{Model/DotLottie → EmbeddedLibraries}/ZipFoundation/Entry.swift +0 -0
  191. /package/Sources/Private/{Model/DotLottie → EmbeddedLibraries}/ZipFoundation/README.md +0 -0
  192. /package/Sources/Private/{Model/DotLottie → EmbeddedLibraries}/ZipFoundation/URL+ZIP.swift +0 -0
@@ -52,54 +52,6 @@
52
52
  </Locations>
53
53
  </BreakpointContent>
54
54
  </BreakpointProxy>
55
- <BreakpointProxy
56
- BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint">
57
- <BreakpointContent
58
- uuid = "69613CF7-1A73-4964-BA21-D493D8A4F285"
59
- shouldBeEnabled = "No"
60
- ignoreCount = "0"
61
- continueAfterRunningActions = "No"
62
- filePath = "Sources/Private/CoreAnimation/Animations/CAAnimation+TimingConfiguration.swift"
63
- startingColumnNumber = "9223372036854775807"
64
- endingColumnNumber = "9223372036854775807"
65
- startingLineNumber = "24"
66
- endingLineNumber = "24"
67
- landmarkName = "timed(with:for:)"
68
- landmarkType = "7">
69
- </BreakpointContent>
70
- </BreakpointProxy>
71
- <BreakpointProxy
72
- BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint">
73
- <BreakpointContent
74
- uuid = "F26C2C9A-5A5F-482E-9611-B74F8D65E1D9"
75
- shouldBeEnabled = "Yes"
76
- ignoreCount = "0"
77
- continueAfterRunningActions = "No"
78
- filePath = "Sources/Private/Utility/Extensions/DataExtension.swift"
79
- startingColumnNumber = "9223372036854775807"
80
- endingColumnNumber = "9223372036854775807"
81
- startingLineNumber = "31"
82
- endingLineNumber = "31"
83
- landmarkName = "init(assetName:in:)"
84
- landmarkType = "7">
85
- </BreakpointContent>
86
- </BreakpointProxy>
87
- <BreakpointProxy
88
- BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint">
89
- <BreakpointContent
90
- uuid = "780F4614-9704-4CED-973D-AA8D154C4D4E"
91
- shouldBeEnabled = "No"
92
- ignoreCount = "0"
93
- continueAfterRunningActions = "No"
94
- filePath = "Sources/Private/CoreAnimation/Layers/ShapeLayer.swift"
95
- startingColumnNumber = "9223372036854775807"
96
- endingColumnNumber = "9223372036854775807"
97
- startingLineNumber = "241"
98
- endingLineNumber = "241"
99
- landmarkName = "CALayer"
100
- landmarkType = "21">
101
- </BreakpointContent>
102
- </BreakpointProxy>
103
55
  <BreakpointProxy
104
56
  BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint">
105
57
  <BreakpointContent
@@ -185,47 +137,78 @@
185
137
  <BreakpointProxy
186
138
  BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint">
187
139
  <BreakpointContent
188
- uuid = "A8A829E3-8C9D-40A2-96C0-111C9B6F69B9"
140
+ uuid = "B61AB02D-FB91-45DD-BAA4-59D15A088394"
189
141
  shouldBeEnabled = "No"
190
142
  ignoreCount = "0"
191
143
  continueAfterRunningActions = "No"
192
- filePath = "Sources/Private/CoreAnimation/Animations/LayerProperty.swift"
144
+ filePath = "Sources/Private/CoreAnimation/Animations/ShapeAnimation.swift"
193
145
  startingColumnNumber = "9223372036854775807"
194
146
  endingColumnNumber = "9223372036854775807"
195
- startingLineNumber = "306"
196
- endingLineNumber = "306"
197
- landmarkName = "rotation"
198
- landmarkType = "24">
147
+ startingLineNumber = "116"
148
+ endingLineNumber = "116"
149
+ landmarkName = "Trim"
150
+ landmarkType = "21">
151
+ </BreakpointContent>
152
+ </BreakpointProxy>
153
+ <BreakpointProxy
154
+ BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint">
155
+ <BreakpointContent
156
+ uuid = "F1C4DA17-6BE2-4FBD-A917-AAB0466350C6"
157
+ shouldBeEnabled = "No"
158
+ ignoreCount = "0"
159
+ continueAfterRunningActions = "No"
160
+ filePath = "Sources/Private/CoreAnimation/Layers/PreCompLayer.swift"
161
+ startingColumnNumber = "9223372036854775807"
162
+ endingColumnNumber = "9223372036854775807"
163
+ startingLineNumber = "54"
164
+ endingLineNumber = "54"
165
+ landmarkName = "setup(context:)"
166
+ landmarkType = "7">
199
167
  <Locations>
200
168
  <Location
201
- uuid = "A8A829E3-8C9D-40A2-96C0-111C9B6F69B9 - 6c551e311a4aacb0"
169
+ uuid = "F1C4DA17-6BE2-4FBD-A917-AAB0466350C6 - d485919a3415bc3f"
202
170
  shouldBeEnabled = "Yes"
203
171
  ignoreCount = "0"
204
172
  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;"
173
+ symbolName = "Lottie.PreCompLayer.setup(context: Lottie.LayerContext) throws -&gt; ()"
206
174
  moduleName = "Lottie"
207
175
  usesParentBreakpointCondition = "Yes"
208
- urlString = "file:///Users/calstephens/Documents/lottie/Sources/Private/CoreAnimation/Animations/LayerProperty.swift"
176
+ urlString = "file:///Users/calstephens/Documents/lottie/Sources/Private/CoreAnimation/Layers/PreCompLayer.swift"
209
177
  startingColumnNumber = "9223372036854775807"
210
178
  endingColumnNumber = "9223372036854775807"
211
- startingLineNumber = "292"
212
- endingLineNumber = "292"
213
- offsetFromSymbolStart = "296">
179
+ startingLineNumber = "54"
180
+ endingLineNumber = "54"
181
+ offsetFromSymbolStart = "320">
214
182
  </Location>
215
183
  <Location
216
- uuid = "A8A829E3-8C9D-40A2-96C0-111C9B6F69B9 - 6c551e311a4aacb0"
184
+ uuid = "F1C4DA17-6BE2-4FBD-A917-AAB0466350C6 - d485919a3415a337"
217
185
  shouldBeEnabled = "Yes"
218
186
  ignoreCount = "0"
219
187
  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;"
188
+ symbolName = "Lottie.PreCompLayer.setup(context: Lottie.LayerContext) throws -&gt; ()"
221
189
  moduleName = "Lottie"
222
190
  usesParentBreakpointCondition = "Yes"
223
- urlString = "file:///Users/calstephens/Documents/lottie/Sources/Private/CoreAnimation/Animations/LayerProperty.swift"
191
+ urlString = "file:///Users/calstephens/Documents/lottie/Sources/Private/CoreAnimation/Layers/PreCompLayer.swift"
224
192
  startingColumnNumber = "9223372036854775807"
225
193
  endingColumnNumber = "9223372036854775807"
226
- startingLineNumber = "292"
227
- endingLineNumber = "292"
228
- offsetFromSymbolStart = "344">
194
+ startingLineNumber = "62"
195
+ endingLineNumber = "62"
196
+ offsetFromSymbolStart = "84">
197
+ </Location>
198
+ <Location
199
+ uuid = "F1C4DA17-6BE2-4FBD-A917-AAB0466350C6 - d485919a3415a337"
200
+ shouldBeEnabled = "Yes"
201
+ ignoreCount = "0"
202
+ continueAfterRunningActions = "No"
203
+ symbolName = "Lottie.PreCompLayer.setup(context: Lottie.LayerContext) throws -&gt; ()"
204
+ moduleName = "Lottie"
205
+ usesParentBreakpointCondition = "Yes"
206
+ urlString = "file:///Users/calstephens/Documents/lottie/Sources/Private/CoreAnimation/Layers/PreCompLayer.swift"
207
+ startingColumnNumber = "9223372036854775807"
208
+ endingColumnNumber = "9223372036854775807"
209
+ startingLineNumber = "62"
210
+ endingLineNumber = "62"
211
+ offsetFromSymbolStart = "172">
229
212
  </Location>
230
213
  </Locations>
231
214
  </BreakpointContent>
@@ -233,47 +216,201 @@
233
216
  <BreakpointProxy
234
217
  BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint">
235
218
  <BreakpointContent
236
- uuid = "083F77B7-FF28-4132-ADBB-D0EA9B91C736"
237
- shouldBeEnabled = "No"
219
+ uuid = "E5D4F221-8220-42A8-BB35-32D5BEE1328B"
220
+ shouldBeEnabled = "Yes"
238
221
  ignoreCount = "0"
239
222
  continueAfterRunningActions = "No"
240
- filePath = "Sources/Private/CoreAnimation/Animations/LayerProperty.swift"
223
+ filePath = "Sources/Private/EmbeddedLibraries/EpoxyCore/SwiftUI/LayoutUtilities/SwiftUIMeasurementContainer.swift"
241
224
  startingColumnNumber = "9223372036854775807"
242
225
  endingColumnNumber = "9223372036854775807"
243
- startingLineNumber = "293"
244
- endingLineNumber = "293"
245
- landmarkName = "scaleY"
246
- landmarkType = "24">
226
+ startingLineNumber = "411"
227
+ endingLineNumber = "411"
228
+ landmarkName = "systemLayoutFittingIntrinsicWidthFixedHeight(_:priority:)"
229
+ landmarkType = "7">
230
+ <Locations>
231
+ <Location
232
+ uuid = "E5D4F221-8220-42A8-BB35-32D5BEE1328B - 12a91848e5910a61"
233
+ shouldBeEnabled = "Yes"
234
+ ignoreCount = "0"
235
+ continueAfterRunningActions = "No"
236
+ symbolName = "__C.UIView.systemLayoutFittingIntrinsicWidthFixedHeight(_: CoreGraphics.CGFloat, priority: __C.UILayoutPriority) -&gt; __C.CGSize"
237
+ moduleName = "Lottie"
238
+ usesParentBreakpointCondition = "Yes"
239
+ urlString = "file:///Users/calstephens/Documents/lottie/Sources/Private/EmbeddedLibraries/EpoxyCore/SwiftUI/LayoutUtilities/SwiftUIMeasurementContainer.swift"
240
+ startingColumnNumber = "9223372036854775807"
241
+ endingColumnNumber = "9223372036854775807"
242
+ startingLineNumber = "412"
243
+ endingLineNumber = "412"
244
+ offsetFromSymbolStart = "116">
245
+ </Location>
246
+ <Location
247
+ uuid = "E5D4F221-8220-42A8-BB35-32D5BEE1328B - 88a2ef8955d88f92"
248
+ shouldBeEnabled = "Yes"
249
+ ignoreCount = "0"
250
+ continueAfterRunningActions = "No"
251
+ symbolName = "__C.UIView.systemLayoutFittingIntrinsicWidthFixedHeight(_: CoreGraphics.CGFloat, priority: __C.UILayoutPriority) -&gt; __C.CGSize"
252
+ moduleName = "Example (Multiplatform)"
253
+ usesParentBreakpointCondition = "Yes"
254
+ urlString = "file:///Users/calstephens/Documents/lottie/Sources/Private/EmbeddedLibraries/EpoxyCore/SwiftUI/LayoutUtilities/SwiftUIMeasurementContainer.swift"
255
+ startingColumnNumber = "9223372036854775807"
256
+ endingColumnNumber = "9223372036854775807"
257
+ startingLineNumber = "412"
258
+ endingLineNumber = "412"
259
+ offsetFromSymbolStart = "116">
260
+ </Location>
261
+ <Location
262
+ uuid = "E5D4F221-8220-42A8-BB35-32D5BEE1328B - 88a2ef8955d88f92"
263
+ shouldBeEnabled = "Yes"
264
+ ignoreCount = "0"
265
+ continueAfterRunningActions = "No"
266
+ symbolName = "__C.UIView.systemLayoutFittingIntrinsicWidthFixedHeight(_: CoreGraphics.CGFloat, priority: __C.UILayoutPriority) -&gt; __C.CGSize"
267
+ moduleName = "Example (Multiplatform)"
268
+ usesParentBreakpointCondition = "Yes"
269
+ urlString = "file:///Users/calstephens/Documents/lottie/Sources/Private/EmbeddedLibraries/EpoxyCore/SwiftUI/LayoutUtilities/SwiftUIMeasurementContainer.swift"
270
+ startingColumnNumber = "9223372036854775807"
271
+ endingColumnNumber = "9223372036854775807"
272
+ startingLineNumber = "412"
273
+ endingLineNumber = "412"
274
+ offsetFromSymbolStart = "100">
275
+ </Location>
276
+ <Location
277
+ uuid = "E5D4F221-8220-42A8-BB35-32D5BEE1328B - 88a2ef8955d88f92"
278
+ shouldBeEnabled = "Yes"
279
+ ignoreCount = "0"
280
+ continueAfterRunningActions = "No"
281
+ symbolName = "__C.UIView.systemLayoutFittingIntrinsicWidthFixedHeight(_: CoreGraphics.CGFloat, priority: __C.UILayoutPriority) -&gt; __C.CGSize"
282
+ moduleName = "Example (Multiplatform)"
283
+ usesParentBreakpointCondition = "Yes"
284
+ urlString = "file:///Users/calstephens/Documents/lottie/Sources/Private/EmbeddedLibraries/EpoxyCore/SwiftUI/LayoutUtilities/SwiftUIMeasurementContainer.swift"
285
+ startingColumnNumber = "9223372036854775807"
286
+ endingColumnNumber = "9223372036854775807"
287
+ startingLineNumber = "412"
288
+ endingLineNumber = "412"
289
+ offsetFromSymbolStart = "127">
290
+ </Location>
291
+ <Location
292
+ uuid = "E5D4F221-8220-42A8-BB35-32D5BEE1328B - 12a91848e5910a61"
293
+ shouldBeEnabled = "Yes"
294
+ ignoreCount = "0"
295
+ continueAfterRunningActions = "No"
296
+ symbolName = "__C.UIView.systemLayoutFittingIntrinsicWidthFixedHeight(_: CoreGraphics.CGFloat, priority: __C.UILayoutPriority) -&gt; __C.CGSize"
297
+ moduleName = "Lottie"
298
+ usesParentBreakpointCondition = "Yes"
299
+ urlString = "file:///Users/calstephens/Documents/lottie/Sources/Private/EmbeddedLibraries/EpoxyCore/SwiftUI/LayoutUtilities/SwiftUIMeasurementContainer.swift"
300
+ startingColumnNumber = "9223372036854775807"
301
+ endingColumnNumber = "9223372036854775807"
302
+ startingLineNumber = "412"
303
+ endingLineNumber = "412"
304
+ offsetFromSymbolStart = "127">
305
+ </Location>
306
+ </Locations>
307
+ </BreakpointContent>
308
+ </BreakpointProxy>
309
+ <BreakpointProxy
310
+ BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint">
311
+ <BreakpointContent
312
+ uuid = "1B4030EA-5C63-4382-BA53-C41BB0EA078E"
313
+ shouldBeEnabled = "Yes"
314
+ ignoreCount = "0"
315
+ continueAfterRunningActions = "No"
316
+ filePath = "Sources/Private/EmbeddedLibraries/EpoxyCore/SwiftUI/LayoutUtilities/SwiftUIMeasurementContainer.swift"
317
+ startingColumnNumber = "9223372036854775807"
318
+ endingColumnNumber = "9223372036854775807"
319
+ startingLineNumber = "413"
320
+ endingLineNumber = "413"
321
+ landmarkName = "systemLayoutFittingIntrinsicWidthFixedHeight(_:priority:)"
322
+ landmarkType = "7">
323
+ </BreakpointContent>
324
+ </BreakpointProxy>
325
+ <BreakpointProxy
326
+ BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint">
327
+ <BreakpointContent
328
+ uuid = "7043C7FC-0028-426B-91A7-E05945E62122"
329
+ shouldBeEnabled = "Yes"
330
+ ignoreCount = "0"
331
+ continueAfterRunningActions = "No"
332
+ filePath = "Sources/Private/EmbeddedLibraries/EpoxyCore/SwiftUI/LayoutUtilities/SwiftUIMeasurementContainer.swift"
333
+ startingColumnNumber = "9223372036854775807"
334
+ endingColumnNumber = "9223372036854775807"
335
+ startingLineNumber = "393"
336
+ endingLineNumber = "393"
337
+ landmarkName = "systemLayoutFittingIntrinsicHeightFixedWidth(_:priority:)"
338
+ landmarkType = "7">
247
339
  <Locations>
248
340
  <Location
249
- uuid = "083F77B7-FF28-4132-ADBB-D0EA9B91C736 - 6c551e311a4ab35d"
341
+ uuid = "7043C7FC-0028-426B-91A7-E05945E62122 - 94200cadb594d8f7"
250
342
  shouldBeEnabled = "Yes"
251
343
  ignoreCount = "0"
252
344
  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;"
345
+ symbolName = "__C.UIView.systemLayoutFittingIntrinsicHeightFixedWidth(_: CoreGraphics.CGFloat, priority: __C.UILayoutPriority) -&gt; __C.CGSize"
254
346
  moduleName = "Lottie"
255
347
  usesParentBreakpointCondition = "Yes"
256
- urlString = "file:///Users/calstephens/Documents/lottie/Sources/Private/CoreAnimation/Animations/LayerProperty.swift"
348
+ urlString = "file:///Users/calstephens/Documents/lottie/Sources/Private/EmbeddedLibraries/EpoxyCore/SwiftUI/LayoutUtilities/SwiftUIMeasurementContainer.swift"
349
+ startingColumnNumber = "9223372036854775807"
350
+ endingColumnNumber = "9223372036854775807"
351
+ startingLineNumber = "393"
352
+ endingLineNumber = "393"
353
+ offsetFromSymbolStart = "124">
354
+ </Location>
355
+ <Location
356
+ uuid = "7043C7FC-0028-426B-91A7-E05945E62122 - e2bfb6c05dd5d04"
357
+ shouldBeEnabled = "Yes"
358
+ ignoreCount = "0"
359
+ continueAfterRunningActions = "No"
360
+ symbolName = "__C.UIView.systemLayoutFittingIntrinsicHeightFixedWidth(_: CoreGraphics.CGFloat, priority: __C.UILayoutPriority) -&gt; __C.CGSize"
361
+ moduleName = "Example (Multiplatform)"
362
+ usesParentBreakpointCondition = "Yes"
363
+ urlString = "file:///Users/calstephens/Documents/lottie/Sources/Private/EmbeddedLibraries/EpoxyCore/SwiftUI/LayoutUtilities/SwiftUIMeasurementContainer.swift"
364
+ startingColumnNumber = "9223372036854775807"
365
+ endingColumnNumber = "9223372036854775807"
366
+ startingLineNumber = "393"
367
+ endingLineNumber = "393"
368
+ offsetFromSymbolStart = "124">
369
+ </Location>
370
+ <Location
371
+ uuid = "7043C7FC-0028-426B-91A7-E05945E62122 - e2bfb6c05dd5d04"
372
+ shouldBeEnabled = "Yes"
373
+ ignoreCount = "0"
374
+ continueAfterRunningActions = "No"
375
+ symbolName = "__C.UIView.systemLayoutFittingIntrinsicHeightFixedWidth(_: CoreGraphics.CGFloat, priority: __C.UILayoutPriority) -&gt; __C.CGSize"
376
+ moduleName = "Example (Multiplatform)"
377
+ usesParentBreakpointCondition = "Yes"
378
+ urlString = "file:///Users/calstephens/Documents/lottie/Sources/Private/EmbeddedLibraries/EpoxyCore/SwiftUI/LayoutUtilities/SwiftUIMeasurementContainer.swift"
379
+ startingColumnNumber = "9223372036854775807"
380
+ endingColumnNumber = "9223372036854775807"
381
+ startingLineNumber = "393"
382
+ endingLineNumber = "393"
383
+ offsetFromSymbolStart = "108">
384
+ </Location>
385
+ <Location
386
+ uuid = "7043C7FC-0028-426B-91A7-E05945E62122 - e2bfb6c05dd5d04"
387
+ shouldBeEnabled = "Yes"
388
+ ignoreCount = "0"
389
+ continueAfterRunningActions = "No"
390
+ symbolName = "__C.UIView.systemLayoutFittingIntrinsicHeightFixedWidth(_: CoreGraphics.CGFloat, priority: __C.UILayoutPriority) -&gt; __C.CGSize"
391
+ moduleName = "Example (Multiplatform)"
392
+ usesParentBreakpointCondition = "Yes"
393
+ urlString = "file:///Users/calstephens/Documents/lottie/Sources/Private/EmbeddedLibraries/EpoxyCore/SwiftUI/LayoutUtilities/SwiftUIMeasurementContainer.swift"
257
394
  startingColumnNumber = "9223372036854775807"
258
395
  endingColumnNumber = "9223372036854775807"
259
- startingLineNumber = "279"
260
- endingLineNumber = "279"
261
- offsetFromSymbolStart = "296">
396
+ startingLineNumber = "393"
397
+ endingLineNumber = "393"
398
+ offsetFromSymbolStart = "128">
262
399
  </Location>
263
400
  <Location
264
- uuid = "083F77B7-FF28-4132-ADBB-D0EA9B91C736 - 6c551e311a4ab35d"
401
+ uuid = "7043C7FC-0028-426B-91A7-E05945E62122 - 94200cadb594d8f7"
265
402
  shouldBeEnabled = "Yes"
266
403
  ignoreCount = "0"
267
404
  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;"
405
+ symbolName = "__C.UIView.systemLayoutFittingIntrinsicHeightFixedWidth(_: CoreGraphics.CGFloat, priority: __C.UILayoutPriority) -&gt; __C.CGSize"
269
406
  moduleName = "Lottie"
270
407
  usesParentBreakpointCondition = "Yes"
271
- urlString = "file:///Users/calstephens/Documents/lottie/Sources/Private/CoreAnimation/Animations/LayerProperty.swift"
408
+ urlString = "file:///Users/calstephens/Documents/lottie/Sources/Private/EmbeddedLibraries/EpoxyCore/SwiftUI/LayoutUtilities/SwiftUIMeasurementContainer.swift"
272
409
  startingColumnNumber = "9223372036854775807"
273
410
  endingColumnNumber = "9223372036854775807"
274
- startingLineNumber = "279"
275
- endingLineNumber = "279"
276
- offsetFromSymbolStart = "344">
411
+ startingLineNumber = "393"
412
+ endingLineNumber = "393"
413
+ offsetFromSymbolStart = "128">
277
414
  </Location>
278
415
  </Locations>
279
416
  </BreakpointContent>
@@ -281,49 +418,156 @@
281
418
  <BreakpointProxy
282
419
  BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint">
283
420
  <BreakpointContent
284
- uuid = "232AD61E-2983-4DD6-A6D6-721AA2D12700"
421
+ uuid = "58C50FA3-5DB1-4BDC-963D-554C96793B8E"
422
+ shouldBeEnabled = "Yes"
423
+ ignoreCount = "0"
424
+ continueAfterRunningActions = "No"
425
+ filePath = "Sources/Private/EmbeddedLibraries/EpoxyCore/SwiftUI/LayoutUtilities/SwiftUIMeasurementContainer.swift"
426
+ startingColumnNumber = "9223372036854775807"
427
+ endingColumnNumber = "9223372036854775807"
428
+ startingLineNumber = "415"
429
+ endingLineNumber = "415"
430
+ landmarkName = "systemLayoutFittingIntrinsicWidthFixedHeight(_:priority:)"
431
+ landmarkType = "7">
432
+ </BreakpointContent>
433
+ </BreakpointProxy>
434
+ <BreakpointProxy
435
+ BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint">
436
+ <BreakpointContent
437
+ uuid = "46F5CCC2-A2B4-43BB-9372-588E157C15F8"
438
+ shouldBeEnabled = "Yes"
439
+ ignoreCount = "0"
440
+ continueAfterRunningActions = "No"
441
+ filePath = "Sources/Private/EmbeddedLibraries/EpoxyCore/SwiftUI/LayoutUtilities/SwiftUIMeasurementContainer.swift"
442
+ startingColumnNumber = "9223372036854775807"
443
+ endingColumnNumber = "9223372036854775807"
444
+ startingLineNumber = "395"
445
+ endingLineNumber = "395"
446
+ landmarkName = "systemLayoutFittingIntrinsicHeightFixedWidth(_:priority:)"
447
+ landmarkType = "7">
448
+ </BreakpointContent>
449
+ </BreakpointProxy>
450
+ <BreakpointProxy
451
+ BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint">
452
+ <BreakpointContent
453
+ uuid = "8FB76DCA-529E-41F7-9C40-3BA6FA8DF134"
285
454
  shouldBeEnabled = "No"
286
455
  ignoreCount = "0"
287
456
  continueAfterRunningActions = "No"
288
- filePath = "Sources/Private/CoreAnimation/Animations/LayerProperty.swift"
457
+ filePath = "Sources/Public/iOS/AnimatedSwitch.swift"
289
458
  startingColumnNumber = "9223372036854775807"
290
459
  endingColumnNumber = "9223372036854775807"
291
- startingLineNumber = "305"
292
- endingLineNumber = "305"
293
- landmarkName = "rotation"
294
- landmarkType = "24">
460
+ startingLineNumber = "220"
461
+ endingLineNumber = "220"
462
+ landmarkName = "unknown"
463
+ landmarkType = "0">
464
+ </BreakpointContent>
465
+ </BreakpointProxy>
466
+ <BreakpointProxy
467
+ BreakpointExtensionID = "Xcode.Breakpoint.SymbolicBreakpoint">
468
+ <BreakpointContent
469
+ uuid = "F7CB69A9-F174-4CF0-8C0C-F43E48DE48B2"
470
+ shouldBeEnabled = "Yes"
471
+ ignoreCount = "0"
472
+ continueAfterRunningActions = "No"
473
+ symbolName = ""
474
+ moduleName = "">
475
+ <Locations>
476
+ </Locations>
477
+ </BreakpointContent>
478
+ </BreakpointProxy>
479
+ <BreakpointProxy
480
+ BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint">
481
+ <BreakpointContent
482
+ uuid = "3C169A2A-85F7-4FD3-ACB3-C255C87766C1"
483
+ shouldBeEnabled = "No"
484
+ ignoreCount = "0"
485
+ continueAfterRunningActions = "No"
486
+ filePath = "Sources/Private/CoreAnimation/Layers/BaseAnimationLayer.swift"
487
+ startingColumnNumber = "9223372036854775807"
488
+ endingColumnNumber = "9223372036854775807"
489
+ startingLineNumber = "55"
490
+ endingLineNumber = "55">
295
491
  </BreakpointContent>
296
492
  </BreakpointProxy>
297
493
  <BreakpointProxy
298
494
  BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint">
299
495
  <BreakpointContent
300
- uuid = "DE9A3966-371D-4974-992F-6F20AF21055B"
496
+ uuid = "BD2B1B69-E42C-4C98-860F-8C129397EEE7"
301
497
  shouldBeEnabled = "No"
302
498
  ignoreCount = "0"
303
499
  continueAfterRunningActions = "No"
304
- filePath = "Sources/Private/CoreAnimation/Animations/StrokeAnimation.swift"
500
+ filePath = "Sources/Private/Utility/Extensions/AnimationKeypathExtension.swift"
305
501
  startingColumnNumber = "9223372036854775807"
306
502
  endingColumnNumber = "9223372036854775807"
307
- startingLineNumber = "73"
308
- endingLineNumber = "73"
309
- landmarkName = "addStrokeAnimations(for:context:)"
503
+ startingLineNumber = "160"
504
+ endingLineNumber = "160"
505
+ landmarkName = "layerKeypaths(for:)"
310
506
  landmarkType = "7">
311
507
  </BreakpointContent>
312
508
  </BreakpointProxy>
313
509
  <BreakpointProxy
314
510
  BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint">
315
511
  <BreakpointContent
316
- uuid = "B61AB02D-FB91-45DD-BAA4-59D15A088394"
512
+ uuid = "7F8F379C-35B0-4F4B-B25F-4A6D5910F1DA"
317
513
  shouldBeEnabled = "No"
318
514
  ignoreCount = "0"
319
515
  continueAfterRunningActions = "No"
320
- filePath = "Sources/Private/CoreAnimation/Animations/ShapeAnimation.swift"
516
+ filePath = "Sources/Private/Utility/Extensions/AnimationKeypathExtension.swift"
321
517
  startingColumnNumber = "9223372036854775807"
322
518
  endingColumnNumber = "9223372036854775807"
323
- startingLineNumber = "116"
324
- endingLineNumber = "116"
325
- landmarkName = "Trim"
326
- landmarkType = "21">
519
+ startingLineNumber = "165"
520
+ endingLineNumber = "165"
521
+ landmarkName = "layerKeypaths(for:)"
522
+ landmarkType = "7">
523
+ </BreakpointContent>
524
+ </BreakpointProxy>
525
+ <BreakpointProxy
526
+ BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint">
527
+ <BreakpointContent
528
+ uuid = "75697A31-C456-456F-815B-95974E3598BE"
529
+ shouldBeEnabled = "No"
530
+ ignoreCount = "0"
531
+ continueAfterRunningActions = "No"
532
+ filePath = "Example/Example/AnimationPreviewView.swift"
533
+ startingColumnNumber = "9223372036854775807"
534
+ endingColumnNumber = "9223372036854775807"
535
+ startingLineNumber = "60"
536
+ endingLineNumber = "60"
537
+ landmarkName = "body"
538
+ landmarkType = "24">
539
+ </BreakpointContent>
540
+ </BreakpointProxy>
541
+ <BreakpointProxy
542
+ BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint">
543
+ <BreakpointContent
544
+ uuid = "EAF29C5C-15A1-4F9D-AB63-8130DBD6049A"
545
+ shouldBeEnabled = "Yes"
546
+ ignoreCount = "0"
547
+ continueAfterRunningActions = "No"
548
+ filePath = "Example/Example/AnimationPreviewView.swift"
549
+ startingColumnNumber = "9223372036854775807"
550
+ endingColumnNumber = "9223372036854775807"
551
+ startingLineNumber = "59"
552
+ endingLineNumber = "59"
553
+ landmarkName = "body"
554
+ landmarkType = "24">
555
+ </BreakpointContent>
556
+ </BreakpointProxy>
557
+ <BreakpointProxy
558
+ BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint">
559
+ <BreakpointContent
560
+ uuid = "93EDC5AB-8948-4148-83CC-FDDCB8BE5AFE"
561
+ shouldBeEnabled = "No"
562
+ ignoreCount = "0"
563
+ continueAfterRunningActions = "No"
564
+ filePath = "Example/Example/AnimationPreviewView.swift"
565
+ startingColumnNumber = "9223372036854775807"
566
+ endingColumnNumber = "9223372036854775807"
567
+ startingLineNumber = "119"
568
+ endingLineNumber = "119"
569
+ landmarkName = "AnimationPreviewView"
570
+ landmarkType = "14">
327
571
  </BreakpointContent>
328
572
  </BreakpointProxy>
329
573
  </Breakpoints>
@@ -102,9 +102,6 @@
102
102
  <ContextState
103
103
  contextName = "closure #4 in CALayer.makeGroupLayers(from:parentGroup:parentGroupPath:context:):ShapeLayer.swift">
104
104
  </ContextState>
105
- <ContextState
106
- contextName = "GroupLayer.init(group:items:groupPath:context:):ShapeLayer.swift">
107
- </ContextState>
108
105
  <ContextState
109
106
  contextName = "RoundedCornersNode.rebuildOutputs(frame:):RoundedCornersNode.swift">
110
107
  <PersistentStrings>
@@ -116,6 +113,20 @@
116
113
  </PersistentString>
117
114
  </PersistentStrings>
118
115
  </ContextState>
116
+ <ContextState
117
+ contextName = "GroupLayer.init(group:items:groupPath:context:):ShapeLayer.swift">
118
+ </ContextState>
119
+ <ContextState
120
+ contextName = "ParsingTests.testParsingIsTheSameForBothImplementations():ParsingTests.swift">
121
+ <PersistentStrings>
122
+ <PersistentString
123
+ value = "codableAnimation.layers.flatMap { $0.effects }.filter { $0.effects.isEmpty }">
124
+ </PersistentString>
125
+ <PersistentString
126
+ value = "dictAnimation.layers.flatMap { $0.effects }.filter { $0.name == &quot;Rotation Offset&quot; }">
127
+ </PersistentString>
128
+ </PersistentStrings>
129
+ </ContextState>
119
130
  <ContextState
120
131
  contextName = "CALayer.addTransformAnimations(for:context:):TransformAnimations.swift">
121
132
  </ContextState>
@@ -129,10 +140,10 @@
129
140
  contextName = "CoreAnimationLayer.display():CoreAnimationLayer.swift">
130
141
  <PersistentStrings>
131
142
  <PersistentString
132
- value = "(superlayer!.delegate! as! UIView).window">
143
+ value = "(superlayer!.delegate! as! UIView).superview!">
133
144
  </PersistentString>
134
145
  <PersistentString
135
- value = "(superlayer!.delegate! as! UIView).superview!">
146
+ value = "(superlayer!.delegate! as! UIView).window">
136
147
  </PersistentString>
137
148
  </PersistentStrings>
138
149
  </ContextState>
package/Package.resolved CHANGED
@@ -6,8 +6,8 @@
6
6
  "repositoryURL": "https://github.com/airbnb/swift",
7
7
  "state": {
8
8
  "branch": null,
9
- "revision": "07bb2e0822ca6e464bf3610ed452568931fdbf65",
10
- "version": "1.0.3"
9
+ "revision": "b408d36b4f5e73ea75441fb9791b849b0a40f58b",
10
+ "version": "1.0.5"
11
11
  }
12
12
  },
13
13
  {
package/Package.swift CHANGED
@@ -1,14 +1,21 @@
1
- // swift-tools-version:5.5
1
+ // swift-tools-version:5.6
2
2
  import PackageDescription
3
3
 
4
4
  let package = Package(
5
5
  name: "Lottie",
6
- // Minimum platform versions should be kept in sync with the per-platform targets in Lottie.xcodeproj and lottie-ios.podspec
7
- platforms: [.iOS("11.0"), .macOS("10.11"), .tvOS("11.0")],
6
+ // Minimum platform versions should be kept in sync with the per-platform targets in Lottie.xcodeproj, lottie-ios.podspec, and lottie-spm's Package.swift
7
+ platforms: [.iOS("11.0"), .macOS("10.11"), .tvOS("11.0"), .custom("visionOS", versionString: "1.0")],
8
8
  products: [.library(name: "Lottie", targets: ["Lottie"])],
9
- targets: [.target(name: "Lottie", path: "Sources")])
10
-
11
- #if swift(>=5.6)
12
- // Add the Airbnb Swift formatting plugin if possible
13
- package.dependencies.append(.package(url: "https://github.com/airbnb/swift", .upToNextMajor(from: "1.0.1")))
14
- #endif
9
+ dependencies: [
10
+ .package(url: "https://github.com/airbnb/swift", .upToNextMajor(from: "1.0.1")),
11
+ ],
12
+ targets: [
13
+ .target(
14
+ name: "Lottie",
15
+ path: "Sources",
16
+ exclude: [
17
+ "Private/EmbeddedLibraries/README.md",
18
+ "Private/EmbeddedLibraries/ZipFoundation/README.md",
19
+ "Private/EmbeddedLibraries/EpoxyCore/README.md",
20
+ ]),
21
+ ])