@veltdev/react 4.7.6 → 4.7.8
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 +10 -3
- package/cjs/index.js.map +1 -1
- package/cjs/types/components/VeltCommentDialogWireframe/VeltCommentDialogThreadCard/VeltCommentDialogThreadCard.d.ts +2 -0
- package/cjs/types/components/VeltCommentDialogWireframe/VeltCommentDialogThreadCard/VeltCommentDialogThreadCardAssignButton/VeltCommentDialogThreadCardAssignButton.d.ts +6 -0
- package/cjs/types/components/VeltCommentDialogWireframe/VeltCommentDialogThreadCard/VeltCommentDialogThreadCardAssignButton/index.d.ts +1 -0
- package/cjs/types/constants.d.ts +1 -1
- package/esm/index.js +10 -3
- package/esm/index.js.map +1 -1
- package/esm/types/components/VeltCommentDialogWireframe/VeltCommentDialogThreadCard/VeltCommentDialogThreadCard.d.ts +2 -0
- package/esm/types/components/VeltCommentDialogWireframe/VeltCommentDialogThreadCard/VeltCommentDialogThreadCardAssignButton/VeltCommentDialogThreadCardAssignButton.d.ts +6 -0
- package/esm/types/components/VeltCommentDialogWireframe/VeltCommentDialogThreadCard/VeltCommentDialogThreadCardAssignButton/index.d.ts +1 -0
- package/esm/types/constants.d.ts +1 -1
- package/index.d.ts +4 -0
- package/package.json +2 -2
|
@@ -8,6 +8,7 @@ import { IVeltCommentDialogThreadCardNameProps } from "./VeltCommentDialogThread
|
|
|
8
8
|
import { IVeltCommentDialogThreadCardOptions } from "./VeltCommentDialogThreadCardOptions/VeltCommentDialogThreadCardOptions";
|
|
9
9
|
import { IVeltCommentDialogThreadCardReactionToolProps } from "./VeltCommentDialogThreadCardReactionTool/VeltCommentDialogThreadCardReactionTool";
|
|
10
10
|
import { IVeltCommentDialogThreadCardReactionPinProps } from "./VeltCommentDialogThreadCardReactionPin/VeltCommentDialogThreadCardReactionPin";
|
|
11
|
+
import { IVeltCommentDialogThreadCardAssignButtonProps } from "./VeltCommentDialogThreadCardAssignButton/VeltCommentDialogThreadCardAssignButton";
|
|
11
12
|
import { IVeltCommentDialogThreadCardReactionsProps } from "./VeltCommentDialogThreadCardReactions/VeltCommentDialogThreadCardReactions";
|
|
12
13
|
import { IVeltCommentDialogThreadCardRecordingsProps } from "./VeltCommentDialogThreadCardRecordings/VeltCommentDialogThreadCardRecordings";
|
|
13
14
|
import { IVeltCommentDialogThreadCardTimeProps } from "./VeltCommentDialogThreadCardTime/VeltCommentDialogThreadCardTime";
|
|
@@ -28,6 +29,7 @@ export interface IVeltCommentDialogThreadCard extends React.FC<IVeltCommentDialo
|
|
|
28
29
|
Reactions: React.FC<IVeltCommentDialogThreadCardReactionsProps>;
|
|
29
30
|
ReactionTool: React.FC<IVeltCommentDialogThreadCardReactionToolProps>;
|
|
30
31
|
ReactionPin: React.FC<IVeltCommentDialogThreadCardReactionPinProps>;
|
|
32
|
+
AssignButton: React.FC<IVeltCommentDialogThreadCardAssignButtonProps>;
|
|
31
33
|
Recordings: React.FC<IVeltCommentDialogThreadCardRecordingsProps>;
|
|
32
34
|
Time: React.FC<IVeltCommentDialogThreadCardTimeProps>;
|
|
33
35
|
Unread: React.FC<IVeltCommentDialogThreadCardUnreadProps>;
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { IVeltWireframeCommonProps } from '../../../../constants';
|
|
3
|
+
export interface IVeltCommentDialogThreadCardAssignButtonProps extends IVeltWireframeCommonProps {
|
|
4
|
+
}
|
|
5
|
+
declare const VeltCommentDialogThreadCardAssignButton: React.FC<IVeltCommentDialogThreadCardAssignButtonProps>;
|
|
6
|
+
export default VeltCommentDialogThreadCardAssignButton;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default } from './VeltCommentDialogThreadCardAssignButton';
|
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.
|
|
2
|
+
export declare const VELT_SDK_VERSION = "4.7.8";
|
|
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
|
@@ -1269,6 +1269,9 @@ interface IVeltCommentDialogThreadCardReactionPinProps extends IVeltWireframeCom
|
|
|
1269
1269
|
reactionId?: string;
|
|
1270
1270
|
}
|
|
1271
1271
|
|
|
1272
|
+
interface IVeltCommentDialogThreadCardAssignButtonProps extends IVeltWireframeCommonProps {
|
|
1273
|
+
}
|
|
1274
|
+
|
|
1272
1275
|
interface IVeltCommentDialogThreadCardReactionsProps extends IVeltWireframeCommonProps {
|
|
1273
1276
|
excludeReactionIds?: string[];
|
|
1274
1277
|
}
|
|
@@ -1357,6 +1360,7 @@ interface IVeltCommentDialogThreadCard extends React$1.FC<IVeltCommentDialogThre
|
|
|
1357
1360
|
Reactions: React$1.FC<IVeltCommentDialogThreadCardReactionsProps>;
|
|
1358
1361
|
ReactionTool: React$1.FC<IVeltCommentDialogThreadCardReactionToolProps>;
|
|
1359
1362
|
ReactionPin: React$1.FC<IVeltCommentDialogThreadCardReactionPinProps>;
|
|
1363
|
+
AssignButton: React$1.FC<IVeltCommentDialogThreadCardAssignButtonProps>;
|
|
1360
1364
|
Recordings: React$1.FC<IVeltCommentDialogThreadCardRecordingsProps>;
|
|
1361
1365
|
Time: React$1.FC<IVeltCommentDialogThreadCardTimeProps>;
|
|
1362
1366
|
Unread: React$1.FC<IVeltCommentDialogThreadCardUnreadProps>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@veltdev/react",
|
|
3
|
-
"version": "4.7.
|
|
3
|
+
"version": "4.7.8",
|
|
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": [
|
|
@@ -35,7 +35,7 @@
|
|
|
35
35
|
"scripts": {
|
|
36
36
|
"test": "echo \"Error: no test specified\" && exit 1",
|
|
37
37
|
"version:update": "node ../update-npm-package.mjs",
|
|
38
|
-
"publish:sdk": "npm publish --access public --tag v4-7-
|
|
38
|
+
"publish:sdk": "npm publish --access public --tag v4-7-8"
|
|
39
39
|
},
|
|
40
40
|
"author": "",
|
|
41
41
|
"license": "ISC",
|