@veltdev/react 1.0.160 → 1.0.162

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 = '1.0.178';
143
+ var VELT_SDK_VERSION = '1.0.180';
144
144
  var VELT_SDK_INIT_EVENT = 'onVeltInit';
145
145
  var VELT_TAB_ID = 'veltTabId';
146
146
 
@@ -1133,6 +1133,16 @@ var VeltInlineCommentsSection = function (props) {
1133
1133
  return (React__default["default"].createElement("velt-inline-comments-section", { "target-inline-comment-element-id": targetInlineCommentElementId, config: JSON.stringify(config), variant: variant, "dialog-variant": dialogVariant, "shadow-dom": [true, false].includes(shadowDom) ? (shadowDom ? 'true' : 'false') : undefined, "dark-mode": [true, false].includes(darkMode) ? (darkMode ? 'true' : 'false') : undefined }, children));
1134
1134
  };
1135
1135
 
1136
+ var VeltCommentPin = function (props) {
1137
+ var children = props.children, annotationId = props.annotationId;
1138
+ return (React__default["default"].createElement("velt-comment-pin", { "annotation-id": annotationId }, children));
1139
+ };
1140
+
1141
+ var VeltCanvasComment = function (props) {
1142
+ var children = props.children, canvasId = props.canvasId, position = props.position;
1143
+ return (React__default["default"].createElement("velt-canvas-comment", { "canvas-id": canvasId, position: JSON.stringify(position) }, children));
1144
+ };
1145
+
1136
1146
  var VeltWireframe = function (props) {
1137
1147
  var children = props.children;
1138
1148
  return (React__default["default"].createElement("velt-wireframe", { style: { display: 'none' } }, children));
@@ -3115,6 +3125,7 @@ exports.VeltArrows = SnippylyArrows;
3115
3125
  exports.VeltAutocomplete = VeltAutocomplete;
3116
3126
  exports.VeltAutocompleteChipTooltipWireframe = VeltAutocompleteChipTooltipWireframe;
3117
3127
  exports.VeltAutocompleteOptionWireframe = VeltAutocompleteOptionWireframe;
3128
+ exports.VeltCanvasComment = VeltCanvasComment;
3118
3129
  exports.VeltChartComment = VeltChartComment;
3119
3130
  exports.VeltCommentBubble = SnippylyCommentBubble;
3120
3131
  exports.VeltCommentBubbleWireframe = VeltCommentBubbleWireframe;
@@ -3125,6 +3136,7 @@ exports.VeltCommentDialogPriorityDropdownTriggerWireframe = VeltCommentDialogPri
3125
3136
  exports.VeltCommentDialogStatusDropdownContentWireframe = VeltCommentDialogStatusDropdownContentWireframe;
3126
3137
  exports.VeltCommentDialogStatusDropdownTriggerWireframe = VeltCommentDialogStatusDropdownTriggerWireframe;
3127
3138
  exports.VeltCommentDialogWireframe = VeltCommentDialogWireframe;
3139
+ exports.VeltCommentPin = VeltCommentPin;
3128
3140
  exports.VeltCommentPinWireframe = VeltCommentPinWireframe;
3129
3141
  exports.VeltCommentPlayerTimeline = VeltCommentPlayerTimeline;
3130
3142
  exports.VeltCommentThread = VeltCommentThread;