lottie-ios 3.4.3 → 3.5.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 (128) hide show
  1. package/.github/FUNDING.yml +0 -11
  2. package/Lottie.xcodeproj/project.pbxproj +58 -58
  3. package/Lottie.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved +22 -0
  4. package/Lottie.xcworkspace/xcshareddata/swiftpm/Package.resolved +2 -2
  5. package/Lottie.xcworkspace/xcuserdata/calstephens.xcuserdatad/UserInterfaceState.xcuserstate +0 -0
  6. package/Sources/Private/CoreAnimation/Animations/CALayer+addAnimation.swift +1 -1
  7. package/Sources/Private/CoreAnimation/Animations/CombinedShapeAnimation.swift +10 -7
  8. package/Sources/Private/CoreAnimation/Animations/EllipseAnimation.swift +2 -2
  9. package/Sources/Private/CoreAnimation/Animations/GradientAnimations.swift +2 -2
  10. package/Sources/Private/CoreAnimation/Animations/LayerProperty.swift +2 -2
  11. package/Sources/Private/CoreAnimation/Animations/OpacityAnimation.swift +1 -1
  12. package/Sources/Private/CoreAnimation/Animations/RectangleAnimation.swift +3 -3
  13. package/Sources/Private/CoreAnimation/Animations/ShapeAnimation.swift +16 -16
  14. package/Sources/Private/CoreAnimation/Animations/StarAnimation.swift +11 -11
  15. package/Sources/Private/CoreAnimation/Animations/StrokeAnimation.swift +4 -4
  16. package/Sources/Private/CoreAnimation/Animations/TransformAnimations.swift +13 -13
  17. package/Sources/Private/CoreAnimation/CoreAnimationLayer.swift +3 -3
  18. package/Sources/Private/CoreAnimation/Layers/AnimationLayer.swift +1 -1
  19. package/Sources/Private/CoreAnimation/Layers/CALayer+setupLayerHierarchy.swift +1 -1
  20. package/Sources/Private/CoreAnimation/Layers/LayerModel+makeAnimationLayer.swift +1 -1
  21. package/Sources/Private/CoreAnimation/Layers/PreCompLayer.swift +1 -1
  22. package/Sources/Private/CoreAnimation/Layers/RepeaterLayer.swift +9 -9
  23. package/Sources/Private/CoreAnimation/Layers/ShapeLayer.swift +1 -1
  24. package/Sources/Private/CoreAnimation/ValueProviderStore.swift +1 -1
  25. package/Sources/Private/MainThread/LayerContainers/CompLayers/MaskContainerLayer.swift +2 -2
  26. package/Sources/Private/MainThread/LayerContainers/CompLayers/PreCompositionLayer.swift +1 -1
  27. package/Sources/Private/MainThread/LayerContainers/CompLayers/SolidCompositionLayer.swift +2 -2
  28. package/Sources/Private/MainThread/LayerContainers/MainThreadAnimationLayer.swift +3 -3
  29. package/Sources/Private/MainThread/LayerContainers/Utility/LayerTransformNode.swift +10 -10
  30. package/Sources/Private/MainThread/NodeRenderSystem/Extensions/ItemsExtension.swift +1 -1
  31. package/Sources/Private/MainThread/NodeRenderSystem/Nodes/ModifierNodes/TrimPathNode.swift +3 -3
  32. package/Sources/Private/MainThread/NodeRenderSystem/Nodes/PathNodes/EllipseNode.swift +2 -2
  33. package/Sources/Private/MainThread/NodeRenderSystem/Nodes/PathNodes/PolygonNode.swift +5 -5
  34. package/Sources/Private/MainThread/NodeRenderSystem/Nodes/PathNodes/RectNode.swift +3 -3
  35. package/Sources/Private/MainThread/NodeRenderSystem/Nodes/PathNodes/StarNode.swift +9 -9
  36. package/Sources/Private/MainThread/NodeRenderSystem/Nodes/RenderContainers/GroupNode.swift +14 -14
  37. package/Sources/Private/MainThread/NodeRenderSystem/Nodes/RenderNodes/FillNode.swift +2 -2
  38. package/Sources/Private/MainThread/NodeRenderSystem/Nodes/RenderNodes/GradientFillNode.swift +3 -3
  39. package/Sources/Private/MainThread/NodeRenderSystem/Nodes/RenderNodes/GradientStrokeNode.swift +10 -10
  40. package/Sources/Private/MainThread/NodeRenderSystem/Nodes/RenderNodes/StrokeNode.swift +14 -14
  41. package/Sources/Private/MainThread/NodeRenderSystem/Nodes/Text/TextAnimatorNode.swift +11 -11
  42. package/Sources/Private/Model/Keyframes/KeyframeData.swift +12 -12
  43. package/Sources/Private/Model/Layers/PreCompLayerModel.swift +3 -3
  44. package/Sources/Private/Model/Objects/DashPattern.swift +2 -2
  45. package/Sources/Private/Model/Objects/Marker.swift +4 -0
  46. package/Sources/Private/Model/Objects/Mask.swift +10 -8
  47. package/Sources/Private/Model/Objects/Transform.swift +39 -35
  48. package/Sources/Private/Model/ShapeItems/Ellipse.swift +6 -6
  49. package/Sources/Private/Model/ShapeItems/Fill.swift +6 -6
  50. package/Sources/Private/Model/ShapeItems/GradientFill.swift +15 -15
  51. package/Sources/Private/Model/ShapeItems/GradientStroke.swift +18 -18
  52. package/Sources/Private/Model/ShapeItems/Rectangle.swift +9 -9
  53. package/Sources/Private/Model/ShapeItems/Repeater.swift +37 -32
  54. package/Sources/Private/Model/ShapeItems/ShapeTransform.swift +34 -28
  55. package/Sources/Private/Model/ShapeItems/Star.swift +21 -21
  56. package/Sources/Private/Model/ShapeItems/Stroke.swift +9 -9
  57. package/Sources/Private/Model/ShapeItems/Trim.swift +9 -9
  58. package/Sources/Private/Model/Text/TextAnimator.swift +33 -33
  59. package/Sources/Private/Model/Text/TextDocument.swift +8 -8
  60. package/Sources/Private/RootAnimationLayer.swift +4 -4
  61. package/Sources/Private/Utility/Interpolatable/InterpolatableExtensions.swift +1 -1
  62. package/Sources/Private/Utility/Interpolatable/KeyframeGroup+Extensions.swift +4 -4
  63. package/Sources/Private/Utility/Primitives/ColorExtension.swift +7 -7
  64. package/Sources/Private/Utility/Primitives/VectorsExtensions.swift +29 -21
  65. package/Sources/{Private/Model/Animation.swift → Public/Animation/LottieAnimation.swift} +13 -5
  66. package/Sources/Public/Animation/{AnimationPublic.swift → LottieAnimationHelpers.swift} +32 -17
  67. package/Sources/Public/Animation/{AnimationView.swift → LottieAnimationView.swift} +68 -19
  68. package/Sources/Public/Animation/{AnimationViewInitializers.swift → LottieAnimationViewInitializers.swift} +6 -6
  69. package/Sources/Public/AnimationCache/AnimationCacheProvider.swift +3 -3
  70. package/Sources/Public/AnimationCache/LRUAnimationCache.swift +3 -3
  71. package/Sources/Public/DynamicProperties/AnimationKeypath.swift +3 -3
  72. package/Sources/Public/DynamicProperties/AnyValueProvider.swift +2 -2
  73. package/Sources/Public/DynamicProperties/ValueProviders/ColorValueProvider.swift +10 -10
  74. package/Sources/Public/DynamicProperties/ValueProviders/FloatValueProvider.swift +4 -4
  75. package/Sources/Public/DynamicProperties/ValueProviders/GradientValueProvider.swift +5 -5
  76. package/Sources/Public/DynamicProperties/ValueProviders/PointValueProvider.swift +2 -2
  77. package/Sources/Public/DynamicProperties/ValueProviders/SizeValueProvider.swift +2 -2
  78. package/Sources/Public/FontProvider/AnimationFontProvider.swift +1 -1
  79. package/Sources/Public/ImageProvider/AnimationImageProvider.swift +2 -2
  80. package/Sources/Public/Keyframes/Interpolatable.swift +17 -17
  81. package/Sources/Public/Keyframes/Keyframe.swift +10 -10
  82. package/Sources/Public/LottieConfiguration.swift +1 -1
  83. package/Sources/Public/Primitives/{Color.swift → LottieColor.swift} +10 -2
  84. package/Sources/Public/Primitives/Vectors.swift +18 -2
  85. package/Sources/Public/TextProvider/AnimationTextProvider.swift +1 -1
  86. package/Sources/Public/iOS/AnimatedButton.swift +26 -24
  87. package/Sources/Public/iOS/AnimatedControl.swift +6 -6
  88. package/Sources/Public/iOS/AnimatedSwitch.swift +16 -11
  89. package/Sources/Public/iOS/Compatibility/CompatibleAnimationView.swift +23 -8
  90. package/Sources/Public/iOS/{AnimationViewBase.swift → LottieAnimationViewBase.swift} +4 -4
  91. package/Sources/Public/iOS/UIColorExtension.swift +2 -2
  92. package/Sources/Public/macOS/{AnimationViewBase.macOS.swift → LottieAnimationViewBase.macOS.swift} +4 -4
  93. package/Tests/AnimationKeypathTests.swift +1 -1
  94. package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~22UHuHHSTYh5NFeueXXSDdev_8VAbw8H8yl2ICssaC0vaCLj2G2CGZCjUMEyki9c-k-CecFJRyspvzJLiQTjUw== +0 -0
  95. package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~4VqMqsI5lOfxRppnud6-VDWcNsU8J7VgFCJfW2dXPwOcAkvU-I8Um5yp9n0Zv6nr3VmcxYggaVMDFfR0U_vjKw== +1 -0
  96. package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~6DmZhylL-XQx-O08NugyWINI0ugrLVgVOpbrdp0sT2tEqw-jVD2vvBWYRnYHALkM2_qP2yy-VoovSMzfYALY8A== +0 -0
  97. package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~9dj3E5foFK2l_1CEpoRxToU1N6jCdhRVc5vhR10fHS938L9w8HxbiVCPGxYy5981O6M1yZsD4tHFbqBMbER4bQ== +0 -0
  98. package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~Bys36bGK_YkCjRNoPMkq3R0OcyPNrVNka1Gz45ilbXJTqp9xAJexx6qKBh86_fm7OgBCO0WS2gJBy77DUUnOOA== +1 -0
  99. package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~QJMKb50ZfaWLSHxBSGPlrzULLCqTlb_6W-X0N1-e5PfwCKjpYKOElImsOwgZKVK0cdyf-6u4Zp3mm3BfGQVQ9Q== +0 -0
  100. package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~YyEdK1WNFTPo-R3Og2OWduKSikuFYneXurEZbyNLZeDmJLJkd7Ew8jNxy4mvgZw4f4Sikp4swEjJgVzXqhev5g== +1 -0
  101. package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~bZd73QR3pWGndrn46_NXJw2dUT7WdBjkH5fdPZ7EnzlcZ9Ifv6WR14RKeWI9diiEjcRJE7ZOWqZ9fzf2vvTnLw== +0 -0
  102. package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~baCaLsz8Sq-r6sHhJcZeowVdrnrIxKwDps5Q1Aq38G2AQ3HaopZ9m3A8IXtTFSiZGNiO2qnM9yH7iJfuzC5K0A== +0 -0
  103. package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~iZXYCVJLYHKtR7eFHwefLiejC9CkRbBBSkkZmwfkiDEIdUKE4GgVkdDrcHry91RF7d9y7AuYovfGVp1-fuNg0g== +0 -0
  104. package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~pTTJImrF4EktmVXGCigWBn7v6YlbH5eFCXIW35CW-iyypvzFMXXYYbQO1ly6Bf3u6CdaepZko-L9obC1mjigMA== +0 -0
  105. package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~sVXLeN9UCp6IsOPeuoY76nF-bP-w2rBm61UYvs5XE3o5XhbM7itN2s1XD5i9COIaVMytmUFB-mvCLCqHfHWwpw== +0 -0
  106. package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~t8Vsjx3tjPBGQIElMCvqzxLS0hDmBGuLa_CEiB64N2Vxp3qoUfNF0Sar84QnEDOKfyVF6c1KTn1QYg7fRJrk8g== +0 -0
  107. package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~zUmPx8nRHLa8-g1WWSYYzveS_6qmBf-y4xyS-dHzD7c_xWwPZlsfKg8UngImNdn0gxGOBSRmCeXbYwWpLfj_Rg== +0 -0
  108. package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~22UHuHHSTYh5NFeueXXSDdev_8VAbw8H8yl2ICssaC0vaCLj2G2CGZCjUMEyki9c-k-CecFJRyspvzJLiQTjUw== +0 -0
  109. package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~4VqMqsI5lOfxRppnud6-VDWcNsU8J7VgFCJfW2dXPwOcAkvU-I8Um5yp9n0Zv6nr3VmcxYggaVMDFfR0U_vjKw== +0 -0
  110. package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~6DmZhylL-XQx-O08NugyWINI0ugrLVgVOpbrdp0sT2tEqw-jVD2vvBWYRnYHALkM2_qP2yy-VoovSMzfYALY8A== +0 -0
  111. package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~9dj3E5foFK2l_1CEpoRxToU1N6jCdhRVc5vhR10fHS938L9w8HxbiVCPGxYy5981O6M1yZsD4tHFbqBMbER4bQ== +0 -0
  112. package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~Bys36bGK_YkCjRNoPMkq3R0OcyPNrVNka1Gz45ilbXJTqp9xAJexx6qKBh86_fm7OgBCO0WS2gJBy77DUUnOOA== +0 -0
  113. package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~QJMKb50ZfaWLSHxBSGPlrzULLCqTlb_6W-X0N1-e5PfwCKjpYKOElImsOwgZKVK0cdyf-6u4Zp3mm3BfGQVQ9Q== +0 -0
  114. package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~YyEdK1WNFTPo-R3Og2OWduKSikuFYneXurEZbyNLZeDmJLJkd7Ew8jNxy4mvgZw4f4Sikp4swEjJgVzXqhev5g== +0 -0
  115. package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~bZd73QR3pWGndrn46_NXJw2dUT7WdBjkH5fdPZ7EnzlcZ9Ifv6WR14RKeWI9diiEjcRJE7ZOWqZ9fzf2vvTnLw== +0 -0
  116. package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~baCaLsz8Sq-r6sHhJcZeowVdrnrIxKwDps5Q1Aq38G2AQ3HaopZ9m3A8IXtTFSiZGNiO2qnM9yH7iJfuzC5K0A== +0 -0
  117. package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~iZXYCVJLYHKtR7eFHwefLiejC9CkRbBBSkkZmwfkiDEIdUKE4GgVkdDrcHry91RF7d9y7AuYovfGVp1-fuNg0g== +0 -0
  118. package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~pTTJImrF4EktmVXGCigWBn7v6YlbH5eFCXIW35CW-iyypvzFMXXYYbQO1ly6Bf3u6CdaepZko-L9obC1mjigMA== +0 -0
  119. package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~sVXLeN9UCp6IsOPeuoY76nF-bP-w2rBm61UYvs5XE3o5XhbM7itN2s1XD5i9COIaVMytmUFB-mvCLCqHfHWwpw== +0 -0
  120. package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~t8Vsjx3tjPBGQIElMCvqzxLS0hDmBGuLa_CEiB64N2Vxp3qoUfNF0Sar84QnEDOKfyVF6c1KTn1QYg7fRJrk8g== +0 -0
  121. package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~zUmPx8nRHLa8-g1WWSYYzveS_6qmBf-y4xyS-dHzD7c_xWwPZlsfKg8UngImNdn0gxGOBSRmCeXbYwWpLfj_Rg== +0 -0
  122. package/Tests/Artifacts/LottieTests.xcresult/Info.plist +29 -0
  123. package/Tests/ParsingTests.swift +2 -2
  124. package/Tests/PerformanceTests.swift +9 -9
  125. package/Tests/SnapshotConfiguration.swift +4 -4
  126. package/Tests/SnapshotTests.swift +6 -6
  127. package/lottie-ios.podspec +1 -1
  128. package/package.json +1 -1
