@veltdev/react 2.0.30 → 2.0.31

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/VeltConfirmDialogWireframe/VeltConfirmDialogApproveButtonWireframe/VeltConfirmDialogApproveButtonWireframe.d.ts +6 -0
  4. package/cjs/types/components/VeltConfirmDialogWireframe/VeltConfirmDialogApproveButtonWireframe/index.d.ts +1 -0
  5. package/cjs/types/components/VeltConfirmDialogWireframe/VeltConfirmDialogMessageWireframe/VeltConfirmDialogMessageWireframe.d.ts +6 -0
  6. package/cjs/types/components/VeltConfirmDialogWireframe/VeltConfirmDialogMessageWireframe/index.d.ts +1 -0
  7. package/cjs/types/components/VeltConfirmDialogWireframe/VeltConfirmDialogRejectButtonWireframe/VeltConfirmDialogRejectButtonWireframe.d.ts +6 -0
  8. package/cjs/types/components/VeltConfirmDialogWireframe/VeltConfirmDialogRejectButtonWireframe/index.d.ts +1 -0
  9. package/cjs/types/components/VeltConfirmDialogWireframe/VeltConfirmDialogTitleWireframe/VeltConfirmDialogTitleWireframe.d.ts +6 -0
  10. package/cjs/types/components/VeltConfirmDialogWireframe/VeltConfirmDialogTitleWireframe/index.d.ts +1 -0
  11. package/cjs/types/components/VeltConfirmDialogWireframe/VeltConfirmDialogWireframe.d.ts +16 -0
  12. package/cjs/types/components/VeltConfirmDialogWireframe/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/VeltConfirmDialogWireframe/VeltConfirmDialogApproveButtonWireframe/VeltConfirmDialogApproveButtonWireframe.d.ts +6 -0
  18. package/esm/types/components/VeltConfirmDialogWireframe/VeltConfirmDialogApproveButtonWireframe/index.d.ts +1 -0
  19. package/esm/types/components/VeltConfirmDialogWireframe/VeltConfirmDialogMessageWireframe/VeltConfirmDialogMessageWireframe.d.ts +6 -0
  20. package/esm/types/components/VeltConfirmDialogWireframe/VeltConfirmDialogMessageWireframe/index.d.ts +1 -0
  21. package/esm/types/components/VeltConfirmDialogWireframe/VeltConfirmDialogRejectButtonWireframe/VeltConfirmDialogRejectButtonWireframe.d.ts +6 -0
  22. package/esm/types/components/VeltConfirmDialogWireframe/VeltConfirmDialogRejectButtonWireframe/index.d.ts +1 -0
  23. package/esm/types/components/VeltConfirmDialogWireframe/VeltConfirmDialogTitleWireframe/VeltConfirmDialogTitleWireframe.d.ts +6 -0
  24. package/esm/types/components/VeltConfirmDialogWireframe/VeltConfirmDialogTitleWireframe/index.d.ts +1 -0
  25. package/esm/types/components/VeltConfirmDialogWireframe/VeltConfirmDialogWireframe.d.ts +16 -0
  26. package/esm/types/components/VeltConfirmDialogWireframe/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 +28 -1
  30. package/package.json +1 -1
