@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/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.26';
|
|
136
136
|
var VELT_SDK_INIT_EVENT = 'onVeltInit';
|
|
137
137
|
var VELT_TAB_ID = 'veltTabId';
|
|
138
138
|
|
|
@@ -1972,6 +1972,11 @@ var VeltCommentDialogCustomAnnotationDropdownTriggerRemainingCount = function (p
|
|
|
1972
1972
|
return (React.createElement("velt-comment-dialog-custom-annotation-dropdown-trigger-remaining-count-wireframe", __assign({}, remainingProp), children));
|
|
1973
1973
|
};
|
|
1974
1974
|
|
|
1975
|
+
var VeltCommentDialogCustomAnnotationDropdownTriggerPlaceholder = function (props) {
|
|
1976
|
+
var children = props.children, remainingProp = __rest(props, ["children"]);
|
|
1977
|
+
return (React.createElement("velt-comment-dialog-custom-annotation-dropdown-trigger-placeholder-wireframe", __assign({}, remainingProp), children));
|
|
1978
|
+
};
|
|
1979
|
+
|
|
1975
1980
|
var VeltCommentDialogCustomAnnotationDropdownTrigger = function (props) {
|
|
1976
1981
|
var children = props.children, remainingProp = __rest(props, ["children"]);
|
|
1977
1982
|
return (React.createElement("velt-comment-dialog-custom-annotation-dropdown-trigger-wireframe", __assign({}, remainingProp), children));
|
|
@@ -1979,6 +1984,7 @@ var VeltCommentDialogCustomAnnotationDropdownTrigger = function (props) {
|
|
|
1979
1984
|
VeltCommentDialogCustomAnnotationDropdownTrigger.Arrow = VeltCommentDialogCustomAnnotationDropdownTriggerArrow;
|
|
1980
1985
|
VeltCommentDialogCustomAnnotationDropdownTrigger.List = VeltCommentDialogCustomAnnotationDropdownTriggerList;
|
|
1981
1986
|
VeltCommentDialogCustomAnnotationDropdownTrigger.RemainingCount = VeltCommentDialogCustomAnnotationDropdownTriggerRemainingCount;
|
|
1987
|
+
VeltCommentDialogCustomAnnotationDropdownTrigger.Placeholder = VeltCommentDialogCustomAnnotationDropdownTriggerPlaceholder;
|
|
1982
1988
|
|
|
1983
1989
|
var VeltCommentDialogCustomAnnotationDropdown = function (props) {
|
|
1984
1990
|
var children = props.children, remainingProp = __rest(props, ["children"]);
|
|
@@ -2628,11 +2634,6 @@ VeltInlineCommentsSectionWireframe.List = VeltInlineCommentsSectionListWireframe
|
|
|
2628
2634
|
VeltInlineCommentsSectionWireframe.Panel = VeltInlineCommentsSectionPanelWireframe;
|
|
2629
2635
|
VeltInlineCommentsSectionWireframe.Skeleton = VeltInlineCommentsSectionSkeletonWireframe;
|
|
2630
2636
|
|
|
2631
|
-
var VeltNotificationsPanelAllReadContainerWireframe = function (props) {
|
|
2632
|
-
var children = props.children, remainingProp = __rest(props, ["children"]);
|
|
2633
|
-
return (React.createElement("velt-notifications-panel-all-read-container-wireframe", __assign({}, remainingProp), children));
|
|
2634
|
-
};
|
|
2635
|
-
|
|
2636
2637
|
var VeltNotificationsPanelContentAllListItemContentWireframe = function (props) {
|
|
2637
2638
|
var children = props.children, remainingProp = __rest(props, ["children"]);
|
|
2638
2639
|
return (React.createElement("velt-notifications-panel-content-all-list-item-content-wireframe", __assign({}, remainingProp), children));
|
|
@@ -2801,6 +2802,11 @@ var VeltNotificationsPanelContentListWireframe = function (props) {
|
|
|
2801
2802
|
};
|
|
2802
2803
|
VeltNotificationsPanelContentListWireframe.Item = VeltNotificationsPanelContentListItemWireframe;
|
|
2803
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
|
+
|
|
2804
2810
|
var VeltNotificationsPanelContentWireframe = function (props) {
|
|
2805
2811
|
var children = props.children, remainingProp = __rest(props, ["children"]);
|
|
2806
2812
|
return (React.createElement("velt-notifications-panel-content-wireframe", __assign({}, remainingProp), children));
|
|
@@ -2811,6 +2817,7 @@ VeltNotificationsPanelContentWireframe.Documents = VeltNotificationsPanelContent
|
|
|
2811
2817
|
VeltNotificationsPanelContentWireframe.People = VeltNotificationsPanelContentPeopleWireframe;
|
|
2812
2818
|
VeltNotificationsPanelContentWireframe.LoadMore = VeltNotificationsPanelContentLoadMoreWireframe;
|
|
2813
2819
|
VeltNotificationsPanelContentWireframe.List = VeltNotificationsPanelContentListWireframe;
|
|
2820
|
+
VeltNotificationsPanelContentWireframe.AllReadContainer = VeltNotificationsPanelContentAllReadContainerWireframe;
|
|
2814
2821
|
|
|
2815
2822
|
var VeltNotificationsPanelHeaderTabDocumentsWireframe = function (props) {
|
|
2816
2823
|
var children = props.children, remainingProp = __rest(props, ["children"]);
|
|
@@ -2865,7 +2872,6 @@ var VeltNotificationsPanelWireframe = function (props) {
|
|
|
2865
2872
|
var children = props.children, remainingProp = __rest(props, ["children"]);
|
|
2866
2873
|
return (React.createElement("velt-notifications-panel-wireframe", __assign({}, remainingProp), children));
|
|
2867
2874
|
};
|
|
2868
|
-
VeltNotificationsPanelWireframe.AllReadContainer = VeltNotificationsPanelAllReadContainerWireframe;
|
|
2869
2875
|
VeltNotificationsPanelWireframe.Content = VeltNotificationsPanelContentWireframe;
|
|
2870
2876
|
VeltNotificationsPanelWireframe.Header = VeltNotificationsPanelHeaderWireframe;
|
|
2871
2877
|
VeltNotificationsPanelWireframe.ReadAllButton = VeltNotificationsPanelReadAllButtonWireframe;
|