@veltdev/react 4.5.4-beta.2 → 4.5.4-beta.3
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/SnippylyRecorderPlayer/SnippylyRecorderPlayer.d.ts +1 -0
- package/cjs/types/components/VeltNotificationsTool/VeltNotificationsTool.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/SnippylyRecorderPlayer/SnippylyRecorderPlayer.d.ts +1 -0
- package/esm/types/components/VeltNotificationsTool/VeltNotificationsTool.d.ts +1 -0
- package/esm/types/constants.d.ts +1 -1
- package/index.d.ts +2 -0
- package/package.json +1 -1
|
@@ -11,6 +11,7 @@ export interface IVeltRecorderPlayerProps {
|
|
|
11
11
|
videoEditor?: boolean;
|
|
12
12
|
playVideoInFullScreen?: boolean;
|
|
13
13
|
retakeOnVideoEditor?: boolean;
|
|
14
|
+
playbackOnPreviewClick?: boolean;
|
|
14
15
|
}
|
|
15
16
|
declare const SnippylyRecorderPlayer: React.FC<IVeltRecorderPlayerProps>;
|
|
16
17
|
export default SnippylyRecorderPlayer;
|
|
@@ -22,6 +22,7 @@ export interface IVeltNotificationsToolProps extends React.DetailedHTMLProps<Rea
|
|
|
22
22
|
readNotificationsOnForYouTab?: boolean;
|
|
23
23
|
settings?: boolean;
|
|
24
24
|
selfNotifications?: boolean;
|
|
25
|
+
considerAllNotifications?: boolean;
|
|
25
26
|
}
|
|
26
27
|
declare const VeltNotificationsTool: React.FC<IVeltNotificationsToolProps>;
|
|
27
28
|
export default VeltNotificationsTool;
|
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.4-beta.
|
|
2
|
+
export declare const VELT_SDK_VERSION = "4.5.4-beta.3";
|
|
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
|
@@ -369,6 +369,7 @@ interface IVeltRecorderPlayerProps {
|
|
|
369
369
|
videoEditor?: boolean;
|
|
370
370
|
playVideoInFullScreen?: boolean;
|
|
371
371
|
retakeOnVideoEditor?: boolean;
|
|
372
|
+
playbackOnPreviewClick?: boolean;
|
|
372
373
|
}
|
|
373
374
|
declare const SnippylyRecorderPlayer: React$1.FC<IVeltRecorderPlayerProps>;
|
|
374
375
|
|
|
@@ -593,6 +594,7 @@ interface IVeltNotificationsToolProps extends React$1.DetailedHTMLProps<React$1.
|
|
|
593
594
|
readNotificationsOnForYouTab?: boolean;
|
|
594
595
|
settings?: boolean;
|
|
595
596
|
selfNotifications?: boolean;
|
|
597
|
+
considerAllNotifications?: boolean;
|
|
596
598
|
}
|
|
597
599
|
declare const VeltNotificationsTool: React$1.FC<IVeltNotificationsToolProps>;
|
|
598
600
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@veltdev/react",
|
|
3
|
-
"version": "4.5.4-beta.
|
|
3
|
+
"version": "4.5.4-beta.3",
|
|
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": [
|