@lemon-fe/components 1.4.7-alpha.1 → 1.4.8
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/filter/index.js +1 -2
- 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("./typings").TextEditorParams<any> & React.RefAttributes<import("ag-grid-react").ICellEditorReactComp>>;
|
|
18
18
|
Date: React.ForwardRefExoticComponent<import("ag-grid-community").ICellEditorParams<any, any, any> & import("./typings").DateEditorParams<any> & React.RefAttributes<import("ag-grid-react").ICellEditorReactComp>>;
|
|
19
19
|
Number: React.ForwardRefExoticComponent<import("ag-grid-community").ICellEditorParams<any, any, any> & import("./typings").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" | "allowClear" | "mode" | "showSearch" | "optionFilterProp" | "options" | "virtual" | "listHeight"> & {
|
|
21
21
|
fieldNames?: {
|
|
22
22
|
label: string;
|
|
23
23
|
value: string;
|
package/es/filter/index.js
CHANGED
|
@@ -81,7 +81,6 @@ var getStorageData = function getData(storageKey) {
|
|
|
81
81
|
return null;
|
|
82
82
|
};
|
|
83
83
|
var setStorageData = function setData(storageKey, data, action) {
|
|
84
|
-
console.log(action);
|
|
85
84
|
localStorage.setItem("filter-storage-".concat(storageKey), JSON.stringify(data));
|
|
86
85
|
};
|
|
87
86
|
var DEFAULT_TAB_ALIAS = '$$default';
|
|
@@ -499,7 +498,7 @@ function Filter(originalProps) {
|
|
|
499
498
|
};
|
|
500
499
|
var handleSubmit = useDebounce(function (val) {
|
|
501
500
|
return handleFinish(val, 'submit');
|
|
502
|
-
},
|
|
501
|
+
}, 666, {
|
|
503
502
|
leading: true,
|
|
504
503
|
trailing: false
|
|
505
504
|
});
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lemon-fe/components",
|
|
3
|
-
"version": "1.4.
|
|
3
|
+
"version": "1.4.8",
|
|
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": "5efd8dc6fe627450229c376bea96040c882ac430"
|
|
62
62
|
}
|