@@ -1,12 +1 @@
1
- # These are supported funding model platforms
2
-
3
- github: [buba447]
4
- patreon: # Replace with a single Patreon username
5
1
  open_collective: lottie
6
- ko_fi: # Replace with a single Ko-fi username
7
- tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel
8
- community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry
9
- liberapay: # Replace with a single Liberapay username
10
- issuehunt: # Replace with a single IssueHunt username
11
- otechie: # Replace with a single Otechie username
12
- custom: # Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2']
@@ -7,6 +7,21 @@
7
7
  objects = {
8
8
 
9
9
  /* Begin PBXBuildFile section */
10
+ 0887346F28F0CBDE00458627 /* LottieAnimation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0887346E28F0CBDE00458627 /* LottieAnimation.swift */; };
11
+ 0887347028F0CBDE00458627 /* LottieAnimation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0887346E28F0CBDE00458627 /* LottieAnimation.swift */; };
12
+ 0887347128F0CBDE00458627 /* LottieAnimation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0887346E28F0CBDE00458627 /* LottieAnimation.swift */; };
13
+ 0887347528F0CCDD00458627 /* LottieAnimationHelpers.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0887347228F0CCDD00458627 /* LottieAnimationHelpers.swift */; };
14
+ 0887347628F0CCDD00458627 /* LottieAnimationHelpers.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0887347228F0CCDD00458627 /* LottieAnimationHelpers.swift */; };
15
+ 0887347728F0CCDD00458627 /* LottieAnimationHelpers.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0887347228F0CCDD00458627 /* LottieAnimationHelpers.swift */; };
16
+ 0887347828F0CCDD00458627 /* LottieAnimationViewInitializers.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0887347328F0CCDD00458627 /* LottieAnimationViewInitializers.swift */; };
17
+ 0887347928F0CCDD00458627 /* LottieAnimationViewInitializers.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0887347328F0CCDD00458627 /* LottieAnimationViewInitializers.swift */; };
18
+ 0887347A28F0CCDD00458627 /* LottieAnimationViewInitializers.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0887347328F0CCDD00458627 /* LottieAnimationViewInitializers.swift */; };
19
+ 0887347B28F0CCDD00458627 /* LottieAnimationView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0887347428F0CCDD00458627 /* LottieAnimationView.swift */; };
20
+ 0887347C28F0CCDD00458627 /* LottieAnimationView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0887347428F0CCDD00458627 /* LottieAnimationView.swift */; };
21
+ 0887347D28F0CCDD00458627 /* LottieAnimationView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0887347428F0CCDD00458627 /* LottieAnimationView.swift */; };
22
+ 08EED05028F0D2D10057D958 /* LottieColor.swift in Sources */ = {isa = PBXBuildFile; fileRef = 08EED04F28F0D2D10057D958 /* LottieColor.swift */; };
23
+ 08EED05128F0D2D10057D958 /* LottieColor.swift in Sources */ = {isa = PBXBuildFile; fileRef = 08EED04F28F0D2D10057D958 /* LottieColor.swift */; };
24
+ 08EED05228F0D2D10057D958 /* LottieColor.swift in Sources */ = {isa = PBXBuildFile; fileRef = 08EED04F28F0D2D10057D958 /* LottieColor.swift */; };
10
25
  08EF21DC289C643B0097EA47 /* KeyframeInterpolator.swift in Sources */ = {isa = PBXBuildFile; fileRef = 08EF21DB289C643B0097EA47 /* KeyframeInterpolator.swift */; };