@@ -0,0 +1,6 @@
1
+ import React from 'react';
2
+ export interface IVeltConfirmDialogApproveButtonWireframeProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> {
3
+ variant?: string;
4
+ }
5
+ declare const VeltConfirmDialogApproveButtonWireframe: React.FC<IVeltConfirmDialogApproveButtonWireframeProps>;
6
+ export default VeltConfirmDialogApproveButtonWireframe;
@@ -0,0 +1 @@
1
+ export { default } from "./VeltConfirmDialogApproveButtonWireframe";
@@ -0,0 +1,6 @@
1
+ import React from 'react';
2
+ export interface IVeltConfirmDialogMessageWireframeProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> {
3
+ variant?: string;
4
+ }
5
+ declare const VeltConfirmDialogMessageWireframe: React.FC<IVeltConfirmDialogMessageWireframeProps>;
6
+ export default VeltConfirmDialogMessageWireframe;
@@ -0,0 +1 @@
1
+ export { default } from "./VeltConfirmDialogMessageWireframe";
@@ -0,0 +1,6 @@
1
+ import React from 'react';
2
+ export interface IVeltConfirmDialogRejectButtonWireframeProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> {
3
+ variant?: string;
4
+ }
5
+ declare const VeltConfirmDialogRejectButtonWireframe: React.FC<IVeltConfirmDialogRejectButtonWireframeProps>;
6
+ export default VeltConfirmDialogRejectButtonWireframe;
@@ -0,0 +1 @@
1
+ export { default } from "./VeltConfirmDialogRejectButtonWireframe";
@@ -0,0 +1,6 @@
1
+ import React from 'react';
2
+ export interface IVeltConfirmDialogTitleWireframeProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> {
3
+ variant?: string;
4
+ }
5
+ declare const VeltConfirmDialogTitleWireframe: React.FC<IVeltConfirmDialogTitleWireframeProps>;
6
+ export default VeltConfirmDialogTitleWireframe;
@@ -0,0 +1 @@
1
+ export { default } from "./VeltConfirmDialogTitleWireframe";
@@ -0,0 +1,16 @@
1
+ import React from 'react';
2
+ import { IVeltConfirmDialogApproveButtonWireframeProps } from './VeltConfirmDialogApproveButtonWireframe/VeltConfirmDialogApproveButtonWireframe';
3
+ import { IVeltConfirmDialogMessageWireframeProps } from './VeltConfirmDialogMessageWireframe/VeltConfirmDialogMessageWireframe';
4
+ import { IVeltConfirmDialogRejectButtonWireframeProps } from './VeltConfirmDialogRejectButtonWireframe/VeltConfirmDialogRejectButtonWireframe';
5
+ import { IVeltConfirmDialogTitleWireframeProps } from './VeltConfirmDialogTitleWireframe/VeltConfirmDialogTitleWireframe';
6
+ export interface IVeltConfirmDialogWireframeProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> {
7
+ variant?: string;
8
+ }
9
+ export interface IVeltConfirmDialogWireframe extends React.FC<IVeltConfirmDialogWireframeProps> {
10
+ Title: React.FC<IVeltConfirmDialogTitleWireframeProps>;
11
+ Message: React.FC<IVeltConfirmDialogMessageWireframeProps>;
12
+ RejectButton: React.FC<IVeltConfirmDialogRejectButtonWireframeProps>;
13
+ ApproveButton: React.FC<IVeltConfirmDialogApproveButtonWireframeProps>;
14
+ }
15
+ declare const VeltConfirmDialogWireframe: IVeltConfirmDialogWireframe;
16
+ export default VeltConfirmDialogWireframe;
@@ -0,0 +1 @@
1
+ export { default } from './VeltConfirmDialogWireframe';
@@ -61,3 +61,4 @@ export { default as VeltReactionsPanelWireframe } from "./VeltReactionsPanelWire
61
61
  export { default as VeltInlineCommentsSectionWireframe } from "./VeltInlineCommentsSectionWireframe";
62
62
  export { default as VeltNotificationsPanelWireframe } from "./VeltNotificationsPanelWireframe";
63
63
  export { default as VeltNotificationsToolWireframe } from "./VeltNotificationsToolWireframe";
64
+ export { default as VeltConfirmDialogWireframe } from "./VeltConfirmDialogWireframe";
@@ -1,3 +1,3 @@
1
- export declare const VELT_SDK_VERSION = "2.0.30";
1
+ export declare const VELT_SDK_VERSION = "2.0.31";
2
2
  export declare const VELT_SDK_INIT_EVENT = "onVeltInit";
