iv-npm 1.4.37 → 1.4.39
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.mjs +3 -0
- package/packages/ui/dist/business-ui/component/IVUnitDropdown.d.ts +11 -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
|
@@ -131,6 +131,9 @@ function apiConfiger(config) {
|
|
|
131
131
|
if (config.requestBase == "ROOT_BASE_URL") {
|
|
132
132
|
config.baseURL = process.env.NODE_ENV == "development" ? "/root" : `${protocol}//basis.${hostname[1]}.${hostname[2]}`;
|
|
133
133
|
}
|
|
134
|
+
if (config.requestBase == "GATEWAY_URL") {
|
|
135
|
+
config.baseURL = process.env.NODE_ENV == "development" ? "/gateway" : `${protocol}//gateway.${hostname[1]}.${hostname[2]}`;
|
|
136
|
+
}
|
|
134
137
|
return config;
|
|
135
138
|
}
|
|
136
139
|
|
|
@@ -32,6 +32,11 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
32
32
|
required: true;
|
|
33
33
|
default: boolean;
|
|
34
34
|
};
|
|
35
|
+
placeholder: {
|
|
36
|
+
type: StringConstructor;
|
|
37
|
+
required: true;
|
|
38
|
+
default: string;
|
|
39
|
+
};
|
|
35
40
|
}, (_ctx: any, _cache: any) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
36
41
|
[key: string]: any;
|
|
37
42
|
}>, 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<{
|
|
@@ -65,10 +70,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
65
70
|
required: true;
|
|
66
71
|
default: boolean;
|
|
67
72
|
};
|
|
73
|
+
placeholder: {
|
|
74
|
+
type: StringConstructor;
|
|
75
|
+
required: true;
|
|
76
|
+
default: string;
|
|
77
|
+
};
|
|
68
78
|
}>> & {
|
|
69
79
|
"onUpdate:value"?: ((...args: any[]) => any) | undefined;
|
|
70
80
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
71
81
|
}, {
|
|
72
82
|
fieldNames: any;
|
|
83
|
+
placeholder: string;
|
|
73
84
|
}>;
|
|
74
85
|
export default _default;
|