@livetiles/reach-plugin-types 0.5.0-preview.796 → 0.5.0-preview.798
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 +18 -1
- package/package.json +1 -1
package/lib/index.d.ts
CHANGED
|
@@ -5456,6 +5456,16 @@ declare module "libs/reach/ui/common/src/reach-2/buttons/FloatingActionButton" {
|
|
|
5456
5456
|
const FloatingActionButton: FC<FloatingActionButtonProps>;
|
|
5457
5457
|
export default FloatingActionButton;
|
|
5458
5458
|
}
|
|
5459
|
+
declare module "libs/reach/ui/common/src/reach-2/buttons/ProfileButton" {
|
|
5460
|
+
import { FC } from 'react';
|
|
5461
|
+
const ProfileButton: FC<{
|
|
5462
|
+
showLabel?: boolean;
|
|
5463
|
+
labelDirection?: 'left' | 'right';
|
|
5464
|
+
coinSize?: number;
|
|
5465
|
+
className?: string;
|
|
5466
|
+
}>;
|
|
5467
|
+
export default ProfileButton;
|
|
5468
|
+
}
|
|
5459
5469
|
declare module "libs/reach/ui/common/src/reach-2/buttons/index" {
|
|
5460
5470
|
export * from "libs/reach/ui/common/src/reach-2/buttons/StandardButtons";
|
|
5461
5471
|
export * from "libs/reach/ui/common/src/reach-2/buttons/ContentActionButton";
|
|
@@ -5465,6 +5475,7 @@ declare module "libs/reach/ui/common/src/reach-2/buttons/index" {
|
|
|
5465
5475
|
export { BaseButtonStyle } from "libs/reach/ui/common/src/reach-2/buttons/BaseButton";
|
|
5466
5476
|
export * from "libs/reach/ui/common/src/reach-2/buttons/IconicButtons";
|
|
5467
5477
|
export { default as FloatingActionButton } from "libs/reach/ui/common/src/reach-2/buttons/FloatingActionButton";
|
|
5478
|
+
export { default as ProfileButton } from "libs/reach/ui/common/src/reach-2/buttons/ProfileButton";
|
|
5468
5479
|
}
|
|
5469
5480
|
declare module "libs/reach/ui/common/src/reach-2/surfaces/BaseDialog" {
|
|
5470
5481
|
import { FC, MouseEvent } from 'react';
|
|
@@ -6541,7 +6552,7 @@ declare module "libs/reach/feature/content/src/forms/videos/VideoCustomThumbnail
|
|
|
6541
6552
|
}
|
|
6542
6553
|
declare module "libs/reach/feature/content/src/forms/videos/InsertVideoDialog" {
|
|
6543
6554
|
import { FC } from 'react';
|
|
6544
|
-
import { VideoSource } from "libs/reach/util/common/src/index";
|
|
6555
|
+
import { BannerInfo, VideoSource } from "libs/reach/util/common/src/index";
|
|
6545
6556
|
export interface VideoInfo {
|
|
6546
6557
|
id: string;
|
|
6547
6558
|
source: VideoSource;
|
|
@@ -6553,6 +6564,12 @@ declare module "libs/reach/feature/content/src/forms/videos/InsertVideoDialog" {
|
|
|
6553
6564
|
onCancel: () => void;
|
|
6554
6565
|
onSave: (videoInfo: VideoInfo, customThumbnail?: File) => void;
|
|
6555
6566
|
isOpen?: boolean;
|
|
6567
|
+
initialDataProps?: {
|
|
6568
|
+
bannerInfo: BannerInfo;
|
|
6569
|
+
itemId: string;
|
|
6570
|
+
token: string;
|
|
6571
|
+
subscriptionId: string;
|
|
6572
|
+
};
|
|
6556
6573
|
}>;
|
|
6557
6574
|
}
|
|
6558
6575
|
declare module "libs/reach/feature/content/src/forms/videos/VideoElementGenerator" {
|