@veltdev/react 1.0.112 → 1.0.114

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.
@@ -50,6 +50,7 @@ export interface IVeltCommentsProps extends React.DetailedHTMLProps<React.HTMLAt
50
50
  unreadIndicatorMode?: 'minimal' | 'verbose';
51
51
  pinShadowDom?: boolean;
52
52
  dialogShadowDom?: boolean;
53
+ shadowDom?: boolean;
53
54
  allowedElementIds?: string[];
54
55
  allowedElementClassNames?: string[];
55
56
  allowedElementQuerySelectors?: string[];
@@ -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
@@ -83,6 +83,7 @@ interface IVeltCommentsProps extends React.DetailedHTMLProps<React.HTMLAttribute
83
83
  unreadIndicatorMode?: 'minimal' | 'verbose';
84
84
  pinShadowDom?: boolean;
85
85
  dialogShadowDom?: boolean;
86
+ shadowDom?: boolean;
86
87
  allowedElementIds?: string[];
87
88
  allowedElementClassNames?: string[];
88
89
  allowedElementQuerySelectors?: string[];
@@ -350,10 +351,28 @@ interface IVeltNotificationsHistoryPanelProps {
350
351
  declare const VeltNotificationsHistoryPanel: React.FC<IVeltNotificationsHistoryPanelProps>;
351
352
 
352
353
  interface IVeltNivoChartCommentsProps {
353
- props?: any;
354
+ id: string;
355
+ chartComputedData?: any;
356
+ dialogMetadataTemplate?: string[];
354
357
  }
355
358
  declare const VeltNivoChartComments: React.FC<IVeltNivoChartCommentsProps>;
356
359
 
360
+ interface IVeltHighChartCommentsProps {
361
+ id: string;
362
+ chartComputedData: any;
363
+ dialogMetadataTemplate?: string[];
364
+ }
365
+ declare const VeltHighChartComments: React.FC<IVeltHighChartCommentsProps>;
366
+
367
+ interface IVeltChartCommentProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> {
368
+ commentMetadata?: {
369
+ [key: string]: any;
370
+ };
371
+ dialogMetadataTemplate?: string[];
372
+ ghostComment?: boolean;
373
+ }
374
+ declare const VeltChartComment: React.FC<IVeltChartCommentProps>;
375
+
357
376
  interface IVeltWireframeProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> {
358
377
  }
359
378
  declare const VeltWireframe: React.FC<IVeltWireframeProps>;
@@ -894,4 +913,4 @@ declare const createLiveStateMiddleware: (config?: LiveStateMiddlewareConfig) =>
894
913
  updateLiveStateDataId: (newId?: string) => void;
895
914
  };
896
915
 
897
- 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 };
916
+ 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.112",
3
+ "version": "1.0.114",
4
4
  "description": "",
5
5
  "scripts": {
6
6
  "test": "echo \"Error: no test specified\" && exit 1",