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