@payfit/unity-illustrations 2.36.6 → 2.36.7
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@payfit/unity-illustrations",
|
|
3
|
-
"version": "2.36.
|
|
3
|
+
"version": "2.36.7",
|
|
4
4
|
"module": "./dist/esm/index.js",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"sideEffects": false,
|
|
@@ -35,7 +35,7 @@
|
|
|
35
35
|
},
|
|
36
36
|
"devDependencies": {
|
|
37
37
|
"@figma/code-connect": "1.4.3",
|
|
38
|
-
"@payfit/unity-themes": "2.36.
|
|
38
|
+
"@payfit/unity-themes": "2.36.7",
|
|
39
39
|
"@storybook/addon-a11y": "10.3.5",
|
|
40
40
|
"@storybook/addon-docs": "10.3.5",
|
|
41
41
|
"@storybook/addon-links": "10.3.5",
|
|
@@ -61,7 +61,7 @@
|
|
|
61
61
|
"@payfit/vite-configs": "0.0.0-use.local"
|
|
62
62
|
},
|
|
63
63
|
"peerDependencies": {
|
|
64
|
-
"@payfit/unity-themes": "2.36.
|
|
64
|
+
"@payfit/unity-themes": "2.36.7",
|
|
65
65
|
"react": "18.3.1",
|
|
66
66
|
"react-dom": "18.3.1"
|
|
67
67
|
},
|
|
@@ -22,11 +22,10 @@ export const illustratedIcon = uyTv({
|
|
|
22
22
|
},
|
|
23
23
|
})
|
|
24
24
|
|
|
25
|
-
interface IllustrationPropsCore
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
> {
|
|
25
|
+
interface IllustrationPropsCore extends Omit<
|
|
26
|
+
ImgHTMLAttributes<HTMLImageElement>,
|
|
27
|
+
'src' | 'children' | 'alt'
|
|
28
|
+
> {
|
|
30
29
|
/**
|
|
31
30
|
* The illustration asset to render. Must be imported from @payfit/unity-illustrations
|
|
32
31
|
*/
|