@veltdev/react 4.7.6 → 4.7.7
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 +4 -4
- package/cjs/index.js.map +1 -1
- package/cjs/types/constants.d.ts +1 -1
- package/esm/index.js +4 -4
- package/esm/index.js.map +1 -1
- package/esm/types/constants.d.ts +1 -1
- package/package.json +2 -2
package/cjs/types/constants.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
-
export declare const VELT_SDK_VERSION = "4.7.
|
|
2
|
+
export declare const VELT_SDK_VERSION = "4.7.7";
|
|
3
3
|
export declare const VELT_SDK_INIT_EVENT = "onVeltInit";
|
|
4
4
|
export declare const VELT_TAB_ID = "veltTabId";
|
|
5
5
|
export declare const INTEGRITY_MAP: Record<string, string>;
|
package/esm/index.js
CHANGED
|
@@ -204,13 +204,13 @@ var loadVelt = function (callback, version, staging, develop, proxyDomain, integ
|
|
|
204
204
|
};
|
|
205
205
|
};
|
|
206
206
|
|
|
207
|
-
var VELT_SDK_VERSION = '4.7.
|
|
207
|
+
var VELT_SDK_VERSION = '4.7.7';
|
|
208
208
|
var VELT_SDK_INIT_EVENT = 'onVeltInit';
|
|
209
209
|
var VELT_TAB_ID = 'veltTabId';
|
|
210
210
|
// integrity map for the Velt SDK
|
|
211
211
|
// Note: generate integrity hashes with: https://www.srihash.org/
|
|
212
212
|
var INTEGRITY_MAP = {
|
|
213
|
-
'4.7.
|
|
213
|
+
'4.7.7': 'sha384-jfd6o96u8wr5bFCovzRlZ2R3XOMsAwYx0q3xBCvCRYGM/2S6zUDqxjBXPnRxNw6O',
|
|
214
214
|
};
|
|
215
215
|
|
|
216
216
|
var validProps = ['veltIf', 'veltClass', 'className', 'variant'];
|
|
@@ -2449,9 +2449,9 @@ var VeltCommentDialogThreadCardReactionTool = function (props) {
|
|
|
2449
2449
|
};
|
|
2450
2450
|
|
|
2451
2451
|
var VeltCommentDialogThreadCardReactionPin = function (props) {
|
|
2452
|
-
var children = props.children, remainingProps = __rest(props, ["children"]);
|
|
2452
|
+
var children = props.children, reactionId = props.reactionId, remainingProps = __rest(props, ["children", "reactionId"]);
|
|
2453
2453
|
var transformedProps = transformWireframeProps(remainingProps);
|
|
2454
|
-
return (React.createElement("velt-comment-dialog-thread-card-reaction-pin-wireframe", __assign({}, transformedProps), children));
|
|
2454
|
+
return (React.createElement("velt-comment-dialog-thread-card-reaction-pin-wireframe", __assign({}, transformedProps, { "reaction-id": reactionId }), children));
|
|
2455
2455
|
};
|
|
2456
2456
|
|
|
2457
2457
|
var VeltCommentDialogThreadCardReactions = function (props) {
|