@veltdev/react 3.0.70 → 3.0.71
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
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
export interface IVeltCommentsSidebarSearchProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> {
|
|
3
3
|
variant?: string;
|
|
4
|
+
placeholder?: string;
|
|
4
5
|
}
|
|
5
6
|
declare const VeltCommentsSidebarSearch: React.FC<IVeltCommentsSidebarSearchProps>;
|
|
6
7
|
export default VeltCommentsSidebarSearch;
|
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.71';
|
|
136
136
|
var VELT_SDK_INIT_EVENT = 'onVeltInit';
|
|
137
137
|
var VELT_TAB_ID = 'veltTabId';
|
|
138
138
|
|
|
@@ -2557,8 +2557,8 @@ var VeltCommentsSidebarPanel = function (props) {
|
|
|
2557
2557
|
};
|
|
2558
2558
|
|
|
2559
2559
|
var VeltCommentsSidebarSearch = function (props) {
|
|
2560
|
-
var children = props.children, remainingProps = __rest(props, ["children"]);
|
|
2561
|
-
return (React.createElement("velt-comments-sidebar-search-wireframe", __assign({}, remainingProps), children));
|
|
2560
|
+
var children = props.children, placeholder = props.placeholder, remainingProps = __rest(props, ["children", "placeholder"]);
|
|
2561
|
+
return (React.createElement("velt-comments-sidebar-search-wireframe", __assign({}, remainingProps, { placeholder: placeholder }), children));
|
|
2562
2562
|
};
|
|
2563
2563
|
|
|
2564
2564
|
var VeltCommentsSidebarSkeleton = function (props) {
|