@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/dist/index.esm.js
CHANGED
|
@@ -6668,7 +6668,14 @@ function builtinMessageListenerFactory(method, args, ifContainer, context) {
|
|
|
6668
6668
|
return;
|
|
6669
6669
|
}
|
|
6670
6670
|
|
|
6671
|
-
|
|
6671
|
+
var processArg = argsFactory(args, context, event);
|
|
6672
|
+
var contentNode = /*#__PURE__*/React.createElement("span", null, "".concat(processArg[0]));
|
|
6673
|
+
var argProp = {
|
|
6674
|
+
content: contentNode,
|
|
6675
|
+
className: "ant-message-notice-".concat(method)
|
|
6676
|
+
};
|
|
6677
|
+
processArg[0] = argProp;
|
|
6678
|
+
message[method](...processArg);
|
|
6672
6679
|
};
|
|
6673
6680
|
}
|
|
6674
6681
|
|