@kmkf-fe-packages/basic-components 2.2.13-beta.3 → 2.2.13-beta.6
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 +396 -321
- package/dist/index.js +396 -321
- package/dist/src/bs/component/model/WorkOrderList/SearchFormForWorkOrder/FilterSelectOption/Rate/index.d.ts +2 -1
- package/dist/src/bs/component/model/WorkOrderList/SearchFormForWorkOrder/SearchHeader/index.d.ts +2 -1
- package/package.json +3 -3
|
@@ -4,6 +4,7 @@ type RateProps = {
|
|
|
4
4
|
onChange: (v: (number | null)[]) => void;
|
|
5
5
|
placeholder: string[];
|
|
6
6
|
prefix: string;
|
|
7
|
+
onSubmit: () => void;
|
|
7
8
|
};
|
|
8
|
-
declare const Rate: ({ value, onChange, placeholder, prefix }: RateProps) => React.JSX.Element;
|
|
9
|
+
declare const Rate: ({ value, onChange, placeholder, prefix, onSubmit }: RateProps) => React.JSX.Element;
|
|
9
10
|
export default Rate;
|
package/dist/src/bs/component/model/WorkOrderList/SearchFormForWorkOrder/SearchHeader/index.d.ts
CHANGED
|
@@ -12,6 +12,7 @@ type SearchHeaderPropsType = {
|
|
|
12
12
|
value: string;
|
|
13
13
|
}[];
|
|
14
14
|
ShopList: React.JSX.Element;
|
|
15
|
+
onSubmit: () => void;
|
|
15
16
|
};
|
|
16
|
-
declare const SearchHeader: ({ allFields, children, status, layout, isShowTime, timeOptions, ShopList, }: PropsWithChildren<SearchHeaderPropsType>) => React.JSX.Element;
|
|
17
|
+
declare const SearchHeader: ({ allFields, children, status, layout, isShowTime, timeOptions, ShopList, onSubmit, }: PropsWithChildren<SearchHeaderPropsType>) => React.JSX.Element;
|
|
17
18
|
export default SearchHeader;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kmkf-fe-packages/basic-components",
|
|
3
|
-
"version": "2.2.13-beta.
|
|
3
|
+
"version": "2.2.13-beta.6",
|
|
4
4
|
"description": "> TODO: description",
|
|
5
5
|
"homepage": "",
|
|
6
6
|
"license": "ISC",
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
"watch": "nodemon --ignore dist/ --ignore node_modules/ --watch src/ -C -e ts,tsx,less --debug -x 'yarn async'"
|
|
21
21
|
},
|
|
22
22
|
"dependencies": {
|
|
23
|
-
"@kmkf-fe-packages/kmkf-utils": "2.2.13-beta.
|
|
23
|
+
"@kmkf-fe-packages/kmkf-utils": "2.2.13-beta.6",
|
|
24
24
|
"ahooks": "^3.7.4",
|
|
25
25
|
"ali-react-table": "2.6.1",
|
|
26
26
|
"bignumber.js": "^9.1.2",
|
|
@@ -66,5 +66,5 @@
|
|
|
66
66
|
"publishConfig": {
|
|
67
67
|
"access": "public"
|
|
68
68
|
},
|
|
69
|
-
"gitHead": "
|
|
69
|
+
"gitHead": "17742e4a90c4caf727a2be046397407cec1a8952"
|
|
70
70
|
}
|