@veltdev/react 2.0.16 → 2.0.17

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.
package/cjs/index.js CHANGED
@@ -140,7 +140,7 @@ var loadVelt = function (callback, version, staging, develop, proxyDomain) {
140
140
  }
141
141
  };
142
142
 
143
- var VELT_SDK_VERSION = '2.0.16';
143
+ var VELT_SDK_VERSION = '2.0.17';
144
144
  var VELT_SDK_INIT_EVENT = 'onVeltInit';
145
145
  var VELT_TAB_ID = 'veltTabId';
146
146
 
@@ -686,7 +686,7 @@ var VeltViewAnalytics = function (props) {
686
686
  };
687
687
 
688
688
  var VeltCommentThread = function (props) {
689
- var annotationId = props.annotationId, selectable = props.selectable, onCommentClick = props.onCommentClick;
689
+ var annotationId = props.annotationId, onCommentClick = props.onCommentClick;
690
690
  var ref = React.useRef();
691
691
  var onCommentClickRef = React.useRef(onCommentClick);
692
692
  React.useEffect(function () {
@@ -711,7 +711,7 @@ var VeltCommentThread = function (props) {
711
711
  }
712
712
  };
713
713
  }, []);
714
- return (React__default["default"].createElement("velt-comment-thread", { ref: ref, "annotation-id": annotationId, selectable: [true, false].includes(selectable) ? (selectable ? 'true' : 'false') : undefined }));
714
+ return (React__default["default"].createElement("velt-comment-thread", { ref: ref, "annotation-id": annotationId }));
715
715
  };
716
716
 
717
717
  var VeltNotificationsTool = function (props) {