@livetiles/reach-plugin-types 0.5.0-preview.774 → 0.5.0-preview.776
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/lib/index.d.ts +15 -0
- package/package.json +1 -1
package/lib/index.d.ts
CHANGED
|
@@ -5641,6 +5641,20 @@ declare module "libs/reach/ui/common/src/reach-2/assets/Assets" {
|
|
|
5641
5641
|
declare module "libs/reach/ui/common/src/reach-2/assets/index" {
|
|
5642
5642
|
export * from "libs/reach/ui/common/src/reach-2/assets/Assets";
|
|
5643
5643
|
}
|
|
5644
|
+
declare module "libs/reach/ui/common/src/reach-2/inputs/OTPInput" {
|
|
5645
|
+
import { FC } from 'react';
|
|
5646
|
+
interface IOTPInputProps {
|
|
5647
|
+
code: string;
|
|
5648
|
+
codeLength: number;
|
|
5649
|
+
onChange: (code: string) => void;
|
|
5650
|
+
className?: string;
|
|
5651
|
+
}
|
|
5652
|
+
const OTPInput: FC<IOTPInputProps>;
|
|
5653
|
+
export default OTPInput;
|
|
5654
|
+
}
|
|
5655
|
+
declare module "libs/reach/ui/common/src/reach-2/inputs/index" {
|
|
5656
|
+
export { default as OTPInput } from "libs/reach/ui/common/src/reach-2/inputs/OTPInput";
|
|
5657
|
+
}
|
|
5644
5658
|
declare module "libs/reach/ui/common/src/reach-2/TextField" {
|
|
5645
5659
|
import { FC, InputHTMLAttributes } from 'react';
|
|
5646
5660
|
export interface ITextFieldProps extends InputHTMLAttributes<HTMLInputElement> {
|
|
@@ -5669,6 +5683,7 @@ declare module "libs/reach/ui/common/src/reach-2/index" {
|
|
|
5669
5683
|
export * from "libs/reach/ui/common/src/reach-2/DateTimeDisplay";
|
|
5670
5684
|
export * from "libs/reach/ui/common/src/reach-2/SearchBox";
|
|
5671
5685
|
export * from "libs/reach/ui/common/src/reach-2/assets/index";
|
|
5686
|
+
export * from "libs/reach/ui/common/src/reach-2/inputs/index";
|
|
5672
5687
|
export { default as TextField } from "libs/reach/ui/common/src/reach-2/TextField";
|
|
5673
5688
|
export { default as Card } from "libs/reach/ui/common/src/reach-2/surfaces/Card";
|
|
5674
5689
|
}
|