@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.
- package/cjs/index.js +31 -1
- package/cjs/index.js.map +1 -1
- package/cjs/types/components/VeltPersistentCommentModeWireframe/VeltPersistentCommentModeCloseButtonWireframe/VeltPersistentCommentModeCloseButtonWireframe.d.ts +5 -0
- package/cjs/types/components/VeltPersistentCommentModeWireframe/VeltPersistentCommentModeCloseButtonWireframe/index.d.ts +1 -0
- package/cjs/types/components/VeltPersistentCommentModeWireframe/VeltPersistentCommentModeLabelWireframe/VeltPersistentCommentModeLabelPrivateWireframe/VeltPersistentCommentModeLabelPrivateWireframe.d.ts +5 -0
- package/cjs/types/components/VeltPersistentCommentModeWireframe/VeltPersistentCommentModeLabelWireframe/VeltPersistentCommentModeLabelPrivateWireframe/index.d.ts +1 -0
- package/cjs/types/components/VeltPersistentCommentModeWireframe/VeltPersistentCommentModeLabelWireframe/VeltPersistentCommentModeLabelPublicWireframe/VeltPersistentCommentModeLabelPublicWireframe.d.ts +5 -0
- package/cjs/types/components/VeltPersistentCommentModeWireframe/VeltPersistentCommentModeLabelWireframe/VeltPersistentCommentModeLabelPublicWireframe/index.d.ts +1 -0
- package/cjs/types/components/VeltPersistentCommentModeWireframe/VeltPersistentCommentModeLabelWireframe/VeltPersistentCommentModeLabelWireframe.d.ts +11 -0
- package/cjs/types/components/VeltPersistentCommentModeWireframe/VeltPersistentCommentModeLabelWireframe/index.d.ts +1 -0
- package/cjs/types/components/VeltPersistentCommentModeWireframe/VeltPersistentCommentModeWireframe.d.ts +12 -0
- package/cjs/types/components/VeltPersistentCommentModeWireframe/index.d.ts +1 -0
- package/cjs/types/components/index.d.ts +1 -0
- package/cjs/types/constants.d.ts +1 -1
- package/esm/index.js +31 -2
- package/esm/index.js.map +1 -1
- package/esm/types/components/VeltPersistentCommentModeWireframe/VeltPersistentCommentModeCloseButtonWireframe/VeltPersistentCommentModeCloseButtonWireframe.d.ts +5 -0
- package/esm/types/components/VeltPersistentCommentModeWireframe/VeltPersistentCommentModeCloseButtonWireframe/index.d.ts +1 -0
- package/esm/types/components/VeltPersistentCommentModeWireframe/VeltPersistentCommentModeLabelWireframe/VeltPersistentCommentModeLabelPrivateWireframe/VeltPersistentCommentModeLabelPrivateWireframe.d.ts +5 -0
- package/esm/types/components/VeltPersistentCommentModeWireframe/VeltPersistentCommentModeLabelWireframe/VeltPersistentCommentModeLabelPrivateWireframe/index.d.ts +1 -0
- package/esm/types/components/VeltPersistentCommentModeWireframe/VeltPersistentCommentModeLabelWireframe/VeltPersistentCommentModeLabelPublicWireframe/VeltPersistentCommentModeLabelPublicWireframe.d.ts +5 -0
- package/esm/types/components/VeltPersistentCommentModeWireframe/VeltPersistentCommentModeLabelWireframe/VeltPersistentCommentModeLabelPublicWireframe/index.d.ts +1 -0
- package/esm/types/components/VeltPersistentCommentModeWireframe/VeltPersistentCommentModeLabelWireframe/VeltPersistentCommentModeLabelWireframe.d.ts +11 -0
- package/esm/types/components/VeltPersistentCommentModeWireframe/VeltPersistentCommentModeLabelWireframe/index.d.ts +1 -0
- package/esm/types/components/VeltPersistentCommentModeWireframe/VeltPersistentCommentModeWireframe.d.ts +12 -0
- package/esm/types/components/VeltPersistentCommentModeWireframe/index.d.ts +1 -0
- package/esm/types/components/index.d.ts +1 -0
- package/esm/types/constants.d.ts +1 -1
- package/index.d.ts +26 -1
- 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 @@
|
|
|
1
|
+
export { default } from "./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 @@
|
|
|
1
|
+
export { default } from "./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";
|
package/cjs/types/constants.d.ts
CHANGED
package/esm/index.js
CHANGED
|
@@ -132,7 +132,7 @@ var loadVelt = function (callback, version, staging, develop, proxyDomain) {
|
|
|
132
132
|
}
|
|
133
133
|
};
|
|
134
134
|
|
|
135
|
-
var VELT_SDK_VERSION = '3.0.
|
|
135
|
+
var VELT_SDK_VERSION = '3.0.4';
|
|
136
136
|
var VELT_SDK_INIT_EVENT = 'onVeltInit';
|
|
137
137
|
var VELT_TAB_ID = 'veltTabId';
|
|
138
138
|
|
|
@@ -3042,6 +3042,35 @@ VeltInlineReactionsSectionWireframe.List = VeltInlineReactionsSectionListWirefra
|
|
|
3042
3042
|
VeltInlineReactionsSectionWireframe.Panel = VeltInlineReactionsSectionPanelWireframe;
|
|
3043
3043
|
VeltInlineReactionsSectionWireframe.ToolContainer = VeltInlineReactionsSectionToolContainerWireframe;
|
|
3044
3044
|
|
|
3045
|
+
var VeltPersistentCommentModeCloseButtonWireframe = function (props) {
|
|
3046
|
+
var children = props.children;
|
|
3047
|
+
return (React.createElement("velt-persistent-comment-mode-close-button-wireframe", null, children));
|
|
3048
|
+
};
|
|
3049
|
+
|
|
3050
|
+
var VeltPersistentCommentModeLabelPrivateWireframe = function (props) {
|
|
3051
|
+
var children = props.children;
|
|
3052
|
+
return (React.createElement("velt-persistent-comment-mode-label-private-wireframe", null, children));
|
|
3053
|
+
};
|
|
3054
|
+
|
|
3055
|
+
var VeltPersistentCommentModeLabelPublicWireframe = function (props) {
|
|
3056
|
+
var children = props.children;
|
|
3057
|
+
return (React.createElement("velt-persistent-comment-mode-label-public-wireframe", null, children));
|
|
3058
|
+
};
|
|
3059
|
+
|
|
3060
|
+
var VeltPersistentCommentModeLabelWireframe = function (props) {
|
|
3061
|
+
var children = props.children;
|
|
3062
|
+
return (React.createElement("velt-persistent-comment-mode-label-wireframe", null, children));
|
|
3063
|
+
};
|
|
3064
|
+
VeltPersistentCommentModeLabelWireframe.Private = VeltPersistentCommentModeLabelPrivateWireframe;
|
|
3065
|
+
VeltPersistentCommentModeLabelWireframe.Public = VeltPersistentCommentModeLabelPublicWireframe;
|
|
3066
|
+
|
|
3067
|
+
var VeltPersistentCommentModeWireframe = function (props) {
|
|
3068
|
+
var children = props.children, remainingProp = __rest(props, ["children"]);
|
|
3069
|
+
return (React.createElement("velt-persistent-comment-mode-wireframe", __assign({}, remainingProp), children));
|
|
3070
|
+
};
|
|
3071
|
+
VeltPersistentCommentModeWireframe.CloseButton = VeltPersistentCommentModeCloseButtonWireframe;
|
|
3072
|
+
VeltPersistentCommentModeWireframe.Label = VeltPersistentCommentModeLabelWireframe;
|
|
3073
|
+
|
|
3045
3074
|
function useClient() {
|
|
3046
3075
|
var client = useVeltClient().client;
|
|
3047
3076
|
var _a = React.useState(), veltClient = _a[0], setVeltClient = _a[1];
|
|
@@ -3812,5 +3841,5 @@ var logLiveState = function (action, liveStateDataId) {
|
|
|
3812
3841
|
}
|
|
3813
3842
|
};
|
|
3814
3843
|
|
|
3815
|
-
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 };
|
|
3844
|
+
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 };
|
|
3816
3845
|
//# sourceMappingURL=index.js.map
|