@furystack/shades-lottie 8.0.11 → 9.0.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/CHANGELOG.md CHANGED
@@ -1,5 +1,22 @@
1
1
  # Changelog
2
2
 
3
+ ## [9.0.0] - 2026-03-07
4
+
5
+ ### ⬆️ Dependencies
6
+
7
+ - Updated internal FuryStack dependencies
8
+ - Updated `@furystack/shades` dependency
9
+
10
+ ### 💥 Breaking Changes
11
+
12
+ ### `shadowDomName` renamed to `customElementName` in Shade component API
13
+
14
+ Shade components that use the Lottie player now require `customElementName` instead of `shadowDomName`. This is a breaking change inherited from `@furystack/shades`.
15
+
16
+ ### 📚 Documentation
17
+
18
+ - Updated README examples to use `customElementName`
19
+
3
20
  ## [8.0.11] - 2026-03-06
4
21
 
5
22
  ### ⬆️ Dependencies
package/README.md CHANGED
@@ -27,7 +27,7 @@ import '@furystack/shades-lottie'
27
27
  import { Shade, createComponent } from '@furystack/shades'
28
28
 
29
29
  const MyComponent = Shade({
30
- shadowDomName: 'my-animation',
30
+ customElementName: 'my-animation',
31
31
  render: () => (
32
32
  <lottie-player
33
33
  src="https://assets.lottiefiles.com/packages/lf20_example.json"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@furystack/shades-lottie",
3
- "version": "8.0.11",
3
+ "version": "9.0.0",
4
4
  "description": "Lottie animation player wrapper for FuryStack Shades",
5
5
  "type": "module",
6
6
  "scripts": {
@@ -41,7 +41,7 @@
41
41
  "vitest": "^4.0.18"
42
42
  },
43
43
  "dependencies": {
44
- "@furystack/shades": "^12.5.0",
44
+ "@furystack/shades": "^13.0.0",
45
45
  "@lottiefiles/lottie-player": "^2.0.12"
46
46
  },
47
47
  "engines": {