wargerm 0.7.34 → 0.7.35
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.js +3 -1
- package/dist/index.js +3 -1
- package/package.json +1 -1
package/dist/index.esm.js
CHANGED
@@ -6368,7 +6368,9 @@ var Modal = /*#__PURE__*/function (_React$PureComponent) {
|
|
6368
6368
|
}
|
6369
6369
|
}, renderClose ? renderClose : /*#__PURE__*/React.createElement(CloseCircleOutlined, null), showFullscreen && /*#__PURE__*/React.createElement("span", {
|
6370
6370
|
className: "mr5 cp fullscreenIcon ".concat(fullscreenClassName),
|
6371
|
-
onClick: function onClick() {
|
6371
|
+
onClick: function onClick(e) {
|
6372
|
+
e.stopPropagation();
|
6373
|
+
|
6372
6374
|
_this.setState({
|
6373
6375
|
isFullScreen: !_this.state.isFullScreen
|
6374
6376
|
});
|
package/dist/index.js
CHANGED
@@ -6412,7 +6412,9 @@ var Modal = /*#__PURE__*/function (_React$PureComponent) {
|
|
6412
6412
|
}
|
6413
6413
|
}, renderClose ? renderClose : /*#__PURE__*/React__default['default'].createElement(icons.CloseCircleOutlined, null), showFullscreen && /*#__PURE__*/React__default['default'].createElement("span", {
|
6414
6414
|
className: "mr5 cp fullscreenIcon ".concat(fullscreenClassName),
|
6415
|
-
onClick: function onClick() {
|
6415
|
+
onClick: function onClick(e) {
|
6416
|
+
e.stopPropagation();
|
6417
|
+
|
6416
6418
|
_this.setState({
|
6417
6419
|
isFullScreen: !_this.state.isFullScreen
|
6418
6420
|
});
|