@livetiles/reach-plugin-types 0.5.0-preview.126 → 0.5.0-preview.128
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 +1 -5
- package/package.json +1 -1
package/lib/index.d.ts
CHANGED
|
@@ -8762,7 +8762,7 @@ declare module "libs/reach/feature/content/src/common/breadcrumb/PageBreadcrumb"
|
|
|
8762
8762
|
target?: string;
|
|
8763
8763
|
language?: string;
|
|
8764
8764
|
hideCurrentPageNode?: boolean;
|
|
8765
|
-
|
|
8765
|
+
homeTargetUrlOverride?: string;
|
|
8766
8766
|
className?: string;
|
|
8767
8767
|
}>;
|
|
8768
8768
|
}
|
|
@@ -8823,7 +8823,6 @@ declare module "libs/reach/feature/content/src/pages/PageTocNode" {
|
|
|
8823
8823
|
hide?: boolean;
|
|
8824
8824
|
onPageSelected?: (pageId: string) => unknown;
|
|
8825
8825
|
selectedPageId?: string;
|
|
8826
|
-
onPageRedirect?: (id: string) => void;
|
|
8827
8826
|
}>;
|
|
8828
8827
|
}
|
|
8829
8828
|
declare module "libs/reach/feature/content/src/pages/PageTableOfContents" {
|
|
@@ -8840,7 +8839,6 @@ declare module "libs/reach/feature/content/src/pages/PageTableOfContents" {
|
|
|
8840
8839
|
selectedPageId?: string;
|
|
8841
8840
|
isLoading?: boolean;
|
|
8842
8841
|
disableScrollableList?: boolean;
|
|
8843
|
-
onPageRedirect?: (id: string) => void;
|
|
8844
8842
|
}>;
|
|
8845
8843
|
export const PageTableOfContentsInPanel: FC<{
|
|
8846
8844
|
basePath?: string;
|
|
@@ -8862,7 +8860,6 @@ declare module "libs/reach/feature/content/src/pages/PageTableOfContentsDialog"
|
|
|
8862
8860
|
loadChildren: (id: string) => Promise<PageNavigationNode[]>;
|
|
8863
8861
|
onSearch: (value: string) => Promise<PaginatedList<PageItem>>;
|
|
8864
8862
|
onDismiss: () => void;
|
|
8865
|
-
onPageRedirect?: (id: string) => void;
|
|
8866
8863
|
basePath: string;
|
|
8867
8864
|
}>;
|
|
8868
8865
|
}
|
|
@@ -8876,7 +8873,6 @@ declare module "libs/reach/feature/content/src/pages/PageTableOfContentsButton"
|
|
|
8876
8873
|
loadChildren: (id: string) => Promise<PageNavigationNode[]>;
|
|
8877
8874
|
onSearch: (value: string) => Promise<PaginatedList<PageItem>>;
|
|
8878
8875
|
basePath: string;
|
|
8879
|
-
onPageRedirect?: (id: string) => void;
|
|
8880
8876
|
className?: string;
|
|
8881
8877
|
}>;
|
|
8882
8878
|
}
|