@veltdev/react 1.0.92 → 1.0.94

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,7 @@
1
+ import React from 'react';
2
+ export interface IVeltNotificationsHistoryProps {
3
+ embedMode?: boolean;
4
+ onNotificationClick?: Function;
5
+ }
6
+ declare const VeltNotificationsHistory: React.FC<IVeltNotificationsHistoryProps>;
7
+ export default VeltNotificationsHistory;
@@ -0,0 +1 @@
1
+ export { default } from "./VeltNotificationsHistory";
@@ -0,0 +1,6 @@
1
+ import React from 'react';
2
+ export interface IVeltNotificationsPanelProps {
3
+ onNotificationClick?: Function;
4
+ }
5
+ declare const VeltNotificationsPanel: React.FC<IVeltNotificationsPanelProps>;
6
+ export default VeltNotificationsPanel;
@@ -0,0 +1 @@
1
+ export { default } from "./VeltNotificationsPanel";
@@ -0,0 +1,6 @@
1
+ import React from 'react';
2
+ export interface IVeltNotificationsToolProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> {
3
+ onNotificationClick?: Function;
4
+ }
5
+ declare const VeltNotificationsTool: React.FC<IVeltNotificationsToolProps>;
6
+ export default VeltNotificationsTool;
@@ -0,0 +1 @@
1
+ export { default } from "./VeltNotificationsTool";
@@ -22,3 +22,6 @@ export { default as VeltCommentPlayerTimeline } from "./VeltCommentPlayerTimelin
22
22
  export { default as VeltVideoPlayer } from "./VeltVideoPlayer";
23
23
  export { default as VeltViewAnalytics } from "./VeltViewAnalytics";
24
24
  export { default as VeltCommentThread } from "./VeltCommentThread";
25
+ export { default as VeltNotificationsTool } from "./VeltNotificationsTool";
26
+ export { default as VeltNotificationsPanel } from "./VeltNotificationsPanel";
27
+ export { default as VeltNotificationsHistory } from "./VeltNotificationsHistory";
@@ -1,2 +1,2 @@
1
- export declare const VELT_SDK_VERSION = "1.0.107";
1
+ export declare const VELT_SDK_VERSION = "1.0.109";
2
2
  export declare const VELT_SDK_INIT_EVENT = "onVeltInit";
package/index.d.ts CHANGED
@@ -309,6 +309,22 @@ interface IVeltCommentThreadProps {
309
309
  }
310
310
  declare const VeltCommentThread: React.FC<IVeltCommentThreadProps>;
311
311
 
312
+ interface IVeltNotificationsToolProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> {
313
+ onNotificationClick?: Function;
314
+ }
315
+ declare const VeltNotificationsTool: React.FC<IVeltNotificationsToolProps>;
316
+
317
+ interface IVeltNotificationsPanelProps {
318
+ onNotificationClick?: Function;
319
+ }
320
+ declare const VeltNotificationsPanel: React.FC<IVeltNotificationsPanelProps>;
321
+
322
+ interface IVeltNotificationsHistoryProps {
323
+ embedMode?: boolean;
324
+ onNotificationClick?: Function;
325
+ }
326
+ declare const VeltNotificationsHistory: React.FC<IVeltNotificationsHistoryProps>;
327
+
312
328
  declare function useVeltClient(): {
313
329
  client: Velt;
314
330
  };
@@ -463,4 +479,4 @@ declare type LiveStateMiddlewareConfig = {
463
479
  };
464
480
  declare const createLiveStateMiddleware: (config?: LiveStateMiddlewareConfig) => (store: any) => (next: any) => (action: any) => any;
465
481
 
