@livetiles/reach-plugin-types 0.5.0-preview.415 → 0.5.0-preview.418
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 +20 -2
- package/package.json +1 -1
package/lib/index.d.ts
CHANGED
|
@@ -1995,7 +1995,6 @@ declare module "libs/reach/util/common/src/content/NewsItem" {
|
|
|
1995
1995
|
expiryDate?: string;
|
|
1996
1996
|
knownState: KnownNewsState;
|
|
1997
1997
|
hasNewComments?: boolean;
|
|
1998
|
-
isLiked?: boolean;
|
|
1999
1998
|
}
|
|
2000
1999
|
export interface NewsItemAlertOptions {
|
|
2001
2000
|
duration?: string;
|
|
@@ -2179,6 +2178,7 @@ declare module "libs/reach/util/common/src/content/PublishableItem" {
|
|
|
2179
2178
|
statistics?: ItemStatistics;
|
|
2180
2179
|
useExternalContent?: boolean;
|
|
2181
2180
|
isDemoContent?: boolean;
|
|
2181
|
+
isLiked?: boolean;
|
|
2182
2182
|
}
|
|
2183
2183
|
export interface ShareablePublishableItem extends PublishableItem {
|
|
2184
2184
|
shareToken: ShareToken;
|
|
@@ -5594,9 +5594,26 @@ declare module "libs/reach/ui/common/src/reach-2/icons/Icons" {
|
|
|
5594
5594
|
declare module "libs/reach/ui/common/src/reach-2/icons/index" {
|
|
5595
5595
|
export * from "libs/reach/ui/common/src/reach-2/icons/Icons";
|
|
5596
5596
|
}
|
|
5597
|
+
declare module "libs/reach/ui/common/src/reach-2/ModalBottomSheet" {
|
|
5598
|
+
import { FC } from 'react';
|
|
5599
|
+
export const ModalBottomSheet: FC<{
|
|
5600
|
+
isOpen?: boolean;
|
|
5601
|
+
onDidDismiss: () => void;
|
|
5602
|
+
}>;
|
|
5603
|
+
}
|
|
5604
|
+
declare module "libs/reach/ui/common/src/reach-2/Modal" {
|
|
5605
|
+
import { IDialogProps } from 'office-ui-fabric-react';
|
|
5606
|
+
import { FC } from 'react';
|
|
5607
|
+
interface ModalProps extends IDialogProps {
|
|
5608
|
+
onDidDismiss: () => void;
|
|
5609
|
+
}
|
|
5610
|
+
export const Modal: FC<ModalProps>;
|
|
5611
|
+
}
|
|
5597
5612
|
declare module "libs/reach/ui/common/src/reach-2/index" {
|
|
5598
5613
|
export * from "libs/reach/ui/common/src/reach-2/Icon";
|
|
5599
5614
|
export * from "libs/reach/ui/common/src/reach-2/icons/index";
|
|
5615
|
+
export * from "libs/reach/ui/common/src/reach-2/ModalBottomSheet";
|
|
5616
|
+
export * from "libs/reach/ui/common/src/reach-2/Modal";
|
|
5600
5617
|
}
|
|
5601
5618
|
declare module "libs/reach/ui/common/src/index" {
|
|
5602
5619
|
export * from "libs/reach/ui/common/src/Dialog";
|
|
@@ -9507,7 +9524,6 @@ declare module "libs/reach/feature/content/src/stream/streamUtils" {
|
|
|
9507
9524
|
expiryDate?: string;
|
|
9508
9525
|
knownState: KnownNewsState;
|
|
9509
9526
|
hasNewComments?: boolean;
|
|
9510
|
-
isLiked?: boolean;
|
|
9511
9527
|
metadata?: import("@livetiles/reach/util/common").NewsMetadata;
|
|
9512
9528
|
channels?: Channel[];
|
|
9513
9529
|
lease: import("@livetiles/reach/util/common").LeaseInfo;
|
|
@@ -9536,6 +9552,7 @@ declare module "libs/reach/feature/content/src/stream/streamUtils" {
|
|
|
9536
9552
|
statistics?: import("@livetiles/reach/util/common").ItemStatistics;
|
|
9537
9553
|
useExternalContent?: boolean;
|
|
9538
9554
|
isDemoContent?: boolean;
|
|
9555
|
+
isLiked?: boolean;
|
|
9539
9556
|
poll?: import("@livetiles/reach/util/common").Poll;
|
|
9540
9557
|
searchHighlights?: import("@livetiles/reach/util/common").SearchHighlightSummary;
|
|
9541
9558
|
} | {
|
|
@@ -9642,6 +9659,7 @@ declare module "libs/reach/feature/content/src/stream/streamUtils" {
|
|
|
9642
9659
|
statistics?: import("@livetiles/reach/util/common").ItemStatistics;
|
|
9643
9660
|
useExternalContent?: boolean;
|
|
9644
9661
|
isDemoContent?: boolean;
|
|
9662
|
+
isLiked?: boolean;
|
|
9645
9663
|
poll?: import("@livetiles/reach/util/common").Poll;
|
|
9646
9664
|
searchHighlights?: import("@livetiles/reach/util/common").SearchHighlightSummary;
|
|
9647
9665
|
}) & {
|