@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/esm/index.js
CHANGED
|
@@ -1241,6 +1241,11 @@ var VeltCommentDialogSuggestionAction = function (props) {
|
|
|
1241
1241
|
VeltCommentDialogSuggestionAction.Accept = VeltCommentDialogSuggestionActionAccept;
|
|
1242
1242
|
VeltCommentDialogSuggestionAction.Reject = VeltCommentDialogSuggestionActionReject;
|
|
1243
1243
|
|
|
1244
|
+
var VeltCommentDialogPrivateBadge = function (props) {
|
|
1245
|
+
var children = props.children;
|
|
1246
|
+
return (React.createElement("velt-comment-dialog-private-badge-wireframe", null, children));
|
|
1247
|
+
};
|
|
1248
|
+
|
|
1244
1249
|
var VeltCommentDialogWireframe = function (props) {
|
|
1245
1250
|
var children = props.children, remainingProp = __rest(props, ["children"]);
|
|
1246
1251
|
return (React.createElement("velt-comment-dialog-wireframe", __assign({}, remainingProp), children));
|
|
@@ -1269,6 +1274,7 @@ VeltCommentDialogWireframe.ThreadCard = VeltCommentDialogThreadCard;
|
|
|
1269
1274
|
VeltCommentDialogWireframe.Threads = VeltCommentDialogThreads;
|
|
1270
1275
|
VeltCommentDialogWireframe.ToggleReply = VeltCommentDialogToggleReply;
|
|
1271
1276
|
VeltCommentDialogWireframe.Upgrade = VeltCommentDialogUpgrade;
|
|
1277
|
+
VeltCommentDialogWireframe.PrivateBadge = VeltCommentDialogPrivateBadge;
|
|
1272
1278
|
|
|
1273
1279
|
var VeltCommentsSidebarCloseButton = function (props) {
|
|
1274
1280
|
var children = props.children;
|