@feliperohdee/satori 0.0.12 → 0.0.13

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/README.md CHANGED
@@ -6,6 +6,7 @@ This fork extends the [original Satori](https://github.com/vercel/satori) with t
6
6
 
7
7
  - **`background-position` with keyword sizes** — correct positioning when combined with `background-size: cover`, `contain`, or `auto`
8
8
  - **`mix-blend-mode`** — full support
9
+ - **`backdrop-filter`** — simulated via SVG filter primitives (`blur`, `saturate`, `brightness`, `contrast`, `grayscale`). Uses `<use>` to reference background content with `feGaussianBlur` and `feOffset` edge-extension for consistent blur without transparent edges. Supports `mask-image` for blurred fades and `border-radius` on the clip path
9
10
 
10
11
  ## Overview
11
12
 
@@ -291,6 +292,12 @@ Satori uses the same Flexbox [layout engine](https://yogalayout.com) as React Na
291
292
  <td></td>
292
293
  </tr>
293
294
 
295
+ <tr>
296
+ <td colspan="2"><code>backdropFilter</code></td>
297
+ <td>Supported (<code>blur</code>, <code>saturate</code>, <code>brightness</code>, <code>contrast</code>, <code>grayscale</code>). Works with <code>maskImage</code> for faded blur effects</td>
298
+ <td></td>
299
+ </tr>
300
+
294
301
  <tr>
295
302
  <td colspan="2"><code>mixBlendMode</code></td>
296
303
  <td>Supported</td>