@veltdev/react 1.0.115 → 1.0.117

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 (20) hide show
  1. package/cjs/index.js +23 -5
  2. package/cjs/index.js.map +1 -1
  3. package/cjs/types/components/SnippylyCommentsSidebar/SnippylyCommentsSidebar.d.ts +1 -0
  4. package/cjs/types/components/VeltCommentBubble/VeltCommentBubbleWireframe.d.ts +12 -0
  5. package/cjs/types/components/VeltCommentBubble/index.d.ts +1 -0
  6. package/cjs/types/components/VeltCommentDialogWireframe/VeltCommentDialogAssigneeBanner/VeltCommentDialogAssigneeBanner.d.ts +3 -2
  7. package/cjs/types/components/VeltCommentDialogWireframe/VeltCommentDialogSuggestionAction/VeltCommentDialogSuggestionAction.d.ts +3 -2
  8. package/cjs/types/components/VeltCommentDialogWireframe/VeltCommentDialogWireframe.d.ts +2 -0
  9. package/cjs/types/components/VeltHighChartComments/VeltHighChartComments.d.ts +1 -0
  10. package/esm/index.js +23 -5
  11. package/esm/index.js.map +1 -1
  12. package/esm/types/components/SnippylyCommentsSidebar/SnippylyCommentsSidebar.d.ts +1 -0
  13. package/esm/types/components/VeltCommentBubble/VeltCommentBubbleWireframe.d.ts +12 -0
  14. package/esm/types/components/VeltCommentBubble/index.d.ts +1 -0
  15. package/esm/types/components/VeltCommentDialogWireframe/VeltCommentDialogAssigneeBanner/VeltCommentDialogAssigneeBanner.d.ts +3 -2
  16. package/esm/types/components/VeltCommentDialogWireframe/VeltCommentDialogSuggestionAction/VeltCommentDialogSuggestionAction.d.ts +3 -2
  17. package/esm/types/components/VeltCommentDialogWireframe/VeltCommentDialogWireframe.d.ts +2 -0
  18. package/esm/types/components/VeltHighChartComments/VeltHighChartComments.d.ts +1 -0
  19. package/index.d.ts +6 -0
  20. package/package.json +1 -1
@@ -40,6 +40,7 @@ export interface IVeltCommentsSidebarProps {
40
40
  pageModeComposerVariant?: string;
41
41
  dialogVariant?: string;
42
42
  shadowDom?: boolean;
43
+ sortData?: 'asc' | 'desc' | 'none';
43
44
  filterConfig?: CommentSidebarFilterConfig;
44
45
  groupConfig?: CommentSidebarGroupConfig;
45
46
  filters?: CommentSidebarFilters;
@@ -0,0 +1,12 @@
1
+ import React from "react";
2
+ import { IVeltCommentBubbleAvatarProps } from "./VeltCommentBubbleAvatar/VeltCommentBubbleAvatar";
3
+ import { IVeltCommentBubbleCommentsCountProps } from "./VeltCommentBubbleCommentsCount/VeltCommentBubbleCommentsCount";
4
+ export interface IVeltCommentBubbleWireframeProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> {
5
+ variant?: string;
6
+ }
7
+ export interface IVeltCommentBubbleWireframe extends React.FC<IVeltCommentBubbleWireframeProps> {
8
+ Avatar: React.FC<IVeltCommentBubbleAvatarProps>;
9
+ CommentsCount: React.FC<IVeltCommentBubbleCommentsCountProps>;
10
+ }
11
+ declare const VeltCommentBubbleWireframe: IVeltCommentBubbleWireframe;
12
+ export default VeltCommentBubbleWireframe;
@@ -0,0 +1 @@
1
+ export { default } from "./VeltCommentBubbleWireframe";
@@ -4,9 +4,10 @@ import { IVeltCommentDialogAssigneeBannerUserAvatarProps } from "./VeltCommentDi
4
4
  import { IVeltCommentDialogAssigneeBannerUserNameProps } from "./VeltCommentDialogAssigneeBannerUserName/VeltCommentDialogAssigneeBannerUserName";
5
5
  export interface IVeltCommentDialogAssigneeBannerProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> {
6
6
  }
7
- declare const VeltCommentDialogAssigneeBanner: React.FC<IVeltCommentDialogAssigneeBannerProps> & {
7
+ export interface IVeltCommentDialogAssigneeBanner extends React.FC<IVeltCommentDialogAssigneeBannerProps> {
8
8
  ResolveButton: React.FC<IVeltCommentDialogAssigneeBannerResolveButtonProps>;
9
9
  UserAvatar: React.FC<IVeltCommentDialogAssigneeBannerUserAvatarProps>;
10
10
  UserName: React.FC<IVeltCommentDialogAssigneeBannerUserNameProps>;
11
- };
11
+ }
12
+ declare const VeltCommentDialogAssigneeBanner: IVeltCommentDialogAssigneeBanner;
12
13
  export default VeltCommentDialogAssigneeBanner;
@@ -3,8 +3,9 @@ import { IVeltCommentDialogSuggestionActionAcceptProps } from "./VeltCommentDial
3
3
  import { IVeltCommentDialogSuggestionActionRejectProps } from "./VeltCommentDialogSuggestionActionReject/VeltCommentDialogSuggestionActionReject";
4
4
  export interface IVeltCommentDialogSuggestionActionProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> {
5
5
  }
6
- declare const VeltCommentDialogSuggestionAction: React.FC<IVeltCommentDialogSuggestionActionProps> & {
6
+ export interface IVeltCommentDialogSuggestionAction extends React.FC<IVeltCommentDialogSuggestionActionProps> {
7
7
  Accept: React.FC<IVeltCommentDialogSuggestionActionAcceptProps>;
8
8
  Reject: React.FC<IVeltCommentDialogSuggestionActionRejectProps>;
9
- };
9
+ }
10
+ declare const VeltCommentDialogSuggestionAction: IVeltCommentDialogSuggestionAction;
10
11
  export default VeltCommentDialogSuggestionAction;
@@ -23,6 +23,7 @@ import { IVeltCommentDialogThreadsProps } from "./VeltCommentDialogThreads/VeltC
23
23
  import { IVeltCommentDialogToggleReplyProps } from "./VeltCommentDialogToggleReply/VeltCommentDialogToggleReply";
24
24
  import { IVeltCommentDialogUpgradeProps } from "./VeltCommentDialogUpgrade/VeltCommentDialogUpgrade";
25
25
  import { IVeltCommentDialogSuggestionActionProps } from "./VeltCommentDialogSuggestionAction/VeltCommentDialogSuggestionAction";
26
+ import { IVeltCommentDialogPrivateBadgeProps } from "./VeltCommentDialogPrivateBadge/VeltCommentDialogPrivateBadge";
26
27
  export interface IVeltCommentDialogWireframeProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> {
27
28
  variant?: string;
28
29
  }
@@ -51,5 +52,6 @@ declare const VeltCommentDialogWireframe: React.FC<IVeltCommentDialogWireframePr
51
52
  Threads: React.FC<IVeltCommentDialogThreadsProps>;
52
53
  ToggleReply: React.FC<IVeltCommentDialogToggleReplyProps>;
53
54
  Upgrade: React.FC<IVeltCommentDialogUpgradeProps>;
55
+ PrivateBadge: React.FC<IVeltCommentDialogPrivateBadgeProps>;
54
56
  };
