@veltdev/react 4.5.0-beta.51 → 4.5.0-beta.53
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 +6 -6
- package/cjs/index.js.map +1 -1
- package/cjs/types/components/SnippylyCommentsSidebar/SnippylyCommentsSidebar.d.ts +1 -0
- package/cjs/types/components/SnippylySidebarButton/SnippylySidebarButton.d.ts +1 -0
- package/cjs/types/constants.d.ts +1 -1
- package/esm/index.js +6 -6
- package/esm/index.js.map +1 -1
- package/esm/types/components/SnippylyCommentsSidebar/SnippylyCommentsSidebar.d.ts +1 -0
- package/esm/types/components/SnippylySidebarButton/SnippylySidebarButton.d.ts +1 -0
- package/esm/types/constants.d.ts +1 -1
- package/index.d.ts +2 -0
- package/package.json +1 -1
|
@@ -43,6 +43,7 @@ export interface IVeltCommentsSidebarProps {
|
|
|
43
43
|
filterCount?: boolean;
|
|
44
44
|
fullExpanded?: boolean;
|
|
45
45
|
systemFiltersOperator?: 'and' | 'or';
|
|
46
|
+
sidebarButtonCountType?: 'default' | 'filter';
|
|
46
47
|
}
|
|
47
48
|
declare const SnippylyCommentsSidebar: React.FC<IVeltCommentsSidebarProps>;
|
|
48
49
|
export default SnippylyCommentsSidebar;
|
|
@@ -47,6 +47,7 @@ export interface IVeltSidebarButtonProps extends React.DetailedHTMLProps<React.H
|
|
|
47
47
|
sidebarVariant?: string;
|
|
48
48
|
position?: "right" | "left";
|
|
49
49
|
filterPanelLayout?: 'menu' | 'bottomSheet';
|
|
50
|
+
sidebarButtonCountType?: 'default' | 'filter';
|
|
50
51
|
onCommentClick?: Function;
|
|
51
52
|
onSidebarOpen?: Function;
|
|
52
53
|
}
|
package/esm/types/constants.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
-
export declare const VELT_SDK_VERSION = "4.5.0-beta.
|
|
2
|
+
export declare const VELT_SDK_VERSION = "4.5.0-beta.53";
|
|
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
|
@@ -242,6 +242,7 @@ interface IVeltCommentsSidebarProps {
|
|
|
242
242
|
filterCount?: boolean;
|
|
243
243
|
fullExpanded?: boolean;
|
|
244
244
|
systemFiltersOperator?: 'and' | 'or';
|
|
245
|
+
sidebarButtonCountType?: 'default' | 'filter';
|
|
245
246
|
}
|
|
246
247
|
declare const SnippylyCommentsSidebar: React$1.FC<IVeltCommentsSidebarProps>;
|
|
247
248
|
|
|
@@ -418,6 +419,7 @@ interface IVeltSidebarButtonProps extends React$1.DetailedHTMLProps<React$1.HTML
|
|
|
418
419
|
sidebarVariant?: string;
|
|
419
420
|
position?: "right" | "left";
|
|
420
421
|
filterPanelLayout?: 'menu' | 'bottomSheet';
|
|
422
|
+
sidebarButtonCountType?: 'default' | 'filter';
|
|
421
423
|
onCommentClick?: Function;
|
|
422
424
|
onSidebarOpen?: Function;
|
|
423
425
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@veltdev/react",
|
|
3
|
-
"version": "4.5.0-beta.
|
|
3
|
+
"version": "4.5.0-beta.53",
|
|
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": [
|