@veltdev/react 1.0.144 → 1.0.145

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.
Files changed (30) hide show
  1. package/cjs/index.js +10 -10
  2. package/cjs/index.js.map +1 -1
  3. package/cjs/types/components/VeltCommentDialogWireframe/VeltCommentDialogComposer/VeltCommentDialogComposer.d.ts +2 -0
  4. package/cjs/types/components/VeltCommentDialogWireframe/VeltCommentDialogComposer/VeltCommentDialogComposerPrivateBadge/VeltCommentDialogComposerPrivateBadge.d.ts +6 -0
  5. package/cjs/types/components/VeltCommentDialogWireframe/VeltCommentDialogComposer/VeltCommentDialogComposerPrivateBadge/index.d.ts +1 -0
  6. package/cjs/types/components/VeltCommentDialogWireframe/VeltCommentDialogWireframe.d.ts +0 -2
  7. package/cjs/types/components/VeltCommentsSidebarWireframe/VeltCommentsSidebarList/VeltCommentsSidebarListItem/VeltCommentsSidebarListItem.d.ts +2 -2
  8. package/cjs/types/components/VeltCommentsSidebarWireframe/VeltCommentsSidebarList/VeltCommentsSidebarListItem/VeltCommentsSidebarListItemDialogContainer/VeltCommentsSidebarListItemDialogContainer.d.ts +6 -0
  9. package/cjs/types/components/VeltCommentsSidebarWireframe/VeltCommentsSidebarList/VeltCommentsSidebarListItem/VeltCommentsSidebarListItemDialogContainer/index.d.ts +1 -0
  10. package/cjs/types/constants.d.ts +1 -1
  11. package/esm/index.js +10 -10
  12. package/esm/index.js.map +1 -1
  13. package/esm/types/components/VeltCommentDialogWireframe/VeltCommentDialogComposer/VeltCommentDialogComposer.d.ts +2 -0
  14. package/esm/types/components/VeltCommentDialogWireframe/VeltCommentDialogComposer/VeltCommentDialogComposerPrivateBadge/VeltCommentDialogComposerPrivateBadge.d.ts +6 -0
  15. package/esm/types/components/VeltCommentDialogWireframe/VeltCommentDialogComposer/VeltCommentDialogComposerPrivateBadge/index.d.ts +1 -0
  16. package/esm/types/components/VeltCommentDialogWireframe/VeltCommentDialogWireframe.d.ts +0 -2
  17. package/esm/types/components/VeltCommentsSidebarWireframe/VeltCommentsSidebarList/VeltCommentsSidebarListItem/VeltCommentsSidebarListItem.d.ts +2 -2
  18. package/esm/types/components/VeltCommentsSidebarWireframe/VeltCommentsSidebarList/VeltCommentsSidebarListItem/VeltCommentsSidebarListItemDialogContainer/VeltCommentsSidebarListItemDialogContainer.d.ts +6 -0
  19. package/esm/types/components/VeltCommentsSidebarWireframe/VeltCommentsSidebarList/VeltCommentsSidebarListItem/VeltCommentsSidebarListItemDialogContainer/index.d.ts +1 -0
  20. package/esm/types/constants.d.ts +1 -1
  21. package/index.d.ts +7 -7
  22. package/package.json +1 -1
  23. package/cjs/types/components/VeltCommentDialogWireframe/VeltCommentDialogPrivateBadge/VeltCommentDialogPrivateBadge.d.ts +0 -6
  24. package/cjs/types/components/VeltCommentDialogWireframe/VeltCommentDialogPrivateBadge/index.d.ts +0 -1
  25. package/cjs/types/components/VeltCommentsSidebarWireframe/VeltCommentsSidebarList/VeltCommentsSidebarListItem/VeltCommentsSidebarListItemAnnotation/VeltCommentsSidebarListItemAnnotation.d.ts +0 -6
  26. package/cjs/types/components/VeltCommentsSidebarWireframe/VeltCommentsSidebarList/VeltCommentsSidebarListItem/VeltCommentsSidebarListItemAnnotation/index.d.ts +0 -1
  27. package/esm/types/components/VeltCommentDialogWireframe/VeltCommentDialogPrivateBadge/VeltCommentDialogPrivateBadge.d.ts +0 -6
  28. package/esm/types/components/VeltCommentDialogWireframe/VeltCommentDialogPrivateBadge/index.d.ts +0 -1
  29. package/esm/types/components/VeltCommentsSidebarWireframe/VeltCommentsSidebarList/VeltCommentsSidebarListItem/VeltCommentsSidebarListItemAnnotation/VeltCommentsSidebarListItemAnnotation.d.ts +0 -6
  30. package/esm/types/components/VeltCommentsSidebarWireframe/VeltCommentsSidebarList/VeltCommentsSidebarListItem/VeltCommentsSidebarListItemAnnotation/index.d.ts +0 -1
