@veltdev/react 1.0.148 → 1.0.150

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.
Files changed (40) hide show
  1. package/cjs/index.js +51 -3
  2. package/cjs/index.js.map +1 -1
  3. package/cjs/types/components/SnippylyComments/SnippylyComments.d.ts +1 -0
  4. package/cjs/types/components/VeltCommentDialogWireframe/VeltCommentDialogComposer/VeltCommentDialogComposer.d.ts +2 -0
  5. package/cjs/types/components/VeltCommentDialogWireframe/VeltCommentDialogComposer/VeltCommentDialogComposerAvatar/VeltCommentDialogComposerAvatar.d.ts +6 -0
  6. package/cjs/types/components/VeltCommentDialogWireframe/VeltCommentDialogComposer/VeltCommentDialogComposerAvatar/index.d.ts +1 -0
  7. package/cjs/types/components/VeltInlineCommentsSection/VeltInlineCommentsSection.d.ts +13 -0
  8. package/cjs/types/components/VeltInlineCommentsSection/index.d.ts +1 -0
  9. package/cjs/types/components/VeltInlineCommentsSectionWireframe/VeltInlineCommentsSectionComposerContainerWireframe/VeltInlineCommentsSectionComposerContainerWireframe.d.ts +6 -0
  10. package/cjs/types/components/VeltInlineCommentsSectionWireframe/VeltInlineCommentsSectionComposerContainerWireframe/index.d.ts +1 -0
  11. package/cjs/types/components/VeltInlineCommentsSectionWireframe/VeltInlineCommentsSectionPanelWireframe/VeltInlineCommentsSectionPanelWireframe.d.ts +6 -0
  12. package/cjs/types/components/VeltInlineCommentsSectionWireframe/VeltInlineCommentsSectionPanelWireframe/index.d.ts +1 -0
  13. package/cjs/types/components/VeltInlineCommentsSectionWireframe/VeltInlineCommentsSectionSkeletonWireframe/VeltInlineCommentsSectionSkeletonWireframe.d.ts +6 -0
  14. package/cjs/types/components/VeltInlineCommentsSectionWireframe/VeltInlineCommentsSectionSkeletonWireframe/index.d.ts +1 -0
  15. package/cjs/types/components/VeltInlineCommentsSectionWireframe/VeltInlineCommentsSectionWireframe.d.ts +6 -2
  16. package/cjs/types/components/index.d.ts +2 -0
  17. package/cjs/types/constants.d.ts +1 -1
  18. package/esm/index.js +50 -4
  19. package/esm/index.js.map +1 -1
  20. package/esm/types/components/SnippylyComments/SnippylyComments.d.ts +1 -0
  21. package/esm/types/components/VeltCommentDialogWireframe/VeltCommentDialogComposer/VeltCommentDialogComposer.d.ts +2 -0
  22. package/esm/types/components/VeltCommentDialogWireframe/VeltCommentDialogComposer/VeltCommentDialogComposerAvatar/VeltCommentDialogComposerAvatar.d.ts +6 -0
  23. package/esm/types/components/VeltCommentDialogWireframe/VeltCommentDialogComposer/VeltCommentDialogComposerAvatar/index.d.ts +1 -0
  24. package/esm/types/components/VeltInlineCommentsSection/VeltInlineCommentsSection.d.ts +13 -0
  25. package/esm/types/components/VeltInlineCommentsSection/index.d.ts +1 -0
  26. package/esm/types/components/VeltInlineCommentsSectionWireframe/VeltInlineCommentsSectionComposerContainerWireframe/VeltInlineCommentsSectionComposerContainerWireframe.d.ts +6 -0
  27. package/esm/types/components/VeltInlineCommentsSectionWireframe/VeltInlineCommentsSectionComposerContainerWireframe/index.d.ts +1 -0
  28. package/esm/types/components/VeltInlineCommentsSectionWireframe/VeltInlineCommentsSectionPanelWireframe/VeltInlineCommentsSectionPanelWireframe.d.ts +6 -0
  29. package/esm/types/components/VeltInlineCommentsSectionWireframe/VeltInlineCommentsSectionPanelWireframe/index.d.ts +1 -0
  30. package/esm/types/components/VeltInlineCommentsSectionWireframe/VeltInlineCommentsSectionSkeletonWireframe/VeltInlineCommentsSectionSkeletonWireframe.d.ts +6 -0
  31. package/esm/types/components/VeltInlineCommentsSectionWireframe/VeltInlineCommentsSectionSkeletonWireframe/index.d.ts +1 -0
  32. package/esm/types/components/VeltInlineCommentsSectionWireframe/VeltInlineCommentsSectionWireframe.d.ts +6 -2
  33. package/esm/types/components/index.d.ts +2 -0
  34. package/esm/types/constants.d.ts +1 -1
  35. package/index.d.ts +51 -1
  36. package/package.json +1 -1
  37. package/cjs/types/components/VeltInlineCommentsSectionWireframe/VeltInlineCommentsSectionComposerWireframe/VeltInlineCommentsSectionComposerWireframe.d.ts +0 -6
  38. package/cjs/types/components/VeltInlineCommentsSectionWireframe/VeltInlineCommentsSectionComposerWireframe/index.d.ts +0 -1
  39. package/esm/types/components/VeltInlineCommentsSectionWireframe/VeltInlineCommentsSectionComposerWireframe/VeltInlineCommentsSectionComposerWireframe.d.ts +0 -6
  40. package/esm/types/components/VeltInlineCommentsSectionWireframe/VeltInlineCommentsSectionComposerWireframe/index.d.ts +0 -1
