alytus-ff 0.1.56 → 0.1.57
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/App.vue.d.ts +5 -4
- package/dist/alytus-ff.js +5618 -2614
- package/dist/alytus-ff.umd.cjs +1 -1
- package/dist/bundle-stats.html +1 -1
- package/dist/components/Nav/UserMenu.vue.d.ts +5 -4
- package/dist/types/DataTable.d.ts +1 -1
- package/package.json +1 -1
- package/src/components/Nav/UserMenu.vue +9 -9
package/dist/App.vue.d.ts
CHANGED
|
@@ -790,7 +790,7 @@ declare const _default: import('vue').DefineComponent<{}, {
|
|
|
790
790
|
};
|
|
791
791
|
actions: {
|
|
792
792
|
type: import('vue').PropType<MenuAction[]>;
|
|
793
|
-
|
|
793
|
+
default: () => never[];
|
|
794
794
|
};
|
|
795
795
|
}>, {
|
|
796
796
|
isOpen: import('vue').Ref<boolean, boolean>;
|
|
@@ -799,9 +799,9 @@ declare const _default: import('vue').DefineComponent<{}, {
|
|
|
799
799
|
accountIds: import('vue').ComputedRef<number[]>;
|
|
800
800
|
accountTitle: import('vue').ComputedRef<string>;
|
|
801
801
|
selectAccount: (account: IWorkspace) => void;
|
|
802
|
-
openProfile: () => void;
|
|
803
802
|
switchLang: (lang: LanguageAndFlag) => void;
|
|
804
|
-
|
|
803
|
+
actionClick: (action: string) => void;
|
|
804
|
+
emitClose: (name: "log-out" | "open-profile") => void;
|
|
805
805
|
}, {}, {}, {
|
|
806
806
|
mdiLogout(): string;
|
|
807
807
|
mdiAccount(): string;
|
|
@@ -846,7 +846,7 @@ declare const _default: import('vue').DefineComponent<{}, {
|
|
|
846
846
|
};
|
|
847
847
|
actions: {
|
|
848
848
|
type: import('vue').PropType<MenuAction[]>;
|
|
849
|
-
|
|
849
|
+
default: () => never[];
|
|
850
850
|
};
|
|
851
851
|
}>> & Readonly<{
|
|
852
852
|
"onOpen-profile"?: ((...args: any[]) => any) | undefined;
|
|
@@ -856,6 +856,7 @@ declare const _default: import('vue').DefineComponent<{}, {
|
|
|
856
856
|
"onLog-out"?: ((...args: any[]) => any) | undefined;
|
|
857
857
|
"onAction-click"?: ((...args: any[]) => any) | undefined;
|
|
858
858
|
}>, {
|
|
859
|
+
actions: MenuAction[];
|
|
859
860
|
staticList: boolean;
|
|
860
861
|
multipleAccounts: boolean;
|
|
861
862
|
}, {}, {
|