@veltdev/react 2.1.2 → 3.0.0
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/VeltCommentDialogCloseButton/VeltCommentDialogCloseButton.d.ts +6 -0
- package/cjs/types/components/VeltCommentDialogWireframe/VeltCommentDialogCloseButton/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/VeltCommentDialogCloseButton/VeltCommentDialogCloseButton.d.ts +6 -0
- package/esm/types/components/VeltCommentDialogWireframe/VeltCommentDialogCloseButton/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 = '
|
|
143
|
+
var VELT_SDK_VERSION = '3.0.0';
|
|
144
144
|
var VELT_SDK_INIT_EVENT = 'onVeltInit';
|
|
145
145
|
var VELT_TAB_ID = 'veltTabId';
|
|
146
146
|
|
|
@@ -2012,6 +2012,11 @@ var VeltCommentDialogDeleteButton = function (props) {
|
|
|
2012
2012
|
return (React__default["default"].createElement("velt-comment-dialog-delete-button-wireframe", null, children));
|
|
2013
2013
|
};
|
|
2014
2014
|
|
|
2015
|
+
var VeltCommentDialogCloseButton = function (props) {
|
|
2016
|
+
var children = props.children, remainingProp = __rest(props, ["children"]);
|
|
2017
|
+
return (React__default["default"].createElement("velt-comment-dialog-close-button-wireframe", __assign({}, remainingProp), children));
|
|
2018
|
+
};
|
|
2019
|
+
|
|
2015
2020
|
var VeltCommentDialogWireframe = function (props) {
|
|
2016
2021
|
var children = props.children, remainingProp = __rest(props, ["children"]);
|
|
2017
2022
|
return (React__default["default"].createElement("velt-comment-dialog-wireframe", __assign({}, remainingProp), children));
|
|
@@ -2042,6 +2047,7 @@ VeltCommentDialogWireframe.ToggleReply = VeltCommentDialogToggleReply;
|
|
|
2042
2047
|
VeltCommentDialogWireframe.Upgrade = VeltCommentDialogUpgrade;
|
|
2043
2048
|
VeltCommentDialogWireframe.CustomAnnotationDropdown = VeltCommentDialogCustomAnnotationDropdown;
|
|
2044
2049
|
VeltCommentDialogWireframe.DeleteButton = VeltCommentDialogDeleteButton;
|
|
2050
|
+
VeltCommentDialogWireframe.CloseButton = VeltCommentDialogCloseButton;
|
|
2045
2051
|
|
|
2046
2052
|
var VeltCommentsSidebarCloseButton = function (props) {
|
|
2047
2053
|
props.children; var remainingProps = __rest(props, ["children"]);
|