@veltdev/react 3.0.3 → 3.0.4

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 (30) hide show
  1. package/cjs/index.js +31 -1
  2. package/cjs/index.js.map +1 -1
  3. package/cjs/types/components/VeltPersistentCommentModeWireframe/VeltPersistentCommentModeCloseButtonWireframe/VeltPersistentCommentModeCloseButtonWireframe.d.ts +5 -0
  4. package/cjs/types/components/VeltPersistentCommentModeWireframe/VeltPersistentCommentModeCloseButtonWireframe/index.d.ts +1 -0
  5. package/cjs/types/components/VeltPersistentCommentModeWireframe/VeltPersistentCommentModeLabelWireframe/VeltPersistentCommentModeLabelPrivateWireframe/VeltPersistentCommentModeLabelPrivateWireframe.d.ts +5 -0
  6. package/cjs/types/components/VeltPersistentCommentModeWireframe/VeltPersistentCommentModeLabelWireframe/VeltPersistentCommentModeLabelPrivateWireframe/index.d.ts +1 -0
  7. package/cjs/types/components/VeltPersistentCommentModeWireframe/VeltPersistentCommentModeLabelWireframe/VeltPersistentCommentModeLabelPublicWireframe/VeltPersistentCommentModeLabelPublicWireframe.d.ts +5 -0
  8. package/cjs/types/components/VeltPersistentCommentModeWireframe/VeltPersistentCommentModeLabelWireframe/VeltPersistentCommentModeLabelPublicWireframe/index.d.ts +1 -0
  9. package/cjs/types/components/VeltPersistentCommentModeWireframe/VeltPersistentCommentModeLabelWireframe/VeltPersistentCommentModeLabelWireframe.d.ts +11 -0
  10. package/cjs/types/components/VeltPersistentCommentModeWireframe/VeltPersistentCommentModeLabelWireframe/index.d.ts +1 -0
  11. package/cjs/types/components/VeltPersistentCommentModeWireframe/VeltPersistentCommentModeWireframe.d.ts +12 -0
  12. package/cjs/types/components/VeltPersistentCommentModeWireframe/index.d.ts +1 -0
  13. package/cjs/types/components/index.d.ts +1 -0
  14. package/cjs/types/constants.d.ts +1 -1
  15. package/esm/index.js +31 -2
  16. package/esm/index.js.map +1 -1
  17. package/esm/types/components/VeltPersistentCommentModeWireframe/VeltPersistentCommentModeCloseButtonWireframe/VeltPersistentCommentModeCloseButtonWireframe.d.ts +5 -0
  18. package/esm/types/components/VeltPersistentCommentModeWireframe/VeltPersistentCommentModeCloseButtonWireframe/index.d.ts +1 -0
  19. package/esm/types/components/VeltPersistentCommentModeWireframe/VeltPersistentCommentModeLabelWireframe/VeltPersistentCommentModeLabelPrivateWireframe/VeltPersistentCommentModeLabelPrivateWireframe.d.ts +5 -0
  20. package/esm/types/components/VeltPersistentCommentModeWireframe/VeltPersistentCommentModeLabelWireframe/VeltPersistentCommentModeLabelPrivateWireframe/index.d.ts +1 -0
  21. package/esm/types/components/VeltPersistentCommentModeWireframe/VeltPersistentCommentModeLabelWireframe/VeltPersistentCommentModeLabelPublicWireframe/VeltPersistentCommentModeLabelPublicWireframe.d.ts +5 -0
  22. package/esm/types/components/VeltPersistentCommentModeWireframe/VeltPersistentCommentModeLabelWireframe/VeltPersistentCommentModeLabelPublicWireframe/index.d.ts +1 -0
  23. package/esm/types/components/VeltPersistentCommentModeWireframe/VeltPersistentCommentModeLabelWireframe/VeltPersistentCommentModeLabelWireframe.d.ts +11 -0
  24. package/esm/types/components/VeltPersistentCommentModeWireframe/VeltPersistentCommentModeLabelWireframe/index.d.ts +1 -0
  25. package/esm/types/components/VeltPersistentCommentModeWireframe/VeltPersistentCommentModeWireframe.d.ts +12 -0
  26. package/esm/types/components/VeltPersistentCommentModeWireframe/index.d.ts +1 -0
  27. package/esm/types/components/index.d.ts +1 -0
  28. package/esm/types/constants.d.ts +1 -1
  29. package/index.d.ts +26 -1
  30. package/package.json +1 -1
