@livetiles/reach-plugin-types 0.5.0-preview.250 → 0.5.0-preview.252
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 +10 -0
- package/package.json +1 -1
package/lib/index.d.ts
CHANGED
|
@@ -283,6 +283,7 @@ declare module "libs/shared/util/environment/src/AppConfiguration" {
|
|
|
283
283
|
}
|
|
284
284
|
}
|
|
285
285
|
declare module "libs/shared/util/environment/src/ClientConfig" {
|
|
286
|
+
import { AnalyticsConfig } from "libs/shared/util/environment/src/AnalyticsConfig";
|
|
286
287
|
export interface ClientConfig {
|
|
287
288
|
maxFileSizeInMb: number;
|
|
288
289
|
unsplash: {
|
|
@@ -300,6 +301,7 @@ declare module "libs/shared/util/environment/src/ClientConfig" {
|
|
|
300
301
|
giphy: {
|
|
301
302
|
apiKey: string;
|
|
302
303
|
};
|
|
304
|
+
analytics: AnalyticsConfig;
|
|
303
305
|
}
|
|
304
306
|
}
|
|
305
307
|
declare module "libs/shared/util/environment/src/EnvironmentConfig" {
|
|
@@ -2914,6 +2916,7 @@ declare module "libs/reach/util/common/src/analytics/AnalyticsContextProvider" {
|
|
|
2914
2916
|
export type ReachAnalytics = Analytics & AnalyticsModule & SearchAnalytics & ActivityAnalytics;
|
|
2915
2917
|
export const AnalyticsContext: import("react").Context<ReachAnalytics>;
|
|
2916
2918
|
export function useAnalyticsContext(): ReachAnalytics;
|
|
2919
|
+
export const AnalyticsLibraryContextProvider: FC;
|
|
2917
2920
|
export const AnalyticsContextProvider: FC;
|
|
2918
2921
|
}
|
|
2919
2922
|
declare module "libs/reach/util/common/src/analytics/useAnalyticsViewTrack" {
|
|
@@ -8989,6 +8992,7 @@ declare module "libs/reach/feature/content/src/common/breadcrumb/PageBreadcrumb"
|
|
|
8989
8992
|
hideCurrentPageNode?: boolean;
|
|
8990
8993
|
homeTargetUrlOverride?: string;
|
|
8991
8994
|
className?: string;
|
|
8995
|
+
readonly?: boolean;
|
|
8992
8996
|
}>;
|
|
8993
8997
|
}
|
|
8994
8998
|
declare module "libs/reach/feature/content/src/pages/PageListItemBody" {
|
|
@@ -9048,6 +9052,7 @@ declare module "libs/reach/feature/content/src/pages/PageTocNode" {
|
|
|
9048
9052
|
hide?: boolean;
|
|
9049
9053
|
onPageSelected?: (pageId: string) => unknown;
|
|
9050
9054
|
selectedPageId?: string;
|
|
9055
|
+
readonly?: boolean;
|
|
9051
9056
|
}>;
|
|
9052
9057
|
}
|
|
9053
9058
|
declare module "libs/reach/feature/content/src/pages/PageTableOfContents" {
|
|
@@ -9064,6 +9069,7 @@ declare module "libs/reach/feature/content/src/pages/PageTableOfContents" {
|
|
|
9064
9069
|
selectedPageId?: string;
|
|
9065
9070
|
isLoading?: boolean;
|
|
9066
9071
|
disableScrollableList?: boolean;
|
|
9072
|
+
readonly?: boolean;
|
|
9067
9073
|
}>;
|
|
9068
9074
|
export const PageTableOfContentsInPanel: FC<{
|
|
9069
9075
|
basePath?: string;
|
|
@@ -9086,6 +9092,7 @@ declare module "libs/reach/feature/content/src/pages/PageTableOfContentsDialog"
|
|
|
9086
9092
|
onSearch: (value: string) => Promise<PaginatedList<PageItem>>;
|
|
9087
9093
|
onDismiss: () => void;
|
|
9088
9094
|
basePath: string;
|
|
9095
|
+
readonly?: boolean;
|
|
9089
9096
|
}>;
|
|
9090
9097
|
}
|
|
9091
9098
|
declare module "libs/reach/feature/content/src/pages/PageTableOfContentsButton" {
|
|
@@ -9109,6 +9116,7 @@ declare module "libs/reach/feature/content/src/pages/PagesDetailViewNavigation"
|
|
|
9109
9116
|
activePageId: string;
|
|
9110
9117
|
navigationContext: PageNavigationContext;
|
|
9111
9118
|
className?: string;
|
|
9119
|
+
readonly?: boolean;
|
|
9112
9120
|
}
|
|
9113
9121
|
export const PagesDetailViewNavigation: FC<Props>;
|
|
9114
9122
|
}
|
|
@@ -9406,6 +9414,7 @@ declare module "libs/reach/feature/content/src/common/body/inline-page-list/Inli
|
|
|
9406
9414
|
baseRoute: string;
|
|
9407
9415
|
filterBaseUrl?: string;
|
|
9408
9416
|
isInitialLoading?: boolean;
|
|
9417
|
+
readonly?: boolean;
|
|
9409
9418
|
}>;
|
|
9410
9419
|
}
|
|
9411
9420
|
declare module "libs/reach/feature/content/src/common/body/inline-page-list/EmptyPageList" {
|
|
@@ -9433,6 +9442,7 @@ declare module "libs/reach/feature/content/src/common/body/inline-page-list/Inli
|
|
|
9433
9442
|
pagingProps?: ListPagingProps;
|
|
9434
9443
|
filterBaseUrl?: string;
|
|
9435
9444
|
emptyListMessage: string;
|
|
9445
|
+
readonly?: boolean;
|
|
9436
9446
|
}>;
|
|
9437
9447
|
}
|
|
9438
9448
|
declare module "libs/reach/feature/content/src/common/body/inline-page-list/useItemLoaderByCurrentPage" {
|