@veltdev/react 4.5.2-beta.14 → 4.5.2-beta.16

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.
Files changed (28) hide show
  1. package/cjs/index.js +25 -4
  2. package/cjs/index.js.map +1 -1
  3. package/cjs/types/components/SnippylyCommentsSidebar/SnippylyCommentsSidebar.d.ts +1 -0
  4. package/cjs/types/components/VeltCommentDialogWireframe/VeltCommentDialogCommentNumber/VeltCommentDialogCommentNumber.d.ts +8 -0
  5. package/cjs/types/components/VeltCommentDialogWireframe/VeltCommentDialogCommentNumber/index.d.ts +1 -0
  6. package/cjs/types/components/VeltCommentDialogWireframe/VeltCommentDialogWireframe.d.ts +2 -0
  7. package/cjs/types/components/VeltCommentPinWireframe/VeltCommentPinNumber/VeltCommentPinIndex.d.ts +8 -0
  8. package/cjs/types/components/VeltCommentPinWireframe/VeltCommentPinNumber/index.d.ts +1 -0
  9. package/cjs/types/components/VeltCommentPinWireframe/VeltCommentPinWireframe.d.ts +2 -0
  10. package/cjs/types/components/VeltCommentsSidebarWireframe/VeltCommentsSidebarFullscreenButton/VeltCommentsSidebarFullscreenButton.d.ts +8 -0
  11. package/cjs/types/components/VeltCommentsSidebarWireframe/VeltCommentsSidebarFullscreenButton/index.d.ts +1 -0
  12. package/cjs/types/components/VeltCommentsSidebarWireframe/VeltCommentsSidebarWireframe.d.ts +2 -0
  13. package/cjs/types/constants.d.ts +1 -1
  14. package/esm/index.js +25 -4
  15. package/esm/index.js.map +1 -1
  16. package/esm/types/components/SnippylyCommentsSidebar/SnippylyCommentsSidebar.d.ts +1 -0
  17. package/esm/types/components/VeltCommentDialogWireframe/VeltCommentDialogCommentNumber/VeltCommentDialogCommentNumber.d.ts +8 -0
  18. package/esm/types/components/VeltCommentDialogWireframe/VeltCommentDialogCommentNumber/index.d.ts +1 -0
  19. package/esm/types/components/VeltCommentDialogWireframe/VeltCommentDialogWireframe.d.ts +2 -0
  20. package/esm/types/components/VeltCommentPinWireframe/VeltCommentPinNumber/VeltCommentPinIndex.d.ts +8 -0
  21. package/esm/types/components/VeltCommentPinWireframe/VeltCommentPinNumber/index.d.ts +1 -0
  22. package/esm/types/components/VeltCommentPinWireframe/VeltCommentPinWireframe.d.ts +2 -0
  23. package/esm/types/components/VeltCommentsSidebarWireframe/VeltCommentsSidebarFullscreenButton/VeltCommentsSidebarFullscreenButton.d.ts +8 -0
  24. package/esm/types/components/VeltCommentsSidebarWireframe/VeltCommentsSidebarFullscreenButton/index.d.ts +1 -0
  25. package/esm/types/components/VeltCommentsSidebarWireframe/VeltCommentsSidebarWireframe.d.ts +2 -0
  26. package/esm/types/constants.d.ts +1 -1
  27. package/index.d.ts +19 -0
  28. package/package.json +1 -1
@@ -45,6 +45,7 @@ export interface IVeltCommentsSidebarProps {
45
45
  systemFiltersOperator?: 'and' | 'or';
46
46
  sidebarButtonCountType?: 'default' | 'filter';
47
47
  filterGhostCommentsInSidebar?: boolean;
48
+ fullScreen?: boolean;
48
49
  }
49
50
  declare const SnippylyCommentsSidebar: React.FC<IVeltCommentsSidebarProps>;
50
51
  export default SnippylyCommentsSidebar;
