@justeattakeaway/pie-lottie-player 0.3.2 → 0.3.3
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/dist/index.js +1 -1
- package/dist/react.d.ts +1 -1
- package/package.json +3 -3
- package/src/react.ts +1 -1
package/dist/index.js
CHANGED
package/dist/react.d.ts
CHANGED
|
@@ -42,7 +42,7 @@ export declare interface LottiePlayerProps {
|
|
|
42
42
|
direction?: AnimationDirection;
|
|
43
43
|
}
|
|
44
44
|
|
|
45
|
-
export declare const PieLottiePlayer: React_2.ForwardRefExoticComponent<React_2.PropsWithoutRef<LottiePlayerProps
|
|
45
|
+
export declare const PieLottiePlayer: React_2.ForwardRefExoticComponent<React_2.PropsWithChildren<Omit<React_2.PropsWithoutRef<LottiePlayerProps>, "children">> & React_2.RefAttributes<PieLottiePlayer_2> & ReactBaseType>;
|
|
46
46
|
|
|
47
47
|
/**
|
|
48
48
|
* @tagname pie-lottie-player
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@justeattakeaway/pie-lottie-player",
|
|
3
3
|
"description": "PIE Design System Lottie Player built using Web Components",
|
|
4
|
-
"version": "0.3.
|
|
4
|
+
"version": "0.3.3",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
7
7
|
"url": "https://github.com/justeattakeaway/pie",
|
|
@@ -41,12 +41,12 @@
|
|
|
41
41
|
"devDependencies": {
|
|
42
42
|
"@custom-elements-manifest/analyzer": "0.9.0",
|
|
43
43
|
"@justeattakeaway/pie-components-config": "0.21.0",
|
|
44
|
-
"@justeattakeaway/pie-css": "0.26.
|
|
44
|
+
"@justeattakeaway/pie-css": "0.26.2",
|
|
45
45
|
"@justeattakeaway/pie-monorepo-utils": "0.7.0",
|
|
46
46
|
"cem-plugin-module-file-extensions": "0.0.5"
|
|
47
47
|
},
|
|
48
48
|
"dependencies": {
|
|
49
|
-
"@justeattakeaway/pie-webc-core": "6.0.
|
|
49
|
+
"@justeattakeaway/pie-webc-core": "6.0.2",
|
|
50
50
|
"lottie-web": "5.12.2"
|
|
51
51
|
},
|
|
52
52
|
"volta": {
|
package/src/react.ts
CHANGED
|
@@ -15,5 +15,5 @@ const PieLottiePlayerReact = createComponent({
|
|
|
15
15
|
|
|
16
16
|
type ReactBaseType = React.HTMLAttributes<HTMLDivElement>
|
|
17
17
|
|
|
18
|
-
export const PieLottiePlayer = PieLottiePlayerReact as React.ForwardRefExoticComponent<React.PropsWithoutRef<LottiePlayerProps
|
|
18
|
+
export const PieLottiePlayer = PieLottiePlayerReact as React.ForwardRefExoticComponent<React.PropsWithChildren<Omit<React.PropsWithoutRef<LottiePlayerProps>, 'children'>>
|
|
19
19
|
& React.RefAttributes<PieLottiePlayerLit> & ReactBaseType>;
|