@livetiles/reach-plugin-types 0.5.0-preview.380 → 0.5.0-preview.381
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 +5 -1
- package/package.json +1 -1
package/lib/index.d.ts
CHANGED
|
@@ -10226,10 +10226,13 @@ declare module "libs/reach/feature/content/src/common/detail/pages/DetailViewPag
|
|
|
10226
10226
|
basePath?: string;
|
|
10227
10227
|
}>;
|
|
10228
10228
|
}
|
|
10229
|
+
declare module "libs/reach/feature/content/src/common/useContainerWidth" {
|
|
10230
|
+
export function useContainerWidth(): [number, (node: any) => void];
|
|
10231
|
+
}
|
|
10229
10232
|
declare module "libs/reach/feature/content/src/common/banner/Banner" {
|
|
10230
10233
|
import { FC } from 'react';
|
|
10231
10234
|
import { ItemResourceTypes, SchedulableItem } from "libs/reach/util/common/src/index";
|
|
10232
|
-
import { ItemTileLayoutMode } from "libs/reach/feature/content/src/
|
|
10235
|
+
import { ItemTileLayoutMode } from "libs/reach/feature/content/src/common/item-tile/NewsItemTile";
|
|
10233
10236
|
export const Banner: FC<{
|
|
10234
10237
|
item: SchedulableItem;
|
|
10235
10238
|
token: string;
|
|
@@ -11669,6 +11672,7 @@ declare module "libs/reach/feature/content/src/common/index" {
|
|
|
11669
11672
|
export * from "libs/reach/feature/content/src/common/FilterLogicalOperators";
|
|
11670
11673
|
export * from "libs/reach/feature/content/src/common/channels/ChannelSelector";
|
|
11671
11674
|
export * from "libs/reach/feature/content/src/common/item-tile/PageItemTile";
|
|
11675
|
+
export * from "libs/reach/feature/content/src/common/useContainerWidth";
|
|
11672
11676
|
}
|
|
11673
11677
|
declare module "libs/reach/feature/content/src/comments/CommentDisplay" {
|
|
11674
11678
|
import { FC } from 'react';
|