react-covideo-embed 1.0.82-test.2 → 1.0.82
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/.eslintrc +56 -0
- package/build/index.js +623 -623
- package/build/index.js.map +1 -1
- package/build/react-covideo-embed.esm.js +6082 -6105
- package/build/react-covideo-embed.esm.js.map +1 -1
- package/dist/app/pages/preview/PreviewVideoPlayer.d.ts +1 -0
- package/dist/app/pages/recordv1/ChooseRecordingOptions.d.ts +2 -1
- package/dist/app/pages/recordv1/ModalRecordingVideoSettings.d.ts +2 -1
- package/dist/app/pages/recordv1/RecordCam.d.ts +3 -1
- package/dist/app/pages/recordv1/RecordingHeadingWithRouteGuard.d.ts +2 -1
- package/dist/app/pages/recordv1/detailsPreview/DetailsPreview.d.ts +1 -1
- package/dist/app/pages/recordv1/detailsPreview/types.d.ts +2 -1
- package/dist/index.d.ts +24 -0
- package/dist/lib/api/analytics/index.d.ts +3 -0
- package/dist/lib/api/analytics/types.d.ts +19 -0
- package/dist/lib/api/analytics/useUpdateStatsHotspotMutation.d.ts +3 -0
- package/dist/lib/api/analytics/useUpdateViewMutation.d.ts +3 -0
- package/dist/lib/api/analytics/utils.d.ts +1 -0
- package/dist/lib/api/index.d.ts +1 -0
- package/dist/lib/context/ConfigurationContext.d.ts +7 -1
- package/package.json +42 -37
- package/.vscode/settings.json +0 -12
- package/dist/index.js +0 -4567
- package/dist/index.js.map +0 -1
- package/dist/react-covideo-embed.css +0 -1
- package/dist/react-covideo-embed.esm.js +0 -18407
- package/dist/react-covideo-embed.esm.js.map +0 -1
package/.eslintrc
ADDED
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
{
|
|
2
|
+
"root": true,
|
|
3
|
+
"env": {
|
|
4
|
+
"browser": true,
|
|
5
|
+
"es2020": true
|
|
6
|
+
},
|
|
7
|
+
"extends": [
|
|
8
|
+
/* "eslint:recommended",
|
|
9
|
+
"plugin:react/recommended",
|
|
10
|
+
"plugin:react-hooks/recommended",
|
|
11
|
+
"plugin:@typescript-eslint/recommended", */
|
|
12
|
+
"prettier"
|
|
13
|
+
],
|
|
14
|
+
"plugins": [
|
|
15
|
+
/* "react",
|
|
16
|
+
"react-hooks",
|
|
17
|
+
"@typescript-eslint", */
|
|
18
|
+
"unused-imports"
|
|
19
|
+
],
|
|
20
|
+
"parser": "@typescript-eslint/parser",
|
|
21
|
+
"parserOptions": {
|
|
22
|
+
"ecmaVersion": "latest",
|
|
23
|
+
"sourceType": "module",
|
|
24
|
+
"ecmaFeatures": { "jsx": true }
|
|
25
|
+
},
|
|
26
|
+
"settings": {
|
|
27
|
+
"react": { "version": "detect" }
|
|
28
|
+
},
|
|
29
|
+
"rules": {
|
|
30
|
+
"react/react-in-jsx-scope": "off",
|
|
31
|
+
"react/prop-types": "off",
|
|
32
|
+
"no-useless-escape": "warn",
|
|
33
|
+
"react-hooks/exhaustive-deps": "off",
|
|
34
|
+
"eqeqeq": "off",
|
|
35
|
+
"no-control-regex": "off",
|
|
36
|
+
"@typescript-eslint/no-unused-vars": "off",
|
|
37
|
+
"@typescript-eslint/no-explicit-any": "off",
|
|
38
|
+
"unused-imports/no-unused-imports": "warn",
|
|
39
|
+
"unused-imports/no-unused-vars": [
|
|
40
|
+
"warn",
|
|
41
|
+
{ "vars": "all", "varsIgnorePattern": "^_", "args": "after-used", "argsIgnorePattern": "^_" }
|
|
42
|
+
],
|
|
43
|
+
},
|
|
44
|
+
"overrides": [
|
|
45
|
+
{
|
|
46
|
+
"files": ["**/*.ts?(x)"],
|
|
47
|
+
"rules": {
|
|
48
|
+
"no-useless-escape": "off",
|
|
49
|
+
"react-hooks/exhaustive-deps": "off",
|
|
50
|
+
"eqeqeq": "off",
|
|
51
|
+
"no-control-regex": "off",
|
|
52
|
+
|
|
53
|
+
}
|
|
54
|
+
}
|
|
55
|
+
]
|
|
56
|
+
}
|