@veltdev/react 4.5.2-beta.12 → 4.5.2-beta.14
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 +20 -6
- package/cjs/index.js.map +1 -1
- package/cjs/types/components/SnippylyRecorderControlPanel/SnippylyRecorderControlPanel.d.ts +2 -0
- package/cjs/types/components/SnippylyRecorderTool/SnippylyRecorderTool.d.ts +2 -0
- package/cjs/types/components/VeltRecorderControlPanelWireframe/VeltRecorderControlPanelActionBarWireframe/VeltRecorderControlPanelActionBarPipWireframe/VeltRecorderControlPanelActionBarPipWireframe.d.ts +8 -0
- package/cjs/types/components/VeltRecorderControlPanelWireframe/VeltRecorderControlPanelActionBarWireframe/VeltRecorderControlPanelActionBarPipWireframe/index.d.ts +1 -0
- package/cjs/types/components/VeltRecorderControlPanelWireframe/VeltRecorderControlPanelActionBarWireframe/VeltRecorderControlPanelActionBarWireframe.d.ts +2 -0
- package/cjs/types/components/VeltRecordingPreviewStepsDialogWireframe/VeltRecordingPreviewStepsDialogScreenPlayerWireframe/VeltRecordingPreviewStepsDialogScreenPlayerWireframe.d.ts +8 -0
- package/cjs/types/components/VeltRecordingPreviewStepsDialogWireframe/VeltRecordingPreviewStepsDialogScreenPlayerWireframe/index.d.ts +1 -0
- package/cjs/types/components/VeltRecordingPreviewStepsDialogWireframe/VeltRecordingPreviewStepsDialogVideoWireframe/VeltRecordingPreviewStepsDialogVideoWireframe.d.ts +2 -0
- package/cjs/types/constants.d.ts +1 -1
- package/esm/index.js +20 -6
- package/esm/index.js.map +1 -1
- package/esm/types/components/SnippylyRecorderControlPanel/SnippylyRecorderControlPanel.d.ts +2 -0
- package/esm/types/components/SnippylyRecorderTool/SnippylyRecorderTool.d.ts +2 -0
- package/esm/types/components/VeltRecorderControlPanelWireframe/VeltRecorderControlPanelActionBarWireframe/VeltRecorderControlPanelActionBarPipWireframe/VeltRecorderControlPanelActionBarPipWireframe.d.ts +8 -0
- package/esm/types/components/VeltRecorderControlPanelWireframe/VeltRecorderControlPanelActionBarWireframe/VeltRecorderControlPanelActionBarPipWireframe/index.d.ts +1 -0
- package/esm/types/components/VeltRecorderControlPanelWireframe/VeltRecorderControlPanelActionBarWireframe/VeltRecorderControlPanelActionBarWireframe.d.ts +2 -0
- package/esm/types/components/VeltRecordingPreviewStepsDialogWireframe/VeltRecordingPreviewStepsDialogScreenPlayerWireframe/VeltRecordingPreviewStepsDialogScreenPlayerWireframe.d.ts +8 -0
- package/esm/types/components/VeltRecordingPreviewStepsDialogWireframe/VeltRecordingPreviewStepsDialogScreenPlayerWireframe/index.d.ts +1 -0
- package/esm/types/components/VeltRecordingPreviewStepsDialogWireframe/VeltRecordingPreviewStepsDialogVideoWireframe/VeltRecordingPreviewStepsDialogVideoWireframe.d.ts +2 -0
- package/esm/types/constants.d.ts +1 -1
- package/index.d.ts +16 -0
- package/package.json +1 -1
|
@@ -11,6 +11,8 @@ export interface IVeltRecorderControlPanelProps {
|
|
|
11
11
|
autoOpenVideoEditor?: boolean;
|
|
12
12
|
playVideoInFullScreen?: boolean;
|
|
13
13
|
retakeOnVideoEditor?: boolean;
|
|
14
|
+
pictureInPicture?: boolean;
|
|
15
|
+
maxLength?: number;
|
|
14
16
|
}
|
|
15
17
|
declare const SnippylyRecorderControlPanel: React.FC<IVeltRecorderControlPanelProps>;
|
|
16
18
|
export default SnippylyRecorderControlPanel;
|
|
@@ -9,6 +9,8 @@ export interface IVeltRecorderToolProps extends React.DetailedHTMLProps<React.HT
|
|
|
9
9
|
recordingCountdown?: boolean;
|
|
10
10
|
variant?: string;
|
|
11
11
|
retakeOnVideoEditor?: boolean;
|
|
12
|
+
pictureInPicture?: boolean;
|
|
13
|
+
maxLength?: number;
|
|
12
14
|
}
|
|
13
15
|
declare const SnippylyRecorderTool: React.FC<IVeltRecorderToolProps>;
|
|
14
16
|
export default SnippylyRecorderTool;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { IVeltWireframeCommonProps } from '../../../../constants';
|
|
3
|
+
export interface IVeltRecorderControlPanelActionBarPipWireframeProps extends IVeltWireframeCommonProps {
|
|
4
|
+
}
|
|
5
|
+
export interface IVeltRecorderControlPanelActionBarPipWireframe extends React.FC<IVeltRecorderControlPanelActionBarPipWireframeProps> {
|
|
6
|
+
}
|
|
7
|
+
declare const VeltRecorderControlPanelActionBarPipWireframe: IVeltRecorderControlPanelActionBarPipWireframe;
|
|
8
|
+
export default VeltRecorderControlPanelActionBarPipWireframe;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default } from './VeltRecorderControlPanelActionBarPipWireframe';
|
|
@@ -6,6 +6,7 @@ import { IVeltRecorderControlPanelActionBarStopWireframe } from './VeltRecorderC
|
|
|
6
6
|
import { IVeltRecorderControlPanelActionBarTimeWireframe } from './VeltRecorderControlPanelActionBarTimeWireframe/VeltRecorderControlPanelActionBarTimeWireframe';
|
|
7
7
|
import { IVeltRecorderControlPanelActionBarToggleWireframe } from './VeltRecorderControlPanelActionBarToggleWireframe/VeltRecorderControlPanelActionBarToggleWireframe';
|
|
8
8
|
import { IVeltRecorderControlPanelActionBarTypeIconWireframe } from './VeltRecorderControlPanelActionBarTypeIconWireframe/VeltRecorderControlPanelActionBarTypeIconWireframe';
|
|
9
|
+
import { IVeltRecorderControlPanelActionBarPipWireframe } from './VeltRecorderControlPanelActionBarPipWireframe/VeltRecorderControlPanelActionBarPipWireframe';
|
|
9
10
|
export interface IVeltRecorderControlPanelActionBarWireframeProps extends IVeltWireframeCommonProps {
|
|
10
11
|
}
|
|
11
12
|
export interface IVeltRecorderControlPanelActionBarWireframe extends React.FC<IVeltRecorderControlPanelActionBarWireframeProps> {
|
|
@@ -15,6 +16,7 @@ export interface IVeltRecorderControlPanelActionBarWireframe extends React.FC<IV
|
|
|
15
16
|
Toggle: IVeltRecorderControlPanelActionBarToggleWireframe;
|
|
16
17
|
TypeIcon: IVeltRecorderControlPanelActionBarTypeIconWireframe;
|
|
17
18
|
Waveform: IVeltRecorderControlPanelActionBarWaveformWireframe;
|
|
19
|
+
Pip: IVeltRecorderControlPanelActionBarPipWireframe;
|
|
18
20
|
}
|
|
19
21
|
declare const VeltRecorderControlPanelActionBarWireframe: IVeltRecorderControlPanelActionBarWireframe;
|
|
20
22
|
export default VeltRecorderControlPanelActionBarWireframe;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { IVeltWireframeCommonProps } from '../../../constants';
|
|
3
|
+
export interface IVeltRecordingPreviewStepsDialogScreenPlayerWireframeProps extends IVeltWireframeCommonProps {
|
|
4
|
+
}
|
|
5
|
+
export interface IVeltRecordingPreviewStepsDialogScreenPlayerWireframe extends React.FC<IVeltRecordingPreviewStepsDialogScreenPlayerWireframeProps> {
|
|
6
|
+
}
|
|
7
|
+
declare const VeltRecordingPreviewStepsDialogScreenPlayerWireframe: IVeltRecordingPreviewStepsDialogScreenPlayerWireframe;
|
|
8
|
+
export default VeltRecordingPreviewStepsDialogScreenPlayerWireframe;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default } from './VeltRecordingPreviewStepsDialogScreenPlayerWireframe';
|
|
@@ -11,6 +11,7 @@ import { IVeltRecordingPreviewStepsDialogTimerWireframe } from '../VeltRecording
|
|
|
11
11
|
import { IVeltRecordingPreviewStepsDialogVideoPlayerWireframe } from '../VeltRecordingPreviewStepsDialogVideoPlayerWireframe/VeltRecordingPreviewStepsDialogVideoPlayerWireframe';
|
|
12
12
|
import { IVeltRecordingPreviewStepsDialogWaveformWireframe } from '../VeltRecordingPreviewStepsDialogWaveformWireframe/VeltRecordingPreviewStepsDialogWaveformWireframe';
|
|
13
13
|
import { IVeltRecordingPreviewStepsDialogStartRecordingWireframe } from '../VeltRecordingPreviewStepsDialogStartRecordingWireframe/VeltRecordingPreviewStepsDialogStartRecordingWireframe';
|
|
14
|
+
import { IVeltRecordingPreviewStepsDialogScreenPlayerWireframe } from '../VeltRecordingPreviewStepsDialogScreenPlayerWireframe/VeltRecordingPreviewStepsDialogScreenPlayerWireframe';
|
|
14
15
|
import { IVeltWireframeCommonProps } from '../../../constants';
|
|
15
16
|
export interface IVeltRecordingPreviewStepsDialogVideoWireframeProps extends IVeltWireframeCommonProps {
|
|
16
17
|
}
|
|
@@ -26,6 +27,7 @@ export interface IVeltRecordingPreviewStepsDialogVideoWireframe extends React.FC
|
|
|
26
27
|
StartRecording: IVeltRecordingPreviewStepsDialogStartRecordingWireframe;
|
|
27
28
|
Timer: IVeltRecordingPreviewStepsDialogTimerWireframe;
|
|
28
29
|
VideoPlayer: IVeltRecordingPreviewStepsDialogVideoPlayerWireframe;
|
|
30
|
+
ScreenPlayer: IVeltRecordingPreviewStepsDialogScreenPlayerWireframe;
|
|
29
31
|
Waveform: IVeltRecordingPreviewStepsDialogWaveformWireframe;
|
|
30
32
|
}
|
|
31
33
|
declare const VeltRecordingPreviewStepsDialogVideoWireframe: IVeltRecordingPreviewStepsDialogVideoWireframe;
|
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-beta.
|
|
2
|
+
export declare const VELT_SDK_VERSION = "4.5.2-beta.14";
|
|
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
|
@@ -338,6 +338,8 @@ interface IVeltRecorderControlPanelProps {
|
|
|
338
338
|
autoOpenVideoEditor?: boolean;
|
|
339
339
|
playVideoInFullScreen?: boolean;
|
|
340
340
|
retakeOnVideoEditor?: boolean;
|
|
341
|
+
pictureInPicture?: boolean;
|
|
342
|
+
maxLength?: number;
|
|
341
343
|
}
|
|
342
344
|
declare const SnippylyRecorderControlPanel: React$1.FC<IVeltRecorderControlPanelProps>;
|
|
343
345
|
|
|
@@ -374,6 +376,8 @@ interface IVeltRecorderToolProps extends React$1.DetailedHTMLProps<React$1.HTMLA
|
|
|
374
376
|
recordingCountdown?: boolean;
|
|
375
377
|
variant?: string;
|
|
376
378
|
retakeOnVideoEditor?: boolean;
|
|
379
|
+
pictureInPicture?: boolean;
|
|
380
|
+
maxLength?: number;
|
|
377
381
|
}
|
|
378
382
|
declare const SnippylyRecorderTool: React$1.FC<IVeltRecorderToolProps>;
|
|
379
383
|
|
|
@@ -3144,6 +3148,11 @@ interface IVeltRecordingPreviewStepsDialogVideoPlayerWireframeProps extends IVel
|
|
|
3144
3148
|
interface IVeltRecordingPreviewStepsDialogVideoPlayerWireframe extends React$1.FC<IVeltRecordingPreviewStepsDialogVideoPlayerWireframeProps> {
|
|
3145
3149
|
}
|
|
3146
3150
|
|
|
3151
|
+
interface IVeltRecordingPreviewStepsDialogScreenPlayerWireframeProps extends IVeltWireframeCommonProps {
|
|
3152
|
+
}
|
|
3153
|
+
interface IVeltRecordingPreviewStepsDialogScreenPlayerWireframe extends React$1.FC<IVeltRecordingPreviewStepsDialogScreenPlayerWireframeProps> {
|
|
3154
|
+
}
|
|
3155
|
+
|
|
3147
3156
|
interface IVeltRecordingPreviewStepsDialogVideoWireframeProps extends IVeltWireframeCommonProps {
|
|
3148
3157
|
}
|
|
3149
3158
|
interface IVeltRecordingPreviewStepsDialogVideoWireframe extends React$1.FC<IVeltRecordingPreviewStepsDialogVideoWireframeProps> {
|
|
@@ -3158,6 +3167,7 @@ interface IVeltRecordingPreviewStepsDialogVideoWireframe extends React$1.FC<IVel
|
|
|
3158
3167
|
StartRecording: IVeltRecordingPreviewStepsDialogStartRecordingWireframe;
|
|
3159
3168
|
Timer: IVeltRecordingPreviewStepsDialogTimerWireframe;
|
|
3160
3169
|
VideoPlayer: IVeltRecordingPreviewStepsDialogVideoPlayerWireframe;
|
|
3170
|
+
ScreenPlayer: IVeltRecordingPreviewStepsDialogScreenPlayerWireframe;
|
|
3161
3171
|
Waveform: IVeltRecordingPreviewStepsDialogWaveformWireframe;
|
|
3162
3172
|
}
|
|
3163
3173
|
|
|
@@ -3222,6 +3232,11 @@ interface IVeltRecorderControlPanelActionBarTypeIconWireframeProps extends IVelt
|
|
|
3222
3232
|
interface IVeltRecorderControlPanelActionBarTypeIconWireframe extends React$1.FC<IVeltRecorderControlPanelActionBarTypeIconWireframeProps> {
|
|
3223
3233
|
}
|
|
3224
3234
|
|
|
3235
|
+
interface IVeltRecorderControlPanelActionBarPipWireframeProps extends IVeltWireframeCommonProps {
|
|
3236
|
+
}
|
|
3237
|
+
interface IVeltRecorderControlPanelActionBarPipWireframe extends React$1.FC<IVeltRecorderControlPanelActionBarPipWireframeProps> {
|
|
3238
|
+
}
|
|
3239
|
+
|
|
3225
3240
|
interface IVeltRecorderControlPanelActionBarWireframeProps extends IVeltWireframeCommonProps {
|
|
3226
3241
|
}
|
|
3227
3242
|
interface IVeltRecorderControlPanelActionBarWireframe extends React$1.FC<IVeltRecorderControlPanelActionBarWireframeProps> {
|
|
@@ -3231,6 +3246,7 @@ interface IVeltRecorderControlPanelActionBarWireframe extends React$1.FC<IVeltRe
|
|
|
3231
3246
|
Toggle: IVeltRecorderControlPanelActionBarToggleWireframe;
|
|
3232
3247
|
TypeIcon: IVeltRecorderControlPanelActionBarTypeIconWireframe;
|
|
3233
3248
|
Waveform: IVeltRecorderControlPanelActionBarWaveformWireframe;
|
|
3249
|
+
Pip: IVeltRecorderControlPanelActionBarPipWireframe;
|
|
3234
3250
|
}
|
|
3235
3251
|
|
|
3236
3252
|
interface IVeltRecorderControlPanelCollapsedButtonOffWireframeProps extends IVeltWireframeCommonProps {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@veltdev/react",
|
|
3
|
-
"version": "4.5.2-beta.
|
|
3
|
+
"version": "4.5.2-beta.14",
|
|
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": [
|