decky-frontend-lib
Advanced tools
Comparing version 0.9.0 to 0.9.1
@@ -6,3 +6,3 @@ import { FC, ImgHTMLAttributes } from 'react'; | ||
} | ||
declare const SuspensefulImage: FC<SuspensefulImageProps>; | ||
export default SuspensefulImage; | ||
export declare const SuspensefulImage: FC<SuspensefulImageProps>; | ||
export {}; |
import { Spinner } from '../deck-components'; | ||
import { useEffect } from 'react'; | ||
import { useState } from 'react'; | ||
const SuspensefulImage = (props) => { | ||
export const SuspensefulImage = (props) => { | ||
const [loading, setLoading] = useState(true); | ||
@@ -26,2 +26,1 @@ const [error, setError] = useState(false); | ||
}; | ||
export default SuspensefulImage; |
{ | ||
"name": "decky-frontend-lib", | ||
"version": "0.9.0", | ||
"version": "0.9.1", | ||
"description": "A library for building decky plugins", | ||
@@ -5,0 +5,0 @@ "main": "dist/index.js", |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
68296
1405