@veltdev/react 3.0.43 → 3.0.44

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.
@@ -27,6 +27,7 @@ import { IVeltCommentDialogCustomAnnotationDropdown } from "./VeltCommentDialogC
27
27
  import { IVeltCommentDialogDeleteButtonProps } from "./VeltCommentDialogDeleteButton/VeltCommentDialogDeleteButton";
28
28
  import { IVeltCommentDialogCloseButtonProps } from "./VeltCommentDialogCloseButton/VeltCommentDialogCloseButton";
29
29
  import { IVeltCommentDialogUnresolveButtonProps } from "./VeltCommentDialogUnresolveButton/VeltCommentDialogUnresolveButton";
30
+ import { IVeltCommentDialogNavigationButtonProps } from "./VeltCommentDialogNavigationButton/VeltCommentDialogNavigationButton";
30
31
  export interface IVeltCommentDialogWireframeProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> {
31
32
  variant?: string;
32
33
  }
@@ -59,5 +60,6 @@ declare const VeltCommentDialogWireframe: React.FC<IVeltCommentDialogWireframePr
59
60
  CustomAnnotationDropdown: IVeltCommentDialogCustomAnnotationDropdown;
60
61
  DeleteButton: React.FC<IVeltCommentDialogDeleteButtonProps>;
61
62
  CloseButton: React.FC<IVeltCommentDialogCloseButtonProps>;
63
+ NavigationButton: React.FC<IVeltCommentDialogNavigationButtonProps>;
62
64
  };
63
65
  export default VeltCommentDialogWireframe;
@@ -1,3 +1,3 @@
1
- export declare const VELT_SDK_VERSION = "3.0.43";
1
+ export declare const VELT_SDK_VERSION = "3.0.44";
2
2
  export declare const VELT_SDK_INIT_EVENT = "onVeltInit";
3
3
  export declare const VELT_TAB_ID = "veltTabId";
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 = '3.0.43';
135
+ var VELT_SDK_VERSION = '3.0.44';
136
136
  var VELT_SDK_INIT_EVENT = 'onVeltInit';
137
137
  var VELT_TAB_ID = 'veltTabId';
138
138
 
@@ -2155,6 +2155,11 @@ var VeltCommentDialogUnresolveButton = function (props) {
2155
2155
  return (React.createElement("velt-comment-dialog-unresolve-button-wireframe", __assign({}, remainingProp), children));
2156
2156
  };
2157
2157
 
2158
+ var VeltCommentDialogNavigationButton = function (props) {
2159
+ var children = props.children, remainingProp = __rest(props, ["children"]);
2160
+ return (React.createElement("velt-comment-dialog-navigation-button-wireframe", __assign({}, remainingProp), children));
2161
+ };
2162
+
2158
2163
  var VeltCommentDialogWireframe = function (props) {
2159
2164
  var children = props.children, remainingProp = __rest(props, ["children"]);
2160
2165
  return (React.createElement("velt-comment-dialog-wireframe", __assign({}, remainingProp), children));
@@ -2187,6 +2192,7 @@ VeltCommentDialogWireframe.Upgrade = VeltCommentDialogUpgrade;
2187
2192
  VeltCommentDialogWireframe.CustomAnnotationDropdown = VeltCommentDialogCustomAnnotationDropdown;
2188
2193
  VeltCommentDialogWireframe.DeleteButton = VeltCommentDialogDeleteButton;
2189
2194
  VeltCommentDialogWireframe.CloseButton = VeltCommentDialogCloseButton;
2195
+ VeltCommentDialogWireframe.NavigationButton = VeltCommentDialogNavigationButton;
2190
2196
 
2191
2197
  var VeltCommentsSidebarCloseButton = function (props) {
2192
2198
  var children = props.children, remainingProps = __rest(props, ["children"]);