@veltdev/react 2.0.4 → 2.0.5

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.
@@ -55,6 +55,7 @@ export interface IVeltCommentsProps extends React.DetailedHTMLProps<React.HTMLAt
55
55
  dialogShadowDom?: boolean;
56
56
  shadowDom?: boolean;
57
57
  changeDetectionInCommentMode?: boolean;
58
+ areaComment?: boolean;
58
59
  allowedElementIds?: string[];
59
60
  allowedElementClassNames?: string[];
60
61
  allowedElementQuerySelectors?: string[];
@@ -0,0 +1,6 @@
1
+ import React from 'react';
2
+ export interface IVeltDataProps {
3
+ path?: string;
4
+ }
5
+ declare const VeltData: React.FC<IVeltDataProps>;
6
+ export default VeltData;
@@ -0,0 +1 @@
1
+ export { default } from "./VeltData";
@@ -1,3 +1,3 @@
1
- export declare const VELT_SDK_VERSION = "2.0.4";
1
+ export declare const VELT_SDK_VERSION = "2.0.5";
2
2
  export declare const VELT_SDK_INIT_EVENT = "onVeltInit";
3
3
  export declare const VELT_TAB_ID = "veltTabId";
package/index.d.ts CHANGED
@@ -91,6 +91,7 @@ interface IVeltCommentsProps extends React.DetailedHTMLProps<React.HTMLAttribute
91
91
  dialogShadowDom?: boolean;
92
92
  shadowDom?: boolean;
93
93
  changeDetectionInCommentMode?: boolean;
94
+ areaComment?: boolean;
94
95
  allowedElementIds?: string[];
95
96
  allowedElementClassNames?: string[];
96
97
  allowedElementQuerySelectors?: string[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@veltdev/react",
3
- "version": "2.0.4",
3
+ "version": "2.0.5",
4
4
  "description": "",
5
5
  "scripts": {
6
6
  "test": "echo \"Error: no test specified\" && exit 1",