@livetiles/reach-plugin-types 0.5.0-preview.773 → 0.5.0-preview.775
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 +23 -0
- package/package.json +1 -1
package/lib/index.d.ts
CHANGED
|
@@ -5634,6 +5634,27 @@ declare module "libs/reach/ui/common/src/reach-2/SearchBox" {
|
|
|
5634
5634
|
className?: string;
|
|
5635
5635
|
}>;
|
|
5636
5636
|
}
|
|
5637
|
+
declare module "libs/reach/ui/common/src/reach-2/assets/Assets" {
|
|
5638
|
+
export { ReactComponent as Logo } from './logo.svg';
|
|
5639
|
+
export { default as Background } from './background.svg';
|
|
5640
|
+
}
|
|
5641
|
+
declare module "libs/reach/ui/common/src/reach-2/assets/index" {
|
|
5642
|
+
export * from "libs/reach/ui/common/src/reach-2/assets/Assets";
|
|
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
|
+
}
|
|
5637
5658
|
declare module "libs/reach/ui/common/src/reach-2/TextField" {
|
|
5638
5659
|
import { FC, InputHTMLAttributes } from 'react';
|
|
5639
5660
|
export interface ITextFieldProps extends InputHTMLAttributes<HTMLInputElement> {
|
|
@@ -5661,6 +5682,8 @@ declare module "libs/reach/ui/common/src/reach-2/index" {
|
|
|
5661
5682
|
export * from "libs/reach/ui/common/src/reach-2/progress/index";
|
|
5662
5683
|
export * from "libs/reach/ui/common/src/reach-2/DateTimeDisplay";
|
|
5663
5684
|
export * from "libs/reach/ui/common/src/reach-2/SearchBox";
|
|
5685
|
+
export * from "libs/reach/ui/common/src/reach-2/assets/index";
|
|
5686
|
+
export * from "libs/reach/ui/common/src/reach-2/inputs/index";
|
|
5664
5687
|
export { default as TextField } from "libs/reach/ui/common/src/reach-2/TextField";
|
|
5665
5688
|
export { default as Card } from "libs/reach/ui/common/src/reach-2/surfaces/Card";
|
|
5666
5689
|
}
|