@veltdev/react 2.0.23 → 2.0.25
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 +0 -0
- package/cjs/index.js +13 -1
- 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/VeltCommentDialogWireframe/VeltCommentDialogDeleteButton/VeltCommentDialogDeleteButton.d.ts +6 -0
- package/cjs/types/components/VeltCommentDialogWireframe/VeltCommentDialogDeleteButton/index.d.ts +1 -0
- package/cjs/types/components/VeltCommentDialogWireframe/VeltCommentDialogWireframe.d.ts +2 -0
- package/cjs/types/constants.d.ts +1 -1
- package/esm/index.js +13 -1
- 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/VeltCommentDialogWireframe/VeltCommentDialogDeleteButton/VeltCommentDialogDeleteButton.d.ts +6 -0
- package/esm/types/components/VeltCommentDialogWireframe/VeltCommentDialogDeleteButton/index.d.ts +1 -0
- package/esm/types/components/VeltCommentDialogWireframe/VeltCommentDialogWireframe.d.ts +2 -0
- package/esm/types/constants.d.ts +1 -1
- package/index.d.ts +10 -0
- package/package.json +32 -2
|
@@ -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,6 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
export interface IVeltCommentDialogDeleteButtonProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> {
|
|
3
|
+
variant?: string;
|
|
4
|
+
}
|
|
5
|
+
declare const VeltCommentDialogDeleteButton: React.FC<IVeltCommentDialogDeleteButtonProps>;
|
|
6
|
+
export default VeltCommentDialogDeleteButton;
|
package/cjs/types/components/VeltCommentDialogWireframe/VeltCommentDialogDeleteButton/index.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default } from "./VeltCommentDialogDeleteButton";
|
|
@@ -24,6 +24,7 @@ import { IVeltCommentDialogThreadsProps } from "./VeltCommentDialogThreads/VeltC
|
|
|
24
24
|
import { IVeltCommentDialogToggleReplyProps } from "./VeltCommentDialogToggleReply/VeltCommentDialogToggleReply";
|
|
25
25
|
import { IVeltCommentDialogUpgradeProps } from "./VeltCommentDialogUpgrade/VeltCommentDialogUpgrade";
|
|
26
26
|
import { IVeltCommentDialogCustomAnnotationDropdown } from "./VeltCommentDialogCustomAnnotationDropdown/VeltCommentDialogCustomAnnotationDropdown";
|
|
27
|
+
import { IVeltCommentDialogDeleteButtonProps } from "./VeltCommentDialogDeleteButton/VeltCommentDialogDeleteButton";
|
|
27
28
|
export interface IVeltCommentDialogWireframeProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> {
|
|
28
29
|
variant?: string;
|
|
29
30
|
}
|
|
@@ -53,5 +54,6 @@ declare const VeltCommentDialogWireframe: React.FC<IVeltCommentDialogWireframePr
|
|
|
53
54
|
ToggleReply: React.FC<IVeltCommentDialogToggleReplyProps>;
|
|
54
55
|
Upgrade: React.FC<IVeltCommentDialogUpgradeProps>;
|
|
55
56
|
CustomAnnotationDropdown: IVeltCommentDialogCustomAnnotationDropdown;
|
|
57
|
+
DeleteButton: React.FC<IVeltCommentDialogDeleteButtonProps>;
|
|
56
58
|
};
|
|
57
59
|
export default VeltCommentDialogWireframe;
|
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.25';
|
|
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"]);
|
|
@@ -1987,6 +1993,11 @@ var VeltCommentDialogCustomAnnotationDropdown = function (props) {
|
|
|
1987
1993
|
VeltCommentDialogCustomAnnotationDropdown.Content = VeltCommentDialogCustomAnnotationDropdownContent;
|
|
1988
1994
|
VeltCommentDialogCustomAnnotationDropdown.Trigger = VeltCommentDialogCustomAnnotationDropdownTrigger;
|
|
1989
1995
|
|
|
1996
|
+
var VeltCommentDialogDeleteButton = function (props) {
|
|
1997
|
+
var children = props.children;
|
|
1998
|
+
return (React.createElement("velt-comment-dialog-delete-button-wireframe", null, children));
|
|
1999
|
+
};
|
|
2000
|
+
|
|
1990
2001
|
var VeltCommentDialogWireframe = function (props) {
|
|
1991
2002
|
var children = props.children, remainingProp = __rest(props, ["children"]);
|
|
1992
2003
|
return (React.createElement("velt-comment-dialog-wireframe", __assign({}, remainingProp), children));
|
|
@@ -2016,6 +2027,7 @@ VeltCommentDialogWireframe.Threads = VeltCommentDialogThreads;
|
|
|
2016
2027
|
VeltCommentDialogWireframe.ToggleReply = VeltCommentDialogToggleReply;
|
|
2017
2028
|
VeltCommentDialogWireframe.Upgrade = VeltCommentDialogUpgrade;
|
|
2018
2029
|
VeltCommentDialogWireframe.CustomAnnotationDropdown = VeltCommentDialogCustomAnnotationDropdown;
|
|
2030
|
+
VeltCommentDialogWireframe.DeleteButton = VeltCommentDialogDeleteButton;
|
|
2019
2031
|
|
|
2020
2032
|
var VeltCommentsSidebarCloseButton = function (props) {
|
|
2021
2033
|
props.children; var remainingProps = __rest(props, ["children"]);
|