@diasro/ucsd-its-frontend 0.0.8 → 0.1.0
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/assets/ucsd-its-frontend.css +1 -1
- package/dist/index.d.ts +2 -1
- package/dist/layouts/TopLayout.vue.d.ts +20 -0
- package/dist/stores/its-app.d.ts +3 -3
- package/dist/ucsd-its-frontend.js +1753 -1704
- package/dist/ucsd-its-frontend.umd.cjs +15 -15
- package/package.json +1 -1
|
@@ -1 +1 @@
|
|
|
1
|
-
.tm-scrollable-div{overflow-y:auto}.old-data{text-decoration:line-through;text-decoration-color:red}.title[data-v-
|
|
1
|
+
.tm-scrollable-div{overflow-y:auto}.old-data{text-decoration:line-through;text-decoration-color:red}.title[data-v-9592b121]{font-size:14px;font-weight:700}.sub[data-v-9592b121]{line-height:14px;font-size:12px}
|
package/dist/index.d.ts
CHANGED
|
@@ -10,13 +10,14 @@ import UcsdFooter from "./layouts/UcsdFooter.vue";
|
|
|
10
10
|
import FixedLayout from "./layouts/FixedLayout.vue";
|
|
11
11
|
import AppLayout from "./layouts/AppLayout.vue";
|
|
12
12
|
import FloatingLayout from "./layouts/FloatingLayout.vue";
|
|
13
|
+
import TopLayout from "./layouts/TopLayout.vue";
|
|
13
14
|
import RailMenu from "./layouts/menu/RailMenu.vue";
|
|
14
15
|
import TopMenu from "./layouts/menu/TopMenu.vue";
|
|
15
16
|
import FloatMenu from "./layouts/menu/FloatMenu.vue";
|
|
16
17
|
import DefaultLayout from "./layouts/DefaultLayout.vue";
|
|
17
18
|
import UserPanel from "./layouts/UserPanel.vue";
|
|
18
19
|
import UcsdPlugin from "./UcsdPlugin";
|
|
19
|
-
export { Login, LoginSuccess, Logout, Unauthorized, TileButton, ProgressDialog, ChangeHistory, UcsdHeader, UcsdFooter, FixedLayout, AppLayout, FloatingLayout, RailMenu, TopMenu, FloatMenu, DefaultLayout, UserPanel, UcsdPlugin };
|
|
20
|
+
export { Login, LoginSuccess, Logout, Unauthorized, TileButton, ProgressDialog, ChangeHistory, UcsdHeader, UcsdFooter, FixedLayout, AppLayout, FloatingLayout, RailMenu, TopMenu, FloatMenu, DefaultLayout, TopLayout, UserPanel, UcsdPlugin };
|
|
20
21
|
export * from "./types/ApiError";
|
|
21
22
|
export * from "./types/audit";
|
|
22
23
|
export * from "./types/LoginUser";
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
declare const _sfc_main: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
2
|
+
pageHeader: {
|
|
3
|
+
type: StringConstructor;
|
|
4
|
+
required: false;
|
|
5
|
+
};
|
|
6
|
+
pageSubHeader: {
|
|
7
|
+
type: StringConstructor;
|
|
8
|
+
required: false;
|
|
9
|
+
};
|
|
10
|
+
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
11
|
+
pageHeader: {
|
|
12
|
+
type: StringConstructor;
|
|
13
|
+
required: false;
|
|
14
|
+
};
|
|
15
|
+
pageSubHeader: {
|
|
16
|
+
type: StringConstructor;
|
|
17
|
+
required: false;
|
|
18
|
+
};
|
|
19
|
+
}>> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
20
|
+
export default _sfc_main;
|
package/dist/stores/its-app.d.ts
CHANGED
|
@@ -117,7 +117,7 @@ export declare const useItsAppStore: import("pinia").StoreDefinition<"its-app",
|
|
|
117
117
|
getBadgeContent: (item: TileRecord) => string | undefined;
|
|
118
118
|
execAction: (menuItem: TileRecord, eventMap: any) => void;
|
|
119
119
|
renderIcon: (menuItem: any) => any;
|
|
120
|
-
invokeLoginCallback: (prevPath: string) => void
|
|
120
|
+
invokeLoginCallback: (prevPath: string) => Promise<void>;
|
|
121
121
|
getCustomAuth: () => (() => Promise<any>) | undefined;
|
|
122
122
|
secureRoutes: () => void;
|
|
123
123
|
startProgTimer: () => void;
|
|
@@ -223,7 +223,7 @@ export declare const useItsAppStore: import("pinia").StoreDefinition<"its-app",
|
|
|
223
223
|
getBadgeContent: (item: TileRecord) => string | undefined;
|
|
224
224
|
execAction: (menuItem: TileRecord, eventMap: any) => void;
|
|
225
225
|
renderIcon: (menuItem: any) => any;
|
|
226
|
-
invokeLoginCallback: (prevPath: string) => void
|
|
226
|
+
invokeLoginCallback: (prevPath: string) => Promise<void>;
|
|
227
227
|
getCustomAuth: () => (() => Promise<any>) | undefined;
|
|
228
228
|
secureRoutes: () => void;
|
|
229
229
|
startProgTimer: () => void;
|
|
@@ -329,7 +329,7 @@ export declare const useItsAppStore: import("pinia").StoreDefinition<"its-app",
|
|
|
329
329
|
getBadgeContent: (item: TileRecord) => string | undefined;
|
|
330
330
|
execAction: (menuItem: TileRecord, eventMap: any) => void;
|
|
331
331
|
renderIcon: (menuItem: any) => any;
|
|
332
|
-
invokeLoginCallback: (prevPath: string) => void
|
|
332
|
+
invokeLoginCallback: (prevPath: string) => Promise<void>;
|
|
333
333
|
getCustomAuth: () => (() => Promise<any>) | undefined;
|
|
334
334
|
secureRoutes: () => void;
|
|
335
335
|
startProgTimer: () => void;
|