@veltdev/react 4.0.0-beta.23 → 4.0.0-beta.24
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 +4 -1
- package/cjs/index.js.map +1 -1
- package/cjs/types/constants.d.ts +1 -1
- package/cjs/types/hooks/RecorderElement.d.ts +3 -0
- package/esm/index.js +4 -1
- package/esm/index.js.map +1 -1
- package/esm/types/constants.d.ts +1 -1
- package/esm/types/hooks/RecorderElement.d.ts +3 -0
- package/index.d.ts +3 -0
- 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 = '4.0.0-beta.
|
|
143
|
+
var VELT_SDK_VERSION = '4.0.0-beta.24';
|
|
144
144
|
var VELT_SDK_INIT_EVENT = 'onVeltInit';
|
|
145
145
|
var VELT_TAB_ID = 'veltTabId';
|
|
146
146
|
|
|
@@ -6021,6 +6021,9 @@ function useRecorderAddHandler() {
|
|
|
6021
6021
|
}, [recorderElement]);
|
|
6022
6022
|
return data;
|
|
6023
6023
|
}
|
|
6024
|
+
/**
|
|
6025
|
+
* @deprecated Use `recorderUtils.getRecordingData()` method instead
|
|
6026
|
+
*/
|
|
6024
6027
|
function useRecordingDataByRecorderId(recorderId) {
|
|
6025
6028
|
var recorderElement = useRecorderUtils();
|
|
6026
6029
|
var _a = React__default["default"].useState(null), data = _a[0], setData = _a[1];
|