scorer-ui-kit 1.7.18 → 1.7.19
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/Global/atoms/UserDrawerMeta.d.ts +8 -0
- package/dist/Global/index.d.ts +20 -0
- package/dist/LineUI/LineSet.d.ts +1 -0
- package/dist/LineUI/LineUI.d.ts +1 -0
- package/dist/LineUI/LineUIRTC.d.ts +1 -0
- package/dist/LineUI/LineUIVideo.d.ts +1 -0
- package/dist/LineUI/LineUnit.d.ts +1 -0
- package/dist/index.js +221 -124
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +221 -124
- package/dist/index.modern.js.map +1 -1
- package/package.json +1 -1
package/dist/Global/index.d.ts
CHANGED
|
@@ -16,6 +16,12 @@ export interface IMenuItemTop {
|
|
|
16
16
|
isExternalLink?: boolean;
|
|
17
17
|
submenu?: IMenuItemSubmenu[];
|
|
18
18
|
}
|
|
19
|
+
export interface IUserDrawerMeta {
|
|
20
|
+
title?: string;
|
|
21
|
+
icon?: string;
|
|
22
|
+
subTitle?: string;
|
|
23
|
+
notes?: string;
|
|
24
|
+
}
|
|
19
25
|
export interface IMenuItemSubmenu {
|
|
20
26
|
title: string;
|
|
21
27
|
href?: string;
|
|
@@ -40,6 +46,16 @@ export interface ICustomDrawer {
|
|
|
40
46
|
counter?: number;
|
|
41
47
|
width?: string;
|
|
42
48
|
}
|
|
49
|
+
export interface IUserDrawerFooter {
|
|
50
|
+
icon: string;
|
|
51
|
+
title: string;
|
|
52
|
+
}
|
|
53
|
+
export interface IUserDrawerMeta {
|
|
54
|
+
icon?: string;
|
|
55
|
+
title?: string;
|
|
56
|
+
subTitle?: string;
|
|
57
|
+
notes?: string;
|
|
58
|
+
}
|
|
43
59
|
export interface ITopBar {
|
|
44
60
|
hasNotifications?: boolean;
|
|
45
61
|
userSubmenu?: any[];
|
|
@@ -58,6 +74,10 @@ export interface ITopBar {
|
|
|
58
74
|
customDrawer?: ICustomDrawer;
|
|
59
75
|
onLogout?: () => void;
|
|
60
76
|
onLanguageToggle?: () => void;
|
|
77
|
+
onUserDrawerMetaClick?: () => void;
|
|
78
|
+
userDrawerFooter?: IUserDrawerFooter;
|
|
79
|
+
userDrawerMeta?: IUserDrawerMeta[];
|
|
80
|
+
hasUserDrawerMeta?: boolean;
|
|
61
81
|
}
|
|
62
82
|
export interface INotificationItem {
|
|
63
83
|
imgUrl?: string;
|
package/dist/LineUI/LineSet.d.ts
CHANGED
package/dist/LineUI/LineUI.d.ts
CHANGED