@veltdev/react 5.0.2-beta.12 → 5.0.2-beta.14

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 (40) hide show
  1. package/cjs/index.js +35 -14
  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 +0 -1
  5. package/cjs/types/components/VeltCommentBubble/VeltCommentBubbleAvatar/VeltCommentBubbleAvatar.d.ts +1 -0
  6. package/cjs/types/components/VeltCommentBubble/VeltCommentBubbleCommentsCount/VeltCommentBubbleCommentsCount.d.ts +1 -0
  7. package/cjs/types/components/VeltCommentBubble/VeltCommentBubbleUnreadIcon/VeltCommentBubbleUnreadIcon.d.ts +2 -2
  8. package/cjs/types/components/VeltCommentBubble/index.d.ts +3 -1
  9. package/cjs/types/components/VeltCommentBubbleWireframe/VeltCommentBubbleAvatar/VeltCommentBubbleAvatar.d.ts +5 -0
  10. package/cjs/types/components/VeltCommentBubbleWireframe/VeltCommentBubbleAvatar/index.d.ts +1 -0
  11. package/cjs/types/components/VeltCommentBubbleWireframe/VeltCommentBubbleCommentsCount/VeltCommentBubbleCommentsCount.d.ts +5 -0
  12. package/cjs/types/components/VeltCommentBubbleWireframe/VeltCommentBubbleCommentsCount/index.d.ts +1 -0
  13. package/cjs/types/components/VeltCommentBubbleWireframe/VeltCommentBubbleUnreadIcon/VeltCommentBubbleUnreadIcon.d.ts +6 -0
  14. package/cjs/types/components/VeltCommentBubbleWireframe/VeltCommentBubbleUnreadIcon/index.d.ts +1 -0
  15. package/cjs/types/components/VeltCommentBubbleWireframe/index.d.ts +1 -0
  16. package/cjs/types/components/VeltCommentsSidebarV2/VeltCommentsSidebarV2.d.ts +0 -1
  17. package/cjs/types/components/index.d.ts +4 -1
  18. package/cjs/types/constants.d.ts +1 -1
  19. package/esm/index.js +33 -15
  20. package/esm/index.js.map +1 -1
  21. package/esm/types/components/SnippylyComments/SnippylyComments.d.ts +1 -0
  22. package/esm/types/components/SnippylyCommentsSidebar/SnippylyCommentsSidebar.d.ts +0 -1
  23. package/esm/types/components/VeltCommentBubble/VeltCommentBubbleAvatar/VeltCommentBubbleAvatar.d.ts +1 -0
  24. package/esm/types/components/VeltCommentBubble/VeltCommentBubbleCommentsCount/VeltCommentBubbleCommentsCount.d.ts +1 -0
  25. package/esm/types/components/VeltCommentBubble/VeltCommentBubbleUnreadIcon/VeltCommentBubbleUnreadIcon.d.ts +2 -2
  26. package/esm/types/components/VeltCommentBubble/index.d.ts +3 -1
  27. package/esm/types/components/VeltCommentBubbleWireframe/VeltCommentBubbleAvatar/VeltCommentBubbleAvatar.d.ts +5 -0
  28. package/esm/types/components/VeltCommentBubbleWireframe/VeltCommentBubbleAvatar/index.d.ts +1 -0
  29. package/esm/types/components/VeltCommentBubbleWireframe/VeltCommentBubbleCommentsCount/VeltCommentBubbleCommentsCount.d.ts +5 -0
  30. package/esm/types/components/VeltCommentBubbleWireframe/VeltCommentBubbleCommentsCount/index.d.ts +1 -0
  31. package/esm/types/components/VeltCommentBubbleWireframe/VeltCommentBubbleUnreadIcon/VeltCommentBubbleUnreadIcon.d.ts +6 -0
  32. package/esm/types/components/VeltCommentBubbleWireframe/VeltCommentBubbleUnreadIcon/index.d.ts +1 -0
  33. package/esm/types/components/VeltCommentBubbleWireframe/index.d.ts +1 -0
  34. package/esm/types/components/VeltCommentsSidebarV2/VeltCommentsSidebarV2.d.ts +0 -1
  35. package/esm/types/components/index.d.ts +4 -1
  36. package/esm/types/constants.d.ts +1 -1
  37. package/index.d.ts +23 -9
  38. package/package.json +1 -1
  39. /package/cjs/types/components/{VeltCommentBubble → VeltCommentBubbleWireframe}/VeltCommentBubbleWireframe.d.ts +0 -0
  40. /package/esm/types/components/{VeltCommentBubble → VeltCommentBubbleWireframe}/VeltCommentBubbleWireframe.d.ts +0 -0
@@ -158,6 +158,7 @@ export interface IVeltCommentsProps extends React.DetailedHTMLProps<React.HTMLAt
158
158
  assignToType?: AssignToType;
159
159
  formatOptions?: boolean;
160
160
  attachmentDownload?: boolean;
161
+ pinDrag?: boolean;
161
162
  }
162
163
  declare const SnippylyComments: React.FC<IVeltCommentsProps>;
163
164
  export default SnippylyComments;
@@ -60,7 +60,6 @@ export interface IVeltCommentsSidebarProps {
60
60
  commentPlaceholder?: string;
61
61
  replyPlaceholder?: string;
62
62
  pageModePlaceholder?: string;
63
- version?: string;
64
63
  }
65
64
  declare const SnippylyCommentsSidebar: React.FC<IVeltCommentsSidebarProps>;
66
65
  export default SnippylyCommentsSidebar;
@@ -1,5 +1,6 @@
1
1
  import React from 'react';
2
2
  export interface IVeltCommentBubbleAvatarProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> {
3
+ defaultCondition?: boolean;
3
4
  }
4
5
  declare const VeltCommentBubbleAvatar: React.FC<IVeltCommentBubbleAvatarProps>;
5
6
  export default VeltCommentBubbleAvatar;
@@ -1,5 +1,6 @@
1
1
  import React from 'react';
2
2
  export interface IVeltCommentBubbleCommentsCountProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> {
3
+ defaultCondition?: boolean;
3
4
  }
4
5
  declare const VeltCommentBubbleCommentsCount: React.FC<IVeltCommentBubbleCommentsCountProps>;
5
6
  export default VeltCommentBubbleCommentsCount;
@@ -1,6 +1,6 @@
1
1
  import React from 'react';
