@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.
@@ -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[];
@@ -4,6 +4,7 @@ declare class FilterTypeConfig {
4
4
  enable?: boolean;
5
5
  multiSelection?: boolean;
6
6
  enableGrouping?: boolean;
7
+ order?: string[];
7
8
  }
8
9
  declare class CommentSidebarFilterConfig {
9
10
  location?: FilterTypeConfig;
@@ -1,2 +1,2 @@
1
- export declare const VELT_SDK_VERSION = "1.0.117";
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.106",
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": "npm publish --access public"
8
+ "publish:sdk-react": "node ../update-and-publish.mjs @veltdev/react --access=public"
9
9
  },
10
10
  "author": "",
11
11
  "license": "ISC",