@veltdev/react 2.0.24 → 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 +7 -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/constants.d.ts +1 -1
- package/esm/index.js +7 -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/constants.d.ts +1 -1
- package/index.d.ts +5 -0
- package/package.json +32 -2
package/README.md
ADDED
|
File without changes
|
package/cjs/index.js
CHANGED
|
@@ -140,7 +140,7 @@ var loadVelt = function (callback, version, staging, develop, proxyDomain) {
|
|
|
140
140
|
}
|
|
141
141
|
};
|
|
142
142
|
|
|
143
|
-
var VELT_SDK_VERSION = '2.0.
|
|
143
|
+
var VELT_SDK_VERSION = '2.0.25';
|
|
144
144
|
var VELT_SDK_INIT_EVENT = 'onVeltInit';
|
|
145
145
|
var VELT_TAB_ID = 'veltTabId';
|
|
146
146
|
|
|
@@ -1980,6 +1980,11 @@ var VeltCommentDialogCustomAnnotationDropdownTriggerRemainingCount = function (p
|
|
|
1980
1980
|
return (React__default["default"].createElement("velt-comment-dialog-custom-annotation-dropdown-trigger-remaining-count-wireframe", __assign({}, remainingProp), children));
|
|
1981
1981
|
};
|
|
1982
1982
|
|
|
1983
|
+
var VeltCommentDialogCustomAnnotationDropdownTriggerPlaceholder = function (props) {
|
|
1984
|
+
var children = props.children, remainingProp = __rest(props, ["children"]);
|
|
1985
|
+
return (React__default["default"].createElement("velt-comment-dialog-custom-annotation-dropdown-trigger-placeholder-wireframe", __assign({}, remainingProp), children));
|
|
1986
|
+
};
|
|
1987
|
+
|
|
1983
1988
|
var VeltCommentDialogCustomAnnotationDropdownTrigger = function (props) {
|
|
1984
1989
|
var children = props.children, remainingProp = __rest(props, ["children"]);
|
|
1985
1990
|
return (React__default["default"].createElement("velt-comment-dialog-custom-annotation-dropdown-trigger-wireframe", __assign({}, remainingProp), children));
|
|
@@ -1987,6 +1992,7 @@ var VeltCommentDialogCustomAnnotationDropdownTrigger = function (props) {
|
|
|
1987
1992
|
VeltCommentDialogCustomAnnotationDropdownTrigger.Arrow = VeltCommentDialogCustomAnnotationDropdownTriggerArrow;
|
|
1988
1993
|
VeltCommentDialogCustomAnnotationDropdownTrigger.List = VeltCommentDialogCustomAnnotationDropdownTriggerList;
|
|
1989
1994
|
VeltCommentDialogCustomAnnotationDropdownTrigger.RemainingCount = VeltCommentDialogCustomAnnotationDropdownTriggerRemainingCount;
|
|
1995
|
+
VeltCommentDialogCustomAnnotationDropdownTrigger.Placeholder = VeltCommentDialogCustomAnnotationDropdownTriggerPlaceholder;
|
|
1990
1996
|
|
|
1991
1997
|
var VeltCommentDialogCustomAnnotationDropdown = function (props) {
|
|
1992
1998
|
var children = props.children, remainingProp = __rest(props, ["children"]);
|