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

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 (38) hide show
  1. package/cjs/index.js +33 -12
  2. package/cjs/index.js.map +1 -1
  3. package/cjs/types/components/SnippylyCommentsSidebar/SnippylyCommentsSidebar.d.ts +0 -1
  4. package/cjs/types/components/VeltCommentBubble/VeltCommentBubbleAvatar/VeltCommentBubbleAvatar.d.ts +1 -0
  5. package/cjs/types/components/VeltCommentBubble/VeltCommentBubbleCommentsCount/VeltCommentBubbleCommentsCount.d.ts +1 -0
  6. package/cjs/types/components/VeltCommentBubble/VeltCommentBubbleUnreadIcon/VeltCommentBubbleUnreadIcon.d.ts +2 -2
  7. package/cjs/types/components/VeltCommentBubble/index.d.ts +3 -1
  8. package/cjs/types/components/VeltCommentBubbleWireframe/VeltCommentBubbleAvatar/VeltCommentBubbleAvatar.d.ts +5 -0
  9. package/cjs/types/components/VeltCommentBubbleWireframe/VeltCommentBubbleAvatar/index.d.ts +1 -0
  10. package/cjs/types/components/VeltCommentBubbleWireframe/VeltCommentBubbleCommentsCount/VeltCommentBubbleCommentsCount.d.ts +5 -0
  11. package/cjs/types/components/VeltCommentBubbleWireframe/VeltCommentBubbleCommentsCount/index.d.ts +1 -0
  12. package/cjs/types/components/VeltCommentBubbleWireframe/VeltCommentBubbleUnreadIcon/VeltCommentBubbleUnreadIcon.d.ts +6 -0
  13. package/cjs/types/components/VeltCommentBubbleWireframe/VeltCommentBubbleUnreadIcon/index.d.ts +1 -0
  14. package/cjs/types/components/VeltCommentBubbleWireframe/index.d.ts +1 -0
  15. package/cjs/types/components/VeltCommentsSidebarV2/VeltCommentsSidebarV2.d.ts +0 -1
  16. package/cjs/types/components/index.d.ts +4 -1
  17. package/cjs/types/constants.d.ts +1 -1
  18. package/esm/index.js +31 -13
  19. package/esm/index.js.map +1 -1
  20. package/esm/types/components/SnippylyCommentsSidebar/SnippylyCommentsSidebar.d.ts +0 -1
  21. package/esm/types/components/VeltCommentBubble/VeltCommentBubbleAvatar/VeltCommentBubbleAvatar.d.ts +1 -0
  22. package/esm/types/components/VeltCommentBubble/VeltCommentBubbleCommentsCount/VeltCommentBubbleCommentsCount.d.ts +1 -0
  23. package/esm/types/components/VeltCommentBubble/VeltCommentBubbleUnreadIcon/VeltCommentBubbleUnreadIcon.d.ts +2 -2
  24. package/esm/types/components/VeltCommentBubble/index.d.ts +3 -1
  25. package/esm/types/components/VeltCommentBubbleWireframe/VeltCommentBubbleAvatar/VeltCommentBubbleAvatar.d.ts +5 -0
  26. package/esm/types/components/VeltCommentBubbleWireframe/VeltCommentBubbleAvatar/index.d.ts +1 -0
  27. package/esm/types/components/VeltCommentBubbleWireframe/VeltCommentBubbleCommentsCount/VeltCommentBubbleCommentsCount.d.ts +5 -0
  28. package/esm/types/components/VeltCommentBubbleWireframe/VeltCommentBubbleCommentsCount/index.d.ts +1 -0
  29. package/esm/types/components/VeltCommentBubbleWireframe/VeltCommentBubbleUnreadIcon/VeltCommentBubbleUnreadIcon.d.ts +6 -0
  30. package/esm/types/components/VeltCommentBubbleWireframe/VeltCommentBubbleUnreadIcon/index.d.ts +1 -0
  31. package/esm/types/components/VeltCommentBubbleWireframe/index.d.ts +1 -0
  32. package/esm/types/components/VeltCommentsSidebarV2/VeltCommentsSidebarV2.d.ts +0 -1
  33. package/esm/types/components/index.d.ts +4 -1
  34. package/esm/types/constants.d.ts +1 -1
  35. package/index.d.ts +22 -9
  36. package/package.json +1 -1
  37. /package/cjs/types/components/{VeltCommentBubble → VeltCommentBubbleWireframe}/VeltCommentBubbleWireframe.d.ts +0 -0
  38. /package/esm/types/components/{VeltCommentBubble → VeltCommentBubbleWireframe}/VeltCommentBubbleWireframe.d.ts +0 -0
