@livetiles/reach-plugin-types 0.5.0-preview.771 → 0.5.0-preview.774
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 -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,31 @@ 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/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/TextField" {
|
|
5645
|
+
import { FC, InputHTMLAttributes } from 'react';
|
|
5646
|
+
export interface ITextFieldProps extends InputHTMLAttributes<HTMLInputElement> {
|
|
5647
|
+
label: string;
|
|
5648
|
+
errorMessage?: string;
|
|
5649
|
+
}
|
|
5650
|
+
const TextField: FC<ITextFieldProps>;
|
|
5651
|
+
export default TextField;
|
|
5652
|
+
}
|
|
5653
|
+
declare module "libs/reach/ui/common/src/reach-2/surfaces/Card" {
|
|
5654
|
+
import { FC, ReactNode } from 'react';
|
|
5655
|
+
interface ICardProps {
|
|
5656
|
+
className?: string;
|
|
5657
|
+
children: ReactNode;
|
|
5658
|
+
}
|
|
5659
|
+
const Card: FC<ICardProps>;
|
|
5660
|
+
export default Card;
|
|
5661
|
+
}
|
|
5635
5662
|
declare module "libs/reach/ui/common/src/reach-2/index" {
|
|
5636
5663
|
export * from "libs/reach/ui/common/src/reach-2/Icon";
|
|
5637
5664
|
export * from "libs/reach/ui/common/src/reach-2/icons/index";
|
|
@@ -5641,6 +5668,9 @@ declare module "libs/reach/ui/common/src/reach-2/index" {
|
|
|
5641
5668
|
export * from "libs/reach/ui/common/src/reach-2/progress/index";
|
|
5642
5669
|
export * from "libs/reach/ui/common/src/reach-2/DateTimeDisplay";
|
|
5643
5670
|
export * from "libs/reach/ui/common/src/reach-2/SearchBox";
|
|
5671
|
+
export * from "libs/reach/ui/common/src/reach-2/assets/index";
|
|
5672
|
+
export { default as TextField } from "libs/reach/ui/common/src/reach-2/TextField";
|
|
5673
|
+
export { default as Card } from "libs/reach/ui/common/src/reach-2/surfaces/Card";
|
|
5644
5674
|
}
|
|
5645
5675
|
declare module "libs/reach/ui/common/src/index" {
|
|
5646
5676
|
export * from "libs/reach/ui/common/src/LegacyDialog";
|