@veltdev/react 2.0.23 → 2.0.24
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/VeltCommentDialogDeleteButton/VeltCommentDialogDeleteButton.d.ts +6 -0
- package/cjs/types/components/VeltCommentDialogWireframe/VeltCommentDialogDeleteButton/index.d.ts +1 -0
- 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/VeltCommentDialogDeleteButton/VeltCommentDialogDeleteButton.d.ts +6 -0
- package/esm/types/components/VeltCommentDialogWireframe/VeltCommentDialogDeleteButton/index.d.ts +1 -0
- 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
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.
|
|
143
|
+
var VELT_SDK_VERSION = '2.0.24';
|
|
144
144
|
var VELT_SDK_INIT_EVENT = 'onVeltInit';
|
|
145
145
|
var VELT_TAB_ID = 'veltTabId';
|
|
146
146
|
|
|
@@ -1995,6 +1995,11 @@ var VeltCommentDialogCustomAnnotationDropdown = function (props) {
|
|
|
1995
1995
|
VeltCommentDialogCustomAnnotationDropdown.Content = VeltCommentDialogCustomAnnotationDropdownContent;
|
|
1996
1996
|
VeltCommentDialogCustomAnnotationDropdown.Trigger = VeltCommentDialogCustomAnnotationDropdownTrigger;
|
|
1997
1997
|
|
|
1998
|
+
var VeltCommentDialogDeleteButton = function (props) {
|
|
1999
|
+
var children = props.children;
|
|
2000
|
+
return (React__default["default"].createElement("velt-comment-dialog-delete-button-wireframe", null, children));
|
|
2001
|
+
};
|
|
2002
|
+
|
|
1998
2003
|
var VeltCommentDialogWireframe = function (props) {
|
|
1999
2004
|
var children = props.children, remainingProp = __rest(props, ["children"]);
|
|
2000
2005
|
return (React__default["default"].createElement("velt-comment-dialog-wireframe", __assign({}, remainingProp), children));
|
|
@@ -2024,6 +2029,7 @@ VeltCommentDialogWireframe.Threads = VeltCommentDialogThreads;
|
|
|
2024
2029
|
VeltCommentDialogWireframe.ToggleReply = VeltCommentDialogToggleReply;
|
|
2025
2030
|
VeltCommentDialogWireframe.Upgrade = VeltCommentDialogUpgrade;
|
|
2026
2031
|
VeltCommentDialogWireframe.CustomAnnotationDropdown = VeltCommentDialogCustomAnnotationDropdown;
|
|
2032
|
+
VeltCommentDialogWireframe.DeleteButton = VeltCommentDialogDeleteButton;
|
|
2027
2033
|
|
|
2028
2034
|
var VeltCommentsSidebarCloseButton = function (props) {
|
|
2029
2035
|
props.children; var remainingProps = __rest(props, ["children"]);
|