2
- import { IVeltWireframeCommonProps } from '../../../constants';
3
- export interface IVeltCommentBubbleUnreadIconProps extends IVeltWireframeCommonProps {
2
+ export interface IVeltCommentBubbleUnreadIconProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> {
3
+ defaultCondition?: boolean;
4
4
  }
5
5
  declare const VeltCommentBubbleUnreadIcon: React.FC<IVeltCommentBubbleUnreadIconProps>;
6
6
  export default VeltCommentBubbleUnreadIcon;
@@ -1 +1,3 @@
1
- export { default } from "./VeltCommentBubbleWireframe";
1
+ export { default as VeltCommentBubbleAvatar } from "./VeltCommentBubbleAvatar";
2
+ export { default as VeltCommentBubbleCommentsCount } from "./VeltCommentBubbleCommentsCount";
3
+ export { default as VeltCommentBubbleUnreadIcon } from "./VeltCommentBubbleUnreadIcon";
@@ -0,0 +1,5 @@
1
+ import React from 'react';
2
+ export interface IVeltCommentBubbleAvatarProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> {
3
+ }
4
+ declare const VeltCommentBubbleAvatar: React.FC<IVeltCommentBubbleAvatarProps>;
5
+ export default VeltCommentBubbleAvatar;
@@ -0,0 +1 @@
1
+ export { default } from "./VeltCommentBubbleAvatar";
@@ -0,0 +1,5 @@
1
+ import React from 'react';
2
+ export interface IVeltCommentBubbleCommentsCountProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> {
3
+ }
4
+ declare const VeltCommentBubbleCommentsCount: React.FC<IVeltCommentBubbleCommentsCountProps>;
5
+ export default VeltCommentBubbleCommentsCount;
@@ -0,0 +1 @@
1
+ export { default } from "./VeltCommentBubbleCommentsCount";
@@ -0,0 +1,6 @@
1
+ import React from 'react';
2
+ import { IVeltWireframeCommonProps } from '../../../constants';
3
+ export interface IVeltCommentBubbleUnreadIconProps extends IVeltWireframeCommonProps {
4
+ }
5
+ declare const VeltCommentBubbleUnreadIcon: React.FC<IVeltCommentBubbleUnreadIconProps>;
6
+ export default VeltCommentBubbleUnreadIcon;
@@ -0,0 +1 @@
1
+ export { default } from "./VeltCommentBubbleUnreadIcon";
@@ -0,0 +1 @@
1
+ export { default } from "./VeltCommentBubbleWireframe";
@@ -8,7 +8,6 @@ export interface IVeltCommentsSidebarV2Props extends React.DetailedHTMLProps<Rea
8
8
  position?: string;
9
9
  variant?: string;
10
10
  forceClose?: boolean;
11
- version?: string;
12
11
  onSidebarOpen?: Function;
13
12
  onSidebarClose?: Function;
14
13
  onCommentClick?: Function;
@@ -296,7 +296,7 @@ export { default as VeltAutocompleteOptionWireframe } from "./VeltAutocompleteOp
296
296
  export { default as VeltAutocompleteGroupOptionWireframe } from "./VeltAutocompleteGroupOptionWireframe";
297
297
  export { default as VeltAutocompleteChipTooltipWireframe } from "./VeltAutocompleteChipTooltipWireframe";
298
298
  export { default as VeltAutocompleteEmptyWireframe } from "./VeltAutocompleteEmptyWireframe";
299
- export { default as VeltCommentBubbleWireframe } from "./VeltCommentBubble";
299
+ export { default as VeltCommentBubbleWireframe } from "./VeltCommentBubbleWireframe";
300
300
  export { default as VeltCommentDialogStatusDropdownContentWireframe } from "./VeltCommentDialogStatusDropdownContentWireframe/VeltCommentDialogStatusDropdownContentWireframe";
301
301
  export { default as VeltCommentDialogStatusDropdownTriggerWireframe } from "./VeltCommentDialogStatusDropdownTriggerWireframe/VeltCommentDialogStatusDropdownTriggerWireframe";
302
302
  export { default as VeltCommentDialogPriorityDropdownContentWireframe } from "./VeltCommentDialogPriorityDropdownContentWireframe/VeltCommentDialogPriorityDropdownContentWireframe";
@@ -363,6 +363,9 @@ export { default as VeltActivityLogListItemContentTarget } from "./VeltActivityL
363
363
  export { default as VeltActivityLogListItemContentDetail } from "./VeltActivityLog/VeltActivityLogList/VeltActivityLogListItem/VeltActivityLogListItemContent/VeltActivityLogListItemContentDetail";
364
364
  export { default as VeltActivityLogListShowMore } from "./VeltActivityLog/VeltActivityLogList/VeltActivityLogListShowMore";
365
365
  export { default as VeltActivityLogWireframe } from "./VeltActivityLogWireframe";
366
+ export { default as VeltCommentBubbleAvatar } from "./VeltCommentBubble/VeltCommentBubbleAvatar";
367
+ export { default as VeltCommentBubbleCommentsCount } from "./VeltCommentBubble/VeltCommentBubbleCommentsCount";
368
+ export { default as VeltCommentBubbleUnreadIcon } from "./VeltCommentBubble/VeltCommentBubbleUnreadIcon";
366
369
  export { default as VeltCommentPinNumber } from "./VeltCommentPin/VeltCommentPinNumber";
367
370
  export { default as VeltCommentPinIndex } from "./VeltCommentPin/VeltCommentPinIndex";
368
371
  export { default as VeltCommentPinTriangle } from "./VeltCommentPin/VeltCommentPinTriangle";
@@ -1,5 +1,5 @@
1
1
  /// <reference types="react" />
2
- export declare const VELT_SDK_VERSION = "5.0.2-beta.12";
2
+ export declare const VELT_SDK_VERSION = "5.0.2-beta.14";
3
3
  export declare const VELT_SDK_INIT_EVENT = "onVeltInit";
4
4
  export declare const VELT_TAB_ID = "veltTabId";
5
5
  export declare const INTEGRITY_MAP: Record<string, string>;
package/index.d.ts CHANGED
@@ -214,6 +214,7 @@ interface IVeltCommentsProps extends React$1.DetailedHTMLProps<React$1.HTMLAttri
214
214
  assignToType?: AssignToType;
215
215
  formatOptions?: boolean;
216
216
  attachmentDownload?: boolean;
217
+ pinDrag?: boolean;
217
218
  }
218
219
  declare const SnippylyComments: React$1.FC<IVeltCommentsProps>;
219
220
 
@@ -277,7 +278,6 @@ interface IVeltCommentsSidebarProps {
277
278
  commentPlaceholder?: string;
278
279
  replyPlaceholder?: string;
279
280
  pageModePlaceholder?: string;
280
- version?: string;
281
281
  }
282
282
  declare const SnippylyCommentsSidebar: React$1.FC<IVeltCommentsSidebarProps>;
283
283
 
@@ -1052,7 +1052,6 @@ interface IVeltCommentsSidebarV2Props extends React$1.DetailedHTMLProps<React$1.
1052
1052
  position?: string;
1053
1053
  variant?: string;
1054
1054
  forceClose?: boolean;
1055
- version?: string;
1056
1055
  onSidebarOpen?: Function;
1057
1056
  onSidebarClose?: Function;
1058
1057
  onCommentClick?: Function;
@@ -4268,22 +4267,22 @@ interface IVeltAutocompleteEmptyWireframeProps extends IVeltWireframeCommonProps
4268
4267
  }
4269
4268
  declare const VeltAutocompleteEmptyWireframe: React$1.FC<IVeltAutocompleteEmptyWireframeProps>;
4270
4269
 
