@veltdev/react 1.0.89 → 1.0.91
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 +8 -3
- package/cjs/index.js.map +1 -1
- package/cjs/types/components/SnippylyPresence/SnippylyPresence.d.ts +2 -0
- package/cjs/types/constants.d.ts +1 -1
- package/esm/index.js +8 -3
- package/esm/index.js.map +1 -1
- package/esm/types/components/SnippylyPresence/SnippylyPresence.d.ts +2 -0
- package/esm/types/constants.d.ts +1 -1
- package/index.d.ts +2 -0
- package/package.json +1 -1
|
@@ -15,11 +15,13 @@ export interface IVeltPresenceProps {
|
|
|
15
15
|
*/
|
|
16
16
|
disableFlockNavigation?: boolean;
|
|
17
17
|
defaultFlockNavigation?: boolean;
|
|
18
|
+
self?: boolean;
|
|
18
19
|
onNavigate?: (pageInfo: {
|
|
19
20
|
path: string;
|
|
20
21
|
url: string;
|
|
21
22
|
baseUrl: string;
|
|
22
23
|
}) => void;
|
|
24
|
+
onPresenceUserClick?: (presenceUser: any) => any;
|
|
23
25
|
}
|
|
24
26
|
declare const SnippylyPresence: React.FC<IVeltPresenceProps>;
|
|
25
27
|
export default SnippylyPresence;
|
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.106";
|
|
2
2
|
export declare const VELT_SDK_INIT_EVENT = "onVeltInit";
|
package/index.d.ts
CHANGED
|
@@ -203,11 +203,13 @@ interface IVeltPresenceProps {
|
|
|
203
203
|
*/
|
|
204
204
|
disableFlockNavigation?: boolean;
|
|
205
205
|
defaultFlockNavigation?: boolean;
|
|
206
|
+
self?: boolean;
|
|
206
207
|
onNavigate?: (pageInfo: {
|
|
207
208
|
path: string;
|
|
208
209
|
url: string;
|
|
209
210
|
baseUrl: string;
|
|
210
211
|
}) => void;
|
|
212
|
+
onPresenceUserClick?: (presenceUser: any) => any;
|
|
211
213
|
}
|
|
212
214
|
declare const SnippylyPresence: React.FC<IVeltPresenceProps>;
|
|
213
215
|
|