analytica.click 0.0.266 → 0.0.267
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 +0 -5
- package/dist/index.js +3 -1775
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
@@ -18,7 +18,6 @@ declare module 'analytica.click/common-ui/src/types/index' {
|
|
18
18
|
|
19
19
|
}
|
20
20
|
declare module 'analytica.click/common-ui/src/types/widgets' {
|
21
|
-
/// <reference types="react" />
|
22
21
|
import { ICognitoAuth, TOnMessage } from 'ag-common/dist/ui/helpers/cognito';
|
23
22
|
export type TTrackNoEvent = (p: Omit<ITrack, 'eventName'>) => Promise<{
|
24
23
|
error?: string;
|
@@ -107,7 +106,6 @@ declare module 'analytica.click/ui-npm/src/components/AnalyticaConfig/index' {
|
|
107
106
|
|
108
107
|
}
|
109
108
|
declare module 'analytica.click/ui-npm/src/components/ErrorBoundary/index' {
|
110
|
-
/// <reference types="react" />
|
111
109
|
export const ErrorBoundary: ({ children, filterBrowserError, }: {
|
112
110
|
children?: JSX.Element | JSX.Element[] | undefined;
|
113
111
|
filterBrowserError?: ((e: ErrorEvent | Error) => boolean) | undefined;
|
@@ -115,7 +113,6 @@ declare module 'analytica.click/ui-npm/src/components/ErrorBoundary/index' {
|
|
115
113
|
|
116
114
|
}
|
117
115
|
declare module 'analytica.click/ui-npm/src/components/ExternalComponent/index' {
|
118
|
-
/// <reference types="react" />
|
119
116
|
export const ExternalComponent: ({ url, props, }: {
|
120
117
|
url: string;
|
121
118
|
props: Record<string, any>;
|
@@ -123,13 +120,11 @@ declare module 'analytica.click/ui-npm/src/components/ExternalComponent/index' {
|
|
123
120
|
|
124
121
|
}
|
125
122
|
declare module 'analytica.click/ui-npm/src/components/Feedback/index' {
|
126
|
-
/// <reference types="react" />
|
127
123
|
import { IFeedbackWidget } from 'analytica.click/common-ui/src/types/index';
|
128
124
|
export const Feedback: (props: IFeedbackWidget) => JSX.Element;
|
129
125
|
|
130
126
|
}
|
131
127
|
declare module 'analytica.click/ui-npm/src/components/UserProvider/DashboardAuthValidation' {
|
132
|
-
/// <reference types="react" />
|
133
128
|
import { AuthedUserContext } from 'ag-common/dist/ui/helpers/jwt';
|
134
129
|
import { IRequestCommon } from 'ag-common/dist/ui/helpers/routes';
|
135
130
|
/**
|