lottie-ios 3.2.0 → 3.4.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.
- package/.github/FUNDING.yml +1 -1
- package/.github/actions/setup/action.yml +32 -0
- package/.github/issue_template.md +6 -23
- package/.github/workflows/main.yml +95 -0
- package/.spi.yml +6 -0
- package/.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata +7 -0
- package/.swiftpm/xcode/package.xcworkspace/xcuserdata/cal.xcuserdatad/UserInterfaceState.xcuserstate +0 -0
- package/.swiftpm/xcode/xcuserdata/{brandonwithrow.xcuserdatad → cal.xcuserdatad}/xcschemes/xcschememanagement.plist +25 -15
- package/.swiftpm/xcode/xcuserdata/calstephens.xcuserdatad/xcschemes/xcschememanagement.plist +14 -0
- package/Gemfile +4 -0
- package/Gemfile.lock +102 -0
- package/Lottie.xcodeproj/project.pbxproj +2005 -1974
- package/Lottie.xcodeproj/project.xcworkspace/contents.xcworkspacedata +1 -1
- package/Lottie.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved +23 -0
- package/Lottie.xcodeproj/project.xcworkspace/xcuserdata/cal.xcuserdatad/UserInterfaceState.xcuserstate +0 -0
- package/Lottie.xcodeproj/xcshareddata/xcschemes/{Lottie_iOS.xcscheme → Lottie (iOS).xcscheme } +15 -18
- package/Lottie.xcodeproj/xcshareddata/xcschemes/{Lottie_macOS.xcscheme → Lottie (macOS).xcscheme } +7 -20
- package/Lottie.xcodeproj/xcshareddata/xcschemes/{Lottie_tvOS.xcscheme → Lottie (tvOS).xcscheme } +5 -18
- package/Lottie.xcodeproj/xcuserdata/cal.xcuserdatad/xcschemes/xcschememanagement.plist +37 -0
- package/Lottie.xcodeproj/xcuserdata/calstephens.xcuserdatad/xcschemes/xcschememanagement.plist +24 -0
- package/Lottie.xcworkspace/contents.xcworkspacedata +10 -0
- package/Lottie.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -0
- package/Lottie.xcworkspace/xcshareddata/swiftpm/Package.resolved +34 -0
- package/Lottie.xcworkspace/xcuserdata/cal.xcuserdatad/UserInterfaceState.xcuserstate +0 -0
- package/{Lottie.xcodeproj/xcuserdata/brandonwithrow.xcuserdatad → Lottie.xcworkspace/xcuserdata/cal.xcuserdatad}/xcdebugger/Breakpoints_v2.xcbkptlist +2 -2
- package/Lottie.xcworkspace/xcuserdata/cal.xcuserdatad/xcdebugger/Expressions.xcexplist +153 -0
- package/Lottie.xcworkspace/xcuserdata/calstephens.xcuserdatad/UserInterfaceState.xcuserstate +0 -0
- package/Lottie.xcworkspace/xcuserdata/calstephens.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist +39 -0
- package/Lottie.xcworkspace/xcuserdata/calstephens.xcuserdatad/xcdebugger/Expressions.xcexplist +25 -0
- package/Mintfile +3 -0
- package/Package.swift +5 -15
- package/README.md +40 -59
- package/Rakefile +125 -0
- package/Sources/Private/CoreAnimation/Animations/CAAnimation+TimingConfiguration.swift +76 -0
- package/Sources/Private/CoreAnimation/Animations/CALayer+addAnimation.swift +322 -0
- package/Sources/Private/CoreAnimation/Animations/CombinedShapeAnimation.swift +53 -0
- package/Sources/Private/CoreAnimation/Animations/CustomPathAnimation.swift +41 -0
- package/Sources/Private/CoreAnimation/Animations/EllipseAnimation.swift +28 -0
- package/Sources/Private/CoreAnimation/Animations/GradientAnimations.swift +167 -0
- package/Sources/Private/CoreAnimation/Animations/LayerProperty.swift +229 -0
- package/Sources/Private/CoreAnimation/Animations/OpacityAnimation.swift +52 -0
- package/Sources/Private/CoreAnimation/Animations/RectangleAnimation.swift +31 -0
- package/Sources/Private/CoreAnimation/Animations/ShapeAnimation.swift +246 -0
- package/Sources/Private/CoreAnimation/Animations/StarAnimation.swift +95 -0
- package/Sources/Private/CoreAnimation/Animations/StrokeAnimation.swift +70 -0
- package/Sources/Private/CoreAnimation/Animations/TransformAnimations.swift +205 -0
- package/Sources/Private/CoreAnimation/Animations/VisibilityAnimation.swift +37 -0
- package/Sources/Private/CoreAnimation/CompatibilityTracker.swift +130 -0
- package/Sources/Private/CoreAnimation/CoreAnimationLayer.swift +492 -0
- package/Sources/Private/CoreAnimation/Extensions/CALayer+fillBounds.swift +35 -0
- package/Sources/Private/CoreAnimation/Extensions/KeyframeGroup+exactlyOneKeyframe.swift +37 -0
- package/Sources/Private/CoreAnimation/Extensions/Keyframes+combinedIfPossible.swift +61 -0
- package/Sources/Private/CoreAnimation/Layers/AnimationLayer.swift +77 -0
- package/Sources/Private/CoreAnimation/Layers/BaseAnimationLayer.swift +33 -0
- package/Sources/Private/CoreAnimation/Layers/BaseCompositionLayer.swift +87 -0
- package/Sources/Private/CoreAnimation/Layers/CALayer+setupLayerHierarchy.swift +131 -0
- package/Sources/Private/CoreAnimation/Layers/GradientRenderLayer.swift +87 -0
- package/Sources/Private/CoreAnimation/Layers/ImageLayer.swift +79 -0
- package/Sources/Private/CoreAnimation/Layers/LayerModel+makeAnimationLayer.swift +60 -0
- package/Sources/Private/CoreAnimation/Layers/MaskCompositionLayer.swift +138 -0
- package/Sources/Private/CoreAnimation/Layers/PreCompLayer.swift +140 -0
- package/Sources/Private/CoreAnimation/Layers/ShapeItemLayer.swift +259 -0
- package/Sources/Private/CoreAnimation/Layers/ShapeLayer.swift +305 -0
- package/Sources/Private/CoreAnimation/Layers/SolidLayer.swift +47 -0
- package/Sources/Private/CoreAnimation/Layers/TextLayer.swift +91 -0
- package/Sources/Private/CoreAnimation/Layers/TransformLayer.swift +11 -0
- package/Sources/Private/CoreAnimation/ValueProviderStore.swift +139 -0
- package/{lottie-swift/src/Private → Sources/Private/MainThread}/LayerContainers/CompLayers/CompositionLayer.swift +94 -86
- package/{lottie-swift/src/Private → Sources/Private/MainThread}/LayerContainers/CompLayers/ImageCompositionLayer.swift +24 -21
- package/{lottie-swift/src/Private → Sources/Private/MainThread}/LayerContainers/CompLayers/MaskContainerLayer.swift +77 -54
- package/{lottie-swift/src/Private → Sources/Private/MainThread}/LayerContainers/CompLayers/NullCompositionLayer.swift +5 -5
- package/{lottie-swift/src/Private → Sources/Private/MainThread}/LayerContainers/CompLayers/PreCompositionLayer.swift +59 -42
- package/{lottie-swift/src/Private → Sources/Private/MainThread}/LayerContainers/CompLayers/ShapeCompositionLayer.swift +22 -20
- package/{lottie-swift/src/Private → Sources/Private/MainThread}/LayerContainers/CompLayers/SolidCompositionLayer.swift +26 -17
- package/{lottie-swift/src/Private → Sources/Private/MainThread}/LayerContainers/CompLayers/TextCompositionLayer.swift +46 -35
- package/{lottie-swift/src/Private/LayerContainers/AnimationContainer.swift → Sources/Private/MainThread/LayerContainers/MainThreadAnimationLayer.swift} +203 -135
- package/Sources/Private/MainThread/LayerContainers/Utility/CachedImageProvider.swift +47 -0
- package/{lottie-swift/src/Private → Sources/Private/MainThread}/LayerContainers/Utility/CompositionLayersInitializer.swift +33 -24
- package/{lottie-swift/src/Private/LayerContainers/Utility/TextLayer.swift → Sources/Private/MainThread/LayerContainers/Utility/CoreTextRenderLayer.swift} +122 -106
- package/{lottie-swift/src/Private → Sources/Private/MainThread}/LayerContainers/Utility/InvertedMatteLayer.swift +25 -24
- package/Sources/Private/MainThread/LayerContainers/Utility/LayerFontProvider.swift +41 -0
- package/{lottie-swift/src/Private → Sources/Private/MainThread}/LayerContainers/Utility/LayerImageProvider.swift +20 -16
- package/Sources/Private/MainThread/LayerContainers/Utility/LayerTextProvider.swift +40 -0
- package/{lottie-swift/src/Private → Sources/Private/MainThread}/LayerContainers/Utility/LayerTransformNode.swift +83 -67
- package/{lottie-swift/src/Private → Sources/Private/MainThread}/NodeRenderSystem/Extensions/ItemsExtension.swift +6 -4
- package/{lottie-swift/src/Private → Sources/Private/MainThread}/NodeRenderSystem/NodeProperties/NodeProperty.swift +29 -21
- package/{lottie-swift/src/Private → Sources/Private/MainThread}/NodeRenderSystem/NodeProperties/Protocols/AnyNodeProperty.swift +16 -10
- package/{lottie-swift/src/Private → Sources/Private/MainThread}/NodeRenderSystem/NodeProperties/Protocols/AnyValueContainer.swift +7 -7
- package/{lottie-swift/src/Private → Sources/Private/MainThread}/NodeRenderSystem/NodeProperties/Protocols/KeypathSearchable.swift +5 -5
- package/{lottie-swift/src/Private → Sources/Private/MainThread}/NodeRenderSystem/NodeProperties/Protocols/NodePropertyMap.swift +10 -8
- package/{lottie-swift/src/Private → Sources/Private/MainThread}/NodeRenderSystem/NodeProperties/ValueContainer.swift +25 -21
- package/{lottie-swift/src/Private → Sources/Private/MainThread}/NodeRenderSystem/NodeProperties/ValueProviders/GroupInterpolator.swift +23 -17
- package/{lottie-swift/src/Private → Sources/Private/MainThread}/NodeRenderSystem/NodeProperties/ValueProviders/KeyframeInterpolator.swift +128 -108
- package/{lottie-swift/src/Private → Sources/Private/MainThread}/NodeRenderSystem/NodeProperties/ValueProviders/SingleValueProvider.swift +22 -17
- package/{lottie-swift/src/Private → Sources/Private/MainThread}/NodeRenderSystem/Nodes/ModifierNodes/TrimPathNode.swift +113 -79
- package/{lottie-swift/src/Private → Sources/Private/MainThread}/NodeRenderSystem/Nodes/OutputNodes/GroupOutputNode.swift +22 -16
- package/{lottie-swift/src/Private → Sources/Private/MainThread}/NodeRenderSystem/Nodes/OutputNodes/PassThroughOutputNode.swift +19 -15
- package/{lottie-swift/src/Private → Sources/Private/MainThread}/NodeRenderSystem/Nodes/OutputNodes/PathOutputNode.swift +22 -20
- package/{lottie-swift/src/Private → Sources/Private/MainThread}/NodeRenderSystem/Nodes/OutputNodes/Renderables/FillRenderer.swift +22 -23
- package/Sources/Private/MainThread/NodeRenderSystem/Nodes/OutputNodes/Renderables/GradientFillRenderer.swift +242 -0
- package/{lottie-swift/src/Private → Sources/Private/MainThread}/NodeRenderSystem/Nodes/OutputNodes/Renderables/GradientStrokeRenderer.swift +29 -22
- package/{lottie-swift/src/Private/NodeRenderSystem/Nodes/OutputNodes/Renderables/GradientFillRenderer.swift → Sources/Private/MainThread/NodeRenderSystem/Nodes/OutputNodes/Renderables/LegacyGradientFillRenderer.swift} +92 -65
- package/{lottie-swift/src/Private → Sources/Private/MainThread}/NodeRenderSystem/Nodes/OutputNodes/Renderables/StrokeRenderer.swift +22 -18
- package/Sources/Private/MainThread/NodeRenderSystem/Nodes/PathNodes/EllipseNode.swift +139 -0
- package/Sources/Private/MainThread/NodeRenderSystem/Nodes/PathNodes/PolygonNode.swift +170 -0
- package/{lottie-swift/src/Private → Sources/Private/MainThread}/NodeRenderSystem/Nodes/PathNodes/RectNode.swift +94 -57
- package/{lottie-swift/src/Private → Sources/Private/MainThread}/NodeRenderSystem/Nodes/PathNodes/ShapeNode.swift +42 -29
- package/{lottie-swift/src/Private → Sources/Private/MainThread}/NodeRenderSystem/Nodes/PathNodes/StarNode.swift +105 -66
- package/Sources/Private/MainThread/NodeRenderSystem/Nodes/RenderContainers/GroupNode.swift +155 -0
- package/{lottie-swift/src/Private → Sources/Private/MainThread}/NodeRenderSystem/Nodes/RenderNodes/FillNode.swift +51 -37
- package/{lottie-swift/src/Private → Sources/Private/MainThread}/NodeRenderSystem/Nodes/RenderNodes/GradientFillNode.swift +54 -42
- package/{lottie-swift/src/Private → Sources/Private/MainThread}/NodeRenderSystem/Nodes/RenderNodes/GradientStrokeNode.swift +65 -57
- package/{lottie-swift/src/Private → Sources/Private/MainThread}/NodeRenderSystem/Nodes/RenderNodes/StrokeNode.swift +84 -58
- package/{lottie-swift/src/Private → Sources/Private/MainThread}/NodeRenderSystem/Nodes/Text/TextAnimatorNode.swift +138 -119
- package/{lottie-swift/src/Private → Sources/Private/MainThread}/NodeRenderSystem/Protocols/AnimatorNode.swift +81 -80
- package/{lottie-swift/src/Private → Sources/Private/MainThread}/NodeRenderSystem/Protocols/PathNode.swift +5 -3
- package/{lottie-swift/src/Private → Sources/Private/MainThread}/NodeRenderSystem/Protocols/RenderNode.swift +22 -17
- package/{lottie-swift/src/Private → Sources/Private/MainThread}/NodeRenderSystem/RenderLayers/ShapeContainerLayer.swift +26 -24
- package/{lottie-swift/src/Private → Sources/Private/MainThread}/NodeRenderSystem/RenderLayers/ShapeRenderLayer.swift +32 -27
- package/Sources/Private/Model/Animation.swift +160 -0
- package/Sources/Private/Model/Assets/Asset.swift +43 -0
- package/{lottie-swift/src → Sources}/Private/Model/Assets/AssetLibrary.swift +40 -13
- package/Sources/Private/Model/Assets/ImageAsset.swift +112 -0
- package/{lottie-swift/src → Sources}/Private/Model/Assets/PrecompAsset.swift +20 -10
- package/Sources/Private/Model/DictionaryInitializable.swift +67 -0
- package/Sources/Private/Model/Extensions/Bundle.swift +34 -0
- package/{lottie-swift/src → Sources}/Private/Model/Extensions/KeyedDecodingContainerExtensions.swift +8 -4
- package/Sources/Private/Model/Keyframes/KeyframeData.swift +113 -0
- package/Sources/Private/Model/Keyframes/KeyframeGroup.swift +197 -0
- package/{lottie-swift/src → Sources}/Private/Model/Layers/ImageLayerModel.swift +21 -11
- package/Sources/Private/Model/Layers/LayerModel.swift +228 -0
- package/{lottie-swift/src → Sources}/Private/Model/Layers/PreCompLayerModel.swift +39 -22
- package/{lottie-swift/src → Sources}/Private/Model/Layers/ShapeLayerModel.swift +23 -12
- package/{lottie-swift/src → Sources}/Private/Model/Layers/SolidLayerModel.swift +31 -19
- package/{lottie-swift/src → Sources}/Private/Model/Layers/TextLayerModel.swift +33 -19
- package/Sources/Private/Model/Objects/DashPattern.swift +44 -0
- package/Sources/Private/Model/Objects/Marker.swift +33 -0
- package/Sources/Private/Model/Objects/Mask.swift +80 -0
- package/Sources/Private/Model/Objects/Transform.swift +179 -0
- package/Sources/Private/Model/ShapeItems/Ellipse.swift +75 -0
- package/Sources/Private/Model/ShapeItems/Fill.swift +74 -0
- package/Sources/Private/Model/ShapeItems/GradientFill.swift +124 -0
- package/Sources/Private/Model/ShapeItems/GradientStroke.swift +186 -0
- package/{lottie-swift/src → Sources}/Private/Model/ShapeItems/Group.swift +21 -10
- package/{lottie-swift/src → Sources}/Private/Model/ShapeItems/Merge.swift +29 -11
- package/Sources/Private/Model/ShapeItems/Rectangle.swift +73 -0
- package/Sources/Private/Model/ShapeItems/Repeater.swift +136 -0
- package/Sources/Private/Model/ShapeItems/Shape.swift +56 -0
- package/Sources/Private/Model/ShapeItems/ShapeItem.swift +163 -0
- package/Sources/Private/Model/ShapeItems/ShapeTransform.swift +136 -0
- package/Sources/Private/Model/ShapeItems/Star.swift +132 -0
- package/Sources/Private/Model/ShapeItems/Stroke.swift +102 -0
- package/Sources/Private/Model/ShapeItems/Trim.swift +78 -0
- package/Sources/Private/Model/Text/Font.swift +61 -0
- package/{lottie-swift/src → Sources}/Private/Model/Text/Glyph.swift +63 -39
- package/Sources/Private/Model/Text/TextAnimator.swift +165 -0
- package/Sources/Private/Model/Text/TextDocument.swift +123 -0
- package/Sources/Private/RootAnimationLayer.swift +51 -0
- package/{lottie-swift/src → Sources}/Private/Utility/Debugging/AnimatorNodeDebugging.swift +7 -7
- package/{lottie-swift/src → Sources}/Private/Utility/Debugging/LayerDebugging.swift +72 -47
- package/Sources/Private/Utility/Debugging/TestHelpers.swift +10 -0
- package/{lottie-swift/src → Sources}/Private/Utility/Extensions/AnimationKeypathExtension.swift +69 -59
- package/Sources/Private/Utility/Extensions/BlendMode+Filter.swift +31 -0
- package/Sources/Private/Utility/Extensions/CGColor+RGB.swift +22 -0
- package/{lottie-swift/src → Sources}/Private/Utility/Extensions/CGFloatExtensions.swift +70 -67
- package/Sources/Private/Utility/Extensions/DataExtension.swift +27 -0
- package/Sources/Private/Utility/Extensions/MathKit.swift +451 -0
- package/Sources/Private/Utility/Extensions/StringExtensions.swift +39 -0
- package/{lottie-swift/src → Sources}/Private/Utility/Helpers/AnimationContext.swift +42 -16
- package/Sources/Private/Utility/Interpolatable/InterpolatableExtensions.swift +135 -0
- package/{lottie-swift/src → Sources}/Private/Utility/Interpolatable/KeyframeExtensions.swift +13 -10
- package/Sources/Private/Utility/Interpolatable/KeyframeGroup+Extensions.swift +59 -0
- package/{lottie-swift/src → Sources}/Private/Utility/Primitives/BezierPath.swift +229 -142
- package/Sources/Private/Utility/Primitives/CGPointExtension.swift +35 -0
- package/{lottie-swift/src → Sources}/Private/Utility/Primitives/ColorExtension.swift +46 -14
- package/{lottie-swift/src → Sources}/Private/Utility/Primitives/CompoundBezierPath.swift +58 -49
- package/Sources/Private/Utility/Primitives/CurveVertex.swift +186 -0
- package/Sources/Private/Utility/Primitives/PathElement.swift +75 -0
- package/Sources/Private/Utility/Primitives/UnitBezier.swift +115 -0
- package/Sources/Private/Utility/Primitives/VectorsExtensions.swift +341 -0
- package/Sources/Public/Animation/AnimationPublic.swift +269 -0
- package/Sources/Public/Animation/AnimationView.swift +1315 -0
- package/Sources/Public/Animation/AnimationViewInitializers.swift +107 -0
- package/Sources/Public/AnimationCache/AnimationCacheProvider.swift +22 -0
- package/{lottie-swift/src → Sources}/Public/AnimationCache/LRUAnimationCache.swift +22 -18
- package/Sources/Public/DynamicProperties/AnimationKeypath.swift +49 -0
- package/Sources/Public/DynamicProperties/AnyValueProvider.swift +132 -0
- package/{lottie-swift/src → Sources}/Public/DynamicProperties/ValueProviders/ColorValueProvider.swift +54 -36
- package/{lottie-swift/src → Sources}/Public/DynamicProperties/ValueProviders/FloatValueProvider.swift +40 -36
- package/Sources/Public/DynamicProperties/ValueProviders/GradientValueProvider.swift +125 -0
- package/{lottie-swift/src → Sources}/Public/DynamicProperties/ValueProviders/PointValueProvider.swift +40 -35
- package/{lottie-swift/src → Sources}/Public/DynamicProperties/ValueProviders/SizeValueProvider.swift +40 -35
- package/{lottie-swift/src → Sources}/Public/FontProvider/AnimationFontProvider.swift +15 -8
- package/Sources/Public/ImageProvider/AnimationImageProvider.swift +21 -0
- package/Sources/Public/Keyframes/Interpolatable.swift +253 -0
- package/Sources/Public/Keyframes/Keyframe.swift +92 -0
- package/Sources/Public/Logging/LottieLogger.swift +124 -0
- package/Sources/Public/LottieConfiguration.swift +143 -0
- package/{lottie-swift/src → Sources}/Public/Primitives/AnimationTime.swift +1 -1
- package/{lottie-swift/src → Sources}/Public/Primitives/Color.swift +10 -6
- package/{lottie-swift/src → Sources}/Public/Primitives/Vectors.swift +13 -12
- package/Sources/Public/TextProvider/AnimationTextProvider.swift +53 -0
- package/{lottie-swift/src → Sources}/Public/iOS/AnimatedButton.swift +37 -27
- package/{lottie-swift/src → Sources}/Public/iOS/AnimatedControl.swift +103 -92
- package/{lottie-swift/src → Sources}/Public/iOS/AnimatedSwitch.swift +124 -93
- package/{lottie-swift/src → Sources}/Public/iOS/AnimationSubview.swift +4 -4
- package/Sources/Public/iOS/AnimationViewBase.swift +78 -0
- package/{lottie-swift/src → Sources}/Public/iOS/BundleImageProvider.swift +38 -35
- package/{lottie-swift/src → Sources}/Public/iOS/Compatibility/CompatibleAnimationKeypath.swift +5 -1
- package/{lottie-swift/src → Sources}/Public/iOS/Compatibility/CompatibleAnimationView.swift +39 -30
- package/{lottie-swift/src → Sources}/Public/iOS/FilepathImageProvider.swift +25 -21
- package/{lottie-swift/src → Sources}/Public/iOS/UIColorExtension.swift +5 -5
- package/{lottie-swift/src/Public/MacOS/AnimationSubview.swift → Sources/Public/macOS/AnimationSubview.macOS.swift} +4 -5
- package/{lottie-swift/src/Public/MacOS/LottieView.swift → Sources/Public/macOS/AnimationViewBase.macOS.swift} +58 -50
- package/{lottie-swift/src/Public/MacOS/BundleImageProvider.swift → Sources/Public/macOS/BundleImageProvider.macOS.swift} +32 -32
- package/Sources/Public/macOS/FilepathImageProvider.macOS.swift +69 -0
- package/Tests/AnimationKeypathTests.swift +94 -0
- package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~-7Vi1RszY1XYnR2CCkEwIpKG8NwwA9zsZEz_WD7Dv6kKh4RC7N7ob8NIRVHGUJKp7eXxlpeI_gzD87Pcs_2u0g== +0 -0
- package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~-SKV2drO-SFlrlh-wrzECDMkUSr-aF1lV9h-5onOy94zSTsD-oI45s0-KpOK45L-kq3hRY7v9vm-xmh00_eheg== +0 -0
- package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~-_CU_vuaiFfObSeDFfmp7GuB20ThMSAL-P_RUMowiQLbdu-y0bU9upIm3q8g6XmXUG5hP6J1az0Ma5Hi_rhhRg== +0 -0
- package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~03aPYP6VHJjZj5DlphGarj0xdw43qu09Onx5SReZoPvg9zh5uL212E-KWfGct9jf6JG0JFV2tdbBi7X_8bH9aw== +0 -0
- package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~1Z82GPBBPc1VLvn4O7V5glb6lgyXteNlDREUzV_TPymM4ra4UkBMklzV90lEqoYRCDuRVzaQHaDYbmYp3-8CFw== +0 -0
- package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~1mFDCboXpUu9pSHAiVGr1O_QgqEEtvJp_LUhickxLZo0Z5pj3fvadn1l2MzEOd4bFsVBZifUvcyPa7dzlMWF-A== +0 -0
- package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~2_L9PUjv2JDKu1n8bDLb4XLB-yex6ZVjDDMwfuKAr7teDw-SKgLgkW6H-m_gjWChIVdB4vW6yvHP7XJxvXtRNA== +0 -0
- package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~4VqMqsI5lOfxRppnud6-VDWcNsU8J7VgFCJfW2dXPwOcAkvU-I8Um5yp9n0Zv6nr3VmcxYggaVMDFfR0U_vjKw== +1 -0
- package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~4krT4ZMzDOu34msFUq0Xod142kw4pAeSWX4JSxlsjOI0Wanu3343qeespgFi61MTWq1DdH9XXspVKqGlGm_fyw== +0 -0
- package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~5_aJsdP-e3dRTAUnH-y1U2plaCuUi1vyHriaZuNK0xFe8wGl9Qft6uLCX2Qt6CRBKJQluEe9o0uRWw1eb42FHQ== +0 -0
- package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~8b0bSqV7eND54zvHvu1v2Htpm7yn-BOEFw5d3mITJrXWNykJ5BTR9WbrD80JEctNcT-rDqO2xfrQk1tFWeY6Sw== +0 -0
- package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~9u8KAGpgtSm-mQ12Py8RZUbYbDlBhM3w1I2MQO53K2CSn6IePp7g65DBcdXTYMfG1bgoJ-6x30fjnGe-2UYsDQ== +0 -0
- package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~Bw7uMs4wqB9ahfEqGii2FkQ9pvZmG6HGe2hmbAT2wyM5hpn8Xh5dELysMcEz6hEsqmn6HdRdLOLZhC_fNaXzgA== +0 -0
- package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~BwUq2xXQYuE8ya6HT6lfNsdtEjz5AKGf8GvLY6VBxQyIY1vgj_Gov-3NeM69OS66BQRDK0PG9H4Oyg0R48E4vg== +0 -0
- package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~EkDVUR6dcnzxV_lYjkrJ5QGMVTCvb_upAoBF6DBu61sQkGvZN3fSRTsJ1XfJIZO-JUzdNoVA3D_CcvokL0gnQg== +0 -0
- package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~FUkcLSJ8RAuPenM4HFG1R-sN5-cDBGcTxgR2jaVCna7xV0ZTyBHriB1Nn59mariNlJDiCoBtMUQEmauGxWtfBA== +0 -0
- package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~FqsuZe4RVLOOVUYLTL-GTIohZ8TdSfxx7m2KJtLYFPGOdE4XorTX7Oc7kXbhghPRppXT3jW-slI37M34YNEvLQ== +0 -0
- package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~G4F_NtyTj3i46fmKm0NorHAeq8tYWWYf6uv5yC1DwzdpWVoYbOPufmFNvdEbxZt4AMdV0gKx3HI46EAXNOQVFg== +0 -0
- package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~GxetzGUNDgaBBXcTmLK6p9JBDX3I3QPshshbui1IaEWvJbQko-E36tCKwaJYHbleAWz9FqkAM_Tqx3YOmSVkVg== +0 -0
- package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~H1Wjd5kKWDW4t3SDodxiHV72V8WT0xwPubw5cJTNLkPRLgaILFPh-dpy8EOUNgy1KzrDujFsm9EcTsbuqtMPLA== +0 -0
- package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~JpI5MH4zCgebUHFpXVn4zjtsGtMNnO7BQZWfNARAB5UWa9gqz6YXHR3uLCJ_AvJ3lh53BUVkavsx9TY2FMmxbA== +0 -0
- package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~JujNYkJtcux0Ni4QnR64zu4Wz_zYjyKvYaYZm5ypxTLPSzF3_jNE_NO4sdbDamF8wEqWoky1uf4ZE0JT3L607A== +0 -0
- package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~KJSEA6DKnb2_FRPSqKZGh41eo-C8x448J9kEBrH012bUrZfOSDvrgmIrU0Vz7Ri3gaS9aKKmSaVMvXsHSlTJVA== +0 -0
- package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~MStOwu3jBlJtcRnxrseVOuhI4kCj--ggFPG7sqrq5w1hjrI3bVyD-bm1Jwyx0noY3wT1rHDEvaGWnV2qsGjGwg== +0 -0
- package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~McsJ8kFVf3IjhgXIRdw8Xx-EXgbV071bmlj2BBnk52xrWl3sEeiIyxwUsF7mIWvMRWfcFfu4VGHYyqfk2BeHXw== +0 -0
- package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~NHt9fVe4kDdbxnglKcEwXaRK-WsYEOaD23Kbl8SJPRMYHr_Z6SJd_HmG3BROHHR_M6TgSmucONpDJdTj5tjuFw== +0 -0
- package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~Nfo2iwCPcfAcOBIVyoUAK0-PIfr5qYxIKZt-uaSaTBdrTNxAuJ1ItmeDPZ3VdJJmxD_c22No7x482bdd3_yYtw== +0 -0
- package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~S2Qlu11xBhEd5aGSzWsnw1TR8u8PiOF93GO0j5bfNoAFCVzxKOwhRFoIXba2EpQnLQqFdIKyhWN3l70A4GPHmg== +0 -0
- package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~W7a7M37RO9jgck2zeR0471Pm7e8K0Kqj5tXEouDjvqKZXSrWxMaWD28oqkKKYAiU4608R4S9mM11KyphljdMSw== +0 -0
- package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~XUo1oyPCrlL7CA74wG-OzQ06VOWJYWvHGFHU7keZN1SKaIXjHX5qi_kBzjG_rBCi89-S8GVmCy7S3PHSjG8SbQ== +0 -0
- package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~Xh0VmDvFNMELHu08-vrs54pegVyUwwDRxx_nXkwyD0NjnYozyqcGAKAr_QWHmw6F8XyuWg51M9KGpJJIFzzGuw== +0 -0
- package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~Xve-wMBp_lxVUgD9qH5GwieGP9cAWtm0xULZvdGjBRUMvaevmpCB5gnbMBuIXAO6a1c9v6WUq0jNVX7ut5HvOw== +0 -0
- package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~ZU1XkZFgnEE22CXEF-pOlcj5f10x-KM1Vw9d4IOLu-NiTZcz7koYPixhdrB1PJr8J-h9NpJmfqEastfxamA1jQ== +0 -0
- package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~_YkNYEHTsbbtFILJpzH3HenH0t4ShI25dIMdve541CF5bl-jPF3X3F7tq-t5dvP0TEkATsOJdLQdBp1xv4Q-ag== +0 -0
- package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~boy6mpn2jkwm60jjgQ0TG25UqRdN46LzmgTVCrpy6nBOgkLCGkGHcbceiwjU1itS_vj3-iQX0ZnrWOQrPyfHNA== +0 -0
- package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~bwzpVZ9hAqGDHhXs2FRA82dfGfLmc7-m0uQhZDDfHHO7hQ17M_Np341BZX4WDLhYYS4cdUgaDodlNpdfpG3nXw== +0 -0
- package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~cBxe-9PpAGFdAsYkmdN3lJVqEliLcRYlyoAov0aPZfJGwUr_cOm3XpjO7nmf_2eLf8UAx-rycjnJzw07xLrNCA== +1 -0
- package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~dirWk6W4Pav1oyciuflfJlRu0iuxbYOmrpQapOJ0mV9C1SQ-jvDRv_7h753Cy18-SwULARUdWsyUy3yNNvxF7w== +0 -0
- package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~ebwZVjSEHroc9jtIm4jd_h_YAqEBcOkAZ4HPNJT8pLCldjRcTq-obQLakxXOhfuoOBlYBoZLuO-Y0lskeZRYKw== +0 -0
- package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~gfcRcmRIr0h09d0jiZsA7nUeQv2XtapxuYEXZy1Z9um0tTJQvz-O5ef5f7zhLenLvjnDtDtlY_aY4Hvpce6e1Q== +0 -0
- package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~hgOgiVCyv2R0W-f0qKw5xYPeUwj8_ccCM9vKH_7vAQcCO9t8BwR1APGRBv20AONmp-PYMXmtgsBlQkNBRBpdQA== +0 -0
- package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~hrhCl-YRAAr8ByNB_LCgEBsVNHMp92gTIUknetpUHMjcXl4Hpn_uY-h6C45oga0ZALnfGCo6iKTmiPLa4Qvnpg== +0 -0
- package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~n2yoR7JsyL4DSUwmjnpE4Iq9Qi_eeZrmpPU8cdehDFKfESK7nwxXxfrSMQbk0BQ2lgGPadoRcd1-qr1xVz97jA== +0 -0
- package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~nMCcZm8WvPogyO_nuJ926Q3Q2dqVMN2LdjEL1Kq2wJ_RG-rH-e_6v41l1xZbCsQTa3XykQdEiXNc0HtAvT6IRA== +0 -0
- package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~oc3C7xkUt-OWDL6rrsxs-seS4Fu1bqBWAAXCHalgShaGg9MUrOiRbHT2DcAnhyQFKx6x5FRbvjmYoQWrQiXJZA== +0 -0
- package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~p-ihj7SEgkDXpMu9hvKE_wiX9cvtwyXrdIn964BfedXHKGpC6o7mMPxEyC0kRPVi_EZs_MRV5bAPEpl5h5we0g== +0 -0
- package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~qlhO_D9oE8uSKH-mZqyRF9pp4Zv1Tv0dIYcqrH4hb1VWlIxcdxmg2j0M8496cQeFXC5bn_JMXdBlD-d6cnFF8w== +0 -0
- package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~tjpiyIxJR_boTdUNrtFDuKIZoY84fI4lA1oMJbq9e2ZmYKIK5FeRN2O8cV_yMOYJGr4lbv03kTmT70mCjUc2_Q== +0 -0
- package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~wULeoj18eEKJWAKx1uFQVwS48cUGFcYPRJQj1Ro5XNJsWCwppGSCdIPhwifD6Z2f_j3zfI2SmC2Gg81sBXXW7g== +0 -0
- package/Tests/Artifacts/LottieTests.xcresult/Data/data.0~zrEihMys4NVV5rx6FmuzEGO2TjloI3OiC7yzIhvqYoRo43ibb2F-Km6Jf4NX-ac62pOLBYZRcjQTvYMpn75_oA== +0 -0
- package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~-7Vi1RszY1XYnR2CCkEwIpKG8NwwA9zsZEz_WD7Dv6kKh4RC7N7ob8NIRVHGUJKp7eXxlpeI_gzD87Pcs_2u0g== +0 -0
- package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~-SKV2drO-SFlrlh-wrzECDMkUSr-aF1lV9h-5onOy94zSTsD-oI45s0-KpOK45L-kq3hRY7v9vm-xmh00_eheg== +0 -0
- package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~-_CU_vuaiFfObSeDFfmp7GuB20ThMSAL-P_RUMowiQLbdu-y0bU9upIm3q8g6XmXUG5hP6J1az0Ma5Hi_rhhRg== +0 -0
- package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~03aPYP6VHJjZj5DlphGarj0xdw43qu09Onx5SReZoPvg9zh5uL212E-KWfGct9jf6JG0JFV2tdbBi7X_8bH9aw== +0 -0
- package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~1Z82GPBBPc1VLvn4O7V5glb6lgyXteNlDREUzV_TPymM4ra4UkBMklzV90lEqoYRCDuRVzaQHaDYbmYp3-8CFw== +0 -0
- package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~1mFDCboXpUu9pSHAiVGr1O_QgqEEtvJp_LUhickxLZo0Z5pj3fvadn1l2MzEOd4bFsVBZifUvcyPa7dzlMWF-A== +0 -0
- package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~2_L9PUjv2JDKu1n8bDLb4XLB-yex6ZVjDDMwfuKAr7teDw-SKgLgkW6H-m_gjWChIVdB4vW6yvHP7XJxvXtRNA== +0 -0
- package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~4VqMqsI5lOfxRppnud6-VDWcNsU8J7VgFCJfW2dXPwOcAkvU-I8Um5yp9n0Zv6nr3VmcxYggaVMDFfR0U_vjKw== +0 -0
- package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~4krT4ZMzDOu34msFUq0Xod142kw4pAeSWX4JSxlsjOI0Wanu3343qeespgFi61MTWq1DdH9XXspVKqGlGm_fyw== +0 -0
- package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~5_aJsdP-e3dRTAUnH-y1U2plaCuUi1vyHriaZuNK0xFe8wGl9Qft6uLCX2Qt6CRBKJQluEe9o0uRWw1eb42FHQ== +0 -0
- package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~8b0bSqV7eND54zvHvu1v2Htpm7yn-BOEFw5d3mITJrXWNykJ5BTR9WbrD80JEctNcT-rDqO2xfrQk1tFWeY6Sw== +0 -0
- package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~9u8KAGpgtSm-mQ12Py8RZUbYbDlBhM3w1I2MQO53K2CSn6IePp7g65DBcdXTYMfG1bgoJ-6x30fjnGe-2UYsDQ== +0 -0
- package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~Bw7uMs4wqB9ahfEqGii2FkQ9pvZmG6HGe2hmbAT2wyM5hpn8Xh5dELysMcEz6hEsqmn6HdRdLOLZhC_fNaXzgA== +0 -0
- package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~BwUq2xXQYuE8ya6HT6lfNsdtEjz5AKGf8GvLY6VBxQyIY1vgj_Gov-3NeM69OS66BQRDK0PG9H4Oyg0R48E4vg== +0 -0
- package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~EkDVUR6dcnzxV_lYjkrJ5QGMVTCvb_upAoBF6DBu61sQkGvZN3fSRTsJ1XfJIZO-JUzdNoVA3D_CcvokL0gnQg== +0 -0
- package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~FUkcLSJ8RAuPenM4HFG1R-sN5-cDBGcTxgR2jaVCna7xV0ZTyBHriB1Nn59mariNlJDiCoBtMUQEmauGxWtfBA== +0 -0
- package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~FqsuZe4RVLOOVUYLTL-GTIohZ8TdSfxx7m2KJtLYFPGOdE4XorTX7Oc7kXbhghPRppXT3jW-slI37M34YNEvLQ== +0 -0
- package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~G4F_NtyTj3i46fmKm0NorHAeq8tYWWYf6uv5yC1DwzdpWVoYbOPufmFNvdEbxZt4AMdV0gKx3HI46EAXNOQVFg== +0 -0
- package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~GxetzGUNDgaBBXcTmLK6p9JBDX3I3QPshshbui1IaEWvJbQko-E36tCKwaJYHbleAWz9FqkAM_Tqx3YOmSVkVg== +0 -0
- package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~H1Wjd5kKWDW4t3SDodxiHV72V8WT0xwPubw5cJTNLkPRLgaILFPh-dpy8EOUNgy1KzrDujFsm9EcTsbuqtMPLA== +0 -0
- package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~JpI5MH4zCgebUHFpXVn4zjtsGtMNnO7BQZWfNARAB5UWa9gqz6YXHR3uLCJ_AvJ3lh53BUVkavsx9TY2FMmxbA== +0 -0
- package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~JujNYkJtcux0Ni4QnR64zu4Wz_zYjyKvYaYZm5ypxTLPSzF3_jNE_NO4sdbDamF8wEqWoky1uf4ZE0JT3L607A== +0 -0
- package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~KJSEA6DKnb2_FRPSqKZGh41eo-C8x448J9kEBrH012bUrZfOSDvrgmIrU0Vz7Ri3gaS9aKKmSaVMvXsHSlTJVA== +0 -0
- package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~MStOwu3jBlJtcRnxrseVOuhI4kCj--ggFPG7sqrq5w1hjrI3bVyD-bm1Jwyx0noY3wT1rHDEvaGWnV2qsGjGwg== +0 -0
- package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~McsJ8kFVf3IjhgXIRdw8Xx-EXgbV071bmlj2BBnk52xrWl3sEeiIyxwUsF7mIWvMRWfcFfu4VGHYyqfk2BeHXw== +0 -0
- package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~NHt9fVe4kDdbxnglKcEwXaRK-WsYEOaD23Kbl8SJPRMYHr_Z6SJd_HmG3BROHHR_M6TgSmucONpDJdTj5tjuFw== +0 -0
- package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~Nfo2iwCPcfAcOBIVyoUAK0-PIfr5qYxIKZt-uaSaTBdrTNxAuJ1ItmeDPZ3VdJJmxD_c22No7x482bdd3_yYtw== +0 -0
- package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~S2Qlu11xBhEd5aGSzWsnw1TR8u8PiOF93GO0j5bfNoAFCVzxKOwhRFoIXba2EpQnLQqFdIKyhWN3l70A4GPHmg== +0 -0
- package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~W7a7M37RO9jgck2zeR0471Pm7e8K0Kqj5tXEouDjvqKZXSrWxMaWD28oqkKKYAiU4608R4S9mM11KyphljdMSw== +0 -0
- package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~XUo1oyPCrlL7CA74wG-OzQ06VOWJYWvHGFHU7keZN1SKaIXjHX5qi_kBzjG_rBCi89-S8GVmCy7S3PHSjG8SbQ== +0 -0
- package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~Xh0VmDvFNMELHu08-vrs54pegVyUwwDRxx_nXkwyD0NjnYozyqcGAKAr_QWHmw6F8XyuWg51M9KGpJJIFzzGuw== +0 -0
- package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~Xve-wMBp_lxVUgD9qH5GwieGP9cAWtm0xULZvdGjBRUMvaevmpCB5gnbMBuIXAO6a1c9v6WUq0jNVX7ut5HvOw== +0 -0
- package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~ZU1XkZFgnEE22CXEF-pOlcj5f10x-KM1Vw9d4IOLu-NiTZcz7koYPixhdrB1PJr8J-h9NpJmfqEastfxamA1jQ== +0 -0
- package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~_YkNYEHTsbbtFILJpzH3HenH0t4ShI25dIMdve541CF5bl-jPF3X3F7tq-t5dvP0TEkATsOJdLQdBp1xv4Q-ag== +0 -0
- package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~boy6mpn2jkwm60jjgQ0TG25UqRdN46LzmgTVCrpy6nBOgkLCGkGHcbceiwjU1itS_vj3-iQX0ZnrWOQrPyfHNA== +0 -0
- package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~bwzpVZ9hAqGDHhXs2FRA82dfGfLmc7-m0uQhZDDfHHO7hQ17M_Np341BZX4WDLhYYS4cdUgaDodlNpdfpG3nXw== +0 -0
- package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~cBxe-9PpAGFdAsYkmdN3lJVqEliLcRYlyoAov0aPZfJGwUr_cOm3XpjO7nmf_2eLf8UAx-rycjnJzw07xLrNCA== +0 -0
- package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~dirWk6W4Pav1oyciuflfJlRu0iuxbYOmrpQapOJ0mV9C1SQ-jvDRv_7h753Cy18-SwULARUdWsyUy3yNNvxF7w== +0 -0
- package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~ebwZVjSEHroc9jtIm4jd_h_YAqEBcOkAZ4HPNJT8pLCldjRcTq-obQLakxXOhfuoOBlYBoZLuO-Y0lskeZRYKw== +0 -0
- package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~gfcRcmRIr0h09d0jiZsA7nUeQv2XtapxuYEXZy1Z9um0tTJQvz-O5ef5f7zhLenLvjnDtDtlY_aY4Hvpce6e1Q== +0 -0
- package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~hgOgiVCyv2R0W-f0qKw5xYPeUwj8_ccCM9vKH_7vAQcCO9t8BwR1APGRBv20AONmp-PYMXmtgsBlQkNBRBpdQA== +0 -0
- package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~hrhCl-YRAAr8ByNB_LCgEBsVNHMp92gTIUknetpUHMjcXl4Hpn_uY-h6C45oga0ZALnfGCo6iKTmiPLa4Qvnpg== +0 -0
- package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~n2yoR7JsyL4DSUwmjnpE4Iq9Qi_eeZrmpPU8cdehDFKfESK7nwxXxfrSMQbk0BQ2lgGPadoRcd1-qr1xVz97jA== +0 -0
- package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~nMCcZm8WvPogyO_nuJ926Q3Q2dqVMN2LdjEL1Kq2wJ_RG-rH-e_6v41l1xZbCsQTa3XykQdEiXNc0HtAvT6IRA== +0 -0
- package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~oc3C7xkUt-OWDL6rrsxs-seS4Fu1bqBWAAXCHalgShaGg9MUrOiRbHT2DcAnhyQFKx6x5FRbvjmYoQWrQiXJZA== +0 -0
- package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~p-ihj7SEgkDXpMu9hvKE_wiX9cvtwyXrdIn964BfedXHKGpC6o7mMPxEyC0kRPVi_EZs_MRV5bAPEpl5h5we0g== +0 -0
- package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~qlhO_D9oE8uSKH-mZqyRF9pp4Zv1Tv0dIYcqrH4hb1VWlIxcdxmg2j0M8496cQeFXC5bn_JMXdBlD-d6cnFF8w== +0 -0
- package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~tjpiyIxJR_boTdUNrtFDuKIZoY84fI4lA1oMJbq9e2ZmYKIK5FeRN2O8cV_yMOYJGr4lbv03kTmT70mCjUc2_Q== +0 -0
- package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~wULeoj18eEKJWAKx1uFQVwS48cUGFcYPRJQj1Ro5XNJsWCwppGSCdIPhwifD6Z2f_j3zfI2SmC2Gg81sBXXW7g== +0 -0
- package/Tests/Artifacts/LottieTests.xcresult/Data/refs.0~zrEihMys4NVV5rx6FmuzEGO2TjloI3OiC7yzIhvqYoRo43ibb2F-Km6Jf4NX-ac62pOLBYZRcjQTvYMpn75_oA== +0 -0
- package/Tests/Artifacts/LottieTests.xcresult/Info.plist +29 -0
- package/Tests/AutomaticEngineTests.swift +57 -0
- package/Tests/BundleTests.swift +25 -0
- package/Tests/DataURLTests.swift +64 -0
- package/Tests/ParsingTests.swift +42 -0
- package/Tests/PerformanceTests.swift +215 -0
- package/Tests/Samples/9squares_AlBoardman.json +1 -0
- package/Tests/Samples/Boat_Loader.json +1 -0
- package/Tests/Samples/HamburgerArrow.json +1 -0
- package/Tests/Samples/IconTransitions.json +1 -0
- package/Tests/Samples/Images/dog.png +0 -0
- package/Tests/Samples/Issues/issue_1403.json +1 -0
- package/Tests/Samples/Issues/issue_1407.json +1 -0
- package/Tests/Samples/Issues/issue_1488.json +1 -0
- package/Tests/Samples/Issues/issue_1505.json +1 -0
- package/Tests/Samples/Issues/issue_1628.json +1 -0
- package/Tests/Samples/Issues/pr_1536.json +1 -0
- package/Tests/Samples/Issues/pr_1563.json +8439 -0
- package/Tests/Samples/Issues/pr_1592.json +5527 -0
- package/Tests/Samples/Issues/pr_1599.json +738 -0
- package/Tests/Samples/Issues/pr_1604_1.json +1 -0
- package/Tests/Samples/Issues/pr_1604_2.json +1 -0
- package/Tests/Samples/LottieFiles/LICENSE.md +14 -0
- package/Tests/Samples/LottieFiles/bounce_strokes.json +1 -0
- package/Tests/Samples/LottieFiles/cactus.json +1 -0
- package/Tests/Samples/LottieFiles/dog_car_ride.json +1 -0
- package/Tests/Samples/LottieFiles/draft_icon.json +1 -0
- package/Tests/Samples/LottieFiles/gradient_1.json +1 -0
- package/Tests/Samples/LottieFiles/gradient_2.json +1 -0
- package/Tests/Samples/LottieFiles/gradient_pill.json +1 -0
- package/Tests/Samples/LottieFiles/gradient_shapes.json +1 -0
- package/Tests/Samples/LottieFiles/gradient_square.json +1 -0
- package/Tests/Samples/LottieFiles/growth.json +1 -0
- package/Tests/Samples/LottieFiles/infinity_loader.json +1 -0
- package/Tests/Samples/LottieFiles/loading_dots_1.json +1 -0
- package/Tests/Samples/LottieFiles/loading_dots_2.json +1 -0
- package/Tests/Samples/LottieFiles/loading_dots_3.json +1 -0
- package/Tests/Samples/LottieFiles/loading_gradient_strokes.json +1 -0
- package/Tests/Samples/LottieFiles/settings_slider.json +1 -0
- package/Tests/Samples/LottieFiles/shop.json +1 -0
- package/Tests/Samples/LottieFiles/step_loader.json +1 -0
- package/Tests/Samples/LottieLogo1.json +1 -0
- package/Tests/Samples/LottieLogo1_masked.json +1 -0
- package/Tests/Samples/LottieLogo2.json +1 -0
- package/Tests/Samples/MotionCorpse_Jrcanest.json +1 -0
- package/Tests/Samples/Nonanimating/BasicLayers.json +1 -0
- package/Tests/Samples/Nonanimating/DisableNodesTest.json +1 -0
- package/Tests/Samples/Nonanimating/FirstText.json +1 -0
- package/Tests/Samples/Nonanimating/GeometryTransformTest.json +1 -0
- package/Tests/Samples/Nonanimating/Text_AnimatedProperties.json +1 -0
- package/Tests/Samples/Nonanimating/Text_Glyph.json +1 -0
- package/Tests/Samples/Nonanimating/Text_NoAnimation.json +1 -0
- package/Tests/Samples/Nonanimating/Text_NoGlyph.json +1 -0
- package/Tests/Samples/Nonanimating/Zoom.json +1 -0
- package/Tests/Samples/Nonanimating/_dog.json +1 -0
- package/Tests/Samples/Nonanimating/base64Test.json +1 -0
- package/Tests/Samples/Nonanimating/blend_mode_test.json +1 -0
- package/Tests/Samples/Nonanimating/keypathTest.json +1 -0
- package/Tests/Samples/Nonanimating/verifyLineHeight.json +1 -0
- package/Tests/Samples/PinJump.json +1 -0
- package/Tests/Samples/Private/BrokenLottieFiles/growth_man.json +874 -0
- package/Tests/Samples/Private/BrokenLottieFiles/rocket.json +1 -0
- package/Tests/Samples/Private/China_EmptyState_Itinerary.json +1 -0
- package/Tests/Samples/Private/LoaderHourglass.json +12070 -0
- package/Tests/Samples/Private/README.md +7 -0
- package/Tests/Samples/Private/Urgency/alarm_animated.json +1 -0
- package/Tests/Samples/Private/Urgency/diamond_animated.json +1 -0
- package/Tests/Samples/Private/Urgency/eye_animated.json +1 -0
- package/Tests/Samples/Private/Urgency/light_bulb_animated.json +1 -0
- package/Tests/Samples/Private/Urgency/light_bulb_static.json +1 -0
- package/Tests/Samples/Private/Urgency/piggy_bank_static.json +1 -0
- package/Tests/Samples/Private/Urgency/price_tag_legacy.json +1 -0
- package/Tests/Samples/Private/Urgency/rausch_alarm.json +1 -0
- package/Tests/Samples/Private/Urgency/rausch_alert.json +1 -0
- package/Tests/Samples/Private/Urgency/rausch_clock.json +1 -0
- package/Tests/Samples/Private/Urgency/rausch_diamond.json +1 -0
- package/Tests/Samples/Private/Urgency/rausch_money.json +1 -0
- package/Tests/Samples/Private/Urgency/rausch_piggy_bank.json +1 -0
- package/Tests/Samples/Private/Urgency/rausch_tag.json +1 -0
- package/Tests/Samples/Private/Urgency/red_envelope_animated.json +1 -0
- package/Tests/Samples/Private/Urgency/tag_animated.json +1 -0
- package/Tests/Samples/Private/Urgency/trophy_animated.json +1 -0
- package/Tests/Samples/Private/Urgency/wings_key_animated.json +1 -0
- package/Tests/Samples/Private/_flexible.json +1 -0
- package/Tests/Samples/Private/aircover.json +1 -0
- package/Tests/Samples/Private/belo_spin_rausch.json +1 -0
- package/Tests/Samples/Private/celebration.json +2821 -0
- package/Tests/Samples/Private/checkbox.json +1 -0
- package/Tests/Samples/Private/checkbox_small.json +1 -0
- package/Tests/Samples/Private/getting_your_trip_ready.json +3540 -0
- package/Tests/Samples/Private/gradient_afternoon.json +1 -0
- package/Tests/Samples/Private/gradient_brand.json +1 -0
- package/Tests/Samples/Private/gradient_evening.json +1 -0
- package/Tests/Samples/Private/gradient_morning.json +1 -0
- package/Tests/Samples/Private/issue_1467.json +1 -0
- package/Tests/Samples/Private/loading_dots.json +1 -0
- package/Tests/Samples/Private/loading_dots_small.json +1 -0
- package/Tests/Samples/Private/payment_loader.json +1 -0
- package/Tests/Samples/Private/radio_button.json +1 -0
- package/Tests/Samples/Private/selfie_intro.json +1 -0
- package/Tests/Samples/Private/stepper_add.json +1 -0
- package/Tests/Samples/Private/stepper_subtract.json +1 -0
- package/Tests/Samples/Private/switch.json +1 -0
- package/Tests/Samples/Private/thumb.json +1 -0
- package/Tests/Samples/Private/toggle_no.json +1 -0
- package/Tests/Samples/Private/toggle_yes.json +1 -0
- package/Tests/Samples/Private/user_error_black_and_white.json +1 -0
- package/Tests/Samples/Private/user_error_cut_off.json +1 -0
- package/Tests/Samples/Switch.json +1 -0
- package/Tests/Samples/Switch_States.json +1 -0
- package/Tests/Samples/TwitterHeart.json +1 -0
- package/Tests/Samples/TwitterHeartButton.json +1 -0
- package/Tests/Samples/TypeFace/A.json +1 -0
- package/Tests/Samples/TypeFace/Apostrophe.json +1 -0
- package/Tests/Samples/TypeFace/B.json +1 -0
- package/Tests/Samples/TypeFace/BlinkingCursor.json +1 -0
- package/Tests/Samples/TypeFace/C.json +1 -0
- package/Tests/Samples/TypeFace/Colon.json +1 -0
- package/Tests/Samples/TypeFace/Comma.json +1 -0
- package/Tests/Samples/TypeFace/D.json +1 -0
- package/Tests/Samples/TypeFace/E.json +1 -0
- package/Tests/Samples/TypeFace/F.json +1 -0
- package/Tests/Samples/TypeFace/G.json +1 -0
- package/Tests/Samples/TypeFace/H.json +1 -0
- package/Tests/Samples/TypeFace/I.json +1 -0
- package/Tests/Samples/TypeFace/J.json +1 -0
- package/Tests/Samples/TypeFace/K.json +1 -0
- package/Tests/Samples/TypeFace/L.json +1 -0
- package/Tests/Samples/TypeFace/M.json +1 -0
- package/Tests/Samples/TypeFace/N.json +1 -0
- package/Tests/Samples/TypeFace/O.json +1 -0
- package/Tests/Samples/TypeFace/P.json +1 -0
- package/Tests/Samples/TypeFace/Q.json +1 -0
- package/Tests/Samples/TypeFace/R.json +1 -0
- package/Tests/Samples/TypeFace/S.json +1 -0
- package/Tests/Samples/TypeFace/T.json +1 -0
- package/Tests/Samples/TypeFace/U.json +1 -0
- package/Tests/Samples/TypeFace/V.json +1 -0
- package/Tests/Samples/TypeFace/W.json +1 -0
- package/Tests/Samples/TypeFace/X.json +1 -0
- package/Tests/Samples/TypeFace/Y.json +1 -0
- package/Tests/Samples/TypeFace/Z.json +1 -0
- package/Tests/Samples/Watermelon.json +1 -0
- package/Tests/Samples/setValueTest.json +1 -0
- package/Tests/Samples/timeremap.json +1 -0
- package/Tests/Samples/vcTransition1.json +1 -0
- package/Tests/Samples/vcTransition2.json +1 -0
- package/Tests/SnapshotConfiguration.swift +153 -0
- package/Tests/SnapshotTests.swift +265 -0
- package/Tests/Utils/Bundle+Module.swift +30 -0
- package/Tests/Utils/HardcodedFontProvider.swift +19 -0
- package/Tests/Utils/HardcodedImageProvider.swift +23 -0
- package/Tests/Utils/Snapshotting+presentationLayer.swift +47 -0
- package/Tests/ValueProvidersTests.swift +27 -0
- package/lottie-ios.podspec +12 -12
- package/package.json +1 -1
- package/script/lint/airbnb.swiftformat +68 -0
- package/script/lint/swiftlint.yml +38 -0
- package/script/test-carthage/Cartfile +1 -0
- package/script/test-carthage/Cartfile.resolved +1 -0
- package/script/test-carthage/Carthage/Build/.lottie-ios.version +19 -0
- package/script/test-carthage/Carthage/Build/Lottie.xcframework/Info.plist +46 -0
- package/script/test-carthage/Carthage/Build/Lottie.xcframework/ios-arm64/BCSymbolMaps/BF971162-BE99-3507-B5B3-11947DC6B176.bcsymbolmap +14778 -0
- package/script/test-carthage/Carthage/Build/Lottie.xcframework/ios-arm64/Lottie.framework/Headers/Lottie-Swift.h +673 -0
- package/script/test-carthage/Carthage/Build/Lottie.xcframework/ios-arm64/Lottie.framework/Info.plist +0 -0
- package/script/test-carthage/Carthage/Build/Lottie.xcframework/ios-arm64/Lottie.framework/Lottie +0 -0
- package/script/test-carthage/Carthage/Build/Lottie.xcframework/ios-arm64/Lottie.framework/Modules/Lottie.swiftmodule/arm64-apple-ios.swiftdoc +0 -0
- package/script/test-carthage/Carthage/Build/Lottie.xcframework/ios-arm64/Lottie.framework/Modules/Lottie.swiftmodule/arm64-apple-ios.swiftmodule +0 -0
- package/script/test-carthage/Carthage/Build/Lottie.xcframework/ios-arm64/Lottie.framework/Modules/Lottie.swiftmodule/arm64.swiftdoc +0 -0
- package/script/test-carthage/Carthage/Build/Lottie.xcframework/ios-arm64/Lottie.framework/Modules/Lottie.swiftmodule/arm64.swiftmodule +0 -0
- package/script/test-carthage/Carthage/Build/Lottie.xcframework/ios-arm64/Lottie.framework/Modules/module.modulemap +4 -0
- package/script/test-carthage/Carthage/Build/Lottie.xcframework/ios-arm64/dSYMs/Lottie.framework.dSYM/Contents/Info.plist +20 -0
- package/script/test-carthage/Carthage/Build/Lottie.xcframework/ios-arm64/dSYMs/Lottie.framework.dSYM/Contents/Resources/DWARF/Lottie +0 -0
- package/script/test-carthage/Carthage/Build/Lottie.xcframework/ios-arm64_x86_64-simulator/Lottie.framework/Headers/Lottie-Swift.h +1352 -0
- package/script/test-carthage/Carthage/Build/Lottie.xcframework/ios-arm64_x86_64-simulator/Lottie.framework/Info.plist +0 -0
- package/script/test-carthage/Carthage/Build/Lottie.xcframework/ios-arm64_x86_64-simulator/Lottie.framework/Lottie +0 -0
- package/script/test-carthage/Carthage/Build/Lottie.xcframework/ios-arm64_x86_64-simulator/Lottie.framework/Modules/Lottie.swiftmodule/Project/arm64-apple-ios-simulator.swiftsourceinfo +0 -0
- package/script/test-carthage/Carthage/Build/Lottie.xcframework/ios-arm64_x86_64-simulator/Lottie.framework/Modules/Lottie.swiftmodule/Project/arm64.swiftsourceinfo +0 -0
- package/script/test-carthage/Carthage/Build/Lottie.xcframework/ios-arm64_x86_64-simulator/Lottie.framework/Modules/Lottie.swiftmodule/Project/x86_64-apple-ios-simulator.swiftsourceinfo +0 -0
- package/script/test-carthage/Carthage/Build/Lottie.xcframework/ios-arm64_x86_64-simulator/Lottie.framework/Modules/Lottie.swiftmodule/Project/x86_64.swiftsourceinfo +0 -0
- package/script/test-carthage/Carthage/Build/Lottie.xcframework/ios-arm64_x86_64-simulator/Lottie.framework/Modules/Lottie.swiftmodule/arm64-apple-ios-simulator.swiftdoc +0 -0
- package/script/test-carthage/Carthage/Build/Lottie.xcframework/ios-arm64_x86_64-simulator/Lottie.framework/Modules/Lottie.swiftmodule/arm64-apple-ios-simulator.swiftmodule +0 -0
- package/script/test-carthage/Carthage/Build/Lottie.xcframework/ios-arm64_x86_64-simulator/Lottie.framework/Modules/Lottie.swiftmodule/arm64.swiftdoc +0 -0
- package/script/test-carthage/Carthage/Build/Lottie.xcframework/ios-arm64_x86_64-simulator/Lottie.framework/Modules/Lottie.swiftmodule/arm64.swiftmodule +0 -0
- package/script/test-carthage/Carthage/Build/Lottie.xcframework/ios-arm64_x86_64-simulator/Lottie.framework/Modules/Lottie.swiftmodule/x86_64-apple-ios-simulator.swiftdoc +0 -0
- package/script/test-carthage/Carthage/Build/Lottie.xcframework/ios-arm64_x86_64-simulator/Lottie.framework/Modules/Lottie.swiftmodule/x86_64-apple-ios-simulator.swiftmodule +0 -0
- package/script/test-carthage/Carthage/Build/Lottie.xcframework/ios-arm64_x86_64-simulator/Lottie.framework/Modules/Lottie.swiftmodule/x86_64.swiftdoc +0 -0
- package/script/test-carthage/Carthage/Build/Lottie.xcframework/ios-arm64_x86_64-simulator/Lottie.framework/Modules/Lottie.swiftmodule/x86_64.swiftmodule +0 -0
- package/script/test-carthage/Carthage/Build/Lottie.xcframework/ios-arm64_x86_64-simulator/Lottie.framework/Modules/module.modulemap +4 -0
- package/script/test-carthage/Carthage/Build/Lottie.xcframework/ios-arm64_x86_64-simulator/Lottie.framework/_CodeSignature/CodeResources +256 -0
- package/script/test-carthage/Carthage/Build/Lottie.xcframework/ios-arm64_x86_64-simulator/dSYMs/Lottie.framework.dSYM/Contents/Info.plist +20 -0
- package/script/test-carthage/Carthage/Build/Lottie.xcframework/ios-arm64_x86_64-simulator/dSYMs/Lottie.framework.dSYM/Contents/Resources/DWARF/Lottie +0 -0
- package/script/test-carthage/Carthage/Checkouts/lottie-ios/Lottie.xcodeproj/project.xcworkspace/xcuserdata/cal.xcuserdatad/UserInterfaceState.xcuserstate +0 -0
- package/script/test-carthage/Carthage/Checkouts/lottie-ios/Lottie.xcodeproj/xcuserdata/cal.xcuserdatad/xcschemes/xcschememanagement.plist +37 -0
- package/script/test-carthage/Carthage/Checkouts/lottie-ios/Lottie.xcworkspace/xcuserdata/cal.xcuserdatad/UserInterfaceState.xcuserstate +0 -0
- package/script/test-carthage/CarthageTest/AppDelegate.swift +27 -0
- package/script/test-carthage/CarthageTest/Assets.xcassets/AccentColor.colorset/Contents.json +11 -0
- package/script/test-carthage/CarthageTest/Assets.xcassets/AppIcon.appiconset/Contents.json +98 -0
- package/script/test-carthage/CarthageTest/Assets.xcassets/Contents.json +6 -0
- package/script/test-carthage/CarthageTest/Base.lproj/LaunchScreen.storyboard +25 -0
- package/script/test-carthage/CarthageTest/Base.lproj/Main.storyboard +24 -0
- package/script/test-carthage/CarthageTest/Info.plist +66 -0
- package/script/test-carthage/CarthageTest/SceneDelegate.swift +10 -0
- package/script/test-carthage/CarthageTest/ViewController.swift +15 -0
- package/script/test-carthage/CarthageTest.xcodeproj/project.pbxproj +378 -0
- package/script/test-carthage/CarthageTest.xcodeproj/project.xcworkspace/contents.xcworkspacedata +7 -0
- package/script/test-carthage/CarthageTest.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -0
- package/script/test-carthage/CarthageTest.xcodeproj/project.xcworkspace/xcuserdata/cal.xcuserdatad/UserInterfaceState.xcuserstate +0 -0
- package/script/test-carthage/CarthageTest.xcodeproj/xcuserdata/cal.xcuserdatad/xcschemes/xcschememanagement.plist +14 -0
- package/script/test-carthage/Mintfile +1 -0
- package/script/test-spm/LottieSPM.xcworkspace/contents.xcworkspacedata +7 -0
- package/script/test-spm/LottieSPM.xcworkspace/xcuserdata/cal.xcuserdatad/UserInterfaceState.xcuserstate +0 -0
- package/script/test-spm/Mintfile +1 -0
- package/.swiftpm/xcode/package.xcworkspace/xcuserdata/brandonwithrow.xcuserdatad/UserInterfaceState.xcuserstate +0 -0
- package/Lottie/Info.plist +0 -22
- package/Lottie.xcodeproj/project.xcworkspace/xcuserdata/brandonwithrow.xcuserdatad/UserInterfaceState.xcuserstate +0 -0
- package/Lottie.xcodeproj/xcuserdata/brandonwithrow.xcuserdatad/xcschemes/LottieLibraryMacOS.xcscheme +0 -80
- package/Lottie.xcodeproj/xcuserdata/brandonwithrow.xcuserdatad/xcschemes/xcschememanagement.plist +0 -57
- package/lottie-swift/Assets/.gitkeep +0 -0
- package/lottie-swift/src/Private/LayerContainers/Utility/LayerFontProvider.swift +0 -37
- package/lottie-swift/src/Private/LayerContainers/Utility/LayerTextProvider.swift +0 -36
- package/lottie-swift/src/Private/Model/Animation.swift +0 -107
- package/lottie-swift/src/Private/Model/Assets/Asset.swift +0 -27
- package/lottie-swift/src/Private/Model/Assets/ImageAsset.swift +0 -48
- package/lottie-swift/src/Private/Model/Keyframes/Keyframe.swift +0 -128
- package/lottie-swift/src/Private/Model/Keyframes/KeyframeGroup.swift +0 -108
- package/lottie-swift/src/Private/Model/Layers/LayerModel.swift +0 -150
- package/lottie-swift/src/Private/Model/Objects/DashPattern.swift +0 -24
- package/lottie-swift/src/Private/Model/Objects/Marker.swift +0 -23
- package/lottie-swift/src/Private/Model/Objects/Mask.swift +0 -48
- package/lottie-swift/src/Private/Model/Objects/Transform.swift +0 -105
- package/lottie-swift/src/Private/Model/ShapeItems/Ellipse.swift +0 -50
- package/lottie-swift/src/Private/Model/ShapeItems/FillI.swift +0 -49
- package/lottie-swift/src/Private/Model/ShapeItems/GradientFill.swift +0 -86
- package/lottie-swift/src/Private/Model/ShapeItems/GradientStroke.swift +0 -125
- package/lottie-swift/src/Private/Model/ShapeItems/Rectangle.swift +0 -50
- package/lottie-swift/src/Private/Model/ShapeItems/Repeater.swift +0 -80
- package/lottie-swift/src/Private/Model/ShapeItems/Shape.swift +0 -37
- package/lottie-swift/src/Private/Model/ShapeItems/ShapeItem.swift +0 -95
- package/lottie-swift/src/Private/Model/ShapeItems/ShapeTransform.swift +0 -68
- package/lottie-swift/src/Private/Model/ShapeItems/Star.swift +0 -86
- package/lottie-swift/src/Private/Model/ShapeItems/Stroke.swift +0 -67
- package/lottie-swift/src/Private/Model/ShapeItems/Trim.swift +0 -53
- package/lottie-swift/src/Private/Model/Text/Font.swift +0 -35
- package/lottie-swift/src/Private/Model/Text/TextAnimator.swift +0 -99
- package/lottie-swift/src/Private/Model/Text/TextDocument.swift +0 -70
- package/lottie-swift/src/Private/NodeRenderSystem/Nodes/PathNodes/EllipseNode.swift +0 -109
- package/lottie-swift/src/Private/NodeRenderSystem/Nodes/PathNodes/PolygonNode.swift +0 -132
- package/lottie-swift/src/Private/NodeRenderSystem/Nodes/RenderContainers/GroupNode.swift +0 -141
- package/lottie-swift/src/Private/Utility/Extensions/MathKit.swift +0 -539
- package/lottie-swift/src/Private/Utility/Extensions/StringExtensions.swift +0 -32
- package/lottie-swift/src/Private/Utility/Interpolatable/Interpolatable.swift +0 -18
- package/lottie-swift/src/Private/Utility/Interpolatable/InterpolatableExtensions.swift +0 -170
- package/lottie-swift/src/Private/Utility/Primitives/CurveVertex.swift +0 -177
- package/lottie-swift/src/Private/Utility/Primitives/PathElement.swift +0 -68
- package/lottie-swift/src/Private/Utility/Primitives/VectorsExtensions.swift +0 -218
- package/lottie-swift/src/Public/Animation/AnimationPublic.swift +0 -196
- package/lottie-swift/src/Public/Animation/AnimationView.swift +0 -1007
- package/lottie-swift/src/Public/Animation/AnimationViewInitializers.swift +0 -83
- package/lottie-swift/src/Public/AnimationCache/AnimationCacheProvider.swift +0 -24
- package/lottie-swift/src/Public/DynamicProperties/AnimationKeypath.swift +0 -46
- package/lottie-swift/src/Public/DynamicProperties/AnyValueProvider.swift +0 -29
- package/lottie-swift/src/Public/DynamicProperties/ValueProviders/GradientValueProvider.swift +0 -114
- package/lottie-swift/src/Public/ImageProvider/AnimationImageProvider.swift +0 -23
- package/lottie-swift/src/Public/MacOS/FilepathImageProvider.swift +0 -67
- package/lottie-swift/src/Public/TextProvider/AnimationTextProvider.swift +0 -39
- package/lottie-swift/src/Public/iOS/LottieView.swift +0 -62
- package/lottie-swift-testing.podspec +0 -32
|
@@ -0,0 +1,1352 @@
|
|
|
1
|
+
#if 0
|
|
2
|
+
#elif defined(__arm64__) && __arm64__
|
|
3
|
+
// Generated by Apple Swift version 5.5.2 (swiftlang-1300.0.47.5 clang-1300.0.29.30)
|
|
4
|
+
#ifndef LOTTIE_SWIFT_H
|
|
5
|
+
#define LOTTIE_SWIFT_H
|
|
6
|
+
#pragma clang diagnostic push
|
|
7
|
+
#pragma clang diagnostic ignored "-Wgcc-compat"
|
|
8
|
+
|
|
9
|
+
#if !defined(__has_include)
|
|
10
|
+
# define __has_include(x) 0
|
|
11
|
+
#endif
|
|
12
|
+
#if !defined(__has_attribute)
|
|
13
|
+
# define __has_attribute(x) 0
|
|
14
|
+
#endif
|
|
15
|
+
#if !defined(__has_feature)
|
|
16
|
+
# define __has_feature(x) 0
|
|
17
|
+
#endif
|
|
18
|
+
#if !defined(__has_warning)
|
|
19
|
+
# define __has_warning(x) 0
|
|
20
|
+
#endif
|
|
21
|
+
|
|
22
|
+
#if __has_include(<swift/objc-prologue.h>)
|
|
23
|
+
# include <swift/objc-prologue.h>
|
|
24
|
+
#endif
|
|
25
|
+
|
|
26
|
+
#pragma clang diagnostic ignored "-Wauto-import"
|
|
27
|
+
#include <Foundation/Foundation.h>
|
|
28
|
+
#include <stdint.h>
|
|
29
|
+
#include <stddef.h>
|
|
30
|
+
#include <stdbool.h>
|
|
31
|
+
|
|
32
|
+
#if !defined(SWIFT_TYPEDEFS)
|
|
33
|
+
# define SWIFT_TYPEDEFS 1
|
|
34
|
+
# if __has_include(<uchar.h>)
|
|
35
|
+
# include <uchar.h>
|
|
36
|
+
# elif !defined(__cplusplus)
|
|
37
|
+
typedef uint_least16_t char16_t;
|
|
38
|
+
typedef uint_least32_t char32_t;
|
|
39
|
+
# endif
|
|
40
|
+
typedef float swift_float2 __attribute__((__ext_vector_type__(2)));
|
|
41
|
+
typedef float swift_float3 __attribute__((__ext_vector_type__(3)));
|
|
42
|
+
typedef float swift_float4 __attribute__((__ext_vector_type__(4)));
|
|
43
|
+
typedef double swift_double2 __attribute__((__ext_vector_type__(2)));
|
|
44
|
+
typedef double swift_double3 __attribute__((__ext_vector_type__(3)));
|
|
45
|
+
typedef double swift_double4 __attribute__((__ext_vector_type__(4)));
|
|
46
|
+
typedef int swift_int2 __attribute__((__ext_vector_type__(2)));
|
|
47
|
+
typedef int swift_int3 __attribute__((__ext_vector_type__(3)));
|
|
48
|
+
typedef int swift_int4 __attribute__((__ext_vector_type__(4)));
|
|
49
|
+
typedef unsigned int swift_uint2 __attribute__((__ext_vector_type__(2)));
|
|
50
|
+
typedef unsigned int swift_uint3 __attribute__((__ext_vector_type__(3)));
|
|
51
|
+
typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4)));
|
|
52
|
+
#endif
|
|
53
|
+
|
|
54
|
+
#if !defined(SWIFT_PASTE)
|
|
55
|
+
# define SWIFT_PASTE_HELPER(x, y) x##y
|
|
56
|
+
# define SWIFT_PASTE(x, y) SWIFT_PASTE_HELPER(x, y)
|
|
57
|
+
#endif
|
|
58
|
+
#if !defined(SWIFT_METATYPE)
|
|
59
|
+
# define SWIFT_METATYPE(X) Class
|
|
60
|
+
#endif
|
|
61
|
+
#if !defined(SWIFT_CLASS_PROPERTY)
|
|
62
|
+
# if __has_feature(objc_class_property)
|
|
63
|
+
# define SWIFT_CLASS_PROPERTY(...) __VA_ARGS__
|
|
64
|
+
# else
|
|
65
|
+
# define SWIFT_CLASS_PROPERTY(...)
|
|
66
|
+
# endif
|
|
67
|
+
#endif
|
|
68
|
+
|
|
69
|
+
#if __has_attribute(objc_runtime_name)
|
|
70
|
+
# define SWIFT_RUNTIME_NAME(X) __attribute__((objc_runtime_name(X)))
|
|
71
|
+
#else
|
|
72
|
+
# define SWIFT_RUNTIME_NAME(X)
|
|
73
|
+
#endif
|
|
74
|
+
#if __has_attribute(swift_name)
|
|
75
|
+
# define SWIFT_COMPILE_NAME(X) __attribute__((swift_name(X)))
|
|
76
|
+
#else
|
|
77
|
+
# define SWIFT_COMPILE_NAME(X)
|
|
78
|
+
#endif
|
|
79
|
+
#if __has_attribute(objc_method_family)
|
|
80
|
+
# define SWIFT_METHOD_FAMILY(X) __attribute__((objc_method_family(X)))
|
|
81
|
+
#else
|
|
82
|
+
# define SWIFT_METHOD_FAMILY(X)
|
|
83
|
+
#endif
|
|
84
|
+
#if __has_attribute(noescape)
|
|
85
|
+
# define SWIFT_NOESCAPE __attribute__((noescape))
|
|
86
|
+
#else
|
|
87
|
+
# define SWIFT_NOESCAPE
|
|
88
|
+
#endif
|
|
89
|
+
#if __has_attribute(ns_consumed)
|
|
90
|
+
# define SWIFT_RELEASES_ARGUMENT __attribute__((ns_consumed))
|
|
91
|
+
#else
|
|
92
|
+
# define SWIFT_RELEASES_ARGUMENT
|
|
93
|
+
#endif
|
|
94
|
+
#if __has_attribute(warn_unused_result)
|
|
95
|
+
# define SWIFT_WARN_UNUSED_RESULT __attribute__((warn_unused_result))
|
|
96
|
+
#else
|
|
97
|
+
# define SWIFT_WARN_UNUSED_RESULT
|
|
98
|
+
#endif
|
|
99
|
+
#if __has_attribute(noreturn)
|
|
100
|
+
# define SWIFT_NORETURN __attribute__((noreturn))
|
|
101
|
+
#else
|
|
102
|
+
# define SWIFT_NORETURN
|
|
103
|
+
#endif
|
|
104
|
+
#if !defined(SWIFT_CLASS_EXTRA)
|
|
105
|
+
# define SWIFT_CLASS_EXTRA
|
|
106
|
+
#endif
|
|
107
|
+
#if !defined(SWIFT_PROTOCOL_EXTRA)
|
|
108
|
+
# define SWIFT_PROTOCOL_EXTRA
|
|
109
|
+
#endif
|
|
110
|
+
#if !defined(SWIFT_ENUM_EXTRA)
|
|
111
|
+
# define SWIFT_ENUM_EXTRA
|
|
112
|
+
#endif
|
|
113
|
+
#if !defined(SWIFT_CLASS)
|
|
114
|
+
# if __has_attribute(objc_subclassing_restricted)
|
|
115
|
+
# define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_CLASS_EXTRA
|
|
116
|
+
# define SWIFT_CLASS_NAMED(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA
|
|
117
|
+
# else
|
|
118
|
+
# define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA
|
|
119
|
+
# define SWIFT_CLASS_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA
|
|
120
|
+
# endif
|
|
121
|
+
#endif
|
|
122
|
+
#if !defined(SWIFT_RESILIENT_CLASS)
|
|
123
|
+
# if __has_attribute(objc_class_stub)
|
|
124
|
+
# define SWIFT_RESILIENT_CLASS(SWIFT_NAME) SWIFT_CLASS(SWIFT_NAME) __attribute__((objc_class_stub))
|
|
125
|
+
# define SWIFT_RESILIENT_CLASS_NAMED(SWIFT_NAME) __attribute__((objc_class_stub)) SWIFT_CLASS_NAMED(SWIFT_NAME)
|
|
126
|
+
# else
|
|
127
|
+
# define SWIFT_RESILIENT_CLASS(SWIFT_NAME) SWIFT_CLASS(SWIFT_NAME)
|
|
128
|
+
# define SWIFT_RESILIENT_CLASS_NAMED(SWIFT_NAME) SWIFT_CLASS_NAMED(SWIFT_NAME)
|
|
129
|
+
# endif
|
|
130
|
+
#endif
|
|
131
|
+
|
|
132
|
+
#if !defined(SWIFT_PROTOCOL)
|
|
133
|
+
# define SWIFT_PROTOCOL(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA
|
|
134
|
+
# define SWIFT_PROTOCOL_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA
|
|
135
|
+
#endif
|
|
136
|
+
|
|
137
|
+
#if !defined(SWIFT_EXTENSION)
|
|
138
|
+
# define SWIFT_EXTENSION(M) SWIFT_PASTE(M##_Swift_, __LINE__)
|
|
139
|
+
#endif
|
|
140
|
+
|
|
141
|
+
#if !defined(OBJC_DESIGNATED_INITIALIZER)
|
|
142
|
+
# if __has_attribute(objc_designated_initializer)
|
|
143
|
+
# define OBJC_DESIGNATED_INITIALIZER __attribute__((objc_designated_initializer))
|
|
144
|
+
# else
|
|
145
|
+
# define OBJC_DESIGNATED_INITIALIZER
|
|
146
|
+
# endif
|
|
147
|
+
#endif
|
|
148
|
+
#if !defined(SWIFT_ENUM_ATTR)
|
|
149
|
+
# if defined(__has_attribute) && __has_attribute(enum_extensibility)
|
|
150
|
+
# define SWIFT_ENUM_ATTR(_extensibility) __attribute__((enum_extensibility(_extensibility)))
|
|
151
|
+
# else
|
|
152
|
+
# define SWIFT_ENUM_ATTR(_extensibility)
|
|
153
|
+
# endif
|
|
154
|
+
#endif
|
|
155
|
+
#if !defined(SWIFT_ENUM)
|
|
156
|
+
# define SWIFT_ENUM(_type, _name, _extensibility) enum _name : _type _name; enum SWIFT_ENUM_ATTR(_extensibility) SWIFT_ENUM_EXTRA _name : _type
|
|
157
|
+
# if __has_feature(generalized_swift_name)
|
|
158
|
+
# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME, _extensibility) enum _name : _type _name SWIFT_COMPILE_NAME(SWIFT_NAME); enum SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_ENUM_ATTR(_extensibility) SWIFT_ENUM_EXTRA _name : _type
|
|
159
|
+
# else
|
|
160
|
+
# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME, _extensibility) SWIFT_ENUM(_type, _name, _extensibility)
|
|
161
|
+
# endif
|
|
162
|
+
#endif
|
|
163
|
+
#if !defined(SWIFT_UNAVAILABLE)
|
|
164
|
+
# define SWIFT_UNAVAILABLE __attribute__((unavailable))
|
|
165
|
+
#endif
|
|
166
|
+
#if !defined(SWIFT_UNAVAILABLE_MSG)
|
|
167
|
+
# define SWIFT_UNAVAILABLE_MSG(msg) __attribute__((unavailable(msg)))
|
|
168
|
+
#endif
|
|
169
|
+
#if !defined(SWIFT_AVAILABILITY)
|
|
170
|
+
# define SWIFT_AVAILABILITY(plat, ...) __attribute__((availability(plat, __VA_ARGS__)))
|
|
171
|
+
#endif
|
|
172
|
+
#if !defined(SWIFT_WEAK_IMPORT)
|
|
173
|
+
# define SWIFT_WEAK_IMPORT __attribute__((weak_import))
|
|
174
|
+
#endif
|
|
175
|
+
#if !defined(SWIFT_DEPRECATED)
|
|
176
|
+
# define SWIFT_DEPRECATED __attribute__((deprecated))
|
|
177
|
+
#endif
|
|
178
|
+
#if !defined(SWIFT_DEPRECATED_MSG)
|
|
179
|
+
# define SWIFT_DEPRECATED_MSG(...) __attribute__((deprecated(__VA_ARGS__)))
|
|
180
|
+
#endif
|
|
181
|
+
#if __has_feature(attribute_diagnose_if_objc)
|
|
182
|
+
# define SWIFT_DEPRECATED_OBJC(Msg) __attribute__((diagnose_if(1, Msg, "warning")))
|
|
183
|
+
#else
|
|
184
|
+
# define SWIFT_DEPRECATED_OBJC(Msg) SWIFT_DEPRECATED_MSG(Msg)
|
|
185
|
+
#endif
|
|
186
|
+
#if !defined(IBSegueAction)
|
|
187
|
+
# define IBSegueAction
|
|
188
|
+
#endif
|
|
189
|
+
#if __has_feature(modules)
|
|
190
|
+
#if __has_warning("-Watimport-in-framework-header")
|
|
191
|
+
#pragma clang diagnostic ignored "-Watimport-in-framework-header"
|
|
192
|
+
#endif
|
|
193
|
+
@import CoreGraphics;
|
|
194
|
+
@import Foundation;
|
|
195
|
+
@import ObjectiveC;
|
|
196
|
+
@import QuartzCore;
|
|
197
|
+
@import UIKit;
|
|
198
|
+
#endif
|
|
199
|
+
|
|
200
|
+
#pragma clang diagnostic ignored "-Wproperty-attribute-mismatch"
|
|
201
|
+
#pragma clang diagnostic ignored "-Wduplicate-method-arg"
|
|
202
|
+
#if __has_warning("-Wpragma-clang-attribute")
|
|
203
|
+
# pragma clang diagnostic ignored "-Wpragma-clang-attribute"
|
|
204
|
+
#endif
|
|
205
|
+
#pragma clang diagnostic ignored "-Wunknown-pragmas"
|
|
206
|
+
#pragma clang diagnostic ignored "-Wnullability"
|
|
207
|
+
|
|
208
|
+
#if __has_attribute(external_source_symbol)
|
|
209
|
+
# pragma push_macro("any")
|
|
210
|
+
# undef any
|
|
211
|
+
# pragma clang attribute push(__attribute__((external_source_symbol(language="Swift", defined_in="Lottie",generated_declaration))), apply_to=any(function,enum,objc_interface,objc_category,objc_protocol))
|
|
212
|
+
# pragma pop_macro("any")
|
|
213
|
+
#endif
|
|
214
|
+
|
|
215
|
+
@class NSCoder;
|
|
216
|
+
@class NSNumber;
|
|
217
|
+
@class UITouch;
|
|
218
|
+
@class UIEvent;
|
|
219
|
+
|
|
220
|
+
/// Lottie comes prepacked with a two Animated Controls, <code>AnimatedSwitch</code> and
|
|
221
|
+
/// <code>AnimatedButton</code>. Both of these controls are built on top of <code>AnimatedControl</code>
|
|
222
|
+
/// <code>AnimatedControl</code> is a subclass of <code>UIControl</code> that provides an interactive
|
|
223
|
+
/// mechanism for controlling the visual state of an animation in response to
|
|
224
|
+
/// user actions.
|
|
225
|
+
/// The <code>AnimatedControl</code> will show and hide layers depending on the current
|
|
226
|
+
/// <code>UIControl.State</code> of the control.
|
|
227
|
+
/// Users of <code>AnimationControl</code> can set a Layer Name for each <code>UIControl.State</code>.
|
|
228
|
+
/// When the state is change the <code>AnimationControl</code> will change the visibility
|
|
229
|
+
/// of its layers.
|
|
230
|
+
/// NOTE: Do not initialize directly. This is intended to be subclassed.
|
|
231
|
+
SWIFT_CLASS("_TtC6Lottie15AnimatedControl")
|
|
232
|
+
@interface AnimatedControl : UIControl
|
|
233
|
+
- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER;
|
|
234
|
+
- (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)aDecoder OBJC_DESIGNATED_INITIALIZER;
|
|
235
|
+
@property (nonatomic, getter=isEnabled) BOOL enabled;
|
|
236
|
+
@property (nonatomic, getter=isSelected) BOOL selected;
|
|
237
|
+
@property (nonatomic, getter=isHighlighted) BOOL highlighted;
|
|
238
|
+
@property (nonatomic, readonly) CGSize intrinsicContentSize;
|
|
239
|
+
- (BOOL)beginTrackingWithTouch:(UITouch * _Nonnull)touch withEvent:(UIEvent * _Nullable)event SWIFT_WARN_UNUSED_RESULT;
|
|
240
|
+
- (BOOL)continueTrackingWithTouch:(UITouch * _Nonnull)touch withEvent:(UIEvent * _Nullable)event SWIFT_WARN_UNUSED_RESULT;
|
|
241
|
+
- (void)endTrackingWithTouch:(UITouch * _Nullable)touch withEvent:(UIEvent * _Nullable)event;
|
|
242
|
+
- (void)cancelTrackingWithEvent:(UIEvent * _Nullable)event;
|
|
243
|
+
- (nonnull instancetype)initWithFrame:(CGRect)frame SWIFT_UNAVAILABLE;
|
|
244
|
+
@end
|
|
245
|
+
|
|
246
|
+
|
|
247
|
+
/// An interactive button that plays an animation when pressed.
|
|
248
|
+
SWIFT_CLASS("_TtC6Lottie14AnimatedButton")
|
|
249
|
+
@interface AnimatedButton : AnimatedControl
|
|
250
|
+
- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER;
|
|
251
|
+
- (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)aDecoder OBJC_DESIGNATED_INITIALIZER;
|
|
252
|
+
- (BOOL)beginTrackingWithTouch:(UITouch * _Nonnull)touch withEvent:(UIEvent * _Nullable)event SWIFT_WARN_UNUSED_RESULT;
|
|
253
|
+
- (void)endTrackingWithTouch:(UITouch * _Nullable)touch withEvent:(UIEvent * _Nullable)event;
|
|
254
|
+
@end
|
|
255
|
+
|
|
256
|
+
|
|
257
|
+
|
|
258
|
+
/// An interactive switch with an ‘On’ and ‘Off’ state. When the user taps on the
|
|
259
|
+
/// switch the state is toggled and the appropriate animation is played.
|
|
260
|
+
/// Both the ‘On’ and ‘Off’ have an animation play range associated with their state.
|
|
261
|
+
SWIFT_CLASS("_TtC6Lottie14AnimatedSwitch")
|
|
262
|
+
@interface AnimatedSwitch : AnimatedControl
|
|
263
|
+
- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER;
|
|
264
|
+
- (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)aDecoder OBJC_DESIGNATED_INITIALIZER;
|
|
265
|
+
- (void)endTrackingWithTouch:(UITouch * _Nullable)touch withEvent:(UIEvent * _Nullable)event;
|
|
266
|
+
@end
|
|
267
|
+
|
|
268
|
+
@class CAAnimation;
|
|
269
|
+
|
|
270
|
+
SWIFT_CLASS("_TtC6Lottie27AnimationCompletionDelegate")
|
|
271
|
+
@interface AnimationCompletionDelegate : NSObject <CAAnimationDelegate>
|
|
272
|
+
- (void)animationDidStop:(CAAnimation * _Nonnull)anim finished:(BOOL)flag;
|
|
273
|
+
- (nonnull instancetype)init SWIFT_UNAVAILABLE;
|
|
274
|
+
+ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable");
|
|
275
|
+
@end
|
|
276
|
+
|
|
277
|
+
@class NSString;
|
|
278
|
+
@protocol CAAction;
|
|
279
|
+
|
|
280
|
+
/// The base animation container.
|
|
281
|
+
/// This layer holds a single composition container and allows for animation of
|
|
282
|
+
/// the currentFrame property.
|
|
283
|
+
SWIFT_CLASS("_TtC6Lottie18AnimationContainer")
|
|
284
|
+
@interface AnimationContainer : CALayer
|
|
285
|
+
/// For CAAnimation Use
|
|
286
|
+
- (nonnull instancetype)initWithLayer:(id _Nonnull)layer OBJC_DESIGNATED_INITIALIZER;
|
|
287
|
+
- (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)_ OBJC_DESIGNATED_INITIALIZER;
|
|
288
|
+
+ (BOOL)needsDisplayForKey:(NSString * _Nonnull)key SWIFT_WARN_UNUSED_RESULT;
|
|
289
|
+
- (id <CAAction> _Nullable)actionForKey:(NSString * _Nonnull)event SWIFT_WARN_UNUSED_RESULT;
|
|
290
|
+
- (void)display;
|
|
291
|
+
/// The animatable Current Frame Property
|
|
292
|
+
@property (nonatomic) CGFloat currentFrame;
|
|
293
|
+
- (nonnull instancetype)init SWIFT_UNAVAILABLE;
|
|
294
|
+
+ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable");
|
|
295
|
+
@end
|
|
296
|
+
|
|
297
|
+
|
|
298
|
+
|
|
299
|
+
/// A view that can be added to a keypath of an AnimationView
|
|
300
|
+
SWIFT_CLASS("_TtC6Lottie16AnimationSubview")
|
|
301
|
+
@interface AnimationSubview : UIView
|
|
302
|
+
- (nonnull instancetype)initWithFrame:(CGRect)frame OBJC_DESIGNATED_INITIALIZER;
|
|
303
|
+
- (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)coder OBJC_DESIGNATED_INITIALIZER;
|
|
304
|
+
@end
|
|
305
|
+
|
|
306
|
+
|
|
307
|
+
/// The base view for <code>AnimationView</code> on iOS, tvOS, watchOS, and macCatalyst.
|
|
308
|
+
/// Enables the <code>AnimationView</code> implementation to be shared across platforms.
|
|
309
|
+
SWIFT_CLASS("_TtC6Lottie17AnimationViewBase")
|
|
310
|
+
@interface AnimationViewBase : UIView
|
|
311
|
+
@property (nonatomic) UIViewContentMode contentMode;
|
|
312
|
+
- (void)didMoveToWindow;
|
|
313
|
+
- (void)layoutSubviews;
|
|
314
|
+
- (void)animationWillMoveToBackground;
|
|
315
|
+
- (void)animationWillEnterForeground;
|
|
316
|
+
- (nonnull instancetype)initWithFrame:(CGRect)frame OBJC_DESIGNATED_INITIALIZER;
|
|
317
|
+
- (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)coder OBJC_DESIGNATED_INITIALIZER;
|
|
318
|
+
@end
|
|
319
|
+
|
|
320
|
+
|
|
321
|
+
IB_DESIGNABLE
|
|
322
|
+
SWIFT_CLASS("_TtC6Lottie13AnimationView")
|
|
323
|
+
@interface AnimationView : AnimationViewBase
|
|
324
|
+
- (nonnull instancetype)initWithFrame:(CGRect)_ OBJC_DESIGNATED_INITIALIZER;
|
|
325
|
+
- (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)aDecoder OBJC_DESIGNATED_INITIALIZER;
|
|
326
|
+
@property (nonatomic, readonly) CGSize intrinsicContentSize;
|
|
327
|
+
/// Set animation name from Interface Builder
|
|
328
|
+
@property (nonatomic, copy) IBInspectable NSString * _Nullable animationName;
|
|
329
|
+
- (void)animationWillMoveToBackground;
|
|
330
|
+
- (void)animationWillEnterForeground;
|
|
331
|
+
@end
|
|
332
|
+
|
|
333
|
+
|
|
334
|
+
|
|
335
|
+
|
|
336
|
+
/// The base type of <code>AnimationLayer</code> that can contain other <code>AnimationLayer</code>s
|
|
337
|
+
SWIFT_CLASS("_TtC6Lottie20BaseCompositionLayer")
|
|
338
|
+
@interface BaseCompositionLayer : CALayer
|
|
339
|
+
- (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)_ OBJC_DESIGNATED_INITIALIZER;
|
|
340
|
+
/// Called by CoreAnimation to create a shadow copy of this layer
|
|
341
|
+
/// More details: https://developer.apple.com/documentation/quartzcore/calayer/1410842-init
|
|
342
|
+
- (nonnull instancetype)initWithLayer:(id _Nonnull)layer OBJC_DESIGNATED_INITIALIZER;
|
|
343
|
+
- (void)layoutSublayers;
|
|
344
|
+
- (nonnull instancetype)init SWIFT_UNAVAILABLE;
|
|
345
|
+
+ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable");
|
|
346
|
+
@end
|
|
347
|
+
|
|
348
|
+
|
|
349
|
+
|
|
350
|
+
|
|
351
|
+
|
|
352
|
+
|
|
353
|
+
|
|
354
|
+
|
|
355
|
+
|
|
356
|
+
|
|
357
|
+
|
|
358
|
+
|
|
359
|
+
|
|
360
|
+
|
|
361
|
+
|
|
362
|
+
|
|
363
|
+
|
|
364
|
+
@class NSBundle;
|
|
365
|
+
|
|
366
|
+
/// An Objective-C compatible wrapper around Lottie’s Animation class.
|
|
367
|
+
/// Use in tandem with CompatibleAnimationView when using Lottie in Objective-C
|
|
368
|
+
SWIFT_CLASS("_TtC6Lottie19CompatibleAnimation")
|
|
369
|
+
@interface CompatibleAnimation : NSObject
|
|
370
|
+
- (nonnull instancetype)initWithName:(NSString * _Nonnull)name bundle:(NSBundle * _Nonnull)bundle OBJC_DESIGNATED_INITIALIZER;
|
|
371
|
+
+ (CompatibleAnimation * _Nonnull)named:(NSString * _Nonnull)name SWIFT_WARN_UNUSED_RESULT;
|
|
372
|
+
- (nonnull instancetype)init SWIFT_UNAVAILABLE;
|
|
373
|
+
+ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable");
|
|
374
|
+
@end
|
|
375
|
+
|
|
376
|
+
|
|
377
|
+
/// An Objective-C compatible wrapper around Lottie’s AnimationKeypath
|
|
378
|
+
SWIFT_CLASS("_TtC6Lottie26CompatibleAnimationKeypath")
|
|
379
|
+
@interface CompatibleAnimationKeypath : NSObject
|
|
380
|
+
/// Creates a keypath from a dot separated string. The string is separated by “.”
|
|
381
|
+
- (nonnull instancetype)initWithKeypath:(NSString * _Nonnull)keypath OBJC_DESIGNATED_INITIALIZER;
|
|
382
|
+
/// Creates a keypath from a list of strings.
|
|
383
|
+
- (nonnull instancetype)initWithKeys:(NSArray<NSString *> * _Nonnull)keys OBJC_DESIGNATED_INITIALIZER;
|
|
384
|
+
- (nonnull instancetype)init SWIFT_UNAVAILABLE;
|
|
385
|
+
+ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable");
|
|
386
|
+
@end
|
|
387
|
+
|
|
388
|
+
@class UIColor;
|
|
389
|
+
|
|
390
|
+
/// An Objective-C compatible wrapper around Lottie’s AnimationView.
|
|
391
|
+
SWIFT_CLASS("_TtC6Lottie23CompatibleAnimationView")
|
|
392
|
+
@interface CompatibleAnimationView : UIView
|
|
393
|
+
- (nonnull instancetype)initWithCompatibleAnimation:(CompatibleAnimation * _Nonnull)compatibleAnimation OBJC_DESIGNATED_INITIALIZER;
|
|
394
|
+
- (nonnull instancetype)initWithFrame:(CGRect)frame OBJC_DESIGNATED_INITIALIZER;
|
|
395
|
+
- (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)_ OBJC_DESIGNATED_INITIALIZER;
|
|
396
|
+
@property (nonatomic, strong) CompatibleAnimation * _Nullable compatibleAnimation;
|
|
397
|
+
@property (nonatomic) CGFloat loopAnimationCount;
|
|
398
|
+
@property (nonatomic) UIViewContentMode contentMode;
|
|
399
|
+
@property (nonatomic) BOOL shouldRasterizeWhenIdle;
|
|
400
|
+
@property (nonatomic) CGFloat currentProgress;
|
|
401
|
+
@property (nonatomic) NSTimeInterval currentTime;
|
|
402
|
+
@property (nonatomic) CGFloat currentFrame;
|
|
403
|
+
@property (nonatomic, readonly) CGFloat realtimeAnimationFrame;
|
|
404
|
+
@property (nonatomic, readonly) CGFloat realtimeAnimationProgress;
|
|
405
|
+
@property (nonatomic) CGFloat animationSpeed;
|
|
406
|
+
@property (nonatomic) BOOL respectAnimationFrameRate;
|
|
407
|
+
@property (nonatomic, readonly) BOOL isAnimationPlaying;
|
|
408
|
+
- (void)play;
|
|
409
|
+
- (void)playWithCompletion:(void (^ _Nullable)(BOOL))completion;
|
|
410
|
+
- (void)playFromProgress:(CGFloat)fromProgress toProgress:(CGFloat)toProgress completion:(void (^ _Nullable)(BOOL))completion;
|
|
411
|
+
- (void)playFromFrame:(CGFloat)fromFrame toFrame:(CGFloat)toFrame completion:(void (^ _Nullable)(BOOL))completion;
|
|
412
|
+
- (void)playFromMarker:(NSString * _Nonnull)fromMarker toMarker:(NSString * _Nonnull)toMarker completion:(void (^ _Nullable)(BOOL))completion;
|
|
413
|
+
- (void)stop;
|
|
414
|
+
- (void)pause;
|
|
415
|
+
- (void)reloadImages;
|
|
416
|
+
- (void)forceDisplayUpdate;
|
|
417
|
+
- (id _Nullable)getValueFor:(CompatibleAnimationKeypath * _Nonnull)keypath atFrame:(CGFloat)atFrame SWIFT_WARN_UNUSED_RESULT;
|
|
418
|
+
- (void)logHierarchyKeypaths;
|
|
419
|
+
- (void)setColorValue:(UIColor * _Nonnull)color forKeypath:(CompatibleAnimationKeypath * _Nonnull)keypath;
|
|
420
|
+
- (UIColor * _Nullable)getColorValueFor:(CompatibleAnimationKeypath * _Nonnull)keypath atFrame:(CGFloat)atFrame SWIFT_WARN_UNUSED_RESULT;
|
|
421
|
+
- (void)addSubview:(AnimationSubview * _Nonnull)subview forLayerAt:(CompatibleAnimationKeypath * _Nonnull)keypath;
|
|
422
|
+
- (CGRect)convertWithRect:(CGRect)rect toLayerAt:(CompatibleAnimationKeypath * _Nullable)keypath SWIFT_WARN_UNUSED_RESULT;
|
|
423
|
+
- (CGPoint)convertWithPoint:(CGPoint)point toLayerAt:(CompatibleAnimationKeypath * _Nullable)keypath SWIFT_WARN_UNUSED_RESULT;
|
|
424
|
+
- (CGFloat)progressTimeForMarker:(NSString * _Nonnull)named SWIFT_WARN_UNUSED_RESULT;
|
|
425
|
+
- (CGFloat)frameTimeForMarker:(NSString * _Nonnull)named SWIFT_WARN_UNUSED_RESULT;
|
|
426
|
+
@end
|
|
427
|
+
|
|
428
|
+
|
|
429
|
+
/// The base class for a child layer of CompositionContainer
|
|
430
|
+
SWIFT_CLASS("_TtC6Lottie16CompositionLayer")
|
|
431
|
+
@interface CompositionLayer : CALayer
|
|
432
|
+
- (nonnull instancetype)initWithLayer:(id _Nonnull)layer OBJC_DESIGNATED_INITIALIZER;
|
|
433
|
+
- (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)_ OBJC_DESIGNATED_INITIALIZER;
|
|
434
|
+
- (nonnull instancetype)init SWIFT_UNAVAILABLE;
|
|
435
|
+
+ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable");
|
|
436
|
+
@end
|
|
437
|
+
|
|
438
|
+
|
|
439
|
+
|
|
440
|
+
SWIFT_CLASS("_TtC6Lottie10DebugLayer")
|
|
441
|
+
@interface DebugLayer : CALayer
|
|
442
|
+
- (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)_ OBJC_DESIGNATED_INITIALIZER;
|
|
443
|
+
- (nonnull instancetype)init SWIFT_UNAVAILABLE;
|
|
444
|
+
+ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable");
|
|
445
|
+
- (nonnull instancetype)initWithLayer:(id _Nonnull)layer SWIFT_UNAVAILABLE;
|
|
446
|
+
@end
|
|
447
|
+
|
|
448
|
+
|
|
449
|
+
/// The root <code>CALayer</code> of the new rendering engine,
|
|
450
|
+
/// which leverages the Core Animation render server to
|
|
451
|
+
/// animate without executing on the main thread every frame.
|
|
452
|
+
SWIFT_CLASS("_TtC6Lottie26ExperimentalAnimationLayer")
|
|
453
|
+
@interface ExperimentalAnimationLayer : CALayer
|
|
454
|
+
/// Called by CoreAnimation to create a shadow copy of this layer
|
|
455
|
+
/// More details: https://developer.apple.com/documentation/quartzcore/calayer/1410842-init
|
|
456
|
+
- (nonnull instancetype)initWithLayer:(id _Nonnull)layer OBJC_DESIGNATED_INITIALIZER;
|
|
457
|
+
- (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)_ OBJC_DESIGNATED_INITIALIZER;
|
|
458
|
+
- (void)layoutSublayers;
|
|
459
|
+
- (nonnull instancetype)init SWIFT_UNAVAILABLE;
|
|
460
|
+
+ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable");
|
|
461
|
+
@end
|
|
462
|
+
|
|
463
|
+
|
|
464
|
+
|
|
465
|
+
/// A <code>CAGradientLayer</code> subclass used to render a gradient <em>outside</em> the normal layer bounds
|
|
466
|
+
/// <ul>
|
|
467
|
+
/// <li>
|
|
468
|
+
/// <code>GradientFill.startPoint</code> and <code>GradientFill.endPoint</code> are expressed
|
|
469
|
+
/// with respect to the <code>bounds</code> of the <code>ShapeItemLayer</code>.
|
|
470
|
+
/// </li>
|
|
471
|
+
/// <li>
|
|
472
|
+
/// The gradient itself is supposed to be rendered infinitely in all directions
|
|
473
|
+
/// (e.g. including outside of <code>bounds</code>). This is because <code>ShapeItemLayer</code> paths
|
|
474
|
+
/// don’t necessarily sit within the layer’s <code>bounds</code>.
|
|
475
|
+
/// </li>
|
|
476
|
+
/// <li>
|
|
477
|
+
/// To support this, <code>GradientRenderLayer</code> tracks a <code>gradientReferenceBounds</code>
|
|
478
|
+
/// that <code>startPoint</code> / <code>endPoint</code> are calculated relative to.
|
|
479
|
+
/// The <em>actual</em> <code>bounds</code> of this layer is padded by a large amount so that
|
|
480
|
+
/// the gradient can be drawn outside of the <code>gradientReferenceBounds</code>.
|
|
481
|
+
/// </li>
|
|
482
|
+
/// </ul>
|
|
483
|
+
SWIFT_CLASS("_TtC6Lottie19GradientRenderLayer")
|
|
484
|
+
@interface GradientRenderLayer : CAGradientLayer
|
|
485
|
+
- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER;
|
|
486
|
+
- (nonnull instancetype)initWithLayer:(id _Nonnull)layer OBJC_DESIGNATED_INITIALIZER;
|
|
487
|
+
- (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)coder OBJC_DESIGNATED_INITIALIZER;
|
|
488
|
+
@end
|
|
489
|
+
|
|
490
|
+
|
|
491
|
+
|
|
492
|
+
|
|
493
|
+
SWIFT_CLASS("_TtC6Lottie21ImageCompositionLayer")
|
|
494
|
+
@interface ImageCompositionLayer : CompositionLayer
|
|
495
|
+
- (nonnull instancetype)initWithLayer:(id _Nonnull)layer OBJC_DESIGNATED_INITIALIZER;
|
|
496
|
+
- (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)_ OBJC_DESIGNATED_INITIALIZER;
|
|
497
|
+
@end
|
|
498
|
+
|
|
499
|
+
|
|
500
|
+
/// The <code>CALayer</code> type responsible for rendering <code>ImageLayerModel</code>s
|
|
501
|
+
SWIFT_CLASS("_TtC6Lottie10ImageLayer")
|
|
502
|
+
@interface ImageLayer : BaseCompositionLayer
|
|
503
|
+
- (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)_ OBJC_DESIGNATED_INITIALIZER;
|
|
504
|
+
/// Called by CoreAnimation to create a shadow copy of this layer
|
|
505
|
+
/// More details: https://developer.apple.com/documentation/quartzcore/calayer/1410842-init
|
|
506
|
+
- (nonnull instancetype)initWithLayer:(id _Nonnull)layer OBJC_DESIGNATED_INITIALIZER;
|
|
507
|
+
@end
|
|
508
|
+
|
|
509
|
+
|
|
510
|
+
/// A layer that inverses the alpha output of its input layer.
|
|
511
|
+
/// WARNING: This is experimental and probably not very performant.
|
|
512
|
+
SWIFT_CLASS("_TtC6Lottie18InvertedMatteLayer")
|
|
513
|
+
@interface InvertedMatteLayer : CALayer
|
|
514
|
+
- (nonnull instancetype)initWithLayer:(id _Nonnull)layer OBJC_DESIGNATED_INITIALIZER;
|
|
515
|
+
- (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)_ OBJC_DESIGNATED_INITIALIZER;
|
|
516
|
+
- (void)drawInContext:(CGContextRef _Nonnull)ctx;
|
|
517
|
+
- (nonnull instancetype)init SWIFT_UNAVAILABLE;
|
|
518
|
+
+ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable");
|
|
519
|
+
@end
|
|
520
|
+
|
|
521
|
+
|
|
522
|
+
/// The CALayer type responsible for rendering the <code>Mask</code> of a <code>BaseCompositionLayer</code>
|
|
523
|
+
SWIFT_CLASS("_TtC6Lottie20MaskCompositionLayer")
|
|
524
|
+
@interface MaskCompositionLayer : CALayer
|
|
525
|
+
- (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)_ OBJC_DESIGNATED_INITIALIZER;
|
|
526
|
+
/// Called by CoreAnimation to create a shadow copy of this layer
|
|
527
|
+
/// More details: https://developer.apple.com/documentation/quartzcore/calayer/1410842-init
|
|
528
|
+
- (nonnull instancetype)initWithLayer:(id _Nonnull)layer OBJC_DESIGNATED_INITIALIZER;
|
|
529
|
+
- (void)layoutSublayers;
|
|
530
|
+
- (nonnull instancetype)init SWIFT_UNAVAILABLE;
|
|
531
|
+
+ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable");
|
|
532
|
+
@end
|
|
533
|
+
|
|
534
|
+
|
|
535
|
+
@interface MaskCompositionLayer (SWIFT_EXTENSION(Lottie))
|
|
536
|
+
@end
|
|
537
|
+
|
|
538
|
+
|
|
539
|
+
|
|
540
|
+
SWIFT_CLASS("_TtC6Lottie18MaskContainerLayer")
|
|
541
|
+
@interface MaskContainerLayer : CALayer
|
|
542
|
+
- (nonnull instancetype)initWithLayer:(id _Nonnull)layer OBJC_DESIGNATED_INITIALIZER;
|
|
543
|
+
- (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)_ OBJC_DESIGNATED_INITIALIZER;
|
|
544
|
+
- (nonnull instancetype)init SWIFT_UNAVAILABLE;
|
|
545
|
+
+ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable");
|
|
546
|
+
@end
|
|
547
|
+
|
|
548
|
+
|
|
549
|
+
|
|
550
|
+
SWIFT_CLASS("_TtC6Lottie20NullCompositionLayer")
|
|
551
|
+
@interface NullCompositionLayer : CompositionLayer
|
|
552
|
+
- (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)_ OBJC_DESIGNATED_INITIALIZER;
|
|
553
|
+
- (nonnull instancetype)initWithLayer:(id _Nonnull)layer OBJC_DESIGNATED_INITIALIZER;
|
|
554
|
+
@end
|
|
555
|
+
|
|
556
|
+
|
|
557
|
+
|
|
558
|
+
/// The <code>CALayer</code> type responsible for rendering <code>PreCompLayerModel</code>s
|
|
559
|
+
SWIFT_CLASS("_TtC6Lottie12PreCompLayer")
|
|
560
|
+
@interface PreCompLayer : BaseCompositionLayer
|
|
561
|
+
- (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)_ OBJC_DESIGNATED_INITIALIZER;
|
|
562
|
+
/// Called by CoreAnimation to create a shadow copy of this layer
|
|
563
|
+
/// More details: https://developer.apple.com/documentation/quartzcore/calayer/1410842-init
|
|
564
|
+
- (nonnull instancetype)initWithLayer:(id _Nonnull)layer OBJC_DESIGNATED_INITIALIZER;
|
|
565
|
+
@end
|
|
566
|
+
|
|
567
|
+
|
|
568
|
+
SWIFT_CLASS("_TtC6Lottie19PreCompositionLayer")
|
|
569
|
+
@interface PreCompositionLayer : CompositionLayer
|
|
570
|
+
- (nonnull instancetype)initWithLayer:(id _Nonnull)layer OBJC_DESIGNATED_INITIALIZER;
|
|
571
|
+
- (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)_ OBJC_DESIGNATED_INITIALIZER;
|
|
572
|
+
@end
|
|
573
|
+
|
|
574
|
+
|
|
575
|
+
/// A CompositionLayer responsible for initializing and rendering shapes
|
|
576
|
+
SWIFT_CLASS("_TtC6Lottie21ShapeCompositionLayer")
|
|
577
|
+
@interface ShapeCompositionLayer : CompositionLayer
|
|
578
|
+
- (nonnull instancetype)initWithLayer:(id _Nonnull)layer OBJC_DESIGNATED_INITIALIZER;
|
|
579
|
+
- (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)_ OBJC_DESIGNATED_INITIALIZER;
|
|
580
|
+
@end
|
|
581
|
+
|
|
582
|
+
|
|
583
|
+
|
|
584
|
+
/// The base layer that holds Shapes and Shape Renderers
|
|
585
|
+
SWIFT_CLASS("_TtC6Lottie19ShapeContainerLayer")
|
|
586
|
+
@interface ShapeContainerLayer : CALayer
|
|
587
|
+
- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER;
|
|
588
|
+
- (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)_ OBJC_DESIGNATED_INITIALIZER;
|
|
589
|
+
- (nonnull instancetype)initWithLayer:(id _Nonnull)layer OBJC_DESIGNATED_INITIALIZER;
|
|
590
|
+
@end
|
|
591
|
+
|
|
592
|
+
|
|
593
|
+
/// A CALayer type that renders an array of <code>[ShapeItem]</code>s,
|
|
594
|
+
/// from a <code>Group</code> in a <code>ShapeLayerModel</code>.
|
|
595
|
+
SWIFT_CLASS("_TtC6Lottie14ShapeItemLayer")
|
|
596
|
+
@interface ShapeItemLayer : CALayer
|
|
597
|
+
- (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)_ OBJC_DESIGNATED_INITIALIZER;
|
|
598
|
+
/// Called by CoreAnimation to create a shadow copy of this layer
|
|
599
|
+
/// More details: https://developer.apple.com/documentation/quartzcore/calayer/1410842-init
|
|
600
|
+
- (nonnull instancetype)initWithLayer:(id _Nonnull)layer OBJC_DESIGNATED_INITIALIZER;
|
|
601
|
+
- (void)layoutSublayers;
|
|
602
|
+
- (nonnull instancetype)init SWIFT_UNAVAILABLE;
|
|
603
|
+
+ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable");
|
|
604
|
+
@end
|
|
605
|
+
|
|
606
|
+
|
|
607
|
+
|
|
608
|
+
/// The CALayer type responsible for rendering <code>ShapeLayerModel</code>s
|
|
609
|
+
SWIFT_CLASS("_TtC6Lottie10ShapeLayer")
|
|
610
|
+
@interface ShapeLayer : BaseCompositionLayer
|
|
611
|
+
- (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)_ OBJC_DESIGNATED_INITIALIZER;
|
|
612
|
+
/// Called by CoreAnimation to create a shadow copy of this layer
|
|
613
|
+
/// More details: https://developer.apple.com/documentation/quartzcore/calayer/1410842-init
|
|
614
|
+
- (nonnull instancetype)initWithLayer:(id _Nonnull)layer OBJC_DESIGNATED_INITIALIZER;
|
|
615
|
+
@end
|
|
616
|
+
|
|
617
|
+
|
|
618
|
+
/// The layer responsible for rendering shape objects
|
|
619
|
+
SWIFT_CLASS("_TtC6Lottie16ShapeRenderLayer")
|
|
620
|
+
@interface ShapeRenderLayer : ShapeContainerLayer
|
|
621
|
+
- (nonnull instancetype)initWithLayer:(id _Nonnull)layer OBJC_DESIGNATED_INITIALIZER;
|
|
622
|
+
- (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)_ OBJC_DESIGNATED_INITIALIZER;
|
|
623
|
+
- (void)drawInContext:(CGContextRef _Nonnull)ctx;
|
|
624
|
+
- (nonnull instancetype)init SWIFT_UNAVAILABLE;
|
|
625
|
+
+ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable");
|
|
626
|
+
@end
|
|
627
|
+
|
|
628
|
+
|
|
629
|
+
|
|
630
|
+
SWIFT_CLASS("_TtC6Lottie21SolidCompositionLayer")
|
|
631
|
+
@interface SolidCompositionLayer : CompositionLayer
|
|
632
|
+
- (nonnull instancetype)initWithLayer:(id _Nonnull)layer OBJC_DESIGNATED_INITIALIZER;
|
|
633
|
+
- (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)_ OBJC_DESIGNATED_INITIALIZER;
|
|
634
|
+
@end
|
|
635
|
+
|
|
636
|
+
|
|
637
|
+
SWIFT_CLASS("_TtC6Lottie10SolidLayer")
|
|
638
|
+
@interface SolidLayer : BaseCompositionLayer
|
|
639
|
+
- (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)_ OBJC_DESIGNATED_INITIALIZER;
|
|
640
|
+
/// Called by CoreAnimation to create a shadow copy of this layer
|
|
641
|
+
/// More details: https://developer.apple.com/documentation/quartzcore/calayer/1410842-init
|
|
642
|
+
- (nonnull instancetype)initWithLayer:(id _Nonnull)layer OBJC_DESIGNATED_INITIALIZER;
|
|
643
|
+
@end
|
|
644
|
+
|
|
645
|
+
|
|
646
|
+
SWIFT_CLASS("_TtC6Lottie20TextCompositionLayer")
|
|
647
|
+
@interface TextCompositionLayer : CompositionLayer
|
|
648
|
+
- (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)_ OBJC_DESIGNATED_INITIALIZER;
|
|
649
|
+
- (nonnull instancetype)initWithLayer:(id _Nonnull)layer OBJC_DESIGNATED_INITIALIZER;
|
|
650
|
+
@end
|
|
651
|
+
|
|
652
|
+
|
|
653
|
+
SWIFT_CLASS("_TtC6Lottie9TextLayer")
|
|
654
|
+
@interface TextLayer : CALayer
|
|
655
|
+
- (id <CAAction> _Nullable)actionForKey:(NSString * _Nonnull)_ SWIFT_WARN_UNUSED_RESULT;
|
|
656
|
+
- (void)drawInContext:(CGContextRef _Nonnull)ctx;
|
|
657
|
+
- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER;
|
|
658
|
+
- (nonnull instancetype)initWithLayer:(id _Nonnull)layer OBJC_DESIGNATED_INITIALIZER;
|
|
659
|
+
- (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)coder OBJC_DESIGNATED_INITIALIZER;
|
|
660
|
+
@end
|
|
661
|
+
|
|
662
|
+
|
|
663
|
+
/// The CALayer type responsible for only rendering the <code>transform</code> of a <code>LayerModel</code>
|
|
664
|
+
SWIFT_CLASS("_TtC6Lottie14TransformLayer")
|
|
665
|
+
@interface TransformLayer : BaseCompositionLayer
|
|
666
|
+
- (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)argument OBJC_DESIGNATED_INITIALIZER;
|
|
667
|
+
- (nonnull instancetype)initWithLayer:(id _Nonnull)layer OBJC_DESIGNATED_INITIALIZER;
|
|
668
|
+
@end
|
|
669
|
+
|
|
670
|
+
|
|
671
|
+
#if __has_attribute(external_source_symbol)
|
|
672
|
+
# pragma clang attribute pop
|
|
673
|
+
#endif
|
|
674
|
+
#pragma clang diagnostic pop
|
|
675
|
+
#endif
|
|
676
|
+
|
|
677
|
+
#elif defined(__x86_64__) && __x86_64__
|
|
678
|
+
// Generated by Apple Swift version 5.5.2 (swiftlang-1300.0.47.5 clang-1300.0.29.30)
|
|
679
|
+
#ifndef LOTTIE_SWIFT_H
|
|
680
|
+
#define LOTTIE_SWIFT_H
|
|
681
|
+
#pragma clang diagnostic push
|
|
682
|
+
#pragma clang diagnostic ignored "-Wgcc-compat"
|
|
683
|
+
|
|
684
|
+
#if !defined(__has_include)
|
|
685
|
+
# define __has_include(x) 0
|
|
686
|
+
#endif
|
|
687
|
+
#if !defined(__has_attribute)
|
|
688
|
+
# define __has_attribute(x) 0
|
|
689
|
+
#endif
|
|
690
|
+
#if !defined(__has_feature)
|
|
691
|
+
# define __has_feature(x) 0
|
|
692
|
+
#endif
|
|
693
|
+
#if !defined(__has_warning)
|
|
694
|
+
# define __has_warning(x) 0
|
|
695
|
+
#endif
|
|
696
|
+
|
|
697
|
+
#if __has_include(<swift/objc-prologue.h>)
|
|
698
|
+
# include <swift/objc-prologue.h>
|
|
699
|
+
#endif
|
|
700
|
+
|
|
701
|
+
#pragma clang diagnostic ignored "-Wauto-import"
|
|
702
|
+
#include <Foundation/Foundation.h>
|
|
703
|
+
#include <stdint.h>
|
|
704
|
+
#include <stddef.h>
|
|
705
|
+
#include <stdbool.h>
|
|
706
|
+
|
|
707
|
+
#if !defined(SWIFT_TYPEDEFS)
|
|
708
|
+
# define SWIFT_TYPEDEFS 1
|
|
709
|
+
# if __has_include(<uchar.h>)
|
|
710
|
+
# include <uchar.h>
|
|
711
|
+
# elif !defined(__cplusplus)
|
|
712
|
+
typedef uint_least16_t char16_t;
|
|
713
|
+
typedef uint_least32_t char32_t;
|
|
714
|
+
# endif
|
|
715
|
+
typedef float swift_float2 __attribute__((__ext_vector_type__(2)));
|
|
716
|
+
typedef float swift_float3 __attribute__((__ext_vector_type__(3)));
|
|
717
|
+
typedef float swift_float4 __attribute__((__ext_vector_type__(4)));
|
|
718
|
+
typedef double swift_double2 __attribute__((__ext_vector_type__(2)));
|
|
719
|
+
typedef double swift_double3 __attribute__((__ext_vector_type__(3)));
|
|
720
|
+
typedef double swift_double4 __attribute__((__ext_vector_type__(4)));
|
|
721
|
+
typedef int swift_int2 __attribute__((__ext_vector_type__(2)));
|
|
722
|
+
typedef int swift_int3 __attribute__((__ext_vector_type__(3)));
|
|
723
|
+
typedef int swift_int4 __attribute__((__ext_vector_type__(4)));
|
|
724
|
+
typedef unsigned int swift_uint2 __attribute__((__ext_vector_type__(2)));
|
|
725
|
+
typedef unsigned int swift_uint3 __attribute__((__ext_vector_type__(3)));
|
|
726
|
+
typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4)));
|
|
727
|
+
#endif
|
|
728
|
+
|
|
729
|
+
#if !defined(SWIFT_PASTE)
|
|
730
|
+
# define SWIFT_PASTE_HELPER(x, y) x##y
|
|
731
|
+
# define SWIFT_PASTE(x, y) SWIFT_PASTE_HELPER(x, y)
|
|
732
|
+
#endif
|
|
733
|
+
#if !defined(SWIFT_METATYPE)
|
|
734
|
+
# define SWIFT_METATYPE(X) Class
|
|
735
|
+
#endif
|
|
736
|
+
#if !defined(SWIFT_CLASS_PROPERTY)
|
|
737
|
+
# if __has_feature(objc_class_property)
|
|
738
|
+
# define SWIFT_CLASS_PROPERTY(...) __VA_ARGS__
|
|
739
|
+
# else
|
|
740
|
+
# define SWIFT_CLASS_PROPERTY(...)
|
|
741
|
+
# endif
|
|
742
|
+
#endif
|
|
743
|
+
|
|
744
|
+
#if __has_attribute(objc_runtime_name)
|
|
745
|
+
# define SWIFT_RUNTIME_NAME(X) __attribute__((objc_runtime_name(X)))
|
|
746
|
+
#else
|
|
747
|
+
# define SWIFT_RUNTIME_NAME(X)
|
|
748
|
+
#endif
|
|
749
|
+
#if __has_attribute(swift_name)
|
|
750
|
+
# define SWIFT_COMPILE_NAME(X) __attribute__((swift_name(X)))
|
|
751
|
+
#else
|
|
752
|
+
# define SWIFT_COMPILE_NAME(X)
|
|
753
|
+
#endif
|
|
754
|
+
#if __has_attribute(objc_method_family)
|
|
755
|
+
# define SWIFT_METHOD_FAMILY(X) __attribute__((objc_method_family(X)))
|
|
756
|
+
#else
|
|
757
|
+
# define SWIFT_METHOD_FAMILY(X)
|
|
758
|
+
#endif
|
|
759
|
+
#if __has_attribute(noescape)
|
|
760
|
+
# define SWIFT_NOESCAPE __attribute__((noescape))
|
|
761
|
+
#else
|
|
762
|
+
# define SWIFT_NOESCAPE
|
|
763
|
+
#endif
|
|
764
|
+
#if __has_attribute(ns_consumed)
|
|
765
|
+
# define SWIFT_RELEASES_ARGUMENT __attribute__((ns_consumed))
|
|
766
|
+
#else
|
|
767
|
+
# define SWIFT_RELEASES_ARGUMENT
|
|
768
|
+
#endif
|
|
769
|
+
#if __has_attribute(warn_unused_result)
|
|
770
|
+
# define SWIFT_WARN_UNUSED_RESULT __attribute__((warn_unused_result))
|
|
771
|
+
#else
|
|
772
|
+
# define SWIFT_WARN_UNUSED_RESULT
|
|
773
|
+
#endif
|
|
774
|
+
#if __has_attribute(noreturn)
|
|
775
|
+
# define SWIFT_NORETURN __attribute__((noreturn))
|
|
776
|
+
#else
|
|
777
|
+
# define SWIFT_NORETURN
|
|
778
|
+
#endif
|
|
779
|
+
#if !defined(SWIFT_CLASS_EXTRA)
|
|
780
|
+
# define SWIFT_CLASS_EXTRA
|
|
781
|
+
#endif
|
|
782
|
+
#if !defined(SWIFT_PROTOCOL_EXTRA)
|
|
783
|
+
# define SWIFT_PROTOCOL_EXTRA
|
|
784
|
+
#endif
|
|
785
|
+
#if !defined(SWIFT_ENUM_EXTRA)
|
|
786
|
+
# define SWIFT_ENUM_EXTRA
|
|
787
|
+
#endif
|
|
788
|
+
#if !defined(SWIFT_CLASS)
|
|
789
|
+
# if __has_attribute(objc_subclassing_restricted)
|
|
790
|
+
# define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_CLASS_EXTRA
|
|
791
|
+
# define SWIFT_CLASS_NAMED(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA
|
|
792
|
+
# else
|
|
793
|
+
# define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA
|
|
794
|
+
# define SWIFT_CLASS_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA
|
|
795
|
+
# endif
|
|
796
|
+
#endif
|
|
797
|
+
#if !defined(SWIFT_RESILIENT_CLASS)
|
|
798
|
+
# if __has_attribute(objc_class_stub)
|
|
799
|
+
# define SWIFT_RESILIENT_CLASS(SWIFT_NAME) SWIFT_CLASS(SWIFT_NAME) __attribute__((objc_class_stub))
|
|
800
|
+
# define SWIFT_RESILIENT_CLASS_NAMED(SWIFT_NAME) __attribute__((objc_class_stub)) SWIFT_CLASS_NAMED(SWIFT_NAME)
|
|
801
|
+
# else
|
|
802
|
+
# define SWIFT_RESILIENT_CLASS(SWIFT_NAME) SWIFT_CLASS(SWIFT_NAME)
|
|
803
|
+
# define SWIFT_RESILIENT_CLASS_NAMED(SWIFT_NAME) SWIFT_CLASS_NAMED(SWIFT_NAME)
|
|
804
|
+
# endif
|
|
805
|
+
#endif
|
|
806
|
+
|
|
807
|
+
#if !defined(SWIFT_PROTOCOL)
|
|
808
|
+
# define SWIFT_PROTOCOL(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA
|
|
809
|
+
# define SWIFT_PROTOCOL_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA
|
|
810
|
+
#endif
|
|
811
|
+
|
|
812
|
+
#if !defined(SWIFT_EXTENSION)
|
|
813
|
+
# define SWIFT_EXTENSION(M) SWIFT_PASTE(M##_Swift_, __LINE__)
|
|
814
|
+
#endif
|
|
815
|
+
|
|
816
|
+
#if !defined(OBJC_DESIGNATED_INITIALIZER)
|
|
817
|
+
# if __has_attribute(objc_designated_initializer)
|
|
818
|
+
# define OBJC_DESIGNATED_INITIALIZER __attribute__((objc_designated_initializer))
|
|
819
|
+
# else
|
|
820
|
+
# define OBJC_DESIGNATED_INITIALIZER
|
|
821
|
+
# endif
|
|
822
|
+
#endif
|
|
823
|
+
#if !defined(SWIFT_ENUM_ATTR)
|
|
824
|
+
# if defined(__has_attribute) && __has_attribute(enum_extensibility)
|
|
825
|
+
# define SWIFT_ENUM_ATTR(_extensibility) __attribute__((enum_extensibility(_extensibility)))
|
|
826
|
+
# else
|
|
827
|
+
# define SWIFT_ENUM_ATTR(_extensibility)
|
|
828
|
+
# endif
|
|
829
|
+
#endif
|
|
830
|
+
#if !defined(SWIFT_ENUM)
|
|
831
|
+
# define SWIFT_ENUM(_type, _name, _extensibility) enum _name : _type _name; enum SWIFT_ENUM_ATTR(_extensibility) SWIFT_ENUM_EXTRA _name : _type
|
|
832
|
+
# if __has_feature(generalized_swift_name)
|
|
833
|
+
# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME, _extensibility) enum _name : _type _name SWIFT_COMPILE_NAME(SWIFT_NAME); enum SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_ENUM_ATTR(_extensibility) SWIFT_ENUM_EXTRA _name : _type
|
|
834
|
+
# else
|
|
835
|
+
# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME, _extensibility) SWIFT_ENUM(_type, _name, _extensibility)
|
|
836
|
+
# endif
|
|
837
|
+
#endif
|
|
838
|
+
#if !defined(SWIFT_UNAVAILABLE)
|
|
839
|
+
# define SWIFT_UNAVAILABLE __attribute__((unavailable))
|
|
840
|
+
#endif
|
|
841
|
+
#if !defined(SWIFT_UNAVAILABLE_MSG)
|
|
842
|
+
# define SWIFT_UNAVAILABLE_MSG(msg) __attribute__((unavailable(msg)))
|
|
843
|
+
#endif
|
|
844
|
+
#if !defined(SWIFT_AVAILABILITY)
|
|
845
|
+
# define SWIFT_AVAILABILITY(plat, ...) __attribute__((availability(plat, __VA_ARGS__)))
|
|
846
|
+
#endif
|
|
847
|
+
#if !defined(SWIFT_WEAK_IMPORT)
|
|
848
|
+
# define SWIFT_WEAK_IMPORT __attribute__((weak_import))
|
|
849
|
+
#endif
|
|
850
|
+
#if !defined(SWIFT_DEPRECATED)
|
|
851
|
+
# define SWIFT_DEPRECATED __attribute__((deprecated))
|
|
852
|
+
#endif
|
|
853
|
+
#if !defined(SWIFT_DEPRECATED_MSG)
|
|
854
|
+
# define SWIFT_DEPRECATED_MSG(...) __attribute__((deprecated(__VA_ARGS__)))
|
|
855
|
+
#endif
|
|
856
|
+
#if __has_feature(attribute_diagnose_if_objc)
|
|
857
|
+
# define SWIFT_DEPRECATED_OBJC(Msg) __attribute__((diagnose_if(1, Msg, "warning")))
|
|
858
|
+
#else
|
|
859
|
+
# define SWIFT_DEPRECATED_OBJC(Msg) SWIFT_DEPRECATED_MSG(Msg)
|
|
860
|
+
#endif
|
|
861
|
+
#if !defined(IBSegueAction)
|
|
862
|
+
# define IBSegueAction
|
|
863
|
+
#endif
|
|
864
|
+
#if __has_feature(modules)
|
|
865
|
+
#if __has_warning("-Watimport-in-framework-header")
|
|
866
|
+
#pragma clang diagnostic ignored "-Watimport-in-framework-header"
|
|
867
|
+
#endif
|
|
868
|
+
@import CoreGraphics;
|
|
869
|
+
@import Foundation;
|
|
870
|
+
@import ObjectiveC;
|
|
871
|
+
@import QuartzCore;
|
|
872
|
+
@import UIKit;
|
|
873
|
+
#endif
|
|
874
|
+
|
|
875
|
+
#pragma clang diagnostic ignored "-Wproperty-attribute-mismatch"
|
|
876
|
+
#pragma clang diagnostic ignored "-Wduplicate-method-arg"
|
|
877
|
+
#if __has_warning("-Wpragma-clang-attribute")
|
|
878
|
+
# pragma clang diagnostic ignored "-Wpragma-clang-attribute"
|
|
879
|
+
#endif
|
|
880
|
+
#pragma clang diagnostic ignored "-Wunknown-pragmas"
|
|
881
|
+
#pragma clang diagnostic ignored "-Wnullability"
|
|
882
|
+
|
|
883
|
+
#if __has_attribute(external_source_symbol)
|
|
884
|
+
# pragma push_macro("any")
|
|
885
|
+
# undef any
|
|
886
|
+
# pragma clang attribute push(__attribute__((external_source_symbol(language="Swift", defined_in="Lottie",generated_declaration))), apply_to=any(function,enum,objc_interface,objc_category,objc_protocol))
|
|
887
|
+
# pragma pop_macro("any")
|
|
888
|
+
#endif
|
|
889
|
+
|
|
890
|
+
@class NSCoder;
|
|
891
|
+
@class NSNumber;
|
|
892
|
+
@class UITouch;
|
|
893
|
+
@class UIEvent;
|
|
894
|
+
|
|
895
|
+
/// Lottie comes prepacked with a two Animated Controls, <code>AnimatedSwitch</code> and
|
|
896
|
+
/// <code>AnimatedButton</code>. Both of these controls are built on top of <code>AnimatedControl</code>
|
|
897
|
+
/// <code>AnimatedControl</code> is a subclass of <code>UIControl</code> that provides an interactive
|
|
898
|
+
/// mechanism for controlling the visual state of an animation in response to
|
|
899
|
+
/// user actions.
|
|
900
|
+
/// The <code>AnimatedControl</code> will show and hide layers depending on the current
|
|
901
|
+
/// <code>UIControl.State</code> of the control.
|
|
902
|
+
/// Users of <code>AnimationControl</code> can set a Layer Name for each <code>UIControl.State</code>.
|
|
903
|
+
/// When the state is change the <code>AnimationControl</code> will change the visibility
|
|
904
|
+
/// of its layers.
|
|
905
|
+
/// NOTE: Do not initialize directly. This is intended to be subclassed.
|
|
906
|
+
SWIFT_CLASS("_TtC6Lottie15AnimatedControl")
|
|
907
|
+
@interface AnimatedControl : UIControl
|
|
908
|
+
- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER;
|
|
909
|
+
- (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)aDecoder OBJC_DESIGNATED_INITIALIZER;
|
|
910
|
+
@property (nonatomic, getter=isEnabled) BOOL enabled;
|
|
911
|
+
@property (nonatomic, getter=isSelected) BOOL selected;
|
|
912
|
+
@property (nonatomic, getter=isHighlighted) BOOL highlighted;
|
|
913
|
+
@property (nonatomic, readonly) CGSize intrinsicContentSize;
|
|
914
|
+
- (BOOL)beginTrackingWithTouch:(UITouch * _Nonnull)touch withEvent:(UIEvent * _Nullable)event SWIFT_WARN_UNUSED_RESULT;
|
|
915
|
+
- (BOOL)continueTrackingWithTouch:(UITouch * _Nonnull)touch withEvent:(UIEvent * _Nullable)event SWIFT_WARN_UNUSED_RESULT;
|
|
916
|
+
- (void)endTrackingWithTouch:(UITouch * _Nullable)touch withEvent:(UIEvent * _Nullable)event;
|
|
917
|
+
- (void)cancelTrackingWithEvent:(UIEvent * _Nullable)event;
|
|
918
|
+
- (nonnull instancetype)initWithFrame:(CGRect)frame SWIFT_UNAVAILABLE;
|
|
919
|
+
@end
|
|
920
|
+
|
|
921
|
+
|
|
922
|
+
/// An interactive button that plays an animation when pressed.
|
|
923
|
+
SWIFT_CLASS("_TtC6Lottie14AnimatedButton")
|
|
924
|
+
@interface AnimatedButton : AnimatedControl
|
|
925
|
+
- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER;
|
|
926
|
+
- (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)aDecoder OBJC_DESIGNATED_INITIALIZER;
|
|
927
|
+
- (BOOL)beginTrackingWithTouch:(UITouch * _Nonnull)touch withEvent:(UIEvent * _Nullable)event SWIFT_WARN_UNUSED_RESULT;
|
|
928
|
+
- (void)endTrackingWithTouch:(UITouch * _Nullable)touch withEvent:(UIEvent * _Nullable)event;
|
|
929
|
+
@end
|
|
930
|
+
|
|
931
|
+
|
|
932
|
+
|
|
933
|
+
/// An interactive switch with an ‘On’ and ‘Off’ state. When the user taps on the
|
|
934
|
+
/// switch the state is toggled and the appropriate animation is played.
|
|
935
|
+
/// Both the ‘On’ and ‘Off’ have an animation play range associated with their state.
|
|
936
|
+
SWIFT_CLASS("_TtC6Lottie14AnimatedSwitch")
|
|
937
|
+
@interface AnimatedSwitch : AnimatedControl
|
|
938
|
+
- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER;
|
|
939
|
+
- (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)aDecoder OBJC_DESIGNATED_INITIALIZER;
|
|
940
|
+
- (void)endTrackingWithTouch:(UITouch * _Nullable)touch withEvent:(UIEvent * _Nullable)event;
|
|
941
|
+
@end
|
|
942
|
+
|
|
943
|
+
@class CAAnimation;
|
|
944
|
+
|
|
945
|
+
SWIFT_CLASS("_TtC6Lottie27AnimationCompletionDelegate")
|
|
946
|
+
@interface AnimationCompletionDelegate : NSObject <CAAnimationDelegate>
|
|
947
|
+
- (void)animationDidStop:(CAAnimation * _Nonnull)anim finished:(BOOL)flag;
|
|
948
|
+
- (nonnull instancetype)init SWIFT_UNAVAILABLE;
|
|
949
|
+
+ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable");
|
|
950
|
+
@end
|
|
951
|
+
|
|
952
|
+
@class NSString;
|
|
953
|
+
@protocol CAAction;
|
|
954
|
+
|
|
955
|
+
/// The base animation container.
|
|
956
|
+
/// This layer holds a single composition container and allows for animation of
|
|
957
|
+
/// the currentFrame property.
|
|
958
|
+
SWIFT_CLASS("_TtC6Lottie18AnimationContainer")
|
|
959
|
+
@interface AnimationContainer : CALayer
|
|
960
|
+
/// For CAAnimation Use
|
|
961
|
+
- (nonnull instancetype)initWithLayer:(id _Nonnull)layer OBJC_DESIGNATED_INITIALIZER;
|
|
962
|
+
- (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)_ OBJC_DESIGNATED_INITIALIZER;
|
|
963
|
+
+ (BOOL)needsDisplayForKey:(NSString * _Nonnull)key SWIFT_WARN_UNUSED_RESULT;
|
|
964
|
+
- (id <CAAction> _Nullable)actionForKey:(NSString * _Nonnull)event SWIFT_WARN_UNUSED_RESULT;
|
|
965
|
+
- (void)display;
|
|
966
|
+
/// The animatable Current Frame Property
|
|
967
|
+
@property (nonatomic) CGFloat currentFrame;
|
|
968
|
+
- (nonnull instancetype)init SWIFT_UNAVAILABLE;
|
|
969
|
+
+ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable");
|
|
970
|
+
@end
|
|
971
|
+
|
|
972
|
+
|
|
973
|
+
|
|
974
|
+
/// A view that can be added to a keypath of an AnimationView
|
|
975
|
+
SWIFT_CLASS("_TtC6Lottie16AnimationSubview")
|
|
976
|
+
@interface AnimationSubview : UIView
|
|
977
|
+
- (nonnull instancetype)initWithFrame:(CGRect)frame OBJC_DESIGNATED_INITIALIZER;
|
|
978
|
+
- (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)coder OBJC_DESIGNATED_INITIALIZER;
|
|
979
|
+
@end
|
|
980
|
+
|
|
981
|
+
|
|
982
|
+
/// The base view for <code>AnimationView</code> on iOS, tvOS, watchOS, and macCatalyst.
|
|
983
|
+
/// Enables the <code>AnimationView</code> implementation to be shared across platforms.
|
|
984
|
+
SWIFT_CLASS("_TtC6Lottie17AnimationViewBase")
|
|
985
|
+
@interface AnimationViewBase : UIView
|
|
986
|
+
@property (nonatomic) UIViewContentMode contentMode;
|
|
987
|
+
- (void)didMoveToWindow;
|
|
988
|
+
- (void)layoutSubviews;
|
|
989
|
+
- (void)animationWillMoveToBackground;
|
|
990
|
+
- (void)animationWillEnterForeground;
|
|
991
|
+
- (nonnull instancetype)initWithFrame:(CGRect)frame OBJC_DESIGNATED_INITIALIZER;
|
|
992
|
+
- (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)coder OBJC_DESIGNATED_INITIALIZER;
|
|
993
|
+
@end
|
|
994
|
+
|
|
995
|
+
|
|
996
|
+
IB_DESIGNABLE
|
|
997
|
+
SWIFT_CLASS("_TtC6Lottie13AnimationView")
|
|
998
|
+
@interface AnimationView : AnimationViewBase
|
|
999
|
+
- (nonnull instancetype)initWithFrame:(CGRect)_ OBJC_DESIGNATED_INITIALIZER;
|
|
1000
|
+
- (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)aDecoder OBJC_DESIGNATED_INITIALIZER;
|
|
1001
|
+
@property (nonatomic, readonly) CGSize intrinsicContentSize;
|
|
1002
|
+
/// Set animation name from Interface Builder
|
|
1003
|
+
@property (nonatomic, copy) IBInspectable NSString * _Nullable animationName;
|
|
1004
|
+
- (void)animationWillMoveToBackground;
|
|
1005
|
+
- (void)animationWillEnterForeground;
|
|
1006
|
+
@end
|
|
1007
|
+
|
|
1008
|
+
|
|
1009
|
+
|
|
1010
|
+
|
|
1011
|
+
/// The base type of <code>AnimationLayer</code> that can contain other <code>AnimationLayer</code>s
|
|
1012
|
+
SWIFT_CLASS("_TtC6Lottie20BaseCompositionLayer")
|
|
1013
|
+
@interface BaseCompositionLayer : CALayer
|
|
1014
|
+
- (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)_ OBJC_DESIGNATED_INITIALIZER;
|
|
1015
|
+
/// Called by CoreAnimation to create a shadow copy of this layer
|
|
1016
|
+
/// More details: https://developer.apple.com/documentation/quartzcore/calayer/1410842-init
|
|
1017
|
+
- (nonnull instancetype)initWithLayer:(id _Nonnull)layer OBJC_DESIGNATED_INITIALIZER;
|
|
1018
|
+
- (void)layoutSublayers;
|
|
1019
|
+
- (nonnull instancetype)init SWIFT_UNAVAILABLE;
|
|
1020
|
+
+ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable");
|
|
1021
|
+
@end
|
|
1022
|
+
|
|
1023
|
+
|
|
1024
|
+
|
|
1025
|
+
|
|
1026
|
+
|
|
1027
|
+
|
|
1028
|
+
|
|
1029
|
+
|
|
1030
|
+
|
|
1031
|
+
|
|
1032
|
+
|
|
1033
|
+
|
|
1034
|
+
|
|
1035
|
+
|
|
1036
|
+
|
|
1037
|
+
|
|
1038
|
+
|
|
1039
|
+
@class NSBundle;
|
|
1040
|
+
|
|
1041
|
+
/// An Objective-C compatible wrapper around Lottie’s Animation class.
|
|
1042
|
+
/// Use in tandem with CompatibleAnimationView when using Lottie in Objective-C
|
|
1043
|
+
SWIFT_CLASS("_TtC6Lottie19CompatibleAnimation")
|
|
1044
|
+
@interface CompatibleAnimation : NSObject
|
|
1045
|
+
- (nonnull instancetype)initWithName:(NSString * _Nonnull)name bundle:(NSBundle * _Nonnull)bundle OBJC_DESIGNATED_INITIALIZER;
|
|
1046
|
+
+ (CompatibleAnimation * _Nonnull)named:(NSString * _Nonnull)name SWIFT_WARN_UNUSED_RESULT;
|
|
1047
|
+
- (nonnull instancetype)init SWIFT_UNAVAILABLE;
|
|
1048
|
+
+ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable");
|
|
1049
|
+
@end
|
|
1050
|
+
|
|
1051
|
+
|
|
1052
|
+
/// An Objective-C compatible wrapper around Lottie’s AnimationKeypath
|
|
1053
|
+
SWIFT_CLASS("_TtC6Lottie26CompatibleAnimationKeypath")
|
|
1054
|
+
@interface CompatibleAnimationKeypath : NSObject
|
|
1055
|
+
/// Creates a keypath from a dot separated string. The string is separated by “.”
|
|
1056
|
+
- (nonnull instancetype)initWithKeypath:(NSString * _Nonnull)keypath OBJC_DESIGNATED_INITIALIZER;
|
|
1057
|
+
/// Creates a keypath from a list of strings.
|
|
1058
|
+
- (nonnull instancetype)initWithKeys:(NSArray<NSString *> * _Nonnull)keys OBJC_DESIGNATED_INITIALIZER;
|
|
1059
|
+
- (nonnull instancetype)init SWIFT_UNAVAILABLE;
|
|
1060
|
+
+ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable");
|
|
1061
|
+
@end
|
|
1062
|
+
|
|
1063
|
+
@class UIColor;
|
|
1064
|
+
|
|
1065
|
+
/// An Objective-C compatible wrapper around Lottie’s AnimationView.
|
|
1066
|
+
SWIFT_CLASS("_TtC6Lottie23CompatibleAnimationView")
|
|
1067
|
+
@interface CompatibleAnimationView : UIView
|
|
1068
|
+
- (nonnull instancetype)initWithCompatibleAnimation:(CompatibleAnimation * _Nonnull)compatibleAnimation OBJC_DESIGNATED_INITIALIZER;
|
|
1069
|
+
- (nonnull instancetype)initWithFrame:(CGRect)frame OBJC_DESIGNATED_INITIALIZER;
|
|
1070
|
+
- (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)_ OBJC_DESIGNATED_INITIALIZER;
|
|
1071
|
+
@property (nonatomic, strong) CompatibleAnimation * _Nullable compatibleAnimation;
|
|
1072
|
+
@property (nonatomic) CGFloat loopAnimationCount;
|
|
1073
|
+
@property (nonatomic) UIViewContentMode contentMode;
|
|
1074
|
+
@property (nonatomic) BOOL shouldRasterizeWhenIdle;
|
|
1075
|
+
@property (nonatomic) CGFloat currentProgress;
|
|
1076
|
+
@property (nonatomic) NSTimeInterval currentTime;
|
|
1077
|
+
@property (nonatomic) CGFloat currentFrame;
|
|
1078
|
+
@property (nonatomic, readonly) CGFloat realtimeAnimationFrame;
|
|
1079
|
+
@property (nonatomic, readonly) CGFloat realtimeAnimationProgress;
|
|
1080
|
+
@property (nonatomic) CGFloat animationSpeed;
|
|
1081
|
+
@property (nonatomic) BOOL respectAnimationFrameRate;
|
|
1082
|
+
@property (nonatomic, readonly) BOOL isAnimationPlaying;
|
|
1083
|
+
- (void)play;
|
|
1084
|
+
- (void)playWithCompletion:(void (^ _Nullable)(BOOL))completion;
|
|
1085
|
+
- (void)playFromProgress:(CGFloat)fromProgress toProgress:(CGFloat)toProgress completion:(void (^ _Nullable)(BOOL))completion;
|
|
1086
|
+
- (void)playFromFrame:(CGFloat)fromFrame toFrame:(CGFloat)toFrame completion:(void (^ _Nullable)(BOOL))completion;
|
|
1087
|
+
- (void)playFromMarker:(NSString * _Nonnull)fromMarker toMarker:(NSString * _Nonnull)toMarker completion:(void (^ _Nullable)(BOOL))completion;
|
|
1088
|
+
- (void)stop;
|
|
1089
|
+
- (void)pause;
|
|
1090
|
+
- (void)reloadImages;
|
|
1091
|
+
- (void)forceDisplayUpdate;
|
|
1092
|
+
- (id _Nullable)getValueFor:(CompatibleAnimationKeypath * _Nonnull)keypath atFrame:(CGFloat)atFrame SWIFT_WARN_UNUSED_RESULT;
|
|
1093
|
+
- (void)logHierarchyKeypaths;
|
|
1094
|
+
- (void)setColorValue:(UIColor * _Nonnull)color forKeypath:(CompatibleAnimationKeypath * _Nonnull)keypath;
|
|
1095
|
+
- (UIColor * _Nullable)getColorValueFor:(CompatibleAnimationKeypath * _Nonnull)keypath atFrame:(CGFloat)atFrame SWIFT_WARN_UNUSED_RESULT;
|
|
1096
|
+
- (void)addSubview:(AnimationSubview * _Nonnull)subview forLayerAt:(CompatibleAnimationKeypath * _Nonnull)keypath;
|
|
1097
|
+
- (CGRect)convertWithRect:(CGRect)rect toLayerAt:(CompatibleAnimationKeypath * _Nullable)keypath SWIFT_WARN_UNUSED_RESULT;
|
|
1098
|
+
- (CGPoint)convertWithPoint:(CGPoint)point toLayerAt:(CompatibleAnimationKeypath * _Nullable)keypath SWIFT_WARN_UNUSED_RESULT;
|
|
1099
|
+
- (CGFloat)progressTimeForMarker:(NSString * _Nonnull)named SWIFT_WARN_UNUSED_RESULT;
|
|
1100
|
+
- (CGFloat)frameTimeForMarker:(NSString * _Nonnull)named SWIFT_WARN_UNUSED_RESULT;
|
|
1101
|
+
@end
|
|
1102
|
+
|
|
1103
|
+
|
|
1104
|
+
/// The base class for a child layer of CompositionContainer
|
|
1105
|
+
SWIFT_CLASS("_TtC6Lottie16CompositionLayer")
|
|
1106
|
+
@interface CompositionLayer : CALayer
|
|
1107
|
+
- (nonnull instancetype)initWithLayer:(id _Nonnull)layer OBJC_DESIGNATED_INITIALIZER;
|
|
1108
|
+
- (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)_ OBJC_DESIGNATED_INITIALIZER;
|
|
1109
|
+
- (nonnull instancetype)init SWIFT_UNAVAILABLE;
|
|
1110
|
+
+ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable");
|
|
1111
|
+
@end
|
|
1112
|
+
|
|
1113
|
+
|
|
1114
|
+
|
|
1115
|
+
SWIFT_CLASS("_TtC6Lottie10DebugLayer")
|
|
1116
|
+
@interface DebugLayer : CALayer
|
|
1117
|
+
- (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)_ OBJC_DESIGNATED_INITIALIZER;
|
|
1118
|
+
- (nonnull instancetype)init SWIFT_UNAVAILABLE;
|
|
1119
|
+
+ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable");
|
|
1120
|
+
- (nonnull instancetype)initWithLayer:(id _Nonnull)layer SWIFT_UNAVAILABLE;
|
|
1121
|
+
@end
|
|
1122
|
+
|
|
1123
|
+
|
|
1124
|
+
/// The root <code>CALayer</code> of the new rendering engine,
|
|
1125
|
+
/// which leverages the Core Animation render server to
|
|
1126
|
+
/// animate without executing on the main thread every frame.
|
|
1127
|
+
SWIFT_CLASS("_TtC6Lottie26ExperimentalAnimationLayer")
|
|
1128
|
+
@interface ExperimentalAnimationLayer : CALayer
|
|
1129
|
+
/// Called by CoreAnimation to create a shadow copy of this layer
|
|
1130
|
+
/// More details: https://developer.apple.com/documentation/quartzcore/calayer/1410842-init
|
|
1131
|
+
- (nonnull instancetype)initWithLayer:(id _Nonnull)layer OBJC_DESIGNATED_INITIALIZER;
|
|
1132
|
+
- (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)_ OBJC_DESIGNATED_INITIALIZER;
|
|
1133
|
+
- (void)layoutSublayers;
|
|
1134
|
+
- (nonnull instancetype)init SWIFT_UNAVAILABLE;
|
|
1135
|
+
+ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable");
|
|
1136
|
+
@end
|
|
1137
|
+
|
|
1138
|
+
|
|
1139
|
+
|
|
1140
|
+
/// A <code>CAGradientLayer</code> subclass used to render a gradient <em>outside</em> the normal layer bounds
|
|
1141
|
+
/// <ul>
|
|
1142
|
+
/// <li>
|
|
1143
|
+
/// <code>GradientFill.startPoint</code> and <code>GradientFill.endPoint</code> are expressed
|
|
1144
|
+
/// with respect to the <code>bounds</code> of the <code>ShapeItemLayer</code>.
|
|
1145
|
+
/// </li>
|
|
1146
|
+
/// <li>
|
|
1147
|
+
/// The gradient itself is supposed to be rendered infinitely in all directions
|
|
1148
|
+
/// (e.g. including outside of <code>bounds</code>). This is because <code>ShapeItemLayer</code> paths
|
|
1149
|
+
/// don’t necessarily sit within the layer’s <code>bounds</code>.
|
|
1150
|
+
/// </li>
|
|
1151
|
+
/// <li>
|
|
1152
|
+
/// To support this, <code>GradientRenderLayer</code> tracks a <code>gradientReferenceBounds</code>
|
|
1153
|
+
/// that <code>startPoint</code> / <code>endPoint</code> are calculated relative to.
|
|
1154
|
+
/// The <em>actual</em> <code>bounds</code> of this layer is padded by a large amount so that
|
|
1155
|
+
/// the gradient can be drawn outside of the <code>gradientReferenceBounds</code>.
|
|
1156
|
+
/// </li>
|
|
1157
|
+
/// </ul>
|
|
1158
|
+
SWIFT_CLASS("_TtC6Lottie19GradientRenderLayer")
|
|
1159
|
+
@interface GradientRenderLayer : CAGradientLayer
|
|
1160
|
+
- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER;
|
|
1161
|
+
- (nonnull instancetype)initWithLayer:(id _Nonnull)layer OBJC_DESIGNATED_INITIALIZER;
|
|
1162
|
+
- (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)coder OBJC_DESIGNATED_INITIALIZER;
|
|
1163
|
+
@end
|
|
1164
|
+
|
|
1165
|
+
|
|
1166
|
+
|
|
1167
|
+
|
|
1168
|
+
SWIFT_CLASS("_TtC6Lottie21ImageCompositionLayer")
|
|
1169
|
+
@interface ImageCompositionLayer : CompositionLayer
|
|
1170
|
+
- (nonnull instancetype)initWithLayer:(id _Nonnull)layer OBJC_DESIGNATED_INITIALIZER;
|
|
1171
|
+
- (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)_ OBJC_DESIGNATED_INITIALIZER;
|
|
1172
|
+
@end
|
|
1173
|
+
|
|
1174
|
+
|
|
1175
|
+
/// The <code>CALayer</code> type responsible for rendering <code>ImageLayerModel</code>s
|
|
1176
|
+
SWIFT_CLASS("_TtC6Lottie10ImageLayer")
|
|
1177
|
+
@interface ImageLayer : BaseCompositionLayer
|
|
1178
|
+
- (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)_ OBJC_DESIGNATED_INITIALIZER;
|
|
1179
|
+
/// Called by CoreAnimation to create a shadow copy of this layer
|
|
1180
|
+
/// More details: https://developer.apple.com/documentation/quartzcore/calayer/1410842-init
|
|
1181
|
+
- (nonnull instancetype)initWithLayer:(id _Nonnull)layer OBJC_DESIGNATED_INITIALIZER;
|
|
1182
|
+
@end
|
|
1183
|
+
|
|
1184
|
+
|
|
1185
|
+
/// A layer that inverses the alpha output of its input layer.
|
|
1186
|
+
/// WARNING: This is experimental and probably not very performant.
|
|
1187
|
+
SWIFT_CLASS("_TtC6Lottie18InvertedMatteLayer")
|
|
1188
|
+
@interface InvertedMatteLayer : CALayer
|
|
1189
|
+
- (nonnull instancetype)initWithLayer:(id _Nonnull)layer OBJC_DESIGNATED_INITIALIZER;
|
|
1190
|
+
- (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)_ OBJC_DESIGNATED_INITIALIZER;
|
|
1191
|
+
- (void)drawInContext:(CGContextRef _Nonnull)ctx;
|
|
1192
|
+
- (nonnull instancetype)init SWIFT_UNAVAILABLE;
|
|
1193
|
+
+ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable");
|
|
1194
|
+
@end
|
|
1195
|
+
|
|
1196
|
+
|
|
1197
|
+
/// The CALayer type responsible for rendering the <code>Mask</code> of a <code>BaseCompositionLayer</code>
|
|
1198
|
+
SWIFT_CLASS("_TtC6Lottie20MaskCompositionLayer")
|
|
1199
|
+
@interface MaskCompositionLayer : CALayer
|
|
1200
|
+
- (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)_ OBJC_DESIGNATED_INITIALIZER;
|
|
1201
|
+
/// Called by CoreAnimation to create a shadow copy of this layer
|
|
1202
|
+
/// More details: https://developer.apple.com/documentation/quartzcore/calayer/1410842-init
|
|
1203
|
+
- (nonnull instancetype)initWithLayer:(id _Nonnull)layer OBJC_DESIGNATED_INITIALIZER;
|
|
1204
|
+
- (void)layoutSublayers;
|
|
1205
|
+
- (nonnull instancetype)init SWIFT_UNAVAILABLE;
|
|
1206
|
+
+ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable");
|
|
1207
|
+
@end
|
|
1208
|
+
|
|
1209
|
+
|
|
1210
|
+
@interface MaskCompositionLayer (SWIFT_EXTENSION(Lottie))
|
|
1211
|
+
@end
|
|
1212
|
+
|
|
1213
|
+
|
|
1214
|
+
|
|
1215
|
+
SWIFT_CLASS("_TtC6Lottie18MaskContainerLayer")
|
|
1216
|
+
@interface MaskContainerLayer : CALayer
|
|
1217
|
+
- (nonnull instancetype)initWithLayer:(id _Nonnull)layer OBJC_DESIGNATED_INITIALIZER;
|
|
1218
|
+
- (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)_ OBJC_DESIGNATED_INITIALIZER;
|
|
1219
|
+
- (nonnull instancetype)init SWIFT_UNAVAILABLE;
|
|
1220
|
+
+ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable");
|
|
1221
|
+
@end
|
|
1222
|
+
|
|
1223
|
+
|
|
1224
|
+
|
|
1225
|
+
SWIFT_CLASS("_TtC6Lottie20NullCompositionLayer")
|
|
1226
|
+
@interface NullCompositionLayer : CompositionLayer
|
|
1227
|
+
- (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)_ OBJC_DESIGNATED_INITIALIZER;
|
|
1228
|
+
- (nonnull instancetype)initWithLayer:(id _Nonnull)layer OBJC_DESIGNATED_INITIALIZER;
|
|
1229
|
+
@end
|
|
1230
|
+
|
|
1231
|
+
|
|
1232
|
+
|
|
1233
|
+
/// The <code>CALayer</code> type responsible for rendering <code>PreCompLayerModel</code>s
|
|
1234
|
+
SWIFT_CLASS("_TtC6Lottie12PreCompLayer")
|
|
1235
|
+
@interface PreCompLayer : BaseCompositionLayer
|
|
1236
|
+
- (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)_ OBJC_DESIGNATED_INITIALIZER;
|
|
1237
|
+
/// Called by CoreAnimation to create a shadow copy of this layer
|
|
1238
|
+
/// More details: https://developer.apple.com/documentation/quartzcore/calayer/1410842-init
|
|
1239
|
+
- (nonnull instancetype)initWithLayer:(id _Nonnull)layer OBJC_DESIGNATED_INITIALIZER;
|
|
1240
|
+
@end
|
|
1241
|
+
|
|
1242
|
+
|
|
1243
|
+
SWIFT_CLASS("_TtC6Lottie19PreCompositionLayer")
|
|
1244
|
+
@interface PreCompositionLayer : CompositionLayer
|
|
1245
|
+
- (nonnull instancetype)initWithLayer:(id _Nonnull)layer OBJC_DESIGNATED_INITIALIZER;
|
|
1246
|
+
- (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)_ OBJC_DESIGNATED_INITIALIZER;
|
|
1247
|
+
@end
|
|
1248
|
+
|
|
1249
|
+
|
|
1250
|
+
/// A CompositionLayer responsible for initializing and rendering shapes
|
|
1251
|
+
SWIFT_CLASS("_TtC6Lottie21ShapeCompositionLayer")
|
|
1252
|
+
@interface ShapeCompositionLayer : CompositionLayer
|
|
1253
|
+
- (nonnull instancetype)initWithLayer:(id _Nonnull)layer OBJC_DESIGNATED_INITIALIZER;
|
|
1254
|
+
- (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)_ OBJC_DESIGNATED_INITIALIZER;
|
|
1255
|
+
@end
|
|
1256
|
+
|
|
1257
|
+
|
|
1258
|
+
|
|
1259
|
+
/// The base layer that holds Shapes and Shape Renderers
|
|
1260
|
+
SWIFT_CLASS("_TtC6Lottie19ShapeContainerLayer")
|
|
1261
|
+
@interface ShapeContainerLayer : CALayer
|
|
1262
|
+
- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER;
|
|
1263
|
+
- (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)_ OBJC_DESIGNATED_INITIALIZER;
|
|
1264
|
+
- (nonnull instancetype)initWithLayer:(id _Nonnull)layer OBJC_DESIGNATED_INITIALIZER;
|
|
1265
|
+
@end
|
|
1266
|
+
|
|
1267
|
+
|
|
1268
|
+
/// A CALayer type that renders an array of <code>[ShapeItem]</code>s,
|
|
1269
|
+
/// from a <code>Group</code> in a <code>ShapeLayerModel</code>.
|
|
1270
|
+
SWIFT_CLASS("_TtC6Lottie14ShapeItemLayer")
|
|
1271
|
+
@interface ShapeItemLayer : CALayer
|
|
1272
|
+
- (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)_ OBJC_DESIGNATED_INITIALIZER;
|
|
1273
|
+
/// Called by CoreAnimation to create a shadow copy of this layer
|
|
1274
|
+
/// More details: https://developer.apple.com/documentation/quartzcore/calayer/1410842-init
|
|
1275
|
+
- (nonnull instancetype)initWithLayer:(id _Nonnull)layer OBJC_DESIGNATED_INITIALIZER;
|
|
1276
|
+
- (void)layoutSublayers;
|
|
1277
|
+
- (nonnull instancetype)init SWIFT_UNAVAILABLE;
|
|
1278
|
+
+ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable");
|
|
1279
|
+
@end
|
|
1280
|
+
|
|
1281
|
+
|
|
1282
|
+
|
|
1283
|
+
/// The CALayer type responsible for rendering <code>ShapeLayerModel</code>s
|
|
1284
|
+
SWIFT_CLASS("_TtC6Lottie10ShapeLayer")
|
|
1285
|
+
@interface ShapeLayer : BaseCompositionLayer
|
|
1286
|
+
- (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)_ OBJC_DESIGNATED_INITIALIZER;
|
|
1287
|
+
/// Called by CoreAnimation to create a shadow copy of this layer
|
|
1288
|
+
/// More details: https://developer.apple.com/documentation/quartzcore/calayer/1410842-init
|
|
1289
|
+
- (nonnull instancetype)initWithLayer:(id _Nonnull)layer OBJC_DESIGNATED_INITIALIZER;
|
|
1290
|
+
@end
|
|
1291
|
+
|
|
1292
|
+
|
|
1293
|
+
/// The layer responsible for rendering shape objects
|
|
1294
|
+
SWIFT_CLASS("_TtC6Lottie16ShapeRenderLayer")
|
|
1295
|
+
@interface ShapeRenderLayer : ShapeContainerLayer
|
|
1296
|
+
- (nonnull instancetype)initWithLayer:(id _Nonnull)layer OBJC_DESIGNATED_INITIALIZER;
|
|
1297
|
+
- (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)_ OBJC_DESIGNATED_INITIALIZER;
|
|
1298
|
+
- (void)drawInContext:(CGContextRef _Nonnull)ctx;
|
|
1299
|
+
- (nonnull instancetype)init SWIFT_UNAVAILABLE;
|
|
1300
|
+
+ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable");
|
|
1301
|
+
@end
|
|
1302
|
+
|
|
1303
|
+
|
|
1304
|
+
|
|
1305
|
+
SWIFT_CLASS("_TtC6Lottie21SolidCompositionLayer")
|
|
1306
|
+
@interface SolidCompositionLayer : CompositionLayer
|
|
1307
|
+
- (nonnull instancetype)initWithLayer:(id _Nonnull)layer OBJC_DESIGNATED_INITIALIZER;
|
|
1308
|
+
- (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)_ OBJC_DESIGNATED_INITIALIZER;
|
|
1309
|
+
@end
|
|
1310
|
+
|
|
1311
|
+
|
|
1312
|
+
SWIFT_CLASS("_TtC6Lottie10SolidLayer")
|
|
1313
|
+
@interface SolidLayer : BaseCompositionLayer
|
|
1314
|
+
- (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)_ OBJC_DESIGNATED_INITIALIZER;
|
|
1315
|
+
/// Called by CoreAnimation to create a shadow copy of this layer
|
|
1316
|
+
/// More details: https://developer.apple.com/documentation/quartzcore/calayer/1410842-init
|
|
1317
|
+
- (nonnull instancetype)initWithLayer:(id _Nonnull)layer OBJC_DESIGNATED_INITIALIZER;
|
|
1318
|
+
@end
|
|
1319
|
+
|
|
1320
|
+
|
|
1321
|
+
SWIFT_CLASS("_TtC6Lottie20TextCompositionLayer")
|
|
1322
|
+
@interface TextCompositionLayer : CompositionLayer
|
|
1323
|
+
- (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)_ OBJC_DESIGNATED_INITIALIZER;
|
|
1324
|
+
- (nonnull instancetype)initWithLayer:(id _Nonnull)layer OBJC_DESIGNATED_INITIALIZER;
|
|
1325
|
+
@end
|
|
1326
|
+
|
|
1327
|
+
|
|
1328
|
+
SWIFT_CLASS("_TtC6Lottie9TextLayer")
|
|
1329
|
+
@interface TextLayer : CALayer
|
|
1330
|
+
- (id <CAAction> _Nullable)actionForKey:(NSString * _Nonnull)_ SWIFT_WARN_UNUSED_RESULT;
|
|
1331
|
+
- (void)drawInContext:(CGContextRef _Nonnull)ctx;
|
|
1332
|
+
- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER;
|
|
1333
|
+
- (nonnull instancetype)initWithLayer:(id _Nonnull)layer OBJC_DESIGNATED_INITIALIZER;
|
|
1334
|
+
- (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)coder OBJC_DESIGNATED_INITIALIZER;
|
|
1335
|
+
@end
|
|
1336
|
+
|
|
1337
|
+
|
|
1338
|
+
/// The CALayer type responsible for only rendering the <code>transform</code> of a <code>LayerModel</code>
|
|
1339
|
+
SWIFT_CLASS("_TtC6Lottie14TransformLayer")
|
|
1340
|
+
@interface TransformLayer : BaseCompositionLayer
|
|
1341
|
+
- (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)argument OBJC_DESIGNATED_INITIALIZER;
|
|
1342
|
+
- (nonnull instancetype)initWithLayer:(id _Nonnull)layer OBJC_DESIGNATED_INITIALIZER;
|
|
1343
|
+
@end
|
|
1344
|
+
|
|
1345
|
+
|
|
1346
|
+
#if __has_attribute(external_source_symbol)
|
|
1347
|
+
# pragma clang attribute pop
|
|
1348
|
+
#endif
|
|
1349
|
+
#pragma clang diagnostic pop
|
|
1350
|
+
#endif
|
|
1351
|
+
|
|
1352
|
+
#endif
|