@veltdev/react 4.7.6 → 4.7.8
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 +10 -3
- package/cjs/index.js.map +1 -1
- package/cjs/types/components/VeltCommentDialogWireframe/VeltCommentDialogThreadCard/VeltCommentDialogThreadCard.d.ts +2 -0
- package/cjs/types/components/VeltCommentDialogWireframe/VeltCommentDialogThreadCard/VeltCommentDialogThreadCardAssignButton/VeltCommentDialogThreadCardAssignButton.d.ts +6 -0
- package/cjs/types/components/VeltCommentDialogWireframe/VeltCommentDialogThreadCard/VeltCommentDialogThreadCardAssignButton/index.d.ts +1 -0
- package/cjs/types/constants.d.ts +1 -1
- package/esm/index.js +10 -3
- package/esm/index.js.map +1 -1
- package/esm/types/components/VeltCommentDialogWireframe/VeltCommentDialogThreadCard/VeltCommentDialogThreadCard.d.ts +2 -0
- package/esm/types/components/VeltCommentDialogWireframe/VeltCommentDialogThreadCard/VeltCommentDialogThreadCardAssignButton/VeltCommentDialogThreadCardAssignButton.d.ts +6 -0
- package/esm/types/components/VeltCommentDialogWireframe/VeltCommentDialogThreadCard/VeltCommentDialogThreadCardAssignButton/index.d.ts +1 -0
- package/esm/types/constants.d.ts +1 -1
- package/index.d.ts +4 -0
- package/package.json +2 -2
package/cjs/index.js
CHANGED
|
@@ -212,13 +212,13 @@ var loadVelt = function (callback, version, staging, develop, proxyDomain, integ
|
|
|
212
212
|
};
|
|
213
213
|
};
|
|
214
214
|
|
|
215
|
-
var VELT_SDK_VERSION = '4.7.
|
|
215
|
+
var VELT_SDK_VERSION = '4.7.8';
|
|
216
216
|
var VELT_SDK_INIT_EVENT = 'onVeltInit';
|
|
217
217
|
var VELT_TAB_ID = 'veltTabId';
|
|
218
218
|
// integrity map for the Velt SDK
|
|
219
219
|
// Note: generate integrity hashes with: https://www.srihash.org/
|
|
220
220
|
var INTEGRITY_MAP = {
|
|
221
|
-
'4.7.
|
|
221
|
+
'4.7.8': 'sha384-FEqQMemqzDZDXnFX7Agv2pVMRTIkRPfPSBgSMckfI/TxwIOqlgLGCbvD655jSs5T',
|
|
222
222
|
};
|
|
223
223
|
|
|
224
224
|
var validProps = ['veltIf', 'veltClass', 'className', 'variant'];
|
|
@@ -2457,9 +2457,15 @@ var VeltCommentDialogThreadCardReactionTool = function (props) {
|
|
|
2457
2457
|
};
|
|
2458
2458
|
|
|
2459
2459
|
var VeltCommentDialogThreadCardReactionPin = function (props) {
|
|
2460
|
+
var children = props.children, reactionId = props.reactionId, remainingProps = __rest(props, ["children", "reactionId"]);
|
|
2461
|
+
var transformedProps = transformWireframeProps(remainingProps);
|
|
2462
|
+
return (React__default["default"].createElement("velt-comment-dialog-thread-card-reaction-pin-wireframe", __assign({}, transformedProps, { "reaction-id": reactionId }), children));
|
|
2463
|
+
};
|
|
2464
|
+
|
|
2465
|
+
var VeltCommentDialogThreadCardAssignButton = function (props) {
|
|
2460
2466
|
var children = props.children, remainingProps = __rest(props, ["children"]);
|
|
2461
2467
|
var transformedProps = transformWireframeProps(remainingProps);
|
|
2462
|
-
return (React__default["default"].createElement("velt-comment-dialog-thread-card-
|
|
2468
|
+
return (React__default["default"].createElement("velt-comment-dialog-thread-card-assign-button-wireframe", __assign({}, transformedProps), children));
|
|
2463
2469
|
};
|
|
2464
2470
|
|
|
2465
2471
|
var VeltCommentDialogThreadCardReactions = function (props) {
|
|
@@ -2576,6 +2582,7 @@ VeltCommentDialogThreadCard.Options = VeltCommentDialogThreadCardOptions;
|
|
|
2576
2582
|
VeltCommentDialogThreadCard.Reactions = VeltCommentDialogThreadCardReactions;
|
|
2577
2583
|
VeltCommentDialogThreadCard.ReactionTool = VeltCommentDialogThreadCardReactionTool;
|
|
2578
2584
|
VeltCommentDialogThreadCard.ReactionPin = VeltCommentDialogThreadCardReactionPin;
|
|
2585
|
+
VeltCommentDialogThreadCard.AssignButton = VeltCommentDialogThreadCardAssignButton;
|
|
2579
2586
|
VeltCommentDialogThreadCard.Recordings = VeltCommentDialogThreadCardRecordings;
|
|
2580
2587
|
VeltCommentDialogThreadCard.Time = VeltCommentDialogThreadCardTime;
|
|
2581
2588
|
VeltCommentDialogThreadCard.Unread = VeltCommentDialogThreadCardUnread;
|