@veltdev/react 1.0.105 → 1.0.107
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 +3 -2
- package/cjs/index.js.map +1 -1
- package/cjs/types/components/SnippylyCommentsSidebar/SnippylyCommentsSidebar.d.ts +1 -0
- package/cjs/types/components/SnippylyHuddle/SnippylyHuddle.d.ts +2 -0
- package/cjs/types/constants.d.ts +1 -1
- package/esm/index.js +3 -2
- package/esm/index.js.map +1 -1
- package/esm/types/components/SnippylyCommentsSidebar/SnippylyCommentsSidebar.d.ts +1 -0
- package/esm/types/components/SnippylyHuddle/SnippylyHuddle.d.ts +2 -0
- package/esm/types/constants.d.ts +1 -1
- package/index.d.ts +3 -0
- package/package.json +1 -1
package/esm/types/constants.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const VELT_SDK_VERSION = "1.0.
|
|
1
|
+
export declare const VELT_SDK_VERSION = "1.0.118";
|
|
2
2
|
export declare const VELT_SDK_INIT_EVENT = "onVeltInit";
|
package/index.d.ts
CHANGED
|
@@ -117,6 +117,7 @@ declare class FilterTypeConfig {
|
|
|
117
117
|
enable?: boolean;
|
|
118
118
|
multiSelection?: boolean;
|
|
119
119
|
enableGrouping?: boolean;
|
|
120
|
+
order?: string[];
|
|
120
121
|
}
|
|
121
122
|
declare class CommentSidebarFilterConfig {
|
|
122
123
|
location?: FilterTypeConfig;
|
|
@@ -184,6 +185,8 @@ interface IVeltCursorProps extends React.DetailedHTMLProps<React.HTMLAttributes<
|
|
|
184
185
|
declare const SnippylyCursor: React.FC<IVeltCursorProps>;
|
|
185
186
|
|
|
186
187
|
interface IVeltHuddleProps {
|
|
188
|
+
chat?: boolean;
|
|
189
|
+
flockModeOnAvatarClick?: boolean;
|
|
187
190
|
}
|
|
188
191
|
declare const SnippylyHuddle: React.FC<IVeltHuddleProps>;
|
|
189
192
|
|