@veltdev/react 1.0.105 → 1.0.106
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/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/SnippylyHuddle/SnippylyHuddle.d.ts +2 -0
- package/esm/types/constants.d.ts +1 -1
- package/index.d.ts +2 -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.117";
|
|
2
2
|
export declare const VELT_SDK_INIT_EVENT = "onVeltInit";
|
package/index.d.ts
CHANGED
|
@@ -184,6 +184,8 @@ interface IVeltCursorProps extends React.DetailedHTMLProps<React.HTMLAttributes<
|
|
|
184
184
|
declare const SnippylyCursor: React.FC<IVeltCursorProps>;
|
|
185
185
|
|
|
186
186
|
interface IVeltHuddleProps {
|
|
187
|
+
chat?: boolean;
|
|
188
|
+
flockModeOnAvatarClick?: boolean;
|
|
187
189
|
}
|
|
188
190
|
declare const SnippylyHuddle: React.FC<IVeltHuddleProps>;
|
|
189
191
|
|