@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";
package/index.d.ts CHANGED
@@ -81,6 +81,8 @@ interface IVeltCommentsProps extends React.DetailedHTMLProps<React.HTMLAttribute
81
81
  recordingSummary?: boolean;
82
82
  recordingCountdown?: boolean;
83
83
  unreadIndicatorMode?: 'minimal' | 'verbose';
84
+ pinShadowDom?: boolean;
85
+ dialogShadowDom?: boolean;
84
86
  allowedElementIds?: string[];
85
87
  allowedElementClassNames?: string[];
86
88
  allowedElementQuerySelectors?: string[];
@@ -153,6 +155,7 @@ interface IVeltCommentsSidebarProps {
153
155
  currentLocationSuffix?: boolean;
154
156
  variant?: string;
155
157
  dialogVariant?: string;
158
+ shadowDom?: boolean;
156
159
  filterConfig?: CommentSidebarFilterConfig;
157
160
  groupConfig?: CommentSidebarGroupConfig;
158
161
  filters?: CommentSidebarFilters;
@@ -347,10 +350,28 @@ interface IVeltNotificationsHistoryPanelProps {
347
350
  declare const VeltNotificationsHistoryPanel: React.FC<IVeltNotificationsHistoryPanelProps>;
348
351
 
349
352
  interface IVeltNivoChartCommentsProps {
350
- props?: any;
353
+ id: string;
354
+ chartComputedData?: any;
355
+ dialogMetadataTemplate?: string[];
351
356
  }
352
357
  declare const VeltNivoChartComments: React.FC<IVeltNivoChartCommentsProps>;
353
358
 
359
+ interface IVeltHighChartCommentsProps {
360
+ id: string;
361
+ chartComputedData: any;
362
+ dialogMetadataTemplate?: string[];
363
+ }
364
+ declare const VeltHighChartComments: React.FC<IVeltHighChartCommentsProps>;
365
+
366
+ interface IVeltChartCommentProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> {
367
+ commentMetadata?: {
368
+ [key: string]: any;
369
+ };
370
+ dialogMetadataTemplate?: string[];
371
+ ghostComment?: boolean;
372
+ }
373
+ declare const VeltChartComment: React.FC<IVeltChartCommentProps>;
374
+
354
375
  interface IVeltWireframeProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> {
355
376
  }
356
377
  declare const VeltWireframe: React.FC<IVeltWireframeProps>;
@@ -891,4 +912,4 @@ declare const createLiveStateMiddleware: (config?: LiveStateMiddlewareConfig) =>
891
912
  updateLiveStateDataId: (newId?: string) => void;
892
913
  };
893
914
 
894
- export { SnippylyArrowTool as VeltArrowTool, SnippylyArrows as VeltArrows, SnippylyCommentBubble as VeltCommentBubble, VeltCommentBubbleAvatar, VeltCommentBubbleCommentsCount, VeltCommentDialogWireframe, VeltCommentPinWireframe, VeltCommentPlayerTimeline, VeltCommentThread, SnippylyCommentTool as VeltCommentTool, VeltCommentToolWireframe, SnippylyComments as VeltComments, SnippylyCommentsSidebar as VeltCommentsSidebar, VeltCommentsSidebarWireframe, SnippylyCursor as VeltCursor, SnippylyHuddle as VeltHuddle, SnippylyHuddleTool as VeltHuddleTool, VeltNivoChartComments, VeltNotificationsHistoryPanel, VeltNotificationsPanel, VeltNotificationsTool, SnippylyPresence as VeltPresence, SnippylyProvider as VeltProvider, SnippylyRecorderControlPanel as VeltRecorderControlPanel, SnippylyRecorderNotes as VeltRecorderNotes, SnippylyRecorderPlayer as VeltRecorderPlayer, SnippylyRecorderTool as VeltRecorderTool, SnippylySidebarButton as VeltSidebarButton, VeltSidebarButtonWireframe, SnippylyTagTool as VeltTagTool, SnippylyTags as VeltTags, VeltTextCommentToolWireframe, VeltTextCommentToolbar as VeltTextCommentToolbarWireframe, SnippylyUserInviteTool as VeltUserInviteTool, SnippylyUserRequestTool as VeltUserRequestTool, VeltUserSelectorDropdown as VeltUserSelectorDropdownWireframe, VeltVideoPlayer, VeltViewAnalytics, VeltWireframe, createLiveStateMiddleware, useAIRewriterUtils, useAddLocation, useClient, useCommentAddHandler, useCommentAnnotations, useCommentDialogSidebarClickHandler, useCommentModeState, useCommentUpdateHandler, useCommentUtils, useCursorUsers, useCursorUtils, useEditor, useEditorAccessRequestHandler, useEditorAccessTimer, useHuddleUtils, useIdentify, useLiveSelectionUtils, useLiveState, useLiveStateData, useLiveStateSyncUtils, useNotificationUtils, useNotificationsData, usePresenceUsers, usePresenceUtils, useRecorderAddHandler, useRecorderUtils, useSetDocumentId, useSetLiveStateData, useSetLocation, useTagAnnotations, useTagUtils, useUniqueViewsByDate, useUniqueViewsByUser, useUnsetDocumentId, useUserEditorState, useVeltClient, useViewsUtils };
915
+ export { SnippylyArrowTool as VeltArrowTool, SnippylyArrows as VeltArrows, VeltChartComment, SnippylyCommentBubble as VeltCommentBubble, VeltCommentBubbleAvatar, VeltCommentBubbleCommentsCount, VeltCommentDialogWireframe, VeltCommentPinWireframe, VeltCommentPlayerTimeline, VeltCommentThread, SnippylyCommentTool as VeltCommentTool, VeltCommentToolWireframe, SnippylyComments as VeltComments, SnippylyCommentsSidebar as VeltCommentsSidebar, VeltCommentsSidebarWireframe, SnippylyCursor as VeltCursor, VeltHighChartComments, SnippylyHuddle as VeltHuddle, SnippylyHuddleTool as VeltHuddleTool, VeltNivoChartComments, VeltNotificationsHistoryPanel, VeltNotificationsPanel, VeltNotificationsTool, SnippylyPresence as VeltPresence, SnippylyProvider as VeltProvider, SnippylyRecorderControlPanel as VeltRecorderControlPanel, SnippylyRecorderNotes as VeltRecorderNotes, SnippylyRecorderPlayer as VeltRecorderPlayer, SnippylyRecorderTool as VeltRecorderTool, SnippylySidebarButton as VeltSidebarButton, VeltSidebarButtonWireframe, SnippylyTagTool as VeltTagTool, SnippylyTags as VeltTags, VeltTextCommentToolWireframe, VeltTextCommentToolbar as VeltTextCommentToolbarWireframe, SnippylyUserInviteTool as VeltUserInviteTool, SnippylyUserRequestTool as VeltUserRequestTool, VeltUserSelectorDropdown as VeltUserSelectorDropdownWireframe, VeltVideoPlayer, VeltViewAnalytics, VeltWireframe, createLiveStateMiddleware, useAIRewriterUtils, useAddLocation, useClient, useCommentAddHandler, useCommentAnnotations, useCommentDialogSidebarClickHandler, useCommentModeState, useCommentUpdateHandler, useCommentUtils, useCursorUsers, useCursorUtils, useEditor, useEditorAccessRequestHandler, useEditorAccessTimer, useHuddleUtils, useIdentify, useLiveSelectionUtils, useLiveState, useLiveStateData, useLiveStateSyncUtils, useNotificationUtils, useNotificationsData, usePresenceUsers, usePresenceUtils, useRecorderAddHandler, useRecorderUtils, useSetDocumentId, useSetLiveStateData, useSetLocation, useTagAnnotations, useTagUtils, useUniqueViewsByDate, useUniqueViewsByUser, useUnsetDocumentId, useUserEditorState, useVeltClient, useViewsUtils };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@veltdev/react",
3
- "version": "1.0.111",
3
+ "version": "1.0.113",
4
4
  "description": "",
5
5
  "scripts": {
6
6
  "test": "echo \"Error: no test specified\" && exit 1",