analytica.click 0.0.264 → 0.0.265
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/dist/index.d.ts +6 -9
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
@@ -89,25 +89,22 @@ declare module 'analytica.click/common-ui/src/types/widgets' {
|
|
89
89
|
*/
|
90
90
|
cookieDocument?: string;
|
91
91
|
}
|
92
|
+
export interface IAnalyticaConfig {
|
93
|
+
analyticaToken?: string;
|
94
|
+
overrideBaseUrl?: string;
|
95
|
+
devMode?: boolean;
|
96
|
+
}
|
92
97
|
|
93
98
|
}
|
94
99
|
declare module 'analytica.click/ui-npm/src/components/AnalyticaConfig/index' {
|
95
|
-
import { IAnalyticaConfig } from 'analytica.click/ui-npm/src/components/AnalyticaConfig/types';
|
96
100
|
import React from 'react';
|
101
|
+
import { IAnalyticaConfig } from 'analytica.click/common-ui/src/types';
|
97
102
|
export const AnalyticaConfigContext: React.Context<IAnalyticaConfig>;
|
98
103
|
export const AnalyticaConfigProvider: ({ children, values, }: {
|
99
104
|
children: JSX.Element | JSX.Element[];
|
100
105
|
values: IAnalyticaConfig;
|
101
106
|
}) => JSX.Element;
|
102
107
|
|
103
|
-
}
|
104
|
-
declare module 'analytica.click/ui-npm/src/components/AnalyticaConfig/types' {
|
105
|
-
export interface IAnalyticaConfig {
|
106
|
-
analyticaToken?: string;
|
107
|
-
overrideBaseUrl?: string;
|
108
|
-
devMode?: boolean;
|
109
|
-
}
|
110
|
-
|
111
108
|
}
|
112
109
|
declare module 'analytica.click/ui-npm/src/components/ErrorBoundary/index' {
|
113
110
|
/// <reference types="react" />
|