react-covideo-embed 0.1.0
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/README.md +65 -0
- package/build/app/App.d.ts +2 -0
- package/build/app/pages/insertVideo/InsertVideo.d.ts +5 -0
- package/build/app/pages/insertVideo/components/InsertVideoSettings.d.ts +18 -0
- package/build/app/pages/insertVideo/components/VehicleSearch.d.ts +14 -0
- package/build/app/pages/insertVideo/components/index.d.ts +2 -0
- package/build/app/pages/library/Library.d.ts +11 -0
- package/build/app/pages/library/components/NoVideos.d.ts +6 -0
- package/build/app/pages/library/components/PageInfo.d.ts +7 -0
- package/build/app/pages/library/components/Search.d.ts +6 -0
- package/build/app/pages/library/components/UserDropdown.d.ts +6 -0
- package/build/app/pages/library/components/VideoItem.d.ts +9 -0
- package/build/app/pages/library/components/index.d.ts +5 -0
- package/build/app/pages/login/Login.d.ts +5 -0
- package/build/app/pages/merge/Merge.d.ts +1 -0
- package/build/app/pages/merge/components/Player.d.ts +7 -0
- package/build/app/pages/merge/components/VideoMerge.d.ts +15 -0
- package/build/app/pages/merge/components/VideoRow.d.ts +1 -0
- package/build/app/pages/merge/components/VideoThumbnail.d.ts +2 -0
- package/build/app/pages/previewUpload/PreviewUpload.d.ts +2 -0
- package/build/app/pages/record/both/RecordBoth.d.ts +1 -0
- package/build/app/pages/record/both/main/Main.d.ts +1 -0
- package/build/app/pages/record/cam/RecordCam.d.ts +1 -0
- package/build/app/pages/record/cam/main/Main.d.ts +1 -0
- package/build/app/pages/record/home/RecordHome.d.ts +1 -0
- package/build/app/pages/record/screen/RecordScreen.d.ts +2 -0
- package/build/app/pages/record/screen/main/Main.d.ts +1 -0
- package/build/app/pages/video/Upload.d.ts +10 -0
- package/build/app/pages/video/components/Preview.d.ts +12 -0
- package/build/app/pages/video/components/videoPlayer/VideoPlayer.d.ts +29 -0
- package/build/app/pages/video/components/videoPlayer/components/index.d.ts +2 -0
- package/build/app/pages/video/components/videoPlayer/components/onScreenPlayButton.d.ts +10 -0
- package/build/app/pages/video/components/videoPlayer/components/progressBar.d.ts +10 -0
- package/build/app/pages/video/components/videoPlayer/components/trim/Handle.d.ts +15 -0
- package/build/app/pages/video/components/videoPlayer/components/trim/SliderRail.d.ts +7 -0
- package/build/app/pages/video/components/videoPlayer/components/trim/Tick.d.ts +9 -0
- package/build/app/pages/video/components/videoPlayer/components/trim/TimelineRange.d.ts +19 -0
- package/build/app/pages/video/components/videoPlayer/components/trim/Track.d.ts +10 -0
- package/build/app/pages/video/components/videoPlayer/components/trim/Trim.d.ts +13 -0
- package/build/app/pages/video/components/videoPlayer/components/trim/VideoPreviewTrack.d.ts +7 -0
- package/build/app/pages/video/components/videoPlayer/components/videoControls.d.ts +25 -0
- package/build/app/pages/video/components/videoPlayer/index.d.ts +1 -0
- package/build/app/pages/video/videoDetails/components/AttributesFields.d.ts +7 -0
- package/build/app/pages/voiceover/Voiceover.d.ts +1 -0
- package/build/app/pages/voiceover/components/AudioRecorder.d.ts +14 -0
- package/build/app/pages/voiceover/components/VideoPreview.d.ts +11 -0
- package/build/app/pages/voiceover/components/util.d.ts +1 -0
- package/build/app/pages/wheelsTV/WheelsTV.d.ts +1 -0
- package/build/app/pages/wheelsTV/components/PageInfo.d.ts +7 -0
- package/build/app/pages/wheelsTV/components/Search.d.ts +6 -0
- package/build/app/pages/wheelsTV/components/index.d.ts +2 -0
- package/build/index.d.ts +27 -0
- package/build/index.js +2 -0
- package/build/index.js.LICENSE.txt +42 -0
- package/build/lib/api/attributesApi.d.ts +8 -0
- package/build/lib/api/authApi.d.ts +11 -0
- package/build/lib/api/base.d.ts +10 -0
- package/build/lib/api/designApi.d.ts +86 -0
- package/build/lib/api/index.d.ts +10 -0
- package/build/lib/api/inventoryApi.d.ts +10 -0
- package/build/lib/api/shareApi.d.ts +11 -0
- package/build/lib/api/types.d.ts +44 -0
- package/build/lib/api/videoRequestApi.d.ts +25 -0
- package/build/lib/api/videoTagsApi.d.ts +12 -0
- package/build/lib/api/videosApi.d.ts +63 -0
- package/build/lib/api/voiceOverApi.d.ts +20 -0
- package/build/lib/api/wtvApi.d.ts +31 -0
- package/build/lib/components/Button.d.ts +21 -0
- package/build/lib/components/CheckboxInput.d.ts +19 -0
- package/build/lib/components/CloseButton.d.ts +13 -0
- package/build/lib/components/Container.d.ts +6 -0
- package/build/lib/components/CountDown.d.ts +1 -0
- package/build/lib/components/DragAndDrop.d.ts +26 -0
- package/build/lib/components/Dropdown.d.ts +29 -0
- package/build/lib/components/HoverPopup.d.ts +15 -0
- package/build/lib/components/Input.d.ts +10 -0
- package/build/lib/components/Label.d.ts +6 -0
- package/build/lib/components/LoadingIndicator.d.ts +11 -0
- package/build/lib/components/Logo.d.ts +5 -0
- package/build/lib/components/MainWrapper.d.ts +6 -0
- package/build/lib/components/PreviewVideoBar.d.ts +7 -0
- package/build/lib/components/RouteLeavingGuard.d.ts +18 -0
- package/build/lib/components/Spinner.d.ts +6 -0
- package/build/lib/components/TopBar.d.ts +9 -0
- package/build/lib/components/index.d.ts +16 -0
- package/build/lib/components/inputs/CheckboxInput.d.ts +18 -0
- package/build/lib/components/inputs/RadioInput.d.ts +14 -0
- package/build/lib/components/inputs/index.d.ts +2 -0
- package/build/lib/components/modal/Modal.d.ts +13 -0
- package/build/lib/components/modal/ModalLeave.d.ts +15 -0
- package/build/lib/components/modal/ModalMarkAsSent.d.ts +6 -0
- package/build/lib/components/modal/ModalRecordingSettings.d.ts +10 -0
- package/build/lib/components/modals/Modal.d.ts +13 -0
- package/build/lib/components/modals/ModalInputText.d.ts +11 -0
- package/build/lib/components/modals/ModalLeave.d.ts +15 -0
- package/build/lib/components/modals/ModalPrompt.d.ts +12 -0
- package/build/lib/components/modals/ModalUpload.d.ts +7 -0
- package/build/lib/components/toast-notifications/ToastNotification.d.ts +6 -0
- package/build/lib/components/toast-notifications/index.d.ts +4 -0
- package/build/lib/components/videoUpload/MultipleUploadList.d.ts +8 -0
- package/build/lib/components/videoUpload/VideoUpload.d.ts +15 -0
- package/build/lib/components/videoUpload/styles.d.ts +17 -0
- package/build/lib/config.d.ts +24 -0
- package/build/lib/const/AutomotiveRole.d.ts +12 -0
- package/build/lib/const/Folder.d.ts +8 -0
- package/build/lib/const/InternalCustomers.d.ts +9 -0
- package/build/lib/const/MarkAsSentOptions.d.ts +14 -0
- package/build/lib/const/PackageName.d.ts +7 -0
- package/build/lib/const/VideoEmailStatus.d.ts +7 -0
- package/build/lib/const/VideoStatus.d.ts +6 -0
- package/build/lib/const/VideoType.d.ts +15 -0
- package/build/lib/const/index.d.ts +6 -0
- package/build/lib/context/ActionDispatchContext.d.ts +5 -0
- package/build/lib/context/AuthorizationContext.d.ts +115 -0
- package/build/lib/context/ConfigurationContext.d.ts +16 -0
- package/build/lib/context/actionCreators.d.ts +37 -0
- package/build/lib/context/authHandlers.d.ts +2 -0
- package/build/lib/context/authReducer.d.ts +16 -0
- package/build/lib/context/index.d.ts +4 -0
- package/build/lib/context/types.d.ts +148 -0
- package/build/lib/hooks/index.d.ts +3 -0
- package/build/lib/hooks/query/inventoryItem/index.d.ts +1 -0
- package/build/lib/hooks/query/inventoryItem/useGetInventoryItems.d.ts +12 -0
- package/build/lib/hooks/useCreateVideo.d.ts +21 -0
- package/build/lib/hooks/useEncodeVideo.d.ts +16 -0
- package/build/lib/hooks/useMediaRecorder.d.ts +46 -0
- package/build/lib/hooks/usePresignedUrl.d.ts +16 -0
- package/build/lib/hooks/useQueryFetch.d.ts +19 -0
- package/build/lib/hooks/useQueryState.d.ts +22 -0
- package/build/lib/hooks/useS3Upload.d.ts +15 -0
- package/build/lib/hooks/useVideoShareLink.d.ts +18 -0
- package/build/lib/hooks/useVideoStore.d.ts +17 -0
- package/build/lib/hooks/useVideoTranscriptionStart.d.ts +9 -0
- package/build/lib/images/AccountIcon.d.ts +2 -0
- package/build/lib/images/AddIcon.d.ts +2 -0
- package/build/lib/images/ArrowBackcon.d.ts +2 -0
- package/build/lib/images/CarIcon.d.ts +2 -0
- package/build/lib/images/CheckmarkIcon.d.ts +2 -0
- package/build/lib/images/CloseCircleIcon.d.ts +2 -0
- package/build/lib/images/CloseIcon.d.ts +2 -0
- package/build/lib/images/CutIcon.d.ts +2 -0
- package/build/lib/images/DeleteIcon.d.ts +2 -0
- package/build/lib/images/Drag.d.ts +2 -0
- package/build/lib/images/DropdownIcon.d.ts +1 -0
- package/build/lib/images/HashtagIcon.d.ts +2 -0
- package/build/lib/images/InsertVideoIcon.d.ts +2 -0
- package/build/lib/images/LaptopIcon.d.ts +2 -0
- package/build/lib/images/LogoCDS.d.ts +2 -0
- package/build/lib/images/LogoGeneral.d.ts +2 -0
- package/build/lib/images/MovieIcon.d.ts +2 -0
- package/build/lib/images/SaveIcon.d.ts +2 -0
- package/build/lib/images/SettingsIcon.d.ts +2 -0
- package/build/lib/images/SmallLogoIcon.d.ts +2 -0
- package/build/lib/images/VectorIcon.d.ts +2 -0
- package/build/lib/images/VideoIcon.d.ts +2 -0
- package/build/lib/images/ZoomInIcon.d.ts +2 -0
- package/build/lib/images/ZoomOutIcon.d.ts +2 -0
- package/build/lib/images/pauseButton.d.ts +2 -0
- package/build/lib/images/playButton.d.ts +2 -0
- package/build/lib/images/volumeOff.d.ts +1 -0
- package/build/lib/style/index.d.ts +2 -0
- package/build/lib/style/theme.d.ts +121 -0
- package/build/lib/utils/UseOnClickOutside.d.ts +3 -0
- package/build/lib/utils/automotiveRolePermissionChecks.d.ts +11 -0
- package/build/lib/utils/functions.d.ts +18 -0
- package/build/lib/utils/object.d.ts +3 -0
- package/build/lib/utils/reactions.d.ts +3 -0
- package/package.json +68 -0
- package/react-covideo-embed-0.1.0.tgz +0 -0
package/package.json
ADDED
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "react-covideo-embed",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"private": false,
|
|
5
|
+
"description": "Covideo platform as an embeddable React component.",
|
|
6
|
+
"main": "./build/index.js",
|
|
7
|
+
"types": "./build/index.d.ts",
|
|
8
|
+
"scripts": {
|
|
9
|
+
"build": "webpack",
|
|
10
|
+
"watch": "webpack --watch"
|
|
11
|
+
},
|
|
12
|
+
"author": "Covideo",
|
|
13
|
+
"peerDependencies": {
|
|
14
|
+
"react": "^18.2.0",
|
|
15
|
+
"react-dom": "^18.2.0"
|
|
16
|
+
},
|
|
17
|
+
"devDependencies": {
|
|
18
|
+
"react": "^18.2.0",
|
|
19
|
+
"react-dom": "^18.2.0",
|
|
20
|
+
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
|
|
21
|
+
"@svgr/webpack": "^8.1.0",
|
|
22
|
+
"@types/color-convert": "^2.0.0",
|
|
23
|
+
"@types/file-saver": "^2.0.5",
|
|
24
|
+
"@types/jwt-decode": "^3.1.0",
|
|
25
|
+
"@types/lodash": "^4.14.190",
|
|
26
|
+
"@types/node": "^16.18.3",
|
|
27
|
+
"@types/react": "^18.0.25",
|
|
28
|
+
"@types/react-beautiful-dnd": "^13.1.3",
|
|
29
|
+
"@types/react-dom": "^18.0.9",
|
|
30
|
+
"@types/react-router-dom": "^5.3.3",
|
|
31
|
+
"@types/react-select": "^3.0.12",
|
|
32
|
+
"@types/styled-components": "^5.1.26",
|
|
33
|
+
"css-loader": "^6.8.1",
|
|
34
|
+
"file-loader": "^6.2.0",
|
|
35
|
+
"style-loader": "^3.3.3",
|
|
36
|
+
"ts-loader": "^9.4.4",
|
|
37
|
+
"typescript": "^4.9.3",
|
|
38
|
+
"webpack": "^5.88.2",
|
|
39
|
+
"webpack-cli": "^5.1.4"
|
|
40
|
+
},
|
|
41
|
+
"dependencies": {
|
|
42
|
+
"assert": "^2.1.0",
|
|
43
|
+
"axios": "^0.21.1",
|
|
44
|
+
"buffer": "^6.0.3",
|
|
45
|
+
"color-convert": "^2.0.1",
|
|
46
|
+
"constants-browserify": "^1.0.0",
|
|
47
|
+
"dayjs": "^1.11.6",
|
|
48
|
+
"file-saver": "^2.0.5",
|
|
49
|
+
"formik": "^2.2.9",
|
|
50
|
+
"fs-extra": "^11.1.1",
|
|
51
|
+
"jwt-decode": "^3.1.2",
|
|
52
|
+
"lodash": "^4.17.21",
|
|
53
|
+
"os-browserify": "^0.3.0",
|
|
54
|
+
"path-browserify": "^1.0.1",
|
|
55
|
+
"rc-progress": "^3.4.1",
|
|
56
|
+
"react-beautiful-dnd": "^13.1.1",
|
|
57
|
+
"react-compound-slider": "^3.4.0",
|
|
58
|
+
"react-full-screen": "^1.1.1",
|
|
59
|
+
"react-icons": "^4.7.1",
|
|
60
|
+
"react-query": "^3.39.2",
|
|
61
|
+
"react-router-dom": "^5.1.2",
|
|
62
|
+
"react-select": "^3.1.0",
|
|
63
|
+
"react-spinners": "^0.13.6",
|
|
64
|
+
"stream-browserify": "^3.0.0",
|
|
65
|
+
"styled-components": "^5.3.6",
|
|
66
|
+
"worker-timers": "^7.0.59"
|
|
67
|
+
}
|
|
68
|
+
}
|
|
Binary file
|