@justeattakeaway/pie-thumbnail 0.8.12 → 0.8.14
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
|
@@ -14,7 +14,7 @@ export declare type DefaultProps = ComponentDefaultProps<ThumbnailProps>;
|
|
|
14
14
|
|
|
15
15
|
export declare const defaultProps: DefaultProps;
|
|
16
16
|
|
|
17
|
-
export declare const PieThumbnail: React_2.ForwardRefExoticComponent<React_2.PropsWithoutRef<ThumbnailProps
|
|
17
|
+
export declare const PieThumbnail: React_2.ForwardRefExoticComponent<React_2.PropsWithChildren<Omit<React_2.PropsWithoutRef<ThumbnailProps>, "children">> & React_2.RefAttributes<PieThumbnail_2> & ReactBaseType>;
|
|
18
18
|
|
|
19
19
|
/**
|
|
20
20
|
* @tagname pie-thumbnail
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@justeattakeaway/pie-thumbnail",
|
|
3
3
|
"description": "PIE Design System Thumbnail built using Web Components",
|
|
4
|
-
"version": "0.8.
|
|
4
|
+
"version": "0.8.14",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
7
7
|
"url": "https://github.com/justeattakeaway/pie",
|
|
@@ -43,12 +43,12 @@
|
|
|
43
43
|
"devDependencies": {
|
|
44
44
|
"@custom-elements-manifest/analyzer": "0.9.0",
|
|
45
45
|
"@justeattakeaway/pie-components-config": "0.21.0",
|
|
46
|
-
"@justeattakeaway/pie-css": "0.26.
|
|
46
|
+
"@justeattakeaway/pie-css": "0.26.2",
|
|
47
47
|
"@justeattakeaway/pie-monorepo-utils": "0.7.0",
|
|
48
48
|
"cem-plugin-module-file-extensions": "0.0.5"
|
|
49
49
|
},
|
|
50
50
|
"dependencies": {
|
|
51
|
-
"@justeattakeaway/pie-webc-core": "6.0.
|
|
51
|
+
"@justeattakeaway/pie-webc-core": "6.0.2"
|
|
52
52
|
},
|
|
53
53
|
"volta": {
|
|
54
54
|
"extends": "../../../package.json"
|
package/src/react.ts
CHANGED
|
@@ -15,5 +15,5 @@ const PieThumbnailReact = createComponent({
|
|
|
15
15
|
|
|
16
16
|
type ReactBaseType = React.HTMLAttributes<HTMLElement>
|
|
17
17
|
|
|
18
|
-
export const PieThumbnail = PieThumbnailReact as React.ForwardRefExoticComponent<React.PropsWithoutRef<ThumbnailProps
|
|
18
|
+
export const PieThumbnail = PieThumbnailReact as React.ForwardRefExoticComponent<React.PropsWithChildren<Omit<React.PropsWithoutRef<ThumbnailProps>, 'children'>>
|
|
19
19
|
& React.RefAttributes<PieThumbnailLit> & ReactBaseType>;
|