@bit-sun/business-component 2.1.1-alpha.0 → 2.1.1-alpha.2
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 -1
- package/.umirc.ts +6 -6
- package/dist/components/Business/JsonQueryTable/drawer/index.d.ts +2 -0
- package/dist/components/Business/JsonQueryTable/index.d.ts +3 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.esm.js +7218 -122
- package/dist/index.js +7214 -113
- package/dist/utils/utils.d.ts +0 -1
- package/package.json +10 -4
- package/src/components/Business/BsSulaQueryTable/setting.tsx +0 -2
- package/src/components/Business/CommodityEntry/index.tsx +1 -2
- package/src/components/Business/DetailPageWrapper/utils.tsx +0 -2
- package/src/components/Business/JsonQueryTable/configButton/index.js +20 -0
- package/src/components/Business/JsonQueryTable/configTree/component/compactArrayView.js +25 -0
- package/src/components/Business/JsonQueryTable/configTree/component/compactObjectView.js +30 -0
- package/src/components/Business/JsonQueryTable/configTree/index.js +82 -0
- package/src/components/Business/JsonQueryTable/configTree/index.less +44 -0
- package/src/components/Business/JsonQueryTable/configTree/parser/highlight.js +57 -0
- package/src/components/Business/JsonQueryTable/configTree/parser/index.js +124 -0
- package/src/components/Business/JsonQueryTable/configTree/render/iconRender.js +29 -0
- package/src/components/Business/JsonQueryTable/configTree/render/nameRender.js +22 -0
- package/src/components/Business/JsonQueryTable/configTree/treeNode.js +116 -0
- package/src/components/Business/JsonQueryTable/drawer/index.tsx +12 -0
- package/src/components/Business/JsonQueryTable/index.md +328 -0
- package/src/components/Business/JsonQueryTable/index.tsx +294 -0
- package/src/components/Business/JsonQueryTable/jsonEditor/index.js +346 -0
- package/src/components/Business/JsonQueryTable/jsonEditor/index.less +22 -0
- package/src/components/Business/JsonQueryTable/jsonEditor/lint/basicType.js +147 -0
- package/src/components/Business/JsonQueryTable/jsonEditor/lint/index.js +389 -0
- package/src/components/Business/JsonQueryTable/jsonEditor/suggestions/actions.js +118 -0
- package/src/components/Business/JsonQueryTable/jsonEditor/suggestions/dependency.js +22 -0
- package/src/components/Business/JsonQueryTable/jsonEditor/suggestions/index.js +21 -0
- package/src/components/Business/JsonQueryTable/jsonEditor/suggestions/request.js +65 -0
- package/src/components/Business/columnSettingTable/columnSetting.tsx +0 -2
- package/src/components/Functional/AddSelect/index.tsx +0 -2
- package/src/components/Functional/BillEntry/index.tsx +0 -1
- package/src/components/Functional/QueryMutipleInput/index.tsx +0 -2
- package/src/components/Functional/SearchSelect/index.tsx +0 -2
- package/src/index.ts +3 -1
- package/src/utils/getFormMode.js +12 -0
- package/src/utils/serialize.js +7 -0
- package/src/utils/utils.ts +0 -11
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://
|
|
49
|
+
target: 'http://bitsun.cb21419868b8b483f9e04b769406afe73.cn-shanghai.alicontainer.com/', // 开发环境
|
|
50
50
|
changeOrigin: true,
|
|
51
51
|
},
|
|
52
52
|
'/channel-manage/': {
|
|
53
|
-
target: 'http://
|
|
53
|
+
target: 'http://bitsun.cb21419868b8b483f9e04b769406afe73.cn-shanghai.alicontainer.com/', // 开发环境
|
|
54
54
|
changeOrigin: true,
|
|
55
55
|
},
|
|
56
56
|
'/items/': {
|
|
57
|
-
target: 'http://
|
|
57
|
+
target: 'http://bitsun.cb21419868b8b483f9e04b769406afe73.cn-shanghai.alicontainer.com/', // 开发环境
|
|
58
58
|
changeOrigin: true,
|
|
59
59
|
},
|
|
60
60
|
'/stock/': {
|
|
61
|
-
target: 'http://
|
|
61
|
+
target: 'http://bitsun.cb21419868b8b483f9e04b769406afe73.cn-shanghai.alicontainer.com/', // 开发环境
|
|
62
62
|
changeOrigin: true,
|
|
63
63
|
},
|
|
64
64
|
'/basic/': {
|
|
65
|
-
target: 'http://
|
|
65
|
+
target: 'http://bitsun.cb21419868b8b483f9e04b769406afe73.cn-shanghai.alicontainer.com/', // 开发环境
|
|
66
66
|
changeOrigin: true,
|
|
67
67
|
},
|
|
68
68
|
'/srm-ops/': {
|
|
69
|
-
target: 'http://
|
|
69
|
+
target: 'http://bitsun.cb21419868b8b483f9e04b769406afe73.cn-shanghai.alicontainer.com/', // 开发环境
|
|
70
70
|
changeOrigin: true,
|
|
71
71
|
},
|
|
72
72
|
},
|
package/dist/index.d.ts
CHANGED
|
@@ -20,3 +20,4 @@ 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';
|