@veltdev/react 2.0.30 → 2.0.31
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/cjs/index.js +31 -1
- package/cjs/index.js.map +1 -1
- package/cjs/types/components/VeltConfirmDialogWireframe/VeltConfirmDialogApproveButtonWireframe/VeltConfirmDialogApproveButtonWireframe.d.ts +6 -0
- package/cjs/types/components/VeltConfirmDialogWireframe/VeltConfirmDialogApproveButtonWireframe/index.d.ts +1 -0
- package/cjs/types/components/VeltConfirmDialogWireframe/VeltConfirmDialogMessageWireframe/VeltConfirmDialogMessageWireframe.d.ts +6 -0
- package/cjs/types/components/VeltConfirmDialogWireframe/VeltConfirmDialogMessageWireframe/index.d.ts +1 -0
- package/cjs/types/components/VeltConfirmDialogWireframe/VeltConfirmDialogRejectButtonWireframe/VeltConfirmDialogRejectButtonWireframe.d.ts +6 -0
- package/cjs/types/components/VeltConfirmDialogWireframe/VeltConfirmDialogRejectButtonWireframe/index.d.ts +1 -0
- package/cjs/types/components/VeltConfirmDialogWireframe/VeltConfirmDialogTitleWireframe/VeltConfirmDialogTitleWireframe.d.ts +6 -0
- package/cjs/types/components/VeltConfirmDialogWireframe/VeltConfirmDialogTitleWireframe/index.d.ts +1 -0
- package/cjs/types/components/VeltConfirmDialogWireframe/VeltConfirmDialogWireframe.d.ts +16 -0
- package/cjs/types/components/VeltConfirmDialogWireframe/index.d.ts +1 -0
- package/cjs/types/components/index.d.ts +1 -0
- package/cjs/types/constants.d.ts +1 -1
- package/esm/index.js +31 -2
- package/esm/index.js.map +1 -1
- package/esm/types/components/VeltConfirmDialogWireframe/VeltConfirmDialogApproveButtonWireframe/VeltConfirmDialogApproveButtonWireframe.d.ts +6 -0
- package/esm/types/components/VeltConfirmDialogWireframe/VeltConfirmDialogApproveButtonWireframe/index.d.ts +1 -0
- package/esm/types/components/VeltConfirmDialogWireframe/VeltConfirmDialogMessageWireframe/VeltConfirmDialogMessageWireframe.d.ts +6 -0
- package/esm/types/components/VeltConfirmDialogWireframe/VeltConfirmDialogMessageWireframe/index.d.ts +1 -0
- package/esm/types/components/VeltConfirmDialogWireframe/VeltConfirmDialogRejectButtonWireframe/VeltConfirmDialogRejectButtonWireframe.d.ts +6 -0
- package/esm/types/components/VeltConfirmDialogWireframe/VeltConfirmDialogRejectButtonWireframe/index.d.ts +1 -0
- package/esm/types/components/VeltConfirmDialogWireframe/VeltConfirmDialogTitleWireframe/VeltConfirmDialogTitleWireframe.d.ts +6 -0
- package/esm/types/components/VeltConfirmDialogWireframe/VeltConfirmDialogTitleWireframe/index.d.ts +1 -0
- package/esm/types/components/VeltConfirmDialogWireframe/VeltConfirmDialogWireframe.d.ts +16 -0
- package/esm/types/components/VeltConfirmDialogWireframe/index.d.ts +1 -0
- package/esm/types/components/index.d.ts +1 -0
- package/esm/types/constants.d.ts +1 -1
- package/index.d.ts +28 -1
- package/package.json +1 -1
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.31';
|
|
144
144
|
var VELT_SDK_INIT_EVENT = 'onVeltInit';
|
|
145
145
|
var VELT_TAB_ID = 'veltTabId';
|
|
146
146
|
|
|
@@ -2922,6 +2922,35 @@ VeltNotificationsToolWireframe.UnreadIcon = VeltNotificationsToolUnreadIconWiref
|
|
|
2922
2922
|
VeltNotificationsToolWireframe.Icon = VeltNotificationsToolIconWireframe;
|
|
2923
2923
|
VeltNotificationsToolWireframe.UnreadCount = VeltNotificationsToolUnreadCountWireframe;
|
|
2924
2924
|
|
|
2925
|
+
var VeltConfirmDialogApproveButtonWireframe = function (props) {
|
|
2926
|
+
var children = props.children, remainingProps = __rest(props, ["children"]);
|
|
2927
|
+
return (React__default["default"].createElement("velt-confirm-dialog-approve-button-wireframe", __assign({}, remainingProps), children));
|
|
2928
|
+
};
|
|
2929
|
+
|
|
2930
|
+
var VeltConfirmDialogMessageWireframe = function (props) {
|
|
2931
|
+
var children = props.children, remainingProps = __rest(props, ["children"]);
|
|
2932
|
+
return (React__default["default"].createElement("velt-confirm-dialog-message-wireframe", __assign({}, remainingProps), children));
|
|
2933
|
+
};
|
|
2934
|
+
|
|
2935
|
+
var VeltConfirmDialogRejectButtonWireframe = function (props) {
|
|
2936
|
+
var children = props.children, remainingProps = __rest(props, ["children"]);
|
|
2937
|
+
return (React__default["default"].createElement("velt-confirm-dialog-reject-button-wireframe", __assign({}, remainingProps), children));
|
|
2938
|
+
};
|
|
2939
|
+
|
|
2940
|
+
var VeltConfirmDialogTitleWireframe = function (props) {
|
|
2941
|
+
var children = props.children, remainingProps = __rest(props, ["children"]);
|
|
2942
|
+
return (React__default["default"].createElement("velt-confirm-dialog-title-wireframe", __assign({}, remainingProps), children));
|
|
2943
|
+
};
|
|
2944
|
+
|
|
2945
|
+
var VeltConfirmDialogWireframe = function (props) {
|
|
2946
|
+
var children = props.children, remainingProp = __rest(props, ["children"]);
|
|
2947
|
+
return (React__default["default"].createElement("velt-confirm-dialog-wireframe", __assign({}, remainingProp), children));
|
|
2948
|
+
};
|
|
2949
|
+
VeltConfirmDialogWireframe.Title = VeltConfirmDialogTitleWireframe;
|
|
2950
|
+
VeltConfirmDialogWireframe.Message = VeltConfirmDialogMessageWireframe;
|
|
2951
|
+
VeltConfirmDialogWireframe.RejectButton = VeltConfirmDialogRejectButtonWireframe;
|
|
2952
|
+
VeltConfirmDialogWireframe.ApproveButton = VeltConfirmDialogApproveButtonWireframe;
|
|
2953
|
+
|
|
2925
2954
|
function useClient() {
|
|
2926
2955
|
var client = useVeltClient().client;
|
|
2927
2956
|
var _a = React__default["default"].useState(), veltClient = _a[0], setVeltClient = _a[1];
|
|
@@ -3719,6 +3748,7 @@ exports.VeltCommentsMinimap = VeltCommentsMinimap;
|
|
|
3719
3748
|
exports.VeltCommentsSidebar = SnippylyCommentsSidebar;
|
|
3720
3749
|
exports.VeltCommentsSidebarStatusDropdownWireframe = VeltCommentsSidebarStatusDropdownWireframe;
|
|
3721
3750
|
exports.VeltCommentsSidebarWireframe = VeltCommentsSidebarWireframe;
|
|
3751
|
+
exports.VeltConfirmDialogWireframe = VeltConfirmDialogWireframe;
|
|
3722
3752
|
exports.VeltCursor = SnippylyCursor;
|
|
3723
3753
|
exports.VeltData = VeltData;
|
|
3724
3754
|
exports.VeltHighChartComments = VeltHighChartComments;
|