@veltdev/react 1.0.111 → 1.0.113

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.
@@ -48,6 +48,8 @@ export interface IVeltCommentsProps extends React.DetailedHTMLProps<React.HTMLAt
48
48
  recordingSummary?: boolean;
49
49
  recordingCountdown?: boolean;
50
50
  unreadIndicatorMode?: 'minimal' | 'verbose';
51
+ pinShadowDom?: boolean;
52
+ dialogShadowDom?: boolean;
51
53
  allowedElementIds?: string[];
52
54
  allowedElementClassNames?: string[];
53
55
  allowedElementQuerySelectors?: string[];
@@ -38,6 +38,7 @@ export interface IVeltCommentsSidebarProps {
38
38
  currentLocationSuffix?: boolean;
39
39
  variant?: string;
40
40
  dialogVariant?: string;
41
+ shadowDom?: boolean;
41
42
  filterConfig?: CommentSidebarFilterConfig;
42
43
  groupConfig?: CommentSidebarGroupConfig;
43
44
  filters?: CommentSidebarFilters;
@@ -0,0 +1,10 @@
1
+ import React from 'react';
2
+ export interface IVeltChartCommentProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> {
3
+ commentMetadata?: {
4
+ [key: string]: any;
5
+ };
6
+ dialogMetadataTemplate?: string[];
7
+ ghostComment?: boolean;
8
+ }
9
+ declare const VeltChartComment: React.FC<IVeltChartCommentProps>;
10
+ export default VeltChartComment;
@@ -0,0 +1 @@
1
+ export { default } from './VeltChartComment';
@@ -0,0 +1,8 @@
1
+ import React from "react";
2
+ export interface IVeltHighChartCommentsProps {
3
+ id: string;
4
+ chartComputedData: any;
5
+ dialogMetadataTemplate?: string[];
6
+ }
7
+ declare const VeltHighChartComments: React.FC<IVeltHighChartCommentsProps>;
8
+ export default VeltHighChartComments;
@@ -0,0 +1 @@
1
+ export { default } from "./VeltHighChartComments";
@@ -1,6 +1,8 @@
1
1
  import React from 'react';
2
2
  export interface IVeltNivoChartCommentsProps {
3
- props?: any;
3
+ id: string;
4
+ chartComputedData?: any;
5
+ dialogMetadataTemplate?: string[];
4
6
  }
5
7
  declare const VeltNivoChartComments: React.FC<IVeltNivoChartCommentsProps>;
6
8
  export default VeltNivoChartComments;
@@ -26,6 +26,8 @@ export { default as VeltNotificationsTool } from "./VeltNotificationsTool";
26
26
  export { default as VeltNotificationsPanel } from "./VeltNotificationsPanel";
27
27
  export { default as VeltNotificationsHistoryPanel } from "./VeltNotificationsHistoryPanel";
28
28
  export { default as VeltNivoChartComments } from "./VeltNivoChartComments";
29
+ export { default as VeltHighChartComments } from "./VeltHighChartComments";
30
+ export { default as VeltChartComment } from "./VeltChartComment";
29
31
  export { default as VeltWireframe } from "./VeltWireframe";
30
32
  export { default as VeltCommentDialogWireframe } from "./VeltCommentDialogWireframe";
31
33
  export { default as VeltCommentsSidebarWireframe } from "./VeltCommentsSidebarWireframe";