react-covideo-embed 1.0.91 → 1.0.96
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 +33 -0
- package/build/index.js +1058 -859
- package/build/index.js.map +1 -1
- package/build/react-covideo-embed.esm.js +10517 -8944
- package/build/react-covideo-embed.esm.js.map +1 -1
- package/dist/app/pages/quickVideos/QuickVideos.d.ts +5 -1
- package/dist/app/pages/quickVideos/assets/AddVideoIcon.d.ts +2 -0
- package/dist/app/pages/quickVideos/assets/VideoIcon.d.ts +2 -0
- package/dist/app/pages/quickVideos/assets/index.d.ts +2 -0
- package/dist/app/pages/quickVideos/card/QuickVideoCard.d.ts +10 -0
- package/dist/app/pages/quickVideos/card/components/QuickVideoCardBodySection.d.ts +6 -0
- package/dist/app/pages/quickVideos/card/components/QuickVideoCardFooterSection.d.ts +6 -0
- package/dist/app/pages/quickVideos/card/components/QuickVideoCardHeader.d.ts +6 -0
- package/dist/app/pages/quickVideos/form/Manager.d.ts +9 -0
- package/dist/app/pages/quickVideos/form/Page.d.ts +8 -0
- package/dist/app/pages/quickVideos/form/View.d.ts +5 -0
- package/dist/app/pages/quickVideos/form/data/payload.d.ts +3 -0
- package/dist/app/pages/quickVideos/form/data/validation.d.ts +1 -0
- package/dist/app/pages/quickVideos/form/data/values.d.ts +19 -0
- package/dist/app/pages/quickVideos/form/hooks/useSubmit.d.ts +4 -0
- package/dist/app/pages/quickVideos/modals/QuickVideoAddVideoModal.d.ts +8 -0
- package/dist/app/pages/quickVideos/modals/QuickVideoDetailsModal.d.ts +9 -0
- package/dist/app/pages/quickVideos/modals/components/QuickVideoAddVideoListItem.d.ts +7 -0
- package/dist/app/pages/quickVideos/modals/components/QuickVideoDetailsModalFooter.d.ts +4 -0
- package/dist/app/pages/quickVideos/modals/components/QuickVideoDetailsModalForm.d.ts +5 -0
- package/dist/app/pages/quickVideos/modals/components/QuickVideoDetailsModalHeader.d.ts +6 -0
- package/dist/app/pages/quickVideos/modals/components/QuickVideoPart.d.ts +11 -0
- package/dist/app/pages/quickVideos/modals/components/QuickVideoUserConfigurationVideoDetails.d.ts +7 -0
- package/dist/app/pages/quickVideos/modals/styles.d.ts +7 -0
- package/dist/app/pages/quickVideos/styles.d.ts +29 -0
- package/dist/app/pages/quickVideos/utils.d.ts +14 -0
- package/dist/index.d.ts +25 -1
- package/dist/lib/api/quickVideos/constants.d.ts +42 -0
- package/dist/lib/api/quickVideos/quickVideoKeys.d.ts +7 -0
- package/dist/lib/api/quickVideos/types.d.ts +78 -0
- package/dist/lib/api/quickVideos/useCreateQuickVideoJobMutation.d.ts +3 -0
- package/dist/lib/api/quickVideos/useGetQuickVideoAvailableOpportunity.d.ts +2 -0
- package/dist/lib/api/quickVideos/useGetQuickVideoAvailableOpportunityWithLeadDetails.d.ts +2 -0
- package/dist/lib/api/quickVideos/useSendQuickVideoWithLeadDetailsMutation.d.ts +3 -0
- package/dist/lib/api/quickVideos/useUpdateQuickVideoUserConfigurationMutation.d.ts +3 -0
- package/dist/lib/api/videos/types.d.ts +22 -0
- package/dist/lib/api/videos/useInfiniteQueryVideos.d.ts +10 -0
- package/dist/lib/api/videos/videoKeys.d.ts +4 -0
- package/dist/lib/components/styles/typography.d.ts +6 -2
- package/dist/lib/context/ConfigurationContext.d.ts +5 -1
- package/dist/lib/hooks/GTM/actions/recording/recordingSettings.d.ts +4 -0
- package/dist/lib/hooks/GTM/types.d.ts +2 -1
- package/dist/lib/hooks/GTM/useGTMAnalytics.d.ts +5 -0
- package/dist/lib/hooks/GTM/utils.d.ts +97 -0
- package/dist/lib/hooks/query/markAsSent/useQuickShareMarkAsSentMutation.d.ts +1 -0
- package/dist/lib/images/AccountIcon.d.ts +1 -1
- package/dist/lib/images/AddIcon.d.ts +1 -1
- package/dist/lib/images/CarIcon.d.ts +1 -1
- package/dist/lib/images/CdkLogo.d.ts +1 -1
- package/dist/lib/images/CdkSmallLogo.d.ts +1 -1
- package/dist/lib/images/CdkSmallLogoActive.d.ts +1 -1
- package/dist/lib/images/CheckmarkIcon.d.ts +1 -1
- package/dist/lib/images/CloseCircleIcon.d.ts +1 -1
- package/dist/lib/images/CloseIcon.d.ts +1 -1
- package/dist/lib/images/CovideoLogo.d.ts +1 -1
- package/dist/lib/images/CovideoSmallLogo.d.ts +1 -1
- package/dist/lib/images/CovideoSmallLogoActive.d.ts +1 -1
- package/dist/lib/images/DeleteIcon.d.ts +1 -1
- package/dist/lib/images/Drag.d.ts +1 -1
- package/dist/lib/images/HashtagIcon.d.ts +1 -1
- package/dist/lib/images/LaptopIcon.d.ts +1 -1
- package/dist/lib/images/SaveIcon.d.ts +1 -1
- package/dist/lib/images/SettingsIcon.d.ts +1 -1
- package/dist/lib/images/VectorIcon.d.ts +1 -1
- package/dist/lib/images/VideoIcon.d.ts +1 -1
- package/dist/lib/images/VirtualBgIcon.d.ts +1 -1
- package/dist/lib/images/ZoomInIcon.d.ts +1 -1
- package/dist/lib/images/ZoomOutIcon.d.ts +1 -1
- package/dist/lib/images/pauseButton.d.ts +1 -1
- package/dist/lib/images/playButton.d.ts +1 -1
- package/package.json +8 -7
|
@@ -54,3 +54,100 @@ export declare const TRACKED_PAGES: {
|
|
|
54
54
|
readonly pageLocation: PageSection.VOICE_RECORDER;
|
|
55
55
|
};
|
|
56
56
|
};
|
|
57
|
+
interface GetChangedFieldsOptions {
|
|
58
|
+
initialValues: Record<string, any>;
|
|
59
|
+
currentValues: Record<string, any>;
|
|
60
|
+
trackedFields?: string[] | Record<string, string> | Array<string | Record<string, string>>;
|
|
61
|
+
trackedArrayFields?: Record<string, string[] | Record<string, string>>;
|
|
62
|
+
onlyChangedList?: boolean;
|
|
63
|
+
}
|
|
64
|
+
/**
|
|
65
|
+
* BEFORE MAKING ANY CHANGES:
|
|
66
|
+
* PLEASE READ THIS COMMENT AND THE TESTS IN `test-getChangedFields.ts` TO UNDERSTAND HOW THIS FUNCTION WORKS.
|
|
67
|
+
*
|
|
68
|
+
* Compares `initialValues` vs `currentValues` and returns which tracked fields changed.
|
|
69
|
+
*
|
|
70
|
+
* The function works in two steps:
|
|
71
|
+
* 1) `flattenObject(...)` flattens the input objects into a `{ [path]: string }` map,
|
|
72
|
+
* but **only for paths you explicitly track** via `trackedFields` / `trackedArrayFields`.
|
|
73
|
+
* 2) `getChangedFields(...)` diffs the two flattened maps and returns:
|
|
74
|
+
* - `changed_fields`: list of changed fields (labels when label mapping is provided)
|
|
75
|
+
* - optionally (`onlyChangedList: false`) `<path>_before` and `<path>_after` values
|
|
76
|
+
*
|
|
77
|
+
* @param initialValues - baseline object (e.g. values on load)
|
|
78
|
+
* @param currentValues - current object (e.g. values after user edits)
|
|
79
|
+
* @param trackedFields - list/object of field paths to track (supports dot paths)
|
|
80
|
+
* - Simple field: `"title"`
|
|
81
|
+
* - Nested field: `"company.name"` (tracks only that nested path)
|
|
82
|
+
* - Labeled: `{ title: "Title" }`
|
|
83
|
+
* @param trackedArrayFields - map of array field name -> list of item subfields to track
|
|
84
|
+
* - Example: `{ links: ["linkText", "itemType"] }` tracks `links.<index>.linkText`, etc.
|
|
85
|
+
* - Note: this is intended for arrays of objects at the root key (or within that root branch)
|
|
86
|
+
* @param onlyChangedList - when true, return only `changed_fields`
|
|
87
|
+
*
|
|
88
|
+
* @returns An object containing:
|
|
89
|
+
* - `changed_fields: string[]`
|
|
90
|
+
* - and when `onlyChangedList` is false:
|
|
91
|
+
* - `<path>_before: string`
|
|
92
|
+
* - `<path>_after: string`
|
|
93
|
+
*
|
|
94
|
+
* @example
|
|
95
|
+
* // 1) Simple key/value pairs
|
|
96
|
+
* const res = getChangedFields({
|
|
97
|
+
* initialValues: { title: "A", company: "X", ignored: 123 },
|
|
98
|
+
* currentValues: { title: "B", company: "X", ignored: 999 },
|
|
99
|
+
* trackedFields: ["title", "company"],
|
|
100
|
+
* onlyChangedList: false,
|
|
101
|
+
* });
|
|
102
|
+
*
|
|
103
|
+
* // res.changed_fields -> ["title"]
|
|
104
|
+
* // res.title_before -> "A"
|
|
105
|
+
* // res.title_after -> "B"
|
|
106
|
+
*
|
|
107
|
+
* @example
|
|
108
|
+
* // 2) Nested object fields (dot paths)
|
|
109
|
+
* // Track specific nested properties with `trackedFields`:
|
|
110
|
+
* const res = getChangedFields({
|
|
111
|
+
* initialValues: {
|
|
112
|
+
* videoSource: { label: "OBS Virtual Camera", value: "abc" },
|
|
113
|
+
* },
|
|
114
|
+
* currentValues: {
|
|
115
|
+
* videoSource: { label: "FaceTime HD Camera", value: "def" },
|
|
116
|
+
* },
|
|
117
|
+
* trackedFields: ["videoSource.label"],
|
|
118
|
+
* onlyChangedList: true,
|
|
119
|
+
* });
|
|
120
|
+
*
|
|
121
|
+
* // res.changed_fields -> ["videoSource.label"]
|
|
122
|
+
*
|
|
123
|
+
* @example
|
|
124
|
+
* // 3) Array of objects
|
|
125
|
+
* // Track specific subfields on each array item using `trackedArrayFields`.
|
|
126
|
+
* const res = getChangedFields({
|
|
127
|
+
* initialValues,
|
|
128
|
+
* currentValues: data,
|
|
129
|
+
* trackedFields: ["title", "company"],
|
|
130
|
+
* trackedArrayFields: {
|
|
131
|
+
* links: ["linkText", "itemType", "fileThumbnail", "newWindow"],
|
|
132
|
+
* },
|
|
133
|
+
* onlyChangedList: false,
|
|
134
|
+
* });
|
|
135
|
+
*
|
|
136
|
+
* // If `links` changes, paths look like:
|
|
137
|
+
* // "links.0.linkText", "links.2.newWindow", ...
|
|
138
|
+
* // and you get before/after fields for each changed path.
|
|
139
|
+
*
|
|
140
|
+
* @example
|
|
141
|
+
* // 4) Label mapping
|
|
142
|
+
* const res = getChangedFields({
|
|
143
|
+
* initialValues: { title: "Old" },
|
|
144
|
+
* currentValues: { title: "New" },
|
|
145
|
+
* trackedFields: [{ title: "Title" }],
|
|
146
|
+
* });
|
|
147
|
+
*
|
|
148
|
+
* // res.changed_fields -> ["Title"]
|
|
149
|
+
*/
|
|
150
|
+
export declare function getChangedFields({ initialValues, currentValues, trackedFields, trackedArrayFields, onlyChangedList, }: GetChangedFieldsOptions): {
|
|
151
|
+
changed_fields: string[];
|
|
152
|
+
};
|
|
153
|
+
export {};
|
|
@@ -25,5 +25,6 @@ export interface IQuickShareMarkAsSentParams {
|
|
|
25
25
|
toastType?: QuickShareTypes;
|
|
26
26
|
reuseShortUrl?: boolean;
|
|
27
27
|
}
|
|
28
|
+
export declare const markQuickShareAsSent: (params: IQuickShareMarkAsSentParams) => Promise<any>;
|
|
28
29
|
export declare const useQuickShareMarkAsSentMutation: (onSuccessCallback: () => void) => import("react-query").UseMutationResult<MarkAsSentResponse, unknown, IQuickShareMarkAsSentParams, unknown>;
|
|
29
30
|
export {};
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export default AccountIcon;
|
|
2
|
-
declare const AccountIcon: import("styled-components").StyledComponent<
|
|
2
|
+
declare const AccountIcon: import("styled-components").StyledComponent<import("react").ComponentType<import("react").SVGProps<SVGSVGElement> & Record<string, unknown>>, import("styled-components").DefaultTheme, {}, never>;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export default AddIcon;
|
|
2
|
-
declare const AddIcon: import("styled-components").StyledComponent<
|
|
2
|
+
declare const AddIcon: import("styled-components").StyledComponent<import("react").ComponentType<import("react").SVGProps<SVGSVGElement> & Record<string, unknown>>, import("styled-components").DefaultTheme, {}, never>;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export default CarIcon;
|
|
2
|
-
declare const CarIcon: import("styled-components").StyledComponent<
|
|
2
|
+
declare const CarIcon: import("styled-components").StyledComponent<import("react").ComponentType<import("react").SVGProps<SVGSVGElement> & Record<string, unknown>>, import("styled-components").DefaultTheme, {}, never>;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export default CdkLogo;
|
|
2
|
-
declare const CdkLogo: import("styled-components").StyledComponent<
|
|
2
|
+
declare const CdkLogo: import("styled-components").StyledComponent<import("react").ComponentType<import("react").SVGProps<SVGSVGElement> & Record<string, unknown>>, import("styled-components").DefaultTheme, {}, never>;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export default CdkSmallLogo;
|
|
2
|
-
declare const CdkSmallLogo: import("styled-components").StyledComponent<
|
|
2
|
+
declare const CdkSmallLogo: import("styled-components").StyledComponent<import("react").ComponentType<import("react").SVGProps<SVGSVGElement> & Record<string, unknown>>, import("styled-components").DefaultTheme, {}, never>;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export default CdkSmallLogoActive;
|
|
2
|
-
declare const CdkSmallLogoActive: import("styled-components").StyledComponent<
|
|
2
|
+
declare const CdkSmallLogoActive: import("styled-components").StyledComponent<import("react").ComponentType<import("react").SVGProps<SVGSVGElement> & Record<string, unknown>>, import("styled-components").DefaultTheme, {}, never>;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export default CheckmarkIcon;
|
|
2
|
-
declare const CheckmarkIcon: import("styled-components").StyledComponent<
|
|
2
|
+
declare const CheckmarkIcon: import("styled-components").StyledComponent<import("react").ComponentType<import("react").SVGProps<SVGSVGElement> & Record<string, unknown>>, import("styled-components").DefaultTheme, {}, never>;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export default CloseCircleIcon;
|
|
2
|
-
declare const CloseCircleIcon: import("styled-components").StyledComponent<
|
|
2
|
+
declare const CloseCircleIcon: import("styled-components").StyledComponent<import("react").ComponentType<import("react").SVGProps<SVGSVGElement> & Record<string, unknown>>, import("styled-components").DefaultTheme, {}, never>;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export default CloseIcon;
|
|
2
|
-
declare const CloseIcon: import("styled-components").StyledComponent<
|
|
2
|
+
declare const CloseIcon: import("styled-components").StyledComponent<import("react").ComponentType<import("react").SVGProps<SVGSVGElement> & Record<string, unknown>>, import("styled-components").DefaultTheme, {}, never>;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export default CovideoLogo;
|
|
2
|
-
declare const CovideoLogo: import("styled-components").StyledComponent<
|
|
2
|
+
declare const CovideoLogo: import("styled-components").StyledComponent<import("react").ComponentType<import("react").SVGProps<SVGSVGElement> & Record<string, unknown>>, import("styled-components").DefaultTheme, {}, never>;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export default CovideoSmallLogo;
|
|
2
|
-
declare const CovideoSmallLogo: import("styled-components").StyledComponent<
|
|
2
|
+
declare const CovideoSmallLogo: import("styled-components").StyledComponent<import("react").ComponentType<import("react").SVGProps<SVGSVGElement> & Record<string, unknown>>, import("styled-components").DefaultTheme, {}, never>;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export default CovideoSmallLogoActive;
|
|
2
|
-
declare const CovideoSmallLogoActive: import("styled-components").StyledComponent<
|
|
2
|
+
declare const CovideoSmallLogoActive: import("styled-components").StyledComponent<import("react").ComponentType<import("react").SVGProps<SVGSVGElement> & Record<string, unknown>>, import("styled-components").DefaultTheme, {}, never>;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export default DeleteIcon;
|
|
2
|
-
declare const DeleteIcon: import("styled-components").StyledComponent<
|
|
2
|
+
declare const DeleteIcon: import("styled-components").StyledComponent<import("react").ComponentType<import("react").SVGProps<SVGSVGElement> & Record<string, unknown>>, import("styled-components").DefaultTheme, {}, never>;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export default Drag;
|
|
2
|
-
declare const Drag: import("styled-components").StyledComponent<
|
|
2
|
+
declare const Drag: import("styled-components").StyledComponent<import("react").ComponentType<import("react").SVGProps<SVGSVGElement> & Record<string, unknown>>, import("styled-components").DefaultTheme, {}, never>;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export default HashtagIcon;
|
|
2
|
-
declare const HashtagIcon: import("styled-components").StyledComponent<
|
|
2
|
+
declare const HashtagIcon: import("styled-components").StyledComponent<import("react").ComponentType<import("react").SVGProps<SVGSVGElement> & Record<string, unknown>>, import("styled-components").DefaultTheme, {}, never>;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export default LaptopIcon;
|
|
2
|
-
declare const LaptopIcon: import("styled-components").StyledComponent<
|
|
2
|
+
declare const LaptopIcon: import("styled-components").StyledComponent<import("react").ComponentType<import("react").SVGProps<SVGSVGElement> & Record<string, unknown>>, import("styled-components").DefaultTheme, {}, never>;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export default SaveIcon;
|
|
2
|
-
declare const SaveIcon: import("styled-components").StyledComponent<
|
|
2
|
+
declare const SaveIcon: import("styled-components").StyledComponent<import("react").ComponentType<import("react").SVGProps<SVGSVGElement> & Record<string, unknown>>, import("styled-components").DefaultTheme, {}, never>;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export default SettingsIcon;
|
|
2
|
-
declare const SettingsIcon: import("styled-components").StyledComponent<
|
|
2
|
+
declare const SettingsIcon: import("styled-components").StyledComponent<import("react").ComponentType<import("react").SVGProps<SVGSVGElement> & Record<string, unknown>>, import("styled-components").DefaultTheme, {}, never>;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export default VectorIcon;
|
|
2
|
-
declare const VectorIcon: import("styled-components").StyledComponent<
|
|
2
|
+
declare const VectorIcon: import("styled-components").StyledComponent<import("react").ComponentType<import("react").SVGProps<SVGSVGElement> & Record<string, unknown>>, import("styled-components").DefaultTheme, {}, never>;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export default VideoIcon;
|
|
2
|
-
declare const VideoIcon: import("styled-components").StyledComponent<
|
|
2
|
+
declare const VideoIcon: import("styled-components").StyledComponent<import("react").ComponentType<import("react").SVGProps<SVGSVGElement> & Record<string, unknown>>, import("styled-components").DefaultTheme, {}, never>;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export default VideoIcon;
|
|
2
|
-
declare const VideoIcon: import("styled-components").StyledComponent<
|
|
2
|
+
declare const VideoIcon: import("styled-components").StyledComponent<import("react").ComponentType<import("react").SVGProps<SVGSVGElement> & Record<string, unknown>>, import("styled-components").DefaultTheme, {}, never>;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export default ZoomInIcon;
|
|
2
|
-
declare const ZoomInIcon: import("styled-components").StyledComponent<
|
|
2
|
+
declare const ZoomInIcon: import("styled-components").StyledComponent<import("react").ComponentType<import("react").SVGProps<SVGSVGElement> & Record<string, unknown>>, import("styled-components").DefaultTheme, {}, never>;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export default ZoomOutIcon;
|
|
2
|
-
declare const ZoomOutIcon: import("styled-components").StyledComponent<
|
|
2
|
+
declare const ZoomOutIcon: import("styled-components").StyledComponent<import("react").ComponentType<import("react").SVGProps<SVGSVGElement> & Record<string, unknown>>, import("styled-components").DefaultTheme, {}, never>;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export default PauseIcon;
|
|
2
|
-
declare const PauseIcon: import("styled-components").StyledComponent<
|
|
2
|
+
declare const PauseIcon: import("styled-components").StyledComponent<import("react").ComponentType<import("react").SVGProps<SVGSVGElement> & Record<string, unknown>>, import("styled-components").DefaultTheme, {}, never>;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export default PlayIcon;
|
|
2
|
-
declare const PlayIcon: import("styled-components").StyledComponent<
|
|
2
|
+
declare const PlayIcon: import("styled-components").StyledComponent<import("react").ComponentType<import("react").SVGProps<SVGSVGElement> & Record<string, unknown>>, import("styled-components").DefaultTheme, {}, never>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "react-covideo-embed",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.96",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "Covideo platform as an embeddable React component.",
|
|
6
6
|
"main": "build/index.js",
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
"react": ">=16",
|
|
39
39
|
"react-beautiful-dnd": "^13.1.1",
|
|
40
40
|
"react-compound-slider": "^3.4.0",
|
|
41
|
-
"react-covideo-common": ">=0.1.
|
|
41
|
+
"react-covideo-common": ">=0.1.83",
|
|
42
42
|
"react-dom": ">=16",
|
|
43
43
|
"react-dropzone": "11.3.2",
|
|
44
44
|
"react-full-screen": "^1.1.1",
|
|
@@ -74,9 +74,9 @@
|
|
|
74
74
|
"devDependencies": {
|
|
75
75
|
"@eslint/js": "^9.0.0",
|
|
76
76
|
"@mediapipe/tasks-vision": "^0.10.15",
|
|
77
|
-
"@storybook/addon-links": "^10.3.
|
|
78
|
-
"@storybook/addon-themes": "^10.3.
|
|
79
|
-
"@storybook/react-vite": "^10.3.
|
|
77
|
+
"@storybook/addon-links": "^10.3.6",
|
|
78
|
+
"@storybook/addon-themes": "^10.3.6",
|
|
79
|
+
"@storybook/react-vite": "^10.3.6",
|
|
80
80
|
"@types/color-convert": "^2.0.0",
|
|
81
81
|
"@types/file-saver": "^2.0.5",
|
|
82
82
|
"@types/js-cookie": "^3.0.6",
|
|
@@ -86,6 +86,7 @@
|
|
|
86
86
|
"@types/react": "^18.0.0",
|
|
87
87
|
"@types/react-beautiful-dnd": "^13.1.3",
|
|
88
88
|
"@types/react-dom": "^18.0.0",
|
|
89
|
+
"@types/react-modal": "^3.16.3",
|
|
89
90
|
"@types/react-router-dom": "5.3.3",
|
|
90
91
|
"@types/react-scroll": "^1.8.10",
|
|
91
92
|
"@types/recordrtc": "^5.6.14",
|
|
@@ -116,7 +117,7 @@
|
|
|
116
117
|
"react-beautiful-dnd": "^13.1.1",
|
|
117
118
|
"react-compound-slider": "^3.4.0",
|
|
118
119
|
"react-covideo-ai-assist": "^0.0.49",
|
|
119
|
-
"react-covideo-common": "0.1.
|
|
120
|
+
"react-covideo-common": "0.1.83",
|
|
120
121
|
"react-dom": "^18.0.0",
|
|
121
122
|
"react-dropzone": "11.3.2",
|
|
122
123
|
"react-full-screen": "^1.1.1",
|
|
@@ -134,7 +135,7 @@
|
|
|
134
135
|
"react-spinners": "^0.13.6",
|
|
135
136
|
"react-toastify": "11.0.5",
|
|
136
137
|
"recordrtc": "^5.6.2",
|
|
137
|
-
"storybook": "10.3.
|
|
138
|
+
"storybook": "10.3.6",
|
|
138
139
|
"stream-browserify": "^3.0.0",
|
|
139
140
|
"styled-components": "5.3.11",
|
|
140
141
|
"tslib": "^2.8.1",
|