@next-core/brick-kit 2.120.0 → 2.120.1
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/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,19 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [2.120.1](https://github.com/easyops-cn/next-core/compare/@next-core/brick-kit@2.120.0...@next-core/brick-kit@2.120.1) (2022-05-27)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* theme dark ([8ff6958](https://github.com/easyops-cn/next-core/commit/8ff6958e134c199e58ec4e026003839dcbc5ea57))
|
|
12
|
+
* 兼容message事件传多个参数的情况 ([fbde026](https://github.com/easyops-cn/next-core/commit/fbde026b51f8bd2d4a83b3c2ac3ac93bf6515179))
|
|
13
|
+
* 支持message.*传任意多个参数 ([abbfaeb](https://github.com/easyops-cn/next-core/commit/abbfaeb4752b408005a82e6a6cf57505b9d3aeb8))
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
|
|
6
19
|
# [2.120.0](https://github.com/easyops-cn/next-core/compare/@next-core/brick-kit@2.119.1...@next-core/brick-kit@2.120.0) (2022-05-26)
|
|
7
20
|
|
|
8
21
|
|
package/dist/index.bundle.js
CHANGED
|
@@ -6667,7 +6667,14 @@
|
|
|
6667
6667
|
return;
|
|
6668
6668
|
}
|
|
6669
6669
|
|
|
6670
|
-
|
|
6670
|
+
var processArg = argsFactory(args, context, event);
|
|
6671
|
+
var contentNode = /*#__PURE__*/React__default["default"].createElement("span", null, "".concat(processArg[0]));
|
|
6672
|
+
var argProp = {
|
|
6673
|
+
content: contentNode,
|
|
6674
|
+
className: "ant-message-notice-".concat(method)
|
|
6675
|
+
};
|
|
6676
|
+
processArg[0] = argProp;
|
|
6677
|
+
antd.message[method](...processArg);
|
|
6671
6678
|
};
|
|
6672
6679
|
}
|
|
6673
6680
|
|