@veltdev/react 4.0.0-beta.23 → 4.0.0-beta.25

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 (30) hide show
  1. package/cjs/index.js +87 -32
  2. package/cjs/index.js.map +1 -1
  3. package/cjs/types/components/VeltMediaSourceSettingsWireframe/VeltMediaSourceSettingsWireframe.d.ts +4 -4
  4. package/cjs/types/components/VeltMultiThreadCommentDialogWireframe/VeltMultiThreadCommentDialogEmptyPlaceholderWireframe/VeltMultiThreadCommentDialogEmptyPlaceholderWireframe.d.ts +2 -0
  5. package/cjs/types/components/VeltMultiThreadCommentDialogWireframe/VeltMultiThreadCommentDialogWireframe.d.ts +8 -8
  6. package/cjs/types/components/VeltNotificationsPanelWireframe/VeltNotificationsPanelCloseButtonWireframe/VeltNotificationsPanelCloseButtonWireframe.d.ts +3 -1
  7. package/cjs/types/components/VeltNotificationsPanelWireframe/VeltNotificationsPanelReadAllButtonWireframe/VeltNotificationsPanelReadAllButtonWireframe.d.ts +3 -1
  8. package/cjs/types/components/VeltNotificationsPanelWireframe/VeltNotificationsPanelSkeletonWireframe/VeltNotificationsPanelSkeletonWireframe.d.ts +2 -0
  9. package/cjs/types/components/VeltNotificationsPanelWireframe/VeltNotificationsPanelTitleWireframe/VeltNotificationsPanelTitleWireframe.d.ts +3 -1
  10. package/cjs/types/components/VeltNotificationsPanelWireframe/VeltNotificationsPanelViewAllButtonWireframe/VeltNotificationsPanelViewAllButtonWireframe.d.ts +2 -0
  11. package/cjs/types/components/VeltNotificationsPanelWireframe/VeltNotificationsPanelWireframe.d.ts +14 -14
  12. package/cjs/types/components/VeltSubtitlesWireframe/index.d.ts +1 -1
  13. package/cjs/types/constants.d.ts +1 -1
  14. package/cjs/types/hooks/RecorderElement.d.ts +3 -0
  15. package/esm/index.js +87 -32
  16. package/esm/index.js.map +1 -1
  17. package/esm/types/components/VeltMediaSourceSettingsWireframe/VeltMediaSourceSettingsWireframe.d.ts +4 -4
  18. package/esm/types/components/VeltMultiThreadCommentDialogWireframe/VeltMultiThreadCommentDialogEmptyPlaceholderWireframe/VeltMultiThreadCommentDialogEmptyPlaceholderWireframe.d.ts +2 -0
  19. package/esm/types/components/VeltMultiThreadCommentDialogWireframe/VeltMultiThreadCommentDialogWireframe.d.ts +8 -8
  20. package/esm/types/components/VeltNotificationsPanelWireframe/VeltNotificationsPanelCloseButtonWireframe/VeltNotificationsPanelCloseButtonWireframe.d.ts +3 -1
  21. package/esm/types/components/VeltNotificationsPanelWireframe/VeltNotificationsPanelReadAllButtonWireframe/VeltNotificationsPanelReadAllButtonWireframe.d.ts +3 -1
  22. package/esm/types/components/VeltNotificationsPanelWireframe/VeltNotificationsPanelSkeletonWireframe/VeltNotificationsPanelSkeletonWireframe.d.ts +2 -0
  23. package/esm/types/components/VeltNotificationsPanelWireframe/VeltNotificationsPanelTitleWireframe/VeltNotificationsPanelTitleWireframe.d.ts +3 -1
  24. package/esm/types/components/VeltNotificationsPanelWireframe/VeltNotificationsPanelViewAllButtonWireframe/VeltNotificationsPanelViewAllButtonWireframe.d.ts +2 -0
  25. package/esm/types/components/VeltNotificationsPanelWireframe/VeltNotificationsPanelWireframe.d.ts +14 -14
  26. package/esm/types/components/VeltSubtitlesWireframe/index.d.ts +1 -1
  27. package/esm/types/constants.d.ts +1 -1
  28. package/esm/types/hooks/RecorderElement.d.ts +3 -0
  29. package/index.d.ts +423 -22
  30. package/package.json +1 -1
@@ -1,12 +1,12 @@
1
1
  import React from 'react';
2
2
  import { IVeltWireframeCommonProps } from '../../constants';
3
- import { IVeltMediaSourceSettingsAudioWireframeProps } from './VeltMediaSourceSettingsAudioWireframe/VeltMediaSourceSettingsAudioWireframe';
4
- import { IVeltMediaSourceSettingsVideoWireframeProps } from './VeltMediaSourceSettingsVideoWireframe/VeltMediaSourceSettingsVideoWireframe';
3
+ import { IVeltMediaSourceSettingsAudioWireframe } from './VeltMediaSourceSettingsAudioWireframe/VeltMediaSourceSettingsAudioWireframe';
4
+ import { IVeltMediaSourceSettingsVideoWireframe } from './VeltMediaSourceSettingsVideoWireframe/VeltMediaSourceSettingsVideoWireframe';
5
5
  export interface IVeltMediaSourceSettingsWireframeProps extends IVeltWireframeCommonProps {
6
6
  }
7
7
  export interface IVeltMediaSourceSettingsWireframe extends React.FC<IVeltMediaSourceSettingsWireframeProps> {
8
- Audio: React.FC<IVeltMediaSourceSettingsAudioWireframeProps>;
9
- Video: React.FC<IVeltMediaSourceSettingsVideoWireframeProps>;
8
+ Audio: IVeltMediaSourceSettingsAudioWireframe;
9
+ Video: IVeltMediaSourceSettingsVideoWireframe;
10
10
  }
11
11
  declare const VeltMediaSourceSettingsWireframe: IVeltMediaSourceSettingsWireframe;
12
12
  export default VeltMediaSourceSettingsWireframe;
@@ -2,5 +2,7 @@ import React from 'react';
2
2
  import { IVeltWireframeCommonProps } from '../../../constants';
3
3
  export interface IVeltMultiThreadCommentDialogEmptyPlaceholderWireframeProps extends IVeltWireframeCommonProps {
4
4
  }
