@veltdev/react 3.0.11 → 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.
@@ -2,6 +2,7 @@ import React from "react";
2
2
  import { IVeltCommentDialogThreadCardAttachments } from "./VeltCommentDialogThreadCardAttachments/VeltCommentDialogThreadCardAttachments";
3
3
  import { IVeltCommentDialogThreadCardAvatarProps } from "./VeltCommentDialogThreadCardAvatar/VeltCommentDialogThreadCardAvatar";
4
4
  import { IVeltCommentDialogThreadCardDeviceTypeProps } from "./VeltCommentDialogThreadCardDeviceType/VeltCommentDialogThreadCardDeviceType";
5
+ import { IVeltCommentDialogThreadCardDraftProps } from "./VeltCommentDialogThreadCardDraft/VeltCommentDialogThreadCardDraft";
5
6
  import { IVeltCommentDialogThreadCardMessageProps } from "./VeltCommentDialogThreadCardMessage/VeltCommentDialogThreadCardMessage";
6
7
  import { IVeltCommentDialogThreadCardNameProps } from "./VeltCommentDialogThreadCardName/VeltCommentDialogThreadCardName";
7
8
  import { IVeltCommentDialogThreadCardOptions } from "./VeltCommentDialogThreadCardOptions/VeltCommentDialogThreadCardOptions";
@@ -25,6 +26,7 @@ export interface IVeltCommentDialogThreadCard extends React.FC<IVeltCommentDialo
25
26
  Recordings: React.FC<IVeltCommentDialogThreadCardRecordingsProps>;
26
27
  Time: React.FC<IVeltCommentDialogThreadCardTimeProps>;
27
28
  Unread: React.FC<IVeltCommentDialogThreadCardUnreadProps>;
29
+ Draft: React.FC<IVeltCommentDialogThreadCardDraftProps>;
28
30
  }
29
31
  declare const VeltCommentDialogThreadCard: IVeltCommentDialogThreadCard;
30
32
  export default VeltCommentDialogThreadCard;
@@ -0,0 +1,6 @@
1
+ import React from 'react';
2
+ export interface IVeltCommentDialogThreadCardDraftProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> {
3
+ variant?: string;
4
+ }
5
+ declare const VeltCommentDialogThreadCardDraft: React.FC<IVeltCommentDialogThreadCardDraftProps>;
6
+ export default VeltCommentDialogThreadCardDraft;
@@ -0,0 +1 @@
1
+ export { default } from "./VeltCommentDialogThreadCardDraft";
@@ -1,3 +1,3 @@
1
- export declare const VELT_SDK_VERSION = "3.0.11";
1
+ export declare const VELT_SDK_VERSION = "3.0.13";
2
2
  export declare const VELT_SDK_INIT_EVENT = "onVeltInit";
3
3
  export declare const VELT_TAB_ID = "veltTabId";
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.11';
135
+ var VELT_SDK_VERSION = '3.0.13';
136
136
  var VELT_SDK_INIT_EVENT = 'onVeltInit';
137
137
  var VELT_TAB_ID = 'veltTabId';
138
138
 
@@ -1962,6 +1962,11 @@ var VeltCommentDialogThreadCardDeviceType = function (props) {
1962
1962
  return (React.createElement("velt-comment-dialog-thread-card-device-type-wireframe", __assign({}, remainingProp), children));
1963
1963
  };
1964
1964
 
1965
+ var VeltCommentDialogThreadCardDraft = function (props) {
1966
+ var children = props.children, remainingProp = __rest(props, ["children"]);
1967
+ return (React.createElement("velt-comment-dialog-thread-card-draft-wireframe", __assign({}, remainingProp), children));
1968
+ };
1969
+
1965
1970
  var VeltCommentDialogThreadCardMessage = function (props) {
1966
1971
  var children = props.children, remainingProp = __rest(props, ["children"]);
1967
1972
  return (React.createElement("velt-comment-dialog-thread-card-message-wireframe", __assign({}, remainingProp), children));
@@ -2021,6 +2026,7 @@ VeltCommentDialogThreadCard.ReactionTool = VeltCommentDialogThreadCardReactionTo
2021
2026
  VeltCommentDialogThreadCard.Recordings = VeltCommentDialogThreadCardRecordings;
2022
2027
  VeltCommentDialogThreadCard.Time = VeltCommentDialogThreadCardTime;
2023
2028
  VeltCommentDialogThreadCard.Unread = VeltCommentDialogThreadCardUnread;
2029
+ VeltCommentDialogThreadCard.Draft = VeltCommentDialogThreadCardDraft;
2024
2030
 
2025
2031
  var VeltCommentDialogThreads = function (props) {
2026
2032
  var children = props.children, remainingProp = __rest(props, ["children"]);