@veltdev/react 4.3.0-beta.6 → 4.3.0

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.
@@ -134,6 +134,7 @@ export interface IVeltCommentsProps extends React.DetailedHTMLProps<React.HTMLAt
134
134
  expandMentionGroups?: boolean;
135
135
  showMentionGroupsFirst?: boolean;
136
136
  showMentionGroupsOnly?: boolean;
137
+ fullExpanded?: boolean;
137
138
  }
138
139
  declare const SnippylyComments: React.FC<IVeltCommentsProps>;
139
140
  export default SnippylyComments;
@@ -79,6 +79,7 @@ export interface IVeltCommentsSidebarProps {
79
79
  searchPlaceholder?: string;
80
80
  filterOptionLayout?: 'checkbox' | 'dropdown';
81
81
  filterCount?: boolean;
82
+ fullExpanded?: boolean;
82
83
  }
83
84
  declare const SnippylyCommentsSidebar: React.FC<IVeltCommentsSidebarProps>;
84
85
  export default SnippylyCommentsSidebar;
@@ -8,6 +8,7 @@ export interface IVeltCommentThreadProps {
8
8
  variant?: string;
9
9
  dialogVariant?: string;
10
10
  shadowDom?: boolean;
11
+ fullExpanded?: boolean;
11
12
  }
12
13
  declare const VeltCommentThread: React.FC<IVeltCommentThreadProps>;
13
14
  export default VeltCommentThread;
@@ -12,6 +12,7 @@ import { IVeltCommentsSidebarFilterTitleProps } from './VeltCommentsSidebarFilte
12
12
  import { IVeltCommentsSidebarFilterVersions } from './VeltCommentsSidebarFilterVersions/VeltCommentsSidebarFilterVersions';
13
13
  import { IVeltCommentsSidebarFilterItem } from './VeltCommentsSidebarFilterItem/VeltCommentsSidebarFilterItem';
14
14
  import { IVeltCommentsSidebarFilterStatus } from './VeltCommentsSidebarFilterStatus/VeltCommentsSidebarFilterStatus';
15
+ import { IVeltCommentsSidebarFilterSearch } from './VeltCommentsSidebarFilterSearch/VeltCommentsSidebarFilterSearch';
15
16
  import { IVeltCommentsSidebarFilterResetButtonProps } from './VeltCommentsSidebarFilterResetButton/VeltCommentsSidebarFilterResetButton';
16
17
  import { IVeltCommentsSidebarFilterAssigned } from './VeltCommentsSidebarFilterAssigned/VeltCommentsSidebarFilterAssigned';
17
18
  import { IVeltCommentsSidebarFilterTagged } from './VeltCommentsSidebarFilterTagged/VeltCommentsSidebarFilterTagged';
@@ -33,6 +34,7 @@ export interface IVeltCommentsSidebarFilter extends React.FC<IVeltCommentsSideba
33
34
  Item: IVeltCommentsSidebarFilterItem;
34
35
  Status: IVeltCommentsSidebarFilterStatus;
35
36
  ResetButton: React.FC<IVeltCommentsSidebarFilterResetButtonProps>;
37
+ Search: IVeltCommentsSidebarFilterSearch;
36
38
  }
37
39
  declare const VeltCommentsSidebarFilter: IVeltCommentsSidebarFilter;
38
40
  export default VeltCommentsSidebarFilter;
@@ -26,6 +26,7 @@ export interface IVeltInlineCommentsSectionProps extends React.DetailedHTMLProps
26
26
  composerPosition?: 'top' | 'bottom';
27
27
  sortBy?: 'createdAt' | 'lastUpdated';
28
28
  sortOrder?: 'asc' | 'desc';
29
+ fullExpanded?: boolean;
29
30
  }
30
31
  declare const VeltInlineCommentsSection: React.FC<IVeltInlineCommentsSectionProps>;
31
32
  export default VeltInlineCommentsSection;
@@ -1,5 +1,5 @@
1
1
  /// <reference types="react" />
