@veltdev/react 1.0.81 → 1.0.83

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 IVeltViewAnalyticsProps {
3
+ type?: 'document' | 'location';
4
+ locationId?: string;
5
+ }
6
+ declare const VeltViewAnalytics: React.FC<IVeltViewAnalyticsProps>;
7
+ export default VeltViewAnalytics;
@@ -0,0 +1 @@
1
+ export { default } from "./VeltViewAnalytics";
@@ -20,4 +20,4 @@ export { default as VeltUserInviteTool } from "./SnippylyUserInviteTool";
20
20
  export { default as VeltUserRequestTool } from "./SnippylyUserRequestTool";
21
21
  export { default as VeltCommentPlayerTimeline } from "./VeltCommentPlayerTimeline";
22
22
  export { default as VeltVideoPlayer } from "./VeltVideoPlayer";
23
- export { default as VeltDocumentViewerTrend } from "./VeltDocumentViewerTrend";
23
+ export { default as VeltViewAnalytics } from "./VeltViewAnalytics";
@@ -1,2 +1,2 @@
1
- export declare const VELT_SDK_VERSION = "1.0.98";
1
+ export declare const VELT_SDK_VERSION = "1.0.100";
2
2
  export declare const VELT_SDK_INIT_EVENT = "onVeltInit";
package/index.d.ts CHANGED
@@ -295,11 +295,11 @@ interface IVeltVideoPlayerProps {
295
295
  }
296
296
  declare const VeltVideoPlayer: React.FC<IVeltVideoPlayerProps>;
297
297
 
298
- interface IVeltDocumentViewerTrendProps {
298
+ interface IVeltViewAnalyticsProps {
299
299
  type?: 'document' | 'location';
300
300
  locationId?: string;
301
301
  }
302
- declare const VeltDocumentViewerTrend: React.FC<IVeltDocumentViewerTrendProps>;
302
+ declare const VeltViewAnalytics: React.FC<IVeltViewAnalyticsProps>;
303
303
 
304
304
  declare function useVeltClient(): {
305
305
  client: Velt;
@@ -455,4 +455,4 @@ declare type LiveStateMiddlewareConfig = {
455
455
  };
456
456
  declare const createLiveStateMiddleware: (config?: LiveStateMiddlewareConfig) => (store: any) => (next: any) => (action: any) => any;
457
457
 
458
- export { SnippylyArrowTool as VeltArrowTool, SnippylyArrows as VeltArrows, SnippylyCommentBubble as VeltCommentBubble, VeltCommentPlayerTimeline, SnippylyCommentTool as VeltCommentTool, SnippylyComments as VeltComments, SnippylyCommentsSidebar as VeltCommentsSidebar, SnippylyCursor as VeltCursor, VeltDocumentViewerTrend, 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, 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 };
458
+ export { SnippylyArrowTool as VeltArrowTool, SnippylyArrows as VeltArrows, SnippylyCommentBubble as VeltCommentBubble, VeltCommentPlayerTimeline, 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 };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@veltdev/react",
3
- "version": "1.0.81",
3
+ "version": "1.0.83",
4
4
  "description": "",
5
5
  "scripts": {
6
6
  "test": "echo \"Error: no test specified\" && exit 1",
@@ -1,7 +0,0 @@
1
- import React from 'react';
2
- export interface IVeltDocumentViewerTrendProps {
3
- type?: 'document' | 'location';
4
- locationId?: string;
5
- }
6
- declare const VeltDocumentViewerTrend: React.FC<IVeltDocumentViewerTrendProps>;
7
- export default VeltDocumentViewerTrend;
@@ -1 +0,0 @@
1
- export { default } from "./VeltDocumentViewerTrend";
@@ -1,7 +0,0 @@
1
- import React from 'react';
2
- export interface IVeltDocumentViewerTrendProps {
3
- type?: 'document' | 'location';
4
- locationId?: string;
5
- }
6
- declare const VeltDocumentViewerTrend: React.FC<IVeltDocumentViewerTrendProps>;
7
- export default VeltDocumentViewerTrend;
@@ -1 +0,0 @@
1
- export { default } from "./VeltDocumentViewerTrend";