@livetiles/reach-plugin-types 0.5.0-preview.770 → 0.5.0-preview.773
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 +22 -0
- package/package.json +1 -1
package/lib/index.d.ts
CHANGED
|
@@ -5348,6 +5348,8 @@ declare module "libs/reach/ui/common/src/reach-2/icons/Icons" {
|
|
|
5348
5348
|
export { ReactComponent as EmojiActiveIcon } from './assets/emoji_active.svg';
|
|
5349
5349
|
export { ReactComponent as MentionIcon } from './assets/mention.svg';
|
|
5350
5350
|
export { ReactComponent as MentionActiveIcon } from './assets/mention_active.svg';
|
|
5351
|
+
export { ReactComponent as MicrosoftIcon } from './assets/microsoft.svg';
|
|
5352
|
+
export { ReactComponent as GoogleIcon } from './assets/google.svg';
|
|
5351
5353
|
}
|
|
5352
5354
|
declare module "libs/reach/ui/common/src/reach-2/icons/index" {
|
|
5353
5355
|
export * from "libs/reach/ui/common/src/reach-2/icons/Icons";
|
|
@@ -5632,6 +5634,24 @@ declare module "libs/reach/ui/common/src/reach-2/SearchBox" {
|
|
|
5632
5634
|
className?: string;
|
|
5633
5635
|
}>;
|
|
5634
5636
|
}
|
|
5637
|
+
declare module "libs/reach/ui/common/src/reach-2/TextField" {
|
|
5638
|
+
import { FC, InputHTMLAttributes } from 'react';
|
|
5639
|
+
export interface ITextFieldProps extends InputHTMLAttributes<HTMLInputElement> {
|
|
5640
|
+
label: string;
|
|
5641
|
+
errorMessage?: string;
|
|
5642
|
+
}
|
|
5643
|
+
const TextField: FC<ITextFieldProps>;
|
|
5644
|
+
export default TextField;
|
|
5645
|
+
}
|
|
5646
|
+
declare module "libs/reach/ui/common/src/reach-2/surfaces/Card" {
|
|
5647
|
+
import { FC, ReactNode } from 'react';
|
|
5648
|
+
interface ICardProps {
|
|
5649
|
+
className?: string;
|
|
5650
|
+
children: ReactNode;
|
|
5651
|
+
}
|
|
5652
|
+
const Card: FC<ICardProps>;
|
|
5653
|
+
export default Card;
|
|
5654
|
+
}
|
|
5635
5655
|
declare module "libs/reach/ui/common/src/reach-2/index" {
|
|
5636
5656
|
export * from "libs/reach/ui/common/src/reach-2/Icon";
|
|
5637
5657
|
export * from "libs/reach/ui/common/src/reach-2/icons/index";
|
|
@@ -5641,6 +5661,8 @@ declare module "libs/reach/ui/common/src/reach-2/index" {
|
|
|
5641
5661
|
export * from "libs/reach/ui/common/src/reach-2/progress/index";
|
|
5642
5662
|
export * from "libs/reach/ui/common/src/reach-2/DateTimeDisplay";
|
|
5643
5663
|
export * from "libs/reach/ui/common/src/reach-2/SearchBox";
|
|
5664
|
+
export { default as TextField } from "libs/reach/ui/common/src/reach-2/TextField";
|
|
5665
|
+
export { default as Card } from "libs/reach/ui/common/src/reach-2/surfaces/Card";
|
|
5644
5666
|
}
|
|
5645
5667
|
declare module "libs/reach/ui/common/src/index" {
|
|
5646
5668
|
export * from "libs/reach/ui/common/src/LegacyDialog";
|