@veltdev/react 1.0.106 → 1.0.108
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 +3 -3
- package/cjs/index.js.map +1 -1
- package/cjs/types/components/SnippylyComments/SnippylyComments.d.ts +1 -0
- package/cjs/types/components/SnippylyCommentsSidebar/SnippylyCommentsSidebar.d.ts +1 -0
- package/cjs/types/constants.d.ts +1 -1
- package/esm/index.js +3 -3
- package/esm/index.js.map +1 -1
- package/esm/types/components/SnippylyComments/SnippylyComments.d.ts +1 -0
- package/esm/types/components/SnippylyCommentsSidebar/SnippylyCommentsSidebar.d.ts +1 -0
- package/esm/types/constants.d.ts +1 -1
- package/index.d.ts +2 -0
- package/package.json +2 -2
|
@@ -47,6 +47,7 @@ export interface IVeltCommentsProps extends React.DetailedHTMLProps<React.HTMLAt
|
|
|
47
47
|
hotkey?: boolean;
|
|
48
48
|
recordingSummary?: boolean;
|
|
49
49
|
recordingCountdown?: boolean;
|
|
50
|
+
unreadIndicatorMode?: 'minimal' | 'verbose';
|
|
50
51
|
allowedElementIds?: string[];
|
|
51
52
|
allowedElementClassNames?: string[];
|
|
52
53
|
allowedElementQuerySelectors?: string[];
|
package/esm/types/constants.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const VELT_SDK_VERSION = "1.0.
|
|
1
|
+
export declare const VELT_SDK_VERSION = "1.0.120";
|
|
2
2
|
export declare const VELT_SDK_INIT_EVENT = "onVeltInit";
|
package/index.d.ts
CHANGED
|
@@ -79,6 +79,7 @@ interface IVeltCommentsProps extends React.DetailedHTMLProps<React.HTMLAttribute
|
|
|
79
79
|
hotkey?: boolean;
|
|
80
80
|
recordingSummary?: boolean;
|
|
81
81
|
recordingCountdown?: boolean;
|
|
82
|
+
unreadIndicatorMode?: 'minimal' | 'verbose';
|
|
82
83
|
allowedElementIds?: string[];
|
|
83
84
|
allowedElementClassNames?: string[];
|
|
84
85
|
allowedElementQuerySelectors?: string[];
|
|
@@ -117,6 +118,7 @@ declare class FilterTypeConfig {
|
|
|
117
118
|
enable?: boolean;
|
|
118
119
|
multiSelection?: boolean;
|
|
119
120
|
enableGrouping?: boolean;
|
|
121
|
+
order?: string[];
|
|
120
122
|
}
|
|
121
123
|
declare class CommentSidebarFilterConfig {
|
|
122
124
|
location?: FilterTypeConfig;
|
package/package.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@veltdev/react",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.108",
|
|
4
4
|
"description": "",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"test": "echo \"Error: no test specified\" && exit 1",
|
|
7
7
|
"version:update": "npm version patch",
|
|
8
|
-
"publish:sdk-react": "
|
|
8
|
+
"publish:sdk-react": "node ../update-and-publish.mjs @veltdev/react --access=public"
|
|
9
9
|
},
|
|
10
10
|
"author": "",
|
|
11
11
|
"license": "ISC",
|