@veltdev/react 4.5.0-beta.38 → 4.5.0-beta.39
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 +9 -2
- package/cjs/index.js.map +1 -1
- package/cjs/types/components/VeltVideoEditorPlayerWireframe/VeltVideoEditorPlayerAddZoomButtonWireframe/VeltVideoEditorPlayerAddZoomButtonWireframe.d.ts +8 -0
- package/cjs/types/components/VeltVideoEditorPlayerWireframe/VeltVideoEditorPlayerAddZoomButtonWireframe/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 +9 -2
- package/esm/index.js.map +1 -1
- package/esm/types/components/VeltVideoEditorPlayerWireframe/VeltVideoEditorPlayerAddZoomButtonWireframe/VeltVideoEditorPlayerAddZoomButtonWireframe.d.ts +8 -0
- package/esm/types/components/VeltVideoEditorPlayerWireframe/VeltVideoEditorPlayerAddZoomButtonWireframe/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 +6 -0
- package/package.json +1 -1
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { IVeltWireframeCommonProps } from '../../../constants';
|
|
3
|
+
export interface IVeltVideoEditorPlayerAddZoomButtonWireframeProps extends IVeltWireframeCommonProps {
|
|
4
|
+
}
|
|
5
|
+
export interface IVeltVideoEditorPlayerAddZoomButtonWireframe extends React.FC<IVeltVideoEditorPlayerAddZoomButtonWireframeProps> {
|
|
6
|
+
}
|
|
7
|
+
declare const VeltVideoEditorPlayerAddZoomButtonWireframe: IVeltVideoEditorPlayerAddZoomButtonWireframe;
|
|
8
|
+
export default VeltVideoEditorPlayerAddZoomButtonWireframe;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default } from './VeltVideoEditorPlayerAddZoomButtonWireframe';
|
package/esm/types/components/VeltVideoEditorPlayerWireframe/VeltVideoEditorPlayerWireframe.d.ts
CHANGED
|
@@ -12,6 +12,7 @@ import { IVeltVideoEditorPlayerSplitButtonWireframe } from './VeltVideoEditorPla
|
|
|
12
12
|
import { IVeltVideoEditorPlayerDeleteButtonWireframe } from './VeltVideoEditorPlayerDeleteButtonWireframe/VeltVideoEditorPlayerDeleteButtonWireframe';
|
|
13
13
|
import { IVeltVideoEditorPlayerTimelineWireframe } from './VeltVideoEditorPlayerTimelineWireframe/VeltVideoEditorPlayerTimelineWireframe';
|
|
14
14
|
import { IVeltVideoEditorPlayerDownloadButtonWireframe } from './VeltVideoEditorPlayerDownloadButtonWireframe/VeltVideoEditorPlayerDownloadButtonWireframe';
|
|
15
|
+
import { IVeltVideoEditorPlayerAddZoomButtonWireframe } from './VeltVideoEditorPlayerAddZoomButtonWireframe/VeltVideoEditorPlayerAddZoomButtonWireframe';
|
|
15
16
|
export interface IVeltVideoEditorPlayerWireframeProps extends IVeltWireframeCommonProps {
|
|
16
17
|
}
|
|
17
18
|
export interface IVeltVideoEditorPlayerWireframe extends React.FC<IVeltVideoEditorPlayerWireframeProps> {
|
|
@@ -27,6 +28,7 @@ export interface IVeltVideoEditorPlayerWireframe extends React.FC<IVeltVideoEdit
|
|
|
27
28
|
SplitButton: IVeltVideoEditorPlayerSplitButtonWireframe;
|
|
28
29
|
DeleteButton: IVeltVideoEditorPlayerDeleteButtonWireframe;
|
|
29
30
|
Timeline: IVeltVideoEditorPlayerTimelineWireframe;
|
|
31
|
+
AddZoomButton: IVeltVideoEditorPlayerAddZoomButtonWireframe;
|
|
30
32
|
}
|
|
31
33
|
declare const VeltVideoEditorPlayerWireframe: IVeltVideoEditorPlayerWireframe;
|
|
32
34
|
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.39";
|
|
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
|
@@ -3689,6 +3689,11 @@ interface IVeltVideoEditorPlayerDownloadButtonWireframeProps extends IVeltWirefr
|
|
|
3689
3689
|
interface IVeltVideoEditorPlayerDownloadButtonWireframe extends React$1.FC<IVeltVideoEditorPlayerDownloadButtonWireframeProps> {
|
|
3690
3690
|
}
|
|
3691
3691
|
|
|
3692
|
+
interface IVeltVideoEditorPlayerAddZoomButtonWireframeProps extends IVeltWireframeCommonProps {
|
|
3693
|
+
}
|
|
3694
|
+
interface IVeltVideoEditorPlayerAddZoomButtonWireframe extends React$1.FC<IVeltVideoEditorPlayerAddZoomButtonWireframeProps> {
|
|
3695
|
+
}
|
|
3696
|
+
|
|
3692
3697
|
interface IVeltVideoEditorPlayerWireframeProps extends IVeltWireframeCommonProps {
|
|
3693
3698
|
}
|
|
3694
3699
|
interface IVeltVideoEditorPlayerWireframe extends React$1.FC<IVeltVideoEditorPlayerWireframeProps> {
|
|
@@ -3704,6 +3709,7 @@ interface IVeltVideoEditorPlayerWireframe extends React$1.FC<IVeltVideoEditorPla
|
|
|
3704
3709
|
SplitButton: IVeltVideoEditorPlayerSplitButtonWireframe;
|
|
3705
3710
|
DeleteButton: IVeltVideoEditorPlayerDeleteButtonWireframe;
|
|
3706
3711
|
Timeline: IVeltVideoEditorPlayerTimelineWireframe;
|
|
3712
|
+
AddZoomButton: IVeltVideoEditorPlayerAddZoomButtonWireframe;
|
|
3707
3713
|
}
|
|
3708
3714
|
declare const VeltVideoEditorPlayerWireframe: IVeltVideoEditorPlayerWireframe;
|
|
3709
3715
|
|
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.39",
|
|
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": [
|