@veltdev/react 4.6.10 → 4.7.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 +6 -6
- package/cjs/index.js.map +1 -1
- package/cjs/types/components/SnippylyCommentsSidebar/SnippylyCommentsSidebar.d.ts +1 -0
- package/cjs/types/components/VeltCommentComposer/VeltCommentComposer.d.ts +6 -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 +1 -0
- package/esm/types/components/VeltCommentComposer/VeltCommentComposer.d.ts +6 -0
- package/esm/types/constants.d.ts +1 -1
- package/index.d.ts +7 -0
- package/package.json +1 -1
|
@@ -38,6 +38,7 @@ export interface IVeltCommentsSidebarProps {
|
|
|
38
38
|
customActions?: boolean;
|
|
39
39
|
focusedThreadDialogVariant?: string;
|
|
40
40
|
focusedThreadMode?: boolean;
|
|
41
|
+
openAnnotationInFocusMode?: boolean;
|
|
41
42
|
searchPlaceholder?: string;
|
|
42
43
|
filterOptionLayout?: 'checkbox' | 'dropdown';
|
|
43
44
|
filterCount?: boolean;
|
|
@@ -4,6 +4,12 @@ export interface IVeltCommentComposerProps extends React.DetailedHTMLProps<React
|
|
|
4
4
|
variant?: string;
|
|
5
5
|
dialogVariant?: string;
|
|
6
6
|
shadowDom?: boolean;
|
|
7
|
+
context?: {
|
|
8
|
+
[key: string]: any;
|
|
9
|
+
};
|
|
10
|
+
locationId?: string;
|
|
11
|
+
documentId?: string;
|
|
12
|
+
folderId?: string;
|
|
7
13
|
}
|
|
8
14
|
declare const VeltCommentComposer: React.FC<IVeltCommentComposerProps>;
|
|
9
15
|
export default VeltCommentComposer;
|
package/esm/types/constants.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
-
export declare const VELT_SDK_VERSION = "4.
|
|
2
|
+
export declare const VELT_SDK_VERSION = "4.7.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
|
@@ -250,6 +250,7 @@ interface IVeltCommentsSidebarProps {
|
|
|
250
250
|
customActions?: boolean;
|
|
251
251
|
focusedThreadDialogVariant?: string;
|
|
252
252
|
focusedThreadMode?: boolean;
|
|
253
|
+
openAnnotationInFocusMode?: boolean;
|
|
253
254
|
searchPlaceholder?: string;
|
|
254
255
|
filterOptionLayout?: 'checkbox' | 'dropdown';
|
|
255
256
|
filterCount?: boolean;
|
|
@@ -773,6 +774,12 @@ interface IVeltCommentComposerProps extends React$1.DetailedHTMLProps<React$1.HT
|
|
|
773
774
|
variant?: string;
|
|
774
775
|
dialogVariant?: string;
|
|
775
776
|
shadowDom?: boolean;
|
|
777
|
+
context?: {
|
|
778
|
+
[key: string]: any;
|
|
779
|
+
};
|
|
780
|
+
locationId?: string;
|
|
781
|
+
documentId?: string;
|
|
782
|
+
folderId?: string;
|
|
776
783
|
}
|
|
777
784
|
declare const VeltCommentComposer: React$1.FC<IVeltCommentComposerProps>;
|
|
778
785
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@veltdev/react",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.7.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": [
|