@veltdev/react 2.0.23 → 2.0.24

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.
@@ -0,0 +1,6 @@
1
+ import React from 'react';
2
+ export interface IVeltCommentDialogDeleteButtonProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> {
3
+ variant?: string;
4
+ }
5
+ declare const VeltCommentDialogDeleteButton: React.FC<IVeltCommentDialogDeleteButtonProps>;
6
+ export default VeltCommentDialogDeleteButton;
@@ -0,0 +1 @@
1
+ export { default } from "./VeltCommentDialogDeleteButton";
@@ -24,6 +24,7 @@ import { IVeltCommentDialogThreadsProps } from "./VeltCommentDialogThreads/VeltC
24
24
  import { IVeltCommentDialogToggleReplyProps } from "./VeltCommentDialogToggleReply/VeltCommentDialogToggleReply";
25
25
  import { IVeltCommentDialogUpgradeProps } from "./VeltCommentDialogUpgrade/VeltCommentDialogUpgrade";
26
26
  import { IVeltCommentDialogCustomAnnotationDropdown } from "./VeltCommentDialogCustomAnnotationDropdown/VeltCommentDialogCustomAnnotationDropdown";
27
+ import { IVeltCommentDialogDeleteButtonProps } from "./VeltCommentDialogDeleteButton/VeltCommentDialogDeleteButton";
27
28
  export interface IVeltCommentDialogWireframeProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> {
28
29
  variant?: string;
29
30
  }
@@ -53,5 +54,6 @@ declare const VeltCommentDialogWireframe: React.FC<IVeltCommentDialogWireframePr
53
54
  ToggleReply: React.FC<IVeltCommentDialogToggleReplyProps>;
54
55
  Upgrade: React.FC<IVeltCommentDialogUpgradeProps>;
55
56
  CustomAnnotationDropdown: IVeltCommentDialogCustomAnnotationDropdown;
57
+ DeleteButton: React.FC<IVeltCommentDialogDeleteButtonProps>;
56
58
  };
57
59
  export default VeltCommentDialogWireframe;
@@ -1,3 +1,3 @@
1
- export declare const VELT_SDK_VERSION = "2.0.23";
1
+ export declare const VELT_SDK_VERSION = "2.0.24";
2
2
  export declare const VELT_SDK_INIT_EVENT = "onVeltInit";
3
3
  export declare const VELT_TAB_ID = "veltTabId";
package/index.d.ts CHANGED
@@ -1091,6 +1091,10 @@ interface IVeltCommentDialogCustomAnnotationDropdown extends React.FC<IVeltComme
1091
1091
  Trigger: IVeltCommentDialogCustomAnnotationDropdownTrigger;
1092
1092
  }
1093
1093
 
1094
+ interface IVeltCommentDialogDeleteButtonProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> {
1095
+ variant?: string;
1096
+ }
1097
+
1094
1098
  interface IVeltCommentDialogWireframeProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> {
1095
1099
  variant?: string;
1096
1100
  }
@@ -1120,6 +1124,7 @@ declare const VeltCommentDialogWireframe: React.FC<IVeltCommentDialogWireframePr
1120
1124
  ToggleReply: React.FC<IVeltCommentDialogToggleReplyProps>;
1121
1125
  Upgrade: React.FC<IVeltCommentDialogUpgradeProps>;
1122
1126
  CustomAnnotationDropdown: IVeltCommentDialogCustomAnnotationDropdown;
1127
+ DeleteButton: React.FC<IVeltCommentDialogDeleteButtonProps>;
1123
1128
  };
1124
1129
 
1125
1130
  interface IVeltCommentsSidebarCloseButtonProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@veltdev/react",
3
- "version": "2.0.23",
3
+ "version": "2.0.24",
4
4
  "description": "",
5
5
  "scripts": {
6
6
  "test": "echo \"Error: no test specified\" && exit 1",