5
+ export interface IVeltMultiThreadCommentDialogEmptyPlaceholderWireframe extends React.FC<IVeltMultiThreadCommentDialogEmptyPlaceholderWireframeProps> {
6
+ }
5
7
  declare const VeltMultiThreadCommentDialogEmptyPlaceholderWireframe: React.FC<IVeltMultiThreadCommentDialogEmptyPlaceholderWireframeProps>;
6
8
  export default VeltMultiThreadCommentDialogEmptyPlaceholderWireframe;
@@ -1,26 +1,26 @@
1
1
  import React from 'react';
2
2
  import { IVeltWireframeCommonProps } from '../../constants';
3
+ import { IVeltMultiThreadCommentDialogCloseButtonWireframeProps } from './VeltMultiThreadCommentDialogCloseButtonWireframe/VeltMultiThreadCommentDialogCloseButtonWireframe';
3
4
  import { IVeltMultiThreadCommentDialogCommentCountWireframeProps } from './VeltMultiThreadCommentDialogCommentCountWireframe/VeltMultiThreadCommentDialogCommentCountWireframe';
4
5
  import { IVeltMultiThreadCommentDialogComposerContainerWireframeProps } from './VeltMultiThreadCommentDialogComposerContainerWireframe/VeltMultiThreadCommentDialogComposerContainerWireframe';
6
+ import { IVeltMultiThreadCommentDialogEmptyPlaceholderWireframe } from './VeltMultiThreadCommentDialogEmptyPlaceholderWireframe/VeltMultiThreadCommentDialogEmptyPlaceholderWireframe';
5
7
  import { IVeltMultiThreadCommentDialogListWireframeProps } from './VeltMultiThreadCommentDialogListWireframe/VeltMultiThreadCommentDialogListWireframe';
6
- import { IVeltMultiThreadCommentDialogEmptyPlaceholderWireframeProps } from './VeltMultiThreadCommentDialogEmptyPlaceholderWireframe/VeltMultiThreadCommentDialogEmptyPlaceholderWireframe';
7
- import { IVeltMultiThreadCommentDialogMinimalActionsDropdownWireframeProps } from './VeltMultiThreadCommentDialogMinimalActionsDropdownWireframe/VeltMultiThreadCommentDialogMinimalActionsDropdownWireframe';
8
- import { IVeltMultiThreadCommentDialogMinimalFilterDropdownWireframeProps } from './VeltMultiThreadCommentDialogMinimalFilterDropdownWireframe/VeltMultiThreadCommentDialogMinimalFilterDropdownWireframe';
8
+ import { IVeltMultiThreadCommentDialogMinimalActionsDropdownWireframe } from './VeltMultiThreadCommentDialogMinimalActionsDropdownWireframe/VeltMultiThreadCommentDialogMinimalActionsDropdownWireframe';
9
+ import { IVeltMultiThreadCommentDialogMinimalFilterDropdownWireframe } from './VeltMultiThreadCommentDialogMinimalFilterDropdownWireframe/VeltMultiThreadCommentDialogMinimalFilterDropdownWireframe';
9
10
  import { IVeltMultiThreadCommentDialogNewThreadButtonWireframeProps } from './VeltMultiThreadCommentDialogNewThreadButtonWireframe/VeltMultiThreadCommentDialogNewThreadButtonWireframe';
10
11
  import { IVeltMultiThreadCommentDialogResetFilterButtonWireframeProps } from './VeltMultiThreadCommentDialogResetFilterButtonWireframe/VeltMultiThreadCommentDialogResetFilterButtonWireframe';
11
- import { IVeltMultiThreadCommentDialogCloseButtonWireframeProps } from './VeltMultiThreadCommentDialogCloseButtonWireframe/VeltMultiThreadCommentDialogCloseButtonWireframe';
12
12
  export interface IVeltMultiThreadCommentDialogWireframeProps extends IVeltWireframeCommonProps {
13
13
  }
14
14
  export interface IVeltMultiThreadCommentDialogWireframe extends React.FC<IVeltMultiThreadCommentDialogWireframeProps> {
15
15
  CommentCount: React.FC<IVeltMultiThreadCommentDialogCommentCountWireframeProps>;
16
16
  ComposerContainer: React.FC<IVeltMultiThreadCommentDialogComposerContainerWireframeProps>;
17
17
  List: React.FC<IVeltMultiThreadCommentDialogListWireframeProps>;
18
- EmptyPlaceholder: React.FC<IVeltMultiThreadCommentDialogEmptyPlaceholderWireframeProps>;
19
- MinimalActionsDropdown: React.FC<IVeltMultiThreadCommentDialogMinimalActionsDropdownWireframeProps>;
20
- MinimalFilterDropdown: React.FC<IVeltMultiThreadCommentDialogMinimalFilterDropdownWireframeProps>;
18
+ CloseButton: React.FC<IVeltMultiThreadCommentDialogCloseButtonWireframeProps>;
19
+ MinimalFilterDropdown: IVeltMultiThreadCommentDialogMinimalFilterDropdownWireframe;
20
+ EmptyPlaceholder: IVeltMultiThreadCommentDialogEmptyPlaceholderWireframe;
21
21
  NewThreadButton: React.FC<IVeltMultiThreadCommentDialogNewThreadButtonWireframeProps>;
22
+ MinimalActionsDropdown: IVeltMultiThreadCommentDialogMinimalActionsDropdownWireframe;
22
23
  ResetFilterButton: React.FC<IVeltMultiThreadCommentDialogResetFilterButtonWireframeProps>;
23
- CloseButton: React.FC<IVeltMultiThreadCommentDialogCloseButtonWireframeProps>;
24
24
  }
25
25
  declare const VeltMultiThreadCommentDialogWireframe: IVeltMultiThreadCommentDialogWireframe;
26
26
  export default VeltMultiThreadCommentDialogWireframe;
@@ -2,5 +2,7 @@ import React from 'react';
2
2
  import { IVeltWireframeCommonProps } from '../../../constants';
3
3
  export interface IVeltNotificationsPanelCloseButtonWireframeProps extends IVeltWireframeCommonProps {
4
4
  }