@@ -0,0 +1,8 @@
1
+ import React from 'react';
2
+ import { IVeltWireframeCommonProps } from '../../../constants';
3
+ export interface IVeltCommentDialogCommentNumberProps extends IVeltWireframeCommonProps {
4
+ }
5
+ export interface IVeltCommentDialogCommentNumber extends React.FC<IVeltCommentDialogCommentNumberProps> {
6
+ }
7
+ declare const VeltCommentDialogCommentNumber: IVeltCommentDialogCommentNumber;
8
+ export default VeltCommentDialogCommentNumber;
@@ -0,0 +1 @@
1
+ export { default } from "./VeltCommentDialogCommentNumber";
@@ -30,6 +30,7 @@ import { IVeltCommentDialogUnresolveButtonProps } from "./VeltCommentDialogUnres
30
30
  import { IVeltCommentDialogNavigationButtonProps } from "./VeltCommentDialogNavigationButton/VeltCommentDialogNavigationButton";
31
31
  import { IVeltCommentDialogReplyAvatars } from "./VeltCommentDialogReplyAvatars/VeltCommentDialogReplyAvatars";
32
32
  import { IVeltWireframeCommonProps } from "../../constants";
33
+ import { IVeltCommentDialogCommentNumber } from "./VeltCommentDialogCommentNumber/VeltCommentDialogCommentNumber";
33
34
  export interface IVeltCommentDialogWireframeProps extends IVeltWireframeCommonProps {
34
35
  }
