@veltdev/react 4.5.0-beta.11 → 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.
Files changed (20) hide show
  1. package/cjs/index.js +15 -1
  2. package/cjs/index.js.map +1 -1
  3. package/cjs/types/components/VeltRecorderPlayerWireframe/VeltRecorderPlayerEditButtonWireframe/VeltRecorderPlayerEditButtonWireframe.d.ts +8 -0
  4. package/cjs/types/components/VeltRecorderPlayerWireframe/VeltRecorderPlayerEditButtonWireframe/index.d.ts +1 -0
  5. package/cjs/types/components/VeltRecorderPlayerWireframe/VeltRecorderPlayerVideoContainerWireframe/VeltRecorderPlayerVideoContainerWireframe.d.ts +2 -0
  6. package/cjs/types/components/VeltVideoEditorPlayerWireframe/VeltVideoEditorPlayerDownloadButtonWireframe/VeltVideoEditorPlayerDownloadButtonWireframe.d.ts +8 -0
  7. package/cjs/types/components/VeltVideoEditorPlayerWireframe/VeltVideoEditorPlayerDownloadButtonWireframe/index.d.ts +1 -0
  8. package/cjs/types/components/VeltVideoEditorPlayerWireframe/VeltVideoEditorPlayerWireframe.d.ts +2 -0
  9. package/cjs/types/constants.d.ts +1 -1
  10. package/esm/index.js +15 -1
  11. package/esm/index.js.map +1 -1
  12. package/esm/types/components/VeltRecorderPlayerWireframe/VeltRecorderPlayerEditButtonWireframe/VeltRecorderPlayerEditButtonWireframe.d.ts +8 -0
  13. package/esm/types/components/VeltRecorderPlayerWireframe/VeltRecorderPlayerEditButtonWireframe/index.d.ts +1 -0
  14. package/esm/types/components/VeltRecorderPlayerWireframe/VeltRecorderPlayerVideoContainerWireframe/VeltRecorderPlayerVideoContainerWireframe.d.ts +2 -0
  15. package/esm/types/components/VeltVideoEditorPlayerWireframe/VeltVideoEditorPlayerDownloadButtonWireframe/VeltVideoEditorPlayerDownloadButtonWireframe.d.ts +8 -0
  16. package/esm/types/components/VeltVideoEditorPlayerWireframe/VeltVideoEditorPlayerDownloadButtonWireframe/index.d.ts +1 -0
  17. package/esm/types/components/VeltVideoEditorPlayerWireframe/VeltVideoEditorPlayerWireframe.d.ts +2 -0
  18. package/esm/types/constants.d.ts +1 -1
  19. package/index.d.ts +12 -0
  20. package/package.json +1 -1
@@ -0,0 +1,8 @@
1
+ import React from 'react';
2
+ import { IVeltWireframeCommonProps } from '../../../constants';
3
+ export interface IVeltRecorderPlayerEditButtonWireframeProps extends IVeltWireframeCommonProps {
4
+ }
5
+ export interface IVeltRecorderPlayerEditButtonWireframe extends React.FC<IVeltRecorderPlayerEditButtonWireframeProps> {
6
+ }
7
+ declare const VeltRecorderPlayerEditButtonWireframe: IVeltRecorderPlayerEditButtonWireframe;
8
+ export default VeltRecorderPlayerEditButtonWireframe;
@@ -0,0 +1 @@
1
+ export { default } from './VeltRecorderPlayerEditButtonWireframe';
@@ -13,12 +13,14 @@ import { IVeltRecorderPlayerTimeWireframe } from '../VeltRecorderPlayerTimeWiref
13
13
  import { IVeltRecorderPlayerTranscriptionWireframe } from '../VeltRecorderPlayerTranscriptionWireframe/VeltRecorderPlayerTranscriptionWireframe';
14
14
  import { IVeltRecorderPlayerVideoWireframe } from '../VeltRecorderPlayerVideoWireframe/VeltRecorderPlayerVideoWireframe';
15
15
  import { IVeltRecorderPlayerAvatarWireframe } from '../VeltRecorderPlayerAvatarWireframe/VeltRecorderPlayerAvatarWireframe';