package/cjs/index.js CHANGED
@@ -212,13 +212,13 @@ var loadVelt = function (callback, version, staging, develop, proxyDomain, integ
212
212
  };
213
213
  };
214
214
 
215
- var VELT_SDK_VERSION = '5.0.2-beta.12';
215
+ var VELT_SDK_VERSION = '5.0.2-beta.13';
216
216
  var VELT_SDK_INIT_EVENT = 'onVeltInit';
217
217
  var VELT_TAB_ID = 'veltTabId';
218
218
  // integrity map for the Velt SDK
219
219
  // Note: generate integrity hashes with: https://www.srihash.org/
220
220
  var INTEGRITY_MAP = {
221
- '5.0.2-beta.12': 'sha384-OA7Cn/eb7slNpM90oitZVG0DbkTigbAh8z/oZ+RXhI3dN+SDbfJKMDqzrBEPaqS5',
221
+ '5.0.2-beta.13': 'sha384-3DzZAvJ9c10j0nQCQGSeONuTkEQ9R8QRzBcElcUuRMAS86wN7C2vWASPYtWu7Njn',
222
222
  };
223
223
 
224
224
  var validProps = ['veltIf', 'veltClass', 'className', 'variant'];
@@ -675,7 +675,7 @@ var SnippylyComments = function (props) {
675
675
  };
676
676
 
677
677
  var SnippylyCommentsSidebar = function (props) {
678
- var embedMode = props.embedMode, floatingMode = props.floatingMode, enableUrlNavigation = props.enableUrlNavigation, urlNavigation = props.urlNavigation, queryParamsComments = props.queryParamsComments, pageMode = props.pageMode, currentLocationSuffix = props.currentLocationSuffix, sortData = props.sortData, filterConfig = props.filterConfig, groupConfig = props.groupConfig, filters = props.filters, excludeLocationIds = props.excludeLocationIds, variant = props.variant, pageModeComposerVariant = props.pageModeComposerVariant, dialogVariant = props.dialogVariant, shadowDom = props.shadowDom, searchPlaceholder = props.searchPlaceholder, openSidebar = props.openSidebar, onSidebarOpen = props.onSidebarOpen, onSidebarCommentClick = props.onSidebarCommentClick, onCommentClick = props.onCommentClick, onSidebarClose = props.onSidebarClose, darkMode = props.darkMode, position = props.position, filterPanelLayout = props.filterPanelLayout, customActions = props.customActions, focusedThreadDialogVariant = props.focusedThreadDialogVariant, focusedThreadMode = props.focusedThreadMode, openAnnotationInFocusMode = props.openAnnotationInFocusMode, onCommentNavigationButtonClick = props.onCommentNavigationButtonClick, filterOptionLayout = props.filterOptionLayout, filterCount = props.filterCount, fullExpanded = props.fullExpanded, systemFiltersOperator = props.systemFiltersOperator, sidebarButtonCountType = props.sidebarButtonCountType, filterGhostCommentsInSidebar = props.filterGhostCommentsInSidebar, fullScreen = props.fullScreen, readOnly = props.readOnly, dialogSelection = props.dialogSelection, expandOnSelection = props.expandOnSelection, context = props.context, defaultMinimalFilter = props.defaultMinimalFilter, sortOrder = props.sortOrder, sortBy = props.sortBy, forceClose = props.forceClose, commentPlaceholder = props.commentPlaceholder, replyPlaceholder = props.replyPlaceholder, pageModePlaceholder = props.pageModePlaceholder, version = props.version;
678
+ var embedMode = props.embedMode, floatingMode = props.floatingMode, enableUrlNavigation = props.enableUrlNavigation, urlNavigation = props.urlNavigation, queryParamsComments = props.queryParamsComments, pageMode = props.pageMode, currentLocationSuffix = props.currentLocationSuffix, sortData = props.sortData, filterConfig = props.filterConfig, groupConfig = props.groupConfig, filters = props.filters, excludeLocationIds = props.excludeLocationIds, variant = props.variant, pageModeComposerVariant = props.pageModeComposerVariant, dialogVariant = props.dialogVariant, shadowDom = props.shadowDom, searchPlaceholder = props.searchPlaceholder, openSidebar = props.openSidebar, onSidebarOpen = props.onSidebarOpen, onSidebarCommentClick = props.onSidebarCommentClick, onCommentClick = props.onCommentClick, onSidebarClose = props.onSidebarClose, darkMode = props.darkMode, position = props.position, filterPanelLayout = props.filterPanelLayout, customActions = props.customActions, focusedThreadDialogVariant = props.focusedThreadDialogVariant, focusedThreadMode = props.focusedThreadMode, openAnnotationInFocusMode = props.openAnnotationInFocusMode, onCommentNavigationButtonClick = props.onCommentNavigationButtonClick, filterOptionLayout = props.filterOptionLayout, filterCount = props.filterCount, fullExpanded = props.fullExpanded, systemFiltersOperator = props.systemFiltersOperator, sidebarButtonCountType = props.sidebarButtonCountType, filterGhostCommentsInSidebar = props.filterGhostCommentsInSidebar, fullScreen = props.fullScreen, readOnly = props.readOnly, dialogSelection = props.dialogSelection, expandOnSelection = props.expandOnSelection, context = props.context, defaultMinimalFilter = props.defaultMinimalFilter, sortOrder = props.sortOrder, sortBy = props.sortBy, forceClose = props.forceClose, commentPlaceholder = props.commentPlaceholder, replyPlaceholder = props.replyPlaceholder, pageModePlaceholder = props.pageModePlaceholder;
679
679
  var ref = React.useRef();
680
680
  var openSidebarRef = React.useRef(openSidebar);
681
681
  var onSidebarOpenRef = React.useRef(onSidebarOpen);
@@ -748,7 +748,7 @@ var SnippylyCommentsSidebar = function (props) {
748
748
  }
749
749
  };