@@ -4,6 +4,7 @@ import { IVeltCommentDialogComposerAssignUserProps } from "./VeltCommentDialogCo
4
4
  import { IVeltCommentDialogComposerAttachments } from "./VeltCommentDialogComposerAttachments/VeltCommentDialogComposerAttachments";
5
5
  import { IVeltCommentDialogComposerInputProps } from "./VeltCommentDialogComposerInput/VeltCommentDialogComposerInput";
6
6
  import { IVeltCommentDialogComposerRecordingsProps } from "./VeltCommentDialogComposerRecordings/VeltCommentDialogComposerRecordings";
7
+ import { IVeltCommentDialogComposerPrivateBadgeProps } from "./VeltCommentDialogComposerPrivateBadge/VeltCommentDialogComposerPrivateBadge";
7
8
  export interface IVeltCommentDialogComposerProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> {
8
9
  variant?: string;
9
10
  }
@@ -13,6 +14,7 @@ export interface IVeltCommentDialogComposer extends React.FC<IVeltCommentDialogC
13
14
  Attachments: IVeltCommentDialogComposerAttachments;
14
15
  Input: React.FC<IVeltCommentDialogComposerInputProps>;
15
16
  Recordings: React.FC<IVeltCommentDialogComposerRecordingsProps>;
17
+ PrivateBadge: React.FC<IVeltCommentDialogComposerPrivateBadgeProps>;
16
18
  }
17
19
  declare const VeltCommentDialogComposer: IVeltCommentDialogComposer;
18
20
  export default VeltCommentDialogComposer;
@@ -0,0 +1,6 @@
1
+ import React from 'react';
2
+ export interface IVeltCommentDialogComposerPrivateBadgeProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> {
3
+ variant?: string;
4
+ }
5
+ declare const VeltCommentDialogComposerPrivateBadge: React.FC<IVeltCommentDialogComposerPrivateBadgeProps>;
6
+ export default VeltCommentDialogComposerPrivateBadge;
@@ -0,0 +1 @@
1
+ export { default } from "./VeltCommentDialogComposerPrivateBadge";
@@ -14,7 +14,6 @@ import { IVeltCommentDialogHeaderProps } from "./VeltCommentDialogHeader/VeltCom
14
14
  import { IVeltCommentDialogMoreReplyProps } from "./VeltCommentDialogMoreReply/VeltCommentDialogMoreReply";
15
15
  import { IVeltCommentDialogOptions } from "./VeltCommentDialogOptions/VeltCommentDialogOptions";
16
16
  import { IVeltCommentDialogPriority } from "./VeltCommentDialogPriority/VeltCommentDialogPriority";
17
- import { IVeltCommentDialogPrivateBadgeProps } from "./VeltCommentDialogPrivateBadge/VeltCommentDialogPrivateBadge";
18
17
  import { IVeltCommentDialogPrivateBannerProps } from "./VeltCommentDialogPrivateBanner/VeltCommentDialogPrivateBanner";
19
18
  import { IVeltCommentDialogResolveButtonProps } from "./VeltCommentDialogResolveButton/VeltCommentDialogResolveButton";
