@veltdev/react 4.3.0-beta.7 → 4.4.0-beta.1

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 (26) hide show
  1. package/cjs/index.js +19 -11
  2. package/cjs/index.js.map +1 -1
  3. package/cjs/types/components/SnippylyComments/SnippylyComments.d.ts +1 -0
  4. package/cjs/types/components/SnippylyCommentsSidebar/SnippylyCommentsSidebar.d.ts +1 -0
  5. package/cjs/types/components/SnippylyRecorderControlPanel/SnippylyRecorderControlPanel.d.ts +2 -0
  6. package/cjs/types/components/VeltCommentThread/VeltCommentThread.d.ts +1 -0
  7. package/cjs/types/components/VeltInlineCommentsSection/VeltInlineCommentsSection.d.ts +1 -0
  8. package/cjs/types/components/VeltRecorderControlPanelWireframe/VeltRecorderControlPanelFloatingModeWireframe/VeltRecorderControlPanelFloatingModeWireframe.d.ts +2 -0
  9. package/cjs/types/components/VeltRecorderControlPanelWireframe/VeltRecorderControlPanelScreenWireframe/VeltRecorderControlPanelScreenWireframe.d.ts +8 -0
  10. package/cjs/types/components/VeltRecorderControlPanelWireframe/VeltRecorderControlPanelScreenWireframe/index.d.ts +1 -0
  11. package/cjs/types/components/VeltRecorderControlPanelWireframe/VeltRecorderControlPanelThreadModeWireframe/VeltRecorderControlPanelThreadModeWireframe.d.ts +2 -0
  12. package/cjs/types/constants.d.ts +1 -1
  13. package/esm/index.js +19 -11
  14. package/esm/index.js.map +1 -1
  15. package/esm/types/components/SnippylyComments/SnippylyComments.d.ts +1 -0
  16. package/esm/types/components/SnippylyCommentsSidebar/SnippylyCommentsSidebar.d.ts +1 -0
  17. package/esm/types/components/SnippylyRecorderControlPanel/SnippylyRecorderControlPanel.d.ts +2 -0
  18. package/esm/types/components/VeltCommentThread/VeltCommentThread.d.ts +1 -0
  19. package/esm/types/components/VeltInlineCommentsSection/VeltInlineCommentsSection.d.ts +1 -0
  20. package/esm/types/components/VeltRecorderControlPanelWireframe/VeltRecorderControlPanelFloatingModeWireframe/VeltRecorderControlPanelFloatingModeWireframe.d.ts +2 -0
  21. package/esm/types/components/VeltRecorderControlPanelWireframe/VeltRecorderControlPanelScreenWireframe/VeltRecorderControlPanelScreenWireframe.d.ts +8 -0
  22. package/esm/types/components/VeltRecorderControlPanelWireframe/VeltRecorderControlPanelScreenWireframe/index.d.ts +1 -0
  23. package/esm/types/components/VeltRecorderControlPanelWireframe/VeltRecorderControlPanelThreadModeWireframe/VeltRecorderControlPanelThreadModeWireframe.d.ts +2 -0
  24. package/esm/types/constants.d.ts +1 -1
  25. package/index.d.ts +13 -0
  26. package/package.json +1 -1
@@ -134,6 +134,7 @@ export interface IVeltCommentsProps extends React.DetailedHTMLProps<React.HTMLAt
134
134
  expandMentionGroups?: boolean;
135
135
  showMentionGroupsFirst?: boolean;
136
136
  showMentionGroupsOnly?: boolean;
137
+ fullExpanded?: boolean;
137
138
  }
138
139
  declare const SnippylyComments: React.FC<IVeltCommentsProps>;
139
140
  export default SnippylyComments;
@@ -79,6 +79,7 @@ export interface IVeltCommentsSidebarProps {
79
79
  searchPlaceholder?: string;
80
80
  filterOptionLayout?: 'checkbox' | 'dropdown';
81
81
  filterCount?: boolean;
82
+ fullExpanded?: boolean;
82
83
  }
83
84
  declare const SnippylyCommentsSidebar: React.FC<IVeltCommentsSidebarProps>;
84
85
  export default SnippylyCommentsSidebar;
@@ -7,6 +7,8 @@ export interface IVeltRecorderControlPanelProps {
7
7
  recordingCountdown?: boolean;
8
8
  recordingTranscription?: boolean;
9
9
  videoEditor?: boolean;
10
+ settingsEmbedded?: boolean;
11
+ autoOpenVideoEditor?: boolean;
10
12
  }
11
13
  declare const SnippylyRecorderControlPanel: React.FC<IVeltRecorderControlPanelProps>;
12
14
  export default SnippylyRecorderControlPanel;
@@ -8,6 +8,7 @@ export interface IVeltCommentThreadProps {
8
8
  variant?: string;
9
9
  dialogVariant?: string;
10
10
  shadowDom?: boolean;
11
+ fullExpanded?: boolean;
11
12
  }
