@veltdev/react 3.0.70 → 3.0.72
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 +3 -3
- package/cjs/index.js.map +1 -1
- package/cjs/types/components/VeltCommentsSidebarWireframe/VeltCommentsSidebarSearch/VeltCommentsSidebarSearch.d.ts +1 -0
- package/cjs/types/constants.d.ts +1 -1
- package/esm/index.js +3 -3
- package/esm/index.js.map +1 -1
- package/esm/types/components/VeltCommentsSidebarWireframe/VeltCommentsSidebarSearch/VeltCommentsSidebarSearch.d.ts +1 -0
- package/esm/types/constants.d.ts +1 -1
- package/index.d.ts +1 -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 = '3.0.
|
|
143
|
+
var VELT_SDK_VERSION = '3.0.72';
|
|
144
144
|
var VELT_SDK_INIT_EVENT = 'onVeltInit';
|
|
145
145
|
var VELT_TAB_ID = 'veltTabId';
|
|
146
146
|
|
|
@@ -2565,8 +2565,8 @@ var VeltCommentsSidebarPanel = function (props) {
|
|
|
2565
2565
|
};
|
|
2566
2566
|
|
|
2567
2567
|
var VeltCommentsSidebarSearch = function (props) {
|
|
2568
|
-
var children = props.children, remainingProps = __rest(props, ["children"]);
|
|
2569
|
-
return (React__default["default"].createElement("velt-comments-sidebar-search-wireframe", __assign({}, remainingProps), children));
|
|
2568
|
+
var children = props.children, placeholder = props.placeholder, remainingProps = __rest(props, ["children", "placeholder"]);
|
|
2569
|
+
return (React__default["default"].createElement("velt-comments-sidebar-search-wireframe", __assign({}, remainingProps, { placeholder: placeholder }), children));
|
|
2570
2570
|
};
|
|
2571
2571
|
|
|
2572
2572
|
var VeltCommentsSidebarSkeleton = function (props) {
|