kiva-protocol-ui-kit 1.0.57 → 1.0.61

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.
@@ -4,5 +4,6 @@ export interface ButtonProps {
4
4
  title: string;
5
5
  style: string;
6
6
  onClick?: MouseEventHandler<HTMLButtonElement>;
7
+ classes?: string[];
7
8
  }
8
9
  export declare const Button: FunctionComponent<ButtonProps>;
@@ -0,0 +1,7 @@
1
+ import { FunctionComponent } from "react";
2
+ import "./FingerReference.scss";
3
+ export interface FingerReferenceProps {
4
+ hand: string;
5
+ fingerPosition: string;
6
+ }
7
+ export declare const FingerReference: FunctionComponent<FingerReferenceProps>;
File without changes
@@ -0,0 +1,6 @@
1
+ import { FunctionComponent } from "react";
2
+ import "./Fingerprint.scss";
3
+ export interface FingerprintProps {
4
+ variant: string;
5
+ }
6
+ export declare const Fingerprint: FunctionComponent<FingerprintProps>;
File without changes
package/build/index.d.ts CHANGED
@@ -6,3 +6,5 @@ export { FormInput } from "./form-input/FormInput";
6
6
  export { QrCode } from "./qr-code/QrCode";
7
7
  export { ConsentCard } from "./consent-card/ConsentCard";
8
8
  export { Dropdown } from "./dropdown/Dropdown";
9
+ export { FingerReference } from "./finger-reference/FingerReference";
10
+ export { Fingerprint } from "./fingerprint/Fingerprint";