55
57
  export default VeltCommentDialogWireframe;
@@ -3,6 +3,7 @@ export interface IVeltHighChartCommentsProps {
3
3
  id: string;
4
4
  chartComputedData: any;
5
5
  dialogMetadataTemplate?: string[];
6
+ Highcharts?: any;
6
7
  }
7
8
  declare const VeltHighChartComments: React.FC<IVeltHighChartCommentsProps>;
8
9
  export default VeltHighChartComments;
package/index.d.ts CHANGED
@@ -158,6 +158,7 @@ interface IVeltCommentsSidebarProps {
158
158
  pageModeComposerVariant?: string;
159
159
  dialogVariant?: string;
160
160
  shadowDom?: boolean;
161
+ sortData?: 'asc' | 'desc' | 'none';
161
162
  filterConfig?: CommentSidebarFilterConfig;
162
163
  groupConfig?: CommentSidebarGroupConfig;
163
164
  filters?: CommentSidebarFilters;
@@ -362,6 +363,7 @@ interface IVeltHighChartCommentsProps {
362
363
  id: string;
363
364
  chartComputedData: any;
364
365
  dialogMetadataTemplate?: string[];
366
+ Highcharts?: any;
365
367
  }
366
368
  declare const VeltHighChartComments: React.FC<IVeltHighChartCommentsProps>;
367
369
 
@@ -515,6 +517,9 @@ interface IVeltCommentDialogUpgradeProps extends React.DetailedHTMLProps<React.H
515
517
  interface IVeltCommentDialogSuggestionActionProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> {
516
518
  }
517
519
 
520
+ interface IVeltCommentDialogPrivateBadgeProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> {
521
+ }
522
+
518
523
  interface IVeltCommentDialogWireframeProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> {
519
524
  variant?: string;
520
525
  }
@@ -543,6 +548,7 @@ declare const VeltCommentDialogWireframe: React.FC<IVeltCommentDialogWireframePr
543
548
  Threads: React.FC<IVeltCommentDialogThreadsProps>;
544
549
  ToggleReply: React.FC<IVeltCommentDialogToggleReplyProps>;
545
550
  Upgrade: React.FC<IVeltCommentDialogUpgradeProps>;
551
+ PrivateBadge: React.FC<IVeltCommentDialogPrivateBadgeProps>;
546
552
  };
547
553
 
548
554
  interface IVeltCommentsSidebarCloseButtonProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@veltdev/react",
3
- "version": "1.0.115",
3
+ "version": "1.0.117",
4
4
  "description": "",
5
5
  "scripts": {
6
6
  "test": "echo \"Error: no test specified\" && exit 1",