iv-npm 1.6.75 → 1.6.77

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 (25) hide show
  1. package/package.json +1 -1
  2. package/packages/shared/dist/utils/index.mjs +4 -1
  3. package/packages/shared/package.json +32 -32
  4. package/packages/ui/dist/index.cjs.js +1 -1
  5. package/packages/ui/dist/index.cjs.js.map +1 -1
  6. package/packages/ui/dist/index.esm.js +1 -1
  7. package/packages/ui/dist/index.esm.js.map +1 -1
  8. package/packages/ui/dist/index.umd.js +1 -1
  9. package/packages/ui/dist/index.umd.js.map +1 -1
  10. package/packages/ui/package.json +76 -76
  11. package/packages/ui/dist/business-ui/component/IVMrpLineDropdown.d.ts +0 -155
  12. package/packages/ui/dist/business-ui/component/IVMrpManagDropdown.d.ts +0 -141
  13. package/packages/ui/dist/business-ui/component/IVMrpMaterialSelector.d.ts +0 -20
  14. package/packages/ui/dist/business-ui/component/IVMrpMaterialTypeDropdown.d.ts +0 -158
  15. package/packages/ui/dist/business-ui/component/IVMrpOrgDropdown.d.ts +0 -152
  16. package/packages/ui/dist/business-ui/component/IVMrpPostDropdown.d.ts +0 -148
  17. package/packages/ui/dist/business-ui/component/IVMrpProdBaseDropdown.d.ts +0 -154
  18. package/packages/ui/dist/business-ui/component/IVMrpRateDropdown.d.ts +0 -46
  19. package/packages/ui/dist/business-ui/component/IVMrpSetofbookDropdown.d.ts +0 -158
  20. package/packages/ui/dist/business-ui/component/IVMrpUnitDropdown.d.ts +0 -64
  21. package/packages/ui/dist/business-ui/component/IVMrpUserSelector.d.ts +0 -20
  22. package/packages/ui/dist/business-ui/component/IVMrpVendorSelector.d.ts +0 -20
  23. package/packages/ui/dist/function-ui/component/IVMrpModal.d.ts +0 -41
  24. package/packages/ui/dist/function-ui/component/IVMrpTable.d.ts +0 -79
  25. package/packages/ui/dist/function-ui/component/IVMrpTableControl.d.ts +0 -17
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "iv-npm",
3
- "version": "1.6.75",
3
+ "version": "1.6.77",
4
4
  "description": "公共通用包",
5
5
  "author": "Mr.Cong",
6
6
  "license": "ISC",
@@ -79,7 +79,7 @@ var arraySumByKey = (arr, key) => {
79
79
  throw new Error(`could not find it '${key}' in arraySumByKey function`);
80
80
  tempArr.push(_e[key] ?? 0);
81
81
  });
82
- return arraySum(tempArr);
82
+ return Number(arraySum(tempArr));
83
83
  };
84
84
  var isArraySumCompared = (arr1, arr2, key1, key2) => {
85
85
  const k1 = key1;
@@ -184,6 +184,9 @@ function apiConfiger(config) {
184
184
  if (config.requestBase == "SC_URL") {
185
185
  config.baseURL = process.env.NODE_ENV == "development" ? "/sc" : `${protocol}//sc.${hostname[1]}.${hostname[2]}`;
186
186
  }
187
+ if (config.requestBase == "RMS_URL") {
188
+ config.baseURL = process.env.NODE_ENV == "development" ? "/rms" : `${protocol}//rms.${hostname[1]}.${hostname[2]}`;
189
+ }
187
190
  if (config.requestBase == "ASSETS_URL") {
188
191
  config.baseURL = process.env.NODE_ENV == "development" ? "/assets" : `${protocol}//assets.${hostname[1]}.${hostname[2]}`;
189
192
  }
@@ -1,32 +1,32 @@
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
- "number-precision": "^1.6.0"
31
- }
32
- }
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
+ "number-precision": "^1.6.0"
31
+ }
32
+ }