analytica.click 0.0.255 → 0.0.258

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