@veltdev/react 5.0.0-beta.12 → 5.0.0-beta.13
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/VeltNotificationsPanel/VeltNotificationsPanel.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/VeltNotificationsPanel/VeltNotificationsPanel.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
|
@@ -22,6 +22,7 @@ export interface IVeltNotificationsPanelProps {
|
|
|
22
22
|
selfNotifications?: boolean;
|
|
23
23
|
pageSize?: number;
|
|
24
24
|
settingsLayout?: NotificationSettingsLayout;
|
|
25
|
+
enableSettingsAtOrganizationLevel?: boolean;
|
|
25
26
|
}
|
|
26
27
|
declare const VeltNotificationsPanel: React.FC<IVeltNotificationsPanelProps>;
|
|
27
28
|
export default VeltNotificationsPanel;
|
|
@@ -26,6 +26,7 @@ export interface IVeltNotificationsToolProps extends React.DetailedHTMLProps<Rea
|
|
|
26
26
|
considerAllNotifications?: boolean;
|
|
27
27
|
pageSize?: number;
|
|
28
28
|
settingsLayout?: NotificationSettingsLayout;
|
|
29
|
+
enableSettingsAtOrganizationLevel?: boolean;
|
|
29
30
|
}
|
|
30
31
|
declare const VeltNotificationsTool: React.FC<IVeltNotificationsToolProps>;
|
|
31
32
|
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 = "5.0.0-beta.
|
|
2
|
+
export declare const VELT_SDK_VERSION = "5.0.0-beta.13";
|
|
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
|
@@ -620,6 +620,7 @@ interface IVeltNotificationsToolProps extends React$1.DetailedHTMLProps<React$1.
|
|
|
620
620
|
considerAllNotifications?: boolean;
|
|
621
621
|
pageSize?: number;
|
|
622
622
|
settingsLayout?: NotificationSettingsLayout;
|
|
623
|
+
enableSettingsAtOrganizationLevel?: boolean;
|
|
623
624
|
}
|
|
624
625
|
declare const VeltNotificationsTool: React$1.FC<IVeltNotificationsToolProps>;
|
|
625
626
|
|
|
@@ -645,6 +646,7 @@ interface IVeltNotificationsPanelProps {
|
|
|
645
646
|
selfNotifications?: boolean;
|
|
646
647
|
pageSize?: number;
|
|
647
648
|
settingsLayout?: NotificationSettingsLayout;
|
|
649
|
+
enableSettingsAtOrganizationLevel?: boolean;
|
|
648
650
|
}
|
|
649
651
|
declare const VeltNotificationsPanel: React$1.FC<IVeltNotificationsPanelProps>;
|
|
650
652
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@veltdev/react",
|
|
3
|
-
"version": "5.0.0-beta.
|
|
3
|
+
"version": "5.0.0-beta.13",
|
|
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": [
|