12
13
  declare const VeltCommentThread: React.FC<IVeltCommentThreadProps>;
13
14
  export default VeltCommentThread;
@@ -26,6 +26,7 @@ export interface IVeltInlineCommentsSectionProps extends React.DetailedHTMLProps
26
26
  composerPosition?: 'top' | 'bottom';
27
27
  sortBy?: 'createdAt' | 'lastUpdated';
28
28
  sortOrder?: 'asc' | 'desc';
29
+ fullExpanded?: boolean;
29
30
  }
30
31
  declare const VeltInlineCommentsSection: React.FC<IVeltInlineCommentsSectionProps>;
31
32
  export default VeltInlineCommentsSection;
@@ -8,6 +8,7 @@ import { IVeltRecorderControlPanelCollapsedButtonWireframe } from '../VeltRecord
8
8
  import { IVeltRecorderControlPanelLoadingWireframe } from '../VeltRecorderControlPanelLoadingWireframe/VeltRecorderControlPanelLoadingWireframe';
9
9
  import { IVeltRecorderControlPanelPausedWireframe } from '../VeltRecorderControlPanelPausedWireframe/VeltRecorderControlPanelPausedWireframe';
10
10
  import { IVeltRecorderControlPanelVideoWireframe } from '../VeltRecorderControlPanelVideoWireframe/VeltRecorderControlPanelVideoWireframe';
11
+ import { IVeltRecorderControlPanelScreenWireframe } from '../VeltRecorderControlPanelScreenWireframe/VeltRecorderControlPanelScreenWireframe';
11
12
  export interface IVeltRecorderControlPanelFloatingModeWireframeProps extends IVeltWireframeCommonProps {
12
13
  }
13
14
  export interface IVeltRecorderControlPanelFloatingModeWireframe extends React.FC<IVeltRecorderControlPanelFloatingModeWireframeProps> {
@@ -15,6 +16,7 @@ export interface IVeltRecorderControlPanelFloatingModeWireframe extends React.FC
15
16
  ScreenVideo: IVeltRecorderControlPanelFloatingModeScreenVideoWireframe;
16
17
  Waveform: IVeltRecorderControlPanelFloatingModeWaveformWireframe;
17
18
  Video: IVeltRecorderControlPanelVideoWireframe;
19
+ Screen: IVeltRecorderControlPanelScreenWireframe;
18
20
  CollapsedButton: IVeltRecorderControlPanelCollapsedButtonWireframe;
19
21
  Paused: IVeltRecorderControlPanelPausedWireframe;
20
22
  Loading: IVeltRecorderControlPanelLoadingWireframe;
@@ -0,0 +1,8 @@
1
+ import React from 'react';
2
+ import { IVeltWireframeCommonProps } from '../../../constants';
3
+ export interface IVeltRecorderControlPanelScreenWireframeProps extends IVeltWireframeCommonProps {
4
+ }
5
+ export interface IVeltRecorderControlPanelScreenWireframe extends React.FC<IVeltRecorderControlPanelScreenWireframeProps> {
6
+ }
7
+ declare const VeltRecorderControlPanelScreenWireframe: IVeltRecorderControlPanelScreenWireframe;
8
+ export default VeltRecorderControlPanelScreenWireframe;
@@ -0,0 +1 @@
1
+ export { default } from './VeltRecorderControlPanelScreenWireframe';
@@ -3,10 +3,12 @@ import { IVeltWireframeCommonProps } from '../../../constants';
3
3
  import { IVeltRecorderControlPanelActionBarWireframe } from '../VeltRecorderControlPanelActionBarWireframe/VeltRecorderControlPanelActionBarWireframe';
4
4
  import { IVeltRecorderControlPanelVideoWireframe } from '../VeltRecorderControlPanelVideoWireframe/VeltRecorderControlPanelVideoWireframe';
5
5
  import { IVeltRecorderControlPanelLoadingWireframe } from '../VeltRecorderControlPanelLoadingWireframe/VeltRecorderControlPanelLoadingWireframe';
6
+ import { IVeltRecorderControlPanelScreenWireframe } from '../VeltRecorderControlPanelScreenWireframe/VeltRecorderControlPanelScreenWireframe';
6
7
  export interface IVeltRecorderControlPanelThreadModeWireframeProps extends IVeltWireframeCommonProps {
7
8
  }
8
9
  export interface IVeltRecorderControlPanelThreadModeWireframe extends React.FC<IVeltRecorderControlPanelThreadModeWireframeProps> {
9
10
  Video: IVeltRecorderControlPanelVideoWireframe;
11
+ Screen: IVeltRecorderControlPanelScreenWireframe;
10
12
  Loading: IVeltRecorderControlPanelLoadingWireframe;
11
13
  ActionBar: IVeltRecorderControlPanelActionBarWireframe;
12
14
  }
@@ -1,5 +1,5 @@
1
1
  /// <reference types="react" />
2
- export declare const VELT_SDK_VERSION = "4.3.0-beta.7";
2
+ export declare const VELT_SDK_VERSION = "4.4.0-beta.1";
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
@@ -176,6 +176,7 @@ interface IVeltCommentsProps extends React$1.DetailedHTMLProps<React$1.HTMLAttri
176
176
  expandMentionGroups?: boolean;
177
177
  showMentionGroupsFirst?: boolean;
178
178
  showMentionGroupsOnly?: boolean;
179
+ fullExpanded?: boolean;
179
180
  }