@@ -94,6 +94,7 @@ export interface IVeltCommentsProps extends React.DetailedHTMLProps<React.HTMLAt
94
94
  textCommentToolbarDarkMode?: boolean;
95
95
  textCommentToolShadowDom?: boolean;
96
96
  textCommentToolbarShadowDom?: boolean;
97
+ composerMode?: 'default' | 'expanded';
97
98
  }
98
99
  declare const SnippylyComments: React.FC<IVeltCommentsProps>;
99
100
  export default SnippylyComments;
@@ -5,6 +5,7 @@ import { IVeltCommentDialogComposerAttachments } from "./VeltCommentDialogCompos
5
5
  import { IVeltCommentDialogComposerInputProps } from "./VeltCommentDialogComposerInput/VeltCommentDialogComposerInput";
6
6
  import { IVeltCommentDialogComposerRecordingsProps } from "./VeltCommentDialogComposerRecordings/VeltCommentDialogComposerRecordings";
7
7
  import { IVeltCommentDialogComposerPrivateBadgeProps } from "./VeltCommentDialogComposerPrivateBadge/VeltCommentDialogComposerPrivateBadge";
8
+ import { IVeltCommentDialogComposerAvatarProps } from "./VeltCommentDialogComposerAvatar/VeltCommentDialogComposerAvatar";
8
9
  export interface IVeltCommentDialogComposerProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> {
9
10
  variant?: string;
10
11
  }
@@ -15,6 +16,7 @@ export interface IVeltCommentDialogComposer extends React.FC<IVeltCommentDialogC
15
16
  Input: React.FC<IVeltCommentDialogComposerInputProps>;
16
17
  Recordings: React.FC<IVeltCommentDialogComposerRecordingsProps>;
17
18
  PrivateBadge: React.FC<IVeltCommentDialogComposerPrivateBadgeProps>;
19
+ Avatar: React.FC<IVeltCommentDialogComposerAvatarProps>;
18
20
  }
19
21
  declare const VeltCommentDialogComposer: IVeltCommentDialogComposer;
20
22
  export default VeltCommentDialogComposer;
