@veltdev/react 3.0.8 → 3.0.9
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 +5 -5
- package/cjs/index.js.map +1 -1
- package/cjs/types/components/SnippylyComments/SnippylyComments.d.ts +1 -0
- package/cjs/types/components/VeltInlineReactionsSection/VeltInlineReactionsSection.d.ts +2 -0
- package/cjs/types/constants.d.ts +1 -1
- package/esm/index.js +5 -5
- package/esm/index.js.map +1 -1
- package/esm/types/components/SnippylyComments/SnippylyComments.d.ts +1 -0
- package/esm/types/components/VeltInlineReactionsSection/VeltInlineReactionsSection.d.ts +2 -0
- package/esm/types/constants.d.ts +1 -1
- package/index.d.ts +2 -0
- package/package.json +1 -1
|
@@ -117,6 +117,7 @@ export interface IVeltCommentsProps extends React.DetailedHTMLProps<React.HTMLAt
|
|
|
117
117
|
textCommentToolbarShadowDom?: boolean;
|
|
118
118
|
composerMode?: 'default' | 'expanded';
|
|
119
119
|
atHereLabel?: string;
|
|
120
|
+
multiThreadMode?: boolean;
|
|
120
121
|
}
|
|
121
122
|
declare const SnippylyComments: React.FC<IVeltCommentsProps>;
|
|
122
123
|
export default SnippylyComments;
|
|
@@ -1,9 +1,11 @@
|
|
|
1
|
+
import { ReactionMap } from '@veltdev/types';
|
|
1
2
|
import React from 'react';
|
|
2
3
|
export interface IVeltInlineReactionsSectionProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> {
|
|
3
4
|
targetReactionElementId?: string;
|
|
4
5
|
darkMode?: boolean;
|
|
5
6
|
variant?: string;
|
|
6
7
|
shadowDom?: boolean;
|
|
8
|
+
customReactions?: ReactionMap;
|
|
7
9
|
}
|
|
8
10
|
declare const VeltInlineReactionsSection: React.FC<IVeltInlineReactionsSectionProps>;
|
|
9
11
|
export default VeltInlineReactionsSection;
|
package/esm/types/constants.d.ts
CHANGED
package/index.d.ts
CHANGED
|
@@ -157,6 +157,7 @@ interface IVeltCommentsProps extends React.DetailedHTMLProps<React.HTMLAttribute
|
|
|
157
157
|
textCommentToolbarShadowDom?: boolean;
|
|
158
158
|
composerMode?: 'default' | 'expanded';
|
|
159
159
|
atHereLabel?: string;
|
|
160
|
+
multiThreadMode?: boolean;
|
|
160
161
|
}
|
|
161
162
|
declare const SnippylyComments: React.FC<IVeltCommentsProps>;
|
|
162
163
|
|
|
@@ -603,6 +604,7 @@ interface IVeltInlineReactionsSectionProps extends React.DetailedHTMLProps<React
|
|
|
603
604
|
darkMode?: boolean;
|
|
604
605
|
variant?: string;
|
|
605
606
|
shadowDom?: boolean;
|
|
607
|
+
customReactions?: ReactionMap;
|
|
606
608
|
}
|
|
607
609
|
declare const VeltInlineReactionsSection: React.FC<IVeltInlineReactionsSectionProps>;
|
|
608
610
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@veltdev/react",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.9",
|
|
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": [
|