@@ -0,0 +1,5 @@
1
+ import React from 'react';
2
+ export interface IVeltPersistentCommentModeCloseButtonWireframeProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> {
3
+ }
4
+ declare const VeltPersistentCommentModeCloseButtonWireframe: React.FC<IVeltPersistentCommentModeCloseButtonWireframeProps>;
5
+ export default VeltPersistentCommentModeCloseButtonWireframe;
@@ -0,0 +1 @@
1
+ export { default } from "./VeltPersistentCommentModeCloseButtonWireframe";
@@ -0,0 +1,5 @@
1
+ import React from 'react';
2
+ export interface IVeltPersistentCommentModeLabelPrivateWireframeProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> {
3
+ }
4
+ declare const VeltPersistentCommentModeLabelPrivateWireframe: React.FC<IVeltPersistentCommentModeLabelPrivateWireframeProps>;
5
+ export default VeltPersistentCommentModeLabelPrivateWireframe;
@@ -0,0 +1,5 @@
1
+ import React from 'react';
2
+ export interface IVeltPersistentCommentModeLabelPublicWireframeProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> {
3
+ }
4
+ declare const VeltPersistentCommentModeLabelPublicWireframe: React.FC<IVeltPersistentCommentModeLabelPublicWireframeProps>;
5
+ export default VeltPersistentCommentModeLabelPublicWireframe;
@@ -0,0 +1,11 @@
1
+ import React from 'react';
2
+ import { IVeltPersistentCommentModeLabelPrivateWireframeProps } from './VeltPersistentCommentModeLabelPrivateWireframe/VeltPersistentCommentModeLabelPrivateWireframe';
3
+ import { IVeltPersistentCommentModeLabelPublicWireframeProps } from './VeltPersistentCommentModeLabelPublicWireframe/VeltPersistentCommentModeLabelPublicWireframe';
4
+ export interface IVeltPersistentCommentModeLabelWireframeProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> {
5
+ }
6
+ export interface IVeltPersistentCommentModeLabelWireframe extends React.FC<IVeltPersistentCommentModeLabelWireframeProps> {
7
+ Private: React.FC<IVeltPersistentCommentModeLabelPrivateWireframeProps>;
8
+ Public: React.FC<IVeltPersistentCommentModeLabelPublicWireframeProps>;
9
+ }
10
+ declare const VeltPersistentCommentModeLabelWireframe: IVeltPersistentCommentModeLabelWireframe;
11
+ export default VeltPersistentCommentModeLabelWireframe;
@@ -0,0 +1 @@
1
+ export { default } from "./VeltPersistentCommentModeLabelWireframe";
@@ -0,0 +1,12 @@
1
+ import React from 'react';
2
+ import { IVeltPersistentCommentModeCloseButtonWireframeProps } from './VeltPersistentCommentModeCloseButtonWireframe/VeltPersistentCommentModeCloseButtonWireframe';
3
+ import { IVeltPersistentCommentModeLabelWireframe } from './VeltPersistentCommentModeLabelWireframe/VeltPersistentCommentModeLabelWireframe';
4
+ export interface IVeltPersistentCommentModeWireframeProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> {
5
+ variant?: string;
6
+ }
7
+ export interface IVeltPersistentCommentModeWireframe extends React.FC<IVeltPersistentCommentModeWireframeProps> {
8
+ CloseButton: React.FC<IVeltPersistentCommentModeCloseButtonWireframeProps>;
9
+ Label: IVeltPersistentCommentModeLabelWireframe;
10
+ }
11
+ declare const VeltPersistentCommentModeWireframe: IVeltPersistentCommentModeWireframe;
12
+ export default VeltPersistentCommentModeWireframe;
@@ -0,0 +1 @@
1
+ export { default } from "./VeltPersistentCommentModeWireframe";
@@ -65,3 +65,4 @@ export { default as VeltNotificationsPanelWireframe } from "./VeltNotificationsP
65
65
  export { default as VeltNotificationsToolWireframe } from "./VeltNotificationsToolWireframe";
66
66
  export { default as VeltConfirmDialogWireframe } from "./VeltConfirmDialogWireframe";
67
67
  export { default as VeltInlineReactionsSectionWireframe } from "./VeltInlineReactionsSectionWireframe";