750
750
  }, []);
751
- return (React__default["default"].createElement("velt-comments-sidebar", { ref: ref, position: position, "filter-panel-layout": filterPanelLayout, "focused-thread-mode": [true, false].includes(focusedThreadMode) ? (focusedThreadMode ? 'true' : 'false') : undefined, "open-annotation-in-focus-mode": [true, false].includes(openAnnotationInFocusMode) ? (openAnnotationInFocusMode ? 'true' : 'false') : undefined, "focused-thread-dialog-variant": focusedThreadDialogVariant, "custom-actions": [true, false].includes(customActions) ? (customActions ? 'true' : 'false') : undefined, "shadow-dom": [true, false].includes(shadowDom) ? (shadowDom ? 'true' : 'false') : undefined, "embed-mode": [true, false].includes(embedMode) ? (embedMode ? 'true' : 'false') : undefined, "enable-url-navigation": [true, false].includes(enableUrlNavigation) ? (enableUrlNavigation ? 'true' : 'false') : undefined, "url-navigation": [true, false].includes(urlNavigation) ? (urlNavigation ? 'true' : 'false') : undefined, "query-params-comments": [true, false].includes(queryParamsComments) ? (queryParamsComments ? 'true' : 'false') : undefined, "page-mode": [true, false].includes(pageMode) ? (pageMode ? 'true' : 'false') : undefined, "current-location-suffix": [true, false].includes(currentLocationSuffix) ? (currentLocationSuffix ? 'true' : 'false') : undefined, "filter-config": filterConfig ? JSON.stringify(filterConfig) : undefined, "group-config": groupConfig ? JSON.stringify(groupConfig) : undefined, filters: filters ? JSON.stringify(filters) : undefined, "exclude-location-ids": excludeLocationIds ? JSON.stringify(excludeLocationIds) : undefined, variant: variant, "page-mode-composer-variant": pageModeComposerVariant, "dialog-variant": dialogVariant, "sort-data": sortData, "search-placeholder": searchPlaceholder, "dark-mode": [true, false].includes(darkMode) ? (darkMode ? 'true' : 'false') : undefined, "floating-mode": [true, false].includes(floatingMode) ? (floatingMode ? 'true' : 'false') : undefined, "filter-option-layout": filterOptionLayout, "filter-count": [true, false].includes(filterCount) ? (filterCount ? 'true' : 'false') : undefined, "full-expanded": [true, false].includes(fullExpanded) ? (fullExpanded ? 'true' : 'false') : undefined, "system-filters-operator": systemFiltersOperator, "sidebar-button-count-type": sidebarButtonCountType, "filter-ghost-comments-in-sidebar": [true, false].includes(filterGhostCommentsInSidebar) ? (filterGhostCommentsInSidebar ? 'true' : 'false') : undefined, "full-screen": [true, false].includes(fullScreen) ? (fullScreen ? 'true' : 'false') : undefined, "read-only": [true, false].includes(readOnly) ? (readOnly ? 'true' : 'false') : undefined, "dialog-selection": [true, false].includes(dialogSelection) ? (dialogSelection ? 'true' : 'false') : undefined, "expand-on-selection": [true, false].includes(expandOnSelection) ? (expandOnSelection ? 'true' : 'false') : undefined, context: context ? JSON.stringify(context) : undefined, "default-minimal-filter": defaultMinimalFilter, "sort-order": sortOrder, "sort-by": sortBy, "force-close": [true, false].includes(forceClose) ? (forceClose ? 'true' : 'false') : undefined, "comment-placeholder": commentPlaceholder, "reply-placeholder": replyPlaceholder, "page-mode-placeholder": pageModePlaceholder, version: version }));
751
+ return (React__default["default"].createElement("velt-comments-sidebar", { ref: ref, position: position, "filter-panel-layout": filterPanelLayout, "focused-thread-mode": [true, false].includes(focusedThreadMode) ? (focusedThreadMode ? 'true' : 'false') : undefined, "open-annotation-in-focus-mode": [true, false].includes(openAnnotationInFocusMode) ? (openAnnotationInFocusMode ? 'true' : 'false') : undefined, "focused-thread-dialog-variant": focusedThreadDialogVariant, "custom-actions": [true, false].includes(customActions) ? (customActions ? 'true' : 'false') : undefined, "shadow-dom": [true, false].includes(shadowDom) ? (shadowDom ? 'true' : 'false') : undefined, "embed-mode": [true, false].includes(embedMode) ? (embedMode ? 'true' : 'false') : undefined, "enable-url-navigation": [true, false].includes(enableUrlNavigation) ? (enableUrlNavigation ? 'true' : 'false') : undefined, "url-navigation": [true, false].includes(urlNavigation) ? (urlNavigation ? 'true' : 'false') : undefined, "query-params-comments": [true, false].includes(queryParamsComments) ? (queryParamsComments ? 'true' : 'false') : undefined, "page-mode": [true, false].includes(pageMode) ? (pageMode ? 'true' : 'false') : undefined, "current-location-suffix": [true, false].includes(currentLocationSuffix) ? (currentLocationSuffix ? 'true' : 'false') : undefined, "filter-config": filterConfig ? JSON.stringify(filterConfig) : undefined, "group-config": groupConfig ? JSON.stringify(groupConfig) : undefined, filters: filters ? JSON.stringify(filters) : undefined, "exclude-location-ids": excludeLocationIds ? JSON.stringify(excludeLocationIds) : undefined, variant: variant, "page-mode-composer-variant": pageModeComposerVariant, "dialog-variant": dialogVariant, "sort-data": sortData, "search-placeholder": searchPlaceholder, "dark-mode": [true, false].includes(darkMode) ? (darkMode ? 'true' : 'false') : undefined, "floating-mode": [true, false].includes(floatingMode) ? (floatingMode ? 'true' : 'false') : undefined, "filter-option-layout": filterOptionLayout, "filter-count": [true, false].includes(filterCount) ? (filterCount ? 'true' : 'false') : undefined, "full-expanded": [true, false].includes(fullExpanded) ? (fullExpanded ? 'true' : 'false') : undefined, "system-filters-operator": systemFiltersOperator, "sidebar-button-count-type": sidebarButtonCountType, "filter-ghost-comments-in-sidebar": [true, false].includes(filterGhostCommentsInSidebar) ? (filterGhostCommentsInSidebar ? 'true' : 'false') : undefined, "full-screen": [true, false].includes(fullScreen) ? (fullScreen ? 'true' : 'false') : undefined, "read-only": [true, false].includes(readOnly) ? (readOnly ? 'true' : 'false') : undefined, "dialog-selection": [true, false].includes(dialogSelection) ? (dialogSelection ? 'true' : 'false') : undefined, "expand-on-selection": [true, false].includes(expandOnSelection) ? (expandOnSelection ? 'true' : 'false') : undefined, context: context ? JSON.stringify(context) : undefined, "default-minimal-filter": defaultMinimalFilter, "sort-order": sortOrder, "sort-by": sortBy, "force-close": [true, false].includes(forceClose) ? (forceClose ? 'true' : 'false') : undefined, "comment-placeholder": commentPlaceholder, "reply-placeholder": replyPlaceholder, "page-mode-placeholder": pageModePlaceholder }));
752
752
  };
