@veltdev/react 1.0.116 → 1.0.117
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 +6 -0
- package/cjs/index.js.map +1 -1
- package/cjs/types/components/VeltCommentBubble/VeltCommentBubbleWireframe.d.ts +12 -0
- package/cjs/types/components/VeltCommentBubble/index.d.ts +1 -0
- package/cjs/types/components/VeltCommentDialogWireframe/VeltCommentDialogAssigneeBanner/VeltCommentDialogAssigneeBanner.d.ts +3 -2
- package/cjs/types/components/VeltCommentDialogWireframe/VeltCommentDialogSuggestionAction/VeltCommentDialogSuggestionAction.d.ts +3 -2
- package/cjs/types/components/VeltCommentDialogWireframe/VeltCommentDialogWireframe.d.ts +2 -0
- package/esm/index.js +6 -0
- package/esm/index.js.map +1 -1
- package/esm/types/components/VeltCommentBubble/VeltCommentBubbleWireframe.d.ts +12 -0
- package/esm/types/components/VeltCommentBubble/index.d.ts +1 -0
- package/esm/types/components/VeltCommentDialogWireframe/VeltCommentDialogAssigneeBanner/VeltCommentDialogAssigneeBanner.d.ts +3 -2
- package/esm/types/components/VeltCommentDialogWireframe/VeltCommentDialogSuggestionAction/VeltCommentDialogSuggestionAction.d.ts +3 -2
- package/esm/types/components/VeltCommentDialogWireframe/VeltCommentDialogWireframe.d.ts +2 -0
- package/index.d.ts +4 -0
- package/package.json +1 -1
package/cjs/index.js
CHANGED
|
@@ -1249,6 +1249,11 @@ var VeltCommentDialogSuggestionAction = function (props) {
|
|
|
1249
1249
|
VeltCommentDialogSuggestionAction.Accept = VeltCommentDialogSuggestionActionAccept;
|
|
1250
1250
|
VeltCommentDialogSuggestionAction.Reject = VeltCommentDialogSuggestionActionReject;
|
|
1251
1251
|
|
|
1252
|
+
var VeltCommentDialogPrivateBadge = function (props) {
|
|
1253
|
+
var children = props.children;
|
|
1254
|
+
return (React__default["default"].createElement("velt-comment-dialog-private-badge-wireframe", null, children));
|
|
1255
|
+
};
|
|
1256
|
+
|
|
1252
1257
|
var VeltCommentDialogWireframe = function (props) {
|
|
1253
1258
|
var children = props.children, remainingProp = __rest(props, ["children"]);
|
|
1254
1259
|
return (React__default["default"].createElement("velt-comment-dialog-wireframe", __assign({}, remainingProp), children));
|
|
@@ -1277,6 +1282,7 @@ VeltCommentDialogWireframe.ThreadCard = VeltCommentDialogThreadCard;
|
|
|
1277
1282
|
VeltCommentDialogWireframe.Threads = VeltCommentDialogThreads;
|
|
1278
1283
|
VeltCommentDialogWireframe.ToggleReply = VeltCommentDialogToggleReply;
|
|
1279
1284
|
VeltCommentDialogWireframe.Upgrade = VeltCommentDialogUpgrade;
|
|
1285
|
+
VeltCommentDialogWireframe.PrivateBadge = VeltCommentDialogPrivateBadge;
|
|
1280
1286
|
|
|
1281
1287
|
var VeltCommentsSidebarCloseButton = function (props) {
|
|
1282
1288
|
var children = props.children;
|