@veltdev/react 4.4.0-beta.8 → 4.4.0-patch.1
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 +36 -9
- package/cjs/index.js.map +1 -1
- package/cjs/types/components/SnippylyComments/SnippylyComments.d.ts +2 -0
- package/cjs/types/components/SnippylyCommentsSidebar/SnippylyCommentsSidebar.d.ts +1 -0
- package/cjs/types/components/SnippylyPresence/SnippylyPresence.d.ts +1 -0
- package/cjs/types/components/VeltNotificationsPanel/VeltNotificationsPanel.d.ts +2 -0
- package/cjs/types/constants.d.ts +1 -1
- package/cjs/types/hooks/LiveStateSyncElement.d.ts +2 -2
- package/cjs/types/redux/veltLiveStateSynceMiddleware.d.ts +3 -0
- package/esm/index.js +36 -9
- package/esm/index.js.map +1 -1
- package/esm/types/components/SnippylyComments/SnippylyComments.d.ts +2 -0
- package/esm/types/components/SnippylyCommentsSidebar/SnippylyCommentsSidebar.d.ts +1 -0
- package/esm/types/components/SnippylyPresence/SnippylyPresence.d.ts +1 -0
- package/esm/types/components/VeltNotificationsPanel/VeltNotificationsPanel.d.ts +2 -0
- package/esm/types/constants.d.ts +1 -1
- package/esm/types/hooks/LiveStateSyncElement.d.ts +2 -2
- package/esm/types/redux/veltLiveStateSynceMiddleware.d.ts +3 -0
- package/index.d.ts +11 -3
- package/package.json +2 -2
|
@@ -135,6 +135,8 @@ export interface IVeltCommentsProps extends React.DetailedHTMLProps<React.HTMLAt
|
|
|
135
135
|
showMentionGroupsFirst?: boolean;
|
|
136
136
|
showMentionGroupsOnly?: boolean;
|
|
137
137
|
fullExpanded?: boolean;
|
|
138
|
+
commentToNearestAllowedElement?: boolean;
|
|
139
|
+
draftMode?: boolean;
|
|
138
140
|
}
|
|
139
141
|
declare const SnippylyComments: React.FC<IVeltCommentsProps>;
|
|
140
142
|
export default SnippylyComments;
|
|
@@ -80,6 +80,7 @@ export interface IVeltCommentsSidebarProps {
|
|
|
80
80
|
filterOptionLayout?: 'checkbox' | 'dropdown';
|
|
81
81
|
filterCount?: boolean;
|
|
82
82
|
fullExpanded?: boolean;
|
|
83
|
+
systemFiltersOperator?: 'and' | 'or';
|
|
83
84
|
}
|
|
84
85
|
declare const SnippylyCommentsSidebar: React.FC<IVeltCommentsSidebarProps>;
|
|
85
86
|
export default SnippylyCommentsSidebar;
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { NotificationPanelMode } from '@veltdev/types';
|
|
1
2
|
import React from 'react';
|
|
2
3
|
export declare class NotificationTabConfigItem {
|
|
3
4
|
name?: string;
|
|
@@ -16,6 +17,7 @@ export interface IVeltNotificationsPanelProps {
|
|
|
16
17
|
variant?: string;
|
|
17
18
|
tabConfig?: NotificationTabConfig;
|
|
18
19
|
readNotificationsOnForYouTab?: boolean;
|
|
20
|
+
panelOpenMode?: NotificationPanelMode;
|
|
19
21
|
}
|
|
20
22
|
declare const VeltNotificationsPanel: React.FC<IVeltNotificationsPanelProps>;
|
|
21
23
|
export default VeltNotificationsPanel;
|
package/esm/types/constants.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
-
export declare const VELT_SDK_VERSION = "4.4.0-
|
|
2
|
+
export declare const VELT_SDK_VERSION = "4.4.0-patch.1";
|
|
3
3
|
export declare const VELT_SDK_INIT_EVENT = "onVeltInit";
|
|
4
4
|
export declare const VELT_TAB_ID = "veltTabId";
|
|
5
5
|
export interface IVeltWireframeCommonProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> {
|
|
@@ -3,8 +3,8 @@ declare class LiveStateDataConfig {
|
|
|
3
3
|
listenToNewChangesOnly?: boolean;
|
|
4
4
|
}
|
|
5
5
|
export declare function useLiveStateSyncUtils(): LiveStateSyncElement | undefined;
|
|
6
|
-
export declare function useLiveStateData(liveStateDataId?: string, liveStateDataConfig?: LiveStateDataConfig):
|
|
7
|
-
export declare function useSetLiveStateData(liveStateDataId: string, liveStateData:
|
|
6
|
+
export declare function useLiveStateData<T = unknown>(liveStateDataId?: string, liveStateDataConfig?: LiveStateDataConfig): T | undefined;
|
|
7
|
+
export declare function useSetLiveStateData<T = unknown>(liveStateDataId: string, liveStateData: T, config?: SetLiveStateDataConfig): void;
|
|
8
8
|
export declare function useUserEditorState(): UserEditorAccess | null | undefined;
|
|
9
9
|
export declare function useEditor(): User | null;
|
|
10
10
|
export declare function useEditorAccessTimer(): EditorAccessTimer;
|
|
@@ -7,5 +7,8 @@ declare type LiveStateMiddlewareConfig = {
|
|
|
7
7
|
export declare const createLiveStateMiddleware: (config?: LiveStateMiddlewareConfig) => {
|
|
8
8
|
middleware: (store: any) => (next: any) => (action: any) => any;
|
|
9
9
|
updateLiveStateDataId: (newId?: string) => void;
|
|
10
|
+
updateAllowedActionTypes: (newAllowedActionTypes?: Set<string>) => void;
|
|
11
|
+
updateDisabledActionTypes: (newDisabledActionTypes?: Set<string>) => void;
|
|
12
|
+
updateAllowAction: (newAllowAction?: ((action: any) => boolean) | undefined) => void;
|
|
10
13
|
};
|
|
11
14
|
export {};
|
package/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
2
|
import React$1 from 'react';
|
|
3
|
-
import { Config, UserDataProvider, VeltDataProvider, Velt, ReactionMap, CustomAnnotationDropdownData, AutocompleteData, RecorderLayoutMode, RecorderMode, CommentAnnotation, AutocompleteItem, User, Options, DocumentMetadata, Document, SetDocumentsRequestOptions, Location as Location$1, CommentElement, UnreadCommentsCount, CommentAddEventData, CommentUpdateEventData, CommentSelectionChangeData, CommentSidebarCustomActionEventData, AddCommentAnnotationRequest, AddCommentAnnotationEvent, ApproveCommentAnnotationRequest, ApproveCommentAnnotationEvent, RejectCommentAnnotationRequest, RejectCommentAnnotationEvent, SubscribeCommentAnnotationRequest, SubscribeCommentAnnotationEvent, UnsubscribeCommentAnnotationRequest, UnsubscribeCommentAnnotationEvent, DeleteCommentAnnotationRequest, DeleteCommentAnnotationEvent, CommentRequestQuery, GetCommentAnnotationsResponse, GetCommentAnnotationsCountResponse, AssignUserRequest, AssignUserEvent, UpdatePriorityRequest, UpdatePriorityEvent, UpdateStatusRequest, UpdateStatusEvent, UpdateAccessRequest, UpdateAccessEvent, ResolveCommentAnnotationRequest, GetLinkRequest, GetLinkResponse, CopyLinkRequest, CopyLinkEvent, AddCommentRequest, AddCommentEvent, UpdateCommentRequest, UpdateCommentEvent, DeleteCommentRequest, DeleteCommentEvent, GetCommentRequest, AddAttachmentRequest, AddAttachmentResponse, DeleteAttachmentRequest, DeleteAttachmentEvent, GetAttachmentRequest, Attachment, DeleteRecordingRequest, DeleteRecordingEvent, GetRecordingRequest, RecordedData, AddReactionRequest, AddReactionEvent, DeleteReactionRequest, DeleteReactionEvent, ToggleReactionRequest, ToggleReactionEvent, CommentEventTypesMap, CoreEventTypesMap, CursorElement, CursorUser, LiveStateSyncElement, SetLiveStateDataConfig, UserEditorAccess, EditorAccessTimer, ServerConnectionState, PresenceElement, PresenceUser, RecorderElement, RecorderRequestQuery, GetRecordingsResponse, RecorderEventTypesMap, RewriterElement, SelectionElement, LiveSelectionData, TagElement, TagAnnotation, ViewsElement, ViewsByUser, ViewsByDate, NotificationElement, Notification, AutocompleteElement, AutocompleteChipData, ContactElement, SelectedUserContact, GetContactListResponse } from '@veltdev/types';
|
|
3
|
+
import { Config, UserDataProvider, VeltDataProvider, Velt, ReactionMap, CustomAnnotationDropdownData, AutocompleteData, RecorderLayoutMode, RecorderMode, CommentAnnotation, NotificationPanelMode, AutocompleteItem, User, Options, DocumentMetadata, Document, SetDocumentsRequestOptions, Location as Location$1, CommentElement, UnreadCommentsCount, CommentAddEventData, CommentUpdateEventData, CommentSelectionChangeData, CommentSidebarCustomActionEventData, AddCommentAnnotationRequest, AddCommentAnnotationEvent, ApproveCommentAnnotationRequest, ApproveCommentAnnotationEvent, RejectCommentAnnotationRequest, RejectCommentAnnotationEvent, SubscribeCommentAnnotationRequest, SubscribeCommentAnnotationEvent, UnsubscribeCommentAnnotationRequest, UnsubscribeCommentAnnotationEvent, DeleteCommentAnnotationRequest, DeleteCommentAnnotationEvent, CommentRequestQuery, GetCommentAnnotationsResponse, GetCommentAnnotationsCountResponse, AssignUserRequest, AssignUserEvent, UpdatePriorityRequest, UpdatePriorityEvent, UpdateStatusRequest, UpdateStatusEvent, UpdateAccessRequest, UpdateAccessEvent, ResolveCommentAnnotationRequest, GetLinkRequest, GetLinkResponse, CopyLinkRequest, CopyLinkEvent, AddCommentRequest, AddCommentEvent, UpdateCommentRequest, UpdateCommentEvent, DeleteCommentRequest, DeleteCommentEvent, GetCommentRequest, AddAttachmentRequest, AddAttachmentResponse, DeleteAttachmentRequest, DeleteAttachmentEvent, GetAttachmentRequest, Attachment, DeleteRecordingRequest, DeleteRecordingEvent, GetRecordingRequest, RecordedData, AddReactionRequest, AddReactionEvent, DeleteReactionRequest, DeleteReactionEvent, ToggleReactionRequest, ToggleReactionEvent, CommentEventTypesMap, CoreEventTypesMap, CursorElement, CursorUser, LiveStateSyncElement, SetLiveStateDataConfig, UserEditorAccess, EditorAccessTimer, ServerConnectionState, PresenceElement, PresenceUser, RecorderElement, RecorderRequestQuery, GetRecordingsResponse, RecorderEventTypesMap, RewriterElement, SelectionElement, LiveSelectionData, TagElement, TagAnnotation, ViewsElement, ViewsByUser, ViewsByDate, NotificationElement, Notification, AutocompleteElement, AutocompleteChipData, ContactElement, SelectedUserContact, GetContactListResponse } from '@veltdev/types';
|
|
4
4
|
|
|
5
5
|
interface IVeltProps extends React$1.DetailedHTMLProps<React$1.HTMLAttributes<HTMLElement>, HTMLElement> {
|
|
6
6
|
apiKey: string;
|
|
@@ -177,6 +177,8 @@ interface IVeltCommentsProps extends React$1.DetailedHTMLProps<React$1.HTMLAttri
|
|
|
177
177
|
showMentionGroupsFirst?: boolean;
|
|
178
178
|
showMentionGroupsOnly?: boolean;
|
|
179
179
|
fullExpanded?: boolean;
|
|
180
|
+
commentToNearestAllowedElement?: boolean;
|
|
181
|
+
draftMode?: boolean;
|
|
180
182
|
}
|
|
181
183
|
declare const SnippylyComments: React$1.FC<IVeltCommentsProps>;
|
|
182
184
|
|
|
@@ -261,6 +263,7 @@ interface IVeltCommentsSidebarProps {
|
|
|
261
263
|
filterOptionLayout?: 'checkbox' | 'dropdown';
|
|
262
264
|
filterCount?: boolean;
|
|
263
265
|
fullExpanded?: boolean;
|
|
266
|
+
systemFiltersOperator?: 'and' | 'or';
|
|
264
267
|
}
|
|
265
268
|
declare const SnippylyCommentsSidebar: React$1.FC<IVeltCommentsSidebarProps>;
|
|
266
269
|
|
|
@@ -320,6 +323,7 @@ interface IVeltPresenceProps {
|
|
|
320
323
|
disableFlockNavigation?: boolean;
|
|
321
324
|
defaultFlockNavigation?: boolean;
|
|
322
325
|
self?: boolean;
|
|
326
|
+
shadowDom?: boolean;
|
|
323
327
|
onNavigate?: (pageInfo: {
|
|
324
328
|
path: string;
|
|
325
329
|
url: string;
|
|
@@ -598,6 +602,7 @@ interface IVeltNotificationsPanelProps {
|
|
|
598
602
|
variant?: string;
|
|
599
603
|
tabConfig?: NotificationTabConfig;
|
|
600
604
|
readNotificationsOnForYouTab?: boolean;
|
|
605
|
+
panelOpenMode?: NotificationPanelMode;
|
|
601
606
|
}
|
|
602
607
|
declare const VeltNotificationsPanel: React$1.FC<IVeltNotificationsPanelProps>;
|
|
603
608
|
|
|
@@ -3801,8 +3806,8 @@ declare class LiveStateDataConfig {
|
|
|
3801
3806
|
listenToNewChangesOnly?: boolean;
|
|
3802
3807
|
}
|
|
3803
3808
|
declare function useLiveStateSyncUtils(): LiveStateSyncElement | undefined;
|
|
3804
|
-
declare function useLiveStateData(liveStateDataId?: string, liveStateDataConfig?: LiveStateDataConfig):
|
|
3805
|
-
declare function useSetLiveStateData(liveStateDataId: string, liveStateData:
|
|
3809
|
+
declare function useLiveStateData<T = unknown>(liveStateDataId?: string, liveStateDataConfig?: LiveStateDataConfig): T | undefined;
|
|
3810
|
+
declare function useSetLiveStateData<T = unknown>(liveStateDataId: string, liveStateData: T, config?: SetLiveStateDataConfig): void;
|
|
3806
3811
|
declare function useUserEditorState(): UserEditorAccess | null | undefined;
|
|
3807
3812
|
declare function useEditor(): User | null;
|
|
3808
3813
|
declare function useEditorAccessTimer(): EditorAccessTimer;
|
|
@@ -3868,6 +3873,9 @@ declare type LiveStateMiddlewareConfig = {
|
|
|
3868
3873
|
declare const createLiveStateMiddleware: (config?: LiveStateMiddlewareConfig) => {
|
|
3869
3874
|
middleware: (store: any) => (next: any) => (action: any) => any;
|
|
3870
3875
|
updateLiveStateDataId: (newId?: string) => void;
|
|
3876
|
+
updateAllowedActionTypes: (newAllowedActionTypes?: Set<string>) => void;
|
|
3877
|
+
updateDisabledActionTypes: (newDisabledActionTypes?: Set<string>) => void;
|
|
3878
|
+
updateAllowAction: (newAllowAction?: ((action: any) => boolean) | undefined) => void;
|
|
3871
3879
|
};
|
|
3872
3880
|
|
|
3873
3881
|
export { SnippylyArrowTool as VeltArrowTool, SnippylyArrows as VeltArrows, VeltAutocomplete, VeltAutocompleteChipTooltipWireframe, VeltAutocompleteGroupOptionWireframe, VeltAutocompleteOptionWireframe, VeltButtonWireframe, VeltCanvasComment, VeltChartComment, SnippylyCommentBubble as VeltCommentBubble, VeltCommentBubbleWireframe, VeltCommentComposer, VeltCommentComposerWireframe, VeltCommentDialogOptionsDropdownContentWireframe, VeltCommentDialogOptionsDropdownTriggerWireframe, VeltCommentDialogPriorityDropdownContentWireframe, VeltCommentDialogPriorityDropdownTriggerWireframe, VeltCommentDialogStatusDropdownContentWireframe, VeltCommentDialogStatusDropdownTriggerWireframe, VeltCommentDialogWireframe, VeltCommentPin, VeltCommentPinWireframe, VeltCommentPlayerTimeline, VeltCommentText, VeltCommentThread, VeltCommentThreadWireframe, SnippylyCommentTool as VeltCommentTool, VeltCommentToolWireframe, SnippylyComments as VeltComments, VeltCommentsMinimap, SnippylyCommentsSidebar as VeltCommentsSidebar, VeltCommentsSidebarButton, VeltCommentsSidebarStatusDropdownWireframe, VeltCommentsSidebarWireframe, VeltConfirmDialogWireframe, SnippylyCursor as VeltCursor, VeltData, VeltHighChartComments, SnippylyHuddle as VeltHuddle, SnippylyHuddleTool as VeltHuddleTool, VeltIf, VeltInlineCommentsSection, VeltInlineCommentsSectionWireframe, VeltInlineReactionsSection, VeltInlineReactionsSectionWireframe, VeltMediaSourceSettingsWireframe, VeltMultiThreadCommentDialogWireframe, VeltNivoChartComments, VeltNotificationsHistoryPanel, VeltNotificationsPanel, VeltNotificationsPanelWireframe, VeltNotificationsTool, VeltNotificationsToolWireframe, VeltPersistentCommentModeWireframe, SnippylyPresence as VeltPresence, SnippylyProvider as VeltProvider, VeltReactionPinTooltipWireframe, VeltReactionPinWireframe, VeltReactionTool, VeltReactionToolWireframe, VeltReactionsPanelWireframe, VeltRecorderAllToolMenuWireframe, VeltRecorderAllToolWireframe, VeltRecorderAudioToolWireframe, SnippylyRecorderControlPanel as VeltRecorderControlPanel, VeltRecorderControlPanelWireframe, SnippylyRecorderNotes as VeltRecorderNotes, SnippylyRecorderPlayer as VeltRecorderPlayer, VeltRecorderPlayerExpandedWireframe, VeltRecorderPlayerWireframe, VeltRecorderScreenToolWireframe, SnippylyRecorderTool as VeltRecorderTool, VeltRecorderVideoToolWireframe, VeltRecordingPreviewStepsDialogWireframe, SnippylySidebarButton as VeltSidebarButton, VeltSidebarButtonWireframe, VeltSingleEditorModePanel, VeltSingleEditorModePanelWireframe, VeltSubtitlesWireframe, SnippylyTagTool as VeltTagTool, SnippylyTags as VeltTags, VeltTextCommentToolWireframe, VeltTextCommentToolbar as VeltTextCommentToolbarWireframe, VeltTranscriptionWireframe, SnippylyUserInviteTool as VeltUserInviteTool, SnippylyUserRequestTool as VeltUserRequestTool, VeltUserSelectorDropdown as VeltUserSelectorDropdownWireframe, VeltVideoEditorPlayerWireframe, VeltVideoPlayer, VeltViewAnalytics, VeltWireframe, createLiveStateMiddleware, useAIRewriterUtils, useAddAttachment, useAddComment, useAddCommentAnnotation, useAddReaction, useApproveCommentAnnotation, useAssignUser, useAutocompleteChipClick, useAutocompleteUtils, useClient, useCommentActionCallback, useCommentAddHandler, useCommentAnnotationById, useCommentAnnotations, useCommentAnnotationsCount, useCommentCopyLinkHandler, useCommentDialogSidebarClickHandler, useCommentEventCallback, useCommentModeState, useCommentSelectionChangeHandler, useCommentSidebarActionButtonClick, useCommentSidebarData, useCommentSidebarInit, useCommentUpdateHandler, useCommentUtils, useContactList, useContactSelected, useContactUtils, useCopyLink, useCursorUsers, useCursorUtils, useDeleteAttachment, useDeleteComment, useDeleteCommentAnnotation, useDeleteReaction, useDeleteRecording, useEditor, useEditorAccessRequestHandler, useEditorAccessTimer, useGetAttachment, useGetComment, useGetCommentAnnotations, useGetLink, useGetRecording, useHuddleUtils, useIdentify, useLiveSelectionDataHandler, useLiveSelectionUtils, useLiveState, useLiveStateData, useLiveStateSyncUtils, useNotificationUtils, useNotificationsData, usePresenceUsers, usePresenceUtils, useRecorderAddHandler, useRecorderEventCallback, useRecorderUtils, useRecordingDataByRecorderId, useRecordings, useRejectCommentAnnotation, useResolveCommentAnnotation, useServerConnectionStateChangeHandler, useSetDocument, useSetDocumentId, useSetDocuments, useSetLiveStateData, useSetLocation, useSubscribeCommentAnnotation, useTagAnnotations, useTagUtils, useToggleReaction, useUniqueViewsByDate, useUniqueViewsByUser, useUnreadCommentAnnotationCountByLocationId, useUnreadCommentAnnotationCountOnCurrentDocument, useUnreadCommentCountByAnnotationId, useUnreadCommentCountByLocationId, useUnreadCommentCountOnCurrentDocument, useUnreadNotificationsCount, useUnsetDocumentId, useUnsetDocuments, useUnsubscribeCommentAnnotation, useUpdateAccess, useUpdateComment, useUpdatePriority, useUpdateStatus, useUserEditorState, useVeltClient, useVeltEventCallback, useVeltInitState, useViewsUtils };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@veltdev/react",
|
|
3
|
-
"version": "4.4.0-
|
|
3
|
+
"version": "4.4.0-patch.1",
|
|
4
4
|
"description": "Velt is an SDK to add collaborative features to your product within minutes. Example: Comments like Figma, Frame.io, Google docs or sheets, Recording like Loom, Huddles like Slack and much more.",
|
|
5
5
|
"homepage": "https://velt.dev",
|
|
6
6
|
"keywords": [
|
|
@@ -35,7 +35,7 @@
|
|
|
35
35
|
"scripts": {
|
|
36
36
|
"test": "echo \"Error: no test specified\" && exit 1",
|
|
37
37
|
"version:update": "node ../update-npm-package.mjs",
|
|
38
|
-
"publish:sdk": "npm publish --access public"
|
|
38
|
+
"publish:sdk": "npm publish --access public --tag v4-0-0-patch-1"
|
|
39
39
|
},
|
|
40
40
|
"author": "",
|
|
41
41
|
"license": "ISC",
|