@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.
- package/cjs/index.js +7 -1
- package/cjs/index.js.map +1 -1
- package/cjs/types/components/VeltCommentDialogWireframe/VeltCommentDialogWireframe.d.ts +2 -0
- package/cjs/types/constants.d.ts +1 -1
- package/esm/index.js +7 -1
- package/esm/index.js.map +1 -1
- package/esm/types/components/VeltCommentDialogWireframe/VeltCommentDialogWireframe.d.ts +2 -0
- package/esm/types/constants.d.ts +1 -1
- package/index.d.ts +5 -0
- package/package.json +1 -1
|
@@ -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;
|
package/cjs/types/constants.d.ts
CHANGED
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.
|
|
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"]);
|