@veltdev/react 2.0.23 → 2.0.25
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/README.md +0 -0
- package/cjs/index.js +13 -1
- package/cjs/index.js.map +1 -1
- package/cjs/types/components/VeltCommentDialogWireframe/VeltCommentDialogCustomAnnotationDropdown/VeltCommentDialogCustomAnnotationDropdownTrigger/VeltCommentDialogCustomAnnotationDropdownTrigger.d.ts +2 -0
- package/cjs/types/components/VeltCommentDialogWireframe/VeltCommentDialogCustomAnnotationDropdown/VeltCommentDialogCustomAnnotationDropdownTrigger/VeltCommentDialogCustomAnnotationDropdownTriggerPlaceholder/VeltCommentDialogCustomAnnotationDropdownTriggerPlaceholder.d.ts +6 -0
- package/cjs/types/components/VeltCommentDialogWireframe/VeltCommentDialogCustomAnnotationDropdown/VeltCommentDialogCustomAnnotationDropdownTrigger/VeltCommentDialogCustomAnnotationDropdownTriggerPlaceholder/index.d.ts +1 -0
- package/cjs/types/components/VeltCommentDialogWireframe/VeltCommentDialogDeleteButton/VeltCommentDialogDeleteButton.d.ts +6 -0
- package/cjs/types/components/VeltCommentDialogWireframe/VeltCommentDialogDeleteButton/index.d.ts +1 -0
- package/cjs/types/components/VeltCommentDialogWireframe/VeltCommentDialogWireframe.d.ts +2 -0
- package/cjs/types/constants.d.ts +1 -1
- package/esm/index.js +13 -1
- package/esm/index.js.map +1 -1
- package/esm/types/components/VeltCommentDialogWireframe/VeltCommentDialogCustomAnnotationDropdown/VeltCommentDialogCustomAnnotationDropdownTrigger/VeltCommentDialogCustomAnnotationDropdownTrigger.d.ts +2 -0
- package/esm/types/components/VeltCommentDialogWireframe/VeltCommentDialogCustomAnnotationDropdown/VeltCommentDialogCustomAnnotationDropdownTrigger/VeltCommentDialogCustomAnnotationDropdownTriggerPlaceholder/VeltCommentDialogCustomAnnotationDropdownTriggerPlaceholder.d.ts +6 -0
- package/esm/types/components/VeltCommentDialogWireframe/VeltCommentDialogCustomAnnotationDropdown/VeltCommentDialogCustomAnnotationDropdownTrigger/VeltCommentDialogCustomAnnotationDropdownTriggerPlaceholder/index.d.ts +1 -0
- package/esm/types/components/VeltCommentDialogWireframe/VeltCommentDialogDeleteButton/VeltCommentDialogDeleteButton.d.ts +6 -0
- package/esm/types/components/VeltCommentDialogWireframe/VeltCommentDialogDeleteButton/index.d.ts +1 -0
- package/esm/types/components/VeltCommentDialogWireframe/VeltCommentDialogWireframe.d.ts +2 -0
- package/esm/types/constants.d.ts +1 -1
- package/index.d.ts +10 -0
- package/package.json +32 -2
|
@@ -2,6 +2,7 @@ import React from 'react';
|
|
|
2
2
|
import { IVeltCommentDialogCustomAnnotationDropdownTriggerArrowProps } from './VeltCommentDialogCustomAnnotationDropdownTriggerArrow/VeltCommentDialogCustomAnnotationDropdownTriggerArrow';
|
|
3
3
|
import { IVeltCommentDialogCustomAnnotationDropdownTriggerList } from './VeltCommentDialogCustomAnnotationDropdownTriggerList/VeltCommentDialogCustomAnnotationDropdownTriggerList';
|
|
4
4
|
import { IVeltCommentDialogCustomAnnotationDropdownTriggerRemainingCountProps } from './VeltCommentDialogCustomAnnotationDropdownTriggerRemainingCount/VeltCommentDialogCustomAnnotationDropdownTriggerRemainingCount';
|
|
5
|
+
import { IVeltCommentDialogCustomAnnotationDropdownTriggerPlaceholderProps } from './VeltCommentDialogCustomAnnotationDropdownTriggerPlaceholder/VeltCommentDialogCustomAnnotationDropdownTriggerPlaceholder';
|
|
5
6
|
export interface IVeltCommentDialogCustomAnnotationDropdownTriggerProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> {
|
|
6
7
|
variant?: string;
|
|
7
8
|
}
|
|
@@ -9,6 +10,7 @@ export interface IVeltCommentDialogCustomAnnotationDropdownTrigger extends React
|
|
|
9
10
|
Arrow: React.FC<IVeltCommentDialogCustomAnnotationDropdownTriggerArrowProps>;
|
|
10
11
|
List: IVeltCommentDialogCustomAnnotationDropdownTriggerList;
|
|
11
12
|
RemainingCount: React.FC<IVeltCommentDialogCustomAnnotationDropdownTriggerRemainingCountProps>;
|
|
13
|
+
Placeholder: React.FC<IVeltCommentDialogCustomAnnotationDropdownTriggerPlaceholderProps>;
|
|
12
14
|
}
|
|
13
15
|
declare const VeltCommentDialogCustomAnnotationDropdownTrigger: IVeltCommentDialogCustomAnnotationDropdownTrigger;
|
|
14
16
|
export default VeltCommentDialogCustomAnnotationDropdownTrigger;
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
export interface IVeltCommentDialogCustomAnnotationDropdownTriggerPlaceholderProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> {
|
|
3
|
+
variant?: string;
|
|
4
|
+
}
|
|
5
|
+
declare const VeltCommentDialogCustomAnnotationDropdownTriggerPlaceholder: React.FC<IVeltCommentDialogCustomAnnotationDropdownTriggerPlaceholderProps>;
|
|
6
|
+
export default VeltCommentDialogCustomAnnotationDropdownTriggerPlaceholder;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default } from "./VeltCommentDialogCustomAnnotationDropdownTriggerPlaceholder";
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
export interface IVeltCommentDialogDeleteButtonProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> {
|
|
3
|
+
variant?: string;
|
|
4
|
+
}
|
|
5
|
+
declare const VeltCommentDialogDeleteButton: React.FC<IVeltCommentDialogDeleteButtonProps>;
|
|
6
|
+
export default VeltCommentDialogDeleteButton;
|
package/esm/types/components/VeltCommentDialogWireframe/VeltCommentDialogDeleteButton/index.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default } from "./VeltCommentDialogDeleteButton";
|
|
@@ -24,6 +24,7 @@ import { IVeltCommentDialogThreadsProps } from "./VeltCommentDialogThreads/VeltC
|
|
|
24
24
|
import { IVeltCommentDialogToggleReplyProps } from "./VeltCommentDialogToggleReply/VeltCommentDialogToggleReply";
|
|
25
25
|
import { IVeltCommentDialogUpgradeProps } from "./VeltCommentDialogUpgrade/VeltCommentDialogUpgrade";
|
|
26
26
|
import { IVeltCommentDialogCustomAnnotationDropdown } from "./VeltCommentDialogCustomAnnotationDropdown/VeltCommentDialogCustomAnnotationDropdown";
|
|
27
|
+
import { IVeltCommentDialogDeleteButtonProps } from "./VeltCommentDialogDeleteButton/VeltCommentDialogDeleteButton";
|
|
27
28
|
export interface IVeltCommentDialogWireframeProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> {
|
|
28
29
|
variant?: string;
|
|
29
30
|
}
|
|
@@ -53,5 +54,6 @@ declare const VeltCommentDialogWireframe: React.FC<IVeltCommentDialogWireframePr
|
|
|
53
54
|
ToggleReply: React.FC<IVeltCommentDialogToggleReplyProps>;
|
|
54
55
|
Upgrade: React.FC<IVeltCommentDialogUpgradeProps>;
|
|
55
56
|
CustomAnnotationDropdown: IVeltCommentDialogCustomAnnotationDropdown;
|
|
57
|
+
DeleteButton: React.FC<IVeltCommentDialogDeleteButtonProps>;
|
|
56
58
|
};
|
|
57
59
|
export default VeltCommentDialogWireframe;
|
package/esm/types/constants.d.ts
CHANGED
package/index.d.ts
CHANGED
|
@@ -1074,6 +1074,10 @@ interface IVeltCommentDialogCustomAnnotationDropdownTriggerRemainingCountProps e
|
|
|
1074
1074
|
variant?: string;
|
|
1075
1075
|
}
|
|
1076
1076
|
|
|
1077
|
+
interface IVeltCommentDialogCustomAnnotationDropdownTriggerPlaceholderProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> {
|
|
1078
|
+
variant?: string;
|
|
1079
|
+
}
|
|
1080
|
+
|
|
1077
1081
|
interface IVeltCommentDialogCustomAnnotationDropdownTriggerProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> {
|
|
1078
1082
|
variant?: string;
|
|
1079
1083
|
}
|
|
@@ -1081,6 +1085,7 @@ interface IVeltCommentDialogCustomAnnotationDropdownTrigger extends React.FC<IVe
|
|
|
1081
1085
|
Arrow: React.FC<IVeltCommentDialogCustomAnnotationDropdownTriggerArrowProps>;
|
|
1082
1086
|
List: IVeltCommentDialogCustomAnnotationDropdownTriggerList;
|
|
1083
1087
|
RemainingCount: React.FC<IVeltCommentDialogCustomAnnotationDropdownTriggerRemainingCountProps>;
|
|
1088
|
+
Placeholder: React.FC<IVeltCommentDialogCustomAnnotationDropdownTriggerPlaceholderProps>;
|
|
1084
1089
|
}
|
|
1085
1090
|
|
|
1086
1091
|
interface IVeltCommentDialogCustomAnnotationDropdownProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> {
|
|
@@ -1091,6 +1096,10 @@ interface IVeltCommentDialogCustomAnnotationDropdown extends React.FC<IVeltComme
|
|
|
1091
1096
|
Trigger: IVeltCommentDialogCustomAnnotationDropdownTrigger;
|
|
1092
1097
|
}
|
|
1093
1098
|
|
|
1099
|
+
interface IVeltCommentDialogDeleteButtonProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> {
|
|
1100
|
+
variant?: string;
|
|
1101
|
+
}
|
|
1102
|
+
|
|
1094
1103
|
interface IVeltCommentDialogWireframeProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> {
|
|
1095
1104
|
variant?: string;
|
|
1096
1105
|
}
|
|
@@ -1120,6 +1129,7 @@ declare const VeltCommentDialogWireframe: React.FC<IVeltCommentDialogWireframePr
|
|
|
1120
1129
|
ToggleReply: React.FC<IVeltCommentDialogToggleReplyProps>;
|
|
1121
1130
|
Upgrade: React.FC<IVeltCommentDialogUpgradeProps>;
|
|
1122
1131
|
CustomAnnotationDropdown: IVeltCommentDialogCustomAnnotationDropdown;
|
|
1132
|
+
DeleteButton: React.FC<IVeltCommentDialogDeleteButtonProps>;
|
|
1123
1133
|
};
|
|
1124
1134
|
|
|
1125
1135
|
interface IVeltCommentsSidebarCloseButtonProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> {
|
package/package.json
CHANGED
|
@@ -1,7 +1,37 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@veltdev/react",
|
|
3
|
-
"version": "2.0.
|
|
4
|
-
"description": "",
|
|
3
|
+
"version": "2.0.25",
|
|
4
|
+
"description": "Velt is an SDK to add collaborative features to your product within minutes. Example: Comments like Figma, Frame.io, Google docs or sheets, Recording like Loom, Huddles like Slack and much more.",
|
|
5
|
+
"homepage": "https://velt.dev",
|
|
6
|
+
"keywords": [
|
|
7
|
+
"react",
|
|
8
|
+
"velt",
|
|
9
|
+
"real-time",
|
|
10
|
+
"realtime",
|
|
11
|
+
"toolkit",
|
|
12
|
+
"multiplayer",
|
|
13
|
+
"websockets",
|
|
14
|
+
"collaboration",
|
|
15
|
+
"collaborative",
|
|
16
|
+
"presence",
|
|
17
|
+
"synchronize",
|
|
18
|
+
"rooms",
|
|
19
|
+
"documents",
|
|
20
|
+
"conflict resolution",
|
|
21
|
+
"huddle",
|
|
22
|
+
"crdts",
|
|
23
|
+
"comment",
|
|
24
|
+
"comments",
|
|
25
|
+
"recording",
|
|
26
|
+
"video call",
|
|
27
|
+
"audio call",
|
|
28
|
+
"screen recording",
|
|
29
|
+
"webrtc",
|
|
30
|
+
"cursors",
|
|
31
|
+
"notifications",
|
|
32
|
+
"cord",
|
|
33
|
+
"liveblocks"
|
|
34
|
+
],
|
|
5
35
|
"scripts": {
|
|
6
36
|
"test": "echo \"Error: no test specified\" && exit 1",
|
|
7
37
|
"version:update": "node ../update-npm-package.mjs",
|