@myinterview/widget-react 1.0.56-experimental-15 → 1.0.56-experimental-8647f49-4c92db4
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/index.js +36 -1
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/interfaces/microphoneInterface.d.ts +1 -0
- package/dist/cjs/utils/sentry.utils.d.ts +2 -0
- package/dist/esm/index.js +36 -1
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/interfaces/microphoneInterface.d.ts +1 -0
- package/dist/esm/utils/sentry.utils.d.ts +2 -0
- package/package.json +23 -23
|
@@ -1,4 +1,6 @@
|
|
|
1
1
|
import * as Sentry from '@sentry/browser';
|
|
2
2
|
import { DoneInvokeEvent } from 'xstate';
|
|
3
|
+
import { Breadcrumb } from '@sentry/types';
|
|
3
4
|
export declare const SentryHub: Sentry.Hub;
|
|
4
5
|
export declare const SentryTrackingFn: (event: DoneInvokeEvent<any>, context: any, name: string, level: 'fatal' | 'error' | 'warning' | 'log' | 'info' | 'debug') => void;
|
|
6
|
+
export declare const SentryBreadcrumb: ({ type, level, event_id, category, message, data }: Breadcrumb) => void;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@myinterview/widget-react",
|
|
3
|
-
"version": "1.0.56-experimental-
|
|
3
|
+
"version": "1.0.56-experimental-8647f49-4c92db4",
|
|
4
4
|
"description": "myInterview widget v3",
|
|
5
5
|
"module": "dist/esm/index.js",
|
|
6
6
|
"main": "dist/cjs/index.js",
|
|
@@ -79,14 +79,30 @@
|
|
|
79
79
|
]
|
|
80
80
|
},
|
|
81
81
|
"devDependencies": {
|
|
82
|
-
"
|
|
82
|
+
"webpack-manifest-plugin": "^4.0.2",
|
|
83
|
+
"webpack-dev-server": "^4.6.0",
|
|
84
|
+
"terser-webpack-plugin": "^5.2.5",
|
|
85
|
+
"style-loader": "^3.3.1",
|
|
86
|
+
"source-map-loader": "^3.0.0",
|
|
87
|
+
"sass-loader": "^12.3.0",
|
|
88
|
+
"mini-css-extract-plugin": "^2.4.5",
|
|
89
|
+
"html-webpack-plugin": "^5.5.0",
|
|
90
|
+
"file-loader": "^6.2.0",
|
|
91
|
+
"css-loader": "^6.5.1",
|
|
92
|
+
"case-sensitive-paths-webpack-plugin": "^2.4.0",
|
|
93
|
+
"babel-preset-react-app": "^10.0.1",
|
|
94
|
+
"@svgr/webpack": "^5.5.0",
|
|
83
95
|
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.3",
|
|
96
|
+
"@babel/core": "^7.16.0",
|
|
97
|
+
"jest": "^27.4.3",
|
|
98
|
+
"jest-resolve": "^27.4.2",
|
|
99
|
+
"jest-watch-typeahead": "^1.0.0",
|
|
100
|
+
"babel-jest": "^27.4.2",
|
|
84
101
|
"@rollup/plugin-babel": "^6.0.2",
|
|
85
102
|
"@rollup/plugin-commonjs": "^22.0.1",
|
|
86
103
|
"@rollup/plugin-json": "^4.1.0",
|
|
87
104
|
"@rollup/plugin-node-resolve": "^13.3.0",
|
|
88
105
|
"@rollup/plugin-typescript": "^8.3.3",
|
|
89
|
-
"@svgr/webpack": "^5.5.0",
|
|
90
106
|
"@testing-library/jest-dom": "^5.16.4",
|
|
91
107
|
"@testing-library/react": "^12.1.5 || ^13.4.0",
|
|
92
108
|
"@testing-library/user-event": "^13.5.0",
|
|
@@ -99,27 +115,14 @@
|
|
|
99
115
|
"@types/styled-components": "^5.1.25",
|
|
100
116
|
"@typescript-eslint/eslint-plugin": "^5.19.0",
|
|
101
117
|
"@typescript-eslint/parser": "^5.30.0",
|
|
102
|
-
"babel-jest": "^27.4.2",
|
|
103
|
-
"babel-loader": "^8.3.0",
|
|
104
|
-
"babel-preset-react-app": "^10.0.1",
|
|
105
|
-
"case-sensitive-paths-webpack-plugin": "^2.4.0",
|
|
106
118
|
"classnames": "^2.3.1",
|
|
107
|
-
"css-loader": "^6.5.1",
|
|
108
119
|
"eslint": "^8.13.0",
|
|
109
120
|
"eslint-config-airbnb": "^19.0.4",
|
|
110
121
|
"eslint-config-airbnb-typescript": "^17.0.0",
|
|
111
|
-
"eslint-config-react-app": "^7.0.0",
|
|
112
122
|
"eslint-plugin-import": "^2.26.0",
|
|
113
123
|
"eslint-plugin-jsx-a11y": "^6.5.1",
|
|
114
124
|
"eslint-plugin-react": "^7.29.4",
|
|
115
125
|
"eslint-plugin-react-hooks": "^4.4.0",
|
|
116
|
-
"eslint-webpack-plugin": "^3.1.1",
|
|
117
|
-
"file-loader": "^6.2.0",
|
|
118
|
-
"html-webpack-plugin": "^5.5.0",
|
|
119
|
-
"jest": "^27.4.3",
|
|
120
|
-
"jest-resolve": "^27.4.2",
|
|
121
|
-
"jest-watch-typeahead": "^1.0.0",
|
|
122
|
-
"mini-css-extract-plugin": "^2.4.5",
|
|
123
126
|
"raw-loader": "^4.0.2",
|
|
124
127
|
"react": "^18.0.0",
|
|
125
128
|
"react-dom": "^18.0.0",
|
|
@@ -129,20 +132,17 @@
|
|
|
129
132
|
"rollup-plugin-peer-deps-external": "^2.2.4",
|
|
130
133
|
"rollup-plugin-postcss": "^4.0.2",
|
|
131
134
|
"sass": "^1.50.0",
|
|
132
|
-
"sass-loader": "^12.3.0",
|
|
133
135
|
"sass-to-string": "^1.6.3",
|
|
134
|
-
"source-map-loader": "^3.0.0",
|
|
135
|
-
"style-loader": "^3.3.1",
|
|
136
|
-
"terser-webpack-plugin": "^5.2.5",
|
|
137
136
|
"typescript": "^4.7.4",
|
|
138
137
|
"webpack": "^5.73.0",
|
|
139
138
|
"webpack-cli": "^4.10.0",
|
|
140
|
-
"
|
|
141
|
-
"webpack-
|
|
139
|
+
"eslint-config-react-app": "^7.0.0",
|
|
140
|
+
"eslint-webpack-plugin": "^3.1.1"
|
|
142
141
|
},
|
|
143
142
|
"peerDependencies": {
|
|
144
143
|
"react": ">= 16.8.0",
|
|
145
|
-
"react-dom": ">= 16.8.0"
|
|
144
|
+
"react-dom": ">= 16.8.0",
|
|
145
|
+
"babel-loader": "> =8.0.0"
|
|
146
146
|
},
|
|
147
147
|
"jest": {
|
|
148
148
|
"roots": [
|