@ecoding/components.antd 0.1.20 → 0.1.22
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/lib/core/async-select/index.js +1 -1
- package/lib/core/modal/index.js +1 -1
- package/lib/index.d.ts +1 -1
- package/lib/index.js +1 -1
- package/package.json +2 -2
package/lib/core/modal/index.js
CHANGED
|
@@ -49,7 +49,7 @@ export class Modals extends React.Component {
|
|
|
49
49
|
}
|
|
50
50
|
render() {
|
|
51
51
|
// if (!this.props.visible) return null;
|
|
52
|
-
return (React.createElement(Modal, { className: this.props.className, open: this.state.open, bodyStyle: this.props.bodyStyle, width: this.props.width, zIndex: this.props.zIndex, mask: this.props.mask, title: typeof this.props.title === "string" ? (React.createElement("div", { style: {
|
|
52
|
+
return (React.createElement(Modal, { className: this.props.className, open: this.state.open, bodyStyle: this.props.bodyStyle, width: this.props.width, zIndex: this.props.zIndex, mask: this.props.mask, title: typeof this.props.title === "string" ? (React.createElement("div", { style: { boxShadow: "inset 0px -1px 0px #F0F0F0", marginBottom: "20px", paddingBottom: "12px" } }, this.props.title)) : (this.props.title), closable: this.props.closable, maskClosable: this.props.maskClosable, onCancel: this.cancel, destroyOnClose: true, keyboard: false, footer: this.props.footer === null ? null : this.props.footer ? (this.props.footer) : (React.createElement(React.Fragment, null,
|
|
53
53
|
this.props.addonBefore ? this.props.addonBefore : null,
|
|
54
54
|
React.createElement(Button, { key: "back", onClick: this.cancel }, this.props.cancelText),
|
|
55
55
|
React.createElement(Button, { key: "submit", type: this.props.okType, loading: this.state.loading, onClick: this.ok }, this.props.okText),
|
package/lib/index.d.ts
CHANGED
|
@@ -8,7 +8,7 @@ export { default as AsyncCascader } from "./core/async-cascader";
|
|
|
8
8
|
export { default as LengthInput } from "./core/length-input";
|
|
9
9
|
export { default as SingleImgUpload } from "./core/single-img-upload";
|
|
10
10
|
export { default as SingleFileUpload } from "./core/single-file-upload";
|
|
11
|
-
export { default as
|
|
11
|
+
export { default as AsyncSelect } from "./core/async-select";
|
|
12
12
|
export { default as AsyncTransfer } from "./core/async-transfer";
|
|
13
13
|
export { default as Quill } from "./core/quill";
|
|
14
14
|
export { default as http } from "./helpers/http";
|
package/lib/index.js
CHANGED
|
@@ -8,7 +8,7 @@ export { default as AsyncCascader } from "./core/async-cascader";
|
|
|
8
8
|
export { default as LengthInput } from "./core/length-input";
|
|
9
9
|
export { default as SingleImgUpload } from "./core/single-img-upload";
|
|
10
10
|
export { default as SingleFileUpload } from "./core/single-file-upload";
|
|
11
|
-
export { default as
|
|
11
|
+
export { default as AsyncSelect } from "./core/async-select";
|
|
12
12
|
export { default as AsyncTransfer } from "./core/async-transfer";
|
|
13
13
|
export { default as Quill } from "./core/quill";
|
|
14
14
|
export { default as http } from "./helpers/http";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ecoding/components.antd",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.22",
|
|
4
4
|
"author": "cxc",
|
|
5
5
|
"homepage": "",
|
|
6
6
|
"license": "MIT",
|
|
@@ -42,5 +42,5 @@
|
|
|
42
42
|
"dependencies": {
|
|
43
43
|
"react-quill": "^2.0.0"
|
|
44
44
|
},
|
|
45
|
-
"gitHead": "
|
|
45
|
+
"gitHead": "bafbbfdf3c3c4f571151dbcc75bccb52df348de4"
|
|
46
46
|
}
|