@veltdev/react 4.5.6 → 4.5.8-beta.1
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/cjs/index.js +6 -6
- package/cjs/index.js.map +1 -1
- package/cjs/types/components/SnippylyRecorderControlPanel/SnippylyRecorderControlPanel.d.ts +1 -0
- package/cjs/types/components/SnippylyRecorderNotes/SnippylyRecorderNotes.d.ts +1 -0
- package/cjs/types/constants.d.ts +1 -1
- package/esm/index.js +6 -6
- package/esm/index.js.map +1 -1
- package/esm/types/components/SnippylyRecorderControlPanel/SnippylyRecorderControlPanel.d.ts +1 -0
- package/esm/types/components/SnippylyRecorderNotes/SnippylyRecorderNotes.d.ts +1 -0
- package/esm/types/constants.d.ts +1 -1
- package/index.d.ts +2 -0
- package/package.json +1 -1
|
@@ -13,6 +13,7 @@ export interface IVeltRecorderControlPanelProps {
|
|
|
13
13
|
retakeOnVideoEditor?: boolean;
|
|
14
14
|
pictureInPicture?: boolean;
|
|
15
15
|
maxLength?: number;
|
|
16
|
+
videoEditorTimelinePreview?: boolean;
|
|
16
17
|
}
|
|
17
18
|
declare const SnippylyRecorderControlPanel: React.FC<IVeltRecorderControlPanelProps>;
|
|
18
19
|
export default SnippylyRecorderControlPanel;
|
|
@@ -5,6 +5,7 @@ export interface IVeltRecorderNotesProps extends React.DetailedHTMLProps<React.H
|
|
|
5
5
|
recordingCountdown?: boolean;
|
|
6
6
|
recordingTranscription?: boolean;
|
|
7
7
|
playVideoInFullScreen?: boolean;
|
|
8
|
+
videoEditorTimelinePreview?: boolean;
|
|
8
9
|
}
|
|
9
10
|
declare const SnippylyRecorderNotes: React.FC<IVeltRecorderNotesProps>;
|
|
10
11
|
export default SnippylyRecorderNotes;
|
package/esm/types/constants.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
-
export declare const VELT_SDK_VERSION = "4.5.
|
|
2
|
+
export declare const VELT_SDK_VERSION = "4.5.8-beta.1";
|
|
3
3
|
export declare const VELT_SDK_INIT_EVENT = "onVeltInit";
|
|
4
4
|
export declare const VELT_TAB_ID = "veltTabId";
|
|
5
5
|
export declare const INTEGRITY_MAP: Record<string, string>;
|
package/index.d.ts
CHANGED
|
@@ -347,6 +347,7 @@ interface IVeltRecorderControlPanelProps {
|
|
|
347
347
|
retakeOnVideoEditor?: boolean;
|
|
348
348
|
pictureInPicture?: boolean;
|
|
349
349
|
maxLength?: number;
|
|
350
|
+
videoEditorTimelinePreview?: boolean;
|
|
350
351
|
}
|
|
351
352
|
declare const SnippylyRecorderControlPanel: React$1.FC<IVeltRecorderControlPanelProps>;
|
|
352
353
|
|
|
@@ -356,6 +357,7 @@ interface IVeltRecorderNotesProps extends React$1.DetailedHTMLProps<React$1.HTML
|
|
|
356
357
|
recordingCountdown?: boolean;
|
|
357
358
|
recordingTranscription?: boolean;
|
|
358
359
|
playVideoInFullScreen?: boolean;
|
|
360
|
+
videoEditorTimelinePreview?: boolean;
|
|
359
361
|
}
|
|
360
362
|
declare const SnippylyRecorderNotes: React$1.FC<IVeltRecorderNotesProps>;
|
|
361
363
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@veltdev/react",
|
|
3
|
-
"version": "4.5.
|
|
3
|
+
"version": "4.5.8-beta.1",
|
|
4
4
|
"description": "Velt is an SDK to add collaborative features to your product within minutes. Example: Comments like Figma, Frame.io, Google docs or sheets, Recording like Loom, Huddles like Slack and much more.",
|
|
5
5
|
"homepage": "https://velt.dev",
|
|
6
6
|
"keywords": [
|