Browse Source
Merge in VISUAL/fineui from DEC/fineui:release/11.0 to master * commit '225d9d83308b31bec7ab1f62f9dadd5b01143e87': 无JIRA 组件名大小写修正 REPORT-101548 下拉复选树this指向问题 无jira 扩展运算符补正 REPORT-101145 fix:新前端-视图树控件-设置不可用后还是能选中选项 导出 bi.context 无JIRA report模板用的worker适配+删减 无JIRA $和Jquery的环境问题兼容FR REPORT-100874 fix:【专题】【权限复用】权限复用时默认状态下选中部门,搜索状态下取消其中1个职务,取消搜索后发现职务还是选中状态 无JRIA Workers挂载到BI上 REPORT-97526 feat:给带搜索的多选多层级树增加searcherPaneAutoShrink,searcherPaneIsSelectedAny字段 BI-128437 提交Final fix: 【来源PT项目】BI绑定参数文本下拉问题 BI-128881 fix: 深色主题无更多数据这几个字没有显示出来 BI-128988 fix: 【来源PT项目】文本过滤组件文本列表勾选状态异常 - 提交finalresearch/test
35 changed files with 139 additions and 55 deletions
@ -0,0 +1,36 @@
|
||||
// sideEffects
|
||||
import "./core/system"; |
||||
|
||||
import * as _core from "./core"; |
||||
import * as _base from "./base"; |
||||
import * as _fix from "./fix"; |
||||
import * as _router from "./router"; |
||||
|
||||
export * as Popper from "@popperjs/core"; |
||||
|
||||
import * as D from "@/core/decorator"; |
||||
import { Fix } from "./fix"; |
||||
|
||||
const Decorators = { ...D, Model: Fix.Model }; |
||||
|
||||
const fuiExport = { |
||||
..._core, |
||||
..._base, |
||||
..._fix, |
||||
..._router |
||||
}; |
||||
|
||||
import * as injectFn from "@/core/5.inject"; |
||||
import { _global } from "@/core/0.foundation"; |
||||
import { _defineVarProperties } from "@/core/constant/writable.var"; |
||||
|
||||
_global.BI = _global.BI || {}; |
||||
|
||||
Object.assign(_global, { |
||||
Fix: fuiExport.Fix, |
||||
_: fuiExport._, |
||||
}); |
||||
|
||||
Object.assign(_global.BI, fuiExport, injectFn, { Decorators, }); |
||||
|
||||
_defineVarProperties(_global.BI); |
@ -1,3 +1,5 @@
|
||||
// import fineui from "./index";
|
||||
|
||||
// BI.extend(BI, fineui);
|
||||
import { Workers } from "./core/worker/workers"; |
||||
// 仅Workers是ts实现的代码,所以要挂载到BI上
|
||||
BI?.extend(BI, { |
||||
Workers: Workers |
||||
}); |
Loading…
Reference in new issue