bhd-components 0.11.3 → 0.11.5
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/dist/index.esm.es5.development.js +3 -3
- package/dist/index.esm.es5.production.js +1 -1
- package/dist/vendor.esm.es5.development.js +1 -1
- package/dist/vendor.esm.es5.production.js +1 -1
- package/es2017/AIMessageList/components/footer/index.js +1 -1
- package/es2017/bhdModalCropper/index.js +2 -2
- package/esm/AIMessageList/components/footer/index.js +1 -1
- package/esm/bhdModalCropper/index.js +2 -2
- package/package.json +1 -1
|
@@ -13593,13 +13593,13 @@ var BhdModalCropper = /*#__PURE__*/ forwardRef(function(props, ref) {
|
|
|
13593
13593
|
children: [
|
|
13594
13594
|
/*#__PURE__*/ jsx("span", {
|
|
13595
13595
|
onClick: function() {
|
|
13596
|
-
return
|
|
13596
|
+
return shrink();
|
|
13597
13597
|
},
|
|
13598
13598
|
children: /*#__PURE__*/ jsx(MinusOutlined, {})
|
|
13599
13599
|
}),
|
|
13600
13600
|
/*#__PURE__*/ jsx("span", {
|
|
13601
13601
|
onClick: function() {
|
|
13602
|
-
return
|
|
13602
|
+
return enlarge();
|
|
13603
13603
|
},
|
|
13604
13604
|
children: /*#__PURE__*/ jsx(PlusOutlined, {})
|
|
13605
13605
|
})
|
|
@@ -16282,7 +16282,7 @@ var Footer = /*#__PURE__*/ forwardRef(function(props, ref) {
|
|
|
16282
16282
|
if (handleRenderMsgTimer.current) return;
|
|
16283
16283
|
var processMessages = function() {
|
|
16284
16284
|
var list = waitMesssageListRef.current.slice(0, speed);
|
|
16285
|
-
waitMesssageListRef.current = waitMesssageListRef.current.slice(
|
|
16285
|
+
waitMesssageListRef.current = waitMesssageListRef.current.slice(speed);
|
|
16286
16286
|
list.forEach(function(item) {
|
|
16287
16287
|
var ev = item.ev, msgCallback = item.msgCallback;
|
|
16288
16288
|
msgCallback(ev);
|