@morghulis/core 1.0.59 → 1.0.60

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.
@@ -1,10 +1,13 @@
1
- declare const __VLS_export: import("vue").DefineComponent<{}, {
1
+ type __VLS_Props = {
2
+ host?: boolean;
3
+ };
4
+ declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {
2
5
  getData: () => {
3
6
  username: string;
4
7
  password: string;
5
8
  email: string;
6
9
  signin: boolean;
7
10
  } | undefined;
8
- }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
11
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
9
12
  declare const _default: typeof __VLS_export;
10
13
  export default _default;
@@ -0,0 +1,10 @@
1
+ declare function open(): void;
2
+ declare const __VLS_export: import("vue").DefineComponent<{}, {
3
+ open: typeof open;
4
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
5
+ closed: (...args: any[]) => void;
6
+ }, string, import("vue").PublicProps, Readonly<{}> & Readonly<{
7
+ onClosed?: ((...args: any[]) => any) | undefined;
8
+ }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
9
+ declare const _default: typeof __VLS_export;
10
+ export default _default;
@@ -5,6 +5,7 @@ import MenuRoleDialog from "./MenuRoleDialog.vue";
5
5
  import MenuAddDialog from "./MenuAddDialog.vue";
6
6
  import MenuPathPopover from "./MenuPathPopover.vue";
7
7
  import MenuViewDialog from "./MenuViewDialog.vue";
8
+ import type CreateAccountDialog from "./CreateAccountDialog.vue";
8
9
  export { MenuAddDialog, MenuPathPopover, AccountRoleDialog, RoleAccountDialog, RoleMenuDialog, MenuRoleDialog, MenuViewDialog };
9
10
  export type MenuAddDialogInstance = InstanceType<typeof MenuAddDialog> | undefined;
10
11
  export type MenuPathPopoverInstance = InstanceType<typeof MenuPathPopover> | undefined;
@@ -13,3 +14,4 @@ export type RoleAccountDialogInstance = InstanceType<typeof RoleAccountDialog> |
13
14
  export type RoleMenuDialogInstance = InstanceType<typeof RoleMenuDialog> | undefined;
14
15
  export type MenuRoleDialogInstance = InstanceType<typeof MenuRoleDialog> | undefined;
15
16
  export type MenuViewDialogInstance = InstanceType<typeof MenuViewDialog> | undefined;
17
+ export type CreateAccountRoleDialogInstance = InstanceType<typeof CreateAccountDialog> | undefined;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@morghulis/core",
3
- "version": "1.0.59",
3
+ "version": "1.0.60",
4
4
  "type": "module",
5
5
  "publishConfig": {
6
6
  "access": "public"