@veltdev/react 4.3.0-beta.7 → 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.
- package/cjs/index.js +9 -9
- 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/components/VeltCommentThread/VeltCommentThread.d.ts +1 -0
- package/cjs/types/components/VeltInlineCommentsSection/VeltInlineCommentsSection.d.ts +1 -0
- package/cjs/types/constants.d.ts +1 -1
- package/esm/index.js +9 -9
- 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/components/VeltCommentThread/VeltCommentThread.d.ts +1 -0
- package/esm/types/components/VeltInlineCommentsSection/VeltInlineCommentsSection.d.ts +1 -0
- package/esm/types/constants.d.ts +1 -1
- package/index.d.ts +4 -0
- package/package.json +1 -1
|
@@ -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;
|
|
@@ -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;
|
package/esm/types/constants.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
-
export declare const VELT_SDK_VERSION = "4.3.0
|
|
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> {
|
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
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@veltdev/react",
|
|
3
|
-
"version": "4.3.0
|
|
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": [
|