11
26
  08EF21DD289C643B0097EA47 /* KeyframeInterpolator.swift in Sources */ = {isa = PBXBuildFile; fileRef = 08EF21DB289C643B0097EA47 /* KeyframeInterpolator.swift */; };
12
27
  08EF21DE289C643B0097EA47 /* KeyframeInterpolator.swift in Sources */ = {isa = PBXBuildFile; fileRef = 08EF21DB289C643B0097EA47 /* KeyframeInterpolator.swift */; };
@@ -91,9 +106,6 @@
91
106
  2E9C960C2822F43100677516 /* ShapeLayerModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2E9C95392822F43000677516 /* ShapeLayerModel.swift */; };
92
107
  2E9C960D2822F43100677516 /* ShapeLayerModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2E9C95392822F43000677516 /* ShapeLayerModel.swift */; };
93
108
  2E9C960E2822F43100677516 /* ShapeLayerModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2E9C95392822F43000677516 /* ShapeLayerModel.swift */; };
94
- 2E9C960F2822F43100677516 /* Animation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2E9C953A2822F43000677516 /* Animation.swift */; };
95
- 2E9C96102822F43100677516 /* Animation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2E9C953A2822F43000677516 /* Animation.swift */; };
96
- 2E9C96112822F43100677516 /* Animation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2E9C953A2822F43000677516 /* Animation.swift */; };
97
109
  2E9C96122822F43100677516 /* DashPattern.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2E9C953C2822F43000677516 /* DashPattern.swift */; };
98
110
  2E9C96132822F43100677516 /* DashPattern.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2E9C953C2822F43000677516 /* DashPattern.swift */; };
99
111
  2E9C96142822F43100677516 /* DashPattern.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2E9C953C2822F43000677516 /* DashPattern.swift */; };
@@ -449,9 +461,9 @@
449
461
  2EAF5A9B27A0798700E00531 /* BundleImageProvider.macOS.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2EAF59C327A0798700E00531 /* BundleImageProvider.macOS.swift */; };
450
462
  2EAF5A9C27A0798700E00531 /* BundleImageProvider.macOS.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2EAF59C327A0798700E00531 /* BundleImageProvider.macOS.swift */; };
451
463
  2EAF5A9D27A0798700E00531 /* BundleImageProvider.macOS.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2EAF59C327A0798700E00531 /* BundleImageProvider.macOS.swift */; };
452
- 2EAF5A9E27A0798700E00531 /* AnimationViewBase.macOS.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2EAF59C427A0798700E00531 /* AnimationViewBase.macOS.swift */; };
453
- 2EAF5A9F27A0798700E00531 /* AnimationViewBase.macOS.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2EAF59C427A0798700E00531 /* AnimationViewBase.macOS.swift */; };
454
- 2EAF5AA027A0798700E00531 /* AnimationViewBase.macOS.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2EAF59C427A0798700E00531 /* AnimationViewBase.macOS.swift */; };
464
+ 2EAF5A9E27A0798700E00531 /* LottieAnimationViewBase.macOS.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2EAF59C427A0798700E00531 /* LottieAnimationViewBase.macOS.swift */; };
465
+ 2EAF5A9F27A0798700E00531 /* LottieAnimationViewBase.macOS.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2EAF59C427A0798700E00531 /* LottieAnimationViewBase.macOS.swift */; };
466
+ 2EAF5AA027A0798700E00531 /* LottieAnimationViewBase.macOS.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2EAF59C427A0798700E00531 /* LottieAnimationViewBase.macOS.swift */; };
455
467
  2EAF5AA127A0798700E00531 /* AnimationSubview.macOS.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2EAF59C527A0798700E00531 /* AnimationSubview.macOS.swift */; };
456
468
  2EAF5AA227A0798700E00531 /* AnimationSubview.macOS.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2EAF59C527A0798700E00531 /* AnimationSubview.macOS.swift */; };
457
469
  2EAF5AA327A0798700E00531 /* AnimationSubview.macOS.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2EAF59C527A0798700E00531 /* AnimationSubview.macOS.swift */; };
@@ -461,15 +473,6 @@
461
473
  2EAF5AA727A0798700E00531 /* LottieConfiguration.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2EAF59C727A0798700E00531 /* LottieConfiguration.swift */; };
462
474
  2EAF5AA827A0798700E00531 /* LottieConfiguration.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2EAF59C727A0798700E00531 /* LottieConfiguration.swift */; };
463
475
  2EAF5AA927A0798700E00531 /* LottieConfiguration.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2EAF59C727A0798700E00531 /* LottieConfiguration.swift */; };
464
- 2EAF5AAA27A0798700E00531 /* AnimationViewInitializers.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2EAF59C927A0798700E00531 /* AnimationViewInitializers.swift */; };
465
- 2EAF5AAB27A0798700E00531 /* AnimationViewInitializers.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2EAF59C927A0798700E00531 /* AnimationViewInitializers.swift */; };
466
- 2EAF5AAC27A0798700E00531 /* AnimationViewInitializers.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2EAF59C927A0798700E00531 /* AnimationViewInitializers.swift */; };
467
- 2EAF5AAD27A0798700E00531 /* AnimationView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2EAF59CA27A0798700E00531 /* AnimationView.swift */; };
468
- 2EAF5AAE27A0798700E00531 /* AnimationView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2EAF59CA27A0798700E00531 /* AnimationView.swift */; };
469
- 2EAF5AAF27A0798700E00531 /* AnimationView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2EAF59CA27A0798700E00531 /* AnimationView.swift */; };
470
- 2EAF5AB027A0798700E00531 /* AnimationPublic.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2EAF59CB27A0798700E00531 /* AnimationPublic.swift */; };
471
- 2EAF5AB127A0798700E00531 /* AnimationPublic.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2EAF59CB27A0798700E00531 /* AnimationPublic.swift */; };
472
- 2EAF5AB227A0798700E00531 /* AnimationPublic.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2EAF59CB27A0798700E00531 /* AnimationPublic.swift */; };
473
476
  2EAF5AB327A0798700E00531 /* AnimationImageProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2EAF59CD27A0798700E00531 /* AnimationImageProvider.swift */; };
474
477
  2EAF5AB427A0798700E00531 /* AnimationImageProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2EAF59CD27A0798700E00531 /* AnimationImageProvider.swift */; };
475
478
  2EAF5AB527A0798700E00531 /* AnimationImageProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2EAF59CD27A0798700E00531 /* AnimationImageProvider.swift */; };
@@ -494,9 +497,9 @@
494
497
  2EAF5AC827A0798700E00531 /* AnimatedButton.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2EAF59D627A0798700E00531 /* AnimatedButton.swift */; };
495
498
  2EAF5AC927A0798700E00531 /* AnimatedButton.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2EAF59D627A0798700E00531 /* AnimatedButton.swift */; };
