iv-npm 1.5.4 → 1.5.5
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 +9 -1
- package/packages/shared/dist/utils/index.mjs +11 -1
- package/packages/ui/dist/business-ui/component/IVUnitDropdown.d.ts +8 -0
- package/packages/ui/dist/index.cjs.js +1 -1
- package/packages/ui/dist/index.esm.js +1 -1
- package/packages/ui/dist/index.umd.js +1 -1
- package/packages/ui/dist/index.umd.js.map +1 -1
package/package.json
CHANGED
|
@@ -79,4 +79,12 @@ declare enum SignStatusEnum {
|
|
|
79
79
|
"诉讼中" = 8
|
|
80
80
|
}
|
|
81
81
|
|
|
82
|
-
|
|
82
|
+
declare enum LineIDEnum {
|
|
83
|
+
"1ef9a270-ed57-36cb-2722-3a0546282ae6" = 1,
|
|
84
|
+
"4323bbbf-0b7b-bc62-0cc5-3a059327c0d1" = 2,
|
|
85
|
+
"59f245e8-806b-453a-53eb-3a059327fc9d" = 4,
|
|
86
|
+
"1b225aa4-a58e-147f-265a-3a0593282a0d" = 8,
|
|
87
|
+
"afd2c30c-5ca3-f27d-3c5e-3a0593286d5e" = 16
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
export { LineIDEnum, ProjectStausEnum, SignStatusEnum, apiConfiger, arrToTree, assign, buildURL as buildUrl, dateFormat, filterOptionHeadle, findTree, formatType, hostConfiger, isDate, isObject, isPlainObject, isURLSearchParams, tranListToTreeData, yearMonthDayFormat, yearMonthFormat };
|
|
@@ -94,7 +94,6 @@ function buildURL(url, params) {
|
|
|
94
94
|
let tempVal = [];
|
|
95
95
|
if (Array.isArray(val)) {
|
|
96
96
|
tempVal = val;
|
|
97
|
-
key = key + "[]";
|
|
98
97
|
} else {
|
|
99
98
|
tempVal = [val];
|
|
100
99
|
}
|
|
@@ -304,7 +303,18 @@ var SignStatusEnum = /* @__PURE__ */ ((SignStatusEnum2) => {
|
|
|
304
303
|
SignStatusEnum2[SignStatusEnum2["\u8BC9\u8BBC\u4E2D"] = 8] = "\u8BC9\u8BBC\u4E2D";
|
|
305
304
|
return SignStatusEnum2;
|
|
306
305
|
})(SignStatusEnum || {});
|
|
306
|
+
|
|
307
|
+
// utils/enum/lineId.ts
|
|
308
|
+
var LineIDEnum = /* @__PURE__ */ ((LineIDEnum2) => {
|
|
309
|
+
LineIDEnum2[LineIDEnum2["1ef9a270-ed57-36cb-2722-3a0546282ae6"] = 1] = "1ef9a270-ed57-36cb-2722-3a0546282ae6";
|
|
310
|
+
LineIDEnum2[LineIDEnum2["4323bbbf-0b7b-bc62-0cc5-3a059327c0d1"] = 2] = "4323bbbf-0b7b-bc62-0cc5-3a059327c0d1";
|
|
311
|
+
LineIDEnum2[LineIDEnum2["59f245e8-806b-453a-53eb-3a059327fc9d"] = 4] = "59f245e8-806b-453a-53eb-3a059327fc9d";
|
|
312
|
+
LineIDEnum2[LineIDEnum2["1b225aa4-a58e-147f-265a-3a0593282a0d"] = 8] = "1b225aa4-a58e-147f-265a-3a0593282a0d";
|
|
313
|
+
LineIDEnum2[LineIDEnum2["afd2c30c-5ca3-f27d-3c5e-3a0593286d5e"] = 16] = "afd2c30c-5ca3-f27d-3c5e-3a0593286d5e";
|
|
314
|
+
return LineIDEnum2;
|
|
315
|
+
})(LineIDEnum || {});
|
|
307
316
|
export {
|
|
317
|
+
LineIDEnum,
|
|
308
318
|
ProjectStausEnum,
|
|
309
319
|
SignStatusEnum,
|
|
310
320
|
apiConfiger,
|
|
@@ -37,6 +37,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
37
37
|
required: true;
|
|
38
38
|
default: string;
|
|
39
39
|
};
|
|
40
|
+
lineEnum: {
|
|
41
|
+
type: NumberConstructor;
|
|
42
|
+
required: true;
|
|
43
|
+
};
|
|
40
44
|
}, (_ctx: any, _cache: any) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
41
45
|
[key: string]: any;
|
|
42
46
|
}>, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("update:value" | "change")[], "update:value" | "change", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
@@ -75,6 +79,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
75
79
|
required: true;
|
|
76
80
|
default: string;
|
|
77
81
|
};
|
|
82
|
+
lineEnum: {
|
|
83
|
+
type: NumberConstructor;
|
|
84
|
+
required: true;
|
|
85
|
+
};
|
|
78
86
|
}>> & {
|
|
79
87
|
"onUpdate:value"?: ((...args: any[]) => any) | undefined;
|
|
80
88
|
onChange?: ((...args: any[]) => any) | undefined;
|