@kmkf-fe-packages/basic-components 2.2.13-rc.1 → 2.2.13

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.
@@ -26,8 +26,8 @@ type SubFormProps = {
26
26
  tableHeader: subConfigType[];
27
27
  disabled: boolean;
28
28
  platform: string;
29
- maxCount?: number;
30
29
  manual?: boolean;
30
+ maxCount?: number;
31
31
  };
32
32
  declare const SubForm: (props: SubFormProps) => React.JSX.Element;
33
33
  export default SubForm;
@@ -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;
@@ -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;
@@ -3,6 +3,5 @@ export { default as getWlnColumns } from './wln';
3
3
  export { default as getGyColumns } from './gy';
4
4
  export { default as getWdtColumns } from './wdt';
5
5
  export { default as getKmColumns } from './km';
6
- export { default as getJyColumns } from './jy';
7
6
  export { default as getSkxColumns } from './skx';
8
7
  export { default as orderSubFormConstants } from './orderSubForm';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kmkf-fe-packages/basic-components",
3
- "version": "2.2.13-rc.1",
3
+ "version": "2.2.13",
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-rc.1",
23
+ "@kmkf-fe-packages/kmkf-utils": "2.2.13",
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": "3228d67043fa6985210250b064a0011220ad4a40"
69
+ "gitHead": "bda3806f7d08d735feda0badfc8e8235f1883ac1"
70
70
  }
@@ -1,21 +0,0 @@
1
- import React from 'react';
2
- declare const _default: ({
3
- dataIndex: string;
4
- title: string;
5
- width: number;
6
- ellipsis: boolean;
7
- render?: undefined;
8
- } | {
9
- dataIndex: string;
10
- title: string;
11
- width: number;
12
- render: (picUrl: string) => React.JSX.Element;
13
- ellipsis?: undefined;
14
- } | {
15
- dataIndex: string;
16
- title: string;
17
- ellipsis: boolean;
18
- width: number;
19
- render: (val: boolean) => React.JSX.Element;
20
- })[];
21
- export default _default;
@@ -1,31 +0,0 @@
1
- import React from 'react';
2
- export declare namespace JyGoods {
3
- interface GoodsInfo {
4
- companyKey: string;
5
- id: number;
6
- platform: 'JY_ERP';
7
- productCode: string;
8
- productName: string;
9
- imageUrl: string;
10
- productShortName: string;
11
- productGroupName: string;
12
- productType: string;
13
- brandName: string;
14
- skuName: string;
15
- skuCode: string;
16
- barcode: string;
17
- skuImage: string;
18
- color: string;
19
- size: string;
20
- markedPrice: string;
21
- sellingPrice: string;
22
- costPrice: string;
23
- gift: number;
24
- combination: number;
25
- }
26
- interface SelectDrawerRefObject {
27
- getSelectGoodList: () => JyGoods.GoodsInfo[];
28
- }
29
- }
30
- declare const _default: React.ForwardRefExoticComponent<Omit<any, "ref"> & React.RefAttributes<JyGoods.SelectDrawerRefObject>>;
31
- export default _default;
@@ -1,5 +0,0 @@
1
- import React from 'react';
2
- import type { JyGoods } from './GoodsList';
3
- import type { ErpGoodModelProps } from '../type';
4
- declare const _default: React.ForwardRefExoticComponent<ErpGoodModelProps<JyGoods.GoodsInfo[]> & React.RefAttributes<unknown>>;
5
- export default _default;
@@ -1,3 +0,0 @@
1
- import { GetColumnsBaseInfoMapFnType } from './columnsBaseInfoMap';
2
- declare const getColumns: GetColumnsBaseInfoMapFnType;
3
- export default getColumns;
@@ -1,3 +0,0 @@
1
- export declare const jyUtils: {
2
- getJyOrderListSingleton: (orderNo: string) => Promise<any>;
3
- };