@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
package/cjs/index.js
CHANGED
|
@@ -144,13 +144,13 @@ var loadVelt = function (callback, version, staging, develop, proxyDomain, integ
|
|
|
144
144
|
}
|
|
145
145
|
};
|
|
146
146
|
|
|
147
|
-
var VELT_SDK_VERSION = '4.5.0-beta.
|
|
147
|
+
var VELT_SDK_VERSION = '4.5.0-beta.39';
|
|
148
148
|
var VELT_SDK_INIT_EVENT = 'onVeltInit';
|
|
149
149
|
var VELT_TAB_ID = 'veltTabId';
|
|
150
150
|
// integrity map for the Velt SDK
|
|
151
151
|
// Note: generate integrity hashes with: https://www.srihash.org/
|
|
152
152
|
var INTEGRITY_MAP = {
|
|
153
|
-
'4.5.0-beta.
|
|
153
|
+
'4.5.0-beta.39': 'sha384-888oHDp9K87Xqd4xXUygZMUt1DkLtzb6x+QvxToo4w7UNAOPby+FV36/o3ImnuX8',
|
|
154
154
|
};
|
|
155
155
|
|
|
156
156
|
var SnippylyProvider = function (props) {
|
|
@@ -5311,6 +5311,12 @@ var VeltVideoEditorPlayerDownloadButtonWireframe = function (props) {
|
|
|
5311
5311
|
return (React__default["default"].createElement("velt-video-editor-player-download-button-wireframe", __assign({}, transformedProps), children));
|
|
5312
5312
|
};
|
|
5313
5313
|
|
|
5314
|
+
var VeltVideoEditorPlayerAddZoomButtonWireframe = function (props) {
|
|
5315
|
+
var children = props.children, remainingProps = __rest(props, ["children"]);
|
|
5316
|
+
var transformedProps = transformWireframeProps(remainingProps);
|
|
5317
|
+
return (React__default["default"].createElement("velt-video-editor-player-add-zoom-button-wireframe", __assign({}, transformedProps), children));
|
|
5318
|
+
};
|
|
5319
|
+
|
|
5314
5320
|
var VeltVideoEditorPlayerWireframe = function (props) {
|
|
5315
5321
|
var children = props.children, remainingProps = __rest(props, ["children"]);
|
|
5316
5322
|
var transformedProps = transformWireframeProps(remainingProps);
|
|
@@ -5328,6 +5334,7 @@ VeltVideoEditorPlayerWireframe.SplitButton = VeltVideoEditorPlayerSplitButtonWir
|
|
|
5328
5334
|
VeltVideoEditorPlayerWireframe.DeleteButton = VeltVideoEditorPlayerDeleteButtonWireframe;
|
|
5329
5335
|
VeltVideoEditorPlayerWireframe.Timeline = VeltVideoEditorPlayerTimelineWireframe;
|
|
5330
5336
|
VeltVideoEditorPlayerWireframe.DownloadButton = VeltVideoEditorPlayerDownloadButtonWireframe;
|
|
5337
|
+
VeltVideoEditorPlayerWireframe.AddZoomButton = VeltVideoEditorPlayerAddZoomButtonWireframe;
|
|
5331
5338
|
|
|
5332
5339
|
var VeltSubtitlesTextWireframe = function (props) {
|
|
5333
5340
|
var children = props.children, remainingProps = __rest(props, ["children"]);
|