@veltdev/react 2.0.24 → 2.0.26
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/README.md +54 -0
- package/cjs/index.js +13 -7
- package/cjs/index.js.map +1 -1
- package/cjs/types/components/VeltCommentDialogWireframe/VeltCommentDialogCustomAnnotationDropdown/VeltCommentDialogCustomAnnotationDropdownTrigger/VeltCommentDialogCustomAnnotationDropdownTrigger.d.ts +2 -0
- package/cjs/types/components/VeltCommentDialogWireframe/VeltCommentDialogCustomAnnotationDropdown/VeltCommentDialogCustomAnnotationDropdownTrigger/VeltCommentDialogCustomAnnotationDropdownTriggerPlaceholder/VeltCommentDialogCustomAnnotationDropdownTriggerPlaceholder.d.ts +6 -0
- package/cjs/types/components/VeltCommentDialogWireframe/VeltCommentDialogCustomAnnotationDropdown/VeltCommentDialogCustomAnnotationDropdownTrigger/VeltCommentDialogCustomAnnotationDropdownTriggerPlaceholder/index.d.ts +1 -0
- package/cjs/types/components/VeltNotificationsPanelWireframe/VeltNotificationsPanelContentWireframe/VeltNotificationsPanelContentAllReadContainerWireframe/VeltNotificationsPanelContentAllReadContainerWireframe.d.ts +7 -0
- package/cjs/types/components/VeltNotificationsPanelWireframe/VeltNotificationsPanelContentWireframe/VeltNotificationsPanelContentAllReadContainerWireframe/index.d.ts +1 -0
- package/cjs/types/components/VeltNotificationsPanelWireframe/VeltNotificationsPanelContentWireframe/VeltNotificationsPanelContentWireframe.d.ts +2 -0
- package/cjs/types/components/VeltNotificationsPanelWireframe/VeltNotificationsPanelWireframe.d.ts +0 -2
- package/cjs/types/constants.d.ts +1 -1
- package/esm/index.js +13 -7
- package/esm/index.js.map +1 -1
- package/esm/types/components/VeltCommentDialogWireframe/VeltCommentDialogCustomAnnotationDropdown/VeltCommentDialogCustomAnnotationDropdownTrigger/VeltCommentDialogCustomAnnotationDropdownTrigger.d.ts +2 -0
- package/esm/types/components/VeltCommentDialogWireframe/VeltCommentDialogCustomAnnotationDropdown/VeltCommentDialogCustomAnnotationDropdownTrigger/VeltCommentDialogCustomAnnotationDropdownTriggerPlaceholder/VeltCommentDialogCustomAnnotationDropdownTriggerPlaceholder.d.ts +6 -0
- package/esm/types/components/VeltCommentDialogWireframe/VeltCommentDialogCustomAnnotationDropdown/VeltCommentDialogCustomAnnotationDropdownTrigger/VeltCommentDialogCustomAnnotationDropdownTriggerPlaceholder/index.d.ts +1 -0
- package/esm/types/components/VeltNotificationsPanelWireframe/VeltNotificationsPanelContentWireframe/VeltNotificationsPanelContentAllReadContainerWireframe/VeltNotificationsPanelContentAllReadContainerWireframe.d.ts +7 -0
- package/esm/types/components/VeltNotificationsPanelWireframe/VeltNotificationsPanelContentWireframe/VeltNotificationsPanelContentAllReadContainerWireframe/index.d.ts +1 -0
- package/esm/types/components/VeltNotificationsPanelWireframe/VeltNotificationsPanelContentWireframe/VeltNotificationsPanelContentWireframe.d.ts +2 -0
- package/esm/types/components/VeltNotificationsPanelWireframe/VeltNotificationsPanelWireframe.d.ts +0 -2
- package/esm/types/constants.d.ts +1 -1
- package/index.d.ts +11 -6
- package/package.json +32 -2
- package/cjs/types/components/VeltNotificationsPanelWireframe/VeltNotificationsPanelAllReadContainerWireframe/VeltNotificationsPanelAllReadContainerWireframe.d.ts +0 -7
- package/cjs/types/components/VeltNotificationsPanelWireframe/VeltNotificationsPanelAllReadContainerWireframe/index.d.ts +0 -1
- package/esm/types/components/VeltNotificationsPanelWireframe/VeltNotificationsPanelAllReadContainerWireframe/VeltNotificationsPanelAllReadContainerWireframe.d.ts +0 -7
- package/esm/types/components/VeltNotificationsPanelWireframe/VeltNotificationsPanelAllReadContainerWireframe/index.d.ts +0 -1
|
@@ -2,6 +2,7 @@ import React from 'react';
|
|
|
2
2
|
import { IVeltCommentDialogCustomAnnotationDropdownTriggerArrowProps } from './VeltCommentDialogCustomAnnotationDropdownTriggerArrow/VeltCommentDialogCustomAnnotationDropdownTriggerArrow';
|
|
3
3
|
import { IVeltCommentDialogCustomAnnotationDropdownTriggerList } from './VeltCommentDialogCustomAnnotationDropdownTriggerList/VeltCommentDialogCustomAnnotationDropdownTriggerList';
|
|
4
4
|
import { IVeltCommentDialogCustomAnnotationDropdownTriggerRemainingCountProps } from './VeltCommentDialogCustomAnnotationDropdownTriggerRemainingCount/VeltCommentDialogCustomAnnotationDropdownTriggerRemainingCount';
|
|
5
|
+
import { IVeltCommentDialogCustomAnnotationDropdownTriggerPlaceholderProps } from './VeltCommentDialogCustomAnnotationDropdownTriggerPlaceholder/VeltCommentDialogCustomAnnotationDropdownTriggerPlaceholder';
|
|
5
6
|
export interface IVeltCommentDialogCustomAnnotationDropdownTriggerProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> {
|
|
6
7
|
variant?: string;
|
|
7
8
|
}
|
|
@@ -9,6 +10,7 @@ export interface IVeltCommentDialogCustomAnnotationDropdownTrigger extends React
|
|
|
9
10
|
Arrow: React.FC<IVeltCommentDialogCustomAnnotationDropdownTriggerArrowProps>;
|
|
10
11
|
List: IVeltCommentDialogCustomAnnotationDropdownTriggerList;
|
|
11
12
|
RemainingCount: React.FC<IVeltCommentDialogCustomAnnotationDropdownTriggerRemainingCountProps>;
|
|
13
|
+
Placeholder: React.FC<IVeltCommentDialogCustomAnnotationDropdownTriggerPlaceholderProps>;
|
|
12
14
|
}
|
|
13
15
|
declare const VeltCommentDialogCustomAnnotationDropdownTrigger: IVeltCommentDialogCustomAnnotationDropdownTrigger;
|
|
14
16
|
export default VeltCommentDialogCustomAnnotationDropdownTrigger;
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
export interface IVeltCommentDialogCustomAnnotationDropdownTriggerPlaceholderProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> {
|
|
3
|
+
variant?: string;
|
|
4
|
+
}
|
|
5
|
+
declare const VeltCommentDialogCustomAnnotationDropdownTriggerPlaceholder: React.FC<IVeltCommentDialogCustomAnnotationDropdownTriggerPlaceholderProps>;
|
|
6
|
+
export default VeltCommentDialogCustomAnnotationDropdownTriggerPlaceholder;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default } from "./VeltCommentDialogCustomAnnotationDropdownTriggerPlaceholder";
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
export interface IVeltNotificationsPanelContentAllReadContainerWireframeProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> {
|
|
3
|
+
}
|
|
4
|
+
export interface IVeltNotificationsPanelContentAllReadContainerWireframe extends React.FC<IVeltNotificationsPanelContentAllReadContainerWireframeProps> {
|
|
5
|
+
}
|
|
6
|
+
declare const VeltNotificationsPanelContentAllReadContainerWireframe: IVeltNotificationsPanelContentAllReadContainerWireframe;
|
|
7
|
+
export default VeltNotificationsPanelContentAllReadContainerWireframe;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default } from './VeltNotificationsPanelContentAllReadContainerWireframe';
|
|
@@ -5,6 +5,7 @@ import { IVeltNotificationsPanelContentForYouWireframe } from './VeltNotificatio
|
|
|
5
5
|
import { IVeltNotificationsPanelContentPeopleWireframe } from './VeltNotificationsPanelContentPeopleWireframe/VeltNotificationsPanelContentPeopleWireframe';
|
|
6
6
|
import { IVeltNotificationsPanelContentLoadMoreWireframe } from './VeltNotificationsPanelContentLoadMoreWireframe/VeltNotificationsPanelContentLoadMoreWireframe';
|
|
7
7
|
import { IVeltNotificationsPanelContentListWireframe } from './VeltNotificationsPanelContentListWireframe/VeltNotificationsPanelContentListWireframe';
|
|
8
|
+
import { IVeltNotificationsPanelContentAllReadContainerWireframe } from './VeltNotificationsPanelContentAllReadContainerWireframe/VeltNotificationsPanelContentAllReadContainerWireframe';
|
|
8
9
|
export interface IVeltNotificationsPanelContentWireframeProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> {
|
|
9
10
|
}
|
|
10
11
|
export interface IVeltNotificationsPanelContentWireframe extends React.FC<IVeltNotificationsPanelContentWireframeProps> {
|
|
@@ -14,6 +15,7 @@ export interface IVeltNotificationsPanelContentWireframe extends React.FC<IVeltN
|
|
|
14
15
|
People: IVeltNotificationsPanelContentPeopleWireframe;
|
|
15
16
|
LoadMore: IVeltNotificationsPanelContentLoadMoreWireframe;
|
|
16
17
|
List: IVeltNotificationsPanelContentListWireframe;
|
|
18
|
+
AllReadContainer: IVeltNotificationsPanelContentAllReadContainerWireframe;
|
|
17
19
|
}
|
|
18
20
|
declare const VeltNotificationsPanelContentWireframe: IVeltNotificationsPanelContentWireframe;
|
|
19
21
|
export default VeltNotificationsPanelContentWireframe;
|
package/esm/types/components/VeltNotificationsPanelWireframe/VeltNotificationsPanelWireframe.d.ts
CHANGED
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
import { IVeltNotificationsPanelAllReadContainerWireframe } from './VeltNotificationsPanelAllReadContainerWireframe/VeltNotificationsPanelAllReadContainerWireframe';
|
|
3
2
|
import { IVeltNotificationsPanelContentWireframe } from './VeltNotificationsPanelContentWireframe/VeltNotificationsPanelContentWireframe';
|
|
4
3
|
import { IVeltNotificationsPanelHeaderWireframe } from './VeltNotificationsPanelHeaderWireframe/VeltNotificationsPanelHeaderWireframe';
|
|
5
4
|
import { IVeltNotificationsPanelReadAllButtonWireframe } from './VeltNotificationsPanelReadAllButtonWireframe/VeltNotificationsPanelReadAllButtonWireframe';
|
|
@@ -10,7 +9,6 @@ export interface IVeltNotificationsPanelWireframeProps extends React.DetailedHTM
|
|
|
10
9
|
variant?: string;
|
|
11
10
|
}
|
|
12
11
|
export interface IVeltNotificationsPanelWireframe extends React.FC<IVeltNotificationsPanelWireframeProps> {
|
|
13
|
-
AllReadContainer: IVeltNotificationsPanelAllReadContainerWireframe;
|
|
14
12
|
Content: IVeltNotificationsPanelContentWireframe;
|
|
15
13
|
Header: IVeltNotificationsPanelHeaderWireframe;
|
|
16
14
|
ReadAllButton: IVeltNotificationsPanelReadAllButtonWireframe;
|
package/esm/types/constants.d.ts
CHANGED
package/index.d.ts
CHANGED
|
@@ -1074,6 +1074,10 @@ interface IVeltCommentDialogCustomAnnotationDropdownTriggerRemainingCountProps e
|
|
|
1074
1074
|
variant?: string;
|
|
1075
1075
|
}
|
|
1076
1076
|
|
|
1077
|
+
interface IVeltCommentDialogCustomAnnotationDropdownTriggerPlaceholderProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> {
|
|
1078
|
+
variant?: string;
|
|
1079
|
+
}
|
|
1080
|
+
|
|
1077
1081
|
interface IVeltCommentDialogCustomAnnotationDropdownTriggerProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> {
|
|
1078
1082
|
variant?: string;
|
|
1079
1083
|
}
|
|
@@ -1081,6 +1085,7 @@ interface IVeltCommentDialogCustomAnnotationDropdownTrigger extends React.FC<IVe
|
|
|
1081
1085
|
Arrow: React.FC<IVeltCommentDialogCustomAnnotationDropdownTriggerArrowProps>;
|
|
1082
1086
|
List: IVeltCommentDialogCustomAnnotationDropdownTriggerList;
|
|
1083
1087
|
RemainingCount: React.FC<IVeltCommentDialogCustomAnnotationDropdownTriggerRemainingCountProps>;
|
|
1088
|
+
Placeholder: React.FC<IVeltCommentDialogCustomAnnotationDropdownTriggerPlaceholderProps>;
|
|
1084
1089
|
}
|
|
1085
1090
|
|
|
1086
1091
|
interface IVeltCommentDialogCustomAnnotationDropdownProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> {
|
|
@@ -1721,11 +1726,6 @@ interface IVeltInlineCommentsSectionWireframe extends React.FC<IVeltInlineCommen
|
|
|
1721
1726
|
}
|
|
1722
1727
|
declare const VeltInlineCommentsSectionWireframe: IVeltInlineCommentsSectionWireframe;
|
|
1723
1728
|
|
|
1724
|
-
interface IVeltNotificationsPanelAllReadContainerWireframeProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> {
|
|
1725
|
-
}
|
|
1726
|
-
interface IVeltNotificationsPanelAllReadContainerWireframe extends React.FC<IVeltNotificationsPanelAllReadContainerWireframeProps> {
|
|
1727
|
-
}
|
|
1728
|
-
|
|
1729
1729
|
interface IVeltNotificationsPanelContentAllListItemContentWireframeProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> {
|
|
1730
1730
|
}
|
|
1731
1731
|
interface IVeltNotificationsPanelContentAllListItemContentWireframe extends React.FC<IVeltNotificationsPanelContentAllListItemContentWireframeProps> {
|
|
@@ -1895,6 +1895,11 @@ interface IVeltNotificationsPanelContentListWireframe extends React.FC<IVeltNoti
|
|
|
1895
1895
|
Item: IVeltNotificationsPanelContentListItemWireframe;
|
|
1896
1896
|
}
|
|
1897
1897
|
|
|
1898
|
+
interface IVeltNotificationsPanelContentAllReadContainerWireframeProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> {
|
|
1899
|
+
}
|
|
1900
|
+
interface IVeltNotificationsPanelContentAllReadContainerWireframe extends React.FC<IVeltNotificationsPanelContentAllReadContainerWireframeProps> {
|
|
1901
|
+
}
|
|
1902
|
+
|
|
1898
1903
|
interface IVeltNotificationsPanelContentWireframeProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> {
|
|
1899
1904
|
}
|
|
1900
1905
|
interface IVeltNotificationsPanelContentWireframe extends React.FC<IVeltNotificationsPanelContentWireframeProps> {
|
|
@@ -1904,6 +1909,7 @@ interface IVeltNotificationsPanelContentWireframe extends React.FC<IVeltNotifica
|
|
|
1904
1909
|
People: IVeltNotificationsPanelContentPeopleWireframe;
|
|
1905
1910
|
LoadMore: IVeltNotificationsPanelContentLoadMoreWireframe;
|
|
1906
1911
|
List: IVeltNotificationsPanelContentListWireframe;
|
|
1912
|
+
AllReadContainer: IVeltNotificationsPanelContentAllReadContainerWireframe;
|
|
1907
1913
|
}
|
|
1908
1914
|
|
|
1909
1915
|
interface IVeltNotificationsPanelHeaderTabDocumentsWireframeProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> {
|
|
@@ -1954,7 +1960,6 @@ interface IVeltNotificationsPanelWireframeProps extends React.DetailedHTMLProps<
|
|
|
1954
1960
|
variant?: string;
|
|
1955
1961
|
}
|
|
1956
1962
|
interface IVeltNotificationsPanelWireframe extends React.FC<IVeltNotificationsPanelWireframeProps> {
|
|
1957
|
-
AllReadContainer: IVeltNotificationsPanelAllReadContainerWireframe;
|
|
1958
1963
|
Content: IVeltNotificationsPanelContentWireframe;
|
|
1959
1964
|
Header: IVeltNotificationsPanelHeaderWireframe;
|
|
1960
1965
|
ReadAllButton: IVeltNotificationsPanelReadAllButtonWireframe;
|
package/package.json
CHANGED
|
@@ -1,7 +1,37 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@veltdev/react",
|
|
3
|
-
"version": "2.0.
|
|
4
|
-
"description": "",
|
|
3
|
+
"version": "2.0.26",
|
|
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
|
+
"homepage": "https://velt.dev",
|
|
6
|
+
"keywords": [
|
|
7
|
+
"react",
|
|
8
|
+
"velt",
|
|
9
|
+
"real-time",
|
|
10
|
+
"realtime",
|
|
11
|
+
"toolkit",
|
|
12
|
+
"multiplayer",
|
|
13
|
+
"websockets",
|
|
14
|
+
"collaboration",
|
|
15
|
+
"collaborative",
|
|
16
|
+
"presence",
|
|
17
|
+
"synchronize",
|
|
18
|
+
"rooms",
|
|
19
|
+
"documents",
|
|
20
|
+
"conflict resolution",
|
|
21
|
+
"huddle",
|
|
22
|
+
"crdts",
|
|
23
|
+
"comment",
|
|
24
|
+
"comments",
|
|
25
|
+
"recording",
|
|
26
|
+
"video call",
|
|
27
|
+
"audio call",
|
|
28
|
+
"screen recording",
|
|
29
|
+
"webrtc",
|
|
30
|
+
"cursors",
|
|
31
|
+
"notifications",
|
|
32
|
+
"cord",
|
|
33
|
+
"liveblocks"
|
|
34
|
+
],
|
|
5
35
|
"scripts": {
|
|
6
36
|
"test": "echo \"Error: no test specified\" && exit 1",
|
|
7
37
|
"version:update": "node ../update-npm-package.mjs",
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
|
-
export interface IVeltNotificationsPanelAllReadContainerWireframeProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> {
|
|
3
|
-
}
|
|
4
|
-
export interface IVeltNotificationsPanelAllReadContainerWireframe extends React.FC<IVeltNotificationsPanelAllReadContainerWireframeProps> {
|
|
5
|
-
}
|
|
6
|
-
declare const VeltNotificationsPanelAllReadContainerWireframe: IVeltNotificationsPanelAllReadContainerWireframe;
|
|
7
|
-
export default VeltNotificationsPanelAllReadContainerWireframe;
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export { default } from './VeltNotificationsPanelAllReadContainerWireframe';
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
|
-
export interface IVeltNotificationsPanelAllReadContainerWireframeProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> {
|
|
3
|
-
}
|
|
4
|
-
export interface IVeltNotificationsPanelAllReadContainerWireframe extends React.FC<IVeltNotificationsPanelAllReadContainerWireframeProps> {
|
|
5
|
-
}
|
|
6
|
-
declare const VeltNotificationsPanelAllReadContainerWireframe: IVeltNotificationsPanelAllReadContainerWireframe;
|
|
7
|
-
export default VeltNotificationsPanelAllReadContainerWireframe;
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export { default } from './VeltNotificationsPanelAllReadContainerWireframe';
|