@veltdev/react 1.0.93 → 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.
- package/cjs/index.js +52 -1
- package/cjs/index.js.map +1 -1
- package/cjs/types/components/VeltNotificationsHistory/VeltNotificationsHistory.d.ts +7 -0
- package/cjs/types/components/VeltNotificationsHistory/index.d.ts +1 -0
- package/cjs/types/components/VeltNotificationsPanel/VeltNotificationsPanel.d.ts +6 -0
- package/cjs/types/components/VeltNotificationsPanel/index.d.ts +1 -0
- package/cjs/types/components/VeltNotificationsTool/VeltNotificationsTool.d.ts +6 -0
- package/cjs/types/components/VeltNotificationsTool/index.d.ts +1 -0
- package/cjs/types/components/index.d.ts +3 -0
- package/cjs/types/constants.d.ts +1 -1
- package/esm/index.js +50 -2
- package/esm/index.js.map +1 -1
- package/esm/types/components/VeltNotificationsHistory/VeltNotificationsHistory.d.ts +7 -0
- package/esm/types/components/VeltNotificationsHistory/index.d.ts +1 -0
- package/esm/types/components/VeltNotificationsPanel/VeltNotificationsPanel.d.ts +6 -0
- package/esm/types/components/VeltNotificationsPanel/index.d.ts +1 -0
- package/esm/types/components/VeltNotificationsTool/VeltNotificationsTool.d.ts +6 -0
- package/esm/types/components/VeltNotificationsTool/index.d.ts +1 -0
- package/esm/types/components/index.d.ts +3 -0
- package/esm/types/constants.d.ts +1 -1
- package/index.d.ts +17 -1
- package/package.json +1 -1
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default } from "./VeltNotificationsHistory";
|
|
@@ -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";
|
package/esm/types/constants.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const VELT_SDK_VERSION = "1.0.
|
|
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 };
|