@livetiles/reach-plugin-types 0.5.0-preview.518 → 0.5.0-preview.519
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 +30 -1
- package/package.json +1 -1
package/lib/index.d.ts
CHANGED
|
@@ -5792,8 +5792,37 @@ declare module "libs/reach/ui/common/src/reach-2/buttons/BaseButton" {
|
|
|
5792
5792
|
}
|
|
5793
5793
|
export const BaseButton: import("react").ForwardRefExoticComponent<BaseButtonProps & import("react").RefAttributes<HTMLButtonElement>>;
|
|
5794
5794
|
}
|
|
5795
|
+
declare module "libs/reach/ui/common/src/reach-2/buttons/PrimaryButton" {
|
|
5796
|
+
import { FC } from 'react';
|
|
5797
|
+
import { BaseButtonProps } from "libs/reach/ui/common/src/reach-2/buttons/BaseButton";
|
|
5798
|
+
export const PrimaryButton: FC<BaseButtonProps>;
|
|
5799
|
+
}
|
|
5800
|
+
declare module "libs/reach/ui/common/src/reach-2/buttons/SecondaryButton" {
|
|
5801
|
+
import { FC } from 'react';
|
|
5802
|
+
import { BaseButtonProps } from "libs/reach/ui/common/src/reach-2/buttons/BaseButton";
|
|
5803
|
+
export const SecondaryButton: FC<BaseButtonProps>;
|
|
5804
|
+
}
|
|
5805
|
+
declare module "libs/reach/ui/common/src/reach-2/buttons/TertiaryButton" {
|
|
5806
|
+
import { FC } from 'react';
|
|
5807
|
+
import { BaseButtonProps } from "libs/reach/ui/common/src/reach-2/buttons/BaseButton";
|
|
5808
|
+
export const TertiaryButton: FC<BaseButtonProps>;
|
|
5809
|
+
}
|
|
5810
|
+
declare module "libs/reach/ui/common/src/reach-2/buttons/OutlinedButton" {
|
|
5811
|
+
import { FC } from 'react';
|
|
5812
|
+
import { BaseButtonProps } from "libs/reach/ui/common/src/reach-2/buttons/BaseButton";
|
|
5813
|
+
export const OutlinedButton: FC<BaseButtonProps>;
|
|
5814
|
+
}
|
|
5815
|
+
declare module "libs/reach/ui/common/src/reach-2/buttons/TextButton" {
|
|
5816
|
+
import { FC } from 'react';
|
|
5817
|
+
import { BaseButtonProps } from "libs/reach/ui/common/src/reach-2/buttons/BaseButton";
|
|
5818
|
+
export const TextButton: FC<BaseButtonProps>;
|
|
5819
|
+
}
|
|
5795
5820
|
declare module "libs/reach/ui/common/src/reach-2/buttons/index" {
|
|
5796
|
-
export * from "libs/reach/ui/common/src/reach-2/buttons/
|
|
5821
|
+
export * from "libs/reach/ui/common/src/reach-2/buttons/PrimaryButton";
|
|
5822
|
+
export * from "libs/reach/ui/common/src/reach-2/buttons/SecondaryButton";
|
|
5823
|
+
export * from "libs/reach/ui/common/src/reach-2/buttons/TertiaryButton";
|
|
5824
|
+
export * from "libs/reach/ui/common/src/reach-2/buttons/OutlinedButton";
|
|
5825
|
+
export * from "libs/reach/ui/common/src/reach-2/buttons/TextButton";
|
|
5797
5826
|
}
|
|
5798
5827
|
declare module "libs/reach/ui/common/src/reach-2/index" {
|
|
5799
5828
|
export * from "libs/reach/ui/common/src/reach-2/Icon";
|