@@ -0,0 +1,6 @@
1
+ import React from 'react';
2
+ export interface IVeltCommentDialogComposerAvatarProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> {
3
+ variant?: string;
4
+ }
5
+ declare const VeltCommentDialogComposerAvatar: React.FC<IVeltCommentDialogComposerAvatarProps>;
6
+ export default VeltCommentDialogComposerAvatar;
@@ -0,0 +1 @@
1
+ export { default } from "./VeltCommentDialogComposerAvatar";
@@ -0,0 +1,13 @@
1
+ import React from 'react';
2
+ export interface IVeltInlineCommentsSectionProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> {
3
+ config?: {
4
+ id: string;
5
+ name?: string;
6
+ };
7
+ darkMode?: boolean;
8
+ variant?: string;
9
+ dialogVariant?: string;
10
+ shadowDom?: boolean;
11
+ }
12
+ declare const VeltInlineCommentsSection: React.FC<IVeltInlineCommentsSectionProps>;
13
+ export default VeltInlineCommentsSection;
@@ -0,0 +1 @@
1
+ export { default } from "./VeltInlineCommentsSection";
@@ -0,0 +1,6 @@
1
+ import React from 'react';
2
+ export interface IVeltInlineCommentsSectionComposerContainerWireframeProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> {
3
+ variant?: string;
4
+ }
5
+ declare const VeltInlineCommentsSectionComposerContainerWireframe: React.FC<IVeltInlineCommentsSectionComposerContainerWireframeProps>;
6
+ export default VeltInlineCommentsSectionComposerContainerWireframe;
@@ -0,0 +1 @@
1
+ export { default } from "./VeltInlineCommentsSectionComposerContainerWireframe";
@@ -0,0 +1,6 @@
1
+ import React from 'react';
2
+ export interface IVeltInlineCommentsSectionPanelWireframeProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> {
3
+ variant?: string;
4
+ }
5
+ declare const VeltInlineCommentsSectionPanelWireframe: React.FC<IVeltInlineCommentsSectionPanelWireframeProps>;
6
+ export default VeltInlineCommentsSectionPanelWireframe;
@@ -0,0 +1 @@
1
+ export { default } from "./VeltInlineCommentsSectionPanelWireframe";
@@ -0,0 +1,6 @@
1
+ import React from 'react';
2
+ export interface IVeltInlineCommentsSectionSkeletonWireframeProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> {
3
+ variant?: string;
4
+ }
5
+ declare const VeltInlineCommentsSectionSkeletonWireframe: React.FC<IVeltInlineCommentsSectionSkeletonWireframeProps>;
6
+ export default VeltInlineCommentsSectionSkeletonWireframe;
@@ -0,0 +1 @@
1
+ export { default } from "./VeltInlineCommentsSectionSkeletonWireframe";
@@ -1,14 +1,18 @@
1
1
  import React from 'react';
2
2
  import { IVeltInlineCommentsSectionCommentCountWireframeProps } from './VeltInlineCommentsSectionCommentCountWireframe/VeltInlineCommentsSectionCommentCountWireframe';
3
- import { IVeltInlineCommentsSectionComposerWireframeProps } from './VeltInlineCommentsSectionComposerWireframe/VeltInlineCommentsSectionComposerWireframe';
3
+ import { IVeltInlineCommentsSectionComposerContainerWireframeProps } from './VeltInlineCommentsSectionComposerContainerWireframe/VeltInlineCommentsSectionComposerContainerWireframe';
4
4
  import { IVeltInlineCommentsSectionListWireframeProps } from './VeltInlineCommentsSectionListWireframe/VeltInlineCommentsSectionListWireframe';
5
+ import { IVeltInlineCommentsSectionPanelWireframeProps } from './VeltInlineCommentsSectionPanelWireframe/VeltInlineCommentsSectionPanelWireframe';
6
+ import { IVeltInlineCommentsSectionSkeletonWireframeProps } from './VeltInlineCommentsSectionSkeletonWireframe/VeltInlineCommentsSectionSkeletonWireframe';
5
7
  export interface IVeltInlineCommentsSectionWireframeProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> {
6
8
  variant?: string;
7
9
  }
8
10
  export interface IVeltInlineCommentsSectionWireframe extends React.FC<IVeltInlineCommentsSectionWireframeProps> {
9
11
  CommentCount: React.FC<IVeltInlineCommentsSectionCommentCountWireframeProps>;
10
- Composer: React.FC<IVeltInlineCommentsSectionComposerWireframeProps>;
12
+ ComposerContainer: React.FC<IVeltInlineCommentsSectionComposerContainerWireframeProps>;
11
13
  List: React.FC<IVeltInlineCommentsSectionListWireframeProps>;
14
+ Panel: React.FC<IVeltInlineCommentsSectionPanelWireframeProps>;
15
+ Skeleton: React.FC<IVeltInlineCommentsSectionSkeletonWireframeProps>;
12
16
  }
13
17
  declare const VeltInlineCommentsSectionWireframe: IVeltInlineCommentsSectionWireframe;
