@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.
@@ -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';
@@ -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;
@@ -1,5 +1,5 @@
1
1
  /// <reference types="react" />
2
- export declare const VELT_SDK_VERSION = "4.5.0-beta.38";
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/esm/index.js CHANGED
@@ -136,13 +136,13 @@ var loadVelt = function (callback, version, staging, develop, proxyDomain, integ
136
136
  }
137
137
  };
138
138
 
139
- var VELT_SDK_VERSION = '4.5.0-beta.38';
139
+ var VELT_SDK_VERSION = '4.5.0-beta.39';
140
140
  var VELT_SDK_INIT_EVENT = 'onVeltInit';
141
141
  var VELT_TAB_ID = 'veltTabId';
142
142
  // integrity map for the Velt SDK
143
143
  // Note: generate integrity hashes with: https://www.srihash.org/
144
144
  var INTEGRITY_MAP = {
145
- '4.5.0-beta.38': 'sha384-114m9SslkRGnmWPU36oz7vW88k63X/sXDg16UOvArBG+DUmsXjCNvbwPbcY8+Jnq',
145
+ '4.5.0-beta.39': 'sha384-888oHDp9K87Xqd4xXUygZMUt1DkLtzb6x+QvxToo4w7UNAOPby+FV36/o3ImnuX8',
146
146
  };
147
147
 
148
148
  var SnippylyProvider = function (props) {
@@ -5303,6 +5303,12 @@ var VeltVideoEditorPlayerDownloadButtonWireframe = function (props) {
5303
5303
  return (React.createElement("velt-video-editor-player-download-button-wireframe", __assign({}, transformedProps), children));
5304
5304
  };
5305
5305
 
5306
+ var VeltVideoEditorPlayerAddZoomButtonWireframe = function (props) {
5307
+ var children = props.children, remainingProps = __rest(props, ["children"]);
5308
+ var transformedProps = transformWireframeProps(remainingProps);
5309
+ return (React.createElement("velt-video-editor-player-add-zoom-button-wireframe", __assign({}, transformedProps), children));
5310
+ };
5311
+
5306
5312
  var VeltVideoEditorPlayerWireframe = function (props) {
5307
5313
  var children = props.children, remainingProps = __rest(props, ["children"]);
5308
5314
  var transformedProps = transformWireframeProps(remainingProps);
@@ -5320,6 +5326,7 @@ VeltVideoEditorPlayerWireframe.SplitButton = VeltVideoEditorPlayerSplitButtonWir
5320
5326
  VeltVideoEditorPlayerWireframe.DeleteButton = VeltVideoEditorPlayerDeleteButtonWireframe;
5321
5327
  VeltVideoEditorPlayerWireframe.Timeline = VeltVideoEditorPlayerTimelineWireframe;
5322
5328
  VeltVideoEditorPlayerWireframe.DownloadButton = VeltVideoEditorPlayerDownloadButtonWireframe;
5329
+ VeltVideoEditorPlayerWireframe.AddZoomButton = VeltVideoEditorPlayerAddZoomButtonWireframe;
5323
5330
 
5324
5331
  var VeltSubtitlesTextWireframe = function (props) {
5325
5332
  var children = props.children, remainingProps = __rest(props, ["children"]);