5
- declare const VeltNotificationsPanelCloseButtonWireframe: React.FC<IVeltNotificationsPanelCloseButtonWireframeProps>;
5
+ export interface IVeltNotificationsPanelCloseButtonWireframe extends React.FC<IVeltNotificationsPanelCloseButtonWireframeProps> {
6
+ }
7
+ declare const VeltNotificationsPanelCloseButtonWireframe: IVeltNotificationsPanelCloseButtonWireframe;
6
8
  export default VeltNotificationsPanelCloseButtonWireframe;
@@ -2,5 +2,7 @@ import React from 'react';
2
2
  import { IVeltWireframeCommonProps } from '../../../constants';
3
3
  export interface IVeltNotificationsPanelReadAllButtonWireframeProps extends IVeltWireframeCommonProps {
4
4
  }
5
- declare const VeltNotificationsPanelReadAllButtonWireframe: React.FC<IVeltNotificationsPanelReadAllButtonWireframeProps>;
5
+ export interface IVeltNotificationsPanelReadAllButtonWireframe extends React.FC<IVeltNotificationsPanelReadAllButtonWireframeProps> {
6
+ }
7
+ declare const VeltNotificationsPanelReadAllButtonWireframe: IVeltNotificationsPanelReadAllButtonWireframe;
6
8
  export default VeltNotificationsPanelReadAllButtonWireframe;
@@ -2,5 +2,7 @@ import React from 'react';
2
2
  import { IVeltWireframeCommonProps } from '../../../constants';
3
3
  export interface IVeltNotificationsPanelSkeletonWireframeProps extends IVeltWireframeCommonProps {
4
4
  }
5
+ export interface IVeltNotificationsPanelSkeletonWireframe extends React.FC<IVeltNotificationsPanelSkeletonWireframeProps> {
6
+ }
5
7
  declare const VeltNotificationsPanelSkeletonWireframe: React.FC<IVeltNotificationsPanelSkeletonWireframeProps>;
6
8
  export default VeltNotificationsPanelSkeletonWireframe;
@@ -2,5 +2,7 @@ import React from 'react';
2
2
  import { IVeltWireframeCommonProps } from '../../../constants';
3
3
  export interface IVeltNotificationsPanelTitleWireframeProps extends IVeltWireframeCommonProps {
4
4
  }
5
- declare const VeltNotificationsPanelTitleWireframe: React.FC<IVeltNotificationsPanelTitleWireframeProps>;
5
+ export interface IVeltNotificationsPanelTitleWireframe extends React.FC<IVeltNotificationsPanelTitleWireframeProps> {
6
+ }
7
+ declare const VeltNotificationsPanelTitleWireframe: IVeltNotificationsPanelTitleWireframe;
6
8
  export default VeltNotificationsPanelTitleWireframe;
@@ -2,5 +2,7 @@ import React from 'react';
2
2
  import { IVeltWireframeCommonProps } from '../../../constants';
3
3
  export interface IVeltNotificationsPanelViewAllButtonWireframeProps extends IVeltWireframeCommonProps {
4
4
  }
5
+ export interface IVeltNotificationsPanelViewAllButtonWireframe extends React.FC<IVeltNotificationsPanelViewAllButtonWireframeProps> {
6
+ }
5
7
  declare const VeltNotificationsPanelViewAllButtonWireframe: React.FC<IVeltNotificationsPanelViewAllButtonWireframeProps>;
6
8
  export default VeltNotificationsPanelViewAllButtonWireframe;
@@ -1,22 +1,22 @@
1
1
  import React from 'react';
2
2
  import { IVeltWireframeCommonProps } from '../../constants';
3
- import { IVeltNotificationsPanelCloseButtonWireframeProps } from './VeltNotificationsPanelCloseButtonWireframe/VeltNotificationsPanelCloseButtonWireframe';
4
- import { IVeltNotificationsPanelContentWireframeProps } from './VeltNotificationsPanelContentWireframe/VeltNotificationsPanelContentWireframe';
5
- import { IVeltNotificationsPanelHeaderWireframeProps } from './VeltNotificationsPanelHeaderWireframe/VeltNotificationsPanelHeaderWireframe';
6
- import { IVeltNotificationsPanelReadAllButtonWireframeProps } from './VeltNotificationsPanelReadAllButtonWireframe/VeltNotificationsPanelReadAllButtonWireframe';
7
- import { IVeltNotificationsPanelSkeletonWireframeProps } from './VeltNotificationsPanelSkeletonWireframe/VeltNotificationsPanelSkeletonWireframe';
8
- import { IVeltNotificationsPanelTitleWireframeProps } from './VeltNotificationsPanelTitleWireframe/VeltNotificationsPanelTitleWireframe';
9
- import { IVeltNotificationsPanelViewAllButtonWireframeProps } from './VeltNotificationsPanelViewAllButtonWireframe/VeltNotificationsPanelViewAllButtonWireframe';
3
+ import { IVeltNotificationsPanelContentWireframe } from './VeltNotificationsPanelContentWireframe/VeltNotificationsPanelContentWireframe';
4
+ import { IVeltNotificationsPanelHeaderWireframe } from './VeltNotificationsPanelHeaderWireframe/VeltNotificationsPanelHeaderWireframe';
5
+ import { IVeltNotificationsPanelReadAllButtonWireframe } from './VeltNotificationsPanelReadAllButtonWireframe/VeltNotificationsPanelReadAllButtonWireframe';
6
+ import { IVeltNotificationsPanelTitleWireframe } from './VeltNotificationsPanelTitleWireframe/VeltNotificationsPanelTitleWireframe';
7
+ import { IVeltNotificationsPanelViewAllButtonWireframe } from './VeltNotificationsPanelViewAllButtonWireframe/VeltNotificationsPanelViewAllButtonWireframe';
8
+ import { IVeltNotificationsPanelCloseButtonWireframe } from './VeltNotificationsPanelCloseButtonWireframe/VeltNotificationsPanelCloseButtonWireframe';
9
+ import { IVeltNotificationsPanelSkeletonWireframe } from './VeltNotificationsPanelSkeletonWireframe/VeltNotificationsPanelSkeletonWireframe';
10
10
  export interface IVeltNotificationsPanelWireframeProps extends IVeltWireframeCommonProps {
11
11
  }