14
18
  export default VeltInlineCommentsSectionWireframe;
@@ -29,6 +29,7 @@ export { default as VeltNivoChartComments } from "./VeltNivoChartComments";
29
29
  export { default as VeltHighChartComments } from "./VeltHighChartComments";
30
30
  export { default as VeltChartComment } from "./VeltChartComment";
31
31
  export { default as VeltAutocomplete } from "./VeltAutocomplete";
32
+ export { default as VeltInlineCommentsSection } from "./VeltInlineCommentsSection";
32
33
  export { default as VeltWireframe } from "./VeltWireframe";
33
34
  export { default as VeltCommentDialogWireframe } from "./VeltCommentDialogWireframe";
34
35
  export { default as VeltCommentsSidebarWireframe } from "./VeltCommentsSidebarWireframe";
@@ -52,3 +53,4 @@ export { default as VeltReactionToolWireframe } from "./VeltReactionToolWirefram
52
53
  export { default as VeltReactionPinWireframe } from "./VeltReactionPinWireframe";
53
54
  export { default as VeltReactionPinTooltipWireframe } from "./VeltReactionPinTooltipWireframe";
54
55
  export { default as VeltReactionsPanelWireframe } from "./VeltReactionsPanelWireframe";
56
+ export { default as VeltInlineCommentsSectionWireframe } from "./VeltInlineCommentsSectionWireframe";
@@ -1,3 +1,3 @@
1
- export declare const VELT_SDK_VERSION = "1.0.165";
1
+ export declare const VELT_SDK_VERSION = "1.0.167";
2
2
  export declare const VELT_SDK_INIT_EVENT = "onVeltInit";
3
3
  export declare const VELT_TAB_ID = "veltTabId";
package/index.d.ts CHANGED
@@ -129,6 +129,7 @@ interface IVeltCommentsProps extends React.DetailedHTMLProps<React.HTMLAttribute
129
129
  textCommentToolbarDarkMode?: boolean;
130
130
  textCommentToolShadowDom?: boolean;
131
131
  textCommentToolbarShadowDom?: boolean;
132
+ composerMode?: 'default' | 'expanded';
132
133
  }
133
134
  declare const SnippylyComments: React.FC<IVeltCommentsProps>;
134
135
 
@@ -400,6 +401,18 @@ interface IVeltAutocompleteProps {
400
401
  }
401
402
  declare const VeltAutocomplete: React.FC<IVeltAutocompleteProps>;
402
403
 
404
+ interface IVeltInlineCommentsSectionProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> {
405
+ config?: {
406
+ id: string;
407
+ name?: string;
408
+ };
409
+ darkMode?: boolean;
410
+ variant?: string;
411
+ dialogVariant?: string;
412
+ shadowDom?: boolean;
413
+ }
414
+ declare const VeltInlineCommentsSection: React.FC<IVeltInlineCommentsSectionProps>;
415
+
403
416
  interface IVeltWireframeProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> {
404
417
  }
405
418
  declare const VeltWireframe: React.FC<IVeltWireframeProps>;
@@ -571,6 +584,10 @@ interface IVeltCommentDialogComposerPrivateBadgeProps extends React.DetailedHTML
571
584
  variant?: string;
572
585
  }
573
586
 
587
+ interface IVeltCommentDialogComposerAvatarProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> {
588
+ variant?: string;
589
+ }
590
+
574
591
  interface IVeltCommentDialogComposerProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> {
575
592
  variant?: string;
576
593
  }
@@ -581,6 +598,7 @@ interface IVeltCommentDialogComposer extends React.FC<IVeltCommentDialogComposer
581
598
  Input: React.FC<IVeltCommentDialogComposerInputProps>;
582
599
  Recordings: React.FC<IVeltCommentDialogComposerRecordingsProps>;
583
600
  PrivateBadge: React.FC<IVeltCommentDialogComposerPrivateBadgeProps>;
601
+ Avatar: React.FC<IVeltCommentDialogComposerAvatarProps>;
584
602
  }
585
603
 
586
604
  interface IVeltCommentDialogCopyLinkProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> {
@@ -1525,6 +1543,38 @@ interface IVeltReactionsPanelWireframe extends React.FC<IVeltReactionsPanelWiref
1525
1543
  }