496
499
  2EAF5ACA27A0798700E00531 /* AnimatedButton.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2EAF59D627A0798700E00531 /* AnimatedButton.swift */; };
497
- 2EAF5ACB27A0798700E00531 /* AnimationViewBase.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2EAF59D727A0798700E00531 /* AnimationViewBase.swift */; };
498
- 2EAF5ACC27A0798700E00531 /* AnimationViewBase.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2EAF59D727A0798700E00531 /* AnimationViewBase.swift */; };
499
- 2EAF5ACD27A0798700E00531 /* AnimationViewBase.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2EAF59D727A0798700E00531 /* AnimationViewBase.swift */; };
500
+ 2EAF5ACB27A0798700E00531 /* LottieAnimationViewBase.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2EAF59D727A0798700E00531 /* LottieAnimationViewBase.swift */; };
501
+ 2EAF5ACC27A0798700E00531 /* LottieAnimationViewBase.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2EAF59D727A0798700E00531 /* LottieAnimationViewBase.swift */; };
502
+ 2EAF5ACD27A0798700E00531 /* LottieAnimationViewBase.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2EAF59D727A0798700E00531 /* LottieAnimationViewBase.swift */; };
500
503
  2EAF5ACE27A0798700E00531 /* AnimationSubview.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2EAF59D827A0798700E00531 /* AnimationSubview.swift */; };
501
504
  2EAF5ACF27A0798700E00531 /* AnimationSubview.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2EAF59D827A0798700E00531 /* AnimationSubview.swift */; };
502
505
  2EAF5AD027A0798700E00531 /* AnimationSubview.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2EAF59D827A0798700E00531 /* AnimationSubview.swift */; };
@@ -509,9 +512,6 @@
509
512
  2EAF5AD727A0798700E00531 /* Vectors.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2EAF59DC27A0798700E00531 /* Vectors.swift */; };
510
513
  2EAF5AD827A0798700E00531 /* Vectors.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2EAF59DC27A0798700E00531 /* Vectors.swift */; };
511
514
  2EAF5AD927A0798700E00531 /* Vectors.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2EAF59DC27A0798700E00531 /* Vectors.swift */; };
512
- 2EAF5ADA27A0798700E00531 /* Color.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2EAF59DD27A0798700E00531 /* Color.swift */; };
513
- 2EAF5ADB27A0798700E00531 /* Color.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2EAF59DD27A0798700E00531 /* Color.swift */; };
514
- 2EAF5ADC27A0798700E00531 /* Color.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2EAF59DD27A0798700E00531 /* Color.swift */; };
515
515
  2EAF5ADD27A0798700E00531 /* Interpolatable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2EAF59DF27A0798700E00531 /* Interpolatable.swift */; };
516
516
  2EAF5ADE27A0798700E00531 /* Interpolatable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2EAF59DF27A0798700E00531 /* Interpolatable.swift */; };
517
517
  2EAF5ADF27A0798700E00531 /* Interpolatable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2EAF59DF27A0798700E00531 /* Interpolatable.swift */; };
@@ -591,6 +591,11 @@
591
591
  /* End PBXContainerItemProxy section */
592
592
 
593
593
  /* Begin PBXFileReference section */
594
+ 0887346E28F0CBDE00458627 /* LottieAnimation.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LottieAnimation.swift; sourceTree = "<group>"; };
595
+ 0887347228F0CCDD00458627 /* LottieAnimationHelpers.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LottieAnimationHelpers.swift; sourceTree = "<group>"; };
596
+ 0887347328F0CCDD00458627 /* LottieAnimationViewInitializers.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LottieAnimationViewInitializers.swift; sourceTree = "<group>"; };
597
+ 0887347428F0CCDD00458627 /* LottieAnimationView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LottieAnimationView.swift; sourceTree = "<group>"; };
598
+ 08EED04F28F0D2D10057D958 /* LottieColor.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LottieColor.swift; sourceTree = "<group>"; };
594
599
  08EF21DB289C643B0097EA47 /* KeyframeInterpolator.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = KeyframeInterpolator.swift; sourceTree = "<group>"; };
595
600
  08F8B20C2898A7B100CB5323 /* RepeaterLayer.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RepeaterLayer.swift; sourceTree = "<group>"; };
596
601
  08F8B210289990B700CB5323 /* Samples */ = {isa = PBXFileReference; lastKnownFileType = folder; path = Samples; sourceTree = "<group>"; };
@@ -627,7 +632,6 @@
627
632
  2E9C95372822F43000677516 /* TextLayerModel.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = TextLayerModel.swift; sourceTree = "<group>"; };
628
633
  2E9C95382822F43000677516 /* PreCompLayerModel.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = PreCompLayerModel.swift; sourceTree = "<group>"; };
629
634
  2E9C95392822F43000677516 /* ShapeLayerModel.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ShapeLayerModel.swift; sourceTree = "<group>"; };
630
- 2E9C953A2822F43000677516 /* Animation.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Animation.swift; sourceTree = "<group>"; };
631
635
  2E9C953C2822F43000677516 /* DashPattern.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = DashPattern.swift; sourceTree = "<group>"; };
632
636
  2E9C953D2822F43000677516 /* Transform.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Transform.swift; sourceTree = "<group>"; };
633
637
  2E9C953E2822F43000677516 /* Mask.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Mask.swift; sourceTree = "<group>"; };
@@ -749,13 +753,10 @@
749
753
  2EAF59AD27A0787B00E00531 /* Lottie.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Lottie.framework; sourceTree = BUILT_PRODUCTS_DIR; };
750
754
  2EAF59B927A078E400E00531 /* Lottie.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Lottie.framework; sourceTree = BUILT_PRODUCTS_DIR; };
751
755
  2EAF59C327A0798700E00531 /* BundleImageProvider.macOS.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = BundleImageProvider.macOS.swift; sourceTree = "<group>"; };
752
- 2EAF59C427A0798700E00531 /* AnimationViewBase.macOS.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AnimationViewBase.macOS.swift; sourceTree = "<group>"; };
756
+ 2EAF59C427A0798700E00531 /* LottieAnimationViewBase.macOS.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LottieAnimationViewBase.macOS.swift; sourceTree = "<group>"; };
753
757
  2EAF59C527A0798700E00531 /* AnimationSubview.macOS.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AnimationSubview.macOS.swift; sourceTree = "<group>"; };
754
758
  2EAF59C627A0798700E00531 /* FilepathImageProvider.macOS.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = FilepathImageProvider.macOS.swift; sourceTree = "<group>"; };
755
759
  2EAF59C727A0798700E00531 /* LottieConfiguration.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LottieConfiguration.swift; sourceTree = "<group>"; };
756
- 2EAF59C927A0798700E00531 /* AnimationViewInitializers.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AnimationViewInitializers.swift; sourceTree = "<group>"; };
757
- 2EAF59CA27A0798700E00531 /* AnimationView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AnimationView.swift; sourceTree = "<group>"; };
758
- 2EAF59CB27A0798700E00531 /* AnimationPublic.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AnimationPublic.swift; sourceTree = "<group>"; };
759
760
  2EAF59CD27A0798700E00531 /* AnimationImageProvider.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AnimationImageProvider.swift; sourceTree = "<group>"; };
760
761
  2EAF59D027A0798700E00531 /* CompatibleAnimationKeypath.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CompatibleAnimationKeypath.swift; sourceTree = "<group>"; };
761
762
  2EAF59D127A0798700E00531 /* CompatibleAnimationView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CompatibleAnimationView.swift; sourceTree = "<group>"; };
@@ -764,12 +765,11 @@
764
765
  2EAF59D427A0798700E00531 /* BundleImageProvider.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = BundleImageProvider.swift; sourceTree = "<group>"; };
765
766
  2EAF59D527A0798700E00531 /* UIColorExtension.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = UIColorExtension.swift; sourceTree = "<group>"; };
766
767
  2EAF59D627A0798700E00531 /* AnimatedButton.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AnimatedButton.swift; sourceTree = "<group>"; };
767
- 2EAF59D727A0798700E00531 /* AnimationViewBase.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AnimationViewBase.swift; sourceTree = "<group>"; };
768
+ 2EAF59D727A0798700E00531 /* LottieAnimationViewBase.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LottieAnimationViewBase.swift; sourceTree = "<group>"; };
768
769
  2EAF59D827A0798700E00531 /* AnimationSubview.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AnimationSubview.swift; sourceTree = "<group>"; };
769
770
  2EAF59D927A0798700E00531 /* AnimatedControl.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AnimatedControl.swift; sourceTree = "<group>"; };
770
771
  2EAF59DB27A0798700E00531 /* AnimationTime.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AnimationTime.swift; sourceTree = "<group>"; };
771
772
  2EAF59DC27A0798700E00531 /* Vectors.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Vectors.swift; sourceTree = "<group>"; };
772
- 2EAF59DD27A0798700E00531 /* Color.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Color.swift; sourceTree = "<group>"; };
773
773
  2EAF59DF27A0798700E00531 /* Interpolatable.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Interpolatable.swift; sourceTree = "<group>"; };
774
774
  2EAF59E027A0798700E00531 /* Keyframe.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Keyframe.swift; sourceTree = "<group>"; };
775
775
  2EAF59E227A0798700E00531 /* AnimationCacheProvider.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AnimationCacheProvider.swift; sourceTree = "<group>"; };
@@ -888,7 +888,6 @@
888
888
  children = (
889
889
  2E9C95242822F43000677516 /* ShapeItems */,