12
12
  export interface IVeltNotificationsPanelWireframe extends React.FC<IVeltNotificationsPanelWireframeProps> {
13
- CloseButton: React.FC<IVeltNotificationsPanelCloseButtonWireframeProps>;
14
- Content: React.FC<IVeltNotificationsPanelContentWireframeProps>;
15
- Header: React.FC<IVeltNotificationsPanelHeaderWireframeProps>;
16
- ReadAllButton: React.FC<IVeltNotificationsPanelReadAllButtonWireframeProps>;
17
- Skeleton: React.FC<IVeltNotificationsPanelSkeletonWireframeProps>;
18
- Title: React.FC<IVeltNotificationsPanelTitleWireframeProps>;
19
- ViewAllButton: React.FC<IVeltNotificationsPanelViewAllButtonWireframeProps>;
13
+ Content: IVeltNotificationsPanelContentWireframe;
14
+ Header: IVeltNotificationsPanelHeaderWireframe;
15
+ ReadAllButton: IVeltNotificationsPanelReadAllButtonWireframe;
16
+ Title: IVeltNotificationsPanelTitleWireframe;
17
+ ViewAllButton: IVeltNotificationsPanelViewAllButtonWireframe;
18
+ CloseButton: IVeltNotificationsPanelCloseButtonWireframe;
19
+ Skeleton: IVeltNotificationsPanelSkeletonWireframe;
20
20
  }
21
21
  declare const VeltNotificationsPanelWireframe: IVeltNotificationsPanelWireframe;
22
22
  export default VeltNotificationsPanelWireframe;
@@ -1 +1 @@
1
- export { default } from './VeltSubtitlesButtonWireframe';
1
+ export { default } from './VeltSubtitlesWireframe';
@@ -1,5 +1,5 @@
1
1
  /// <reference types="react" />