20
19
  import { IVeltCommentDialogSignInProps } from "./VeltCommentDialogSignIn/VeltCommentDialogSignIn";
@@ -52,6 +51,5 @@ declare const VeltCommentDialogWireframe: React.FC<IVeltCommentDialogWireframePr
52
51
  Threads: React.FC<IVeltCommentDialogThreadsProps>;
53
52
  ToggleReply: React.FC<IVeltCommentDialogToggleReplyProps>;
54
53
  Upgrade: React.FC<IVeltCommentDialogUpgradeProps>;
55
- PrivateBadge: React.FC<IVeltCommentDialogPrivateBadgeProps>;
56
54
  };
57
55
  export default VeltCommentDialogWireframe;
@@ -1,12 +1,12 @@
1
1
  import React from 'react';
2
- import { IVeltCommentsSidebarListItemAnnotationProps } from './VeltCommentsSidebarListItemAnnotation/VeltCommentsSidebarListItemAnnotation';
2
+ import { IVeltCommentsSidebarListItemDialogContainerProps } from './VeltCommentsSidebarListItemDialogContainer/VeltCommentsSidebarListItemDialogContainer';
3
3
  import { IVeltCommentsSidebarListItemGroup } from './VeltCommentsSidebarListItemGroup/VeltCommentsSidebarListItemGroup';
4
4
  export interface IVeltCommentsSidebarListItemProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> {
5
5
  variant?: string;
6
6
  }
7
7
  export interface IVeltCommentsSidebarListItem extends React.FC<IVeltCommentsSidebarListItemProps> {
8
8
  Group: IVeltCommentsSidebarListItemGroup;
9
- Annotation: React.FC<IVeltCommentsSidebarListItemAnnotationProps>;
9
+ DialogContainer: React.FC<IVeltCommentsSidebarListItemDialogContainerProps>;
10
10
  }
11
11
  declare const VeltCommentsSidebarListItem: IVeltCommentsSidebarListItem;
12
12
  export default VeltCommentsSidebarListItem;
@@ -0,0 +1,6 @@
1
+ import React from 'react';
2
+ export interface IVeltCommentsSidebarListItemDialogContainerProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> {
3
+ variant?: string;
4
+ }
5
+ declare const VeltCommentsSidebarListItemDialogContainer: React.FC<IVeltCommentsSidebarListItemDialogContainerProps>;
6
+ export default VeltCommentsSidebarListItemDialogContainer;
@@ -1,3 +1,3 @@
1
- export declare const VELT_SDK_VERSION = "1.0.161";
1
+ export declare const VELT_SDK_VERSION = "1.0.162";
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 = '1.0.161';
135
+ var VELT_SDK_VERSION = '1.0.162';
136
136
  var VELT_SDK_INIT_EVENT = 'onVeltInit';
137
137
  var VELT_TAB_ID = 'veltTabId';
138
138
 
@@ -1304,6 +1304,11 @@ var VeltCommentDialogComposerRecordings = function (props) {
1304
1304
  return (React.createElement("velt-comment-dialog-composer-recordings-wireframe", __assign({}, remainingProp), children));
1305
1305
  };
1306
1306
 
