@veltdev/react 4.3.0 → 4.4.0-beta.2
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 +11 -3
- package/cjs/index.js.map +1 -1
- package/cjs/types/components/SnippylyRecorderControlPanel/SnippylyRecorderControlPanel.d.ts +2 -0
- package/cjs/types/components/VeltRecorderControlPanelWireframe/VeltRecorderControlPanelFloatingModeWireframe/VeltRecorderControlPanelFloatingModeWireframe.d.ts +2 -0
- package/cjs/types/components/VeltRecorderControlPanelWireframe/VeltRecorderControlPanelScreenWireframe/VeltRecorderControlPanelScreenWireframe.d.ts +8 -0
- package/cjs/types/components/VeltRecorderControlPanelWireframe/VeltRecorderControlPanelScreenWireframe/index.d.ts +1 -0
- package/cjs/types/components/VeltRecorderControlPanelWireframe/VeltRecorderControlPanelThreadModeWireframe/VeltRecorderControlPanelThreadModeWireframe.d.ts +2 -0
- package/cjs/types/constants.d.ts +1 -1
- package/esm/index.js +11 -3
- package/esm/index.js.map +1 -1
- package/esm/types/components/SnippylyRecorderControlPanel/SnippylyRecorderControlPanel.d.ts +2 -0
- package/esm/types/components/VeltRecorderControlPanelWireframe/VeltRecorderControlPanelFloatingModeWireframe/VeltRecorderControlPanelFloatingModeWireframe.d.ts +2 -0
- package/esm/types/components/VeltRecorderControlPanelWireframe/VeltRecorderControlPanelScreenWireframe/VeltRecorderControlPanelScreenWireframe.d.ts +8 -0
- package/esm/types/components/VeltRecorderControlPanelWireframe/VeltRecorderControlPanelScreenWireframe/index.d.ts +1 -0
- package/esm/types/components/VeltRecorderControlPanelWireframe/VeltRecorderControlPanelThreadModeWireframe/VeltRecorderControlPanelThreadModeWireframe.d.ts +2 -0
- package/esm/types/constants.d.ts +1 -1
- package/index.d.ts +9 -0
- package/package.json +1 -1
|
@@ -7,6 +7,8 @@ export interface IVeltRecorderControlPanelProps {
|
|
|
7
7
|
recordingCountdown?: boolean;
|
|
8
8
|
recordingTranscription?: boolean;
|
|
9
9
|
videoEditor?: boolean;
|
|
10
|
+
settingsEmbedded?: boolean;
|
|
11
|
+
autoOpenVideoEditor?: boolean;
|
|
10
12
|
}
|
|
11
13
|
declare const SnippylyRecorderControlPanel: React.FC<IVeltRecorderControlPanelProps>;
|
|
12
14
|
export default SnippylyRecorderControlPanel;
|
|
@@ -8,6 +8,7 @@ import { IVeltRecorderControlPanelCollapsedButtonWireframe } from '../VeltRecord
|
|
|
8
8
|
import { IVeltRecorderControlPanelLoadingWireframe } from '../VeltRecorderControlPanelLoadingWireframe/VeltRecorderControlPanelLoadingWireframe';
|
|
9
9
|
import { IVeltRecorderControlPanelPausedWireframe } from '../VeltRecorderControlPanelPausedWireframe/VeltRecorderControlPanelPausedWireframe';
|
|
10
10
|
import { IVeltRecorderControlPanelVideoWireframe } from '../VeltRecorderControlPanelVideoWireframe/VeltRecorderControlPanelVideoWireframe';
|
|
11
|
+
import { IVeltRecorderControlPanelScreenWireframe } from '../VeltRecorderControlPanelScreenWireframe/VeltRecorderControlPanelScreenWireframe';
|
|
11
12
|
export interface IVeltRecorderControlPanelFloatingModeWireframeProps extends IVeltWireframeCommonProps {
|
|
12
13
|
}
|
|
13
14
|
export interface IVeltRecorderControlPanelFloatingModeWireframe extends React.FC<IVeltRecorderControlPanelFloatingModeWireframeProps> {
|
|
@@ -15,6 +16,7 @@ export interface IVeltRecorderControlPanelFloatingModeWireframe extends React.FC
|
|
|
15
16
|
ScreenVideo: IVeltRecorderControlPanelFloatingModeScreenVideoWireframe;
|
|
16
17
|
Waveform: IVeltRecorderControlPanelFloatingModeWaveformWireframe;
|
|
17
18
|
Video: IVeltRecorderControlPanelVideoWireframe;
|
|
19
|
+
Screen: IVeltRecorderControlPanelScreenWireframe;
|
|
18
20
|
CollapsedButton: IVeltRecorderControlPanelCollapsedButtonWireframe;
|
|
19
21
|
Paused: IVeltRecorderControlPanelPausedWireframe;
|
|
20
22
|
Loading: IVeltRecorderControlPanelLoadingWireframe;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { IVeltWireframeCommonProps } from '../../../constants';
|
|
3
|
+
export interface IVeltRecorderControlPanelScreenWireframeProps extends IVeltWireframeCommonProps {
|
|
4
|
+
}
|
|
5
|
+
export interface IVeltRecorderControlPanelScreenWireframe extends React.FC<IVeltRecorderControlPanelScreenWireframeProps> {
|
|
6
|
+
}
|
|
7
|
+
declare const VeltRecorderControlPanelScreenWireframe: IVeltRecorderControlPanelScreenWireframe;
|
|
8
|
+
export default VeltRecorderControlPanelScreenWireframe;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default } from './VeltRecorderControlPanelScreenWireframe';
|
|
@@ -3,10 +3,12 @@ import { IVeltWireframeCommonProps } from '../../../constants';
|
|
|
3
3
|
import { IVeltRecorderControlPanelActionBarWireframe } from '../VeltRecorderControlPanelActionBarWireframe/VeltRecorderControlPanelActionBarWireframe';
|
|
4
4
|
import { IVeltRecorderControlPanelVideoWireframe } from '../VeltRecorderControlPanelVideoWireframe/VeltRecorderControlPanelVideoWireframe';
|
|
5
5
|
import { IVeltRecorderControlPanelLoadingWireframe } from '../VeltRecorderControlPanelLoadingWireframe/VeltRecorderControlPanelLoadingWireframe';
|
|
6
|
+
import { IVeltRecorderControlPanelScreenWireframe } from '../VeltRecorderControlPanelScreenWireframe/VeltRecorderControlPanelScreenWireframe';
|
|
6
7
|
export interface IVeltRecorderControlPanelThreadModeWireframeProps extends IVeltWireframeCommonProps {
|
|
7
8
|
}
|
|
8
9
|
export interface IVeltRecorderControlPanelThreadModeWireframe extends React.FC<IVeltRecorderControlPanelThreadModeWireframeProps> {
|
|
9
10
|
Video: IVeltRecorderControlPanelVideoWireframe;
|
|
11
|
+
Screen: IVeltRecorderControlPanelScreenWireframe;
|
|
10
12
|
Loading: IVeltRecorderControlPanelLoadingWireframe;
|
|
11
13
|
ActionBar: IVeltRecorderControlPanelActionBarWireframe;
|
|
12
14
|
}
|
package/esm/types/constants.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
-
export declare const VELT_SDK_VERSION = "4.
|
|
2
|
+
export declare const VELT_SDK_VERSION = "4.4.0-beta.2";
|
|
3
3
|
export declare const VELT_SDK_INIT_EVENT = "onVeltInit";
|
|
4
4
|
export declare const VELT_TAB_ID = "veltTabId";
|
|
5
5
|
export interface IVeltWireframeCommonProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> {
|
package/index.d.ts
CHANGED
|
@@ -335,6 +335,8 @@ interface IVeltRecorderControlPanelProps {
|
|
|
335
335
|
recordingCountdown?: boolean;
|
|
336
336
|
recordingTranscription?: boolean;
|
|
337
337
|
videoEditor?: boolean;
|
|
338
|
+
settingsEmbedded?: boolean;
|
|
339
|
+
autoOpenVideoEditor?: boolean;
|
|
338
340
|
}
|
|
339
341
|
declare const SnippylyRecorderControlPanel: React$1.FC<IVeltRecorderControlPanelProps>;
|
|
340
342
|
|
|
@@ -2999,6 +3001,11 @@ interface IVeltRecorderControlPanelVideoWireframeProps extends IVeltWireframeCom
|
|
|
2999
3001
|
interface IVeltRecorderControlPanelVideoWireframe extends React$1.FC<IVeltRecorderControlPanelVideoWireframeProps> {
|
|
3000
3002
|
}
|
|
3001
3003
|
|
|
3004
|
+
interface IVeltRecorderControlPanelScreenWireframeProps extends IVeltWireframeCommonProps {
|
|
3005
|
+
}
|
|
3006
|
+
interface IVeltRecorderControlPanelScreenWireframe extends React$1.FC<IVeltRecorderControlPanelScreenWireframeProps> {
|
|
3007
|
+
}
|
|
3008
|
+
|
|
3002
3009
|
interface IVeltRecorderControlPanelFloatingModeWireframeProps extends IVeltWireframeCommonProps {
|
|
3003
3010
|
}
|
|
3004
3011
|
interface IVeltRecorderControlPanelFloatingModeWireframe extends React$1.FC<IVeltRecorderControlPanelFloatingModeWireframeProps> {
|
|
@@ -3006,6 +3013,7 @@ interface IVeltRecorderControlPanelFloatingModeWireframe extends React$1.FC<IVel
|
|
|
3006
3013
|
ScreenVideo: IVeltRecorderControlPanelFloatingModeScreenVideoWireframe;
|
|
3007
3014
|
Waveform: IVeltRecorderControlPanelFloatingModeWaveformWireframe;
|
|
3008
3015
|
Video: IVeltRecorderControlPanelVideoWireframe;
|
|
3016
|
+
Screen: IVeltRecorderControlPanelScreenWireframe;
|
|
3009
3017
|
CollapsedButton: IVeltRecorderControlPanelCollapsedButtonWireframe;
|
|
3010
3018
|
Paused: IVeltRecorderControlPanelPausedWireframe;
|
|
3011
3019
|
Loading: IVeltRecorderControlPanelLoadingWireframe;
|
|
@@ -3016,6 +3024,7 @@ interface IVeltRecorderControlPanelThreadModeWireframeProps extends IVeltWirefra
|
|
|
3016
3024
|
}
|
|
3017
3025
|
interface IVeltRecorderControlPanelThreadModeWireframe extends React$1.FC<IVeltRecorderControlPanelThreadModeWireframeProps> {
|
|
3018
3026
|
Video: IVeltRecorderControlPanelVideoWireframe;
|
|
3027
|
+
Screen: IVeltRecorderControlPanelScreenWireframe;
|
|
3019
3028
|
Loading: IVeltRecorderControlPanelLoadingWireframe;
|
|
3020
3029
|
ActionBar: IVeltRecorderControlPanelActionBarWireframe;
|
|
3021
3030
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@veltdev/react",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.4.0-beta.2",
|
|
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": [
|