2
- export declare const VELT_SDK_VERSION = "4.0.0-beta.23";
2
+ export declare const VELT_SDK_VERSION = "4.0.0-beta.25";
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> {
@@ -1,4 +1,7 @@
1
1
  import { RecorderElement, RecordedData } from "@veltdev/types";
2
2
  export declare function useRecorderUtils(): RecorderElement | undefined;
3
3
  export declare function useRecorderAddHandler(): any;
4
+ /**
5
+ * @deprecated Use `recorderUtils.getRecordingData()` method instead
6
+ */
4
7
  export declare function useRecordingDataByRecorderId(recorderId: string): RecordedData | null;
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.0.0-beta.23';
135
+ var VELT_SDK_VERSION = '4.0.0-beta.25';
136
136
  var VELT_SDK_INIT_EVENT = 'onVeltInit';
137
137
  var VELT_TAB_ID = 'veltTabId';
138
138
 
@@ -3308,12 +3308,6 @@ VeltInlineCommentsSectionWireframe.List = VeltInlineCommentsSectionListWireframe
3308
3308
  VeltInlineCommentsSectionWireframe.Panel = VeltInlineCommentsSectionPanelWireframe;
3309
3309
  VeltInlineCommentsSectionWireframe.Skeleton = VeltInlineCommentsSectionSkeletonWireframe;
3310
3310
 
3311
- var VeltNotificationsPanelCloseButtonWireframe = function (props) {
3312
- var children = props.children, remainingProps = __rest(props, ["children"]);
3313
- var transformedProps = transformWireframeProps(remainingProps);
3314
- return (React.createElement("velt-notifications-panel-close-button-wireframe", __assign({}, transformedProps), children));
3315
- };
3316
-
3317
3311
  var VeltNotificationsPanelContentAllListItemContentWireframe = function (props) {
3318
3312
  var children = props.children, remainingProps = __rest(props, ["children"]);
3319
3313
  var transformedProps = transformWireframeProps(remainingProps);
@@ -3570,12 +3564,6 @@ var VeltNotificationsPanelReadAllButtonWireframe = function (props) {
3570
3564
  return (React.createElement("velt-notifications-panel-read-all-button-wireframe", __assign({}, transformedProps), children));
3571
3565
  };
3572
3566
 
3573
- var VeltNotificationsPanelSkeletonWireframe = function (props) {
3574
- var children = props.children, remainingProps = __rest(props, ["children"]);
3575
- var transformedProps = transformWireframeProps(remainingProps);
3576
- return (React.createElement("velt-notifications-panel-skeleton-wireframe", __assign({}, transformedProps), children));
3577
- };
3578
-
3579
3567
  var VeltNotificationsPanelTitleWireframe = function (props) {
3580
3568
  var children = props.children, remainingProps = __rest(props, ["children"]);
3581
3569
  var transformedProps = transformWireframeProps(remainingProps);
@@ -3588,18 +3576,30 @@ var VeltNotificationsPanelViewAllButtonWireframe = function (props) {
3588
3576
  return (React.createElement("velt-notifications-panel-view-all-button-wireframe", __assign({}, transformedProps), children));
3589
3577
  };
3590
3578
 
3579
+ var VeltNotificationsPanelCloseButtonWireframe = function (props) {
3580
+ var children = props.children, remainingProps = __rest(props, ["children"]);
3581
+ var transformedProps = transformWireframeProps(remainingProps);
3582
+ return (React.createElement("velt-notifications-panel-close-button-wireframe", __assign({}, transformedProps), children));
3583
+ };
3584
+
3585
+ var VeltNotificationsPanelSkeletonWireframe = function (props) {
3586
+ var children = props.children, remainingProps = __rest(props, ["children"]);
3587
+ var transformedProps = transformWireframeProps(remainingProps);
3588
+ return (React.createElement("velt-notifications-panel-skeleton-wireframe", __assign({}, transformedProps), children));
3589
+ };
3590
+
3591
3591
  var VeltNotificationsPanelWireframe = function (props) {
3592
3592
  var children = props.children, remainingProps = __rest(props, ["children"]);
3593
3593
  var transformedProps = transformWireframeProps(remainingProps);
3594
3594
  return (React.createElement("velt-notifications-panel-wireframe", __assign({}, transformedProps), children));
3595
3595
  };
3596
- VeltNotificationsPanelWireframe.CloseButton = VeltNotificationsPanelCloseButtonWireframe;
3597
3596
  VeltNotificationsPanelWireframe.Content = VeltNotificationsPanelContentWireframe;
3598
3597
  VeltNotificationsPanelWireframe.Header = VeltNotificationsPanelHeaderWireframe;
3599
3598
  VeltNotificationsPanelWireframe.ReadAllButton = VeltNotificationsPanelReadAllButtonWireframe;
3600
- VeltNotificationsPanelWireframe.Skeleton = VeltNotificationsPanelSkeletonWireframe;
3601
3599
  VeltNotificationsPanelWireframe.Title = VeltNotificationsPanelTitleWireframe;
3602
3600
  VeltNotificationsPanelWireframe.ViewAllButton = VeltNotificationsPanelViewAllButtonWireframe;
3601
+ VeltNotificationsPanelWireframe.CloseButton = VeltNotificationsPanelCloseButtonWireframe;
3602
+ VeltNotificationsPanelWireframe.Skeleton = VeltNotificationsPanelSkeletonWireframe;
3603
3603
 
3604
3604
  var VeltNotificationsToolIconWireframe = function (props) {
3605
3605
  var children = props.children, remainingProps = __rest(props, ["children"]);
@@ -3730,6 +3730,12 @@ var VeltPersistentCommentModeWireframe = function (props) {
3730
3730
  VeltPersistentCommentModeWireframe.CloseButton = VeltPersistentCommentModeCloseButtonWireframe;
3731
3731
  VeltPersistentCommentModeWireframe.Label = VeltPersistentCommentModeLabelWireframe;
3732
3732
 
3733
+ var VeltMultiThreadCommentDialogCloseButtonWireframe = function (props) {
3734
+ var children = props.children, remainingProps = __rest(props, ["children"]);
3735
+ var transformedProps = transformWireframeProps(remainingProps);
3736
+ return (React.createElement("velt-multi-thread-comment-dialog-close-button-wireframe", __assign({}, transformedProps), children));
3737
+ };
3738
+
3733
3739
  var VeltMultiThreadCommentDialogCommentCountWireframe = function (props) {
3734
3740
  var children = props.children, remainingProps = __rest(props, ["children"]);
3735
3741
  var transformedProps = transformWireframeProps(remainingProps);
@@ -3742,16 +3748,16 @@ var VeltMultiThreadCommentDialogComposerContainerWireframe = function (props) {
3742
3748
  return (React.createElement("velt-multi-thread-comment-dialog-composer-container-wireframe", __assign({}, transformedProps), children));
3743
3749
  };
3744
3750
 
3745
- var VeltMultiThreadCommentDialogListWireframe = function (props) {
3751
+ var VeltMultiThreadCommentDialogEmptyPlaceholderWireframe = function (props) {
3746
3752
  var children = props.children, remainingProps = __rest(props, ["children"]);
3747
3753
  var transformedProps = transformWireframeProps(remainingProps);
3748
- return (React.createElement("velt-multi-thread-comment-dialog-list-wireframe", __assign({}, transformedProps), children));
3754
+ return (React.createElement("velt-multi-thread-comment-dialog-empty-placeholder-wireframe", __assign({}, transformedProps), children));
3749
3755
  };
3750
3756
 
3751
- var VeltMultiThreadCommentDialogEmptyPlaceholderWireframe = function (props) {
3757
+ var VeltMultiThreadCommentDialogListWireframe = function (props) {
3752
3758
  var children = props.children, remainingProps = __rest(props, ["children"]);
3753
3759
  var transformedProps = transformWireframeProps(remainingProps);
3754
- return (React.createElement("velt-multi-thread-comment-dialog-empty-placeholder-wireframe", __assign({}, transformedProps), children));
3760
+ return (React.createElement("velt-multi-thread-comment-dialog-list-wireframe", __assign({}, transformedProps), children));
3755
3761
  };
3756
3762
 
3757
3763
  var VeltMultiThreadCommentDialogMinimalActionsDropdownContentWireframe = function (props) {
@@ -3867,12 +3873,6 @@ var VeltMultiThreadCommentDialogResetFilterButtonWireframe = function (props) {
3867
3873
  return (React.createElement("velt-multi-thread-comment-dialog-reset-filter-button-wireframe", __assign({}, transformedProps), children));
3868
3874
  };
3869
3875
 
3870
- var VeltMultiThreadCommentDialogCloseButtonWireframe = function (props) {
3871
- var children = props.children, remainingProps = __rest(props, ["children"]);
3872
- var transformedProps = transformWireframeProps(remainingProps);
3873
- return (React.createElement("velt-multi-thread-comment-dialog-close-button-wireframe", __assign({}, transformedProps), children));
3874
- };
3875
-
3876
3876
  var VeltMultiThreadCommentDialogWireframe = function (props) {
3877
3877
  var children = props.children, remainingProps = __rest(props, ["children"]);
3878
3878
  var transformedProps = transformWireframeProps(remainingProps);
@@ -3881,12 +3881,12 @@ var VeltMultiThreadCommentDialogWireframe = function (props) {
3881
3881
  VeltMultiThreadCommentDialogWireframe.CommentCount = VeltMultiThreadCommentDialogCommentCountWireframe;
3882
3882
  VeltMultiThreadCommentDialogWireframe.ComposerContainer = VeltMultiThreadCommentDialogComposerContainerWireframe;
3883
3883
  VeltMultiThreadCommentDialogWireframe.List = VeltMultiThreadCommentDialogListWireframe;
3884
- VeltMultiThreadCommentDialogWireframe.EmptyPlaceholder = VeltMultiThreadCommentDialogEmptyPlaceholderWireframe;
3885
- VeltMultiThreadCommentDialogWireframe.MinimalActionsDropdown = VeltMultiThreadCommentDialogMinimalActionsDropdownWireframe;
3884
+ VeltMultiThreadCommentDialogWireframe.CloseButton = VeltMultiThreadCommentDialogCloseButtonWireframe;
3886
3885
  VeltMultiThreadCommentDialogWireframe.MinimalFilterDropdown = VeltMultiThreadCommentDialogMinimalFilterDropdownWireframe;
3886
+ VeltMultiThreadCommentDialogWireframe.EmptyPlaceholder = VeltMultiThreadCommentDialogEmptyPlaceholderWireframe;
3887
3887
  VeltMultiThreadCommentDialogWireframe.NewThreadButton = VeltMultiThreadCommentDialogNewThreadButtonWireframe;
3888
+ VeltMultiThreadCommentDialogWireframe.MinimalActionsDropdown = VeltMultiThreadCommentDialogMinimalActionsDropdownWireframe;
3888
3889
  VeltMultiThreadCommentDialogWireframe.ResetFilterButton = VeltMultiThreadCommentDialogResetFilterButtonWireframe;
3889
- VeltMultiThreadCommentDialogWireframe.CloseButton = VeltMultiThreadCommentDialogCloseButtonWireframe;
3890
3890
 
3891
3891
  var VeltCommentComposerWireframe = function (props) {
3892
3892
  var children = props.children, remainingProps = __rest(props, ["children"]);
@@ -4685,12 +4685,62 @@ VeltVideoPlayerWireframe.Panel = VeltVideoPlayerPanelWireframe;
4685
4685
  VeltVideoPlayerWireframe.Subtitles = VeltVideoPlayerSubtitlesWireframe;
4686
4686
  VeltVideoPlayerWireframe.Transcription = VeltVideoPlayerTranscriptionWireframe;
4687
4687
 
4688
+ var VeltSubtitlesTextWireframe = function (props) {
4689
+ var children = props.children, remainingProps = __rest(props, ["children"]);
4690
+ var transformedProps = transformWireframeProps(remainingProps);
4691
+ return (React.createElement("velt-subtitles-text-wireframe", __assign({}, transformedProps), children));
4692
+ };
4693
+
4694
+ var VeltSubtitlesEmbedModeWireframe = function (props) {
4695
+ var children = props.children, remainingProps = __rest(props, ["children"]);
4696
+ var transformedProps = transformWireframeProps(remainingProps);
4697
+ return (React.createElement("velt-subtitles-embed-mode-wireframe", __assign({}, transformedProps), children));
4698
+ };
4699
+ VeltSubtitlesEmbedModeWireframe.Text = VeltSubtitlesTextWireframe;
4700
+
4701
+ var VeltSubtitlesPanelWireframe = function (props) {
4702
+ var children = props.children, remainingProps = __rest(props, ["children"]);
4703
+ var transformedProps = transformWireframeProps(remainingProps);
4704
+ return (React.createElement("velt-subtitles-panel-wireframe", __assign({}, transformedProps), children));
4705
+ };
4706
+
4688
4707
  var VeltSubtitlesButtonWireframe = function (props) {
4689
4708
  var children = props.children, remainingProps = __rest(props, ["children"]);
4690
4709
  var transformedProps = transformWireframeProps(remainingProps);
4691
4710
  return (React.createElement("velt-subtitles-button-wireframe", __assign({}, transformedProps), children));
4692
4711
  };
4693
4712
 
4713
+ var VeltSubtitlesTooltipWireframe = function (props) {
4714
+ var children = props.children, remainingProps = __rest(props, ["children"]);
4715
+ var transformedProps = transformWireframeProps(remainingProps);
4716
+ return (React.createElement("velt-subtitles-tooltip-wireframe", __assign({}, transformedProps), children));
4717
+ };
4718
+
4719
+ var VeltSubtitlesCloseButtonWireframe = function (props) {
4720
+ var children = props.children, remainingProps = __rest(props, ["children"]);
4721
+ var transformedProps = transformWireframeProps(remainingProps);
4722
+ return (React.createElement("velt-subtitles-close-button-wireframe", __assign({}, transformedProps), children));
4723
+ };
4724
+
4725
+ var VeltSubtitlesFloatingModeWireframe = function (props) {
4726
+ var children = props.children, remainingProps = __rest(props, ["children"]);
4727
+ var transformedProps = transformWireframeProps(remainingProps);
4728
+ return (React.createElement("velt-subtitles-floating-mode-wireframe", __assign({}, transformedProps), children));
4729
+ };
4730
+ VeltSubtitlesFloatingModeWireframe.Button = VeltSubtitlesButtonWireframe;
4731
+ VeltSubtitlesFloatingModeWireframe.Tooltip = VeltSubtitlesTooltipWireframe;
4732
+ VeltSubtitlesFloatingModeWireframe.Panel = VeltSubtitlesPanelWireframe;
4733
+ VeltSubtitlesFloatingModeWireframe.CloseButton = VeltSubtitlesCloseButtonWireframe;
4734
+ VeltSubtitlesFloatingModeWireframe.Text = VeltSubtitlesTextWireframe;
4735
+
4736
+ var VeltSubtitlesWireframe = function (props) {
4737
+ var children = props.children, remainingProps = __rest(props, ["children"]);
4738
+ transformWireframeProps(remainingProps);
4739
+ return (React.createElement(React.Fragment, null, children));
4740
+ };
4741
+ VeltSubtitlesWireframe.EmbedMode = VeltSubtitlesEmbedModeWireframe;
4742
+ VeltSubtitlesWireframe.FloatingMode = VeltSubtitlesFloatingModeWireframe;
4743
+
4694
4744
  var VeltTranscriptionCloseButtonWireframe = function (props) {
4695
4745
  var children = props.children, remainingProps = __rest(props, ["children"]);
4696
4746
  var transformedProps = transformWireframeProps(remainingProps);
@@ -4898,10 +4948,12 @@ function useSetDocuments() {
4898
4948
  client.setDocuments(memoizedData.documents, memoizedData.options);
4899
4949
  }
4900
4950
  }, [client === null || client === void 0 ? void 0 : client.setDocuments, memoizedData]);
4951
+ // Memoize the setDocuments callback
4952
+ var setDocumentsCallback = React.useCallback(function (documents, options) {
4953
+ setData({ documents: documents, options: options });
4954
+ }, []); // Empty dependency array since it only uses setState which is stable
4901
4955
  return {
4902
- setDocuments: function (documents, options) {
4903
- setData({ documents: documents, options: options });
4904
- }
4956
+ setDocuments: setDocumentsCallback
4905
4957
  };
4906
4958
  }
4907
4959
  function useUnsetDocumentId() {
@@ -6013,6 +6065,9 @@ function useRecorderAddHandler() {
6013
6065
  }, [recorderElement]);
6014
6066
  return data;
6015
6067
  }
6068
+ /**
6069
+ * @deprecated Use `recorderUtils.getRecordingData()` method instead
6070
+ */
6016
6071
  function useRecordingDataByRecorderId(recorderId) {
6017
6072
  var recorderElement = useRecorderUtils();
6018
6073
  var _a = React.useState(null), data = _a[0], setData = _a[1];
@@ -6373,5 +6428,5 @@ var logLiveState = function (action, liveStateDataId) {
6373
6428
  }
6374
6429
  };
6375
6430
 
6376
- export { SnippylyArrowTool as VeltArrowTool, SnippylyArrows as VeltArrows, VeltAutocomplete, VeltAutocompleteChipTooltipWireframe, VeltAutocompleteOptionWireframe, VeltButtonWireframe, VeltCanvasComment, VeltChartComment, SnippylyCommentBubble as VeltCommentBubble, VeltCommentBubbleWireframe, VeltCommentComposer, VeltCommentComposerWireframe, VeltCommentDialogOptionsDropdownContentWireframe, VeltCommentDialogOptionsDropdownTriggerWireframe, VeltCommentDialogPriorityDropdownContentWireframe, VeltCommentDialogPriorityDropdownTriggerWireframe, VeltCommentDialogStatusDropdownContentWireframe, VeltCommentDialogStatusDropdownTriggerWireframe, VeltCommentDialogWireframe, VeltCommentPin, VeltCommentPinWireframe, VeltCommentPlayerTimeline, VeltCommentText, VeltCommentThread, VeltCommentThreadWireframe, SnippylyCommentTool as VeltCommentTool, VeltCommentToolWireframe, SnippylyComments as VeltComments, VeltCommentsMinimap, SnippylyCommentsSidebar as VeltCommentsSidebar, VeltCommentsSidebarButton, VeltCommentsSidebarStatusDropdownWireframe, VeltCommentsSidebarWireframe, VeltConfirmDialogWireframe, SnippylyCursor as VeltCursor, VeltData, VeltHighChartComments, SnippylyHuddle as VeltHuddle, SnippylyHuddleTool as VeltHuddleTool, VeltIf, VeltInlineCommentsSection, VeltInlineCommentsSectionWireframe, VeltInlineReactionsSection, VeltInlineReactionsSectionWireframe, VeltMediaSourceSettingsWireframe, VeltMultiThreadCommentDialogWireframe, VeltNivoChartComments, VeltNotificationsHistoryPanel, VeltNotificationsPanel, VeltNotificationsPanelWireframe, VeltNotificationsTool, VeltNotificationsToolWireframe, VeltPersistentCommentModeWireframe, SnippylyPresence as VeltPresence, SnippylyProvider as VeltProvider, VeltReactionPinTooltipWireframe, VeltReactionPinWireframe, VeltReactionTool, VeltReactionToolWireframe, VeltReactionsPanelWireframe, VeltRecorderAllToolMenuWireframe, VeltRecorderAllToolWireframe, VeltRecorderAudioToolWireframe, SnippylyRecorderControlPanel as VeltRecorderControlPanel, VeltRecorderControlPanelWireframe, SnippylyRecorderNotes as VeltRecorderNotes, SnippylyRecorderPlayer as VeltRecorderPlayer, VeltRecorderPlayerWireframe, VeltRecorderScreenToolWireframe, SnippylyRecorderTool as VeltRecorderTool, VeltRecorderVideoToolWireframe, VeltRecordingPreviewStepsDialogWireframe, SnippylySidebarButton as VeltSidebarButton, VeltSidebarButtonWireframe, VeltSubtitlesButtonWireframe as VeltSubtitlesWireframe, SnippylyTagTool as VeltTagTool, SnippylyTags as VeltTags, VeltTextCommentToolWireframe, VeltTextCommentToolbar as VeltTextCommentToolbarWireframe, VeltTranscriptionWireframe, SnippylyUserInviteTool as VeltUserInviteTool, SnippylyUserRequestTool as VeltUserRequestTool, VeltUserSelectorDropdown as VeltUserSelectorDropdownWireframe, VeltVideoPlayer, VeltVideoPlayerWireframe, VeltViewAnalytics, VeltWireframe, createLiveStateMiddleware, useAIRewriterUtils, useAddAttachment, useAddComment, useAddCommentAnnotation, useAddReaction, useApproveCommentAnnotation, useAssignUser, useAutocompleteChipClick, useAutocompleteUtils, useClient, useCommentActionCallback, useCommentAddHandler, useCommentAnnotationById, useCommentAnnotations, useCommentAnnotationsCount, useCommentCopyLinkHandler, useCommentDialogSidebarClickHandler, useCommentEventCallback, useCommentModeState, useCommentSelectionChangeHandler, useCommentSidebarActionButtonClick, useCommentSidebarData, useCommentSidebarInit, useCommentUpdateHandler, useCommentUtils, useContactSelected, useContactUtils, useCopyLink, useCursorUsers, useCursorUtils, useDeleteAttachment, useDeleteComment, useDeleteCommentAnnotation, useDeleteReaction, useDeleteRecording, useEditor, useEditorAccessRequestHandler, useEditorAccessTimer, useGetAttachment, useGetComment, useGetCommentAnnotations, useGetLink, useGetRecording, useHuddleUtils, useIdentify, useLiveSelectionDataHandler, useLiveSelectionUtils, useLiveState, useLiveStateData, useLiveStateSyncUtils, useNotificationUtils, useNotificationsData, usePresenceUsers, usePresenceUtils, useRecorderAddHandler, useRecorderEventCallback, useRecorderUtils, useRecordingDataByRecorderId, useRejectCommentAnnotation, useResolveCommentAnnotation, useServerConnectionStateChangeHandler, useSetDocument, useSetDocumentId, useSetDocuments, useSetLiveStateData, useSetLocation, useSubscribeCommentAnnotation, useTagAnnotations, useTagUtils, useToggleReaction, useUniqueViewsByDate, useUniqueViewsByUser, useUnreadCommentAnnotationCountByLocationId, useUnreadCommentAnnotationCountOnCurrentDocument, useUnreadCommentCountByAnnotationId, useUnreadCommentCountByLocationId, useUnreadCommentCountOnCurrentDocument, useUnreadNotificationsCount, useUnsetDocumentId, useUnsetDocuments, useUnsubscribeCommentAnnotation, useUpdateAccess, useUpdateComment, useUpdatePriority, useUpdateStatus, useUserEditorState, useVeltClient, useVeltEventCallback, useVeltInitState, useViewsUtils };
6431
+ export { SnippylyArrowTool as VeltArrowTool, SnippylyArrows as VeltArrows, VeltAutocomplete, VeltAutocompleteChipTooltipWireframe, VeltAutocompleteOptionWireframe, VeltButtonWireframe, VeltCanvasComment, VeltChartComment, SnippylyCommentBubble as VeltCommentBubble, VeltCommentBubbleWireframe, VeltCommentComposer, VeltCommentComposerWireframe, VeltCommentDialogOptionsDropdownContentWireframe, VeltCommentDialogOptionsDropdownTriggerWireframe, VeltCommentDialogPriorityDropdownContentWireframe, VeltCommentDialogPriorityDropdownTriggerWireframe, VeltCommentDialogStatusDropdownContentWireframe, VeltCommentDialogStatusDropdownTriggerWireframe, VeltCommentDialogWireframe, VeltCommentPin, VeltCommentPinWireframe, VeltCommentPlayerTimeline, VeltCommentText, VeltCommentThread, VeltCommentThreadWireframe, SnippylyCommentTool as VeltCommentTool, VeltCommentToolWireframe, SnippylyComments as VeltComments, VeltCommentsMinimap, SnippylyCommentsSidebar as VeltCommentsSidebar, VeltCommentsSidebarButton, VeltCommentsSidebarStatusDropdownWireframe, VeltCommentsSidebarWireframe, VeltConfirmDialogWireframe, SnippylyCursor as VeltCursor, VeltData, VeltHighChartComments, SnippylyHuddle as VeltHuddle, SnippylyHuddleTool as VeltHuddleTool, VeltIf, VeltInlineCommentsSection, VeltInlineCommentsSectionWireframe, VeltInlineReactionsSection, VeltInlineReactionsSectionWireframe, VeltMediaSourceSettingsWireframe, VeltMultiThreadCommentDialogWireframe, VeltNivoChartComments, VeltNotificationsHistoryPanel, VeltNotificationsPanel, VeltNotificationsPanelWireframe, VeltNotificationsTool, VeltNotificationsToolWireframe, VeltPersistentCommentModeWireframe, SnippylyPresence as VeltPresence, SnippylyProvider as VeltProvider, VeltReactionPinTooltipWireframe, VeltReactionPinWireframe, VeltReactionTool, VeltReactionToolWireframe, VeltReactionsPanelWireframe, VeltRecorderAllToolMenuWireframe, VeltRecorderAllToolWireframe, VeltRecorderAudioToolWireframe, SnippylyRecorderControlPanel as VeltRecorderControlPanel, VeltRecorderControlPanelWireframe, SnippylyRecorderNotes as VeltRecorderNotes, SnippylyRecorderPlayer as VeltRecorderPlayer, VeltRecorderPlayerWireframe, VeltRecorderScreenToolWireframe, SnippylyRecorderTool as VeltRecorderTool, VeltRecorderVideoToolWireframe, VeltRecordingPreviewStepsDialogWireframe, SnippylySidebarButton as VeltSidebarButton, VeltSidebarButtonWireframe, VeltSubtitlesWireframe, SnippylyTagTool as VeltTagTool, SnippylyTags as VeltTags, VeltTextCommentToolWireframe, VeltTextCommentToolbar as VeltTextCommentToolbarWireframe, VeltTranscriptionWireframe, SnippylyUserInviteTool as VeltUserInviteTool, SnippylyUserRequestTool as VeltUserRequestTool, VeltUserSelectorDropdown as VeltUserSelectorDropdownWireframe, VeltVideoPlayer, VeltVideoPlayerWireframe, VeltViewAnalytics, VeltWireframe, createLiveStateMiddleware, useAIRewriterUtils, useAddAttachment, useAddComment, useAddCommentAnnotation, useAddReaction, useApproveCommentAnnotation, useAssignUser, useAutocompleteChipClick, useAutocompleteUtils, useClient, useCommentActionCallback, useCommentAddHandler, useCommentAnnotationById, useCommentAnnotations, useCommentAnnotationsCount, useCommentCopyLinkHandler, useCommentDialogSidebarClickHandler, useCommentEventCallback, useCommentModeState, useCommentSelectionChangeHandler, useCommentSidebarActionButtonClick, useCommentSidebarData, useCommentSidebarInit, useCommentUpdateHandler, useCommentUtils, useContactSelected, useContactUtils, useCopyLink, useCursorUsers, useCursorUtils, useDeleteAttachment, useDeleteComment, useDeleteCommentAnnotation, useDeleteReaction, useDeleteRecording, useEditor, useEditorAccessRequestHandler, useEditorAccessTimer, useGetAttachment, useGetComment, useGetCommentAnnotations, useGetLink, useGetRecording, useHuddleUtils, useIdentify, useLiveSelectionDataHandler, useLiveSelectionUtils, useLiveState, useLiveStateData, useLiveStateSyncUtils, useNotificationUtils, useNotificationsData, usePresenceUsers, usePresenceUtils, useRecorderAddHandler, useRecorderEventCallback, useRecorderUtils, useRecordingDataByRecorderId, useRejectCommentAnnotation, useResolveCommentAnnotation, useServerConnectionStateChangeHandler, useSetDocument, useSetDocumentId, useSetDocuments, useSetLiveStateData, useSetLocation, useSubscribeCommentAnnotation, useTagAnnotations, useTagUtils, useToggleReaction, useUniqueViewsByDate, useUniqueViewsByUser, useUnreadCommentAnnotationCountByLocationId, useUnreadCommentAnnotationCountOnCurrentDocument, useUnreadCommentCountByAnnotationId, useUnreadCommentCountByLocationId, useUnreadCommentCountOnCurrentDocument, useUnreadNotificationsCount, useUnsetDocumentId, useUnsetDocuments, useUnsubscribeCommentAnnotation, useUpdateAccess, useUpdateComment, useUpdatePriority, useUpdateStatus, useUserEditorState, useVeltClient, useVeltEventCallback, useVeltInitState, useViewsUtils };
6377
6432
  //# sourceMappingURL=index.js.map