@livetiles/reach-plugin-types 0.5.0-preview.156 → 0.5.0-preview.159
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 +4 -0
- package/package.json +1 -1
package/lib/index.d.ts
CHANGED
|
@@ -7567,6 +7567,7 @@ declare module "libs/reach/feature/content/src/common/detail/events/controls/Eve
|
|
|
7567
7567
|
className?: string;
|
|
7568
7568
|
allowFilterByChannels?: boolean;
|
|
7569
7569
|
channelBackgroundColor?: string;
|
|
7570
|
+
onChannelClick?: (channel: string) => unknown;
|
|
7570
7571
|
}>;
|
|
7571
7572
|
}
|
|
7572
7573
|
declare module "libs/reach/feature/content/src/common/banner/banner-image/BannerImage" {
|
|
@@ -8982,6 +8983,7 @@ declare module "libs/reach/feature/content/src/news/ItemMetaInfo" {
|
|
|
8982
8983
|
language?: string;
|
|
8983
8984
|
buildChannelFilterUrl?: (channelName: string) => string;
|
|
8984
8985
|
clickableAvatar?: boolean;
|
|
8986
|
+
onChannelClick?: (channel: string) => unknown;
|
|
8985
8987
|
}>;
|
|
8986
8988
|
}
|
|
8987
8989
|
declare module "libs/reach/feature/content/src/news/list-view/ExternalNewsLinkButton" {
|
|
@@ -9372,6 +9374,7 @@ declare module "libs/reach/feature/content/src/common/detail/events/controls/Eve
|
|
|
9372
9374
|
import { FC } from 'react';
|
|
9373
9375
|
export const EventDetailViewMetaInfo: FC<{
|
|
9374
9376
|
allowFilterByChannels?: boolean;
|
|
9377
|
+
onChannelClick?: (channel: string) => unknown;
|
|
9375
9378
|
}>;
|
|
9376
9379
|
}
|
|
9377
9380
|
declare module "libs/reach/feature/content/src/common/detail/events/controls/EventDetailViewDatesInfo" {
|
|
@@ -10002,6 +10005,7 @@ declare module "libs/reach/feature/content/src/common/detail/controls/DetailView
|
|
|
10002
10005
|
import { FC } from 'react';
|
|
10003
10006
|
export const DetailViewKeywords: FC<{
|
|
10004
10007
|
filterBaseUrl: string;
|
|
10008
|
+
onKeywordClick?: (keyword: string) => unknown;
|
|
10005
10009
|
}>;
|
|
10006
10010
|
}
|
|
10007
10011
|
declare module "libs/reach/feature/content/src/feedback/ConfirmationBox" {
|