@myinterview/widget-react 1.0.46 → 1.0.47
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/cjs/i18n/config.d.ts +3 -0
- package/dist/cjs/index.js +46 -43
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/utils/sentry.utils.d.ts +1 -1
- package/dist/esm/i18n/config.d.ts +3 -0
- package/dist/esm/index.js +46 -43
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/utils/sentry.utils.d.ts +1 -1
- package/package.json +2 -3
- package/dist/cjs/utils/practiceQuestions.utils.d.ts +0 -2
- package/dist/esm/utils/practiceQuestions.utils.d.ts +0 -2
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import * as Sentry from '@sentry/browser';
|
|
2
2
|
import { DoneInvokeEvent } from 'xstate';
|
|
3
3
|
export declare const SentryHub: Sentry.Hub;
|
|
4
|
-
export declare const SentryTrackingFn: (event: DoneInvokeEvent<any>, context: any, name: string) => void;
|
|
4
|
+
export declare const SentryTrackingFn: (event: DoneInvokeEvent<any>, context: any, name: string, level: 'fatal' | 'error' | 'warning' | 'log' | 'info' | 'debug') => void;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@myinterview/widget-react",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.47",
|
|
4
4
|
"description": "myInterview widget v3",
|
|
5
5
|
"module": "dist/esm/index.js",
|
|
6
6
|
"main": "dist/cjs/index.js",
|
|
@@ -110,7 +110,7 @@
|
|
|
110
110
|
"@rollup/plugin-node-resolve": "^13.3.0",
|
|
111
111
|
"@rollup/plugin-typescript": "^8.3.3",
|
|
112
112
|
"@testing-library/jest-dom": "^5.16.4",
|
|
113
|
-
"@testing-library/react": "^13.
|
|
113
|
+
"@testing-library/react": "^12.1.5 || ^13.4.0",
|
|
114
114
|
"@testing-library/user-event": "^13.5.0",
|
|
115
115
|
"@types/crypto-js": "^4.1.1",
|
|
116
116
|
"@types/jest": "^27.4.1",
|
|
@@ -144,7 +144,6 @@
|
|
|
144
144
|
"webpack-cli": "^4.10.0"
|
|
145
145
|
},
|
|
146
146
|
"peerDependencies": {
|
|
147
|
-
"@testing-library/react": "^12.1.5 || ^13.4.0",
|
|
148
147
|
"react": "^16.8.0 || ^17.0.0 || ^18.0.0",
|
|
149
148
|
"react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0"
|
|
150
149
|
},
|