16
+ import { IVeltRecorderPlayerEditButtonWireframe } from '../VeltRecorderPlayerEditButtonWireframe/VeltRecorderPlayerEditButtonWireframe';
16
17
  export interface IVeltRecorderPlayerVideoContainerWireframeProps extends IVeltWireframeCommonProps {
17
18
  }
18
19
  export interface IVeltRecorderPlayerVideoContainerWireframe extends React.FC<IVeltRecorderPlayerVideoContainerWireframeProps> {
19
20
  Video: IVeltRecorderPlayerVideoWireframe;
20
21
  Timeline: IVeltRecorderPlayerTimelineWireframe;
21
22
  PlayButton: IVeltRecorderPlayerPlayButtonWireframe;
23
+ EditButton: IVeltRecorderPlayerEditButtonWireframe;
22
24
  FullScreenButton: IVeltRecorderPlayerFullScreenButtonWireframe;
23
25
  Overlay: IVeltRecorderPlayerOverlayWireframe;
24
26
  Time: IVeltRecorderPlayerTimeWireframe;
@@ -0,0 +1,8 @@
1
+ import React from 'react';
2
+ import { IVeltWireframeCommonProps } from '../../../constants';
3
+ export interface IVeltVideoEditorPlayerDownloadButtonWireframeProps extends IVeltWireframeCommonProps {
4
+ }
5
+ export interface IVeltVideoEditorPlayerDownloadButtonWireframe extends React.FC<IVeltVideoEditorPlayerDownloadButtonWireframeProps> {
6
+ }
7
+ declare const VeltVideoEditorPlayerDownloadButtonWireframe: IVeltVideoEditorPlayerDownloadButtonWireframe;
8
+ export default VeltVideoEditorPlayerDownloadButtonWireframe;
@@ -0,0 +1 @@
1
+ export { default } from './VeltVideoEditorPlayerDownloadButtonWireframe';
@@ -11,12 +11,14 @@ import { IVeltVideoEditorPlayerTotalTimeWireframe } from './VeltVideoEditorPlaye
11
11
  import { IVeltVideoEditorPlayerSplitButtonWireframe } from './VeltVideoEditorPlayerSplitButtonWireframe/VeltVideoEditorPlayerSplitButtonWireframe';
12
12
  import { IVeltVideoEditorPlayerDeleteButtonWireframe } from './VeltVideoEditorPlayerDeleteButtonWireframe/VeltVideoEditorPlayerDeleteButtonWireframe';
13
13
  import { IVeltVideoEditorPlayerTimelineWireframe } from './VeltVideoEditorPlayerTimelineWireframe/VeltVideoEditorPlayerTimelineWireframe';
14
+ import { IVeltVideoEditorPlayerDownloadButtonWireframe } from './VeltVideoEditorPlayerDownloadButtonWireframe/VeltVideoEditorPlayerDownloadButtonWireframe';
14
15
  export interface IVeltVideoEditorPlayerWireframeProps extends IVeltWireframeCommonProps {
15
16
  }
16
17
  export interface IVeltVideoEditorPlayerWireframe extends React.FC<IVeltVideoEditorPlayerWireframeProps> {
17
18
  Title: IVeltVideoEditorPlayerTitleWireframe;
18
19
  ApplyButton: IVeltVideoEditorPlayerApplyButtonWireframe;
19
20
  CloseButton: IVeltVideoEditorPlayerCloseButtonWireframe;
21
+ DownloadButton: IVeltVideoEditorPlayerDownloadButtonWireframe;
20
22
  Preview: IVeltVideoEditorPlayerPreviewWireframe;
21
23
  ToggleButton: IVeltVideoEditorPlayerToggleButtonWireframe;
22
24
  Time: IVeltVideoEditorPlayerTimeWireframe;
@@ -1,5 +1,5 @@
1
1
  /// <reference types="react" />
2
- export declare const VELT_SDK_VERSION = "4.5.0-beta.11";
2
+ export declare const VELT_SDK_VERSION = "4.5.0-beta.12";
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/esm/index.js CHANGED
@@ -132,7 +132,7 @@ var loadVelt = function (callback, version, staging, develop, proxyDomain) {
132
132
  }
133
133
  };
134
134
 
135
- var VELT_SDK_VERSION = '4.5.0-beta.11';
135
+ var VELT_SDK_VERSION = '4.5.0-beta.12';
136
136
  var VELT_SDK_INIT_EVENT = 'onVeltInit';
137
137
  var VELT_TAB_ID = 'veltTabId';
138
138
 
@@ -4721,6 +4721,12 @@ var VeltRecorderPlayerVideoWireframe = function (props) {
4721
4721
  return (React.createElement("velt-recorder-player-video-wireframe", __assign({}, transformedProps), children));
4722
4722
  };
4723
4723
 
4724
+ var VeltRecorderPlayerEditButtonWireframe = function (props) {
4725
+ var children = props.children, remainingProps = __rest(props, ["children"]);
4726
+ var transformedProps = transformWireframeProps(remainingProps);
4727
+ return (React.createElement("velt-recorder-player-edit-button-wireframe", __assign({}, transformedProps), children));
4728
+ };
4729
+
4724
4730
  var VeltRecorderPlayerVideoContainerWireframe = function (props) {
4725
4731
  var children = props.children, remainingProps = __rest(props, ["children"]);
4726
4732
  var transformedProps = transformWireframeProps(remainingProps);
@@ -4739,6 +4745,7 @@ VeltRecorderPlayerVideoContainerWireframe.Transcription = VeltRecorderPlayerTran
4739
4745
  VeltRecorderPlayerVideoContainerWireframe.CopyLink = VeltRecorderPlayerCopyLinkWireframe;
4740
4746
  VeltRecorderPlayerVideoContainerWireframe.Delete = VeltRecorderPlayerDeleteWireframe;
4741
4747
  VeltRecorderPlayerVideoContainerWireframe.Avatar = VeltRecorderPlayerAvatarWireframe;
4748
+ VeltRecorderPlayerVideoContainerWireframe.EditButton = VeltRecorderPlayerEditButtonWireframe;
4742
4749
 
4743
4750
  var VeltRecorderPlayerWireframe = function (props) {
4744
4751
  var children = props.children, remainingProps = __rest(props, ["children"]);
@@ -5079,6 +5086,12 @@ VeltVideoEditorPlayerTimelineWireframe.Trim = VeltVideoEditorPlayerTimelineTrimW
5079
5086
  VeltVideoEditorPlayerTimelineWireframe.Container = VeltVideoEditorPlayerTimelineContainerWireframe;
5080
5087
  VeltVideoEditorPlayerTimelineWireframe.Playhead = VeltVideoEditorPlayerTimelinePlayheadWireframe;
5081
5088
 
5089
+ var VeltVideoEditorPlayerDownloadButtonWireframe = function (props) {
5090
+ var children = props.children, remainingProps = __rest(props, ["children"]);
5091
+ var transformedProps = transformWireframeProps(remainingProps);
5092
+ return (React.createElement("velt-video-editor-player-download-button-wireframe", __assign({}, transformedProps), children));
5093
+ };
5094
+
5082
5095
  var VeltVideoEditorPlayerWireframe = function (props) {
5083
5096
  var children = props.children, remainingProps = __rest(props, ["children"]);
5084
5097
  var transformedProps = transformWireframeProps(remainingProps);
@@ -5095,6 +5108,7 @@ VeltVideoEditorPlayerWireframe.TotalTime = VeltVideoEditorPlayerTotalTimeWirefra
5095
5108
  VeltVideoEditorPlayerWireframe.SplitButton = VeltVideoEditorPlayerSplitButtonWireframe;
5096
5109
  VeltVideoEditorPlayerWireframe.DeleteButton = VeltVideoEditorPlayerDeleteButtonWireframe;
5097
5110
  VeltVideoEditorPlayerWireframe.Timeline = VeltVideoEditorPlayerTimelineWireframe;
5111
+ VeltVideoEditorPlayerWireframe.DownloadButton = VeltVideoEditorPlayerDownloadButtonWireframe;
5098
5112
 
5099
5113
  var VeltSubtitlesTextWireframe = function (props) {
5100
5114
  var children = props.children, remainingProps = __rest(props, ["children"]);