@bit-sun/business-component 4.0.11-alpha.1 → 4.0.11-alpha.10

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 (31) hide show
  1. package/.umirc.ts +10 -6
  2. package/dist/components/Business/SearchSelect/BusinessUtils.d.ts +2 -1
  3. package/dist/components/Functional/SearchSelect/utils.d.ts +7 -0
  4. package/dist/index.esm.js +1590 -987
  5. package/dist/index.js +1589 -986
  6. package/package.json +1 -1
  7. package/src/assets/copyImg.svg +16 -0
  8. package/src/assets/zhankaitiaojian-icon.svg +18 -0
  9. package/src/components/Business/BsLayouts/index.tsx +17 -0
  10. package/src/components/Business/BsSulaQueryTable/index.tsx +17 -15
  11. package/src/components/Business/BsSulaQueryTable/utils.tsx +1 -1
  12. package/src/components/Business/DetailPageWrapper/index.less +1 -2
  13. package/src/components/Business/SearchSelect/BusinessUtils.tsx +774 -160
  14. package/src/components/Business/SearchSelect/index.md +180 -0
  15. package/src/components/Business/SearchSelect/index.tsx +2 -1
  16. package/src/components/Business/SearchSelect/utils.ts +4 -1
  17. package/src/components/Business/StateFlow/index.less +140 -124
  18. package/src/components/Business/StateFlow/index.tsx +3 -3
  19. package/src/components/Business/columnSettingTable/columnSetting.tsx +1 -1
  20. package/src/components/Business/columnSettingTable/index.tsx +3 -4
  21. package/src/components/Business/columnSettingTable/sulaSettingTable.tsx +3 -5
  22. package/src/components/Common/ParagraphCopier/index.tsx +2 -6
  23. package/src/components/Functional/QueryMutipleInput/index.less +51 -19
  24. package/src/components/Functional/QueryMutipleInput/index.tsx +26 -22
  25. package/src/components/Functional/SearchSelect/index.less +220 -74
  26. package/src/components/Functional/SearchSelect/index.tsx +264 -217
  27. package/src/components/Functional/SearchSelect/utils.ts +24 -0
  28. package/src/components/Solution/RuleComponent/index.js +4 -3
  29. package/src/components/Solution/RuleSetter/function.ts +2 -1
  30. package/src/styles/bsDefault.less +2 -13
  31. package/src/utils/TableUtils.tsx +1 -1
package/.umirc.ts CHANGED
@@ -54,27 +54,31 @@ export default defineConfig({
54
54
  // pathRewrite: { '^/wms-ops/': '/wms-ops/' }, // 开发环境
55
55
  },
56
56
  '/user/': {
57
- target: 'http://bitsun.cb21419868b8b483f9e04b769406afe73.cn-shanghai.alicontainer.com/', // 开发环境
57
+ target: 'http://bitsun.cc0b9108c833e4298b9db565441546718.cn-shanghai.alicontainer.com/', // 开发环境
58
+ changeOrigin: true,
59
+ },
60
+ '/drp-ops/': {
61
+ target: 'http://bitsun.cc0b9108c833e4298b9db565441546718.cn-shanghai.alicontainer.com/', // 开发环境
58
62
  changeOrigin: true,
59
63
  },
60
64
  '/channel-manage/': {
61
- target: 'http://bitsun.cb21419868b8b483f9e04b769406afe73.cn-shanghai.alicontainer.com/', // 开发环境
65
+ target: 'http://bitsun.cc0b9108c833e4298b9db565441546718.cn-shanghai.alicontainer.com/', // 开发环境
62
66
  changeOrigin: true,
63
67
  },
64
68
  '/items/': {
65
- target: 'http://bitsun.cb21419868b8b483f9e04b769406afe73.cn-shanghai.alicontainer.com/', // 开发环境
69
+ target: 'http://bitsun.cc0b9108c833e4298b9db565441546718.cn-shanghai.alicontainer.com/', // 开发环境
66
70
  changeOrigin: true,
67
71
  },
68
72
  '/stock/': {
69
- target: 'http://bitsun.cb21419868b8b483f9e04b769406afe73.cn-shanghai.alicontainer.com/', // 开发环境
73
+ target: 'http://bitsun.cc0b9108c833e4298b9db565441546718.cn-shanghai.alicontainer.com/', // 开发环境
70
74
  changeOrigin: true,
71
75
  },
72
76
  '/basic/': {
73
- target: 'http://bitsun.cb21419868b8b483f9e04b769406afe73.cn-shanghai.alicontainer.com/', // 开发环境
77
+ target: 'http://bitsun.cc0b9108c833e4298b9db565441546718.cn-shanghai.alicontainer.com/', // 开发环境
74
78
  changeOrigin: true,
75
79
  },
76
80
  '/srm-ops/': {
77
- target: 'http://bitsun.cb21419868b8b483f9e04b769406afe73.cn-shanghai.alicontainer.com/', // 开发环境
81
+ target: 'http://bitsun.cc0b9108c833e4298b9db565441546718.cn-shanghai.alicontainer.com/', // 开发环境
78
82
  changeOrigin: true,
79
83
  },
80
84
  },
@@ -1,5 +1,6 @@
1
- export declare function commonFun(type?: string, prefixUrl: any, requestConfigProp?: any, modalTableBusProps?: any, hiddenFields?: any): {
1
+ export declare function commonFun(type?: string, prefixUrl: any, parentProps?: any): {
2
2
  modalTableProps: any;
3
+ selectProps: any;
3
4
  requestConfig: any;
4
5
  needModalTable: any;
5
6
  };
@@ -1 +1,8 @@
1
1
  export declare const handleSourceName: (sName: any) => any;
2
+ export declare const getFormRowInfo: (list: any) => {
3
+ totalRows: number;
4
+ emptyArray: any[];
5
+ };
6
+ export declare const defaultVisibleFieldsCount = 7;
7
+ export declare const getVisibleFieldsCount: (modalTableProps: any) => any;
8
+ export declare const hasMoreQueryFields: (modalTableProps: any) => boolean;