iv-npm 1.7.111 → 1.7.112
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 +2 -0
- package/packages/ui/dist/business-ui/component/IVMaterialTypeDropdown.d.ts +9 -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 +5 -5
- 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/package.json
CHANGED
|
@@ -169,6 +169,8 @@ function buildURL(url, params) {
|
|
|
169
169
|
var hostname = window.location.hostname.split(".");
|
|
170
170
|
var protocol = window.location.protocol;
|
|
171
171
|
function apiConfiger(config) {
|
|
172
|
+
console.log(hostname, "---------hostname");
|
|
173
|
+
console.log(protocol, "---------protocol");
|
|
172
174
|
if (config.requestBase == "SHARECOOL_URL") {
|
|
173
175
|
config.baseURL = process.env.NODE_ENV == "development" ? "/mrp" : `${protocol}//mrp.${hostname[1]}.${hostname[2]}`;
|
|
174
176
|
}
|
|
@@ -76,6 +76,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
76
76
|
required: false;
|
|
77
77
|
default: string;
|
|
78
78
|
};
|
|
79
|
+
sharecool: {
|
|
80
|
+
type: BooleanConstructor;
|
|
81
|
+
required: false;
|
|
82
|
+
};
|
|
79
83
|
}, (_ctx: any, _cache: any) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
80
84
|
[key: string]: any;
|
|
81
85
|
}>, 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<{
|
|
@@ -153,6 +157,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
153
157
|
required: false;
|
|
154
158
|
default: string;
|
|
155
159
|
};
|
|
160
|
+
sharecool: {
|
|
161
|
+
type: BooleanConstructor;
|
|
162
|
+
required: false;
|
|
163
|
+
};
|
|
156
164
|
}>> & {
|
|
157
165
|
"onUpdate:value"?: ((...args: any[]) => any) | undefined;
|
|
158
166
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
@@ -165,5 +173,6 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
165
173
|
placeholder: string;
|
|
166
174
|
title: string;
|
|
167
175
|
name: string;
|
|
176
|
+
sharecool: boolean;
|
|
168
177
|
}>;
|
|
169
178
|
export default _default;
|