890
890
  2E9C95332822F43000677516 /* Layers */,
891
- 2E9C953A2822F43000677516 /* Animation.swift */,
892
891
  2E9C953B2822F43000677516 /* Objects */,
893
892
  2E9C95402822F43000677516 /* Extensions */,
894
893
  2E9C95432822F43000677516 /* Keyframes */,
@@ -1354,7 +1353,7 @@
1354
1353
  isa = PBXGroup;
1355
1354
  children = (
1356
1355
  2EAF59C327A0798700E00531 /* BundleImageProvider.macOS.swift */,
1357
- 2EAF59C427A0798700E00531 /* AnimationViewBase.macOS.swift */,
1356
+ 2EAF59C427A0798700E00531 /* LottieAnimationViewBase.macOS.swift */,
1358
1357
  2EAF59C527A0798700E00531 /* AnimationSubview.macOS.swift */,
1359
1358
  2EAF59C627A0798700E00531 /* FilepathImageProvider.macOS.swift */,
1360
1359
  );
@@ -1364,9 +1363,10 @@
1364
1363
  2EAF59C827A0798700E00531 /* Animation */ = {
1365
1364
  isa = PBXGroup;
1366
1365
  children = (
1367
- 2EAF59C927A0798700E00531 /* AnimationViewInitializers.swift */,
1368
- 2EAF59CA27A0798700E00531 /* AnimationView.swift */,
1369
- 2EAF59CB27A0798700E00531 /* AnimationPublic.swift */,
1366
+ 0887346E28F0CBDE00458627 /* LottieAnimation.swift */,
1367
+ 0887347228F0CCDD00458627 /* LottieAnimationHelpers.swift */,
1368
+ 0887347428F0CCDD00458627 /* LottieAnimationView.swift */,
1369
+ 0887347328F0CCDD00458627 /* LottieAnimationViewInitializers.swift */,
1370
1370
  );
1371
1371
  path = Animation;
1372
1372
  sourceTree = "<group>";
@@ -1388,7 +1388,7 @@
1388
1388
  2EAF59D427A0798700E00531 /* BundleImageProvider.swift */,
1389
1389
  2EAF59D527A0798700E00531 /* UIColorExtension.swift */,
1390
1390
  2EAF59D627A0798700E00531 /* AnimatedButton.swift */,
1391
- 2EAF59D727A0798700E00531 /* AnimationViewBase.swift */,
1391
+ 2EAF59D727A0798700E00531 /* LottieAnimationViewBase.swift */,
1392
1392
  2EAF59D827A0798700E00531 /* AnimationSubview.swift */,
1393
1393
  2EAF59D927A0798700E00531 /* AnimatedControl.swift */,
1394
1394
  );
@@ -1409,7 +1409,7 @@
1409
1409
  children = (
1410
1410
  2EAF59DB27A0798700E00531 /* AnimationTime.swift */,
1411
1411
  2EAF59DC27A0798700E00531 /* Vectors.swift */,
1412
- 2EAF59DD27A0798700E00531 /* Color.swift */,
1412
+ 08EED04F28F0D2D10057D958 /* LottieColor.swift */,
1413
1413
  );
1414
1414
  path = Primitives;
1415
1415
  sourceTree = "<group>";
@@ -1699,6 +1699,7 @@
1699
1699
  2EAF5ABC27A0798700E00531 /* FilepathImageProvider.swift in Sources */,
1700
1700
  2EAF5AE927A0798700E00531 /* AnimationTextProvider.swift in Sources */,
1701
1701
  2E9C96662822F43100677516 /* LayerTransformNode.swift in Sources */,
1702
+ 0887346F28F0CBDE00458627 /* LottieAnimation.swift in Sources */,
1702
1703
  2E9C97412822F43100677516 /* TestHelpers.swift in Sources */,
1703
1704
  08EF21DC289C643B0097EA47 /* KeyframeInterpolator.swift in Sources */,
1704
1705
  2E9C96152822F43100677516 /* Transform.swift in Sources */,
@@ -1731,6 +1732,7 @@
1731
1732
  2E9C96752822F43100677516 /* TrimPathNode.swift in Sources */,
1732
1733
  2E9C974D2822F43100677516 /* AnimationKeypathExtension.swift in Sources */,
1733
1734
  2E9C97052822F43100677516 /* CoreAnimationLayer.swift in Sources */,
1735
+ 08EED05028F0D2D10057D958 /* LottieColor.swift in Sources */,
1734
1736
  2EAF5AF527A0798700E00531 /* ColorValueProvider.swift in Sources */,
1735
1737
  2E9C972F2822F43100677516 /* CustomPathAnimation.swift in Sources */,
1736
1738
  2E9C97502822F43100677516 /* StringExtensions.swift in Sources */,
@@ -1739,7 +1741,6 @@
1739
1741
  2E9C95F72822F43100677516 /* Rectangle.swift in Sources */,
1740
1742
  2E9C96812822F43100677516 /* FillRenderer.swift in Sources */,
1741
1743
  2E9C95EB2822F43100677516 /* Repeater.swift in Sources */,
1742
- 2EAF5AAA27A0798700E00531 /* AnimationViewInitializers.swift in Sources */,
1743
1744
  2EAF5AA727A0798700E00531 /* LottieConfiguration.swift in Sources */,
1744
1745
  2E9C95D32822F43100677516 /* Fill.swift in Sources */,
1745
1746
  6DB3BDB8282454A6002A276D /* DictionaryInitializable.swift in Sources */,
@@ -1751,11 +1752,11 @@
1751
1752
  2E9C96A52822F43100677516 /* StrokeNode.swift in Sources */,
1752
1753
  2E9C95E52822F43100677516 /* ShapeTransform.swift in Sources */,
1753
1754
  2E9C96C92822F43100677516 /* ItemsExtension.swift in Sources */,
1754
- 2EAF5AAD27A0798700E00531 /* AnimationView.swift in Sources */,
1755
1755
  2E9C95E82822F43100677516 /* Merge.swift in Sources */,
1756
1756
  2E9C96032822F43100677516 /* ImageLayerModel.swift in Sources */,
1757
1757
  19465F52282F998B00BB2C97 /* CachedImageProvider.swift in Sources */,
1758
1758
  08F8B20D2898A7B100CB5323 /* RepeaterLayer.swift in Sources */,
1759
+ 0887347828F0CCDD00458627 /* LottieAnimationViewInitializers.swift in Sources */,
1759
1760
  2E9C96BA2822F43100677516 /* KeypathSearchable.swift in Sources */,
1760
1761
  2E9C963C2822F43100677516 /* AssetLibrary.swift in Sources */,
1761
1762
  2E9C97022822F43100677516 /* PreCompLayer.swift in Sources */,
@@ -1792,6 +1793,7 @@
1792
1793
  2EAF5AD727A0798700E00531 /* Vectors.swift in Sources */,
1793
1794
  2E9C95E22822F43100677516 /* Group.swift in Sources */,
1794
1795
  2E9C97112822F43100677516 /* Keyframes+combinedIfPossible.swift in Sources */,
1796
+ 0887347B28F0CCDD00458627 /* LottieAnimationView.swift in Sources */,
1795
1797
  2EAF5AD127A0798700E00531 /* AnimatedControl.swift in Sources */,
1796
1798
  2E9C966F2822F43100677516 /* LayerTextProvider.swift in Sources */,
1797
1799
  2E9C97172822F43100677516 /* CAAnimation+TimingConfiguration.swift in Sources */,
@@ -1813,13 +1815,13 @@
1813
1815
  2E9C96842822F43100677516 /* StrokeRenderer.swift in Sources */,
1814
1816
  2E9C965A2822F43100677516 /* MaskContainerLayer.swift in Sources */,
1815
1817
  2E9C96452822F43100677516 /* CompositionLayer.swift in Sources */,
1816
- 2EAF5ADA27A0798700E00531 /* Color.swift in Sources */,
1817
1818
  2E9C95F42822F43100677516 /* Stroke.swift in Sources */,
1818
1819
  2E9C96722822F43100677516 /* CompositionLayersInitializer.swift in Sources */,
1819
- 2EAF5A9E27A0798700E00531 /* AnimationViewBase.macOS.swift in Sources */,
1820
+ 2EAF5A9E27A0798700E00531 /* LottieAnimationViewBase.macOS.swift in Sources */,
1820
1821
  2E9C975C2822F43100677516 /* CompoundBezierPath.swift in Sources */,
