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

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.
Files changed (28) hide show
  1. package/dist/index.esm.js +6705 -2688
  2. package/dist/index.js +6710 -2687
  3. package/dist/src/apaas/OrderSubForm/components/customizeUpload.d.ts +15 -0
  4. package/dist/src/apaas/OrderSubForm/index.d.ts +27 -0
  5. package/dist/src/apaas/OrderSubForm/utils.d.ts +22 -0
  6. package/dist/src/apaas/SubForm/index.d.ts +2 -0
  7. package/dist/src/apaas/SubForm/render.d.ts +22 -0
  8. package/dist/src/apaas/SubForm/transformWorkOrderData.d.ts +15 -0
  9. package/dist/src/bs/component/GoodItem/constants/index.d.ts +2 -1
  10. package/dist/src/bs/component/GoodItem/index.d.ts +23 -1
  11. package/dist/src/bs/component/model/BsE3GoodsModal.d.ts +2 -10
  12. package/dist/src/bs/component/model/GyGoodsModal.d.ts +2 -10
  13. package/dist/src/bs/component/model/WdtGoodsModal.d.ts +2 -10
  14. package/dist/src/bs/component/model/WorkOrderList/SearchFormForWorkOrder/FilterSelectOption/Rate/index.d.ts +9 -0
  15. package/dist/src/bs/component/model/WorkOrderList/SearchFormForWorkOrder/FilterSelectOption/TrimInput/index.d.ts +3 -0
  16. package/dist/src/bs/component/model/WorkOrderList/SearchFormForWorkOrder/FilterSelectOption/index.d.ts +3 -0
  17. package/dist/src/bs/component/model/WorkOrderList/SearchFormForWorkOrder/SearchHeader/index.d.ts +17 -0
  18. package/dist/src/bs/component/model/WorkOrderList/SearchFormForWorkOrder/index.d.ts +10 -0
  19. package/dist/src/bs/component/model/WorkOrderList/index.d.ts +6 -0
  20. package/dist/src/bs/component/model/type.d.ts +45 -1
  21. package/dist/src/common/HighPerformanceTable/index.d.ts +16 -0
  22. package/dist/src/common/HighPerformanceTable/multiSelect.d.ts +31 -0
  23. package/dist/src/constants/index.d.ts +1 -0
  24. package/dist/src/constants/orderSubForm.d.ts +62 -0
  25. package/dist/src/index.d.ts +3 -2
  26. package/dist/src/jst/Goods/index.d.ts +1 -0
  27. package/package.json +4 -3
  28. package/dist/src/skx/common/index.d.ts +0 -6
@@ -0,0 +1,15 @@
1
+ import React from 'react';
2
+ export interface CustomizeUploadProps {
3
+ value?: string;
4
+ onChange?: (value: string) => void;
5
+ disabled?: boolean;
6
+ maxCount?: number;
7
+ maxSize?: number;
8
+ uniqueKey?: string;
9
+ hostUrl?: string;
10
+ actionUrl?: string;
11
+ platform?: string;
12
+ placeholder?: string;
13
+ }
14
+ declare const CustomizeUpload: React.FC<CustomizeUploadProps>;
15
+ export default CustomizeUpload;
@@ -0,0 +1,27 @@
1
+ import React from 'react';
2
+ import { ComponentInterface } from '@kmkf-fe-packages/services-components/src/type';
3
+ type subConfigType = {
4
+ name: string;
5
+ key: string;
6
+ workOrderComponentType: string;
7
+ isShow: boolean;
8
+ isEdit: boolean;
9
+ isRequired: boolean;
10
+ width: number;
11
+ [key: string]: any;
12
+ settingName?: string;
13
+ };
14
+ type SubFormProps = {
15
+ value: any;
16
+ onChange: (val: any) => void;
17
+ tableHeader: subConfigType[];
18
+ subConfig: {
19
+ correlationList: subConfigType[];
20
+ };
21
+ disabled: boolean;
22
+ manual?: boolean;
23
+ maxCount?: number;
24
+ effects: ComponentInterface['effects'];
25
+ };
26
+ declare const OrderSubForm: (props: SubFormProps) => React.JSX.Element;
27
+ export default OrderSubForm;
@@ -0,0 +1,22 @@
1
+ import { ChildItemType } from '../../constants/orderSubForm';
2
+ import React from 'react';
3
+ type Parmas = {
4
+ orderNo: string;
5
+ shopId: string;
6
+ };
7
+ declare const _default: {
8
+ getOrderListSingleton: (parmas: Parmas) => Promise<any>;
9
+ renderEditItem: ({ item, val, disabled, index, type, updateHandle, }: {
10
+ item: ChildItemType;
11
+ val: any;
12
+ disabled: boolean;
13
+ index: number;
14
+ type: string;
15
+ updateHandle: (val: any, index: number, type: string) => void;
16
+ }) => React.ReactNode;
17
+ renderDetailItem: ({ item, val }: {
18
+ item: ChildItemType;
19
+ val: any;
20
+ }) => React.ReactNode;
21
+ };
22
+ export default _default;
@@ -1,4 +1,5 @@
1
1
  import React from 'react';