2
- export declare const VELT_SDK_VERSION = "4.3.0-beta.6";
2
+ export declare const VELT_SDK_VERSION = "4.3.0";
3
3
  export declare const VELT_SDK_INIT_EVENT = "onVeltInit";
4
4
  export declare const VELT_TAB_ID = "veltTabId";
5
5
  export interface IVeltWireframeCommonProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> {
@@ -8,4 +8,4 @@ export declare function useRecorderAddHandler(): RecordedData | null | undefined
8
8
  * @deprecated Use `recorderUtils.getRecordingData()` method instead
9
9
  */
10
10
  export declare function useRecordingDataByRecorderId(recorderId: string): RecordedData | null;
11
- export declare function useRecordings(query?: RecorderRequestQuery): GetRecordingsResponse;
11
+ export declare function useRecordings(query?: RecorderRequestQuery): GetRecordingsResponse[];
package/index.d.ts CHANGED
@@ -176,6 +176,7 @@ interface IVeltCommentsProps extends React$1.DetailedHTMLProps<React$1.HTMLAttri
176
176
  expandMentionGroups?: boolean;
177
177
  showMentionGroupsFirst?: boolean;
178
178
  showMentionGroupsOnly?: boolean;
179
+ fullExpanded?: boolean;
179
180
  }
180
181
  declare const SnippylyComments: React$1.FC<IVeltCommentsProps>;
181
182
 
@@ -259,6 +260,7 @@ interface IVeltCommentsSidebarProps {
259
260
  searchPlaceholder?: string;
260
261
  filterOptionLayout?: 'checkbox' | 'dropdown';
261
262
  filterCount?: boolean;
263
+ fullExpanded?: boolean;
262
264
  }
263
265
  declare const SnippylyCommentsSidebar: React$1.FC<IVeltCommentsSidebarProps>;
264
266
 
@@ -545,6 +547,7 @@ interface IVeltCommentThreadProps {
545
547
  variant?: string;
546
548
  dialogVariant?: string;
547
549
  shadowDom?: boolean;
550
+ fullExpanded?: boolean;
548
551
  }
549
552
  declare const VeltCommentThread: React$1.FC<IVeltCommentThreadProps>;
550
553
 
@@ -656,6 +659,7 @@ interface IVeltInlineCommentsSectionProps extends React$1.DetailedHTMLProps<Reac
656
659
  composerPosition?: 'top' | 'bottom';
657
660
  sortBy?: 'createdAt' | 'lastUpdated';
658
661
  sortOrder?: 'asc' | 'desc';
662
+ fullExpanded?: boolean;
659
663
  }
660
664
  declare const VeltInlineCommentsSection: React$1.FC<IVeltInlineCommentsSectionProps>;
661
665
 
@@ -1563,6 +1567,7 @@ interface IVeltCommentsSidebarFilter extends React$1.FC<IVeltCommentsSidebarFilt
1563
1567
  Item: IVeltCommentsSidebarFilterItem;
1564
1568
  Status: IVeltCommentsSidebarFilterStatus;
1565
1569
  ResetButton: React$1.FC<IVeltCommentsSidebarFilterResetButtonProps>;
1570
+ Search: IVeltCommentsSidebarFilterSearch;
1566
1571
  }
1567
1572
 
1568
1573
  interface IVeltCommentsSidebarFilterButtonProps extends IVeltWireframeCommonProps {
@@ -3743,7 +3748,7 @@ declare function useRecorderAddHandler(): RecordedData | null | undefined;
3743
3748
  * @deprecated Use `recorderUtils.getRecordingData()` method instead
3744
3749
  */
3745
3750
  declare function useRecordingDataByRecorderId(recorderId: string): RecordedData | null;
3746
- declare function useRecordings(query?: RecorderRequestQuery): GetRecordingsResponse;
3751
+ declare function useRecordings(query?: RecorderRequestQuery): GetRecordingsResponse[];
3747
3752
 
3748
3753
  declare function useRecorderEventCallback<T extends keyof RecorderEventTypesMap>(action: T): RecorderEventTypesMap[T];
3749
3754
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@veltdev/react",
3
- "version": "4.3.0-beta.6",
3
+ "version": "4.3.0",
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": [