@imedx/ics-imedx-chromely-plugin-intf-platform
Advanced tools
Comparing version 0.0.1-beta.7 to 0.0.1-beta.8
@@ -251,3 +251,2 @@ import icsChromelyRequest from '@icreate/ics-chromely-js-sdk'; | ||
var IntfPlatformManage = IntfPlatformManage$1.getIntfPlatformManage(); | ||
// export { IntfPlatformManage, IntfPlatform } | ||
var index = { | ||
@@ -263,3 +262,3 @@ BaseInterfaceCore: BaseInterfaceCore, | ||
export { index as default }; | ||
export { BaseInterfaceCore, InterfaceParamType, InterfaceType, IntfPlatform, IntfPlatformManage, IntfResponse, index as default, intfParam }; | ||
//# sourceMappingURL=ics-imedx-chromely-plugin-intf-platform.es5.js.map |
(function (global, factory) { | ||
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory(require('@icreate/ics-chromely-js-sdk')) : | ||
typeof define === 'function' && define.amd ? define(['@icreate/ics-chromely-js-sdk'], factory) : | ||
(global = typeof globalThis !== 'undefined' ? globalThis : global || self, global.icsImedxChromelyPluginIntfPlatform = factory(global.icsChromelyRequest)); | ||
})(this, (function (icsChromelyRequest) { 'use strict'; | ||
typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports, require('@icreate/ics-chromely-js-sdk')) : | ||
typeof define === 'function' && define.amd ? define(['exports', '@icreate/ics-chromely-js-sdk'], factory) : | ||
(global = typeof globalThis !== 'undefined' ? globalThis : global || self, factory(global.icsImedxChromelyPluginIntfPlatform = {}, global.icsChromelyRequest)); | ||
})(this, (function (exports, icsChromelyRequest) { 'use strict'; | ||
@@ -79,3 +79,3 @@ /** | ||
*/ | ||
var InterfaceParamType; | ||
exports.InterfaceParamType = void 0; | ||
(function (InterfaceParamType) { | ||
@@ -86,7 +86,7 @@ // 输入框 | ||
InterfaceParamType[InterfaceParamType["select"] = 2] = "select"; | ||
})(InterfaceParamType || (InterfaceParamType = {})); | ||
})(exports.InterfaceParamType || (exports.InterfaceParamType = {})); | ||
/** | ||
* 接口模式 1表示C#接口 2表示js接口 | ||
*/ | ||
var InterfaceType; | ||
exports.InterfaceType = void 0; | ||
(function (InterfaceType) { | ||
@@ -97,3 +97,3 @@ // DLL接口 | ||
InterfaceType[InterfaceType["JS"] = 2] = "JS"; | ||
})(InterfaceType || (InterfaceType = {})); | ||
})(exports.InterfaceType || (exports.InterfaceType = {})); | ||
@@ -202,3 +202,3 @@ var IntfPlatformManage$1 = /** @class */ (function () { | ||
IntfPlatform.GetInterfaceType = function (intfCode) { | ||
return InterfaceType.DLL; | ||
return exports.InterfaceType.DLL; | ||
}; | ||
@@ -229,3 +229,3 @@ /** | ||
switch (mode) { | ||
case InterfaceType.JS: | ||
case exports.InterfaceType.JS: | ||
// 调用js接口实现 | ||
@@ -260,7 +260,6 @@ var intfCoreManage = IntfPlatformManage$1.getIntfPlatformManage(); | ||
var IntfPlatformManage = IntfPlatformManage$1.getIntfPlatformManage(); | ||
// export { IntfPlatformManage, IntfPlatform } | ||
var index = { | ||
BaseInterfaceCore: BaseInterfaceCore, | ||
InterfaceParamType: InterfaceParamType, | ||
InterfaceType: InterfaceType, | ||
InterfaceParamType: exports.InterfaceParamType, | ||
InterfaceType: exports.InterfaceType, | ||
IntfResponse: IntfResponse, | ||
@@ -272,5 +271,12 @@ intfParam: intfParam, | ||
return index; | ||
exports.BaseInterfaceCore = BaseInterfaceCore; | ||
exports.IntfPlatform = IntfPlatform; | ||
exports.IntfPlatformManage = IntfPlatformManage; | ||
exports.IntfResponse = IntfResponse; | ||
exports.default = index; | ||
exports.intfParam = intfParam; | ||
Object.defineProperty(exports, '__esModule', { value: true }); | ||
})); | ||
//# sourceMappingURL=ics-imedx-chromely-plugin-intf-platform.umd.js.map |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.IntfPlatform = exports.IntfPlatformManage = exports.intfParam = exports.IntfResponse = exports.InterfaceType = exports.InterfaceParamType = exports.BaseInterfaceCore = void 0; | ||
var intf_platform_1 = require("./intf-platform"); | ||
exports.IntfPlatform = intf_platform_1.default; | ||
var InterfaceCore_1 = require("./interfaces/InterfaceCore"); | ||
Object.defineProperty(exports, "BaseInterfaceCore", { enumerable: true, get: function () { return InterfaceCore_1.BaseInterfaceCore; } }); | ||
Object.defineProperty(exports, "InterfaceParamType", { enumerable: true, get: function () { return InterfaceCore_1.InterfaceParamType; } }); | ||
Object.defineProperty(exports, "InterfaceType", { enumerable: true, get: function () { return InterfaceCore_1.InterfaceType; } }); | ||
Object.defineProperty(exports, "IntfResponse", { enumerable: true, get: function () { return InterfaceCore_1.IntfResponse; } }); | ||
Object.defineProperty(exports, "intfParam", { enumerable: true, get: function () { return InterfaceCore_1.intfParam; } }); | ||
var intf_platform_manage_1 = require("./intf-platform-manage"); | ||
@@ -18,3 +25,3 @@ // import './index.scss' | ||
var IntfPlatformManage = intf_platform_manage_1.default.getIntfPlatformManage(); | ||
// export { IntfPlatformManage, IntfPlatform } | ||
exports.IntfPlatformManage = IntfPlatformManage; | ||
exports.default = { | ||
@@ -21,0 +28,0 @@ BaseInterfaceCore: InterfaceCore_1.BaseInterfaceCore, |
import IntfPlatform from './intf-platform'; | ||
import { BaseInterfaceCore, InterfaceParamType, InterfaceType, IntfResponse, intfParam } from './interfaces/InterfaceCore'; | ||
import _IntfPlatformManage from './intf-platform-manage'; | ||
declare const IntfPlatformManage: _IntfPlatformManage; | ||
export { BaseInterfaceCore, InterfaceParamType, InterfaceType, IntfResponse, intfParam, IntfPlatformManage, IntfPlatform }; | ||
declare const _default: { | ||
@@ -5,0 +7,0 @@ BaseInterfaceCore: typeof BaseInterfaceCore; |
{ | ||
"name": "@imedx/ics-imedx-chromely-plugin-intf-platform", | ||
"version": "0.0.1-beta.7", | ||
"version": "0.0.1-beta.8", | ||
"description": "", | ||
@@ -5,0 +5,0 @@ "keywords": [], |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
57505
1031