@veltdev/react 3.0.42 → 3.0.44
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 +66 -3
- package/cjs/index.js.map +1 -1
- package/cjs/types/components/SnippylyCommentsSidebar/SnippylyCommentsSidebar.d.ts +3 -0
- package/cjs/types/components/VeltCommentDialogWireframe/VeltCommentDialogNavigationButton/VeltCommentDialogNavigationButton.d.ts +6 -0
- package/cjs/types/components/VeltCommentDialogWireframe/VeltCommentDialogNavigationButton/index.d.ts +1 -0
- package/cjs/types/components/VeltCommentDialogWireframe/VeltCommentDialogWireframe.d.ts +2 -0
- package/cjs/types/components/VeltCommentText/VeltCommentText.d.ts +7 -0
- package/cjs/types/components/VeltCommentText/index.d.ts +1 -0
- package/cjs/types/components/VeltCommentThreadWireframe/VeltCommentThreadWireframe.d.ts +8 -0
- package/cjs/types/components/VeltCommentThreadWireframe/index.d.ts +1 -0
- package/cjs/types/components/VeltCommentsSidebarWireframe/VeltCommentsSidebarFocusedThread/VeltCommentsSidebarFocusedThread.d.ts +12 -0
- package/cjs/types/components/VeltCommentsSidebarWireframe/VeltCommentsSidebarFocusedThread/VeltCommentsSidebarFocusedThreadBackButton/VeltCommentsSidebarFocusedThreadBackButton.d.ts +8 -0
- package/cjs/types/components/VeltCommentsSidebarWireframe/VeltCommentsSidebarFocusedThread/VeltCommentsSidebarFocusedThreadBackButton/index.d.ts +1 -0
- package/cjs/types/components/VeltCommentsSidebarWireframe/VeltCommentsSidebarFocusedThread/VeltCommentsSidebarFocusedThreadDialogContainer/VeltCommentsSidebarFocusedThreadDialogContainer.d.ts +8 -0
- package/cjs/types/components/VeltCommentsSidebarWireframe/VeltCommentsSidebarFocusedThread/VeltCommentsSidebarFocusedThreadDialogContainer/index.d.ts +1 -0
- package/cjs/types/components/VeltCommentsSidebarWireframe/VeltCommentsSidebarFocusedThread/index.d.ts +1 -0
- package/cjs/types/components/VeltCommentsSidebarWireframe/VeltCommentsSidebarWireframe.d.ts +2 -0
- package/cjs/types/components/index.d.ts +2 -0
- package/cjs/types/constants.d.ts +1 -1
- package/cjs/types/hooks/SelectionElement.d.ts +2 -1
- package/cjs/types/hooks/index.d.ts +1 -1
- package/esm/index.js +64 -4
- package/esm/index.js.map +1 -1
- package/esm/types/components/SnippylyCommentsSidebar/SnippylyCommentsSidebar.d.ts +3 -0
- package/esm/types/components/VeltCommentDialogWireframe/VeltCommentDialogNavigationButton/VeltCommentDialogNavigationButton.d.ts +6 -0
- package/esm/types/components/VeltCommentDialogWireframe/VeltCommentDialogNavigationButton/index.d.ts +1 -0
- package/esm/types/components/VeltCommentDialogWireframe/VeltCommentDialogWireframe.d.ts +2 -0
- package/esm/types/components/VeltCommentText/VeltCommentText.d.ts +7 -0
- package/esm/types/components/VeltCommentText/index.d.ts +1 -0
- package/esm/types/components/VeltCommentThreadWireframe/VeltCommentThreadWireframe.d.ts +8 -0
- package/esm/types/components/VeltCommentThreadWireframe/index.d.ts +1 -0
- package/esm/types/components/VeltCommentsSidebarWireframe/VeltCommentsSidebarFocusedThread/VeltCommentsSidebarFocusedThread.d.ts +12 -0
- package/esm/types/components/VeltCommentsSidebarWireframe/VeltCommentsSidebarFocusedThread/VeltCommentsSidebarFocusedThreadBackButton/VeltCommentsSidebarFocusedThreadBackButton.d.ts +8 -0
- package/esm/types/components/VeltCommentsSidebarWireframe/VeltCommentsSidebarFocusedThread/VeltCommentsSidebarFocusedThreadBackButton/index.d.ts +1 -0
- package/esm/types/components/VeltCommentsSidebarWireframe/VeltCommentsSidebarFocusedThread/VeltCommentsSidebarFocusedThreadDialogContainer/VeltCommentsSidebarFocusedThreadDialogContainer.d.ts +8 -0
- package/esm/types/components/VeltCommentsSidebarWireframe/VeltCommentsSidebarFocusedThread/VeltCommentsSidebarFocusedThreadDialogContainer/index.d.ts +1 -0
- package/esm/types/components/VeltCommentsSidebarWireframe/VeltCommentsSidebarFocusedThread/index.d.ts +1 -0
- package/esm/types/components/VeltCommentsSidebarWireframe/VeltCommentsSidebarWireframe.d.ts +2 -0
- package/esm/types/components/index.d.ts +2 -0
- package/esm/types/constants.d.ts +1 -1
- package/esm/types/hooks/SelectionElement.d.ts +2 -1
- package/esm/types/hooks/index.d.ts +1 -1
- package/index.d.ts +45 -2
- package/package.json +1 -1
|
@@ -58,10 +58,13 @@ export interface IVeltCommentsSidebarProps {
|
|
|
58
58
|
onSidebarCommentClick?: Function;
|
|
59
59
|
onCommentClick?: Function;
|
|
60
60
|
onSidebarClose?: Function;
|
|
61
|
+
onCommentNavigationButtonClick?: Function;
|
|
61
62
|
darkMode?: boolean;
|
|
62
63
|
position?: "right" | "left";
|
|
63
64
|
filterPanelLayout?: 'menu' | 'bottomSheet';
|
|
64
65
|
customActions?: boolean;
|
|
66
|
+
focusedThreadDialogVariant?: string;
|
|
67
|
+
focusedThreadMode?: boolean;
|
|
65
68
|
}
|
|
66
69
|
declare const SnippylyCommentsSidebar: React.FC<IVeltCommentsSidebarProps>;
|
|
67
70
|
export default SnippylyCommentsSidebar;
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
export interface IVeltCommentDialogNavigationButtonProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> {
|
|
3
|
+
variant?: string;
|
|
4
|
+
}
|
|
5
|
+
declare const VeltCommentDialogNavigationButton: React.FC<IVeltCommentDialogNavigationButtonProps>;
|
|
6
|
+
export default VeltCommentDialogNavigationButton;
|
package/esm/types/components/VeltCommentDialogWireframe/VeltCommentDialogNavigationButton/index.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default } from "./VeltCommentDialogNavigationButton";
|
|
@@ -27,6 +27,7 @@ import { IVeltCommentDialogCustomAnnotationDropdown } from "./VeltCommentDialogC
|
|
|
27
27
|
import { IVeltCommentDialogDeleteButtonProps } from "./VeltCommentDialogDeleteButton/VeltCommentDialogDeleteButton";
|
|
28
28
|
import { IVeltCommentDialogCloseButtonProps } from "./VeltCommentDialogCloseButton/VeltCommentDialogCloseButton";
|
|
29
29
|
import { IVeltCommentDialogUnresolveButtonProps } from "./VeltCommentDialogUnresolveButton/VeltCommentDialogUnresolveButton";
|
|
30
|
+
import { IVeltCommentDialogNavigationButtonProps } from "./VeltCommentDialogNavigationButton/VeltCommentDialogNavigationButton";
|
|
30
31
|
export interface IVeltCommentDialogWireframeProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> {
|
|
31
32
|
variant?: string;
|
|
32
33
|
}
|
|
@@ -59,5 +60,6 @@ declare const VeltCommentDialogWireframe: React.FC<IVeltCommentDialogWireframePr
|
|
|
59
60
|
CustomAnnotationDropdown: IVeltCommentDialogCustomAnnotationDropdown;
|
|
60
61
|
DeleteButton: React.FC<IVeltCommentDialogDeleteButtonProps>;
|
|
61
62
|
CloseButton: React.FC<IVeltCommentDialogCloseButtonProps>;
|
|
63
|
+
NavigationButton: React.FC<IVeltCommentDialogNavigationButtonProps>;
|
|
62
64
|
};
|
|
63
65
|
export default VeltCommentDialogWireframe;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
export interface IVeltCommentTextProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> {
|
|
3
|
+
annotationId?: string;
|
|
4
|
+
multiThreadAnnotationId?: string;
|
|
5
|
+
}
|
|
6
|
+
declare const VeltCommentText: React.FC<IVeltCommentTextProps>;
|
|
7
|
+
export default VeltCommentText;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default } from './VeltCommentText';
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
export interface IVeltCommentThreadWireframeProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> {
|
|
3
|
+
variant?: string;
|
|
4
|
+
}
|
|
5
|
+
export interface IVeltCommentThreadWireframe extends React.FC<IVeltCommentThreadWireframeProps> {
|
|
6
|
+
}
|
|
7
|
+
declare const VeltCommentThreadWireframe: IVeltCommentThreadWireframe;
|
|
8
|
+
export default VeltCommentThreadWireframe;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default } from './VeltCommentThreadWireframe';
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { IVeltCommentsSidebarFocusedThreadBackButton } from './VeltCommentsSidebarFocusedThreadBackButton/VeltCommentsSidebarFocusedThreadBackButton';
|
|
3
|
+
import { IVeltCommentsSidebarFocusedThreadDialogContainer } from './VeltCommentsSidebarFocusedThreadDialogContainer/VeltCommentsSidebarFocusedThreadDialogContainer';
|
|
4
|
+
export interface IVeltCommentsSidebarFocusedThreadProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> {
|
|
5
|
+
variant?: string;
|
|
6
|
+
}
|
|
7
|
+
export interface IVeltCommentsSidebarFocusedThread extends React.FC<IVeltCommentsSidebarFocusedThreadProps> {
|
|
8
|
+
BackButton: IVeltCommentsSidebarFocusedThreadBackButton;
|
|
9
|
+
DialogContainer: IVeltCommentsSidebarFocusedThreadDialogContainer;
|
|
10
|
+
}
|
|
11
|
+
declare const VeltCommentsSidebarFocusedThread: IVeltCommentsSidebarFocusedThread;
|
|
12
|
+
export default VeltCommentsSidebarFocusedThread;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
export interface IVeltCommentsSidebarFocusedThreadBackButtonProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> {
|
|
3
|
+
variant?: string;
|
|
4
|
+
}
|
|
5
|
+
export interface IVeltCommentsSidebarFocusedThreadBackButton extends React.FC<IVeltCommentsSidebarFocusedThreadBackButtonProps> {
|
|
6
|
+
}
|
|
7
|
+
declare const VeltCommentsSidebarFocusedThreadBackButton: IVeltCommentsSidebarFocusedThreadBackButton;
|
|
8
|
+
export default VeltCommentsSidebarFocusedThreadBackButton;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default } from "./VeltCommentsSidebarFocusedThreadBackButton";
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
export interface IVeltCommentsSidebarFocusedThreadDialogContainerProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> {
|
|
3
|
+
variant?: string;
|
|
4
|
+
}
|
|
5
|
+
export interface IVeltCommentsSidebarFocusedThreadDialogContainer extends React.FC<IVeltCommentsSidebarFocusedThreadDialogContainerProps> {
|
|
6
|
+
}
|
|
7
|
+
declare const VeltCommentsSidebarFocusedThreadDialogContainer: IVeltCommentsSidebarFocusedThreadDialogContainer;
|
|
8
|
+
export default VeltCommentsSidebarFocusedThreadDialogContainer;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default } from "./VeltCommentsSidebarFocusedThreadDialogContainer";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default } from './VeltCommentsSidebarFocusedThread';
|
|
@@ -15,6 +15,7 @@ import { IVeltCommentsSidebarSkeletonProps } from './VeltCommentsSidebarSkeleton
|
|
|
15
15
|
import { IVeltCommentsSidebarStatus } from './VeltCommentsSidebarStatus/VeltCommentsSidebarStatus';
|
|
16
16
|
import { IVeltCommentsSidebarResetFilterButtonWireframeProps } from './VeltCommentsSidebarResetFilterButtonWireframe/VeltCommentsSidebarResetFilterButtonWireframe';
|
|
17
17
|
import { IVeltCommentsSidebarActionButtonProps } from './VeltCommentsSidebarActionButton/VeltCommentsSidebarActionButton';
|
|
18
|
+
import { IVeltCommentsSidebarFocusedThread } from './VeltCommentsSidebarFocusedThread/VeltCommentsSidebarFocusedThread';
|
|
18
19
|
export interface IVeltCommentsSidebarWireframeProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> {
|
|
19
20
|
variant?: string;
|
|
20
21
|
}
|
|
@@ -35,5 +36,6 @@ declare const VeltCommentsSidebarWireframe: React.FC<IVeltCommentsSidebarWirefra
|
|
|
35
36
|
MinimalActionsDropdown: IVeltCommentsSidebarMinimalActionsDropdownWireframe;
|
|
36
37
|
ResetFilterButton: React.FC<IVeltCommentsSidebarResetFilterButtonWireframeProps>;
|
|
37
38
|
ActionButton: React.FC<IVeltCommentsSidebarActionButtonProps>;
|
|
39
|
+
FocusedThread: IVeltCommentsSidebarFocusedThread;
|
|
38
40
|
};
|
|
39
41
|
export default VeltCommentsSidebarWireframe;
|
|
@@ -32,6 +32,7 @@ export { default as VeltChartComment } from "./VeltChartComment";
|
|
|
32
32
|
export { default as VeltAutocomplete } from "./VeltAutocomplete";
|
|
33
33
|
export { default as VeltInlineCommentsSection } from "./VeltInlineCommentsSection";
|
|
34
34
|
export { default as VeltCommentPin } from "./VeltCommentPin";
|
|
35
|
+
export { default as VeltCommentText } from "./VeltCommentText";
|
|
35
36
|
export { default as VeltCanvasComment } from "./VeltCanvasComment";
|
|
36
37
|
export { default as VeltData } from "./VeltData";
|
|
37
38
|
export { default as VeltIf } from "./VeltIf";
|
|
@@ -70,3 +71,4 @@ export { default as VeltInlineReactionsSectionWireframe } from "./VeltInlineReac
|
|
|
70
71
|
export { default as VeltPersistentCommentModeWireframe } from "./VeltPersistentCommentModeWireframe";
|
|
71
72
|
export { default as VeltMultiThreadCommentDialogWireframe } from "./VeltMultiThreadCommentDialogWireframe";
|
|
72
73
|
export { default as VeltCommentComposerWireframe } from "./VeltCommentComposerWireframe";
|
|
74
|
+
export { default as VeltCommentThreadWireframe } from "./VeltCommentThreadWireframe";
|
package/esm/types/constants.d.ts
CHANGED
|
@@ -1,2 +1,3 @@
|
|
|
1
|
-
import { SelectionElement } from "@veltdev/types";
|
|
1
|
+
import { SelectionElement, LiveSelectionData } from "@veltdev/types";
|
|
2
2
|
export declare function useLiveSelectionUtils(): SelectionElement | undefined;
|
|
3
|
+
export declare function useLiveSelectionDataHandler(): LiveSelectionData | null;
|
|
@@ -6,7 +6,7 @@ export { useLiveStateSyncUtils, useLiveStateData, useSetLiveStateData, useUserEd
|
|
|
6
6
|
export { usePresenceUtils, usePresenceUsers, } from './PresenceElement';
|
|
7
7
|
export { useRecorderUtils, useRecorderAddHandler, } from './RecorderElement';
|
|
8
8
|
export { useAIRewriterUtils, } from './RewriterElement';
|
|
9
|
-
export { useLiveSelectionUtils, } from './SelectionElement';
|
|
9
|
+
export { useLiveSelectionUtils, useLiveSelectionDataHandler, } from './SelectionElement';
|
|
10
10
|
export { useTagUtils, useTagAnnotations, } from './TagElement';
|
|
11
11
|
export { useViewsUtils, useUniqueViewsByDate, useUniqueViewsByUser, } from './ViewsElement';
|
|
12
12
|
export { useNotificationUtils, useNotificationsData, useUnreadNotificationsCount } from './NotificationElement';
|
package/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
2
|
import React from 'react';
|
|
3
|
-
import { Config, Velt, ReactionMap, AutocompleteItem, User, Options, DocumentMetadata, Location as Location$1, CommentElement, CommentAnnotation, CommentSelectionChangeData, CommentSidebarCustomActionEventData, CursorElement, CursorUser, LiveStateSyncElement, UserEditorAccess, EditorAccessTimer, ServerConnectionState, PresenceElement, PresenceUser, RecorderElement, RewriterElement, SelectionElement, TagElement, TagAnnotation, ViewsElement, ViewsByUser, ViewsByDate, NotificationElement, Notification, AutocompleteElement, AutocompleteChipData, ContactElement, SelectedUserContact } from '@veltdev/types';
|
|
3
|
+
import { Config, Velt, ReactionMap, AutocompleteItem, User, Options, DocumentMetadata, Location as Location$1, CommentElement, CommentAnnotation, CommentSelectionChangeData, CommentSidebarCustomActionEventData, CursorElement, CursorUser, LiveStateSyncElement, UserEditorAccess, EditorAccessTimer, ServerConnectionState, PresenceElement, PresenceUser, RecorderElement, RewriterElement, SelectionElement, LiveSelectionData, TagElement, TagAnnotation, ViewsElement, ViewsByUser, ViewsByDate, NotificationElement, Notification, AutocompleteElement, AutocompleteChipData, ContactElement, SelectedUserContact } from '@veltdev/types';
|
|
4
4
|
|
|
5
5
|
interface IVeltProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> {
|
|
6
6
|
apiKey: string;
|
|
@@ -229,10 +229,13 @@ interface IVeltCommentsSidebarProps {
|
|
|
229
229
|
onSidebarCommentClick?: Function;
|
|
230
230
|
onCommentClick?: Function;
|
|
231
231
|
onSidebarClose?: Function;
|
|
232
|
+
onCommentNavigationButtonClick?: Function;
|
|
232
233
|
darkMode?: boolean;
|
|
233
234
|
position?: "right" | "left";
|
|
234
235
|
filterPanelLayout?: 'menu' | 'bottomSheet';
|
|
235
236
|
customActions?: boolean;
|
|
237
|
+
focusedThreadDialogVariant?: string;
|
|
238
|
+
focusedThreadMode?: boolean;
|
|
236
239
|
}
|
|
237
240
|
declare const SnippylyCommentsSidebar: React.FC<IVeltCommentsSidebarProps>;
|
|
238
241
|
|
|
@@ -614,6 +617,12 @@ interface IVeltCommentPinProps extends React.DetailedHTMLProps<React.HTMLAttribu
|
|
|
614
617
|
}
|
|
615
618
|
declare const VeltCommentPin: React.FC<IVeltCommentPinProps>;
|
|
616
619
|
|
|
620
|
+
interface IVeltCommentTextProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> {
|
|
621
|
+
annotationId?: string;
|
|
622
|
+
multiThreadAnnotationId?: string;
|
|
623
|
+
}
|
|
624
|
+
declare const VeltCommentText: React.FC<IVeltCommentTextProps>;
|
|
625
|
+
|
|
617
626
|
interface IVeltCanvasCommentProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> {
|
|
618
627
|
canvasId: string;
|
|
619
628
|
position: any;
|
|
@@ -1305,6 +1314,10 @@ interface IVeltCommentDialogUnresolveButtonProps extends React.DetailedHTMLProps
|
|
|
1305
1314
|
variant?: string;
|
|
1306
1315
|
}
|
|
1307
1316
|
|
|
1317
|
+
interface IVeltCommentDialogNavigationButtonProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> {
|
|
1318
|
+
variant?: string;
|
|
1319
|
+
}
|
|
1320
|
+
|
|
1308
1321
|
interface IVeltCommentDialogWireframeProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> {
|
|
1309
1322
|
variant?: string;
|
|
1310
1323
|
}
|
|
@@ -1337,6 +1350,7 @@ declare const VeltCommentDialogWireframe: React.FC<IVeltCommentDialogWireframePr
|
|
|
1337
1350
|
CustomAnnotationDropdown: IVeltCommentDialogCustomAnnotationDropdown;
|
|
1338
1351
|
DeleteButton: React.FC<IVeltCommentDialogDeleteButtonProps>;
|
|
1339
1352
|
CloseButton: React.FC<IVeltCommentDialogCloseButtonProps>;
|
|
1353
|
+
NavigationButton: React.FC<IVeltCommentDialogNavigationButtonProps>;
|
|
1340
1354
|
};
|
|
1341
1355
|
|
|
1342
1356
|
interface IVeltCommentsSidebarCloseButtonProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> {
|
|
@@ -1748,6 +1762,26 @@ interface IVeltCommentsSidebarActionButtonProps extends React.DetailedHTMLProps<
|
|
|
1748
1762
|
id: string;
|
|
1749
1763
|
}
|
|
1750
1764
|
|
|
1765
|
+
interface IVeltCommentsSidebarFocusedThreadBackButtonProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> {
|
|
1766
|
+
variant?: string;
|
|
1767
|
+
}
|
|
1768
|
+
interface IVeltCommentsSidebarFocusedThreadBackButton extends React.FC<IVeltCommentsSidebarFocusedThreadBackButtonProps> {
|
|
1769
|
+
}
|
|
1770
|
+
|
|
1771
|
+
interface IVeltCommentsSidebarFocusedThreadDialogContainerProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> {
|
|
1772
|
+
variant?: string;
|
|
1773
|
+
}
|
|
1774
|
+
interface IVeltCommentsSidebarFocusedThreadDialogContainer extends React.FC<IVeltCommentsSidebarFocusedThreadDialogContainerProps> {
|
|
1775
|
+
}
|
|
1776
|
+
|
|
1777
|
+
interface IVeltCommentsSidebarFocusedThreadProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> {
|
|
1778
|
+
variant?: string;
|
|
1779
|
+
}
|
|
1780
|
+
interface IVeltCommentsSidebarFocusedThread extends React.FC<IVeltCommentsSidebarFocusedThreadProps> {
|
|
1781
|
+
BackButton: IVeltCommentsSidebarFocusedThreadBackButton;
|
|
1782
|
+
DialogContainer: IVeltCommentsSidebarFocusedThreadDialogContainer;
|
|
1783
|
+
}
|
|
1784
|
+
|
|
1751
1785
|
interface IVeltCommentsSidebarWireframeProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> {
|
|
1752
1786
|
variant?: string;
|
|
1753
1787
|
}
|
|
@@ -1768,6 +1802,7 @@ declare const VeltCommentsSidebarWireframe: React.FC<IVeltCommentsSidebarWirefra
|
|
|
1768
1802
|
MinimalActionsDropdown: IVeltCommentsSidebarMinimalActionsDropdownWireframe;
|
|
1769
1803
|
ResetFilterButton: React.FC<IVeltCommentsSidebarResetFilterButtonWireframeProps>;
|
|
1770
1804
|
ActionButton: React.FC<IVeltCommentsSidebarActionButtonProps>;
|
|
1805
|
+
FocusedThread: IVeltCommentsSidebarFocusedThread;
|
|
1771
1806
|
};
|
|
1772
1807
|
|
|
1773
1808
|
interface IVeltCommentPinGhostCommentIndicatorProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> {
|
|
@@ -2590,6 +2625,13 @@ interface IVeltCommentComposerWireframe extends React.FC<IVeltCommentComposerWir
|
|
|
2590
2625
|
}
|
|
2591
2626
|
declare const VeltCommentComposerWireframe: IVeltCommentComposerWireframe;
|
|
2592
2627
|
|
|
2628
|
+
interface IVeltCommentThreadWireframeProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> {
|
|
2629
|
+
variant?: string;
|
|
2630
|
+
}
|
|
2631
|
+
interface IVeltCommentThreadWireframe extends React.FC<IVeltCommentThreadWireframeProps> {
|
|
2632
|
+
}
|
|
2633
|
+
declare const VeltCommentThreadWireframe: IVeltCommentThreadWireframe;
|
|
2634
|
+
|
|
2593
2635
|
declare function useVeltClient(): {
|
|
2594
2636
|
client: Velt;
|
|
2595
2637
|
};
|
|
@@ -2669,6 +2711,7 @@ declare function useRecorderAddHandler(): any;
|
|
|
2669
2711
|
declare function useAIRewriterUtils(): RewriterElement | undefined;
|
|
2670
2712
|
|
|
2671
2713
|
declare function useLiveSelectionUtils(): SelectionElement | undefined;
|
|
2714
|
+
declare function useLiveSelectionDataHandler(): LiveSelectionData | null;
|
|
2672
2715
|
|
|
2673
2716
|
declare function useTagUtils(): TagElement | undefined;
|
|
2674
2717
|
declare function useTagAnnotations(documentId?: string, location?: Location$1): TagAnnotation[] | null;
|
|
@@ -2701,4 +2744,4 @@ declare const createLiveStateMiddleware: (config?: LiveStateMiddlewareConfig) =>
|
|
|
2701
2744
|
updateLiveStateDataId: (newId?: string) => void;
|
|
2702
2745
|
};
|
|
2703
2746
|
|
|
2704
|
-
export { SnippylyArrowTool as VeltArrowTool, SnippylyArrows as VeltArrows, VeltAutocomplete, VeltAutocompleteChipTooltipWireframe, VeltAutocompleteOptionWireframe, VeltCanvasComment, VeltChartComment, SnippylyCommentBubble as VeltCommentBubble, VeltCommentBubbleWireframe, VeltCommentComposer, VeltCommentComposerWireframe, VeltCommentDialogOptionsDropdownContentWireframe, VeltCommentDialogOptionsDropdownTriggerWireframe, VeltCommentDialogPriorityDropdownContentWireframe, VeltCommentDialogPriorityDropdownTriggerWireframe, VeltCommentDialogStatusDropdownContentWireframe, VeltCommentDialogStatusDropdownTriggerWireframe, VeltCommentDialogWireframe, VeltCommentPin, VeltCommentPinWireframe, VeltCommentPlayerTimeline, VeltCommentThread, 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, VeltMultiThreadCommentDialogWireframe, VeltNivoChartComments, VeltNotificationsHistoryPanel, VeltNotificationsPanel, VeltNotificationsPanelWireframe, VeltNotificationsTool, VeltNotificationsToolWireframe, VeltPersistentCommentModeWireframe, SnippylyPresence as VeltPresence, SnippylyProvider as VeltProvider, VeltReactionPinTooltipWireframe, VeltReactionPinWireframe, VeltReactionTool, VeltReactionToolWireframe, VeltReactionsPanelWireframe, 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, useAutocompleteChipClick, useAutocompleteUtils, useClient, useCommentAddHandler, useCommentAnnotationById, useCommentAnnotations, useCommentCopyLinkHandler, useCommentDialogSidebarClickHandler, useCommentModeState, useCommentSelectionChangeHandler, useCommentSidebarActionButtonClick, useCommentSidebarData, useCommentSidebarInit, useCommentUpdateHandler, useCommentUtils, useContactSelected, useContactUtils, useCursorUsers, useCursorUtils, useEditor, useEditorAccessRequestHandler, useEditorAccessTimer, useHuddleUtils, useIdentify, useLiveSelectionUtils, useLiveState, useLiveStateData, useLiveStateSyncUtils, useNotificationUtils, useNotificationsData, usePresenceUsers, usePresenceUtils, useRecorderAddHandler, useRecorderUtils, useServerConnectionStateChangeHandler, useSetDocument, useSetDocumentId, useSetLiveStateData, useSetLocation, useTagAnnotations, useTagUtils, useUniqueViewsByDate, useUniqueViewsByUser, useUnreadCommentAnnotationCountByLocationId, useUnreadCommentAnnotationCountOnCurrentDocument, useUnreadCommentCountByAnnotationId, useUnreadCommentCountByLocationId, useUnreadCommentCountOnCurrentDocument, useUnreadNotificationsCount, useUnsetDocumentId, useUserEditorState, useVeltClient, useVeltInitState, useViewsUtils };
|
|
2747
|
+
export { SnippylyArrowTool as VeltArrowTool, SnippylyArrows as VeltArrows, VeltAutocomplete, VeltAutocompleteChipTooltipWireframe, VeltAutocompleteOptionWireframe, 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, VeltMultiThreadCommentDialogWireframe, VeltNivoChartComments, VeltNotificationsHistoryPanel, VeltNotificationsPanel, VeltNotificationsPanelWireframe, VeltNotificationsTool, VeltNotificationsToolWireframe, VeltPersistentCommentModeWireframe, SnippylyPresence as VeltPresence, SnippylyProvider as VeltProvider, VeltReactionPinTooltipWireframe, VeltReactionPinWireframe, VeltReactionTool, VeltReactionToolWireframe, VeltReactionsPanelWireframe, 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, useAutocompleteChipClick, useAutocompleteUtils, useClient, useCommentAddHandler, useCommentAnnotationById, useCommentAnnotations, useCommentCopyLinkHandler, useCommentDialogSidebarClickHandler, useCommentModeState, useCommentSelectionChangeHandler, useCommentSidebarActionButtonClick, useCommentSidebarData, useCommentSidebarInit, useCommentUpdateHandler, useCommentUtils, useContactSelected, useContactUtils, useCursorUsers, useCursorUtils, useEditor, useEditorAccessRequestHandler, useEditorAccessTimer, useHuddleUtils, useIdentify, useLiveSelectionDataHandler, useLiveSelectionUtils, useLiveState, useLiveStateData, useLiveStateSyncUtils, useNotificationUtils, useNotificationsData, usePresenceUsers, usePresenceUtils, useRecorderAddHandler, useRecorderUtils, useServerConnectionStateChangeHandler, useSetDocument, useSetDocumentId, useSetLiveStateData, useSetLocation, useTagAnnotations, useTagUtils, useUniqueViewsByDate, useUniqueViewsByUser, useUnreadCommentAnnotationCountByLocationId, useUnreadCommentAnnotationCountOnCurrentDocument, useUnreadCommentCountByAnnotationId, useUnreadCommentCountByLocationId, useUnreadCommentCountOnCurrentDocument, useUnreadNotificationsCount, useUnsetDocumentId, useUserEditorState, useVeltClient, useVeltInitState, useViewsUtils };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@veltdev/react",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.44",
|
|
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": [
|