@veltdev/react 4.7.1-beta.1 → 4.7.1-beta.3
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 -6
- package/cjs/index.js.map +1 -1
- package/cjs/types/components/SnippylyCommentsSidebar/SnippylyCommentsSidebar.d.ts +3 -0
- package/cjs/types/components/VeltInlineCommentsSection/VeltInlineCommentsSection.d.ts +3 -0
- package/cjs/types/constants.d.ts +1 -1
- package/esm/index.js +6 -6
- package/esm/index.js.map +1 -1
- package/esm/types/components/SnippylyCommentsSidebar/SnippylyCommentsSidebar.d.ts +3 -0
- package/esm/types/components/VeltInlineCommentsSection/VeltInlineCommentsSection.d.ts +3 -0
- package/esm/types/constants.d.ts +1 -1
- package/index.d.ts +6 -0
- package/package.json +1 -1
|
@@ -57,6 +57,9 @@ export interface IVeltCommentsSidebarProps {
|
|
|
57
57
|
sortOrder?: SortOrder;
|
|
58
58
|
sortBy?: SortBy;
|
|
59
59
|
forceClose?: boolean;
|
|
60
|
+
commentPlaceholder?: string;
|
|
61
|
+
replyPlaceholder?: string;
|
|
62
|
+
pageModePlaceholder?: string;
|
|
60
63
|
}
|
|
61
64
|
declare const SnippylyCommentsSidebar: React.FC<IVeltCommentsSidebarProps>;
|
|
62
65
|
export default SnippylyCommentsSidebar;
|
|
@@ -35,6 +35,9 @@ export interface IVeltInlineCommentsSectionProps extends React.DetailedHTMLProps
|
|
|
35
35
|
locationId?: string;
|
|
36
36
|
documentId?: string;
|
|
37
37
|
folderId?: string;
|
|
38
|
+
commentPlaceholder?: string;
|
|
39
|
+
replyPlaceholder?: string;
|
|
40
|
+
composerPlaceholder?: string;
|
|
38
41
|
}
|
|
39
42
|
declare const VeltInlineCommentsSection: React.FC<IVeltInlineCommentsSectionProps>;
|
|
40
43
|
export default VeltInlineCommentsSection;
|
package/esm/types/constants.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
-
export declare const VELT_SDK_VERSION = "4.7.1-beta.
|
|
2
|
+
export declare const VELT_SDK_VERSION = "4.7.1-beta.3";
|
|
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
|
@@ -270,6 +270,9 @@ interface IVeltCommentsSidebarProps {
|
|
|
270
270
|
sortOrder?: SortOrder;
|
|
271
271
|
sortBy?: SortBy;
|
|
272
272
|
forceClose?: boolean;
|
|
273
|
+
commentPlaceholder?: string;
|
|
274
|
+
replyPlaceholder?: string;
|
|
275
|
+
pageModePlaceholder?: string;
|
|
273
276
|
}
|
|
274
277
|
declare const SnippylyCommentsSidebar: React$1.FC<IVeltCommentsSidebarProps>;
|
|
275
278
|
|
|
@@ -715,6 +718,9 @@ interface IVeltInlineCommentsSectionProps extends React$1.DetailedHTMLProps<Reac
|
|
|
715
718
|
locationId?: string;
|
|
716
719
|
documentId?: string;
|
|
717
720
|
folderId?: string;
|
|
721
|
+
commentPlaceholder?: string;
|
|
722
|
+
replyPlaceholder?: string;
|
|
723
|
+
composerPlaceholder?: string;
|
|
718
724
|
}
|
|
719
725
|
declare const VeltInlineCommentsSection: React$1.FC<IVeltInlineCommentsSectionProps>;
|
|
720
726
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@veltdev/react",
|
|
3
|
-
"version": "4.7.1-beta.
|
|
3
|
+
"version": "4.7.1-beta.3",
|
|
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": [
|