@veltdev/react 4.5.0-beta.10 → 4.5.0-beta.12
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 +15 -1
- package/cjs/index.js.map +1 -1
- package/cjs/types/components/VeltRecorderPlayerWireframe/VeltRecorderPlayerEditButtonWireframe/VeltRecorderPlayerEditButtonWireframe.d.ts +8 -0
- package/cjs/types/components/VeltRecorderPlayerWireframe/VeltRecorderPlayerEditButtonWireframe/index.d.ts +1 -0
- package/cjs/types/components/VeltRecorderPlayerWireframe/VeltRecorderPlayerVideoContainerWireframe/VeltRecorderPlayerVideoContainerWireframe.d.ts +2 -0
- package/cjs/types/components/VeltVideoEditorPlayerWireframe/VeltVideoEditorPlayerDownloadButtonWireframe/VeltVideoEditorPlayerDownloadButtonWireframe.d.ts +8 -0
- package/cjs/types/components/VeltVideoEditorPlayerWireframe/VeltVideoEditorPlayerDownloadButtonWireframe/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 +15 -1
- package/esm/index.js.map +1 -1
- package/esm/types/components/VeltRecorderPlayerWireframe/VeltRecorderPlayerEditButtonWireframe/VeltRecorderPlayerEditButtonWireframe.d.ts +8 -0
- package/esm/types/components/VeltRecorderPlayerWireframe/VeltRecorderPlayerEditButtonWireframe/index.d.ts +1 -0
- package/esm/types/components/VeltRecorderPlayerWireframe/VeltRecorderPlayerVideoContainerWireframe/VeltRecorderPlayerVideoContainerWireframe.d.ts +2 -0
- package/esm/types/components/VeltVideoEditorPlayerWireframe/VeltVideoEditorPlayerDownloadButtonWireframe/VeltVideoEditorPlayerDownloadButtonWireframe.d.ts +8 -0
- package/esm/types/components/VeltVideoEditorPlayerWireframe/VeltVideoEditorPlayerDownloadButtonWireframe/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 +12 -0
- package/package.json +1 -1
package/cjs/index.js
CHANGED
|
@@ -140,7 +140,7 @@ var loadVelt = function (callback, version, staging, develop, proxyDomain) {
|
|
|
140
140
|
}
|
|
141
141
|
};
|
|
142
142
|
|
|
143
|
-
var VELT_SDK_VERSION = '4.5.0-beta.
|
|
143
|
+
var VELT_SDK_VERSION = '4.5.0-beta.12';
|
|
144
144
|
var VELT_SDK_INIT_EVENT = 'onVeltInit';
|
|
145
145
|
var VELT_TAB_ID = 'veltTabId';
|
|
146
146
|
|
|
@@ -4729,6 +4729,12 @@ var VeltRecorderPlayerVideoWireframe = function (props) {
|
|
|
4729
4729
|
return (React__default["default"].createElement("velt-recorder-player-video-wireframe", __assign({}, transformedProps), children));
|
|
4730
4730
|
};
|
|
4731
4731
|
|
|
4732
|
+
var VeltRecorderPlayerEditButtonWireframe = function (props) {
|
|
4733
|
+
var children = props.children, remainingProps = __rest(props, ["children"]);
|
|
4734
|
+
var transformedProps = transformWireframeProps(remainingProps);
|
|
4735
|
+
return (React__default["default"].createElement("velt-recorder-player-edit-button-wireframe", __assign({}, transformedProps), children));
|
|
4736
|
+
};
|
|
4737
|
+
|
|
4732
4738
|
var VeltRecorderPlayerVideoContainerWireframe = function (props) {
|
|
4733
4739
|
var children = props.children, remainingProps = __rest(props, ["children"]);
|
|
4734
4740
|
var transformedProps = transformWireframeProps(remainingProps);
|
|
@@ -4747,6 +4753,7 @@ VeltRecorderPlayerVideoContainerWireframe.Transcription = VeltRecorderPlayerTran
|
|
|
4747
4753
|
VeltRecorderPlayerVideoContainerWireframe.CopyLink = VeltRecorderPlayerCopyLinkWireframe;
|
|
4748
4754
|
VeltRecorderPlayerVideoContainerWireframe.Delete = VeltRecorderPlayerDeleteWireframe;
|
|
4749
4755
|
VeltRecorderPlayerVideoContainerWireframe.Avatar = VeltRecorderPlayerAvatarWireframe;
|
|
4756
|
+
VeltRecorderPlayerVideoContainerWireframe.EditButton = VeltRecorderPlayerEditButtonWireframe;
|
|
4750
4757
|
|
|
4751
4758
|
var VeltRecorderPlayerWireframe = function (props) {
|
|
4752
4759
|
var children = props.children, remainingProps = __rest(props, ["children"]);
|
|
@@ -5087,6 +5094,12 @@ VeltVideoEditorPlayerTimelineWireframe.Trim = VeltVideoEditorPlayerTimelineTrimW
|
|
|
5087
5094
|
VeltVideoEditorPlayerTimelineWireframe.Container = VeltVideoEditorPlayerTimelineContainerWireframe;
|
|
5088
5095
|
VeltVideoEditorPlayerTimelineWireframe.Playhead = VeltVideoEditorPlayerTimelinePlayheadWireframe;
|
|
5089
5096
|
|
|
5097
|
+
var VeltVideoEditorPlayerDownloadButtonWireframe = function (props) {
|
|
5098
|
+
var children = props.children, remainingProps = __rest(props, ["children"]);
|
|
5099
|
+
var transformedProps = transformWireframeProps(remainingProps);
|
|
5100
|
+
return (React__default["default"].createElement("velt-video-editor-player-download-button-wireframe", __assign({}, transformedProps), children));
|
|
5101
|
+
};
|
|
5102
|
+
|
|
5090
5103
|
var VeltVideoEditorPlayerWireframe = function (props) {
|
|
5091
5104
|
var children = props.children, remainingProps = __rest(props, ["children"]);
|
|
5092
5105
|
var transformedProps = transformWireframeProps(remainingProps);
|
|
@@ -5103,6 +5116,7 @@ VeltVideoEditorPlayerWireframe.TotalTime = VeltVideoEditorPlayerTotalTimeWirefra
|
|
|
5103
5116
|
VeltVideoEditorPlayerWireframe.SplitButton = VeltVideoEditorPlayerSplitButtonWireframe;
|
|
5104
5117
|
VeltVideoEditorPlayerWireframe.DeleteButton = VeltVideoEditorPlayerDeleteButtonWireframe;
|
|
5105
5118
|
VeltVideoEditorPlayerWireframe.Timeline = VeltVideoEditorPlayerTimelineWireframe;
|
|
5119
|
+
VeltVideoEditorPlayerWireframe.DownloadButton = VeltVideoEditorPlayerDownloadButtonWireframe;
|
|
5106
5120
|
|
|
5107
5121
|
var VeltSubtitlesTextWireframe = function (props) {
|
|
5108
5122
|
var children = props.children, remainingProps = __rest(props, ["children"]);
|