1307
+ var VeltCommentDialogComposerPrivateBadge = function (props) {
1308
+ var children = props.children, remainingProp = __rest(props, ["children"]);
1309
+ return (React.createElement("velt-comment-dialog-composer-private-badge-wireframe", __assign({}, remainingProp), children));
1310
+ };
1311
+
1307
1312
  var VeltCommentDialogComposer = function (props) {
1308
1313
  var children = props.children, remainingProp = __rest(props, ["children"]);
1309
1314
  return (React.createElement("velt-comment-dialog-composer-wireframe", __assign({}, remainingProp), children));
@@ -1313,6 +1318,7 @@ VeltCommentDialogComposer.AssignUser = VeltCommentDialogComposerAssignUser;
1313
1318
  VeltCommentDialogComposer.Attachments = VeltCommentDialogComposerAttachments;
1314
1319
  VeltCommentDialogComposer.Input = VeltCommentDialogComposerInput;
1315
1320
  VeltCommentDialogComposer.Recordings = VeltCommentDialogComposerRecordings;
1321
+ VeltCommentDialogComposer.PrivateBadge = VeltCommentDialogComposerPrivateBadge;
1316
1322
 
1317
1323
  var VeltCommentDialogCopyLink = function (props) {
1318
1324
  var children = props.children, remainingProp = __rest(props, ["children"]);
@@ -1458,11 +1464,6 @@ var VeltCommentDialogPriority = function (props) {
1458
1464
  VeltCommentDialogPriority.Content = VeltCommentDialogPriorityDropdownContentWireframe;
1459
1465
  VeltCommentDialogPriority.Trigger = VeltCommentDialogPriorityDropdownTriggerWireframe;
1460
1466
 
1461
- var VeltCommentDialogPrivateBadge = function (props) {
1462
- var children = props.children, remainingProp = __rest(props, ["children"]);
1463
- return (React.createElement("velt-comment-dialog-private-badge-wireframe", __assign({}, remainingProp), children));
1464
- };
1465
-
1466
1467
  var VeltCommentDialogPrivateBanner = function (props) {
1467
1468
  var children = props.children, remainingProp = __rest(props, ["children"]);
1468
1469
  return (React.createElement("velt-comment-dialog-private-banner-wireframe", __assign({}, remainingProp), children));
@@ -1720,7 +1721,6 @@ VeltCommentDialogWireframe.ThreadCard = VeltCommentDialogThreadCard;
1720
1721
  VeltCommentDialogWireframe.Threads = VeltCommentDialogThreads;
1721
1722
  VeltCommentDialogWireframe.ToggleReply = VeltCommentDialogToggleReply;
1722
1723
  VeltCommentDialogWireframe.Upgrade = VeltCommentDialogUpgrade;
1723
- VeltCommentDialogWireframe.PrivateBadge = VeltCommentDialogPrivateBadge;
1724
1724
 
1725
1725
  var VeltCommentsSidebarCloseButton = function (props) {
1726
1726
  props.children; var remainingProps = __rest(props, ["children"]);
@@ -1863,9 +1863,9 @@ var VeltCommentsSidebarHeader = function (props) {
1863
1863
  return (React.createElement("velt-comments-sidebar-header-wireframe", __assign({}, remainingProps), children));
1864
1864
  };
1865
1865
 
1866
- var VeltCommentsSidebarListItemAnnotation = function (props) {
1866
+ var VeltCommentsSidebarListItemDialogContainer = function (props) {
1867
1867
  var children = props.children, remainingProps = __rest(props, ["children"]);
1868
- return (React.createElement("velt-comments-sidebar-list-item-annotation-wireframe", __assign({}, remainingProps), children));
1868
+ return (React.createElement("velt-comments-sidebar-list-item-dialog-container-wireframe", __assign({}, remainingProps), children));
1869
1869
  };
1870
1870
 
1871
1871
  var VeltCommentsSidebarListItemGroupCount = function (props) {
@@ -1896,7 +1896,7 @@ var VeltCommentsSidebarListItem = function (props) {
1896
1896
  return (React.createElement("velt-comments-sidebar-list-item-wireframe", __assign({}, remainingProps), children));
1897
1897
  };
1898
1898
  VeltCommentsSidebarListItem.Group = VeltCommentsSidebarListItemGroup;
1899
- VeltCommentsSidebarListItem.Annotation = VeltCommentsSidebarListItemAnnotation;
1899
+ VeltCommentsSidebarListItem.DialogContainer = VeltCommentsSidebarListItemDialogContainer;
1900
1900
 
1901
1901
  var VeltCommentsSidebarList = function (props) {
1902
1902
  var children = props.children, remainingProps = __rest(props, ["children"]);