@veltdev/react 2.0.24 → 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.
Files changed (15) hide show
  1. package/README.md +0 -0
  2. package/cjs/index.js +7 -1
  3. package/cjs/index.js.map +1 -1
  4. package/cjs/types/components/VeltCommentDialogWireframe/VeltCommentDialogCustomAnnotationDropdown/VeltCommentDialogCustomAnnotationDropdownTrigger/VeltCommentDialogCustomAnnotationDropdownTrigger.d.ts +2 -0
  5. package/cjs/types/components/VeltCommentDialogWireframe/VeltCommentDialogCustomAnnotationDropdown/VeltCommentDialogCustomAnnotationDropdownTrigger/VeltCommentDialogCustomAnnotationDropdownTriggerPlaceholder/VeltCommentDialogCustomAnnotationDropdownTriggerPlaceholder.d.ts +6 -0
  6. package/cjs/types/components/VeltCommentDialogWireframe/VeltCommentDialogCustomAnnotationDropdown/VeltCommentDialogCustomAnnotationDropdownTrigger/VeltCommentDialogCustomAnnotationDropdownTriggerPlaceholder/index.d.ts +1 -0
  7. package/cjs/types/constants.d.ts +1 -1
  8. package/esm/index.js +7 -1
  9. package/esm/index.js.map +1 -1
  10. package/esm/types/components/VeltCommentDialogWireframe/VeltCommentDialogCustomAnnotationDropdown/VeltCommentDialogCustomAnnotationDropdownTrigger/VeltCommentDialogCustomAnnotationDropdownTrigger.d.ts +2 -0
  11. package/esm/types/components/VeltCommentDialogWireframe/VeltCommentDialogCustomAnnotationDropdown/VeltCommentDialogCustomAnnotationDropdownTrigger/VeltCommentDialogCustomAnnotationDropdownTriggerPlaceholder/VeltCommentDialogCustomAnnotationDropdownTriggerPlaceholder.d.ts +6 -0
  12. package/esm/types/components/VeltCommentDialogWireframe/VeltCommentDialogCustomAnnotationDropdown/VeltCommentDialogCustomAnnotationDropdownTrigger/VeltCommentDialogCustomAnnotationDropdownTriggerPlaceholder/index.d.ts +1 -0
  13. package/esm/types/constants.d.ts +1 -1
  14. package/index.d.ts +5 -0
  15. 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;
@@ -1,3 +1,3 @@
1
- export declare const VELT_SDK_VERSION = "2.0.24";
1
+ export declare const VELT_SDK_VERSION = "2.0.25";
2
2
  export declare const VELT_SDK_INIT_EVENT = "onVeltInit";
3
3
  export declare const VELT_TAB_ID = "veltTabId";
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> {
package/package.json CHANGED
@@ -1,7 +1,37 @@
1
1
  {
2
2
  "name": "@veltdev/react",
3
- "version": "2.0.24",
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",