@livetiles/reach-plugin-types 0.5.0-preview.155 → 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.
Files changed (2) hide show
  1. package/lib/index.d.ts +6 -2
  2. 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" {
@@ -8149,9 +8150,9 @@ declare module "libs/reach/feature/content/src/pages/utils" {
8149
8150
  language: string;
8150
8151
  };
8151
8152
  export function getContentForPage(page: PageItem | PageNavigationNode, user: CurrentUser): {
8152
- content: import("@livetiles/reach/util/common").PublishableItemContent | (import("@livetiles/reach/util/common").TitleContent & {
8153
+ content: import("@livetiles/reach/util/common").TitleContent & {
8153
8154
  fileInfo?: import("@livetiles/reach/util/common").DocumentFileInfo;
8154
- });
8155
+ };
8155
8156
  language: string;
8156
8157
  };
8157
8158
  export function getLanguageForPage(page: PageItem | PageNavigationNode, user: CurrentUser): string;
@@ -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" {
package/package.json CHANGED
@@ -4,6 +4,6 @@
4
4
  "main": "",
5
5
  "types": "./index.d.ts",
6
6
  "license": "ISC",
7
- "version": "0.5.0-preview.155",
7
+ "version": "0.5.0-preview.159",
8
8
  "dependencies": {}
9
9
  }