180
181
  declare const SnippylyComments: React$1.FC<IVeltCommentsProps>;
181
182
 
@@ -259,6 +260,7 @@ interface IVeltCommentsSidebarProps {
259
260
  searchPlaceholder?: string;
260
261
  filterOptionLayout?: 'checkbox' | 'dropdown';
261
262
  filterCount?: boolean;
263
+ fullExpanded?: boolean;
262
264
  }
263
265
  declare const SnippylyCommentsSidebar: React$1.FC<IVeltCommentsSidebarProps>;
264
266
 
@@ -333,6 +335,8 @@ interface IVeltRecorderControlPanelProps {
333
335
  recordingCountdown?: boolean;
334
336
  recordingTranscription?: boolean;
335
337
  videoEditor?: boolean;
338
+ settingsEmbedded?: boolean;
339
+ autoOpenVideoEditor?: boolean;
336
340
  }
337
341
  declare const SnippylyRecorderControlPanel: React$1.FC<IVeltRecorderControlPanelProps>;
338
342
 
@@ -545,6 +549,7 @@ interface IVeltCommentThreadProps {
545
549
  variant?: string;
546
550
  dialogVariant?: string;
547
551
  shadowDom?: boolean;
552
+ fullExpanded?: boolean;
548
553
  }
549
554
  declare const VeltCommentThread: React$1.FC<IVeltCommentThreadProps>;
550
555
 
@@ -656,6 +661,7 @@ interface IVeltInlineCommentsSectionProps extends React$1.DetailedHTMLProps<Reac
656
661
  composerPosition?: 'top' | 'bottom';
657
662
  sortBy?: 'createdAt' | 'lastUpdated';
658
663
  sortOrder?: 'asc' | 'desc';
664
+ fullExpanded?: boolean;
659
665
  }
660
666
  declare const VeltInlineCommentsSection: React$1.FC<IVeltInlineCommentsSectionProps>;
661
667
 
@@ -2995,6 +3001,11 @@ interface IVeltRecorderControlPanelVideoWireframeProps extends IVeltWireframeCom
2995
3001
  interface IVeltRecorderControlPanelVideoWireframe extends React$1.FC<IVeltRecorderControlPanelVideoWireframeProps> {
2996
3002
  }
2997
3003
 
3004
+ interface IVeltRecorderControlPanelScreenWireframeProps extends IVeltWireframeCommonProps {
3005
+ }
3006
+ interface IVeltRecorderControlPanelScreenWireframe extends React$1.FC<IVeltRecorderControlPanelScreenWireframeProps> {
3007
+ }
3008
+
2998
3009
  interface IVeltRecorderControlPanelFloatingModeWireframeProps extends IVeltWireframeCommonProps {
2999
3010
  }
3000
3011
  interface IVeltRecorderControlPanelFloatingModeWireframe extends React$1.FC<IVeltRecorderControlPanelFloatingModeWireframeProps> {
@@ -3002,6 +3013,7 @@ interface IVeltRecorderControlPanelFloatingModeWireframe extends React$1.FC<IVel
3002
3013
  ScreenVideo: IVeltRecorderControlPanelFloatingModeScreenVideoWireframe;
3003
3014
  Waveform: IVeltRecorderControlPanelFloatingModeWaveformWireframe;
3004
3015
  Video: IVeltRecorderControlPanelVideoWireframe;
3016
+ Screen: IVeltRecorderControlPanelScreenWireframe;
3005
3017
  CollapsedButton: IVeltRecorderControlPanelCollapsedButtonWireframe;
3006
3018
  Paused: IVeltRecorderControlPanelPausedWireframe;
3007
3019
  Loading: IVeltRecorderControlPanelLoadingWireframe;
@@ -3012,6 +3024,7 @@ interface IVeltRecorderControlPanelThreadModeWireframeProps extends IVeltWirefra
3012
3024
  }
3013
3025
  interface IVeltRecorderControlPanelThreadModeWireframe extends React$1.FC<IVeltRecorderControlPanelThreadModeWireframeProps> {
3014
3026
  Video: IVeltRecorderControlPanelVideoWireframe;
3027
+ Screen: IVeltRecorderControlPanelScreenWireframe;
3015
3028
  Loading: IVeltRecorderControlPanelLoadingWireframe;
3016
3029
  ActionBar: IVeltRecorderControlPanelActionBarWireframe;
3017
3030
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@veltdev/react",
3
- "version": "4.3.0-beta.7",
3
+ "version": "4.4.0-beta.1",
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": [