753
753
 
754
754
  var SnippylyCommentTool = function (props) {
@@ -2051,7 +2051,7 @@ var VeltVideoEditor = function (props) {
2051
2051
  };
2052
2052
 
2053
2053
  var VeltCommentsSidebarV2 = function (props) {
2054
- var pageMode = props.pageMode, focusedThreadMode = props.focusedThreadMode, readOnly = props.readOnly, embedMode = props.embedMode, floatingMode = props.floatingMode, position = props.position, variant = props.variant, forceClose = props.forceClose, version = props.version, onSidebarOpen = props.onSidebarOpen, onSidebarClose = props.onSidebarClose, onCommentClick = props.onCommentClick, onCommentNavigationButtonClick = props.onCommentNavigationButtonClick, children = props.children;
2054
+ var pageMode = props.pageMode, focusedThreadMode = props.focusedThreadMode, readOnly = props.readOnly, embedMode = props.embedMode, floatingMode = props.floatingMode, position = props.position, variant = props.variant, forceClose = props.forceClose, onSidebarOpen = props.onSidebarOpen, onSidebarClose = props.onSidebarClose, onCommentClick = props.onCommentClick, onCommentNavigationButtonClick = props.onCommentNavigationButtonClick, children = props.children;
2055
2055
  var ref = React.useRef(null);
2056
2056
  var onSidebarOpenRef = React.useRef(onSidebarOpen);
2057
2057
  var onSidebarCloseRef = React.useRef(onSidebarClose);
@@ -2087,7 +2087,7 @@ var VeltCommentsSidebarV2 = function (props) {
2087
2087
  }
2088
2088
  };
2089
2089
  }, []);