1821
1822
  2E9C97532822F43100677516 /* DataExtension.swift in Sources */,
1822
1823
  2E9C95DF2822F43100677516 /* Shape.swift in Sources */,
1824
+ 0887347528F0CCDD00458627 /* LottieAnimationHelpers.swift in Sources */,
1823
1825
  2E9C96002822F43100677516 /* LayerModel.swift in Sources */,
1824
1826
  2E9C97652822F43100677516 /* CurveVertex.swift in Sources */,
1825
1827
  2E9C96482822F43100677516 /* NullCompositionLayer.swift in Sources */,
@@ -1829,7 +1831,6 @@
1829
1831
  2E9C96242822F43100677516 /* KeyframeGroup.swift in Sources */,
1830
1832
  2E9C96FF2822F43100677516 /* BaseAnimationLayer.swift in Sources */,
1831
1833
  2E9C96AB2822F43100677516 /* GradientStrokeNode.swift in Sources */,
1832
- 2EAF5AB027A0798700E00531 /* AnimationPublic.swift in Sources */,
1833
1834
  2EAF5ABF27A0798700E00531 /* AnimatedSwitch.swift in Sources */,
1834
1835
  2EAF5AC227A0798700E00531 /* BundleImageProvider.swift in Sources */,
1835
1836
  2E9C976B2822F43100677516 /* InterpolatableExtensions.swift in Sources */,
@@ -1840,7 +1841,7 @@
1840
1841
  2E9C972C2822F43100677516 /* StarAnimation.swift in Sources */,
1841
1842
  2E9C96E12822F43100677516 /* LayerModel+makeAnimationLayer.swift in Sources */,
1842
1843
  2E9C96A82822F43100677516 /* FillNode.swift in Sources */,
1843
- 2EAF5ACB27A0798700E00531 /* AnimationViewBase.swift in Sources */,
1844
+ 2EAF5ACB27A0798700E00531 /* LottieAnimationViewBase.swift in Sources */,
1844
1845
  2E9C96CC2822F43100677516 /* ShapeRenderLayer.swift in Sources */,
1845
1846
  2EAF5AEC27A0798700E00531 /* LottieLogger.swift in Sources */,
1846
1847
  2E9C976E2822F43100677516 /* KeyframeExtensions.swift in Sources */,
@@ -1854,7 +1855,6 @@
1854
1855
  2E9C971D2822F43100677516 /* CombinedShapeAnimation.swift in Sources */,
1855
1856
  2EAF5B0127A0798700E00531 /* PointValueProvider.swift in Sources */,
1856
1857
  2EAF5AE027A0798700E00531 /* Keyframe.swift in Sources */,
1857
- 2E9C960F2822F43100677516 /* Animation.swift in Sources */,
1858
1858
  2E9C969C2822F43100677516 /* StarNode.swift in Sources */,
1859
1859
  A40460592832C52B00ACFEDC /* BlendMode+Filter.swift in Sources */,
1860
1860
  2E9C96542822F43100677516 /* ImageCompositionLayer.swift in Sources */,
@@ -1911,6 +1911,7 @@
1911
1911
  2EAF5ABD27A0798700E00531 /* FilepathImageProvider.swift in Sources */,
1912
1912
  2EAF5AEA27A0798700E00531 /* AnimationTextProvider.swift in Sources */,
1913
1913
  2E9C96672822F43100677516 /* LayerTransformNode.swift in Sources */,
1914
+ 0887347028F0CBDE00458627 /* LottieAnimation.swift in Sources */,
1914
1915
  2E9C97422822F43100677516 /* TestHelpers.swift in Sources */,
1915
1916
  08EF21DD289C643B0097EA47 /* KeyframeInterpolator.swift in Sources */,
1916
1917
  2E9C96162822F43100677516 /* Transform.swift in Sources */,
@@ -1943,6 +1944,7 @@
1943
1944
  2E9C96762822F43100677516 /* TrimPathNode.swift in Sources */,
1944
1945
  2E9C974E2822F43100677516 /* AnimationKeypathExtension.swift in Sources */,
1945
1946
  2E9C97062822F43100677516 /* CoreAnimationLayer.swift in Sources */,
1947
+ 08EED05128F0D2D10057D958 /* LottieColor.swift in Sources */,
1946
1948
  2EAF5AF627A0798700E00531 /* ColorValueProvider.swift in Sources */,
1947
1949
  2E9C97302822F43100677516 /* CustomPathAnimation.swift in Sources */,
1948
1950
  2E9C97512822F43100677516 /* StringExtensions.swift in Sources */,
@@ -1951,7 +1953,6 @@
1951
1953
  2E9C95F82822F43100677516 /* Rectangle.swift in Sources */,
1952
1954
  2E9C96822822F43100677516 /* FillRenderer.swift in Sources */,
1953
1955
  2E9C95EC2822F43100677516 /* Repeater.swift in Sources */,
1954
- 2EAF5AAB27A0798700E00531 /* AnimationViewInitializers.swift in Sources */,
1955
1956
  2EAF5AA827A0798700E00531 /* LottieConfiguration.swift in Sources */,
1956
1957
  2E9C95D42822F43100677516 /* Fill.swift in Sources */,
1957
1958
  6DB3BDB9282454A6002A276D /* DictionaryInitializable.swift in Sources */,
@@ -1963,11 +1964,11 @@
1963
1964
  2E9C96A62822F43100677516 /* StrokeNode.swift in Sources */,
1964
1965
  2E9C95E62822F43100677516 /* ShapeTransform.swift in Sources */,
1965
1966
  2E9C96CA2822F43100677516 /* ItemsExtension.swift in Sources */,
1966
- 2EAF5AAE27A0798700E00531 /* AnimationView.swift in Sources */,
1967
1967
  2E9C95E92822F43100677516 /* Merge.swift in Sources */,
1968
1968
  2E9C96042822F43100677516 /* ImageLayerModel.swift in Sources */,
1969
1969
  19465F53282F998B00BB2C97 /* CachedImageProvider.swift in Sources */,
1970
1970
  08F8B20E2898A7B100CB5323 /* RepeaterLayer.swift in Sources */,
1971
+ 0887347928F0CCDD00458627 /* LottieAnimationViewInitializers.swift in Sources */,
1971
1972
  2E9C96BB2822F43100677516 /* KeypathSearchable.swift in Sources */,
1972
1973
  2E9C963D2822F43100677516 /* AssetLibrary.swift in Sources */,
1973
1974
  2E9C97032822F43100677516 /* PreCompLayer.swift in Sources */,
@@ -2004,6 +2005,7 @@
2004
2005
  2EAF5AD827A0798700E00531 /* Vectors.swift in Sources */,
2005
2006
  2E9C95E32822F43100677516 /* Group.swift in Sources */,
2006
2007
  2E9C97122822F43100677516 /* Keyframes+combinedIfPossible.swift in Sources */,
2008
+ 0887347C28F0CCDD00458627 /* LottieAnimationView.swift in Sources */,
2007
2009
  2EAF5AD227A0798700E00531 /* AnimatedControl.swift in Sources */,
2008
2010
  2E9C96702822F43100677516 /* LayerTextProvider.swift in Sources */,
2009
2011
  2E9C97182822F43100677516 /* CAAnimation+TimingConfiguration.swift in Sources */,
@@ -2025,13 +2027,13 @@
2025
2027
  2E9C96852822F43100677516 /* StrokeRenderer.swift in Sources */,
2026
2028
  2E9C965B2822F43100677516 /* MaskContainerLayer.swift in Sources */,
2027
2029
  2E9C96462822F43100677516 /* CompositionLayer.swift in Sources */,
2028
- 2EAF5ADB27A0798700E00531 /* Color.swift in Sources */,
2029
2030
  2E9C95F52822F43100677516 /* Stroke.swift in Sources */,
2030
2031
  2E9C96732822F43100677516 /* CompositionLayersInitializer.swift in Sources */,
2031
- 2EAF5A9F27A0798700E00531 /* AnimationViewBase.macOS.swift in Sources */,
2032
+ 2EAF5A9F27A0798700E00531 /* LottieAnimationViewBase.macOS.swift in Sources */,
2032
2033
  2E9C975D2822F43100677516 /* CompoundBezierPath.swift in Sources */,
2033
2034
  2E9C97542822F43100677516 /* DataExtension.swift in Sources */,
2034
2035
  2E9C95E02822F43100677516 /* Shape.swift in Sources */,
2036
+ 0887347628F0CCDD00458627 /* LottieAnimationHelpers.swift in Sources */,
2035
2037
  2E9C96012822F43100677516 /* LayerModel.swift in Sources */,
2036
2038
  2E9C97662822F43100677516 /* CurveVertex.swift in Sources */,
2037
2039
  2E9C96492822F43100677516 /* NullCompositionLayer.swift in Sources */,