2
+ import { renderMap } from './render';
2
3
  type subConfigType = {
3
4
  name: string;
4
5
  key: string;
@@ -30,3 +31,4 @@ type SubFormProps = {
30
31
  };
31
32
  declare const SubForm: (props: SubFormProps) => React.JSX.Element;
32
33
  export default SubForm;
34
+ export { renderMap };
@@ -0,0 +1,22 @@
1
+ import React from 'react';
2
+ declare const hostUrl = "https://kefu.kuaimai.com";
3
+ export declare const FileRender: ({ fileList, canDownload, id }: any) => React.JSX.Element;
4
+ export declare const PictureRender: ({ value, width, }: {
5
+ value: any;
6
+ hostUrl?: string | undefined;
7
+ width?: number | undefined;
8
+ }) => React.JSX.Element;
9
+ export declare const RadioRender: ({ value }: {
10
+ value: any;
11
+ }) => React.JSX.Element;
12
+ export declare const CheckboxRender: ({ value }: {
13
+ value: any;
14
+ }) => any;
15
+ export declare const MultipleSelectRender: ({ value }: {
16
+ value: any;
17
+ }) => any;
18
+ export declare const renderMap: Record<string, (props: any, platform?: string) => React.ReactNode>;
19
+ export declare const EditPictureRender: ({ val, index, t, updateHandle, disabled, hostUrl, platform, }: any) => React.JSX.Element;
20
+ export declare const EditFileRender: ({ val, index, t, updateHandle, disabled, hostUrl, platform, }: any) => React.JSX.Element;
21
+ export declare const EditRenderMap: Record<string, (props: any) => React.ReactNode>;
22
+ export {};
@@ -0,0 +1,15 @@
1
+ export declare const updateWorkTypeKeys: any;
2
+ export declare const systemOrderMap: any;
3
+ export declare const processSingleFieldTypeMapping: {
4
+ SKX_OUTBOUND_NOTICE_NO: string;
5
+ SKX_SHOP_NAME: string;
6
+ SKX_WAREHOUSE: string;
7
+ SKX_ORDER_TYPE: string;
8
+ SKX_ORDER_STATUS: string;
9
+ SKX_CREATE_TIME: string;
10
+ };
11
+ export declare const jsonParseSecurity: (value: string, securityValue: any) => any;
12
+ export declare const transTextToNumber: (value: string | number) => string | number;
13
+ export declare const formatPictures: (pictures: any) => any;
14
+ declare const transformWorkOrderData: (templateColumns: any[], type?: string) => (item: any) => any;
15
+ export default transformWorkOrderData;
@@ -1,5 +1,6 @@
1
- export declare const processGoods: ({ list, type, canUpdateNumber, }: {
1
+ export declare const processGoods: ({ list, type, canUpdateNumber, source, }: {
2
2
  list: any[];
3
3
  type: string;
4
4
  canUpdateNumber: boolean;
5
+ source?: "erp" | "workOrder" | undefined;
5
6
  }) => any[];
@@ -1,4 +1,5 @@
1
1
  import React from 'react';
2
+ import type { GoodsSourceFormatType, GoodsSourceType } from '../model/type';
2
3
  import { FormInstance } from 'antd/es/form';
3
4
  interface BsGoodsProps {
4
5
  form: FormInstance;
@@ -30,6 +31,8 @@ interface BsGoodsProps {
30
31
  onSelect: (val: any[]) => void;
31
32
  onDelete: (val: any[]) => void;
32
33
  onModeChange: (val: boolean) => void;
34
+ goodsSource?: GoodsSourceType;
35
+ useGoodsSourceFormat: (goodsSource?: GoodsSourceType) => GoodsSourceFormatType;
33
36
  tradeGoods?: {
34
37
  uniqueKey?: string;
35
38
  originDataSource: Array<any>;
@@ -39,5 +42,24 @@ interface BsGoodsProps {
39
42
  systemOrders?: any[];
40
43
  selectedSystemOrders?: any[];
41
44
  }
42
- declare const GoodItem: (props: Partial<BsGoodsProps>) => React.JSX.Element;
45
+ type MakeRequired<T, K extends keyof T> = {
46
+ [P in K]-?: T[P];
47
+ } & {
48
+ [P in Exclude<keyof T, K>]: T[P];
49
+ };
50
+ type SelectTradeGoodsProps = {
51
+ columns: Array<any>;
52
+ dataSource: Array<any>;
53
+ getDataSourceAsync?: () => Promise<any>;
54
+ uniqueKey?: string;
55
+ selectedRowKeys: Array<React.Key>;
56
+ onChangeSelectedKeys: (p: React.Key[]) => void;
57
+ isGoods?: boolean;
58
+ systemOrders?: any[];
59
+ selectedSystemOrders?: any[];
60
+ type?: string;
61
+ width?: number;
62
+ };
63
+ export declare const SelectTradeGoods: ({ columns, dataSource, getDataSourceAsync, selectedRowKeys, onChangeSelectedKeys, uniqueKey, isGoods, systemOrders, selectedSystemOrders, type, width, }: SelectTradeGoodsProps) => React.JSX.Element;
64
+ declare const GoodItem: (props: MakeRequired<Partial<BsGoodsProps>, 'useGoodsSourceFormat'>) => React.JSX.Element;
43
65
  export default GoodItem;
@@ -1,12 +1,4 @@
1
1
  import React from 'react';
2
- interface GoodModelProps {
3
- shopId: number | string;
4
- maxLength: number;
5
- shopList: any[];
6
- width?: string | number;
7
- shopCode?: string;
8
- companyKey: string;
9
- onSubmit: (...args: any[]) => any;
10
- }
11
- declare const _default: React.ForwardRefExoticComponent<GoodModelProps & React.RefAttributes<unknown>>;
2
+ import type { ErpGoodModelProps } from './type';
3
+ declare const _default: React.ForwardRefExoticComponent<ErpGoodModelProps<any[]> & React.RefAttributes<unknown>>;
12
4
  export default _default;
@@ -1,12 +1,4 @@
1
1
  import React from 'react';
2
- interface GoodModelProps {
3
- shopId: number | string;
4
- maxLength: number;
5
- shopList: any[];
6
- width?: string | number;
7
- shopCode?: string;
8
- companyKey: string;
9
- onSubmit: (...args: any[]) => any;
10
- }
11
- declare const _default: React.ForwardRefExoticComponent<GoodModelProps & React.RefAttributes<unknown>>;
2
+ import type { ErpGoodModelProps } from './type';
3
+ declare const _default: React.ForwardRefExoticComponent<ErpGoodModelProps<any[]> & React.RefAttributes<unknown>>;
12
4
  export default _default;
@@ -1,12 +1,4 @@
1
1
  import React from 'react';
2
- interface GoodModelProps {
3
- shopId: number | string;
4
- maxLength: number;
5
- shopList: any[];
6
- width?: string | number;
7
- shopCode?: string;
8
- companyKey: string;
9
- onSubmit: (...args: any[]) => any;
10
- }
11
- declare const _default: React.ForwardRefExoticComponent<GoodModelProps & React.RefAttributes<unknown>>;
2
+ import type { ErpGoodModelProps } from './type';
3
+ declare const _default: React.ForwardRefExoticComponent<ErpGoodModelProps<any[]> & React.RefAttributes<unknown>>;
12
4
  export default _default;
@@ -0,0 +1,9 @@
1
+ import React from 'react';
2
+ type RateProps = {
3
+ value: (number | null)[];
4
+ onChange: (v: (number | null)[]) => void;
5
+ placeholder: string[];
6
+ prefix: string;
7
+ };
8
+ declare const Rate: ({ value, onChange, placeholder, prefix }: RateProps) => React.JSX.Element;
9
+ export default Rate;
@@ -0,0 +1,3 @@
1
+ import React from 'react';
2
+ declare const TrimInput: (props: any) => React.JSX.Element;
3
+ export default TrimInput;
@@ -0,0 +1,3 @@
1
+ import React from 'react';
2
+ declare const FilterSelectOption: (props: any) => React.JSX.Element | null;
3
+ export default FilterSelectOption;
@@ -0,0 +1,17 @@
1
+ import React from 'react';
2
+ import { PropsWithChildren } from 'react';
3
+ import './index.less';
4
+ type SearchHeaderPropsType = {
5
+ fixedFields: string[];
6
+ allFields: any[];
7
+ status: boolean;
8
+ layout?: 'inner' | 'block';
9
+ isShowTime?: boolean;
10
+ timeOptions?: {
11
+ label: string;
12
+ value: string;
13
+ }[];
14
+ ShopList: React.JSX.Element;
15
+ };
16
+ declare const SearchHeader: ({ allFields, children, status, layout, isShowTime, timeOptions, ShopList, }: PropsWithChildren<SearchHeaderPropsType>) => React.JSX.Element;
17
+ export default SearchHeader;
@@ -0,0 +1,10 @@
1
+ import React from 'react';
2
+ import type { FormInstance } from 'antd';
3
+ declare const SearchForm: (props: {
4
+ filterItems?: any[];
5
+ form: FormInstance;
6
+ ShopList: React.JSX.Element;
7
+ submit: () => void;
8
+ reset: () => void;
9
+ }) => React.JSX.Element;
10
+ export default SearchForm;
@@ -0,0 +1,6 @@
1
+ import React from 'react';
2
+ interface SelectDrawerRefObject {
3
+ getSelectGoodList: () => any[];
4
+ }
5
+ declare const _default: React.ForwardRefExoticComponent<Omit<any, "ref"> & React.RefAttributes<SelectDrawerRefObject>>;
6
+ export default _default;
@@ -1,9 +1,53 @@
1
- export interface ErpGoodModelProps<T> {
1
+ /// <reference types="react" />
2
+ export type GoodsSourceFormatType = {
3
+ filterItems?: any[];
4
+ flowNodeId: string;
5
+ templateKey: string;
6
+ flowTemplateKey: string;
7
+ ShopList: React.JSX.Element;
8
+ tableColumns: any[];
9
+ workOrderDataToGoods: (data: Record<string, any>, erp: string) => Record<string, any>;
10
+ queryComponentsConfig: {
11
+ filterType: 'some' | 'every';
12
+ preQueryComponents: {
13
+ key: string;
14
+ symbol: string;
15
+ value?: any;
16
+ }[];
17
+ };
18
+ };
19
+ export type GoodsSourceType = {
20
+ source?: 'workOrder' | 'erp';
21
+ sourceSettings?: {
22
+ filterMode?: 'some' | 'every';
23
+ filterRules?: {
24
+ leftValue: string;
25
+ compareSymbol: any;
26
+ rightValue?: any;
27
+ }[];
28
+ dataFilterConfig: {
29
+ [cpId: string]: {
30
+ isFilter?: boolean;
31
+ isShow?: boolean;
32
+ };
33
+ };
34
+ keyMap: {
35
+ [key: string]: string;
36
+ };
37
+ workOrder: {
38
+ flowTemplateKey: string;
39
+ nodeId: string;
40
+ };
41
+ };
42
+ };
43
+ export interface ErpGoodModelProps<T = any[]> {
2
44
  shopId: number | string;
3
45
  maxLength: number;
4
46
  shopList: any[];
5
47
  width?: string | number;
6
48
  shopCode?: string;
7
49
  companyKey: string;
50
+ useGoodsSourceFormat: (goodsSource?: GoodsSourceType) => GoodsSourceFormatType;
51
+ goodsSource?: GoodsSourceType;
8
52
  onSubmit: (goodsList: T) => any;
9
53
  }
@@ -0,0 +1,16 @@
1
+ import React from 'react';
2
+ import './index.less';
3
+ interface HighPerformanceTableProps {
4
+ disabledIds?: string[];
5
+ selectedKeys?: string[];
6
+ useSelectCol?: boolean;
7
+ handleChangeSelectedKeys?: (keys: string[]) => void;
8
+ dataSource: any[];
9
+ columns: any[];
10
+ height: number;
11
+ loading: boolean;
12
+ className?: string;
13
+ onRow?: (record: any, rowIndex: number) => void;
14
+ }
15
+ declare const HighPerformanceTable: ({ disabledIds, useSelectCol, selectedKeys, handleChangeSelectedKeys, dataSource, columns, height, loading, className, onRow, }: HighPerformanceTableProps) => React.JSX.Element;
16
+ export default HighPerformanceTable;
@@ -0,0 +1,31 @@
1
+ import { ArtColumnStaticPart, TablePipeline } from 'ali-react-table';
2
+ export declare function always<T>(value: T): (...args: any[]) => T;
3
+ export declare const arrayUtils: {
4
+ readonly diff: (arr1: string[], arr2: Iterable<string>) => string[];
5
+ readonly merge: (arr1: string[], arr2: string[]) => string[];
6
+ };
7
+ export interface MultiSelectFeatureOptions {
8
+ /** 非受控用法:默认选中的值 */
9
+ defaultValue?: string[];
10
+ /** 非受控用法:默认 lastKey */
11
+ defaultLastKey?: string;
12
+ /** 受控用法:当前选中的 keys */
13
+ value?: string[];
14
+ /** 受控用法:上一次操作对应的 rowKey */
15
+ lastKey?: string;
16
+ /** 受控用法:状态改变回调 */
17
+ onChange?: (nextValue: string[], key: string, keys: string[], action: 'check' | 'uncheck' | 'check-all' | 'uncheck-all') => void;
18
+ /** 复选框所在列的位置 */
19
+ checkboxPlacement?: 'start' | 'end';
20
+ /** 复选框所在列的 column 配置,可指定 width,lock, title, align, features 等属性 */
21
+ checkboxColumn?: Partial<ArtColumnStaticPart>;
22
+ /** 是否高亮被选中的行 */
23
+ highlightRowWhenSelected?: boolean;
24
+ /** 判断一行中的 checkbox 是否要禁用 */
25
+ isDisabled?(row: any, rowIndex: number): boolean;
26
+ /** 点击事件的响应区域 */
27
+ clickArea?: 'checkbox' | 'cell' | 'row';
28
+ /** 是否对触发 onChange 的 click 事件调用 event.stopPropagation() */
29
+ stopClickEventPropagation?: boolean;
30
+ }
31
+ export declare function multiSelect(opts?: MultiSelectFeatureOptions): (pipeline: TablePipeline) => TablePipeline;
@@ -4,3 +4,4 @@ export { default as getGyColumns } from './gy';
4
4
  export { default as getWdtColumns } from './wdt';
5
5
  export { default as getKmColumns } from './km';
6
6
  export { default as getSkxColumns } from './skx';
7
+ export { default as orderSubFormConstants } from './orderSubForm';
@@ -0,0 +1,62 @@
1
+ import React from 'react';
2
+ import { ExpressData } from '@kmkf-fe-packages/kmkf-utils';
3
+ export interface ChildItemType {
4
+ title: string;
5
+ dataIndex: string;
6
+ widget: string;
7
+ widgetProps?: Record<string, any>;
8
+ customizeComponent?: (config: any) => React.ReactNode;
9
+ [key: string]: any;
10
+ }
11
+ export declare const refundTypeMap: {
12
+ 0: string;
13
+ 1: string;
14
+ 2: string;
15
+ 3: string;
16
+ 4: string;
17
+ 5: string;
18
+ 9: string;
19
+ 10: string;
20
+ 11: string;
21
+ 12: string;
22
+ 13: string;
23
+ 14: string;
24
+ 15: string;
25
+ };
26
+ export declare const refundTypeOptions: {
27
+ label: string;
28
+ value: number;
29
+ }[];
30
+ export declare const onlineStatusMap: {
31
+ 1: string;
32
+ 2: string;
33
+ 3: string;
34
+ 4: string;
35
+ 5: string;
36
+ 6: string;
37
+ 7: string;
38
+ 8: string;
39
+ 9: string;
40
+ 10: string;
41
+ 11: string;
42
+ };
43
+ export declare const onlineStatusOptions: {
44
+ label: string;
45
+ value: number;
46
+ }[];
47
+ export declare const consignTypeMap: {
48
+ 1: string;
49
+ 0: string;
50
+ };
51
+ export declare const consignTypeOptions: {
52
+ label: string;
53
+ value: number;
54
+ }[];
55
+ type ParmasData = {
56
+ expressData: any[];
57
+ };
58
+ declare const _default: {
59
+ getSelectWidgetMap: (expressDateInstance: ExpressData) => Record<string, any>;
60
+ getOrderSubformColumns: (parmas?: ParmasData | undefined) => ChildItemType[];
61
+ };
62
+ export default _default;
@@ -17,7 +17,7 @@ export { default as ApaasAddress } from './apaas/ApaasAddress';
17
17
  export { default as ApaasPosting } from './apaas/ApaasPosting';
18
18
  export { default as ApaasLogistics } from './apaas/ApaasLogistics';
19
19
  export { default as ApaasHoc } from './apaas/hoc/withFormItem';
20
- export { default as SubForm } from './apaas/SubForm';
20
+ export { default as SubForm, renderMap } from './apaas/SubForm';
21
21
  export { default as CopyTextIcon } from './apaas/CopyTextIcon';
22
22
  export { default as BuyerNick } from './business/BuyerNick';
23
23
  export { default as TradeId } from './business/TradeId';
@@ -46,6 +46,7 @@ export { default as BsExchange } from './bs/Exchange';
46
46
  export { default as BsReissue } from './bs/Reissue';
47
47
  export { default as BsReturn } from './bs/Return';
48
48
  export { default as BsSystemOrder } from './bs/SystemOrder';
49
+ export { default as OrderSubForm } from './apaas/OrderSubForm';
49
50
  export { default as WlnGoods } from './wln/Goods';
50
51
  export { default as CommonGoods } from './common/CommonGoods';
51
52
  export { default as CommonReturnGoods } from './common/CommonReturnGoods';
@@ -68,8 +69,8 @@ export { default as GyReissue } from './gy/Reissue';
68
69
  export * from './constants/index';
69
70
  export { default as GyReturn } from './gy/Return';
70
71
  export { default as KmVideo } from './km/KmVideo';
72
+ export { default as OrderSubFormUtils } from './apaas/OrderSubForm/utils';
71
73
  export { default as SkxIdInputSelect } from './skx/IdInputSelect';
72
74
  export { default as SkxGoods } from './skx/Goods';
73
- export { skxUtils } from './skx/common';
74
75
  export { default as columnsBaseInfoMap, erpColumnsMap, erpFormValidator, } from './constants/columnsBaseInfoMap';
75
76
  export { default as erpModalColumnsMap } from './bs/component/model/Columns';
@@ -6,6 +6,7 @@ interface JstGoodsProps {
6
6
  options: any[];
7
7
  disabled: boolean;
8
8
  onChange: (val: any[]) => void;
9
+ onBlur?: (val: any) => void;
9
10
  showField: string;
10
11
  platformType?: string;
11
12
  onlyShowFieldSelect: boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kmkf-fe-packages/basic-components",
3
- "version": "2.3.0-rc.0",
3
+ "version": "2.3.0-rc.1",
4
4
  "description": "> TODO: description",
5
5
  "homepage": "",
6
6
  "license": "ISC",
@@ -20,8 +20,9 @@
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.3.0-rc.0",
23
+ "@kmkf-fe-packages/kmkf-utils": "2.3.0-rc.1",
24
24
  "ahooks": "^3.7.4",
25
+ "ali-react-table": "2.6.1",
25
26
  "bignumber.js": "^9.1.2",
26
27
  "kmkf-monitor": "^0.8.9",
27
28
  "lodash": "^4.17.21",
@@ -65,5 +66,5 @@
65
66
  "publishConfig": {
66
67
  "access": "public"
67
68
  },
68
- "gitHead": "b9e1cb4129ec1a4874fbd5db7bc9f6d026badd2c"
69
+ "gitHead": "cefb61a2220d807338d9e0741f6e4470dc775ddf"
69
70
  }
@@ -1,6 +0,0 @@
1
- export declare const skxUtils: {
2
- getAllGoods: (params: {
3
- tid?: string;
4
- onBillNo?: string;
5
- }, setLoading?: ((loading: boolean) => void) | undefined) => Promise<any>;
6
- };