2090
- return (React__default["default"].createElement("velt-comments-sidebar-v2", { ref: ref, "page-mode": [true, false].includes(pageMode) ? (pageMode ? 'true' : 'false') : undefined, "focused-thread-mode": [true, false].includes(focusedThreadMode) ? (focusedThreadMode ? 'true' : 'false') : undefined, "read-only": [true, false].includes(readOnly) ? (readOnly ? 'true' : 'false') : undefined, "embed-mode": embedMode, "floating-mode": [true, false].includes(floatingMode) ? (floatingMode ? 'true' : 'false') : undefined, position: position, variant: variant, "force-close": [true, false].includes(forceClose) ? (forceClose ? 'true' : 'false') : undefined, version: version }, children));
2090
+ return (React__default["default"].createElement("velt-comments-sidebar-v2", { ref: ref, "page-mode": [true, false].includes(pageMode) ? (pageMode ? 'true' : 'false') : undefined, "focused-thread-mode": [true, false].includes(focusedThreadMode) ? (focusedThreadMode ? 'true' : 'false') : undefined, "read-only": [true, false].includes(readOnly) ? (readOnly ? 'true' : 'false') : undefined, "embed-mode": embedMode, "floating-mode": [true, false].includes(floatingMode) ? (floatingMode ? 'true' : 'false') : undefined, position: position, variant: variant, "force-close": [true, false].includes(forceClose) ? (forceClose ? 'true' : 'false') : undefined }, children));
2091
2091
  };
2092
2092
 