@@ -2041,7 +2043,6 @@
2041
2043
  2E9C96252822F43100677516 /* KeyframeGroup.swift in Sources */,
2042
2044
  2E9C97002822F43100677516 /* BaseAnimationLayer.swift in Sources */,
2043
2045
  2E9C96AC2822F43100677516 /* GradientStrokeNode.swift in Sources */,
2044
- 2EAF5AB127A0798700E00531 /* AnimationPublic.swift in Sources */,
2045
2046
  2EAF5AC027A0798700E00531 /* AnimatedSwitch.swift in Sources */,
2046
2047
  2EAF5AC327A0798700E00531 /* BundleImageProvider.swift in Sources */,
2047
2048
  2E9C976C2822F43100677516 /* InterpolatableExtensions.swift in Sources */,
@@ -2052,7 +2053,7 @@
2052
2053
  2E9C972D2822F43100677516 /* StarAnimation.swift in Sources */,
2053
2054
  2E9C96E22822F43100677516 /* LayerModel+makeAnimationLayer.swift in Sources */,
2054
2055
  2E9C96A92822F43100677516 /* FillNode.swift in Sources */,
2055
- 2EAF5ACC27A0798700E00531 /* AnimationViewBase.swift in Sources */,
2056
+ 2EAF5ACC27A0798700E00531 /* LottieAnimationViewBase.swift in Sources */,
2056
2057
  2E9C96CD2822F43100677516 /* ShapeRenderLayer.swift in Sources */,
2057
2058
  2EAF5AED27A0798700E00531 /* LottieLogger.swift in Sources */,
2058
2059
  2E9C976F2822F43100677516 /* KeyframeExtensions.swift in Sources */,
@@ -2066,7 +2067,6 @@
2066
2067
  2E9C971E2822F43100677516 /* CombinedShapeAnimation.swift in Sources */,
2067
2068
  2EAF5B0227A0798700E00531 /* PointValueProvider.swift in Sources */,
2068
2069
  2EAF5AE127A0798700E00531 /* Keyframe.swift in Sources */,
2069
- 2E9C96102822F43100677516 /* Animation.swift in Sources */,
2070
2070
  2E9C969D2822F43100677516 /* StarNode.swift in Sources */,
2071
2071
  A404605A2832C52B00ACFEDC /* BlendMode+Filter.swift in Sources */,
2072
2072
  2E9C96552822F43100677516 /* ImageCompositionLayer.swift in Sources */,
@@ -2102,6 +2102,7 @@
2102
2102
  2EAF5ABE27A0798700E00531 /* FilepathImageProvider.swift in Sources */,
2103
2103
  2EAF5AEB27A0798700E00531 /* AnimationTextProvider.swift in Sources */,
2104
2104
  2E9C96682822F43100677516 /* LayerTransformNode.swift in Sources */,
2105
+ 0887347128F0CBDE00458627 /* LottieAnimation.swift in Sources */,
2105
2106
  2E9C97432822F43100677516 /* TestHelpers.swift in Sources */,
2106
2107
  08EF21DE289C643B0097EA47 /* KeyframeInterpolator.swift in Sources */,
2107
2108
  2E9C96172822F43100677516 /* Transform.swift in Sources */,
@@ -2134,6 +2135,7 @@
2134
2135
  2E9C96772822F43100677516 /* TrimPathNode.swift in Sources */,
2135
2136
  2E9C974F2822F43100677516 /* AnimationKeypathExtension.swift in Sources */,
2136
2137
  2E9C97072822F43100677516 /* CoreAnimationLayer.swift in Sources */,
2138
+ 08EED05228F0D2D10057D958 /* LottieColor.swift in Sources */,
2137
2139
  2EAF5AF727A0798700E00531 /* ColorValueProvider.swift in Sources */,
2138
2140
  2E9C97312822F43100677516 /* CustomPathAnimation.swift in Sources */,
2139
2141
  2E9C97522822F43100677516 /* StringExtensions.swift in Sources */,
@@ -2142,7 +2144,6 @@
2142
2144
  2E9C95F92822F43100677516 /* Rectangle.swift in Sources */,
2143
2145
  2E9C96832822F43100677516 /* FillRenderer.swift in Sources */,
2144
2146
  2E9C95ED2822F43100677516 /* Repeater.swift in Sources */,
2145
- 2EAF5AAC27A0798700E00531 /* AnimationViewInitializers.swift in Sources */,
2146
2147
  2EAF5AA927A0798700E00531 /* LottieConfiguration.swift in Sources */,
2147
2148
  2E9C95D52822F43100677516 /* Fill.swift in Sources */,
2148
2149
  6DB3BDBA282454A6002A276D /* DictionaryInitializable.swift in Sources */,
@@ -2154,11 +2155,11 @@
2154
2155
  2E9C96A72822F43100677516 /* StrokeNode.swift in Sources */,
2155
2156
  2E9C95E72822F43100677516 /* ShapeTransform.swift in Sources */,
2156
2157
  2E9C96CB2822F43100677516 /* ItemsExtension.swift in Sources */,
2157
- 2EAF5AAF27A0798700E00531 /* AnimationView.swift in Sources */,
2158
2158
  2E9C95EA2822F43100677516 /* Merge.swift in Sources */,
2159
2159
  2E9C96052822F43100677516 /* ImageLayerModel.swift in Sources */,
2160
2160
  19465F54282F998B00BB2C97 /* CachedImageProvider.swift in Sources */,
2161
2161
  08F8B20F2898A7B100CB5323 /* RepeaterLayer.swift in Sources */,
2162
+ 0887347A28F0CCDD00458627 /* LottieAnimationViewInitializers.swift in Sources */,
2162
2163
  2E9C96BC2822F43100677516 /* KeypathSearchable.swift in Sources */,
2163
2164
  2E9C963E2822F43100677516 /* AssetLibrary.swift in Sources */,
2164
2165
  2E9C97042822F43100677516 /* PreCompLayer.swift in Sources */,
@@ -2195,6 +2196,7 @@
2195
2196
  2EAF5AD927A0798700E00531 /* Vectors.swift in Sources */,
2196
2197
  2E9C95E42822F43100677516 /* Group.swift in Sources */,
2197
2198
  2E9C97132822F43100677516 /* Keyframes+combinedIfPossible.swift in Sources */,
2199
+ 0887347D28F0CCDD00458627 /* LottieAnimationView.swift in Sources */,
2198
2200
  2EAF5AD327A0798700E00531 /* AnimatedControl.swift in Sources */,
2199
2201
  2E9C96712822F43100677516 /* LayerTextProvider.swift in Sources */,
2200
2202
  2E9C97192822F43100677516 /* CAAnimation+TimingConfiguration.swift in Sources */,
@@ -2216,13 +2218,13 @@
2216
2218
  2E9C96862822F43100677516 /* StrokeRenderer.swift in Sources */,
2217
2219
  2E9C965C2822F43100677516 /* MaskContainerLayer.swift in Sources */,
2218
2220
  2E9C96472822F43100677516 /* CompositionLayer.swift in Sources */,
2219
- 2EAF5ADC27A0798700E00531 /* Color.swift in Sources */,
2220
2221
  2E9C95F62822F43100677516 /* Stroke.swift in Sources */,
2221
2222
  2E9C96742822F43100677516 /* CompositionLayersInitializer.swift in Sources */,
2222
- 2EAF5AA027A0798700E00531 /* AnimationViewBase.macOS.swift in Sources */,
2223
+ 2EAF5AA027A0798700E00531 /* LottieAnimationViewBase.macOS.swift in Sources */,
2223
2224
  2E9C975E2822F43100677516 /* CompoundBezierPath.swift in Sources */,
2224
2225
  2E9C97552822F43100677516 /* DataExtension.swift in Sources */,
2225
2226
  2E9C95E12822F43100677516 /* Shape.swift in Sources */,
2227
+ 0887347728F0CCDD00458627 /* LottieAnimationHelpers.swift in Sources */,
2226
2228
  2E9C96022822F43100677516 /* LayerModel.swift in Sources */,
2227
2229
  2E9C97672822F43100677516 /* CurveVertex.swift in Sources */,
2228
2230
  2E9C964A2822F43100677516 /* NullCompositionLayer.swift in Sources */,
@@ -2232,7 +2234,6 @@
2232
2234
  2E9C96262822F43100677516 /* KeyframeGroup.swift in Sources */,
2233
2235
  2E9C97012822F43100677516 /* BaseAnimationLayer.swift in Sources */,
2234
2236
  2E9C96AD2822F43100677516 /* GradientStrokeNode.swift in Sources */,
2235
- 2EAF5AB227A0798700E00531 /* AnimationPublic.swift in Sources */,
2236
2237
  2EAF5AC127A0798700E00531 /* AnimatedSwitch.swift in Sources */,
2237
2238
  2EAF5AC427A0798700E00531 /* BundleImageProvider.swift in Sources */,
2238
2239
  2E9C976D2822F43100677516 /* InterpolatableExtensions.swift in Sources */,