68
+ export { default as VeltPersistentCommentModeWireframe } from "./VeltPersistentCommentModeWireframe";
@@ -1,3 +1,3 @@
1
- export declare const VELT_SDK_VERSION = "3.0.3";
1
+ export declare const VELT_SDK_VERSION = "3.0.4";
2
2
  export declare const VELT_SDK_INIT_EVENT = "onVeltInit";
3
3
  export declare const VELT_TAB_ID = "veltTabId";
package/index.d.ts CHANGED
@@ -2159,6 +2159,31 @@ interface IVeltInlineReactionsSectionWireframe extends React.FC<IVeltInlineReact
2159
2159
  }
2160
2160
  declare const VeltInlineReactionsSectionWireframe: IVeltInlineReactionsSectionWireframe;
2161
2161
 
2162
+ interface IVeltPersistentCommentModeCloseButtonWireframeProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> {
2163
+ }
2164
+
2165
+ interface IVeltPersistentCommentModeLabelPrivateWireframeProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> {
2166
+ }
2167
+
2168
+ interface IVeltPersistentCommentModeLabelPublicWireframeProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> {
2169
+ }
2170
+
2171
+ interface IVeltPersistentCommentModeLabelWireframeProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> {
2172
+ }
2173
+ interface IVeltPersistentCommentModeLabelWireframe extends React.FC<IVeltPersistentCommentModeLabelWireframeProps> {
2174
+ Private: React.FC<IVeltPersistentCommentModeLabelPrivateWireframeProps>;
2175
+ Public: React.FC<IVeltPersistentCommentModeLabelPublicWireframeProps>;
2176
+ }
2177
+
2178
+ interface IVeltPersistentCommentModeWireframeProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> {
2179
+ variant?: string;
2180
+ }
2181
+ interface IVeltPersistentCommentModeWireframe extends React.FC<IVeltPersistentCommentModeWireframeProps> {
2182
+ CloseButton: React.FC<IVeltPersistentCommentModeCloseButtonWireframeProps>;
2183
+ Label: IVeltPersistentCommentModeLabelWireframe;
2184
+ }
2185
+ declare const VeltPersistentCommentModeWireframe: IVeltPersistentCommentModeWireframe;
2186
+
2162
2187
  declare function useVeltClient(): {
2163
2188
  client: Velt;
2164
2189
  };
@@ -2256,4 +2281,4 @@ declare const createLiveStateMiddleware: (config?: LiveStateMiddlewareConfig) =>
2256
2281
  updateLiveStateDataId: (newId?: string) => void;
2257
2282
  };
2258
2283
 
2259
- export { SnippylyArrowTool as VeltArrowTool, SnippylyArrows as VeltArrows, VeltAutocomplete, VeltAutocompleteChipTooltipWireframe, VeltAutocompleteOptionWireframe, VeltCanvasComment, VeltChartComment, SnippylyCommentBubble as VeltCommentBubble, VeltCommentBubbleWireframe, 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, VeltInlineCommentsSection, VeltInlineCommentsSectionWireframe, VeltInlineReactionsSection, VeltInlineReactionsSectionWireframe, VeltNivoChartComments, VeltNotificationsHistoryPanel, VeltNotificationsPanel, VeltNotificationsPanelWireframe, VeltNotificationsTool, VeltNotificationsToolWireframe, 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, useCommentAnnotations, useCommentDialogSidebarClickHandler, useCommentModeState, useCommentSelectionChangeHandler, 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, useUnsetDocumentId, useUserEditorState, useVeltClient, useVeltInitState, useViewsUtils };
2284
+ export { SnippylyArrowTool as VeltArrowTool, SnippylyArrows as VeltArrows, VeltAutocomplete, VeltAutocompleteChipTooltipWireframe, VeltAutocompleteOptionWireframe, VeltCanvasComment, VeltChartComment, SnippylyCommentBubble as VeltCommentBubble, VeltCommentBubbleWireframe, 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, VeltInlineCommentsSection, VeltInlineCommentsSectionWireframe, VeltInlineReactionsSection, VeltInlineReactionsSectionWireframe, 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, useCommentAnnotations, useCommentDialogSidebarClickHandler, useCommentModeState, useCommentSelectionChangeHandler, 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, 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",
3
+ "version": "3.0.4",
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": [