@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/index.d.ts CHANGED
@@ -3217,12 +3217,18 @@ interface IVeltRecorderPlayerVideoWireframeProps extends IVeltWireframeCommonPro
3217
3217
  interface IVeltRecorderPlayerVideoWireframe extends React$1.FC<IVeltRecorderPlayerVideoWireframeProps> {
3218
3218
  }
3219
3219
 
3220
+ interface IVeltRecorderPlayerEditButtonWireframeProps extends IVeltWireframeCommonProps {
3221
+ }
3222
+ interface IVeltRecorderPlayerEditButtonWireframe extends React$1.FC<IVeltRecorderPlayerEditButtonWireframeProps> {
3223
+ }
3224
+
3220
3225
  interface IVeltRecorderPlayerVideoContainerWireframeProps extends IVeltWireframeCommonProps {
3221
3226
  }
3222
3227
  interface IVeltRecorderPlayerVideoContainerWireframe extends React$1.FC<IVeltRecorderPlayerVideoContainerWireframeProps> {
3223
3228
  Video: IVeltRecorderPlayerVideoWireframe;
3224
3229
  Timeline: IVeltRecorderPlayerTimelineWireframe;
3225
3230
  PlayButton: IVeltRecorderPlayerPlayButtonWireframe;
3231
+ EditButton: IVeltRecorderPlayerEditButtonWireframe;
3226
3232
  FullScreenButton: IVeltRecorderPlayerFullScreenButtonWireframe;
3227
3233
  Overlay: IVeltRecorderPlayerOverlayWireframe;
3228
3234
  Time: IVeltRecorderPlayerTimeWireframe;
@@ -3526,12 +3532,18 @@ interface IVeltVideoEditorPlayerTimelineWireframe extends React$1.FC<IVeltVideoE
3526
3532
  Playhead: IVeltVideoEditorPlayerTimelinePlayheadWireframe;
3527
3533
  }
3528
3534
 
3535
+ interface IVeltVideoEditorPlayerDownloadButtonWireframeProps extends IVeltWireframeCommonProps {
3536
+ }
3537
+ interface IVeltVideoEditorPlayerDownloadButtonWireframe extends React$1.FC<IVeltVideoEditorPlayerDownloadButtonWireframeProps> {
3538
+ }
3539
+
3529
3540
  interface IVeltVideoEditorPlayerWireframeProps extends IVeltWireframeCommonProps {
3530
3541
  }
3531
3542
  interface IVeltVideoEditorPlayerWireframe extends React$1.FC<IVeltVideoEditorPlayerWireframeProps> {
3532
3543
  Title: IVeltVideoEditorPlayerTitleWireframe;
3533
3544
  ApplyButton: IVeltVideoEditorPlayerApplyButtonWireframe;
3534
3545
  CloseButton: IVeltVideoEditorPlayerCloseButtonWireframe;
3546
+ DownloadButton: IVeltVideoEditorPlayerDownloadButtonWireframe;
3535
3547
  Preview: IVeltVideoEditorPlayerPreviewWireframe;
3536
3548
  ToggleButton: IVeltVideoEditorPlayerToggleButtonWireframe;
3537
3549
  Time: IVeltVideoEditorPlayerTimeWireframe;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@veltdev/react",
3
- "version": "4.5.0-beta.11",
3
+ "version": "4.5.0-beta.12",
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": [