@furystack/shades-lottie 8.0.11 → 9.0.1
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 +24 -0
- package/README.md +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,29 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [9.0.1] - 2026-03-10
|
|
4
|
+
|
|
5
|
+
### ⬆️ Dependencies
|
|
6
|
+
|
|
7
|
+
- Bumped `@furystack/shades` dependency
|
|
8
|
+
- Updated `@furystack/core` dependency to the new major version
|
|
9
|
+
|
|
10
|
+
## [9.0.0] - 2026-03-07
|
|
11
|
+
|
|
12
|
+
### ⬆️ Dependencies
|
|
13
|
+
|
|
14
|
+
- Updated internal FuryStack dependencies
|
|
15
|
+
- Updated `@furystack/shades` dependency
|
|
16
|
+
|
|
17
|
+
### 💥 Breaking Changes
|
|
18
|
+
|
|
19
|
+
### `shadowDomName` renamed to `customElementName` in Shade component API
|
|
20
|
+
|
|
21
|
+
Shade components that use the Lottie player now require `customElementName` instead of `shadowDomName`. This is a breaking change inherited from `@furystack/shades`.
|
|
22
|
+
|
|
23
|
+
### 📚 Documentation
|
|
24
|
+
|
|
25
|
+
- Updated README examples to use `customElementName`
|
|
26
|
+
|
|
3
27
|
## [8.0.11] - 2026-03-06
|
|
4
28
|
|
|
5
29
|
### ⬆️ 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
|
-
|
|
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": "
|
|
3
|
+
"version": "9.0.1",
|
|
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": "^
|
|
44
|
+
"@furystack/shades": "^13.1.0",
|
|
45
45
|
"@lottiefiles/lottie-player": "^2.0.12"
|
|
46
46
|
},
|
|
47
47
|
"engines": {
|