@bit-sun/business-component 2.0.39-alpha.6 → 2.0.40
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/.fatherrc.ts +1 -3
- package/.umirc.ts +6 -6
- package/dist/components/Business/BsSulaQueryTable/setting.d.ts +0 -1
- package/dist/index.d.ts +0 -1
- package/dist/index.esm.js +2699 -8096
- package/dist/index.js +2689 -8091
- package/package.json +4 -10
- package/src/assets/list-no-img.svg +22 -0
- package/src/components/Business/BsLayouts/Components/SearchFunc/index.less +0 -1
- package/src/components/Business/BsLayouts/utils.tsx +4 -1
- package/src/components/Business/BsSulaQueryTable/index.tsx +93 -123
- package/src/components/Business/BsSulaQueryTable/setting.tsx +55 -71
- package/src/components/Business/BsSulaQueryTable/utils.tsx +5 -8
- package/src/components/Business/DetailPageWrapper/index.tsx +1 -1
- package/src/components/Business/columnSettingTable/index.tsx +25 -19
- package/src/components/Business/columnSettingTable/sulaSettingTable.tsx +25 -19
- package/src/components/Functional/DataImport/index.tsx +6 -0
- package/src/components/Functional/DataValidation/index.md +1 -0
- package/src/components/Functional/DataValidation/index.tsx +8 -2
- package/src/index.ts +0 -2
- package/src/styles/bsDefault.less +11 -0
- package/dist/components/Business/JsonQueryTable/drawer/index.d.ts +0 -2
- package/dist/components/Business/JsonQueryTable/index.d.ts +0 -3
- package/src/assets/defaultBusiness.less +0 -1896
- package/src/components/Business/JsonQueryTable/configButton/index.js +0 -20
- package/src/components/Business/JsonQueryTable/configTree/component/compactArrayView.js +0 -25
- package/src/components/Business/JsonQueryTable/configTree/component/compactObjectView.js +0 -30
- package/src/components/Business/JsonQueryTable/configTree/index.js +0 -82
- package/src/components/Business/JsonQueryTable/configTree/index.less +0 -44
- package/src/components/Business/JsonQueryTable/configTree/parser/highlight.js +0 -57
- package/src/components/Business/JsonQueryTable/configTree/parser/index.js +0 -124
- package/src/components/Business/JsonQueryTable/configTree/render/iconRender.js +0 -29
- package/src/components/Business/JsonQueryTable/configTree/render/nameRender.js +0 -22
- package/src/components/Business/JsonQueryTable/configTree/treeNode.js +0 -116
- package/src/components/Business/JsonQueryTable/drawer/index.tsx +0 -12
- package/src/components/Business/JsonQueryTable/index.md +0 -92
- package/src/components/Business/JsonQueryTable/index.tsx +0 -95
- package/src/components/Business/JsonQueryTable/jsonEditor/index.js +0 -340
- package/src/components/Business/JsonQueryTable/jsonEditor/index.less +0 -22
- package/src/components/Business/JsonQueryTable/jsonEditor/lint/basicType.js +0 -147
- package/src/components/Business/JsonQueryTable/jsonEditor/lint/index.js +0 -388
- package/src/components/Business/JsonQueryTable/jsonEditor/suggestions/actions.js +0 -118
- package/src/components/Business/JsonQueryTable/jsonEditor/suggestions/dependency.js +0 -22
- package/src/components/Business/JsonQueryTable/jsonEditor/suggestions/index.js +0 -21
- package/src/components/Business/JsonQueryTable/jsonEditor/suggestions/request.js +0 -65
- package/src/utils/getFormMode.js +0 -12
- package/src/utils/serialize.js +0 -8
package/.fatherrc.ts
CHANGED
package/.umirc.ts
CHANGED
|
@@ -46,27 +46,27 @@ export default defineConfig({
|
|
|
46
46
|
// pathRewrite: { '^/wms-ops/': '/wms-ops/' }, // 开发环境
|
|
47
47
|
},
|
|
48
48
|
'/user/': {
|
|
49
|
-
target: 'http://bitsun
|
|
49
|
+
target: 'http://omni.bitsun-inc.com/', // 开发环境
|
|
50
50
|
changeOrigin: true,
|
|
51
51
|
},
|
|
52
52
|
'/channel-manage/': {
|
|
53
|
-
target: 'http://bitsun
|
|
53
|
+
target: 'http://omni.bitsun-inc.com/', // 开发环境
|
|
54
54
|
changeOrigin: true,
|
|
55
55
|
},
|
|
56
56
|
'/items/': {
|
|
57
|
-
target: 'http://bitsun
|
|
57
|
+
target: 'http://omni.bitsun-inc.com/', // 开发环境
|
|
58
58
|
changeOrigin: true,
|
|
59
59
|
},
|
|
60
60
|
'/stock/': {
|
|
61
|
-
target: 'http://bitsun
|
|
61
|
+
target: 'http://omni.bitsun-inc.com/', // 开发环境
|
|
62
62
|
changeOrigin: true,
|
|
63
63
|
},
|
|
64
64
|
'/basic/': {
|
|
65
|
-
target: 'http://bitsun
|
|
65
|
+
target: 'http://omni.bitsun-inc.com/', // 开发环境
|
|
66
66
|
changeOrigin: true,
|
|
67
67
|
},
|
|
68
68
|
'/srm-ops/': {
|
|
69
|
-
target: 'http://bitsun
|
|
69
|
+
target: 'http://omni.bitsun-inc.com/', // 开发环境
|
|
70
70
|
changeOrigin: true,
|
|
71
71
|
},
|
|
72
72
|
},
|
package/dist/index.d.ts
CHANGED
|
@@ -20,4 +20,3 @@ export { default as DetailPageWrapper } from './components/Business/DetailPageWr
|
|
|
20
20
|
export { default as HomePageWrapper } from './components/Business/HomePageWrapper';
|
|
21
21
|
export { default as BsSulaQueryTable } from './components/Business/BsSulaQueryTable';
|
|
22
22
|
export { default as BsLayout } from './components/Business/BsLayouts';
|
|
23
|
-
export { default as JsonQueryTable } from './components/Business/JsonQueryTable';
|