4271
- interface IVeltCommentBubbleAvatarProps extends React$1.DetailedHTMLProps<React$1.HTMLAttributes<HTMLElement>, HTMLElement> {
4270
+ interface IVeltCommentBubbleAvatarProps$1 extends React$1.DetailedHTMLProps<React$1.HTMLAttributes<HTMLElement>, HTMLElement> {
4272
4271
  }
4273
4272
 
4274
- interface IVeltCommentBubbleCommentsCountProps extends React$1.DetailedHTMLProps<React$1.HTMLAttributes<HTMLElement>, HTMLElement> {
4273
+ interface IVeltCommentBubbleCommentsCountProps$1 extends React$1.DetailedHTMLProps<React$1.HTMLAttributes<HTMLElement>, HTMLElement> {
4275
4274
  }
4276
4275
 
4277
- interface IVeltCommentBubbleUnreadIconProps extends IVeltWireframeCommonProps {
4276
+ interface IVeltCommentBubbleUnreadIconProps$1 extends IVeltWireframeCommonProps {
4278
4277
  }
4279
4278
 
4280
4279
  interface IVeltCommentBubbleWireframeProps extends React$1.DetailedHTMLProps<React$1.HTMLAttributes<HTMLElement>, HTMLElement> {
4281
4280
  variant?: string;
4282
4281
  }
4283
4282
  interface IVeltCommentBubbleWireframe extends React$1.FC<IVeltCommentBubbleWireframeProps> {
4284
- Avatar: React$1.FC<IVeltCommentBubbleAvatarProps>;
4285
- CommentsCount: React$1.FC<IVeltCommentBubbleCommentsCountProps>;
4286
- UnreadIcon: React$1.FC<IVeltCommentBubbleUnreadIconProps>;
4283
+ Avatar: React$1.FC<IVeltCommentBubbleAvatarProps$1>;
4284
+ CommentsCount: React$1.FC<IVeltCommentBubbleCommentsCountProps$1>;
4285
+ UnreadIcon: React$1.FC<IVeltCommentBubbleUnreadIconProps$1>;
4287
4286
  }
4288
4287
  declare const VeltCommentBubbleWireframe: IVeltCommentBubbleWireframe;
4289
4288
 
@@ -6735,6 +6734,21 @@ interface IVeltActivityLogWireframe extends React$1.FC<IVeltActivityLogWireframe
6735
6734
  }
6736
6735
  declare const VeltActivityLogWireframe: IVeltActivityLogWireframe;
6737
6736
 
6737
+ interface IVeltCommentBubbleAvatarProps extends React$1.DetailedHTMLProps<React$1.HTMLAttributes<HTMLElement>, HTMLElement> {
6738
+ defaultCondition?: boolean;
6739
+ }
6740
+ declare const VeltCommentBubbleAvatar: React$1.FC<IVeltCommentBubbleAvatarProps>;
6741
+
6742
+ interface IVeltCommentBubbleCommentsCountProps extends React$1.DetailedHTMLProps<React$1.HTMLAttributes<HTMLElement>, HTMLElement> {
6743
+ defaultCondition?: boolean;
6744
+ }
6745
+ declare const VeltCommentBubbleCommentsCount: React$1.FC<IVeltCommentBubbleCommentsCountProps>;
6746
+
6747
+ interface IVeltCommentBubbleUnreadIconProps extends React$1.DetailedHTMLProps<React$1.HTMLAttributes<HTMLElement>, HTMLElement> {
6748
+ defaultCondition?: boolean;
6749
+ }
6750
+ declare const VeltCommentBubbleUnreadIcon: React$1.FC<IVeltCommentBubbleUnreadIconProps>;
6751
+
6738
6752
  interface IVeltSidebarButtonIconProps extends React$1.DetailedHTMLProps<React$1.HTMLAttributes<HTMLElement>, HTMLElement> {
6739
6753
  defaultCondition?: boolean;
6740
6754
  }
@@ -7152,4 +7166,4 @@ declare const createLiveStateMiddleware: (config?: LiveStateMiddlewareConfig) =>
7152
7166
  updateAllowAction: (newAllowAction?: ((action: any) => boolean) | undefined) => void;
7153
7167
  };
7154
7168
 
7155
- export { VeltActivityLog, VeltActivityLogEmpty, VeltActivityLogHeader, VeltActivityLogHeaderCloseButton, VeltActivityLogHeaderFilter, VeltActivityLogHeaderFilterContent, VeltActivityLogHeaderFilterContentItem, VeltActivityLogHeaderFilterContentItemIcon, VeltActivityLogHeaderFilterContentItemLabel, VeltActivityLogHeaderFilterTrigger, VeltActivityLogHeaderFilterTriggerIcon, VeltActivityLogHeaderFilterTriggerLabel, VeltActivityLogHeaderTitle, VeltActivityLogList, VeltActivityLogListDateGroup, VeltActivityLogListDateGroupLabel, VeltActivityLogListItem, VeltActivityLogListItemAvatar, VeltActivityLogListItemContent, VeltActivityLogListItemContentAction, VeltActivityLogListItemContentDetail, VeltActivityLogListItemContentTarget, VeltActivityLogListItemContentUser, VeltActivityLogListItemIcon, VeltActivityLogListItemTime, VeltActivityLogListShowMore, VeltActivityLogLoading, VeltActivityLogWireframe, SnippylyArrowTool as VeltArrowTool, SnippylyArrows as VeltArrows, VeltAutocomplete, VeltAutocompleteChip, VeltAutocompleteChipTooltip, VeltAutocompleteChipTooltipDescription, VeltAutocompleteChipTooltipIcon, VeltAutocompleteChipTooltipName, VeltAutocompleteChipTooltipWireframe, VeltAutocompleteEmpty, VeltAutocompleteEmptyWireframe, VeltAutocompleteGroupOption, VeltAutocompleteGroupOptionWireframe, VeltAutocompleteOption, VeltAutocompleteOptionDescription, VeltAutocompleteOptionErrorIcon, VeltAutocompleteOptionIcon, VeltAutocompleteOptionName, VeltAutocompleteOptionWireframe, VeltAutocompleteTool, VeltButtonWireframe, VeltCanvasComment, VeltChartComment, SnippylyCommentBubble as VeltCommentBubble, VeltCommentBubbleWireframe, VeltCommentComposer, VeltCommentComposerWireframe, VeltCommentDialog, VeltCommentDialogAllComment, VeltCommentDialogApprove, VeltCommentDialogAssignDropdown, VeltCommentDialogAssignMenu, VeltCommentDialogAssigneeBanner, VeltCommentDialogAssigneeBannerResolveButton, VeltCommentDialogAssigneeBannerUnresolveButton, VeltCommentDialogAssigneeBannerUserAvatar, VeltCommentDialogAssigneeBannerUserName, VeltCommentDialogAttachmentButton, VeltCommentDialogBody, VeltCommentDialogCloseButton, VeltCommentDialogCommentCategory, VeltCommentDialogCommentIndex, VeltCommentDialogCommentNumber, VeltCommentDialogCommentSuggestionStatus, VeltCommentDialogComposer, VeltCommentDialogComposerActionButton, VeltCommentDialogComposerAssignUser, VeltCommentDialogComposerAttachments, VeltCommentDialogComposerAttachmentsImage, VeltCommentDialogComposerAttachmentsImageDelete, VeltCommentDialogComposerAttachmentsImageLoading, VeltCommentDialogComposerAttachmentsImagePreview, VeltCommentDialogComposerAttachmentsInvalid, VeltCommentDialogComposerAttachmentsInvalidItem, VeltCommentDialogComposerAttachmentsInvalidItemDelete, VeltCommentDialogComposerAttachmentsInvalidItemMessage, VeltCommentDialogComposerAttachmentsInvalidItemPreview, VeltCommentDialogComposerAttachmentsOther, VeltCommentDialogComposerAttachmentsOtherDelete, VeltCommentDialogComposerAttachmentsOtherIcon, VeltCommentDialogComposerAttachmentsOtherLoading, VeltCommentDialogComposerAttachmentsOtherName, VeltCommentDialogComposerAttachmentsOtherSize, VeltCommentDialogComposerAttachmentsSelected, VeltCommentDialogComposerAvatar, VeltCommentDialogComposerFormatToolbar, VeltCommentDialogComposerFormatToolbarButton, VeltCommentDialogComposerInput, VeltCommentDialogComposerPrivateBadge, VeltCommentDialogComposerRecordings, VeltCommentDialogContextWrapper, VeltCommentDialogCopyLink, VeltCommentDialogCustomAnnotationDropdown, VeltCommentDialogCustomAnnotationDropdownContent, VeltCommentDialogCustomAnnotationDropdownContentItem, VeltCommentDialogCustomAnnotationDropdownContentItemIcon, VeltCommentDialogCustomAnnotationDropdownContentItemLabel, VeltCommentDialogCustomAnnotationDropdownTrigger, VeltCommentDialogCustomAnnotationDropdownTriggerArrow, VeltCommentDialogCustomAnnotationDropdownTriggerList, VeltCommentDialogCustomAnnotationDropdownTriggerListItem, VeltCommentDialogCustomAnnotationDropdownTriggerPlaceholder, VeltCommentDialogCustomAnnotationDropdownTriggerRemainingCount, VeltCommentDialogDeleteButton, VeltCommentDialogDeviceTypeIcons, VeltCommentDialogGhostBanner, VeltCommentDialogHeader, VeltCommentDialogHideReply, VeltCommentDialogMetadata, VeltCommentDialogMoreReply, VeltCommentDialogNavigationButton, VeltCommentDialogOptions, VeltCommentDialogOptionsDropdown, VeltCommentDialogOptionsDropdownContent, VeltCommentDialogOptionsDropdownContentAssign, VeltCommentDialogOptionsDropdownContentDelete, VeltCommentDialogOptionsDropdownContentDeleteComment, VeltCommentDialogOptionsDropdownContentDeleteThread, VeltCommentDialogOptionsDropdownContentEdit, VeltCommentDialogOptionsDropdownContentMakePrivate, VeltCommentDialogOptionsDropdownContentMakePrivateDisable, VeltCommentDialogOptionsDropdownContentMakePrivateEnable, VeltCommentDialogOptionsDropdownContentMarkAsRead, VeltCommentDialogOptionsDropdownContentMarkAsReadMarkRead, VeltCommentDialogOptionsDropdownContentMarkAsReadMarkUnread, VeltCommentDialogOptionsDropdownContentNotification, VeltCommentDialogOptionsDropdownContentNotificationSubscribe, VeltCommentDialogOptionsDropdownContentNotificationUnsubscribe, VeltCommentDialogOptionsDropdownContentWireframe, VeltCommentDialogOptionsDropdownTrigger, VeltCommentDialogOptionsDropdownTriggerWireframe, VeltCommentDialogPriority, VeltCommentDialogPriorityDropdown, VeltCommentDialogPriorityDropdownContent, VeltCommentDialogPriorityDropdownContentItem, VeltCommentDialogPriorityDropdownContentItemIcon, VeltCommentDialogPriorityDropdownContentItemName, VeltCommentDialogPriorityDropdownContentItemTick, VeltCommentDialogPriorityDropdownContentWireframe, VeltCommentDialogPriorityDropdownTrigger, VeltCommentDialogPriorityDropdownTriggerArrow, VeltCommentDialogPriorityDropdownTriggerIcon, VeltCommentDialogPriorityDropdownTriggerName, VeltCommentDialogPriorityDropdownTriggerWireframe, VeltCommentDialogPrivateBanner, VeltCommentDialogPrivateButton, VeltCommentDialogReplyAvatars, VeltCommentDialogReplyAvatarsList, VeltCommentDialogReplyAvatarsListItem, VeltCommentDialogReplyAvatarsRemainingCount, VeltCommentDialogResolveButton, VeltCommentDialogSignIn, VeltCommentDialogStatus, VeltCommentDialogStatusDropdown, VeltCommentDialogStatusDropdownContent, VeltCommentDialogStatusDropdownContentItem, VeltCommentDialogStatusDropdownContentItemIcon, VeltCommentDialogStatusDropdownContentItemName, VeltCommentDialogStatusDropdownContentWireframe, VeltCommentDialogStatusDropdownTrigger, VeltCommentDialogStatusDropdownTriggerArrow, VeltCommentDialogStatusDropdownTriggerIcon, VeltCommentDialogStatusDropdownTriggerName, VeltCommentDialogStatusDropdownTriggerWireframe, VeltCommentDialogSuggestionAction, VeltCommentDialogSuggestionActionAccept, VeltCommentDialogSuggestionActionReject, VeltCommentDialogThreadCard, VeltCommentDialogThreadCardAttachments, VeltCommentDialogThreadCardAttachmentsImage, VeltCommentDialogThreadCardAttachmentsImageDelete, VeltCommentDialogThreadCardAttachmentsImageDownload, VeltCommentDialogThreadCardAttachmentsImagePreview, VeltCommentDialogThreadCardAttachmentsOther, VeltCommentDialogThreadCardAttachmentsOtherDelete, VeltCommentDialogThreadCardAttachmentsOtherDownload, VeltCommentDialogThreadCardAttachmentsOtherIcon, VeltCommentDialogThreadCardAttachmentsOtherName, VeltCommentDialogThreadCardAttachmentsOtherSize, VeltCommentDialogThreadCardAvatar, VeltCommentDialogThreadCardDeviceType, VeltCommentDialogThreadCardDraft, VeltCommentDialogThreadCardEdited, VeltCommentDialogThreadCardMessage, VeltCommentDialogThreadCardName, VeltCommentDialogThreadCardOptions, VeltCommentDialogThreadCardReactionTool, VeltCommentDialogThreadCardReactions, VeltCommentDialogThreadCardRecordings, VeltCommentDialogThreadCardReply, VeltCommentDialogThreadCardSeenDropdown, VeltCommentDialogThreadCardSeenDropdownContent, VeltCommentDialogThreadCardSeenDropdownContentItem, VeltCommentDialogThreadCardSeenDropdownContentItemAvatar, VeltCommentDialogThreadCardSeenDropdownContentItemName, VeltCommentDialogThreadCardSeenDropdownContentItemTime, VeltCommentDialogThreadCardSeenDropdownContentItems, VeltCommentDialogThreadCardSeenDropdownContentTitle, VeltCommentDialogThreadCardSeenDropdownTrigger, VeltCommentDialogThreadCardTime, VeltCommentDialogThreadCardUnread, VeltCommentDialogThreads, VeltCommentDialogToggleReply, VeltCommentDialogToggleReplyCount, VeltCommentDialogToggleReplyIcon, VeltCommentDialogToggleReplyText, VeltCommentDialogUnresolveButton, VeltCommentDialogUpgrade, VeltCommentDialogVisibilityBanner, VeltCommentDialogVisibilityBannerDropdown, VeltCommentDialogVisibilityBannerDropdownContent, VeltCommentDialogVisibilityBannerDropdownContentItem, VeltCommentDialogVisibilityBannerDropdownContentItemIcon, VeltCommentDialogVisibilityBannerDropdownContentItemLabel, VeltCommentDialogVisibilityBannerDropdownContentUserPicker, VeltCommentDialogVisibilityBannerDropdownTrigger, VeltCommentDialogVisibilityBannerDropdownTriggerAvatarList, VeltCommentDialogVisibilityBannerDropdownTriggerAvatarListItem, VeltCommentDialogVisibilityBannerDropdownTriggerAvatarListRemainingCount, VeltCommentDialogVisibilityBannerDropdownTriggerIcon, VeltCommentDialogVisibilityBannerDropdownTriggerLabel, VeltCommentDialogVisibilityBannerIcon, VeltCommentDialogVisibilityBannerText, VeltCommentDialogVisibilityDropdown, VeltCommentDialogVisibilityDropdownContent, VeltCommentDialogVisibilityDropdownContentPrivate, VeltCommentDialogVisibilityDropdownContentPublic, VeltCommentDialogVisibilityDropdownTrigger, VeltCommentDialogVisibilityDropdownTriggerIcon, VeltCommentDialogVisibilityDropdownTriggerLabel, VeltCommentDialogWireframe, VeltCommentPin, VeltCommentPinGhostCommentIndicator, VeltCommentPinIndex, VeltCommentPinNumber, VeltCommentPinPrivateCommentIndicator, VeltCommentPinTriangle, VeltCommentPinUnreadCommentIndicator, VeltCommentPinWireframe, VeltCommentPlayerTimeline, VeltCommentText, VeltCommentThread, VeltCommentThreadWireframe, SnippylyCommentTool as VeltCommentTool, VeltCommentToolWireframe, SnippylyComments as VeltComments, VeltCommentsMinimap, SnippylyCommentsSidebar as VeltCommentsSidebar, VeltCommentsSidebarButton, VeltCommentsSidebarStatusDropdownWireframe, VeltCommentsSidebarV2, VeltCommentsSidebarV2CloseButton, VeltCommentsSidebarV2EmptyPlaceholder, VeltCommentsSidebarV2FilterDropdown, VeltCommentsSidebarV2FilterDropdownContent, VeltCommentsSidebarV2FilterDropdownContentList, VeltCommentsSidebarV2FilterDropdownContentListCategory, VeltCommentsSidebarV2FilterDropdownContentListCategoryContent, VeltCommentsSidebarV2FilterDropdownContentListItem, VeltCommentsSidebarV2FilterDropdownContentListItemIndicator, VeltCommentsSidebarV2FilterDropdownContentListItemLabel, VeltCommentsSidebarV2FilterDropdownTrigger, VeltCommentsSidebarV2FocusedThread, VeltCommentsSidebarV2FocusedThreadBackButton, VeltCommentsSidebarV2FocusedThreadDialogContainer, VeltCommentsSidebarV2Header, VeltCommentsSidebarV2List, VeltCommentsSidebarV2ListItem, VeltCommentsSidebarV2MinimalActionsDropdown, VeltCommentsSidebarV2MinimalActionsDropdownContent, VeltCommentsSidebarV2MinimalActionsDropdownContentMarkAllRead, VeltCommentsSidebarV2MinimalActionsDropdownContentMarkAllResolved, VeltCommentsSidebarV2MinimalActionsDropdownTrigger, VeltCommentsSidebarV2PageModeComposer, VeltCommentsSidebarV2Panel, VeltCommentsSidebarV2ResetFilterButton, VeltCommentsSidebarV2Skeleton, VeltCommentsSidebarV2Wireframe, VeltCommentsSidebarWireframe, VeltConfirmDialogWireframe, SnippylyCursor as VeltCursor, VeltCursorPointerWireframe, VeltData, VeltHighChartComments, SnippylyHuddle as VeltHuddle, SnippylyHuddleTool as VeltHuddleTool, VeltIf, VeltInlineCommentsSection, VeltInlineCommentsSectionCommentCount, VeltInlineCommentsSectionComposerContainer, VeltInlineCommentsSectionFilterDropdown, VeltInlineCommentsSectionFilterDropdownContent, VeltInlineCommentsSectionFilterDropdownContentList, VeltInlineCommentsSectionFilterDropdownContentListItem, VeltInlineCommentsSectionFilterDropdownContentListItemCheckbox, VeltInlineCommentsSectionFilterDropdownContentListItemLabel, VeltInlineCommentsSectionFilterDropdownTrigger, VeltInlineCommentsSectionFilterDropdownTriggerArrow, VeltInlineCommentsSectionFilterDropdownTriggerName, VeltInlineCommentsSectionList, VeltInlineCommentsSectionPanel, VeltInlineCommentsSectionSkeleton, VeltInlineCommentsSectionSortingDropdown, VeltInlineCommentsSectionSortingDropdownContent, VeltInlineCommentsSectionSortingDropdownContentItem, VeltInlineCommentsSectionSortingDropdownContentItemIcon, VeltInlineCommentsSectionSortingDropdownContentItemName, VeltInlineCommentsSectionSortingDropdownContentItemTick, VeltInlineCommentsSectionSortingDropdownTrigger, VeltInlineCommentsSectionSortingDropdownTriggerIcon, VeltInlineCommentsSectionSortingDropdownTriggerName, VeltInlineCommentsSectionWireframe, VeltInlineReactionsSection, VeltInlineReactionsSectionWireframe, VeltMediaSourceSettingsWireframe, VeltMultiThreadCommentDialogCloseButton, VeltMultiThreadCommentDialogCommentCount, VeltMultiThreadCommentDialogComposerContainer, VeltMultiThreadCommentDialogEmptyPlaceholder, VeltMultiThreadCommentDialogList, VeltMultiThreadCommentDialogMinimalActionsDropdown, VeltMultiThreadCommentDialogMinimalActionsDropdownContent, VeltMultiThreadCommentDialogMinimalActionsDropdownContentMarkAllRead, VeltMultiThreadCommentDialogMinimalActionsDropdownContentMarkAllResolved, VeltMultiThreadCommentDialogMinimalActionsDropdownTrigger, VeltMultiThreadCommentDialogMinimalFilterDropdown, VeltMultiThreadCommentDialogMinimalFilterDropdownContent, VeltMultiThreadCommentDialogMinimalFilterDropdownContentFilterAll, VeltMultiThreadCommentDialogMinimalFilterDropdownContentFilterRead, VeltMultiThreadCommentDialogMinimalFilterDropdownContentFilterResolved, VeltMultiThreadCommentDialogMinimalFilterDropdownContentFilterUnread, VeltMultiThreadCommentDialogMinimalFilterDropdownContentSelectedIcon, VeltMultiThreadCommentDialogMinimalFilterDropdownContentSortDate, VeltMultiThreadCommentDialogMinimalFilterDropdownContentSortUnread, VeltMultiThreadCommentDialogMinimalFilterDropdownTrigger, VeltMultiThreadCommentDialogNewThreadButton, VeltMultiThreadCommentDialogPanel, VeltMultiThreadCommentDialogResetFilterButton, VeltMultiThreadCommentDialogWireframe, VeltNivoChartComments, VeltNotificationsHistoryPanel, VeltNotificationsPanel, VeltNotificationsPanelWireframe, VeltNotificationsTool, VeltNotificationsToolWireframe, VeltPersistentCommentModeWireframe, SnippylyPresence as VeltPresence, VeltPresenceTooltipWireframe, VeltPresenceWireframe, SnippylyProvider as VeltProvider, VeltReactionPinTooltipWireframe, VeltReactionPinWireframe, VeltReactionTool, VeltReactionToolWireframe, VeltReactionsPanelWireframe, VeltRecorderAllToolMenuWireframe, VeltRecorderAllToolWireframe, VeltRecorderAudioToolWireframe, SnippylyRecorderControlPanel as VeltRecorderControlPanel, VeltRecorderControlPanelWireframe, SnippylyRecorderNotes as VeltRecorderNotes, SnippylyRecorderPlayer as VeltRecorderPlayer, VeltRecorderPlayerExpandedWireframe, VeltRecorderPlayerWireframe, VeltRecorderScreenToolWireframe, SnippylyRecorderTool as VeltRecorderTool, VeltRecorderVideoToolWireframe, VeltRecordingPreviewStepsDialogWireframe, SnippylySidebarButton as VeltSidebarButton, VeltSidebarButtonCommentsCount, VeltSidebarButtonIcon, VeltSidebarButtonUnreadIcon, VeltSidebarButtonWireframe, VeltSingleEditorModePanel, VeltSingleEditorModePanelWireframe, VeltSubtitlesWireframe, SnippylyTagTool as VeltTagTool, SnippylyTags as VeltTags, VeltTextComment, VeltTextCommentTool, VeltTextCommentToolWireframe, VeltTextCommentToolbar, VeltTextCommentToolbarCommentAnnotation, VeltTextCommentToolbarCopywriter, VeltTextCommentToolbarDivider, VeltTextCommentToolbarGeneric, VeltTextCommentToolbar$1 as VeltTextCommentToolbarWireframe, VeltTranscriptionWireframe, SnippylyUserInviteTool as VeltUserInviteTool, SnippylyUserRequestTool as VeltUserRequestTool, VeltUserSelectorDropdown as VeltUserSelectorDropdownWireframe, VeltVideoEditor, VeltVideoEditorPlayerWireframe, VeltVideoPlayer, VeltViewAnalytics, VeltWireframe, createLiveStateMiddleware, useAIRewriterUtils, useActivityUtils, useAddAttachment, useAddComment, useAddCommentAnnotation, useAddReaction, useAllActivities, useApproveCommentAnnotation, useAssignUser, useAutocompleteChipClick, useAutocompleteUtils, useClient, useCommentActionCallback, useCommentAddHandler, useCommentAnnotationById, useCommentAnnotations, useCommentAnnotationsCount, useCommentCopyLinkHandler, useCommentDialogSidebarClickHandler, useCommentEventCallback, useCommentModeState, useCommentSelectionChangeHandler, useCommentSidebarActionButtonClick, useCommentSidebarData, useCommentSidebarInit, useCommentUpdateHandler, useCommentUtils, useContactList, useContactSelected, useContactUtils, useCopyLink, useCrdtEventCallback, useCrdtUtils, useCurrentUser, useCurrentUserPermissions, useCursorUsers, useCursorUtils, useDeleteAttachment, useDeleteComment, useDeleteCommentAnnotation, useDeleteReaction, useDeleteRecording, useEditor, useEditorAccessRequestHandler, useEditorAccessTimer, useGetAttachment, useGetComment, useGetCommentAnnotations, useGetLink, useGetRecording, useHeartbeat, useHuddleUtils, useIdentify, useLiveSelectionDataHandler, useLiveSelectionUtils, useLiveState, useLiveStateData, useLiveStateSyncEventCallback, useLiveStateSyncUtils, useNotificationEventCallback, useNotificationSettings, useNotificationUtils, useNotificationsData, usePresenceData, usePresenceEventCallback, usePresenceUsers, usePresenceUtils, useRecorderAddHandler, useRecorderEventCallback, useRecorderUtils, useRecordingDataByRecorderId, useRecordings, useRejectCommentAnnotation, useResolveCommentAnnotation, useServerConnectionStateChangeHandler, useSetContextProvider, useSetDocument, useSetDocumentId, useSetDocuments, useSetLiveStateData, useSetLocation, useSetLocations, useSetRootDocument, useSetRootLocation, useSubscribeCommentAnnotation, useTagAnnotations, useTagUtils, useToggleReaction, useUiState, useUniqueViewsByDate, useUniqueViewsByUser, useUnreadCommentAnnotationCountByLocationId, useUnreadCommentAnnotationCountOnCurrentDocument, useUnreadCommentCountByAnnotationId, useUnreadCommentCountByLocationId, useUnreadCommentCountOnCurrentDocument, useUnreadNotificationsCount, useUnsetDocumentId, useUnsetDocuments, useUnsubscribeCommentAnnotation, useUpdateAccess, useUpdateComment, useUpdatePriority, useUpdateStatus, useUserEditorState, useVeltClient, useVeltEventCallback, useVeltInitState, useViewsUtils };
7169
+ export { VeltActivityLog, VeltActivityLogEmpty, VeltActivityLogHeader, VeltActivityLogHeaderCloseButton, VeltActivityLogHeaderFilter, VeltActivityLogHeaderFilterContent, VeltActivityLogHeaderFilterContentItem, VeltActivityLogHeaderFilterContentItemIcon, VeltActivityLogHeaderFilterContentItemLabel, VeltActivityLogHeaderFilterTrigger, VeltActivityLogHeaderFilterTriggerIcon, VeltActivityLogHeaderFilterTriggerLabel, VeltActivityLogHeaderTitle, VeltActivityLogList, VeltActivityLogListDateGroup, VeltActivityLogListDateGroupLabel, VeltActivityLogListItem, VeltActivityLogListItemAvatar, VeltActivityLogListItemContent, VeltActivityLogListItemContentAction, VeltActivityLogListItemContentDetail, VeltActivityLogListItemContentTarget, VeltActivityLogListItemContentUser, VeltActivityLogListItemIcon, VeltActivityLogListItemTime, VeltActivityLogListShowMore, VeltActivityLogLoading, VeltActivityLogWireframe, SnippylyArrowTool as VeltArrowTool, SnippylyArrows as VeltArrows, VeltAutocomplete, VeltAutocompleteChip, VeltAutocompleteChipTooltip, VeltAutocompleteChipTooltipDescription, VeltAutocompleteChipTooltipIcon, VeltAutocompleteChipTooltipName, VeltAutocompleteChipTooltipWireframe, VeltAutocompleteEmpty, VeltAutocompleteEmptyWireframe, VeltAutocompleteGroupOption, VeltAutocompleteGroupOptionWireframe, VeltAutocompleteOption, VeltAutocompleteOptionDescription, VeltAutocompleteOptionErrorIcon, VeltAutocompleteOptionIcon, VeltAutocompleteOptionName, VeltAutocompleteOptionWireframe, VeltAutocompleteTool, VeltButtonWireframe, VeltCanvasComment, VeltChartComment, SnippylyCommentBubble as VeltCommentBubble, VeltCommentBubbleAvatar, VeltCommentBubbleCommentsCount, VeltCommentBubbleUnreadIcon, VeltCommentBubbleWireframe, VeltCommentComposer, VeltCommentComposerWireframe, VeltCommentDialog, VeltCommentDialogAllComment, VeltCommentDialogApprove, VeltCommentDialogAssignDropdown, VeltCommentDialogAssignMenu, VeltCommentDialogAssigneeBanner, VeltCommentDialogAssigneeBannerResolveButton, VeltCommentDialogAssigneeBannerUnresolveButton, VeltCommentDialogAssigneeBannerUserAvatar, VeltCommentDialogAssigneeBannerUserName, VeltCommentDialogAttachmentButton, VeltCommentDialogBody, VeltCommentDialogCloseButton, VeltCommentDialogCommentCategory, VeltCommentDialogCommentIndex, VeltCommentDialogCommentNumber, VeltCommentDialogCommentSuggestionStatus, VeltCommentDialogComposer, VeltCommentDialogComposerActionButton, VeltCommentDialogComposerAssignUser, VeltCommentDialogComposerAttachments, VeltCommentDialogComposerAttachmentsImage, VeltCommentDialogComposerAttachmentsImageDelete, VeltCommentDialogComposerAttachmentsImageLoading, VeltCommentDialogComposerAttachmentsImagePreview, VeltCommentDialogComposerAttachmentsInvalid, VeltCommentDialogComposerAttachmentsInvalidItem, VeltCommentDialogComposerAttachmentsInvalidItemDelete, VeltCommentDialogComposerAttachmentsInvalidItemMessage, VeltCommentDialogComposerAttachmentsInvalidItemPreview, VeltCommentDialogComposerAttachmentsOther, VeltCommentDialogComposerAttachmentsOtherDelete, VeltCommentDialogComposerAttachmentsOtherIcon, VeltCommentDialogComposerAttachmentsOtherLoading, VeltCommentDialogComposerAttachmentsOtherName, VeltCommentDialogComposerAttachmentsOtherSize, VeltCommentDialogComposerAttachmentsSelected, VeltCommentDialogComposerAvatar, VeltCommentDialogComposerFormatToolbar, VeltCommentDialogComposerFormatToolbarButton, VeltCommentDialogComposerInput, VeltCommentDialogComposerPrivateBadge, VeltCommentDialogComposerRecordings, VeltCommentDialogContextWrapper, VeltCommentDialogCopyLink, VeltCommentDialogCustomAnnotationDropdown, VeltCommentDialogCustomAnnotationDropdownContent, VeltCommentDialogCustomAnnotationDropdownContentItem, VeltCommentDialogCustomAnnotationDropdownContentItemIcon, VeltCommentDialogCustomAnnotationDropdownContentItemLabel, VeltCommentDialogCustomAnnotationDropdownTrigger, VeltCommentDialogCustomAnnotationDropdownTriggerArrow, VeltCommentDialogCustomAnnotationDropdownTriggerList, VeltCommentDialogCustomAnnotationDropdownTriggerListItem, VeltCommentDialogCustomAnnotationDropdownTriggerPlaceholder, VeltCommentDialogCustomAnnotationDropdownTriggerRemainingCount, VeltCommentDialogDeleteButton, VeltCommentDialogDeviceTypeIcons, VeltCommentDialogGhostBanner, VeltCommentDialogHeader, VeltCommentDialogHideReply, VeltCommentDialogMetadata, VeltCommentDialogMoreReply, VeltCommentDialogNavigationButton, VeltCommentDialogOptions, VeltCommentDialogOptionsDropdown, VeltCommentDialogOptionsDropdownContent, VeltCommentDialogOptionsDropdownContentAssign, VeltCommentDialogOptionsDropdownContentDelete, VeltCommentDialogOptionsDropdownContentDeleteComment, VeltCommentDialogOptionsDropdownContentDeleteThread, VeltCommentDialogOptionsDropdownContentEdit, VeltCommentDialogOptionsDropdownContentMakePrivate, VeltCommentDialogOptionsDropdownContentMakePrivateDisable, VeltCommentDialogOptionsDropdownContentMakePrivateEnable, VeltCommentDialogOptionsDropdownContentMarkAsRead, VeltCommentDialogOptionsDropdownContentMarkAsReadMarkRead, VeltCommentDialogOptionsDropdownContentMarkAsReadMarkUnread, VeltCommentDialogOptionsDropdownContentNotification, VeltCommentDialogOptionsDropdownContentNotificationSubscribe, VeltCommentDialogOptionsDropdownContentNotificationUnsubscribe, VeltCommentDialogOptionsDropdownContentWireframe, VeltCommentDialogOptionsDropdownTrigger, VeltCommentDialogOptionsDropdownTriggerWireframe, VeltCommentDialogPriority, VeltCommentDialogPriorityDropdown, VeltCommentDialogPriorityDropdownContent, VeltCommentDialogPriorityDropdownContentItem, VeltCommentDialogPriorityDropdownContentItemIcon, VeltCommentDialogPriorityDropdownContentItemName, VeltCommentDialogPriorityDropdownContentItemTick, VeltCommentDialogPriorityDropdownContentWireframe, VeltCommentDialogPriorityDropdownTrigger, VeltCommentDialogPriorityDropdownTriggerArrow, VeltCommentDialogPriorityDropdownTriggerIcon, VeltCommentDialogPriorityDropdownTriggerName, VeltCommentDialogPriorityDropdownTriggerWireframe, VeltCommentDialogPrivateBanner, VeltCommentDialogPrivateButton, VeltCommentDialogReplyAvatars, VeltCommentDialogReplyAvatarsList, VeltCommentDialogReplyAvatarsListItem, VeltCommentDialogReplyAvatarsRemainingCount, VeltCommentDialogResolveButton, VeltCommentDialogSignIn, VeltCommentDialogStatus, VeltCommentDialogStatusDropdown, VeltCommentDialogStatusDropdownContent, VeltCommentDialogStatusDropdownContentItem, VeltCommentDialogStatusDropdownContentItemIcon, VeltCommentDialogStatusDropdownContentItemName, VeltCommentDialogStatusDropdownContentWireframe, VeltCommentDialogStatusDropdownTrigger, VeltCommentDialogStatusDropdownTriggerArrow, VeltCommentDialogStatusDropdownTriggerIcon, VeltCommentDialogStatusDropdownTriggerName, VeltCommentDialogStatusDropdownTriggerWireframe, VeltCommentDialogSuggestionAction, VeltCommentDialogSuggestionActionAccept, VeltCommentDialogSuggestionActionReject, VeltCommentDialogThreadCard, VeltCommentDialogThreadCardAttachments, VeltCommentDialogThreadCardAttachmentsImage, VeltCommentDialogThreadCardAttachmentsImageDelete, VeltCommentDialogThreadCardAttachmentsImageDownload, VeltCommentDialogThreadCardAttachmentsImagePreview, VeltCommentDialogThreadCardAttachmentsOther, VeltCommentDialogThreadCardAttachmentsOtherDelete, VeltCommentDialogThreadCardAttachmentsOtherDownload, VeltCommentDialogThreadCardAttachmentsOtherIcon, VeltCommentDialogThreadCardAttachmentsOtherName, VeltCommentDialogThreadCardAttachmentsOtherSize, VeltCommentDialogThreadCardAvatar, VeltCommentDialogThreadCardDeviceType, VeltCommentDialogThreadCardDraft, VeltCommentDialogThreadCardEdited, VeltCommentDialogThreadCardMessage, VeltCommentDialogThreadCardName, VeltCommentDialogThreadCardOptions, VeltCommentDialogThreadCardReactionTool, VeltCommentDialogThreadCardReactions, VeltCommentDialogThreadCardRecordings, VeltCommentDialogThreadCardReply, VeltCommentDialogThreadCardSeenDropdown, VeltCommentDialogThreadCardSeenDropdownContent, VeltCommentDialogThreadCardSeenDropdownContentItem, VeltCommentDialogThreadCardSeenDropdownContentItemAvatar, VeltCommentDialogThreadCardSeenDropdownContentItemName, VeltCommentDialogThreadCardSeenDropdownContentItemTime, VeltCommentDialogThreadCardSeenDropdownContentItems, VeltCommentDialogThreadCardSeenDropdownContentTitle, VeltCommentDialogThreadCardSeenDropdownTrigger, VeltCommentDialogThreadCardTime, VeltCommentDialogThreadCardUnread, VeltCommentDialogThreads, VeltCommentDialogToggleReply, VeltCommentDialogToggleReplyCount, VeltCommentDialogToggleReplyIcon, VeltCommentDialogToggleReplyText, VeltCommentDialogUnresolveButton, VeltCommentDialogUpgrade, VeltCommentDialogVisibilityBanner, VeltCommentDialogVisibilityBannerDropdown, VeltCommentDialogVisibilityBannerDropdownContent, VeltCommentDialogVisibilityBannerDropdownContentItem, VeltCommentDialogVisibilityBannerDropdownContentItemIcon, VeltCommentDialogVisibilityBannerDropdownContentItemLabel, VeltCommentDialogVisibilityBannerDropdownContentUserPicker, VeltCommentDialogVisibilityBannerDropdownTrigger, VeltCommentDialogVisibilityBannerDropdownTriggerAvatarList, VeltCommentDialogVisibilityBannerDropdownTriggerAvatarListItem, VeltCommentDialogVisibilityBannerDropdownTriggerAvatarListRemainingCount, VeltCommentDialogVisibilityBannerDropdownTriggerIcon, VeltCommentDialogVisibilityBannerDropdownTriggerLabel, VeltCommentDialogVisibilityBannerIcon, VeltCommentDialogVisibilityBannerText, VeltCommentDialogVisibilityDropdown, VeltCommentDialogVisibilityDropdownContent, VeltCommentDialogVisibilityDropdownContentPrivate, VeltCommentDialogVisibilityDropdownContentPublic, VeltCommentDialogVisibilityDropdownTrigger, VeltCommentDialogVisibilityDropdownTriggerIcon, VeltCommentDialogVisibilityDropdownTriggerLabel, VeltCommentDialogWireframe, VeltCommentPin, VeltCommentPinGhostCommentIndicator, VeltCommentPinIndex, VeltCommentPinNumber, VeltCommentPinPrivateCommentIndicator, VeltCommentPinTriangle, VeltCommentPinUnreadCommentIndicator, VeltCommentPinWireframe, VeltCommentPlayerTimeline, VeltCommentText, VeltCommentThread, VeltCommentThreadWireframe, SnippylyCommentTool as VeltCommentTool, VeltCommentToolWireframe, SnippylyComments as VeltComments, VeltCommentsMinimap, SnippylyCommentsSidebar as VeltCommentsSidebar, VeltCommentsSidebarButton, VeltCommentsSidebarStatusDropdownWireframe, VeltCommentsSidebarV2, VeltCommentsSidebarV2CloseButton, VeltCommentsSidebarV2EmptyPlaceholder, VeltCommentsSidebarV2FilterDropdown, VeltCommentsSidebarV2FilterDropdownContent, VeltCommentsSidebarV2FilterDropdownContentList, VeltCommentsSidebarV2FilterDropdownContentListCategory, VeltCommentsSidebarV2FilterDropdownContentListCategoryContent, VeltCommentsSidebarV2FilterDropdownContentListItem, VeltCommentsSidebarV2FilterDropdownContentListItemIndicator, VeltCommentsSidebarV2FilterDropdownContentListItemLabel, VeltCommentsSidebarV2FilterDropdownTrigger, VeltCommentsSidebarV2FocusedThread, VeltCommentsSidebarV2FocusedThreadBackButton, VeltCommentsSidebarV2FocusedThreadDialogContainer, VeltCommentsSidebarV2Header, VeltCommentsSidebarV2List, VeltCommentsSidebarV2ListItem, VeltCommentsSidebarV2MinimalActionsDropdown, VeltCommentsSidebarV2MinimalActionsDropdownContent, VeltCommentsSidebarV2MinimalActionsDropdownContentMarkAllRead, VeltCommentsSidebarV2MinimalActionsDropdownContentMarkAllResolved, VeltCommentsSidebarV2MinimalActionsDropdownTrigger, VeltCommentsSidebarV2PageModeComposer, VeltCommentsSidebarV2Panel, VeltCommentsSidebarV2ResetFilterButton, VeltCommentsSidebarV2Skeleton, VeltCommentsSidebarV2Wireframe, VeltCommentsSidebarWireframe, VeltConfirmDialogWireframe, SnippylyCursor as VeltCursor, VeltCursorPointerWireframe, VeltData, VeltHighChartComments, SnippylyHuddle as VeltHuddle, SnippylyHuddleTool as VeltHuddleTool, VeltIf, VeltInlineCommentsSection, VeltInlineCommentsSectionCommentCount, VeltInlineCommentsSectionComposerContainer, VeltInlineCommentsSectionFilterDropdown, VeltInlineCommentsSectionFilterDropdownContent, VeltInlineCommentsSectionFilterDropdownContentList, VeltInlineCommentsSectionFilterDropdownContentListItem, VeltInlineCommentsSectionFilterDropdownContentListItemCheckbox, VeltInlineCommentsSectionFilterDropdownContentListItemLabel, VeltInlineCommentsSectionFilterDropdownTrigger, VeltInlineCommentsSectionFilterDropdownTriggerArrow, VeltInlineCommentsSectionFilterDropdownTriggerName, VeltInlineCommentsSectionList, VeltInlineCommentsSectionPanel, VeltInlineCommentsSectionSkeleton, VeltInlineCommentsSectionSortingDropdown, VeltInlineCommentsSectionSortingDropdownContent, VeltInlineCommentsSectionSortingDropdownContentItem, VeltInlineCommentsSectionSortingDropdownContentItemIcon, VeltInlineCommentsSectionSortingDropdownContentItemName, VeltInlineCommentsSectionSortingDropdownContentItemTick, VeltInlineCommentsSectionSortingDropdownTrigger, VeltInlineCommentsSectionSortingDropdownTriggerIcon, VeltInlineCommentsSectionSortingDropdownTriggerName, VeltInlineCommentsSectionWireframe, VeltInlineReactionsSection, VeltInlineReactionsSectionWireframe, VeltMediaSourceSettingsWireframe, VeltMultiThreadCommentDialogCloseButton, VeltMultiThreadCommentDialogCommentCount, VeltMultiThreadCommentDialogComposerContainer, VeltMultiThreadCommentDialogEmptyPlaceholder, VeltMultiThreadCommentDialogList, VeltMultiThreadCommentDialogMinimalActionsDropdown, VeltMultiThreadCommentDialogMinimalActionsDropdownContent, VeltMultiThreadCommentDialogMinimalActionsDropdownContentMarkAllRead, VeltMultiThreadCommentDialogMinimalActionsDropdownContentMarkAllResolved, VeltMultiThreadCommentDialogMinimalActionsDropdownTrigger, VeltMultiThreadCommentDialogMinimalFilterDropdown, VeltMultiThreadCommentDialogMinimalFilterDropdownContent, VeltMultiThreadCommentDialogMinimalFilterDropdownContentFilterAll, VeltMultiThreadCommentDialogMinimalFilterDropdownContentFilterRead, VeltMultiThreadCommentDialogMinimalFilterDropdownContentFilterResolved, VeltMultiThreadCommentDialogMinimalFilterDropdownContentFilterUnread, VeltMultiThreadCommentDialogMinimalFilterDropdownContentSelectedIcon, VeltMultiThreadCommentDialogMinimalFilterDropdownContentSortDate, VeltMultiThreadCommentDialogMinimalFilterDropdownContentSortUnread, VeltMultiThreadCommentDialogMinimalFilterDropdownTrigger, VeltMultiThreadCommentDialogNewThreadButton, VeltMultiThreadCommentDialogPanel, VeltMultiThreadCommentDialogResetFilterButton, VeltMultiThreadCommentDialogWireframe, VeltNivoChartComments, VeltNotificationsHistoryPanel, VeltNotificationsPanel, VeltNotificationsPanelWireframe, VeltNotificationsTool, VeltNotificationsToolWireframe, VeltPersistentCommentModeWireframe, SnippylyPresence as VeltPresence, VeltPresenceTooltipWireframe, VeltPresenceWireframe, SnippylyProvider as VeltProvider, VeltReactionPinTooltipWireframe, VeltReactionPinWireframe, VeltReactionTool, VeltReactionToolWireframe, VeltReactionsPanelWireframe, VeltRecorderAllToolMenuWireframe, VeltRecorderAllToolWireframe, VeltRecorderAudioToolWireframe, SnippylyRecorderControlPanel as VeltRecorderControlPanel, VeltRecorderControlPanelWireframe, SnippylyRecorderNotes as VeltRecorderNotes, SnippylyRecorderPlayer as VeltRecorderPlayer, VeltRecorderPlayerExpandedWireframe, VeltRecorderPlayerWireframe, VeltRecorderScreenToolWireframe, SnippylyRecorderTool as VeltRecorderTool, VeltRecorderVideoToolWireframe, VeltRecordingPreviewStepsDialogWireframe, SnippylySidebarButton as VeltSidebarButton, VeltSidebarButtonCommentsCount, VeltSidebarButtonIcon, VeltSidebarButtonUnreadIcon, VeltSidebarButtonWireframe, VeltSingleEditorModePanel, VeltSingleEditorModePanelWireframe, VeltSubtitlesWireframe, SnippylyTagTool as VeltTagTool, SnippylyTags as VeltTags, VeltTextComment, VeltTextCommentTool, VeltTextCommentToolWireframe, VeltTextCommentToolbar, VeltTextCommentToolbarCommentAnnotation, VeltTextCommentToolbarCopywriter, VeltTextCommentToolbarDivider, VeltTextCommentToolbarGeneric, VeltTextCommentToolbar$1 as VeltTextCommentToolbarWireframe, VeltTranscriptionWireframe, SnippylyUserInviteTool as VeltUserInviteTool, SnippylyUserRequestTool as VeltUserRequestTool, VeltUserSelectorDropdown as VeltUserSelectorDropdownWireframe, VeltVideoEditor, VeltVideoEditorPlayerWireframe, VeltVideoPlayer, VeltViewAnalytics, VeltWireframe, createLiveStateMiddleware, useAIRewriterUtils, useActivityUtils, useAddAttachment, useAddComment, useAddCommentAnnotation, useAddReaction, useAllActivities, useApproveCommentAnnotation, useAssignUser, useAutocompleteChipClick, useAutocompleteUtils, useClient, useCommentActionCallback, useCommentAddHandler, useCommentAnnotationById, useCommentAnnotations, useCommentAnnotationsCount, useCommentCopyLinkHandler, useCommentDialogSidebarClickHandler, useCommentEventCallback, useCommentModeState, useCommentSelectionChangeHandler, useCommentSidebarActionButtonClick, useCommentSidebarData, useCommentSidebarInit, useCommentUpdateHandler, useCommentUtils, useContactList, useContactSelected, useContactUtils, useCopyLink, useCrdtEventCallback, useCrdtUtils, useCurrentUser, useCurrentUserPermissions, useCursorUsers, useCursorUtils, useDeleteAttachment, useDeleteComment, useDeleteCommentAnnotation, useDeleteReaction, useDeleteRecording, useEditor, useEditorAccessRequestHandler, useEditorAccessTimer, useGetAttachment, useGetComment, useGetCommentAnnotations, useGetLink, useGetRecording, useHeartbeat, useHuddleUtils, useIdentify, useLiveSelectionDataHandler, useLiveSelectionUtils, useLiveState, useLiveStateData, useLiveStateSyncEventCallback, useLiveStateSyncUtils, useNotificationEventCallback, useNotificationSettings, useNotificationUtils, useNotificationsData, usePresenceData, usePresenceEventCallback, usePresenceUsers, usePresenceUtils, useRecorderAddHandler, useRecorderEventCallback, useRecorderUtils, useRecordingDataByRecorderId, useRecordings, useRejectCommentAnnotation, useResolveCommentAnnotation, useServerConnectionStateChangeHandler, useSetContextProvider, useSetDocument, useSetDocumentId, useSetDocuments, useSetLiveStateData, useSetLocation, useSetLocations, useSetRootDocument, useSetRootLocation, useSubscribeCommentAnnotation, useTagAnnotations, useTagUtils, useToggleReaction, useUiState, useUniqueViewsByDate, useUniqueViewsByUser, useUnreadCommentAnnotationCountByLocationId, useUnreadCommentAnnotationCountOnCurrentDocument, useUnreadCommentCountByAnnotationId, useUnreadCommentCountByLocationId, useUnreadCommentCountOnCurrentDocument, useUnreadNotificationsCount, useUnsetDocumentId, useUnsetDocuments, useUnsubscribeCommentAnnotation, useUpdateAccess, useUpdateComment, useUpdatePriority, useUpdateStatus, useUserEditorState, useVeltClient, useVeltEventCallback, useVeltInitState, useViewsUtils };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@veltdev/react",
3
- "version": "5.0.2-beta.12",
3
+ "version": "5.0.2-beta.14",
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": [