@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.
- package/README.md +54 -0
- package/cjs/index.js +7 -7
- package/cjs/index.js.map +1 -1
- 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 +7 -7
- package/esm/index.js.map +1 -1
- 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 +6 -6
- package/package.json +1 -1
- 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
|
@@ -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/cjs/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/cjs/types/constants.d.ts
CHANGED
package/esm/index.js
CHANGED
|
@@ -132,7 +132,7 @@ var loadVelt = function (callback, version, staging, develop, proxyDomain) {
|
|
|
132
132
|
}
|
|
133
133
|
};
|
|
134
134
|
|
|
135
|
-
var VELT_SDK_VERSION = '2.0.
|
|
135
|
+
var VELT_SDK_VERSION = '2.0.27';
|
|
136
136
|
var VELT_SDK_INIT_EVENT = 'onVeltInit';
|
|
137
137
|
var VELT_TAB_ID = 'veltTabId';
|
|
138
138
|
|
|
@@ -2634,11 +2634,6 @@ VeltInlineCommentsSectionWireframe.List = VeltInlineCommentsSectionListWireframe
|
|
|
2634
2634
|
VeltInlineCommentsSectionWireframe.Panel = VeltInlineCommentsSectionPanelWireframe;
|
|
2635
2635
|
VeltInlineCommentsSectionWireframe.Skeleton = VeltInlineCommentsSectionSkeletonWireframe;
|
|
2636
2636
|
|
|
2637
|
-
var VeltNotificationsPanelAllReadContainerWireframe = function (props) {
|
|
2638
|
-
var children = props.children, remainingProp = __rest(props, ["children"]);
|
|
2639
|
-
return (React.createElement("velt-notifications-panel-all-read-container-wireframe", __assign({}, remainingProp), children));
|
|
2640
|
-
};
|
|
2641
|
-
|
|
2642
2637
|
var VeltNotificationsPanelContentAllListItemContentWireframe = function (props) {
|
|
2643
2638
|
var children = props.children, remainingProp = __rest(props, ["children"]);
|
|
2644
2639
|
return (React.createElement("velt-notifications-panel-content-all-list-item-content-wireframe", __assign({}, remainingProp), children));
|
|
@@ -2807,6 +2802,11 @@ var VeltNotificationsPanelContentListWireframe = function (props) {
|
|
|
2807
2802
|
};
|
|
2808
2803
|
VeltNotificationsPanelContentListWireframe.Item = VeltNotificationsPanelContentListItemWireframe;
|
|
2809
2804
|
|
|
2805
|
+
var VeltNotificationsPanelContentAllReadContainerWireframe = function (props) {
|
|
2806
|
+
var children = props.children, remainingProp = __rest(props, ["children"]);
|
|
2807
|
+
return (React.createElement("velt-notifications-panel-content-all-read-container-wireframe", __assign({}, remainingProp), children));
|
|
2808
|
+
};
|
|
2809
|
+
|
|
2810
2810
|
var VeltNotificationsPanelContentWireframe = function (props) {
|
|
2811
2811
|
var children = props.children, remainingProp = __rest(props, ["children"]);
|
|
2812
2812
|
return (React.createElement("velt-notifications-panel-content-wireframe", __assign({}, remainingProp), children));
|
|
@@ -2817,6 +2817,7 @@ VeltNotificationsPanelContentWireframe.Documents = VeltNotificationsPanelContent
|
|
|
2817
2817
|
VeltNotificationsPanelContentWireframe.People = VeltNotificationsPanelContentPeopleWireframe;
|
|
2818
2818
|
VeltNotificationsPanelContentWireframe.LoadMore = VeltNotificationsPanelContentLoadMoreWireframe;
|
|
2819
2819
|
VeltNotificationsPanelContentWireframe.List = VeltNotificationsPanelContentListWireframe;
|
|
2820
|
+
VeltNotificationsPanelContentWireframe.AllReadContainer = VeltNotificationsPanelContentAllReadContainerWireframe;
|
|
2820
2821
|
|
|
2821
2822
|
var VeltNotificationsPanelHeaderTabDocumentsWireframe = function (props) {
|
|
2822
2823
|
var children = props.children, remainingProp = __rest(props, ["children"]);
|
|
@@ -2871,7 +2872,6 @@ var VeltNotificationsPanelWireframe = function (props) {
|
|
|
2871
2872
|
var children = props.children, remainingProp = __rest(props, ["children"]);
|
|
2872
2873
|
return (React.createElement("velt-notifications-panel-wireframe", __assign({}, remainingProp), children));
|
|
2873
2874
|
};
|
|
2874
|
-
VeltNotificationsPanelWireframe.AllReadContainer = VeltNotificationsPanelAllReadContainerWireframe;
|
|
2875
2875
|
VeltNotificationsPanelWireframe.Content = VeltNotificationsPanelContentWireframe;
|
|
2876
2876
|
VeltNotificationsPanelWireframe.Header = VeltNotificationsPanelHeaderWireframe;
|
|
2877
2877
|
VeltNotificationsPanelWireframe.ReadAllButton = VeltNotificationsPanelReadAllButtonWireframe;
|