466
- export { SnippylyArrowTool as VeltArrowTool, SnippylyArrows as VeltArrows, SnippylyCommentBubble as VeltCommentBubble, VeltCommentPlayerTimeline, VeltCommentThread, SnippylyCommentTool as VeltCommentTool, SnippylyComments as VeltComments, SnippylyCommentsSidebar as VeltCommentsSidebar, SnippylyCursor as VeltCursor, SnippylyHuddle as VeltHuddle, SnippylyHuddleTool as VeltHuddleTool, SnippylyPresence as VeltPresence, SnippylyProvider as VeltProvider, SnippylyRecorderControlPanel as VeltRecorderControlPanel, SnippylyRecorderNotes as VeltRecorderNotes, SnippylyRecorderPlayer as VeltRecorderPlayer, SnippylyRecorderTool as VeltRecorderTool, SnippylySidebarButton as VeltSidebarButton, SnippylyTagTool as VeltTagTool, SnippylyTags as VeltTags, SnippylyUserInviteTool as VeltUserInviteTool, SnippylyUserRequestTool as VeltUserRequestTool, VeltVideoPlayer, VeltViewAnalytics, createLiveStateMiddleware, useAIRewriterUtils, useAddLocation, useClient, useCommentAddHandler, useCommentAnnotations, useCommentDialogSidebarClickHandler, useCommentModeState, useCommentUpdateHandler, useCommentUtils, useCursorUsers, useCursorUtils, useEditor, useEditorAccessRequestHandler, useHuddleUtils, useIdentify, useLiveSelectionUtils, useLiveState, useLiveStateData, useLiveStateSyncUtils, usePresenceUsers, usePresenceUtils, useRecorderAddHandler, useRecorderUtils, useSetDocumentId, useSetLiveStateData, useSetLocation, useTagAnnotations, useTagUtils, useUniqueViewsByDate, useUniqueViewsByUser, useUserEditorState, useVeltClient, useViewsUtils };
482
+ export { SnippylyArrowTool as VeltArrowTool, SnippylyArrows as VeltArrows, SnippylyCommentBubble as VeltCommentBubble, VeltCommentPlayerTimeline, VeltCommentThread, SnippylyCommentTool as VeltCommentTool, SnippylyComments as VeltComments, SnippylyCommentsSidebar as VeltCommentsSidebar, SnippylyCursor as VeltCursor, SnippylyHuddle as VeltHuddle, SnippylyHuddleTool as VeltHuddleTool, VeltNotificationsHistory, VeltNotificationsPanel, VeltNotificationsTool, SnippylyPresence as VeltPresence, SnippylyProvider as VeltProvider, SnippylyRecorderControlPanel as VeltRecorderControlPanel, SnippylyRecorderNotes as VeltRecorderNotes, SnippylyRecorderPlayer as VeltRecorderPlayer, SnippylyRecorderTool as VeltRecorderTool, SnippylySidebarButton as VeltSidebarButton, SnippylyTagTool as VeltTagTool, SnippylyTags as VeltTags, SnippylyUserInviteTool as VeltUserInviteTool, SnippylyUserRequestTool as VeltUserRequestTool, VeltVideoPlayer, VeltViewAnalytics, createLiveStateMiddleware, useAIRewriterUtils, useAddLocation, useClient, useCommentAddHandler, useCommentAnnotations, useCommentDialogSidebarClickHandler, useCommentModeState, useCommentUpdateHandler, useCommentUtils, useCursorUsers, useCursorUtils, useEditor, useEditorAccessRequestHandler, useHuddleUtils, useIdentify, useLiveSelectionUtils, useLiveState, useLiveStateData, useLiveStateSyncUtils, usePresenceUsers, usePresenceUtils, useRecorderAddHandler, useRecorderUtils, useSetDocumentId, useSetLiveStateData, useSetLocation, useTagAnnotations, useTagUtils, useUniqueViewsByDate, useUniqueViewsByUser, useUserEditorState, useVeltClient, useViewsUtils };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@veltdev/react",
3
- "version": "1.0.92",
3
+ "version": "1.0.94",
4
4
  "description": "",
5
5
  "scripts": {
6
6
  "test": "echo \"Error: no test specified\" && exit 1",