3
3
  export declare const VELT_TAB_ID = "veltTabId";
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 = '2.0.30';
135
+ var VELT_SDK_VERSION = '2.0.31';
136
136
  var VELT_SDK_INIT_EVENT = 'onVeltInit';
137
137
  var VELT_TAB_ID = 'veltTabId';
138
138
 
@@ -2914,6 +2914,35 @@ VeltNotificationsToolWireframe.UnreadIcon = VeltNotificationsToolUnreadIconWiref
2914
2914
  VeltNotificationsToolWireframe.Icon = VeltNotificationsToolIconWireframe;
2915
2915
  VeltNotificationsToolWireframe.UnreadCount = VeltNotificationsToolUnreadCountWireframe;
2916
2916
 
2917
+ var VeltConfirmDialogApproveButtonWireframe = function (props) {
2918
+ var children = props.children, remainingProps = __rest(props, ["children"]);
2919
+ return (React.createElement("velt-confirm-dialog-approve-button-wireframe", __assign({}, remainingProps), children));
2920
+ };
2921
+
2922
+ var VeltConfirmDialogMessageWireframe = function (props) {
2923
+ var children = props.children, remainingProps = __rest(props, ["children"]);
2924
+ return (React.createElement("velt-confirm-dialog-message-wireframe", __assign({}, remainingProps), children));
2925
+ };
2926
+
2927
+ var VeltConfirmDialogRejectButtonWireframe = function (props) {
2928
+ var children = props.children, remainingProps = __rest(props, ["children"]);
2929
+ return (React.createElement("velt-confirm-dialog-reject-button-wireframe", __assign({}, remainingProps), children));
2930
+ };
2931
+
2932
+ var VeltConfirmDialogTitleWireframe = function (props) {
2933
+ var children = props.children, remainingProps = __rest(props, ["children"]);
2934
+ return (React.createElement("velt-confirm-dialog-title-wireframe", __assign({}, remainingProps), children));
2935
+ };
2936
+
2937
+ var VeltConfirmDialogWireframe = function (props) {
2938
+ var children = props.children, remainingProp = __rest(props, ["children"]);
2939
+ return (React.createElement("velt-confirm-dialog-wireframe", __assign({}, remainingProp), children));
2940
+ };
2941
+ VeltConfirmDialogWireframe.Title = VeltConfirmDialogTitleWireframe;
2942
+ VeltConfirmDialogWireframe.Message = VeltConfirmDialogMessageWireframe;
2943
+ VeltConfirmDialogWireframe.RejectButton = VeltConfirmDialogRejectButtonWireframe;
2944
+ VeltConfirmDialogWireframe.ApproveButton = VeltConfirmDialogApproveButtonWireframe;
2945
+
2917
2946
  function useClient() {
2918
2947
  var client = useVeltClient().client;
2919
2948
  var _a = React.useState(), veltClient = _a[0], setVeltClient = _a[1];
@@ -3684,5 +3713,5 @@ var logLiveState = function (action, liveStateDataId) {
3684
3713
  }
3685
3714
  };
3686
3715
 
3687
- 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, VeltCommentsSidebarStatusDropdownWireframe, VeltCommentsSidebarWireframe, SnippylyCursor as VeltCursor, VeltData, VeltHighChartComments, SnippylyHuddle as VeltHuddle, SnippylyHuddleTool as VeltHuddleTool, VeltInlineCommentsSection, VeltInlineCommentsSectionWireframe, 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 };
3716
+ 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, VeltCommentsSidebarStatusDropdownWireframe, VeltCommentsSidebarWireframe, VeltConfirmDialogWireframe, SnippylyCursor as VeltCursor, VeltData, VeltHighChartComments, SnippylyHuddle as VeltHuddle, SnippylyHuddleTool as VeltHuddleTool, VeltInlineCommentsSection, VeltInlineCommentsSectionWireframe, 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 };
3688
3717
  //# sourceMappingURL=index.js.map