@veltdev/react 5.0.0-beta.1 → 5.0.0-beta.2
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 +8 -8
- package/cjs/index.js.map +1 -1
- package/cjs/types/components/VeltCommentComposer/VeltCommentComposer.d.ts +2 -0
- package/cjs/types/components/VeltCommentDialog/VeltCommentDialog.d.ts +1 -0
- package/cjs/types/components/VeltCommentDialog/VeltCommentDialogComposer/VeltCommentDialogComposer.d.ts +1 -0
- package/cjs/types/constants.d.ts +1 -1
- package/esm/index.js +8 -8
- package/esm/index.js.map +1 -1
- package/esm/types/components/VeltCommentComposer/VeltCommentComposer.d.ts +2 -0
- package/esm/types/components/VeltCommentDialog/VeltCommentDialog.d.ts +1 -0
- package/esm/types/components/VeltCommentDialog/VeltCommentDialogComposer/VeltCommentDialogComposer.d.ts +1 -0
- package/esm/types/constants.d.ts +1 -1
- package/index.d.ts +4 -0
- package/package.json +1 -1
|
@@ -10,6 +10,8 @@ export interface IVeltCommentComposerProps extends React.DetailedHTMLProps<React
|
|
|
10
10
|
locationId?: string;
|
|
11
11
|
documentId?: string;
|
|
12
12
|
folderId?: string;
|
|
13
|
+
placeholder?: string;
|
|
14
|
+
targetElementId?: string;
|
|
13
15
|
}
|
|
14
16
|
declare const VeltCommentComposer: React.FC<IVeltCommentComposerProps>;
|
|
15
17
|
export default VeltCommentComposer;
|
|
@@ -6,6 +6,7 @@ export interface IVeltCommentDialogProps extends React.DetailedHTMLProps<React.H
|
|
|
6
6
|
commentPinSelected?: boolean;
|
|
7
7
|
fullExpanded?: boolean;
|
|
8
8
|
shadowDom?: boolean;
|
|
9
|
+
placeholder?: string;
|
|
9
10
|
}
|
|
10
11
|
declare const VeltCommentDialog: React.FC<IVeltCommentDialogProps>;
|
|
11
12
|
export default VeltCommentDialog;
|
|
@@ -11,6 +11,7 @@ export interface IVeltCommentDialogComposerProps extends React.DetailedHTMLProps
|
|
|
11
11
|
commentplaceholder?: string;
|
|
12
12
|
replyplaceholder?: string;
|
|
13
13
|
editplaceholder?: string;
|
|
14
|
+
targetElementId?: string;
|
|
14
15
|
}
|
|
15
16
|
declare const VeltCommentDialogComposer: React.FC<IVeltCommentDialogComposerProps>;
|
|
16
17
|
export default VeltCommentDialogComposer;
|
package/esm/types/constants.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
-
export declare const VELT_SDK_VERSION = "5.0.0-beta.
|
|
2
|
+
export declare const VELT_SDK_VERSION = "5.0.0-beta.2";
|
|
3
3
|
export declare const VELT_SDK_INIT_EVENT = "onVeltInit";
|
|
4
4
|
export declare const VELT_TAB_ID = "veltTabId";
|
|
5
5
|
export declare const INTEGRITY_MAP: Record<string, string>;
|
package/index.d.ts
CHANGED
|
@@ -795,6 +795,8 @@ interface IVeltCommentComposerProps extends React$1.DetailedHTMLProps<React$1.HT
|
|
|
795
795
|
locationId?: string;
|
|
796
796
|
documentId?: string;
|
|
797
797
|
folderId?: string;
|
|
798
|
+
placeholder?: string;
|
|
799
|
+
targetElementId?: string;
|
|
798
800
|
}
|
|
799
801
|
declare const VeltCommentComposer: React$1.FC<IVeltCommentComposerProps>;
|
|
800
802
|
|
|
@@ -822,6 +824,7 @@ interface IVeltCommentDialogProps extends React$1.DetailedHTMLProps<React$1.HTML
|
|
|
822
824
|
commentPinSelected?: boolean;
|
|
823
825
|
fullExpanded?: boolean;
|
|
824
826
|
shadowDom?: boolean;
|
|
827
|
+
placeholder?: string;
|
|
825
828
|
}
|
|
826
829
|
declare const VeltCommentDialog: React$1.FC<IVeltCommentDialogProps>;
|
|
827
830
|
|
|
@@ -1675,6 +1678,7 @@ interface IVeltCommentDialogComposerProps$1 extends React$1.DetailedHTMLProps<Re
|
|
|
1675
1678
|
commentplaceholder?: string;
|
|
1676
1679
|
replyplaceholder?: string;
|
|
1677
1680
|
editplaceholder?: string;
|
|
1681
|
+
targetElementId?: string;
|
|
1678
1682
|
}
|
|
1679
1683
|
declare const VeltCommentDialogComposer: React$1.FC<IVeltCommentDialogComposerProps$1>;
|
|
1680
1684
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@veltdev/react",
|
|
3
|
-
"version": "5.0.0-beta.
|
|
3
|
+
"version": "5.0.0-beta.2",
|
|
4
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
5
|
"homepage": "https://velt.dev",
|
|
6
6
|
"keywords": [
|