@veltdev/react 3.0.12 → 3.0.13
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 +7 -1
- package/cjs/index.js.map +1 -1
- package/cjs/types/components/VeltCommentDialogWireframe/VeltCommentDialogThreadCard/VeltCommentDialogThreadCard.d.ts +2 -0
- package/cjs/types/components/VeltCommentDialogWireframe/VeltCommentDialogThreadCard/VeltCommentDialogThreadCardDraft/VeltCommentDialogThreadCardDraft.d.ts +6 -0
- package/cjs/types/components/VeltCommentDialogWireframe/VeltCommentDialogThreadCard/VeltCommentDialogThreadCardDraft/index.d.ts +1 -0
- package/cjs/types/constants.d.ts +1 -1
- package/esm/index.js +7 -1
- package/esm/index.js.map +1 -1
- package/esm/types/components/VeltCommentDialogWireframe/VeltCommentDialogThreadCard/VeltCommentDialogThreadCard.d.ts +2 -0
- package/esm/types/components/VeltCommentDialogWireframe/VeltCommentDialogThreadCard/VeltCommentDialogThreadCardDraft/VeltCommentDialogThreadCardDraft.d.ts +6 -0
- package/esm/types/components/VeltCommentDialogWireframe/VeltCommentDialogThreadCard/VeltCommentDialogThreadCardDraft/index.d.ts +1 -0
- package/esm/types/constants.d.ts +1 -1
- package/index.d.ts +5 -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.13';
|
|
144
144
|
var VELT_SDK_INIT_EVENT = 'onVeltInit';
|
|
145
145
|
var VELT_TAB_ID = 'veltTabId';
|
|
146
146
|
|
|
@@ -1970,6 +1970,11 @@ var VeltCommentDialogThreadCardDeviceType = function (props) {
|
|
|
1970
1970
|
return (React__default["default"].createElement("velt-comment-dialog-thread-card-device-type-wireframe", __assign({}, remainingProp), children));
|
|
1971
1971
|
};
|
|
1972
1972
|
|
|
1973
|
+
var VeltCommentDialogThreadCardDraft = function (props) {
|
|
1974
|
+
var children = props.children, remainingProp = __rest(props, ["children"]);
|
|
1975
|
+
return (React__default["default"].createElement("velt-comment-dialog-thread-card-draft-wireframe", __assign({}, remainingProp), children));
|
|
1976
|
+
};
|
|
1977
|
+
|
|
1973
1978
|
var VeltCommentDialogThreadCardMessage = function (props) {
|
|
1974
1979
|
var children = props.children, remainingProp = __rest(props, ["children"]);
|
|
1975
1980
|
return (React__default["default"].createElement("velt-comment-dialog-thread-card-message-wireframe", __assign({}, remainingProp), children));
|
|
@@ -2029,6 +2034,7 @@ VeltCommentDialogThreadCard.ReactionTool = VeltCommentDialogThreadCardReactionTo
|
|
|
2029
2034
|
VeltCommentDialogThreadCard.Recordings = VeltCommentDialogThreadCardRecordings;
|
|
2030
2035
|
VeltCommentDialogThreadCard.Time = VeltCommentDialogThreadCardTime;
|
|
2031
2036
|
VeltCommentDialogThreadCard.Unread = VeltCommentDialogThreadCardUnread;
|
|
2037
|
+
VeltCommentDialogThreadCard.Draft = VeltCommentDialogThreadCardDraft;
|
|
2032
2038
|
|
|
2033
2039
|
var VeltCommentDialogThreads = function (props) {
|
|
2034
2040
|
var children = props.children, remainingProp = __rest(props, ["children"]);
|