@veltdev/react 4.6.9 → 4.6.10
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 +25 -4
- package/cjs/index.js.map +1 -1
- package/cjs/types/components/SnippylyCommentsSidebar/SnippylyCommentsSidebar.d.ts +3 -0
- package/cjs/types/components/VeltCommentDialogOptionsDropdownContentWireframe/VeltCommentDialogOptionsDropdownContentMarkAsReadWireframe/VeltCommentDialogOptionsDropdownContentMarkAsReadWireframe.d.ts +6 -0
- package/cjs/types/components/VeltCommentDialogOptionsDropdownContentWireframe/VeltCommentDialogOptionsDropdownContentMarkAsReadWireframe/index.d.ts +2 -0
- package/cjs/types/components/VeltCommentDialogOptionsDropdownContentWireframe/VeltCommentDialogOptionsDropdownContentWireframe.d.ts +2 -0
- package/cjs/types/components/VeltCommentsSidebarWireframe/VeltCommentsSidebarMinimalFilterDropdown/VeltCommentsSidebarMinimalFilterDropdownContent/VeltCommentsSidebarMinimalFilterDropdownContent.d.ts +4 -0
- package/cjs/types/components/VeltCommentsSidebarWireframe/VeltCommentsSidebarMinimalFilterDropdown/VeltCommentsSidebarMinimalFilterDropdownContent/VeltCommentsSidebarMinimalFilterDropdownContentFilterOpen/VeltCommentsSidebarMinimalFilterDropdownContentFilterOpen.d.ts +8 -0
- package/cjs/types/components/VeltCommentsSidebarWireframe/VeltCommentsSidebarMinimalFilterDropdown/VeltCommentsSidebarMinimalFilterDropdownContent/VeltCommentsSidebarMinimalFilterDropdownContentFilterOpen/index.d.ts +1 -0
- package/cjs/types/components/VeltCommentsSidebarWireframe/VeltCommentsSidebarMinimalFilterDropdown/VeltCommentsSidebarMinimalFilterDropdownContent/VeltCommentsSidebarMinimalFilterDropdownContentFilterReset/VeltCommentsSidebarMinimalFilterDropdownContentFilterReset.d.ts +8 -0
- package/cjs/types/components/VeltCommentsSidebarWireframe/VeltCommentsSidebarMinimalFilterDropdown/VeltCommentsSidebarMinimalFilterDropdownContent/VeltCommentsSidebarMinimalFilterDropdownContentFilterReset/index.d.ts +1 -0
- package/cjs/types/constants.d.ts +1 -1
- package/esm/index.js +25 -4
- package/esm/index.js.map +1 -1
- package/esm/types/components/SnippylyCommentsSidebar/SnippylyCommentsSidebar.d.ts +3 -0
- package/esm/types/components/VeltCommentDialogOptionsDropdownContentWireframe/VeltCommentDialogOptionsDropdownContentMarkAsReadWireframe/VeltCommentDialogOptionsDropdownContentMarkAsReadWireframe.d.ts +6 -0
- package/esm/types/components/VeltCommentDialogOptionsDropdownContentWireframe/VeltCommentDialogOptionsDropdownContentMarkAsReadWireframe/index.d.ts +2 -0
- package/esm/types/components/VeltCommentDialogOptionsDropdownContentWireframe/VeltCommentDialogOptionsDropdownContentWireframe.d.ts +2 -0
- package/esm/types/components/VeltCommentsSidebarWireframe/VeltCommentsSidebarMinimalFilterDropdown/VeltCommentsSidebarMinimalFilterDropdownContent/VeltCommentsSidebarMinimalFilterDropdownContent.d.ts +4 -0
- package/esm/types/components/VeltCommentsSidebarWireframe/VeltCommentsSidebarMinimalFilterDropdown/VeltCommentsSidebarMinimalFilterDropdownContent/VeltCommentsSidebarMinimalFilterDropdownContentFilterOpen/VeltCommentsSidebarMinimalFilterDropdownContentFilterOpen.d.ts +8 -0
- package/esm/types/components/VeltCommentsSidebarWireframe/VeltCommentsSidebarMinimalFilterDropdown/VeltCommentsSidebarMinimalFilterDropdownContent/VeltCommentsSidebarMinimalFilterDropdownContentFilterOpen/index.d.ts +1 -0
- package/esm/types/components/VeltCommentsSidebarWireframe/VeltCommentsSidebarMinimalFilterDropdown/VeltCommentsSidebarMinimalFilterDropdownContent/VeltCommentsSidebarMinimalFilterDropdownContentFilterReset/VeltCommentsSidebarMinimalFilterDropdownContentFilterReset.d.ts +8 -0
- package/esm/types/components/VeltCommentsSidebarWireframe/VeltCommentsSidebarMinimalFilterDropdown/VeltCommentsSidebarMinimalFilterDropdownContent/VeltCommentsSidebarMinimalFilterDropdownContentFilterReset/index.d.ts +1 -0
- package/esm/types/constants.d.ts +1 -1
- package/index.d.ts +19 -0
- package/package.json +1 -1
|
@@ -49,6 +49,9 @@ export interface IVeltCommentsSidebarProps {
|
|
|
49
49
|
readOnly?: boolean;
|
|
50
50
|
dialogSelection?: boolean;
|
|
51
51
|
expandOnSelection?: boolean;
|
|
52
|
+
context?: {
|
|
53
|
+
[key: string]: any;
|
|
54
|
+
};
|
|
52
55
|
}
|
|
53
56
|
declare const SnippylyCommentsSidebar: React.FC<IVeltCommentsSidebarProps>;
|
|
54
57
|
export default SnippylyCommentsSidebar;
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { IVeltWireframeCommonProps } from '../../../constants';
|
|
3
|
+
export interface IVeltCommentDialogOptionsDropdownContentMarkAsReadWireframeProps extends IVeltWireframeCommonProps {
|
|
4
|
+
}
|
|
5
|
+
declare const VeltCommentDialogOptionsDropdownContentMarkAsReadWireframe: React.FC<IVeltCommentDialogOptionsDropdownContentMarkAsReadWireframeProps>;
|
|
6
|
+
export default VeltCommentDialogOptionsDropdownContentMarkAsReadWireframe;
|
|
@@ -5,6 +5,7 @@ import { IVeltCommentDialogOptionsDropdownContentDeleteWireframe } from './VeltC
|
|
|
5
5
|
import { IVeltCommentDialogOptionsDropdownContentEditWireframeProps } from './VeltCommentDialogOptionsDropdownContentEditWireframe/VeltCommentDialogOptionsDropdownContentEditWireframe';
|
|
6
6
|
import { IVeltCommentDialogOptionsDropdownContentMakePrivateWireframe } from './VeltCommentDialogOptionsDropdownContentMakePrivateWireframe/VeltCommentDialogOptionsDropdownContentMakePrivateWireframe';
|
|
7
7
|
import { IVeltCommentDialogOptionsDropdownContentNotificationWireframe } from './VeltCommentDialogOptionsDropdownContentNotificationWireframe/VeltCommentDialogOptionsDropdownContentNotificationWireframe';
|
|
8
|
+
import { IVeltCommentDialogOptionsDropdownContentMarkAsReadWireframeProps } from './VeltCommentDialogOptionsDropdownContentMarkAsReadWireframe/VeltCommentDialogOptionsDropdownContentMarkAsReadWireframe';
|
|
8
9
|
export interface IVeltCommentDialogOptionsDropdownContentWireframeProps extends IVeltWireframeCommonProps {
|
|
9
10
|
}
|
|
10
11
|
export interface IVeltCommentDialogOptionsDropdownContentWireframe extends React.FC<IVeltCommentDialogOptionsDropdownContentWireframeProps> {
|
|
@@ -13,6 +14,7 @@ export interface IVeltCommentDialogOptionsDropdownContentWireframe extends React
|
|
|
13
14
|
Delete: IVeltCommentDialogOptionsDropdownContentDeleteWireframe;
|
|
14
15
|
Edit: React.FC<IVeltCommentDialogOptionsDropdownContentEditWireframeProps>;
|
|
15
16
|
Notification: IVeltCommentDialogOptionsDropdownContentNotificationWireframe;
|
|
17
|
+
MarkAsRead: React.FC<IVeltCommentDialogOptionsDropdownContentMarkAsReadWireframeProps>;
|
|
16
18
|
}
|
|
17
19
|
declare const VeltCommentDialogOptionsDropdownContentWireframe: IVeltCommentDialogOptionsDropdownContentWireframe;
|
|
18
20
|
export default VeltCommentDialogOptionsDropdownContentWireframe;
|
|
@@ -4,6 +4,8 @@ import { IVeltCommentsSidebarMinimalFilterDropdownContentFilterAll } from './Vel
|
|
|
4
4
|
import { IVeltCommentsSidebarMinimalFilterDropdownContentFilterRead } from './VeltCommentsSidebarMinimalFilterDropdownContentFilterRead/VeltCommentsSidebarMinimalFilterDropdownContentFilterRead';
|
|
5
5
|
import { IVeltCommentsSidebarMinimalFilterDropdownContentFilterResolved } from './VeltCommentsSidebarMinimalFilterDropdownContentFilterResolved/VeltCommentsSidebarMinimalFilterDropdownContentFilterResolved';
|
|
6
6
|
import { IVeltCommentsSidebarMinimalFilterDropdownContentFilterUnread } from './VeltCommentsSidebarMinimalFilterDropdownContentFilterUnread/VeltCommentsSidebarMinimalFilterDropdownContentFilterUnread';
|
|
7
|
+
import { IVeltCommentsSidebarMinimalFilterDropdownContentFilterOpen } from './VeltCommentsSidebarMinimalFilterDropdownContentFilterOpen/VeltCommentsSidebarMinimalFilterDropdownContentFilterOpen';
|
|
8
|
+
import { IVeltCommentsSidebarMinimalFilterDropdownContentFilterReset } from './VeltCommentsSidebarMinimalFilterDropdownContentFilterReset/VeltCommentsSidebarMinimalFilterDropdownContentFilterReset';
|
|
7
9
|
import { IVeltCommentsSidebarMinimalFilterDropdownContentSelectedIcon } from './VeltCommentsSidebarMinimalFilterDropdownContentSelectedIcon/VeltCommentsSidebarMinimalFilterDropdownContentSelectedIcon';
|
|
8
10
|
import { IVeltCommentsSidebarMinimalFilterDropdownContentSortDate } from './VeltCommentsSidebarMinimalFilterDropdownContentSortDate/VeltCommentsSidebarMinimalFilterDropdownContentSortDate';
|
|
9
11
|
import { IVeltCommentsSidebarMinimalFilterDropdownContentSortUnread } from './VeltCommentsSidebarMinimalFilterDropdownContentSortUnread/VeltCommentsSidebarMinimalFilterDropdownContentSortUnread';
|
|
@@ -14,6 +16,8 @@ export interface IVeltCommentsSidebarMinimalFilterDropdownContent extends React.
|
|
|
14
16
|
FilterUnread: IVeltCommentsSidebarMinimalFilterDropdownContentFilterUnread;
|
|
15
17
|
FilterRead: IVeltCommentsSidebarMinimalFilterDropdownContentFilterRead;
|
|
16
18
|
FilterResolved: IVeltCommentsSidebarMinimalFilterDropdownContentFilterResolved;
|
|
19
|
+
FilterOpen: IVeltCommentsSidebarMinimalFilterDropdownContentFilterOpen;
|
|
20
|
+
FilterReset: IVeltCommentsSidebarMinimalFilterDropdownContentFilterReset;
|
|
17
21
|
SelectedIcon: IVeltCommentsSidebarMinimalFilterDropdownContentSelectedIcon;
|
|
18
22
|
SortDate: IVeltCommentsSidebarMinimalFilterDropdownContentSortDate;
|
|
19
23
|
SortUnread: IVeltCommentsSidebarMinimalFilterDropdownContentSortUnread;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { IVeltWireframeCommonProps } from '../../../../../constants';
|
|
3
|
+
export interface IVeltCommentsSidebarMinimalFilterDropdownContentFilterOpenProps extends IVeltWireframeCommonProps {
|
|
4
|
+
}
|
|
5
|
+
export interface IVeltCommentsSidebarMinimalFilterDropdownContentFilterOpen extends React.FC<IVeltCommentsSidebarMinimalFilterDropdownContentFilterOpenProps> {
|
|
6
|
+
}
|
|
7
|
+
declare const VeltCommentsSidebarMinimalFilterDropdownContentFilterOpen: IVeltCommentsSidebarMinimalFilterDropdownContentFilterOpen;
|
|
8
|
+
export default VeltCommentsSidebarMinimalFilterDropdownContentFilterOpen;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default } from "./VeltCommentsSidebarMinimalFilterDropdownContentFilterOpen";
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { IVeltWireframeCommonProps } from '../../../../../constants';
|
|
3
|
+
export interface IVeltCommentsSidebarMinimalFilterDropdownContentFilterResetProps extends IVeltWireframeCommonProps {
|
|
4
|
+
}
|
|
5
|
+
export interface IVeltCommentsSidebarMinimalFilterDropdownContentFilterReset extends React.FC<IVeltCommentsSidebarMinimalFilterDropdownContentFilterResetProps> {
|
|
6
|
+
}
|
|
7
|
+
declare const VeltCommentsSidebarMinimalFilterDropdownContentFilterReset: IVeltCommentsSidebarMinimalFilterDropdownContentFilterReset;
|
|
8
|
+
export default VeltCommentsSidebarMinimalFilterDropdownContentFilterReset;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default } from "./VeltCommentsSidebarMinimalFilterDropdownContentFilterReset";
|
package/esm/types/constants.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
-
export declare const VELT_SDK_VERSION = "4.6.
|
|
2
|
+
export declare const VELT_SDK_VERSION = "4.6.10";
|
|
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
|
@@ -261,6 +261,9 @@ interface IVeltCommentsSidebarProps {
|
|
|
261
261
|
readOnly?: boolean;
|
|
262
262
|
dialogSelection?: boolean;
|
|
263
263
|
expandOnSelection?: boolean;
|
|
264
|
+
context?: {
|
|
265
|
+
[key: string]: any;
|
|
266
|
+
};
|
|
264
267
|
}
|
|
265
268
|
declare const SnippylyCommentsSidebar: React$1.FC<IVeltCommentsSidebarProps>;
|
|
266
269
|
|
|
@@ -1017,6 +1020,9 @@ interface IVeltCommentDialogOptionsDropdownContentNotificationWireframe extends
|
|
|
1017
1020
|
Unsubscribe: React$1.FC<IVeltCommentDialogOptionsDropdownContentNotificationUnsubscribeWireframeProps>;
|
|
1018
1021
|
}
|
|
1019
1022
|
|
|
1023
|
+
interface IVeltCommentDialogOptionsDropdownContentMarkAsReadWireframeProps extends IVeltWireframeCommonProps {
|
|
1024
|
+
}
|
|
1025
|
+
|
|
1020
1026
|
interface IVeltCommentDialogOptionsDropdownContentWireframeProps extends IVeltWireframeCommonProps {
|
|
1021
1027
|
}
|
|
1022
1028
|
interface IVeltCommentDialogOptionsDropdownContentWireframe extends React$1.FC<IVeltCommentDialogOptionsDropdownContentWireframeProps> {
|
|
@@ -1025,6 +1031,7 @@ interface IVeltCommentDialogOptionsDropdownContentWireframe extends React$1.FC<I
|
|
|
1025
1031
|
Delete: IVeltCommentDialogOptionsDropdownContentDeleteWireframe;
|
|
1026
1032
|
Edit: React$1.FC<IVeltCommentDialogOptionsDropdownContentEditWireframeProps>;
|
|
1027
1033
|
Notification: IVeltCommentDialogOptionsDropdownContentNotificationWireframe;
|
|
1034
|
+
MarkAsRead: React$1.FC<IVeltCommentDialogOptionsDropdownContentMarkAsReadWireframeProps>;
|
|
1028
1035
|
}
|
|
1029
1036
|
declare const VeltCommentDialogOptionsDropdownContentWireframe: IVeltCommentDialogOptionsDropdownContentWireframe;
|
|
1030
1037
|
|
|
@@ -1849,6 +1856,16 @@ interface IVeltCommentsSidebarMinimalFilterDropdownContentFilterUnreadProps exte
|
|
|
1849
1856
|
interface IVeltCommentsSidebarMinimalFilterDropdownContentFilterUnread extends React$1.FC<IVeltCommentsSidebarMinimalFilterDropdownContentFilterUnreadProps> {
|
|
1850
1857
|
}
|
|
1851
1858
|
|
|
1859
|
+
interface IVeltCommentsSidebarMinimalFilterDropdownContentFilterOpenProps extends IVeltWireframeCommonProps {
|
|
1860
|
+
}
|
|
1861
|
+
interface IVeltCommentsSidebarMinimalFilterDropdownContentFilterOpen extends React$1.FC<IVeltCommentsSidebarMinimalFilterDropdownContentFilterOpenProps> {
|
|
1862
|
+
}
|
|
1863
|
+
|
|
1864
|
+
interface IVeltCommentsSidebarMinimalFilterDropdownContentFilterResetProps extends IVeltWireframeCommonProps {
|
|
1865
|
+
}
|
|
1866
|
+
interface IVeltCommentsSidebarMinimalFilterDropdownContentFilterReset extends React$1.FC<IVeltCommentsSidebarMinimalFilterDropdownContentFilterResetProps> {
|
|
1867
|
+
}
|
|
1868
|
+
|
|
1852
1869
|
interface IVeltCommentsSidebarMinimalFilterDropdownContentSelectedIconProps extends IVeltWireframeCommonProps {
|
|
1853
1870
|
}
|
|
1854
1871
|
interface IVeltCommentsSidebarMinimalFilterDropdownContentSelectedIcon extends React$1.FC<IVeltCommentsSidebarMinimalFilterDropdownContentSelectedIconProps> {
|
|
@@ -1871,6 +1888,8 @@ interface IVeltCommentsSidebarMinimalFilterDropdownContent extends React$1.FC<IV
|
|
|
1871
1888
|
FilterUnread: IVeltCommentsSidebarMinimalFilterDropdownContentFilterUnread;
|
|
1872
1889
|
FilterRead: IVeltCommentsSidebarMinimalFilterDropdownContentFilterRead;
|
|
1873
1890
|
FilterResolved: IVeltCommentsSidebarMinimalFilterDropdownContentFilterResolved;
|
|
1891
|
+
FilterOpen: IVeltCommentsSidebarMinimalFilterDropdownContentFilterOpen;
|
|
1892
|
+
FilterReset: IVeltCommentsSidebarMinimalFilterDropdownContentFilterReset;
|
|
1874
1893
|
SelectedIcon: IVeltCommentsSidebarMinimalFilterDropdownContentSelectedIcon;
|
|
1875
1894
|
SortDate: IVeltCommentsSidebarMinimalFilterDropdownContentSortDate;
|
|
1876
1895
|
SortUnread: IVeltCommentsSidebarMinimalFilterDropdownContentSortUnread;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@veltdev/react",
|
|
3
|
-
"version": "4.6.
|
|
3
|
+
"version": "4.6.10",
|
|
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": [
|