@@ -2243,7 +2244,7 @@
2243
2244
  2E9C972E2822F43100677516 /* StarAnimation.swift in Sources */,
2244
2245
  2E9C96E32822F43100677516 /* LayerModel+makeAnimationLayer.swift in Sources */,
2245
2246
  2E9C96AA2822F43100677516 /* FillNode.swift in Sources */,
2246
- 2EAF5ACD27A0798700E00531 /* AnimationViewBase.swift in Sources */,
2247
+ 2EAF5ACD27A0798700E00531 /* LottieAnimationViewBase.swift in Sources */,
2247
2248
  2E9C96CE2822F43100677516 /* ShapeRenderLayer.swift in Sources */,
2248
2249
  2EAF5AEE27A0798700E00531 /* LottieLogger.swift in Sources */,
2249
2250
  2E9C97702822F43100677516 /* KeyframeExtensions.swift in Sources */,
@@ -2257,7 +2258,6 @@
2257
2258
  2E9C971F2822F43100677516 /* CombinedShapeAnimation.swift in Sources */,
2258
2259
  2EAF5B0327A0798700E00531 /* PointValueProvider.swift in Sources */,
2259
2260
  2EAF5AE227A0798700E00531 /* Keyframe.swift in Sources */,
2260
- 2E9C96112822F43100677516 /* Animation.swift in Sources */,
2261
2261
  2E9C969E2822F43100677516 /* StarNode.swift in Sources */,
2262
2262
  A404605B2832C52B00ACFEDC /* BlendMode+Filter.swift in Sources */,
2263
2263
  2E9C96562822F43100677516 /* ImageCompositionLayer.swift in Sources */,
@@ -2674,8 +2674,8 @@
2674
2674
  isa = XCRemoteSwiftPackageReference;
2675
2675
  repositoryURL = "https://github.com/pointfreeco/swift-snapshot-testing.git";
2676
2676
  requirement = {
2677
- branch = main;
2678
- kind = branch;
2677
+ kind = revision;
2678
+ revision = 0c2826f26d00ff5ddf2de92cb6b2139b0dd3d1ee;
2679
2679
  };
2680
2680
  };
2681
2681
  6D0E635D28246BD0007C5DB6 /* XCRemoteSwiftPackageReference "Difference" */ = {
@@ -0,0 +1,22 @@
1
+ {
2
+ "pins" : [
3
+ {
4
+ "identity" : "difference",
5
+ "kind" : "remoteSourceControl",
6
+ "location" : "https://github.com/krzysztofzablocki/Difference",
7
+ "state" : {
8
+ "revision" : "02fe1111edc8318c4f8a0da96336fcbcc201f38b",
9
+ "version" : "1.0.1"
10
+ }
11
+ },
12
+ {
13
+ "identity" : "swift-snapshot-testing",
14
+ "kind" : "remoteSourceControl",
15
+ "location" : "https://github.com/pointfreeco/swift-snapshot-testing.git",
16
+ "state" : {
17
+ "revision" : "0c2826f26d00ff5ddf2de92cb6b2139b0dd3d1ee"
18
+ }
19
+ }
20
+ ],
21
+ "version" : 2
22
+ }
@@ -23,8 +23,8 @@
23
23
  "package": "swift-snapshot-testing",
24
24
  "repositoryURL": "https://github.com/pointfreeco/swift-snapshot-testing.git",
25
25
  "state": {
26
- "branch": "main",
27
- "revision": "88f6e2c0afe04221fcfb1601a2ecaad83115a05f",
26
+ "branch": null,
27
+ "revision": "0c2826f26d00ff5ddf2de92cb6b2139b0dd3d1ee",
28
28
  "version": null
29
29
  }
30
30
  }
@@ -82,7 +82,7 @@ extension CALayer {
82
82
 
83
83
  /// A `CAAnimation` that applies the custom value from the `AnyValueProvider`
84
84
  /// registered for this specific property's `AnimationKeypath`,
85
- /// if one has been registered using `AnimationView.setValueProvider(_:keypath:)`.
85
+ /// if one has been registered using `LottieAnimationView.setValueProvider(_:keypath:)`.
86
86
  @nonobjc
87
87
  private func customizedAnimation<ValueRepresentation>(
88
88
  for property: LayerProperty<ValueRepresentation>,
@@ -56,22 +56,25 @@ extension CombinedShapeItem {
56
56
  /// Manually combines the given shape keyframes by manually interpolating at each frame
57
57
  static func manuallyInterpolating(
58
58
  shapes: [KeyframeGroup<BezierPath>],
59
- name: String,
60
- context: LayerContext)
59
+ name: String)
61
60
  -> CombinedShapeItem
62
61
  {
63
- let animationTimeRange = Int(context.animation.startFrame)...Int(context.animation.endFrame)
64
-
65
62
  let interpolators = shapes.map { shape in
66
63
  KeyframeInterpolator(keyframes: shape.keyframes)
67
64
  }
68
65
 
69
- let interpolatedKeyframes = animationTimeRange.map { frame in
66
+ let times = shapes.flatMap { $0.keyframes.map { $0.time } }
67
+
68
+ let minimumTime = times.min() ?? 0
69
+ let maximumTime = times.max() ?? 0
70
+ let animationLocalTimeRange = Int(minimumTime)...Int(maximumTime)
71
+
72
+ let interpolatedKeyframes = animationLocalTimeRange.map { localTime in
70
73
  Keyframe(
71
74
  value: interpolators.compactMap { interpolator in
72
- interpolator.value(frame: AnimationFrameTime(frame)) as? BezierPath
75
+ interpolator.value(frame: AnimationFrameTime(localTime)) as? BezierPath
73
76
  },
74
- time: AnimationFrameTime(frame))
77
+ time: AnimationFrameTime(localTime))
75
78
  }
76
79
 
77
80
  return CombinedShapeItem(
@@ -30,8 +30,8 @@ extension CAShapeLayer {
30
30
  extension Ellipse {
31
31
  /// Data that represents how to render an ellipse at a specific point in time
32
32
  struct Keyframe {
33
- let size: Vector3D
34
- let position: Vector3D
33
+ let size: LottieVector3D
34
+ let position: LottieVector3D
35
35
  }
36
36
 
37
37
  /// Creates a single array of animatable keyframes from the separate arrays of keyframes in this Ellipse
@@ -7,8 +7,8 @@ import QuartzCore
7
7
 
8
8
  /// A `ShapeItem` that represents a gradient
9
9
  protocol GradientShapeItem: OpacityAnimationModel {
10
- var startPoint: KeyframeGroup<Vector3D> { get }
11
- var endPoint: KeyframeGroup<Vector3D> { get }
10
+ var startPoint: KeyframeGroup<LottieVector3D> { get }
11
+ var endPoint: KeyframeGroup<LottieVector3D> { get }
12
12
  var gradientType: GradientType { get }
13
13
  var numberOfColors: Int { get }
14
14
  var colors: KeyframeGroup<[Double]> { get }
@@ -28,7 +28,7 @@ struct LayerProperty<ValueRepresentation: Equatable> {
28
28
  // MARK: - CustomizableProperty
29
29
 
30
30
  /// A description of how a `CALayer` property can be customized dynamically
31
- /// at runtime using `AnimationView.setValueProvider(_:keypath:)`
31
+ /// at runtime using `LottieAnimationView.setValueProvider(_:keypath:)`
32
32
  struct CustomizableProperty<ValueRepresentation> {
33
33
  /// The name that `AnimationKeypath`s can use to refer to this property
34
34
  /// - When building an animation for this property that will be applied
@@ -219,7 +219,7 @@ extension CustomizableProperty {
219
219
  .init(
220
220
  name: [.color],
221
221
  conversion: { typeErasedValue in
222
- guard let color = typeErasedValue as? Color else {
222
+ guard let color = typeErasedValue as? LottieColor else {
223
223
  return nil
224
224
  }
225
225
 
@@ -7,7 +7,7 @@ import QuartzCore
7
7
 
8
8
  protocol OpacityAnimationModel {
9
9
  /// The opacity animation to apply to a `CALayer`
10
- var opacity: KeyframeGroup<Vector1D> { get }
10
+ var opacity: KeyframeGroup<LottieVector1D> { get }
11
11
  }
12
12
 
13
13
  // MARK: - Transform + OpacityAnimationModel
@@ -31,9 +31,9 @@ extension CAShapeLayer {
31
31
  extension Rectangle {
32
32
  /// Data that represents how to render a rectangle at a specific point in time
33
33
  struct Keyframe {
34
- let size: Vector3D
35
- let position: Vector3D
36
- let cornerRadius: Vector1D
34
+ let size: LottieVector3D
35
+ let position: LottieVector3D
36
+ let cornerRadius: LottieVector1D
37
37
  }
38
38
 
39
39
  /// Creates a single array of animatable keyframes from the separate arrays of keyframes in this Rectangle