@veltdev/react 1.0.116 → 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.
- package/cjs/index.js +6 -0
- package/cjs/index.js.map +1 -1
- package/cjs/types/components/VeltCommentBubble/VeltCommentBubbleWireframe.d.ts +12 -0
- package/cjs/types/components/VeltCommentBubble/index.d.ts +1 -0
- package/cjs/types/components/VeltCommentDialogWireframe/VeltCommentDialogAssigneeBanner/VeltCommentDialogAssigneeBanner.d.ts +3 -2
- package/cjs/types/components/VeltCommentDialogWireframe/VeltCommentDialogSuggestionAction/VeltCommentDialogSuggestionAction.d.ts +3 -2
- package/cjs/types/components/VeltCommentDialogWireframe/VeltCommentDialogWireframe.d.ts +2 -0
- package/esm/index.js +6 -0
- package/esm/index.js.map +1 -1
- package/esm/types/components/VeltCommentBubble/VeltCommentBubbleWireframe.d.ts +12 -0
- package/esm/types/components/VeltCommentBubble/index.d.ts +1 -0
- package/esm/types/components/VeltCommentDialogWireframe/VeltCommentDialogAssigneeBanner/VeltCommentDialogAssigneeBanner.d.ts +3 -2
- package/esm/types/components/VeltCommentDialogWireframe/VeltCommentDialogSuggestionAction/VeltCommentDialogSuggestionAction.d.ts +3 -2
- package/esm/types/components/VeltCommentDialogWireframe/VeltCommentDialogWireframe.d.ts +2 -0
- package/index.d.ts +4 -0
- package/package.json +1 -1
|
@@ -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
|
-
|
|
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
|
-
|
|
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;
|
package/index.d.ts
CHANGED
|
@@ -517,6 +517,9 @@ interface IVeltCommentDialogUpgradeProps extends React.DetailedHTMLProps<React.H
|
|
|
517
517
|
interface IVeltCommentDialogSuggestionActionProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> {
|
|
518
518
|
}
|
|
519
519
|
|
|
520
|
+
interface IVeltCommentDialogPrivateBadgeProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> {
|
|
521
|
+
}
|
|
522
|
+
|
|
520
523
|
interface IVeltCommentDialogWireframeProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> {
|
|
521
524
|
variant?: string;
|
|
522
525
|
}
|
|
@@ -545,6 +548,7 @@ declare const VeltCommentDialogWireframe: React.FC<IVeltCommentDialogWireframePr
|
|
|
545
548
|
Threads: React.FC<IVeltCommentDialogThreadsProps>;
|
|
546
549
|
ToggleReply: React.FC<IVeltCommentDialogToggleReplyProps>;
|
|
547
550
|
Upgrade: React.FC<IVeltCommentDialogUpgradeProps>;
|
|
551
|
+
PrivateBadge: React.FC<IVeltCommentDialogPrivateBadgeProps>;
|
|
548
552
|
};
|
|
549
553
|
|
|
550
554
|
interface IVeltCommentsSidebarCloseButtonProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> {
|