1526
1544
  declare const VeltReactionsPanelWireframe: IVeltReactionsPanelWireframe;
1527
1545
 
1546
+ interface IVeltInlineCommentsSectionCommentCountWireframeProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> {
1547
+ variant?: string;
1548
+ }
1549
+
1550
+ interface IVeltInlineCommentsSectionComposerContainerWireframeProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> {
1551
+ variant?: string;
1552
+ }
1553
+
1554
+ interface IVeltInlineCommentsSectionListWireframeProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> {
1555
+ variant?: string;
1556
+ }
1557
+
1558
+ interface IVeltInlineCommentsSectionPanelWireframeProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> {
1559
+ variant?: string;
1560
+ }
1561
+
1562
+ interface IVeltInlineCommentsSectionSkeletonWireframeProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> {
1563
+ variant?: string;
1564
+ }
1565
+
1566
+ interface IVeltInlineCommentsSectionWireframeProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> {
1567
+ variant?: string;
1568
+ }
1569
+ interface IVeltInlineCommentsSectionWireframe extends React.FC<IVeltInlineCommentsSectionWireframeProps> {
1570
+ CommentCount: React.FC<IVeltInlineCommentsSectionCommentCountWireframeProps>;
1571
+ ComposerContainer: React.FC<IVeltInlineCommentsSectionComposerContainerWireframeProps>;
1572
+ List: React.FC<IVeltInlineCommentsSectionListWireframeProps>;
1573
+ Panel: React.FC<IVeltInlineCommentsSectionPanelWireframeProps>;
1574
+ Skeleton: React.FC<IVeltInlineCommentsSectionSkeletonWireframeProps>;
1575
+ }
1576
+ declare const VeltInlineCommentsSectionWireframe: IVeltInlineCommentsSectionWireframe;
1577
+
1528
1578
  declare function useVeltClient(): {
1529
1579
  client: Velt;
1530
1580
  };
@@ -1603,4 +1653,4 @@ declare const createLiveStateMiddleware: (config?: LiveStateMiddlewareConfig) =>
1603
1653
  updateLiveStateDataId: (newId?: string) => void;
1604
1654
  };
1605
1655
 
