@worldcoin/idkit 0.2.5 → 0.2.6
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/build/components/AboutWorldID.d.ts +6 -0
- package/build/components/IDKitWidget/States/SelectMethodState.d.ts +2 -0
- package/build/components/IDKitWidget/States/WorldID/QRState.d.ts +2 -0
- package/build/components/Icons/HumanIcon.d.ts +3 -0
- package/build/components/Icons/InfoIcon.d.ts +3 -0
- package/build/components/Icons/LockIcon.d.ts +3 -0
- package/build/components/Icons/WorldIDWordmark.d.ts +2 -3
- package/build/components/Icons/WorldcoinIcon.d.ts +3 -0
- package/build/components/Icons/WorldcoinLogomark.d.ts +2 -4
- package/build/components/WorldIDIcon.d.ts +4 -3
- package/build/idkit-js.js +29 -29
- package/build/index.css +1 -1
- package/build/index.js +2 -2
- package/build/index.js.map +3 -3
- package/build/store/idkit.d.ts +7 -2
- package/build/tsconfig.tsbuildinfo +1 -1
- package/build/types/config.d.ts +2 -0
- package/build/types/index.d.ts +1 -0
- package/package.json +6 -3
|
@@ -1,5 +1,3 @@
|
|
|
1
|
-
import type {
|
|
2
|
-
declare const WorldcoinLogomark:
|
|
3
|
-
style?: CSSProperties | undefined;
|
|
4
|
-
}) => JSX.Element;
|
|
1
|
+
import type { FC, HTMLAttributes } from 'react';
|
|
2
|
+
declare const WorldcoinLogomark: FC<HTMLAttributes<SVGElement>>;
|
|
5
3
|
export default WorldcoinLogomark;
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import type { DetailedHTMLProps, ImgHTMLAttributes } from 'react';
|
|
2
|
-
type Props = DetailedHTMLProps<ImgHTMLAttributes<HTMLImageElement>, HTMLImageElement> & {
|
|
2
|
+
type Props = Omit<DetailedHTMLProps<ImgHTMLAttributes<HTMLImageElement>, HTMLImageElement> & {
|
|
3
3
|
border?: string;
|
|
4
|
-
|
|
5
|
-
|
|
4
|
+
size?: 'md' | 'sm';
|
|
5
|
+
}, 'height' | 'src' | 'width'>;
|
|
6
|
+
declare const WorldIDIcon: ({ border, size, ...props }: Props) => JSX.Element;
|
|
6
7
|
export default WorldIDIcon;
|