@lemon-fe/components 1.4.17-alpha.3 → 1.4.17-alpha.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/es/data-grid/index.d.ts +1 -1
- package/es/data-grid/index.js +1 -1
- package/es/popup/index.js +1 -1
- package/package.json +2 -2
package/es/data-grid/index.d.ts
CHANGED
|
@@ -17,7 +17,7 @@ declare const Editors: {
|
|
|
17
17
|
Text: React.ForwardRefExoticComponent<import("ag-grid-community").ICellEditorParams<any, any, any> & import("..").TextEditorParams<any> & React.RefAttributes<import("ag-grid-react").ICellEditorReactComp>>;
|
|
18
18
|
Date: React.ForwardRefExoticComponent<import("ag-grid-community").ICellEditorParams<any, any, any> & import("..").DateEditorParams<any> & React.RefAttributes<import("ag-grid-react").ICellEditorReactComp>>;
|
|
19
19
|
Number: React.ForwardRefExoticComponent<import("ag-grid-community").ICellEditorParams<any, any, any> & import("..").NumberEditorParams<any> & React.RefAttributes<import("ag-grid-react").ICellEditorReactComp>>;
|
|
20
|
-
Select: React.ForwardRefExoticComponent<import("ag-grid-community").ICellEditorParams<any, any, any> & Pick<import("antd").SelectProps<any, import("antd/lib/select").BaseOptionType>, "disabled" | "
|
|
20
|
+
Select: React.ForwardRefExoticComponent<import("ag-grid-community").ICellEditorParams<any, any, any> & Pick<import("antd").SelectProps<any, import("antd/lib/select").BaseOptionType>, "disabled" | "mode" | "virtual" | "allowClear" | "showSearch" | "optionFilterProp" | "options" | "listHeight"> & {
|
|
21
21
|
fieldNames?: {
|
|
22
22
|
label: string;
|
|
23
23
|
value: string;
|
package/es/data-grid/index.js
CHANGED
|
@@ -734,7 +734,7 @@ var InternalDataGrid = /*#__PURE__*/function (_Component) {
|
|
|
734
734
|
});
|
|
735
735
|
}
|
|
736
736
|
}
|
|
737
|
-
if ((rowSelection === null || rowSelection === void 0 ? void 0 : rowSelection.selectedRowKeys
|
|
737
|
+
if (!shallowEqual(rowSelection === null || rowSelection === void 0 ? void 0 : rowSelection.selectedRowKeys, (_prevProps$rowSelecti = prevProps.rowSelection) === null || _prevProps$rowSelecti === void 0 ? void 0 : _prevProps$rowSelecti.selectedRowKeys)) {
|
|
738
738
|
this.syncSelection();
|
|
739
739
|
}
|
|
740
740
|
if (dataSource !== prevProps.dataSource) {
|
package/es/popup/index.js
CHANGED
|
@@ -205,7 +205,7 @@ function Popup(props) {
|
|
|
205
205
|
centered: true,
|
|
206
206
|
onCancel: handleCancel,
|
|
207
207
|
afterClose: handleAfterClose,
|
|
208
|
-
enableFullscreen: restProps.width
|
|
208
|
+
enableFullscreen: restProps.width === undefined,
|
|
209
209
|
onOk: function onOk() {
|
|
210
210
|
return handleOk();
|
|
211
211
|
},
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lemon-fe/components",
|
|
3
|
-
"version": "1.4.17-alpha.
|
|
3
|
+
"version": "1.4.17-alpha.5",
|
|
4
4
|
"description": "> TODO: description",
|
|
5
5
|
"homepage": "",
|
|
6
6
|
"license": "MIT",
|
|
@@ -58,5 +58,5 @@
|
|
|
58
58
|
"publishConfig": {
|
|
59
59
|
"registry": "https://registry.npmjs.org"
|
|
60
60
|
},
|
|
61
|
-
"gitHead": "
|
|
61
|
+
"gitHead": "a7876727820b6ae84c2d4acfd4a465dbcb268851"
|
|
62
62
|
}
|