@veltdev/react 2.0.25 → 2.0.27

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.
Files changed (21) hide show
  1. package/README.md +54 -0
  2. package/cjs/index.js +7 -7
  3. package/cjs/index.js.map +1 -1
  4. package/cjs/types/components/VeltNotificationsPanelWireframe/VeltNotificationsPanelContentWireframe/VeltNotificationsPanelContentAllReadContainerWireframe/VeltNotificationsPanelContentAllReadContainerWireframe.d.ts +7 -0
  5. package/cjs/types/components/VeltNotificationsPanelWireframe/VeltNotificationsPanelContentWireframe/VeltNotificationsPanelContentAllReadContainerWireframe/index.d.ts +1 -0
  6. package/cjs/types/components/VeltNotificationsPanelWireframe/VeltNotificationsPanelContentWireframe/VeltNotificationsPanelContentWireframe.d.ts +2 -0
  7. package/cjs/types/components/VeltNotificationsPanelWireframe/VeltNotificationsPanelWireframe.d.ts +0 -2
  8. package/cjs/types/constants.d.ts +1 -1
  9. package/esm/index.js +7 -7
  10. package/esm/index.js.map +1 -1
  11. package/esm/types/components/VeltNotificationsPanelWireframe/VeltNotificationsPanelContentWireframe/VeltNotificationsPanelContentAllReadContainerWireframe/VeltNotificationsPanelContentAllReadContainerWireframe.d.ts +7 -0
  12. package/esm/types/components/VeltNotificationsPanelWireframe/VeltNotificationsPanelContentWireframe/VeltNotificationsPanelContentAllReadContainerWireframe/index.d.ts +1 -0
  13. package/esm/types/components/VeltNotificationsPanelWireframe/VeltNotificationsPanelContentWireframe/VeltNotificationsPanelContentWireframe.d.ts +2 -0
  14. package/esm/types/components/VeltNotificationsPanelWireframe/VeltNotificationsPanelWireframe.d.ts +0 -2
  15. package/esm/types/constants.d.ts +1 -1
  16. package/index.d.ts +6 -6
  17. package/package.json +1 -1
  18. package/cjs/types/components/VeltNotificationsPanelWireframe/VeltNotificationsPanelAllReadContainerWireframe/VeltNotificationsPanelAllReadContainerWireframe.d.ts +0 -7
  19. package/cjs/types/components/VeltNotificationsPanelWireframe/VeltNotificationsPanelAllReadContainerWireframe/index.d.ts +0 -1
  20. package/esm/types/components/VeltNotificationsPanelWireframe/VeltNotificationsPanelAllReadContainerWireframe/VeltNotificationsPanelAllReadContainerWireframe.d.ts +0 -7
  21. package/esm/types/components/VeltNotificationsPanelWireframe/VeltNotificationsPanelAllReadContainerWireframe/index.d.ts +0 -1
@@ -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;
@@ -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;
@@ -1,3 +1,3 @@
1
- export declare const VELT_SDK_VERSION = "2.0.25";
1
+ export declare const VELT_SDK_VERSION = "2.0.27";
2
2
  export declare const VELT_SDK_INIT_EVENT = "onVeltInit";
3
3
  export declare const VELT_TAB_ID = "veltTabId";
package/index.d.ts CHANGED
@@ -1726,11 +1726,6 @@ interface IVeltInlineCommentsSectionWireframe extends React.FC<IVeltInlineCommen
1726
1726
  }
1727
1727
  declare const VeltInlineCommentsSectionWireframe: IVeltInlineCommentsSectionWireframe;
1728
1728
 
1729
- interface IVeltNotificationsPanelAllReadContainerWireframeProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> {
1730
- }
1731
- interface IVeltNotificationsPanelAllReadContainerWireframe extends React.FC<IVeltNotificationsPanelAllReadContainerWireframeProps> {
1732
- }
1733
-
1734
1729
  interface IVeltNotificationsPanelContentAllListItemContentWireframeProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> {
1735
1730
  }
1736
1731
  interface IVeltNotificationsPanelContentAllListItemContentWireframe extends React.FC<IVeltNotificationsPanelContentAllListItemContentWireframeProps> {
@@ -1900,6 +1895,11 @@ interface IVeltNotificationsPanelContentListWireframe extends React.FC<IVeltNoti
1900
1895
  Item: IVeltNotificationsPanelContentListItemWireframe;
1901
1896
  }
1902
1897
 
1898
+ interface IVeltNotificationsPanelContentAllReadContainerWireframeProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> {
1899
+ }
1900
+ interface IVeltNotificationsPanelContentAllReadContainerWireframe extends React.FC<IVeltNotificationsPanelContentAllReadContainerWireframeProps> {
1901
+ }
1902
+
1903
1903
  interface IVeltNotificationsPanelContentWireframeProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> {
1904
1904
  }
1905
1905
  interface IVeltNotificationsPanelContentWireframe extends React.FC<IVeltNotificationsPanelContentWireframeProps> {
@@ -1909,6 +1909,7 @@ interface IVeltNotificationsPanelContentWireframe extends React.FC<IVeltNotifica
1909
1909
  People: IVeltNotificationsPanelContentPeopleWireframe;
1910
1910
  LoadMore: IVeltNotificationsPanelContentLoadMoreWireframe;
1911
1911
  List: IVeltNotificationsPanelContentListWireframe;
1912
+ AllReadContainer: IVeltNotificationsPanelContentAllReadContainerWireframe;
1912
1913
  }
1913
1914
 
1914
1915
  interface IVeltNotificationsPanelHeaderTabDocumentsWireframeProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> {
@@ -1959,7 +1960,6 @@ interface IVeltNotificationsPanelWireframeProps extends React.DetailedHTMLProps<
1959
1960
  variant?: string;
1960
1961
  }
1961
1962
  interface IVeltNotificationsPanelWireframe extends React.FC<IVeltNotificationsPanelWireframeProps> {
1962
- AllReadContainer: IVeltNotificationsPanelAllReadContainerWireframe;
1963
1963
  Content: IVeltNotificationsPanelContentWireframe;
1964
1964
  Header: IVeltNotificationsPanelHeaderWireframe;
1965
1965
  ReadAllButton: IVeltNotificationsPanelReadAllButtonWireframe;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@veltdev/react",
3
- "version": "2.0.25",
3
+ "version": "2.0.27",
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": [
@@ -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';