lottie-ios 3.4.1 → 3.4.2

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 (180) hide show
  1. package/.github/workflows/stale_issues.yml +17 -0
  2. package/.swiftpm/xcode/package.xcworkspace/xcuserdata/calstephens.xcuserdatad/UserInterfaceState.xcuserstate +0 -0
  3. package/Lottie.xcodeproj/project.pbxproj +24 -16
  4. package/Lottie.xcodeproj/xcshareddata/xcschemes/Lottie (macOS).xcscheme +2 -2
  5. package/Lottie.xcworkspace/xcshareddata/swiftpm/Package.resolved +0 -81
  6. package/Lottie.xcworkspace/xcuserdata/calstephens.xcuserdatad/UserInterfaceState.xcuserstate +0 -0
  7. package/Lottie.xcworkspace/xcuserdata/calstephens.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist +0 -17
  8. package/Lottie.xcworkspace/xcuserdata/calstephens.xcuserdatad/xcdebugger/Expressions.xcexplist +114 -1
  9. package/Package.swift +1 -6
  10. package/Rakefile +41 -2
  11. package/Sources/Private/CoreAnimation/Animations/CALayer+addAnimation.swift +1 -2
  12. package/Sources/Private/CoreAnimation/Animations/CombinedShapeAnimation.swift +28 -0
  13. package/Sources/Private/CoreAnimation/Animations/EllipseAnimation.swift +31 -4
  14. package/Sources/Private/CoreAnimation/Animations/GradientAnimations.swift +2 -2
  15. package/Sources/Private/CoreAnimation/Animations/RectangleAnimation.swift +34 -7
  16. package/Sources/Private/CoreAnimation/Animations/ShapeAnimation.swift +25 -14
  17. package/Sources/Private/CoreAnimation/Animations/StarAnimation.swift +61 -32
  18. package/Sources/Private/CoreAnimation/Animations/StrokeAnimation.swift +4 -1
  19. package/Sources/Private/CoreAnimation/CoreAnimationLayer.swift +6 -1
  20. package/Sources/Private/CoreAnimation/Extensions/KeyframeGroup+exactlyOneKeyframe.swift +2 -2
  21. package/Sources/Private/CoreAnimation/Extensions/Keyframes+combinedIfPossible.swift +107 -26
  22. package/Sources/Private/CoreAnimation/Layers/BaseCompositionLayer.swift +2 -1
  23. package/Sources/Private/CoreAnimation/Layers/CALayer+setupLayerHierarchy.swift +48 -12
  24. package/Sources/Private/CoreAnimation/Layers/GradientRenderLayer.swift +1 -1
  25. package/Sources/Private/CoreAnimation/Layers/LayerModel+makeAnimationLayer.swift +4 -0
  26. package/Sources/Private/CoreAnimation/Layers/MaskCompositionLayer.swift +1 -1
  27. package/Sources/Private/CoreAnimation/Layers/RepeaterLayer.swift +85 -0
  28. package/Sources/Private/CoreAnimation/Layers/ShapeItemLayer.swift +17 -4
  29. package/Sources/Private/CoreAnimation/Layers/ShapeLayer.swift +124 -53
  30. package/Sources/Private/CoreAnimation/Layers/TextLayer.swift +1 -1
  31. package/Sources/Private/MainThread/LayerContainers/CompLayers/CompositionLayer.swift +1 -1
  32. package/Sources/Private/MainThread/LayerContainers/Utility/CoreTextRenderLayer.swift +29 -0
  33. package/Sources/Private/MainThread/LayerContainers/Utility/InvertedMatteLayer.swift +1 -0
  34. package/Sources/Private/MainThread/NodeRenderSystem/Extensions/ItemsExtension.swift +5 -0
  35. package/Sources/Private/MainThread/NodeRenderSystem/Nodes/OutputNodes/Renderables/GradientFillRenderer.swift +5 -0
  36. package/Sources/Private/MainThread/NodeRenderSystem/Nodes/RenderNodes/GradientFillNode.swift +3 -0
  37. package/Sources/Private/MainThread/NodeRenderSystem/Nodes/RenderNodes/GradientStrokeNode.swift +1 -1
  38. package/Sources/Private/MainThread/NodeRenderSystem/Nodes/RenderNodes/StrokeNode.swift +17 -1
  39. package/Sources/Private/Model/Animation.swift +4 -4
  40. package/Sources/Private/Model/Keyframes/KeyframeGroup.swift +25 -0
  41. package/Sources/Private/Model/ShapeItems/Ellipse.swift +0 -1
  42. package/Sources/Private/Model/ShapeItems/Fill.swift +1 -1
  43. package/Sources/Private/Model/ShapeItems/GradientFill.swift +14 -1
  44. package/Sources/Private/Model/ShapeItems/GradientStroke.swift +0 -1
  45. package/Sources/Private/Model/ShapeItems/Merge.swift +0 -1
  46. package/Sources/Private/Model/ShapeItems/Rectangle.swift +0 -1
  47. package/Sources/Private/Model/ShapeItems/Repeater.swift +0 -1
  48. package/Sources/Private/Model/ShapeItems/ShapeTransform.swift +0 -1
  49. package/Sources/Private/Model/ShapeItems/Star.swift +0 -1
  50. package/Sources/Private/Model/ShapeItems/Stroke.swift +0 -1
  51. package/Sources/Private/Model/ShapeItems/Trim.swift +0 -1
  52. package/Sources/Private/{MainThread/NodeRenderSystem/NodeProperties/ValueProviders → Utility/Interpolatable}/KeyframeInterpolator.swift +0 -0
  53. package/Sources/Public/Animation/AnimationView.swift +1 -1
  54. package/Sources/Public/iOS/BundleImageProvider.swift +2 -2
  55. package/Sources/Public/iOS/FilepathImageProvider.swift +1 -1
  56. package/Sources/Public/macOS/BundleImageProvider.macOS.swift +1 -1
  57. package/Sources/Public/macOS/FilepathImageProvider.macOS.swift +1 -1
  58. package/Tests/AnimationKeypathTests.swift +10 -1
  59. package/Tests/PerformanceTests.swift +19 -20
  60. package/Tests/Samples/9squares_AlBoardman.json +1 -0
  61. package/Tests/Samples/Boat_Loader.json +1 -0
  62. package/Tests/Samples/HamburgerArrow.json +1 -0
  63. package/Tests/Samples/IconTransitions.json +1 -0
  64. package/Tests/Samples/Images/dog.png +0 -0
  65. package/Tests/Samples/Issues/issue_1125.json +1 -0
  66. package/Tests/Samples/Issues/issue_1260.json +1 -0
  67. package/Tests/Samples/Issues/issue_1403.json +1 -0
  68. package/Tests/Samples/Issues/issue_1407.json +1 -0
  69. package/Tests/Samples/Issues/issue_1460.json +1 -0
  70. package/Tests/Samples/Issues/issue_1488.json +1 -0
  71. package/Tests/Samples/Issues/issue_1505.json +1 -0
  72. package/Tests/Samples/Issues/issue_1541.json +1 -0
  73. package/Tests/Samples/Issues/issue_1557.json +1 -0
  74. package/Tests/Samples/Issues/issue_1603.json +1 -0
  75. package/Tests/Samples/Issues/issue_1628.json +1 -0
  76. package/Tests/Samples/Issues/issue_1636.json +1 -0
  77. package/Tests/Samples/Issues/issue_1643.json +1 -0
  78. package/Tests/Samples/Issues/issue_1655.json +1 -0
  79. package/Tests/Samples/Issues/issue_1664.json +1 -0
  80. package/Tests/Samples/Issues/issue_1683.json +1 -0
  81. package/Tests/Samples/Issues/issue_1687.json +1 -0
  82. package/Tests/Samples/Issues/issue_1711.json +1 -0
  83. package/Tests/Samples/Issues/issue_1717.json +1 -0
  84. package/Tests/Samples/Issues/issue_769.json +1 -0
  85. package/Tests/Samples/Issues/issue_885.json +1 -0
  86. package/Tests/Samples/Issues/issue_965.json +1 -0
  87. package/Tests/Samples/Issues/pr_1536.json +1 -0
  88. package/Tests/Samples/Issues/pr_1563.json +8439 -0
  89. package/Tests/Samples/Issues/pr_1592.json +5527 -0
  90. package/Tests/Samples/Issues/pr_1599.json +738 -0
  91. package/Tests/Samples/Issues/pr_1604_1.json +1 -0
  92. package/Tests/Samples/Issues/pr_1604_2.json +1 -0
  93. package/Tests/Samples/Issues/pr_1632_1.json +1 -0
  94. package/Tests/Samples/Issues/pr_1632_2.json +1 -0
  95. package/Tests/Samples/Issues/pr_1686.json +513 -0
  96. package/Tests/Samples/Issues/pr_1698.json +1 -0
  97. package/Tests/Samples/Issues/pr_1699.json +1 -0
  98. package/Tests/Samples/LottieFiles/LICENSE.md +14 -0
  99. package/Tests/Samples/LottieFiles/bounce_strokes.json +1 -0
  100. package/Tests/Samples/LottieFiles/cactus.json +1 -0
  101. package/Tests/Samples/LottieFiles/dog_car_ride.json +1 -0
  102. package/Tests/Samples/LottieFiles/draft_icon.json +1 -0
  103. package/Tests/Samples/LottieFiles/fireworks.json +1 -0
  104. package/Tests/Samples/LottieFiles/gradient_1.json +1 -0
  105. package/Tests/Samples/LottieFiles/gradient_2.json +1 -0
  106. package/Tests/Samples/LottieFiles/gradient_pill.json +1 -0
  107. package/Tests/Samples/LottieFiles/gradient_shapes.json +1 -0
  108. package/Tests/Samples/LottieFiles/gradient_square.json +1 -0
  109. package/Tests/Samples/LottieFiles/growth.json +1 -0
  110. package/Tests/Samples/LottieFiles/infinity_loader.json +1 -0
  111. package/Tests/Samples/LottieFiles/loading_dots_1.json +1 -0
  112. package/Tests/Samples/LottieFiles/loading_dots_2.json +1 -0
  113. package/Tests/Samples/LottieFiles/loading_dots_3.json +1 -0
  114. package/Tests/Samples/LottieFiles/loading_gradient_strokes.json +1 -0
  115. package/Tests/Samples/LottieFiles/settings_slider.json +1 -0
  116. package/Tests/Samples/LottieFiles/shop.json +1 -0
  117. package/Tests/Samples/LottieFiles/step_loader.json +1 -0
  118. package/Tests/Samples/LottieLogo1.json +1 -0
  119. package/Tests/Samples/LottieLogo1_masked.json +1 -0
  120. package/Tests/Samples/LottieLogo2.json +1 -0
  121. package/Tests/Samples/MotionCorpse_Jrcanest.json +1 -0
  122. package/Tests/Samples/Nonanimating/BasicLayers.json +1 -0
  123. package/Tests/Samples/Nonanimating/DisableNodesTest.json +1 -0
  124. package/Tests/Samples/Nonanimating/FirstText.json +1 -0
  125. package/Tests/Samples/Nonanimating/GeometryTransformTest.json +1 -0
  126. package/Tests/Samples/Nonanimating/Text_AnimatedProperties.json +1 -0
  127. package/Tests/Samples/Nonanimating/Text_Glyph.json +1 -0
  128. package/Tests/Samples/Nonanimating/Text_NoAnimation.json +1 -0
  129. package/Tests/Samples/Nonanimating/Text_NoGlyph.json +1 -0
  130. package/Tests/Samples/Nonanimating/Zoom.json +1 -0
  131. package/Tests/Samples/Nonanimating/_dog.json +1 -0
  132. package/Tests/Samples/Nonanimating/base64Test.json +1 -0
  133. package/Tests/Samples/Nonanimating/blend_mode_test.json +1 -0
  134. package/Tests/Samples/Nonanimating/keypathTest.json +1 -0
  135. package/Tests/Samples/Nonanimating/verifyLineHeight.json +1 -0
  136. package/Tests/Samples/PinJump.json +1 -0
  137. package/Tests/Samples/Switch.json +1 -0
  138. package/Tests/Samples/Switch_States.json +1 -0
  139. package/Tests/Samples/TwitterHeart.json +1 -0
  140. package/Tests/Samples/TwitterHeartButton.json +1 -0
  141. package/Tests/Samples/TypeFace/A.json +1 -0
  142. package/Tests/Samples/TypeFace/Apostrophe.json +1 -0
  143. package/Tests/Samples/TypeFace/B.json +1 -0
  144. package/Tests/Samples/TypeFace/BlinkingCursor.json +1 -0
  145. package/Tests/Samples/TypeFace/C.json +1 -0
  146. package/Tests/Samples/TypeFace/Colon.json +1 -0
  147. package/Tests/Samples/TypeFace/Comma.json +1 -0
  148. package/Tests/Samples/TypeFace/D.json +1 -0
  149. package/Tests/Samples/TypeFace/E.json +1 -0
  150. package/Tests/Samples/TypeFace/F.json +1 -0
  151. package/Tests/Samples/TypeFace/G.json +1 -0
  152. package/Tests/Samples/TypeFace/H.json +1 -0
  153. package/Tests/Samples/TypeFace/I.json +1 -0
  154. package/Tests/Samples/TypeFace/J.json +1 -0
  155. package/Tests/Samples/TypeFace/K.json +1 -0
  156. package/Tests/Samples/TypeFace/L.json +1 -0
  157. package/Tests/Samples/TypeFace/M.json +1 -0
  158. package/Tests/Samples/TypeFace/N.json +1 -0
  159. package/Tests/Samples/TypeFace/O.json +1 -0
  160. package/Tests/Samples/TypeFace/P.json +1 -0
  161. package/Tests/Samples/TypeFace/Q.json +1 -0
  162. package/Tests/Samples/TypeFace/R.json +1 -0
  163. package/Tests/Samples/TypeFace/S.json +1 -0
  164. package/Tests/Samples/TypeFace/T.json +1 -0
  165. package/Tests/Samples/TypeFace/U.json +1 -0
  166. package/Tests/Samples/TypeFace/V.json +1 -0
  167. package/Tests/Samples/TypeFace/W.json +1 -0
  168. package/Tests/Samples/TypeFace/X.json +1 -0
  169. package/Tests/Samples/TypeFace/Y.json +1 -0
  170. package/Tests/Samples/TypeFace/Z.json +1 -0
  171. package/Tests/Samples/Watermelon.json +1 -0
  172. package/Tests/Samples/setValueTest.json +1 -0
  173. package/Tests/Samples/timeremap.json +1 -0
  174. package/Tests/Samples/vcTransition1.json +1 -0
  175. package/Tests/Samples/vcTransition2.json +1 -0
  176. package/Tests/SnapshotConfiguration.swift +5 -0
  177. package/lottie-ios.podspec +2 -1
  178. package/package.json +1 -1
  179. package/.swift-version +0 -1
  180. package/Package.resolved +0 -88

There are too many changes on this page to be displayed.


The amount of changes on this page would crash your brower.

You can still verify the content by downloading the package file manually.