agilebuilder-ui 1.1.65-tmp15 → 1.1.65-tmp16
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/lib/index.js +2 -1
- package/lib/src/router/index.js +3 -2
- package/lib/style.css +562 -562
- package/package.json +1 -3
- package/vite.config.js +11 -11
- package/dist/favicon.svg +0 -29
- package/dist/index.full.min.js +0 -16440
- package/dist/style.css +0 -3078
package/lib/index.js
CHANGED
|
@@ -51,7 +51,7 @@ import { default as default2 } from "./src/api/sso-service.js";
|
|
|
51
51
|
import { default as default3 } from "./src/i18n/langs/cn.js";
|
|
52
52
|
import { default as default4 } from "./src/i18n/langs/en.js";
|
|
53
53
|
import { default as default5 } from "./src/mixins/resizeMixin.js";
|
|
54
|
-
import { protectedRouterMap, default as default6 } from "./src/router/index.js";
|
|
54
|
+
import { errorRouterMap, protectedRouterMap, default as default6 } from "./src/router/index.js";
|
|
55
55
|
import { executeExpression, parseSubTablePermissionCondition } from "./src/utils/calculator/calculator-util.js";
|
|
56
56
|
import { default as default7 } from "./src/utils/auth-api.js";
|
|
57
57
|
import { clearPermission, clearVoiceCache, getAllLanguages, getAllThemes, getCookieCache, getCurrentUser, getLanguage, getRunCurrentRole, getRunInfoKey, getSessionCache, getTenantUsername, getTheme, getToken, getUsername, isDevpSystem, removeAllThemes, removeCookieCache, removeCurrentUser, removeDevpPermissions, removeProjectCode, removeProjectSettings, removeSessionCache, removeSystemCacheUrl, removeTenantUsername, removeTheme, removeToken, removeUsername, setAllLanguages, setAllThemes, setCookieCache, setCurrentUser, setLanguage, setSessionCache, setTenantUsername, setTheme, setToken, setUsername } from "./src/utils/auth.js";
|
|
@@ -216,6 +216,7 @@ export {
|
|
|
216
216
|
clearPermission,
|
|
217
217
|
clearVoiceCache,
|
|
218
218
|
se as default,
|
|
219
|
+
errorRouterMap,
|
|
219
220
|
default8 as eventBus,
|
|
220
221
|
executeExpression,
|
|
221
222
|
findDynamicDataSourceByCode,
|
package/lib/src/router/index.js
CHANGED
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
import "vue";
|
|
2
2
|
import * as e from "vue-router";
|
|
3
3
|
import t from "../views/layout/NewLayout.vue.js";
|
|
4
|
-
const o = [{ path: "/redirect", component: t, hidden: true, children: [{ path: "/redirect/:path*", component: () => import("../views/redirect/index.vue.js") }] }, { path: "/iframe-page", component: t, hidden: true, children: [{ path: "page", component: () => import("../views/layout/components/iframe-page.vue.js"), hidden: true }] }, { path: "/auth-redirect", component: () => import("../views/login/authredirect.vue.js"), hidden: true }, { path: "/404", component: () => import("../views/error-page/404.vue.js"), hidden: true }, { path: "/401", component: () => import("../views/error-page/401.vue.js"), hidden: true }, { path: "/show-sub-wf-history", component: () => import("../views/wf-history/tache-subprocess-history.vue.js"), hidden: true }, { path: "/tab-content-index", component: () => import("../views/layout/tab-content-index.vue.js"), hidden: true }, { path: "/tab-content-iframe-index", component: () => import("../views/layout/tab-content-iframe-index.vue.js"), hidden: true }], i = [], r = e.createRouter({ history: e.createWebHashHistory(), routes: o, scrollBehavior: () => ({ top: 0 }) });
|
|
4
|
+
const o = [{ path: "/redirect", component: t, hidden: true, children: [{ path: "/redirect/:path*", component: () => import("../views/redirect/index.vue.js") }] }, { path: "/iframe-page", component: t, hidden: true, children: [{ path: "page", component: () => import("../views/layout/components/iframe-page.vue.js"), hidden: true }] }, { path: "/auth-redirect", component: () => import("../views/login/authredirect.vue.js"), hidden: true }, { path: "/404", component: () => import("../views/error-page/404.vue.js"), hidden: true }, { path: "/401", component: () => import("../views/error-page/401.vue.js"), hidden: true }, { path: "/show-sub-wf-history", component: () => import("../views/wf-history/tache-subprocess-history.vue.js"), hidden: true }, { path: "/tab-content-index", component: () => import("../views/layout/tab-content-index.vue.js"), hidden: true }, { path: "/tab-content-iframe-index", component: () => import("../views/layout/tab-content-iframe-index.vue.js"), hidden: true }], i = [], r = [{ path: "*", redirect: "/404", hidden: true }], n = e.createRouter({ history: e.createWebHashHistory(), routes: o, scrollBehavior: () => ({ top: 0 }) });
|
|
5
5
|
export {
|
|
6
|
-
|
|
6
|
+
n as default,
|
|
7
|
+
r as errorRouterMap,
|
|
7
8
|
i as protectedRouterMap,
|
|
8
9
|
o as publicRouterMap
|
|
9
10
|
};
|