2093
2093
  var VeltCommentsSidebarV2Skeleton$1 = function (props) {
@@ -5687,17 +5687,17 @@ var VeltAutocompleteEmptyWireframe = function (props) {
5687
5687
  return (React__default["default"].createElement("velt-autocomplete-empty-wireframe", __assign({}, transformedProps), children));
5688
5688
  };
5689
5689
 
5690
- var VeltCommentBubbleAvatar = function (props) {
5690
+ var VeltCommentBubbleAvatar$1 = function (props) {
5691
5691
  var children = props.children;
5692
5692
  return (React__default["default"].createElement("velt-comment-bubble-avatar-wireframe", null, children));
5693
5693
  };
5694
5694
 
5695
- var VeltCommentBubbleCommentsCount = function (props) {
5695
+ var VeltCommentBubbleCommentsCount$1 = function (props) {
5696
5696
  var children = props.children;
5697
5697
  return (React__default["default"].createElement("velt-comment-bubble-comments-count-wireframe", null, children));
5698
5698
  };
5699
5699
 
5700
- var VeltCommentBubbleUnreadIcon = function (props) {
5700
+ var VeltCommentBubbleUnreadIcon$1 = function (props) {
5701
5701
  var children = props.children, remainingProps = __rest(props, ["children"]);
5702
5702
  var transformedProps = transformWireframeProps(remainingProps);
5703
5703
  return (React__default["default"].createElement("velt-comment-bubble-unread-icon-wireframe", __assign({}, transformedProps), children));
@@ -5707,9 +5707,9 @@ var VeltCommentBubbleWireframe = function (props) {
5707
5707
  var children = props.children, remainingProp = __rest(props, ["children"]);
5708
5708
  return (React__default["default"].createElement("velt-comment-bubble-wireframe", __assign({}, remainingProp), children));
5709
5709
  };
5710
- VeltCommentBubbleWireframe.Avatar = VeltCommentBubbleAvatar;
5711
- VeltCommentBubbleWireframe.CommentsCount = VeltCommentBubbleCommentsCount;
5712
- VeltCommentBubbleWireframe.UnreadIcon = VeltCommentBubbleUnreadIcon;
5710
+ VeltCommentBubbleWireframe.Avatar = VeltCommentBubbleAvatar$1;
5711
+ VeltCommentBubbleWireframe.CommentsCount = VeltCommentBubbleCommentsCount$1;
5712
+ VeltCommentBubbleWireframe.UnreadIcon = VeltCommentBubbleUnreadIcon$1;
5713
5713
 
5714
5714
  var VeltCommentsSidebarStatusDropdownWireframe = function (props) {
5715
5715
  var children = props.children, remainingProps = __rest(props, ["children"]);
@@ -8565,6 +8565,24 @@ VeltActivityLogWireframe.List = VeltActivityLogListWireframe;
8565
8565
  VeltActivityLogWireframe.Loading = VeltActivityLogLoadingWireframe;
8566
8566
  VeltActivityLogWireframe.Empty = VeltActivityLogEmptyWireframe;
8567
8567
 
8568
+ var VeltCommentBubbleAvatar = function (props) {
8569
+ var defaultCondition = props.defaultCondition, children = props.children;
8570
+ var ref = React.useRef(null);
8571
+ return (React__default["default"].createElement("velt-comment-bubble-avatar", { ref: ref, "default-condition": [true, false].includes(defaultCondition) ? (defaultCondition ? 'true' : 'false') : undefined }, children));
8572
+ };
8573
+
8574
+ var VeltCommentBubbleCommentsCount = function (props) {
8575
+ var defaultCondition = props.defaultCondition, children = props.children;
8576
+ var ref = React.useRef(null);
8577
+ return (React__default["default"].createElement("velt-comment-bubble-comments-count", { ref: ref, "default-condition": [true, false].includes(defaultCondition) ? (defaultCondition ? 'true' : 'false') : undefined }, children));
8578
+ };
8579
+
8580
+ var VeltCommentBubbleUnreadIcon = function (props) {
8581
+ var defaultCondition = props.defaultCondition, children = props.children;
8582
+ var ref = React.useRef(null);
8583
+ return (React__default["default"].createElement("velt-comment-bubble-unread-icon", { ref: ref, "default-condition": [true, false].includes(defaultCondition) ? (defaultCondition ? 'true' : 'false') : undefined }, children));
8584
+ };
8585
+
8568
8586
  var VeltSidebarButtonIcon = function (props) {
8569
8587
  var defaultCondition = props.defaultCondition, children = props.children;
8570
8588
  var ref = React.useRef(null);
@@ -10890,6 +10908,9 @@ exports.VeltButtonWireframe = VeltButtonWireframe;
10890
10908
  exports.VeltCanvasComment = VeltCanvasComment;
10891
10909
  exports.VeltChartComment = VeltChartComment;
10892
10910
  exports.VeltCommentBubble = SnippylyCommentBubble;
10911
+ exports.VeltCommentBubbleAvatar = VeltCommentBubbleAvatar;
10912
+ exports.VeltCommentBubbleCommentsCount = VeltCommentBubbleCommentsCount;
10913
+ exports.VeltCommentBubbleUnreadIcon = VeltCommentBubbleUnreadIcon;
10893
10914
  exports.VeltCommentBubbleWireframe = VeltCommentBubbleWireframe;
10894
10915
  exports.VeltCommentComposer = VeltCommentComposer;
10895
10916
  exports.VeltCommentComposerWireframe = VeltCommentComposerWireframe;