From e9a87a8528757c42dbef22337850566e3d4e9422 Mon Sep 17 00:00:00 2001 From: "Zhenfei.Li" Date: Tue, 27 Dec 2022 13:50:21 +0800 Subject: [PATCH] =?UTF-8?q?KERNEL-13947=20refactor:=20OB=E5=92=8CWidget?= =?UTF-8?q?=E4=BB=8Eindex=20export?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/core/index.js | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/core/index.js b/src/core/index.js index 1937cff2e..d168cc0bc 100644 --- a/src/core/index.js +++ b/src/core/index.js @@ -1,3 +1,5 @@ +import OB from "./3.ob"; +import Widget from "./4.widget"; import Action from "./action/action"; import ShowAction from "./action/action.show"; import Behavior from "./behavior/0.behavior"; @@ -14,6 +16,8 @@ import ResizeController from "./controller/controller.resizer"; import TooltipsController from "./controller/controller.tooltips"; BI.extend(BI, { + OB, + Widget, Action, ShowAction, Behavior, @@ -31,6 +35,8 @@ BI.extend(BI, { }); export { + OB, + Widget, Action, ShowAction, Behavior,