@ibiz-template/runtime 0.7.12 → 0.7.13
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/dist/index.esm.js +317 -51
- package/dist/index.system.min.js +1 -1
- package/out/app-hub.d.ts.map +1 -1
- package/out/app-hub.js +8 -1
- package/out/controller/common/index.d.ts +1 -0
- package/out/controller/common/index.d.ts.map +1 -1
- package/out/controller/common/index.js +1 -0
- package/out/controller/common/view/app-login-view.controller.d.ts +54 -0
- package/out/controller/common/view/app-login-view.controller.d.ts.map +1 -0
- package/out/controller/common/view/app-login-view.controller.js +62 -0
- package/out/controller/hub.controller.d.ts +73 -2
- package/out/controller/hub.controller.d.ts.map +1 -1
- package/out/controller/hub.controller.js +88 -12
- package/out/controller/notification/internal-message.controller.js +1 -1
- package/out/engine/view-base.engine.d.ts +8 -1
- package/out/engine/view-base.engine.d.ts.map +1 -1
- package/out/engine/view-base.engine.js +14 -3
- package/out/interface/controller/app.d.ts +55 -7
- package/out/interface/controller/app.d.ts.map +1 -1
- package/out/interface/controller/controller/view/i-app-login-view.controller.d.ts +40 -0
- package/out/interface/controller/controller/view/i-app-login-view.controller.d.ts.map +1 -0
- package/out/interface/controller/controller/view/i-app-login-view.controller.js +1 -0
- package/out/interface/controller/controller/view/index.d.ts +1 -0
- package/out/interface/controller/controller/view/index.d.ts.map +1 -1
- package/out/interface/service/service/i-auth.service.d.ts +11 -0
- package/out/interface/service/service/i-auth.service.d.ts.map +1 -1
- package/out/interface/util/i-app-util/i-app-util.d.ts +77 -0
- package/out/interface/util/i-app-util/i-app-util.d.ts.map +1 -0
- package/out/interface/util/i-app-util/i-app-util.js +1 -0
- package/out/interface/util/i-short-cut/i-short-cut.d.ts +11 -3
- package/out/interface/util/i-short-cut/i-short-cut.d.ts.map +1 -1
- package/out/interface/util/index.d.ts +1 -0
- package/out/interface/util/index.d.ts.map +1 -1
- package/out/service/service/auth/v7-auth.service.d.ts +64 -0
- package/out/service/service/auth/v7-auth.service.d.ts.map +1 -1
- package/out/service/service/auth/v7-auth.service.js +85 -7
- package/out/service/service/authority/authority.service.d.ts.map +1 -1
- package/out/service/service/authority/authority.service.js +5 -3
- package/out/service/service/internal-message/internal-message.service.js +2 -2
- package/out/types.d.ts +9 -1
- package/out/types.d.ts.map +1 -1
- package/out/ui-action/provider/loginout-ui-action-provider.d.ts.map +1 -1
- package/out/ui-action/provider/loginout-ui-action-provider.js +1 -4
- package/out/utils/file-util/file-util.d.ts +1 -1
- package/out/utils/file-util/file-util.d.ts.map +1 -1
- package/out/utils/file-util/file-util.js +14 -1
- package/out/utils/index.d.ts +1 -1
- package/out/utils/index.d.ts.map +1 -1
- package/out/utils/index.js +1 -1
- package/out/utils/short-cut/short-cut-util.d.ts +24 -0
- package/out/utils/short-cut/short-cut-util.d.ts.map +1 -1
- package/out/utils/short-cut/short-cut-util.js +27 -0
- package/package.json +1 -1
- package/out/utils/short-cut/index.d.ts +0 -2
- package/out/utils/short-cut/index.d.ts.map +0 -1
- package/out/utils/short-cut/index.js +0 -1
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export { ShortCutUtil } from './short-cut-util';
|