Skip to content

Commit

Permalink
fix blend-mode
Browse files Browse the repository at this point in the history
  • Loading branch information
Aidosmf committed Aug 29, 2024
1 parent bda29aa commit 404e17b
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 3 deletions.
5 changes: 5 additions & 0 deletions .changeset/twelve-turtles-hug.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@lottie-animation-community/lottie-types": patch
---

fix(blend-mode): include missing Add & HardMix"
6 changes: 4 additions & 2 deletions index.d.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*!
* @lottie-animation-community/lottie-types - v1.1.0
* Compiled Thu, 29 Aug 2024 12:18:22 UTC
* Compiled Thu, 29 Aug 2024 12:19:27 UTC
*
* Generated by an automated process. DO NOT EDIT!
*
Expand Down Expand Up @@ -36,7 +36,9 @@ declare namespace BlendMode {
| Hue
| Saturation
| Color
| Luminosity;
| Luminosity
| Add
| HardMix;

type Normal = 0;
type Multiply = 1;
Expand Down
4 changes: 3 additions & 1 deletion src/constants/blend-mode.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,9 @@ export declare namespace BlendMode {
| Hue
| Saturation
| Color
| Luminosity;
| Luminosity
| Add
| HardMix;

type Normal = 0;
type Multiply = 1;
Expand Down

0 comments on commit 404e17b

Please sign in to comment.