analytica.click 0.0.267 → 0.0.268

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;
@@ -106,6 +107,7 @@ declare module 'analytica.click/ui-npm/src/components/AnalyticaConfig/index' {
106
107
 
107
108
  }
108
109
  declare module 'analytica.click/ui-npm/src/components/ErrorBoundary/index' {
110
+ /// <reference types="react" />
109
111
  export const ErrorBoundary: ({ children, filterBrowserError, }: {
110
112
  children?: JSX.Element | JSX.Element[] | undefined;
111
113
  filterBrowserError?: ((e: ErrorEvent | Error) => boolean) | undefined;
@@ -113,6 +115,7 @@ declare module 'analytica.click/ui-npm/src/components/ErrorBoundary/index' {
113
115
 
114
116
  }
115
117
  declare module 'analytica.click/ui-npm/src/components/ExternalComponent/index' {
118
+ /// <reference types="react" />
116
119
  export const ExternalComponent: ({ url, props, }: {
117
120
  url: string;
118
121
  props: Record<string, any>;
@@ -120,11 +123,13 @@ declare module 'analytica.click/ui-npm/src/components/ExternalComponent/index' {
120
123
 
121
124
  }
122
125
  declare module 'analytica.click/ui-npm/src/components/Feedback/index' {
126
+ /// <reference types="react" />
123
127
  import { IFeedbackWidget } from 'analytica.click/common-ui/src/types/index';
124
128
  export const Feedback: (props: IFeedbackWidget) => JSX.Element;
125
129
 
126
130
  }
127
131
  declare module 'analytica.click/ui-npm/src/components/UserProvider/DashboardAuthValidation' {
132
+ /// <reference types="react" />
128
133
  import { AuthedUserContext } from 'ag-common/dist/ui/helpers/jwt';
129
134
  import { IRequestCommon } from 'ag-common/dist/ui/helpers/routes';
130
135
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "analytica.click",
3
- "version": "0.0.267",
3
+ "version": "0.0.268",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "typings": "dist/index.d.ts",