iv-npm 1.5.40 → 1.5.42
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/package.json +1 -1
- package/packages/shared/dist/utils/index.d.ts +1 -1
- package/packages/shared/dist/utils/index.mjs +4 -0
- package/packages/shared/package.json +31 -31
- package/packages/ui/dist/business-ui/component/IVTimeSelector.d.ts +4 -0
- package/packages/ui/dist/index.cjs.js +1 -1
- package/packages/ui/dist/index.cjs.js.map +1 -1
- package/packages/ui/dist/index.esm.js +1 -1
- package/packages/ui/dist/index.esm.js.map +1 -1
- package/packages/ui/dist/index.umd.js +1 -1
- package/packages/ui/dist/index.umd.js.map +1 -1
- package/packages/ui/package.json +64 -64
- package/pnpm-lock.yaml +5741 -5741
- package/packages/ui/dist/business-ui/component/IVMrpLineDropdown.d.ts +0 -155
- package/packages/ui/dist/business-ui/component/IVMrpManagDropdown.d.ts +0 -141
- package/packages/ui/dist/business-ui/component/IVMrpMaterialSelector.d.ts +0 -20
- package/packages/ui/dist/business-ui/component/IVMrpMaterialTypeDropdown.d.ts +0 -158
- package/packages/ui/dist/business-ui/component/IVMrpOrgDropdown.d.ts +0 -152
- package/packages/ui/dist/business-ui/component/IVMrpPostDropdown.d.ts +0 -148
- package/packages/ui/dist/business-ui/component/IVMrpProdBaseDropdown.d.ts +0 -154
- package/packages/ui/dist/business-ui/component/IVMrpRateDropdown.d.ts +0 -46
- package/packages/ui/dist/business-ui/component/IVMrpSetofbookDropdown.d.ts +0 -158
- package/packages/ui/dist/business-ui/component/IVMrpUnitDropdown.d.ts +0 -64
- package/packages/ui/dist/business-ui/component/IVMrpUserSelector.d.ts +0 -20
- package/packages/ui/dist/business-ui/component/IVMrpVendorSelector.d.ts +0 -20
- package/packages/ui/dist/function-ui/component/IVMrpModal.d.ts +0 -41
- package/packages/ui/dist/function-ui/component/IVMrpTable.d.ts +0 -79
- package/packages/ui/dist/function-ui/component/IVMrpTableControl.d.ts +0 -17
package/package.json
CHANGED
|
@@ -48,7 +48,7 @@ declare function buildURL(url: string, params: any): string;
|
|
|
48
48
|
|
|
49
49
|
declare function apiConfiger(config: any): any;
|
|
50
50
|
|
|
51
|
-
declare type HostKey = "BASE_URL" | "MRP_URL" | "MRP2_URL" | "ASSET_URL" | "GATEWAY_URL" | "SFM_URL";
|
|
51
|
+
declare type HostKey = "BASE_URL" | "MRP_URL" | "MRP2_URL" | "ASSET_URL" | "ASSETS_URL" | "GATEWAY_URL" | "SFM_URL";
|
|
52
52
|
declare function hostConfiger(key: HostKey): string;
|
|
53
53
|
|
|
54
54
|
declare type formatType = {
|
|
@@ -152,6 +152,7 @@ function hostConfiger(key) {
|
|
|
152
152
|
MRP_URL: "https://mrp.nacho.cn",
|
|
153
153
|
MRP2_URL: "https://mrp2.nacho.cn",
|
|
154
154
|
ASSET_URL: "https://gateway.nacho.cn",
|
|
155
|
+
ASSETS_URL: "https://assets.nacho.cn",
|
|
155
156
|
GATEWAY_URL: "https://gateway.nacho.cn",
|
|
156
157
|
SFM_URL: "https://sfm.nacho.cn"
|
|
157
158
|
};
|
|
@@ -219,6 +220,9 @@ function hostConfiger(key) {
|
|
|
219
220
|
case "ASSET_URL":
|
|
220
221
|
preString = "gateway";
|
|
221
222
|
break;
|
|
223
|
+
case "ASSETS_URL":
|
|
224
|
+
preString = "assets";
|
|
225
|
+
break;
|
|
222
226
|
case "GATEWAY_URL":
|
|
223
227
|
preString = "gateway";
|
|
224
228
|
break;
|
|
@@ -1,31 +1,31 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@IVNPM/shared",
|
|
3
|
-
"version": "1.0.0",
|
|
4
|
-
"private": false,
|
|
5
|
-
"description": "IVNPM/shared",
|
|
6
|
-
"scripts": {
|
|
7
|
-
"prepare": "npm run build",
|
|
8
|
-
"dev": "tsup --watch",
|
|
9
|
-
"build": "tsup"
|
|
10
|
-
},
|
|
11
|
-
"main": "dist/utils/index.mjs",
|
|
12
|
-
"module": "dist/utils/index.mjs",
|
|
13
|
-
"types": "dist/utils/index.d.ts",
|
|
14
|
-
"files": [
|
|
15
|
-
"index.js",
|
|
16
|
-
"dist"
|
|
17
|
-
],
|
|
18
|
-
"author": "Mr.Cong",
|
|
19
|
-
"license": "ISC",
|
|
20
|
-
"devDependencies": {
|
|
21
|
-
"@types/node": "^18.6.4",
|
|
22
|
-
"rollup-plugin-copy": "^3.4.0",
|
|
23
|
-
"tsup": "^6.2.1"
|
|
24
|
-
},
|
|
25
|
-
"peerDependencies": {
|
|
26
|
-
"ant-design-vue": "^3.2.5"
|
|
27
|
-
},
|
|
28
|
-
"dependencies": {
|
|
29
|
-
"nanoid": "^4.0.0"
|
|
30
|
-
}
|
|
31
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@IVNPM/shared",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"private": false,
|
|
5
|
+
"description": "IVNPM/shared",
|
|
6
|
+
"scripts": {
|
|
7
|
+
"prepare": "npm run build",
|
|
8
|
+
"dev": "tsup --watch",
|
|
9
|
+
"build": "tsup"
|
|
10
|
+
},
|
|
11
|
+
"main": "dist/utils/index.mjs",
|
|
12
|
+
"module": "dist/utils/index.mjs",
|
|
13
|
+
"types": "dist/utils/index.d.ts",
|
|
14
|
+
"files": [
|
|
15
|
+
"index.js",
|
|
16
|
+
"dist"
|
|
17
|
+
],
|
|
18
|
+
"author": "Mr.Cong",
|
|
19
|
+
"license": "ISC",
|
|
20
|
+
"devDependencies": {
|
|
21
|
+
"@types/node": "^18.6.4",
|
|
22
|
+
"rollup-plugin-copy": "^3.4.0",
|
|
23
|
+
"tsup": "^6.2.1"
|
|
24
|
+
},
|
|
25
|
+
"peerDependencies": {
|
|
26
|
+
"ant-design-vue": "^3.2.5"
|
|
27
|
+
},
|
|
28
|
+
"dependencies": {
|
|
29
|
+
"nanoid": "^4.0.0"
|
|
30
|
+
}
|
|
31
|
+
}
|