35
36
  declare const VeltCommentDialogWireframe: React.FC<IVeltCommentDialogWireframeProps> & {
@@ -40,6 +41,7 @@ declare const VeltCommentDialogWireframe: React.FC<IVeltCommentDialogWireframePr
40
41
  Body: React.FC<IVeltCommentDialogBodyProps>;
41
42
  CommentCategory: React.FC<IVeltCommentDialogCommentCategoryProps>;
42
43
  CommentIndex: React.FC<IVeltCommentDialogCommentIndexProps>;
44
+ CommentNumber: IVeltCommentDialogCommentNumber;
43
45
  CommentSuggestionStatus: React.FC<IVeltCommentDialogCommentSuggestionStatusProps>;
44
46
  Composer: IVeltCommentDialogComposer;
45
47
  CopyLink: React.FC<IVeltCommentDialogCopyLinkProps>;
@@ -0,0 +1,8 @@
1
+ import React from 'react';
2
+ import { IVeltWireframeCommonProps } from '../../../constants';
3
+ export interface IVeltCommentPinNumberProps extends IVeltWireframeCommonProps {
4
+ }
5
+ export interface IVeltCommentPinNumber extends React.FC<IVeltCommentPinNumberProps> {
6
+ }
7
+ declare const VeltCommentPinNumber: IVeltCommentPinNumber;
8
+ export default VeltCommentPinNumber;
@@ -0,0 +1 @@
1
+ export { default } from "./VeltCommentPinIndex";
@@ -5,11 +5,13 @@ import { IVeltCommentPinIndexProps } from './VeltCommentPinIndex/VeltCommentPinI
5
5
  import { IVeltCommentPinTriangleProps } from './VeltCommentPinTriangle/VeltCommentPinTriangle';
6
6
  import { IVeltCommentPinUnreadCommentIndicatorProps } from './VeltCommentPinUnreadCommentIndicator/VeltCommentPinUnreadCommentIndicator';
7
7
  import { IVeltCommentPinPrivateCommentIndicatorProps } from './VeltCommentPinPrivateCommentIndicator/VeltCommentPinPrivateCommentIndicator';
8
+ import { IVeltCommentPinNumber } from './VeltCommentPinNumber/VeltCommentPinIndex';
8
9
  export interface IVeltCommentPinWireframeProps extends IVeltWireframeCommonProps {
9
10
  }
10
11
  declare const VeltCommentPinWireframe: React.FC<IVeltCommentPinWireframeProps> & {
11
12
  GhostCommentIndicator: React.FC<IVeltCommentPinGhostCommentIndicatorProps>;
12
13
  Index: React.FC<IVeltCommentPinIndexProps>;
14
+ Number: IVeltCommentPinNumber;
13
15
  PrivateCommentIndicator: React.FC<IVeltCommentPinPrivateCommentIndicatorProps>;
14
16
  Triangle: React.FC<IVeltCommentPinTriangleProps>;
15
17
  UnreadCommentIndicator: React.FC<IVeltCommentPinUnreadCommentIndicatorProps>;
@@ -0,0 +1,8 @@
1
+ import React from 'react';
2
+ import { IVeltWireframeCommonProps } from '../../../constants';
3
+ export interface IVeltCommentsSidebarFullscreenButtonProps extends IVeltWireframeCommonProps {
4
+ }
5
+ export interface IVeltCommentsSidebarFullscreenButton extends React.FC<IVeltCommentsSidebarFullscreenButtonProps> {
6
+ }
7
+ declare const VeltCommentsSidebarFullscreenButton: IVeltCommentsSidebarFullscreenButton;
8
+ export default VeltCommentsSidebarFullscreenButton;
@@ -0,0 +1 @@
1
+ export { default } from "./VeltCommentsSidebarFullscreenButton";
@@ -18,6 +18,7 @@ import { IVeltCommentsSidebarStatus } from './VeltCommentsSidebarStatus/VeltComm
18
18
  import { IVeltCommentsSidebarResetFilterButtonWireframeProps } from './VeltCommentsSidebarResetFilterButtonWireframe/VeltCommentsSidebarResetFilterButtonWireframe';
19
19
  import { IVeltCommentsSidebarActionButtonProps } from './VeltCommentsSidebarActionButton/VeltCommentsSidebarActionButton';
20
20
  import { IVeltCommentsSidebarFocusedThread } from './VeltCommentsSidebarFocusedThread/VeltCommentsSidebarFocusedThread';
21
+ import { IVeltCommentsSidebarFullscreenButton } from './VeltCommentsSidebarFullscreenButton/VeltCommentsSidebarFullscreenButton';
21
22
  export interface IVeltCommentsSidebarWireframeProps extends IVeltWireframeCommonProps {
22
23
  }
23
24
  declare const VeltCommentsSidebarWireframe: React.FC<IVeltCommentsSidebarWireframeProps> & {
@@ -39,5 +40,6 @@ declare const VeltCommentsSidebarWireframe: React.FC<IVeltCommentsSidebarWirefra
39
40
  ResetFilterButton: React.FC<IVeltCommentsSidebarResetFilterButtonWireframeProps>;
40
41
  ActionButton: React.FC<IVeltCommentsSidebarActionButtonProps>;
41
42
  FocusedThread: IVeltCommentsSidebarFocusedThread;
43
+ FullscreenButton: IVeltCommentsSidebarFullscreenButton;
42
44
  };
43
45
  export default VeltCommentsSidebarWireframe;
@@ -1,5 +1,5 @@
1
1
  /// <reference types="react" />
2
- export declare const VELT_SDK_VERSION = "4.5.2-beta.14";
2
+ export declare const VELT_SDK_VERSION = "4.5.2-beta.16";
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
@@ -249,6 +249,7 @@ interface IVeltCommentsSidebarProps {
249
249
  systemFiltersOperator?: 'and' | 'or';
250
250
  sidebarButtonCountType?: 'default' | 'filter';
251
251
  filterGhostCommentsInSidebar?: boolean;
252
+ fullScreen?: boolean;
252
253
  }
253
254
  declare const SnippylyCommentsSidebar: React$1.FC<IVeltCommentsSidebarProps>;
254
255
 
@@ -1419,6 +1420,11 @@ interface IVeltCommentDialogReplyAvatars extends React$1.FC<IVeltCommentDialogRe
1419
1420
  RemainingCount: IVeltCommentDialogReplyAvatarsRemainingCount;
1420
1421
  }
1421
1422
 
1423
+ interface IVeltCommentDialogCommentNumberProps extends IVeltWireframeCommonProps {
1424
+ }
1425
+ interface IVeltCommentDialogCommentNumber extends React$1.FC<IVeltCommentDialogCommentNumberProps> {
1426
+ }
1427
+
1422
1428
  interface IVeltCommentDialogWireframeProps extends IVeltWireframeCommonProps {
1423
1429
  }
1424
1430
  declare const VeltCommentDialogWireframe: React$1.FC<IVeltCommentDialogWireframeProps> & {
@@ -1429,6 +1435,7 @@ declare const VeltCommentDialogWireframe: React$1.FC<IVeltCommentDialogWireframe
1429
1435
  Body: React$1.FC<IVeltCommentDialogBodyProps>;
1430
1436
  CommentCategory: React$1.FC<IVeltCommentDialogCommentCategoryProps>;
1431
1437
  CommentIndex: React$1.FC<IVeltCommentDialogCommentIndexProps>;
1438
+ CommentNumber: IVeltCommentDialogCommentNumber;
1432
1439
  CommentSuggestionStatus: React$1.FC<IVeltCommentDialogCommentSuggestionStatusProps>;
1433
1440
  Composer: IVeltCommentDialogComposer;
1434
1441
  CopyLink: React$1.FC<IVeltCommentDialogCopyLinkProps>;
@@ -1949,6 +1956,11 @@ interface IVeltCommentsSidebarFocusedThread extends React$1.FC<IVeltCommentsSide
1949
1956
  DialogContainer: IVeltCommentsSidebarFocusedThreadDialogContainer;
1950
1957
  }
1951
1958
 
1959
+ interface IVeltCommentsSidebarFullscreenButtonProps extends IVeltWireframeCommonProps {
1960
+ }
1961
+ interface IVeltCommentsSidebarFullscreenButton extends React$1.FC<IVeltCommentsSidebarFullscreenButtonProps> {
1962
+ }
1963
+
1952
1964
  interface IVeltCommentsSidebarWireframeProps extends IVeltWireframeCommonProps {
1953
1965
  }
1954
1966
  declare const VeltCommentsSidebarWireframe: React$1.FC<IVeltCommentsSidebarWireframeProps> & {
@@ -1970,6 +1982,7 @@ declare const VeltCommentsSidebarWireframe: React$1.FC<IVeltCommentsSidebarWiref
1970
1982
  ResetFilterButton: React$1.FC<IVeltCommentsSidebarResetFilterButtonWireframeProps>;
1971
1983
  ActionButton: React$1.FC<IVeltCommentsSidebarActionButtonProps>;
1972
1984
  FocusedThread: IVeltCommentsSidebarFocusedThread;
1985
+ FullscreenButton: IVeltCommentsSidebarFullscreenButton;
1973
1986
  };
1974
1987
 
1975
1988
  interface IVeltCommentPinGhostCommentIndicatorProps extends IVeltWireframeCommonProps {
@@ -1987,11 +2000,17 @@ interface IVeltCommentPinUnreadCommentIndicatorProps extends IVeltWireframeCommo
1987
2000
  interface IVeltCommentPinPrivateCommentIndicatorProps extends IVeltWireframeCommonProps {
1988
2001
  }
1989
2002
 
2003
+ interface IVeltCommentPinNumberProps extends IVeltWireframeCommonProps {
2004
+ }
2005
+ interface IVeltCommentPinNumber extends React$1.FC<IVeltCommentPinNumberProps> {
2006
+ }
2007
+
1990
2008
  interface IVeltCommentPinWireframeProps extends IVeltWireframeCommonProps {
1991
2009
  }
1992
2010
  declare const VeltCommentPinWireframe: React$1.FC<IVeltCommentPinWireframeProps> & {
1993
2011
  GhostCommentIndicator: React$1.FC<IVeltCommentPinGhostCommentIndicatorProps>;
1994
2012
  Index: React$1.FC<IVeltCommentPinIndexProps>;
2013
+ Number: IVeltCommentPinNumber;
1995
2014
  PrivateCommentIndicator: React$1.FC<IVeltCommentPinPrivateCommentIndicatorProps>;
1996
2015
  Triangle: React$1.FC<IVeltCommentPinTriangleProps>;
1997
2016
  UnreadCommentIndicator: React$1.FC<IVeltCommentPinUnreadCommentIndicatorProps>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@veltdev/react",
3
- "version": "4.5.2-beta.14",
3
+ "version": "4.5.2-beta.16",
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": [