@veltdev/react 4.5.0-beta.42 → 4.5.0-beta.44
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 +15 -8
- package/cjs/index.js.map +1 -1
- package/cjs/types/components/SnippylyRecorderControlPanel/SnippylyRecorderControlPanel.d.ts +1 -0
- package/cjs/types/components/SnippylyRecorderPlayer/SnippylyRecorderPlayer.d.ts +1 -0
- package/cjs/types/components/SnippylyRecorderTool/SnippylyRecorderTool.d.ts +2 -0
- package/cjs/types/components/VeltVideoEditorPlayerWireframe/VeltVideoEditorPlayerRetakeButtonWireframe/VeltVideoEditorPlayerRetakeButtonWireframe.d.ts +8 -0
- package/cjs/types/components/VeltVideoEditorPlayerWireframe/VeltVideoEditorPlayerRetakeButtonWireframe/index.d.ts +1 -0
- package/cjs/types/components/VeltVideoEditorPlayerWireframe/VeltVideoEditorPlayerWireframe.d.ts +2 -0
- package/cjs/types/constants.d.ts +1 -1
- package/esm/index.js +15 -8
- package/esm/index.js.map +1 -1
- package/esm/types/components/SnippylyRecorderControlPanel/SnippylyRecorderControlPanel.d.ts +1 -0
- package/esm/types/components/SnippylyRecorderPlayer/SnippylyRecorderPlayer.d.ts +1 -0
- package/esm/types/components/SnippylyRecorderTool/SnippylyRecorderTool.d.ts +2 -0
- package/esm/types/components/VeltVideoEditorPlayerWireframe/VeltVideoEditorPlayerRetakeButtonWireframe/VeltVideoEditorPlayerRetakeButtonWireframe.d.ts +8 -0
- package/esm/types/components/VeltVideoEditorPlayerWireframe/VeltVideoEditorPlayerRetakeButtonWireframe/index.d.ts +1 -0
- package/esm/types/components/VeltVideoEditorPlayerWireframe/VeltVideoEditorPlayerWireframe.d.ts +2 -0
- package/esm/types/constants.d.ts +1 -1
- package/index.d.ts +10 -0
- package/package.json +1 -1
|
@@ -10,6 +10,7 @@ export interface IVeltRecorderControlPanelProps {
|
|
|
10
10
|
settingsEmbedded?: boolean;
|
|
11
11
|
autoOpenVideoEditor?: boolean;
|
|
12
12
|
playVideoInFullScreen?: boolean;
|
|
13
|
+
retakeOnVideoEditor?: boolean;
|
|
13
14
|
}
|
|
14
15
|
declare const SnippylyRecorderControlPanel: React.FC<IVeltRecorderControlPanelProps>;
|
|
15
16
|
export default SnippylyRecorderControlPanel;
|
|
@@ -10,6 +10,7 @@ export interface IVeltRecorderPlayerProps {
|
|
|
10
10
|
shadowDom?: boolean;
|
|
11
11
|
videoEditor?: boolean;
|
|
12
12
|
playVideoInFullScreen?: boolean;
|
|
13
|
+
retakeOnVideoEditor?: boolean;
|
|
13
14
|
}
|
|
14
15
|
declare const SnippylyRecorderPlayer: React.FC<IVeltRecorderPlayerProps>;
|
|
15
16
|
export default SnippylyRecorderPlayer;
|
|
@@ -7,6 +7,8 @@ export interface IVeltRecorderToolProps extends React.DetailedHTMLProps<React.HT
|
|
|
7
7
|
darkMode?: boolean;
|
|
8
8
|
shadowDom?: boolean;
|
|
9
9
|
recordingCountdown?: boolean;
|
|
10
|
+
variant?: string;
|
|
11
|
+
retakeOnVideoEditor?: boolean;
|
|
10
12
|
}
|
|
11
13
|
declare const SnippylyRecorderTool: React.FC<IVeltRecorderToolProps>;
|
|
12
14
|
export default SnippylyRecorderTool;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { IVeltWireframeCommonProps } from '../../../constants';
|
|
3
|
+
export interface IVeltVideoEditorPlayerRetakeButtonWireframeProps extends IVeltWireframeCommonProps {
|
|
4
|
+
}
|
|
5
|
+
export interface IVeltVideoEditorPlayerRetakeButtonWireframe extends React.FC<IVeltVideoEditorPlayerRetakeButtonWireframeProps> {
|
|
6
|
+
}
|
|
7
|
+
declare const VeltVideoEditorPlayerRetakeButtonWireframe: IVeltVideoEditorPlayerRetakeButtonWireframe;
|
|
8
|
+
export default VeltVideoEditorPlayerRetakeButtonWireframe;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default } from './VeltVideoEditorPlayerRetakeButtonWireframe';
|
package/esm/types/components/VeltVideoEditorPlayerWireframe/VeltVideoEditorPlayerWireframe.d.ts
CHANGED
|
@@ -13,6 +13,7 @@ import { IVeltVideoEditorPlayerDeleteButtonWireframe } from './VeltVideoEditorPl
|
|
|
13
13
|
import { IVeltVideoEditorPlayerTimelineWireframe } from './VeltVideoEditorPlayerTimelineWireframe/VeltVideoEditorPlayerTimelineWireframe';
|
|
14
14
|
import { IVeltVideoEditorPlayerDownloadButtonWireframe } from './VeltVideoEditorPlayerDownloadButtonWireframe/VeltVideoEditorPlayerDownloadButtonWireframe';
|
|
15
15
|
import { IVeltVideoEditorPlayerAddZoomButtonWireframe } from './VeltVideoEditorPlayerAddZoomButtonWireframe/VeltVideoEditorPlayerAddZoomButtonWireframe';
|
|
16
|
+
import { IVeltVideoEditorPlayerRetakeButtonWireframe } from './VeltVideoEditorPlayerRetakeButtonWireframe/VeltVideoEditorPlayerRetakeButtonWireframe';
|
|
16
17
|
export interface IVeltVideoEditorPlayerWireframeProps extends IVeltWireframeCommonProps {
|
|
17
18
|
}
|
|
18
19
|
export interface IVeltVideoEditorPlayerWireframe extends React.FC<IVeltVideoEditorPlayerWireframeProps> {
|
|
@@ -29,6 +30,7 @@ export interface IVeltVideoEditorPlayerWireframe extends React.FC<IVeltVideoEdit
|
|
|
29
30
|
DeleteButton: IVeltVideoEditorPlayerDeleteButtonWireframe;
|
|
30
31
|
Timeline: IVeltVideoEditorPlayerTimelineWireframe;
|
|
31
32
|
AddZoomButton: IVeltVideoEditorPlayerAddZoomButtonWireframe;
|
|
33
|
+
RetakeButton: IVeltVideoEditorPlayerRetakeButtonWireframe;
|
|
32
34
|
}
|
|
33
35
|
declare const VeltVideoEditorPlayerWireframe: IVeltVideoEditorPlayerWireframe;
|
|
34
36
|
export default VeltVideoEditorPlayerWireframe;
|
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.0-beta.
|
|
2
|
+
export declare const VELT_SDK_VERSION = "4.5.0-beta.44";
|
|
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
|
@@ -329,6 +329,7 @@ interface IVeltRecorderControlPanelProps {
|
|
|
329
329
|
settingsEmbedded?: boolean;
|
|
330
330
|
autoOpenVideoEditor?: boolean;
|
|
331
331
|
playVideoInFullScreen?: boolean;
|
|
332
|
+
retakeOnVideoEditor?: boolean;
|
|
332
333
|
}
|
|
333
334
|
declare const SnippylyRecorderControlPanel: React$1.FC<IVeltRecorderControlPanelProps>;
|
|
334
335
|
|
|
@@ -352,6 +353,7 @@ interface IVeltRecorderPlayerProps {
|
|
|
352
353
|
shadowDom?: boolean;
|
|
353
354
|
videoEditor?: boolean;
|
|
354
355
|
playVideoInFullScreen?: boolean;
|
|
356
|
+
retakeOnVideoEditor?: boolean;
|
|
355
357
|
}
|
|
356
358
|
declare const SnippylyRecorderPlayer: React$1.FC<IVeltRecorderPlayerProps>;
|
|
357
359
|
|
|
@@ -362,6 +364,8 @@ interface IVeltRecorderToolProps extends React$1.DetailedHTMLProps<React$1.HTMLA
|
|
|
362
364
|
darkMode?: boolean;
|
|
363
365
|
shadowDom?: boolean;
|
|
364
366
|
recordingCountdown?: boolean;
|
|
367
|
+
variant?: string;
|
|
368
|
+
retakeOnVideoEditor?: boolean;
|
|
365
369
|
}
|
|
366
370
|
declare const SnippylyRecorderTool: React$1.FC<IVeltRecorderToolProps>;
|
|
367
371
|
|
|
@@ -3700,6 +3704,11 @@ interface IVeltVideoEditorPlayerAddZoomButtonWireframeProps extends IVeltWirefra
|
|
|
3700
3704
|
interface IVeltVideoEditorPlayerAddZoomButtonWireframe extends React$1.FC<IVeltVideoEditorPlayerAddZoomButtonWireframeProps> {
|
|
3701
3705
|
}
|
|
3702
3706
|
|
|
3707
|
+
interface IVeltVideoEditorPlayerRetakeButtonWireframeProps extends IVeltWireframeCommonProps {
|
|
3708
|
+
}
|
|
3709
|
+
interface IVeltVideoEditorPlayerRetakeButtonWireframe extends React$1.FC<IVeltVideoEditorPlayerRetakeButtonWireframeProps> {
|
|
3710
|
+
}
|
|
3711
|
+
|
|
3703
3712
|
interface IVeltVideoEditorPlayerWireframeProps extends IVeltWireframeCommonProps {
|
|
3704
3713
|
}
|
|
3705
3714
|
interface IVeltVideoEditorPlayerWireframe extends React$1.FC<IVeltVideoEditorPlayerWireframeProps> {
|
|
@@ -3716,6 +3725,7 @@ interface IVeltVideoEditorPlayerWireframe extends React$1.FC<IVeltVideoEditorPla
|
|
|
3716
3725
|
DeleteButton: IVeltVideoEditorPlayerDeleteButtonWireframe;
|
|
3717
3726
|
Timeline: IVeltVideoEditorPlayerTimelineWireframe;
|
|
3718
3727
|
AddZoomButton: IVeltVideoEditorPlayerAddZoomButtonWireframe;
|
|
3728
|
+
RetakeButton: IVeltVideoEditorPlayerRetakeButtonWireframe;
|
|
3719
3729
|
}
|
|
3720
3730
|
declare const VeltVideoEditorPlayerWireframe: IVeltVideoEditorPlayerWireframe;
|
|
3721
3731
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@veltdev/react",
|
|
3
|
-
"version": "4.5.0-beta.
|
|
3
|
+
"version": "4.5.0-beta.44",
|
|
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": [
|