1606
- export { SnippylyArrowTool as VeltArrowTool, SnippylyArrows as VeltArrows, VeltAutocomplete, VeltAutocompleteChipTooltipWireframe, VeltAutocompleteOptionWireframe, VeltChartComment, SnippylyCommentBubble as VeltCommentBubble, VeltCommentBubbleWireframe, VeltCommentDialogOptionsDropdownContentWireframe, VeltCommentDialogOptionsDropdownTriggerWireframe, VeltCommentDialogPriorityDropdownContentWireframe, VeltCommentDialogPriorityDropdownTriggerWireframe, VeltCommentDialogStatusDropdownContentWireframe, VeltCommentDialogStatusDropdownTriggerWireframe, VeltCommentDialogWireframe, VeltCommentPinWireframe, VeltCommentPlayerTimeline, VeltCommentThread, SnippylyCommentTool as VeltCommentTool, VeltCommentToolWireframe, SnippylyComments as VeltComments, SnippylyCommentsSidebar as VeltCommentsSidebar, VeltCommentsSidebarStatusDropdownWireframe, VeltCommentsSidebarWireframe, SnippylyCursor as VeltCursor, VeltHighChartComments, SnippylyHuddle as VeltHuddle, SnippylyHuddleTool as VeltHuddleTool, VeltNivoChartComments, VeltNotificationsHistoryPanel, VeltNotificationsPanel, VeltNotificationsTool, SnippylyPresence as VeltPresence, SnippylyProvider as VeltProvider, VeltReactionPinTooltipWireframe, VeltReactionPinWireframe, 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, useCommentAnnotations, useCommentDialogSidebarClickHandler, useCommentModeState, useCommentSelectionChangeHandler, useCommentUpdateHandler, useCommentUtils, useCursorUsers, useCursorUtils, useEditor, useEditorAccessRequestHandler, useEditorAccessTimer, useHuddleUtils, useIdentify, useLiveSelectionUtils, useLiveState, useLiveStateData, useLiveStateSyncUtils, useNotificationUtils, useNotificationsData, usePresenceUsers, usePresenceUtils, useRecorderAddHandler, useRecorderUtils, useServerConnectionStateChangeHandler, useSetDocumentId, useSetLiveStateData, useSetLocation, useTagAnnotations, useTagUtils, useUniqueViewsByDate, useUniqueViewsByUser, useUnsetDocumentId, useUserEditorState, useVeltClient, useVeltInitState, useViewsUtils };
1656
+ export { SnippylyArrowTool as VeltArrowTool, SnippylyArrows as VeltArrows, VeltAutocomplete, VeltAutocompleteChipTooltipWireframe, VeltAutocompleteOptionWireframe, VeltChartComment, SnippylyCommentBubble as VeltCommentBubble, VeltCommentBubbleWireframe, VeltCommentDialogOptionsDropdownContentWireframe, VeltCommentDialogOptionsDropdownTriggerWireframe, VeltCommentDialogPriorityDropdownContentWireframe, VeltCommentDialogPriorityDropdownTriggerWireframe, VeltCommentDialogStatusDropdownContentWireframe, VeltCommentDialogStatusDropdownTriggerWireframe, VeltCommentDialogWireframe, VeltCommentPinWireframe, VeltCommentPlayerTimeline, VeltCommentThread, SnippylyCommentTool as VeltCommentTool, VeltCommentToolWireframe, SnippylyComments as VeltComments, SnippylyCommentsSidebar as VeltCommentsSidebar, VeltCommentsSidebarStatusDropdownWireframe, VeltCommentsSidebarWireframe, SnippylyCursor as VeltCursor, VeltHighChartComments, SnippylyHuddle as VeltHuddle, SnippylyHuddleTool as VeltHuddleTool, VeltInlineCommentsSection, VeltInlineCommentsSectionWireframe, VeltNivoChartComments, VeltNotificationsHistoryPanel, VeltNotificationsPanel, VeltNotificationsTool, SnippylyPresence as VeltPresence, SnippylyProvider as VeltProvider, VeltReactionPinTooltipWireframe, VeltReactionPinWireframe, 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, useCommentAnnotations, useCommentDialogSidebarClickHandler, useCommentModeState, useCommentSelectionChangeHandler, useCommentUpdateHandler, useCommentUtils, useCursorUsers, useCursorUtils, useEditor, useEditorAccessRequestHandler, useEditorAccessTimer, useHuddleUtils, useIdentify, useLiveSelectionUtils, useLiveState, useLiveStateData, useLiveStateSyncUtils, useNotificationUtils, useNotificationsData, usePresenceUsers, usePresenceUtils, useRecorderAddHandler, useRecorderUtils, useServerConnectionStateChangeHandler, useSetDocumentId, useSetLiveStateData, useSetLocation, useTagAnnotations, useTagUtils, useUniqueViewsByDate, useUniqueViewsByUser, useUnsetDocumentId, useUserEditorState, useVeltClient, useVeltInitState, useViewsUtils };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@veltdev/react",
3
- "version": "1.0.148",
3
+ "version": "1.0.150",
4
4
  "description": "",
5
5
  "scripts": {
6
6
  "test": "echo \"Error: no test specified\" && exit 1",
@@ -1,6 +0,0 @@
1
- import React from 'react';
2
- export interface IVeltInlineCommentsSectionComposerWireframeProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> {
3
- variant?: string;
4
- }
5
- declare const VeltInlineCommentsSectionComposerWireframe: React.FC<IVeltInlineCommentsSectionComposerWireframeProps>;
6
- export default VeltInlineCommentsSectionComposerWireframe;
@@ -1 +0,0 @@
1
- export { default } from "./VeltInlineCommentsSectionComposerWireframe";
@@ -1,6 +0,0 @@
1
- import React from 'react';
2
- export interface IVeltInlineCommentsSectionComposerWireframeProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> {
3
- variant?: string;
4
- }
5
- declare const VeltInlineCommentsSectionComposerWireframe: React.FC<IVeltInlineCommentsSectionComposerWireframeProps>;
6
- export default VeltInlineCommentsSectionComposerWireframe;
@@ -1 +0,0 @@
1
- export { default } from "./VeltInlineCommentsSectionComposerWireframe";