sprintify-ui 0.0.19 → 0.0.21

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.
Files changed (54) hide show
  1. package/dist/sprintify-ui.es.js +6877 -4264
  2. package/dist/types/src/components/BaseActionItem.vue.d.ts +121 -0
  3. package/dist/types/src/components/BaseAlert.vue.d.ts +3 -3
  4. package/dist/types/src/components/BaseAppDialogs.vue.d.ts +1 -1
  5. package/dist/types/src/components/BaseBoolean.vue.d.ts +2 -2
  6. package/dist/types/src/components/BaseCounter.vue.d.ts +3 -3
  7. package/dist/types/src/components/BaseDialog.vue.d.ts +4 -4
  8. package/dist/types/src/components/BaseInput.vue.d.ts +1 -1
  9. package/dist/types/src/components/BaseLayoutNotificationDropdown.vue.d.ts +24 -0
  10. package/dist/types/src/components/BaseLayoutNotificationItem.vue.d.ts +14 -0
  11. package/dist/types/src/components/BaseLayoutSidebar.vue.d.ts +114 -0
  12. package/dist/types/src/components/BaseLayoutSidebarConfigurable.vue.d.ts +182 -0
  13. package/dist/types/src/components/BaseLayoutStacked.vue.d.ts +76 -0
  14. package/dist/types/src/components/BaseLayoutStackedConfigurable.vue.d.ts +182 -0
  15. package/dist/types/src/components/BaseMenu.vue.d.ts +17 -15
  16. package/dist/types/src/components/BaseMenuItem.vue.d.ts +5 -5
  17. package/dist/types/src/components/BaseNavbar.vue.d.ts +20 -1
  18. package/dist/types/src/components/BaseNavbarItem.vue.d.ts +17 -71
  19. package/dist/types/src/components/BaseNavbarItemContent.vue.d.ts +11 -2
  20. package/dist/types/src/components/BaseNavbarSideItem.vue.d.ts +26 -0
  21. package/dist/types/src/components/BaseNavbarSideItemContent.vue.d.ts +50 -0
  22. package/dist/types/src/components/BaseSwitch.vue.d.ts +3 -3
  23. package/dist/types/src/components/BaseSystemAlert.vue.d.ts +8 -8
  24. package/dist/types/src/components/BaseTableColumn.vue.d.ts +1 -1
  25. package/dist/types/src/components/index.d.ts +6 -1
  26. package/dist/types/src/index.d.ts +12 -0
  27. package/dist/types/src/types/Notification.d.ts +8 -0
  28. package/dist/types/src/types/types.d.ts +9 -0
  29. package/package.json +6 -3
  30. package/src/components/BaseActionItem.vue +68 -0
  31. package/src/components/{HasMany.stories.js → BaseHasMany.stories.js} +0 -0
  32. package/src/components/BaseLayoutNotificationDropdown.vue +101 -0
  33. package/src/components/BaseLayoutNotificationItem.vue +58 -0
  34. package/src/components/BaseLayoutSidebar.vue +199 -0
  35. package/src/components/BaseLayoutSidebarConfigurable.stories.js +129 -0
  36. package/src/components/BaseLayoutSidebarConfigurable.vue +118 -0
  37. package/src/components/BaseLayoutStacked.vue +52 -0
  38. package/src/components/BaseLayoutStackedConfigurable.stories.js +110 -0
  39. package/src/components/BaseLayoutStackedConfigurable.vue +129 -0
  40. package/src/components/BaseMediaItem.vue +7 -7
  41. package/src/components/BaseMediaLibrary.vue +3 -3
  42. package/src/components/BaseMediaPreview.vue +1 -1
  43. package/src/components/BaseMenu.vue +12 -4
  44. package/src/components/BaseNavbar.stories.js +18 -14
  45. package/src/components/BaseNavbar.vue +19 -3
  46. package/src/components/BaseNavbarItem.vue +17 -43
  47. package/src/components/BaseNavbarItemContent.vue +36 -16
  48. package/src/components/BaseNavbarSideItem.vue +42 -0
  49. package/src/components/BaseNavbarSideItemContent.vue +77 -0
  50. package/src/components/index.ts +11 -0
  51. package/src/lang/en.json +3 -0
  52. package/src/lang/fr.json +3 -0
  53. package/src/types/Notification.ts +10 -0
  54. package/src/types/types.ts +11 -0
@@ -0,0 +1,121 @@
1
+ import { PropType } from 'vue';
2
+ import { ActionItem } from '@/types/types';
3
+ declare const _default: {
4
+ new (...args: any[]): {
5
+ $: import("vue").ComponentInternalInstance;
6
+ $data: {};
7
+ $props: Partial<{
8
+ dark: boolean;
9
+ itemClass: string | Record<string, any> | unknown[];
10
+ }> & Omit<Readonly<import("vue").ExtractPropTypes<{
11
+ item: {
12
+ required: true;
13
+ type: PropType<ActionItem>;
14
+ };
15
+ dark: {
16
+ default: boolean;
17
+ type: BooleanConstructor;
18
+ };
19
+ itemClass: {
20
+ default: string;
21
+ type: (ObjectConstructor | StringConstructor | ArrayConstructor)[];
22
+ };
23
+ }>> & {
24
+ onClick?: ((...args: any[]) => any) | undefined;
25
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "dark" | "itemClass">;
26
+ $attrs: {
27
+ [x: string]: unknown;
28
+ };
29
+ $refs: {
30
+ [x: string]: unknown;
31
+ };
32
+ $slots: Readonly<{
33
+ [name: string]: import("vue").Slot | undefined;
34
+ }>;
35
+ $root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null;
36
+ $parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null;
37
+ $emit: (event: "click", ...args: any[]) => void;
38
+ $el: any;
39
+ $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
40
+ item: {
41
+ required: true;
42
+ type: PropType<ActionItem>;
43
+ };
44
+ dark: {
45
+ default: boolean;
46
+ type: BooleanConstructor;
47
+ };
48
+ itemClass: {
49
+ default: string;
50
+ type: (ObjectConstructor | StringConstructor | ArrayConstructor)[];
51
+ };
52
+ }>> & {
53
+ onClick?: ((...args: any[]) => any) | undefined;
54
+ }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "click"[], string, {
55
+ dark: boolean;
56
+ itemClass: string | Record<string, any> | unknown[];
57
+ }, {}, string> & {
58
+ beforeCreate?: ((() => void) | (() => void)[]) | undefined;
59
+ created?: ((() => void) | (() => void)[]) | undefined;
60
+ beforeMount?: ((() => void) | (() => void)[]) | undefined;
61
+ mounted?: ((() => void) | (() => void)[]) | undefined;
62
+ beforeUpdate?: ((() => void) | (() => void)[]) | undefined;
63
+ updated?: ((() => void) | (() => void)[]) | undefined;
64
+ activated?: ((() => void) | (() => void)[]) | undefined;
65
+ deactivated?: ((() => void) | (() => void)[]) | undefined;
66
+ beforeDestroy?: ((() => void) | (() => void)[]) | undefined;
67
+ beforeUnmount?: ((() => void) | (() => void)[]) | undefined;
68
+ destroyed?: ((() => void) | (() => void)[]) | undefined;
69
+ unmounted?: ((() => void) | (() => void)[]) | undefined;
70
+ renderTracked?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
71
+ renderTriggered?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
72
+ errorCaptured?: (((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null, info: string) => boolean | void) | ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null, info: string) => boolean | void)[]) | undefined;
73
+ };
74
+ $forceUpdate: () => void;
75
+ $nextTick: typeof import("vue").nextTick;
76
+ $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (args_0: R, args_1: R) => any : (...args: any) => any, options?: import("vue").WatchOptions<boolean> | undefined): import("vue").WatchStopHandle;
77
+ } & Readonly<import("vue").ExtractPropTypes<{
78
+ item: {
79
+ required: true;
80
+ type: PropType<ActionItem>;
81
+ };
82
+ dark: {
83
+ default: boolean;
84
+ type: BooleanConstructor;
85
+ };
86
+ itemClass: {
87
+ default: string;
88
+ type: (ObjectConstructor | StringConstructor | ArrayConstructor)[];
89
+ };
90
+ }>> & {
91
+ onClick?: ((...args: any[]) => any) | undefined;
92
+ } & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {};
93
+ __isFragment?: undefined;
94
+ __isTeleport?: undefined;
95
+ __isSuspense?: undefined;
96
+ } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
97
+ item: {
98
+ required: true;
99
+ type: PropType<ActionItem>;
100
+ };
101
+ dark: {
102
+ default: boolean;
103
+ type: BooleanConstructor;
104
+ };
105
+ itemClass: {
106
+ default: string;
107
+ type: (ObjectConstructor | StringConstructor | ArrayConstructor)[];
108
+ };
109
+ }>> & {
110
+ onClick?: ((...args: any[]) => any) | undefined;
111
+ }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "click"[], "click", {
112
+ dark: boolean;
113
+ itemClass: string | Record<string, any> | unknown[];
114
+ }, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
115
+ $slots: {
116
+ default: (_: {
117
+ active: boolean;
118
+ }) => any;
119
+ };
120
+ });
121
+ export default _default;
@@ -7,7 +7,7 @@ declare const _default: import("vue").DefineComponent<{
7
7
  };
8
8
  color: {
9
9
  default: string;
10
- type: PropType<"success" | "info" | "danger" | "warning">;
10
+ type: PropType<"danger" | "success" | "warning" | "info">;
11
11
  };
12
12
  showIcon: {
13
13
  default: boolean;
@@ -32,7 +32,7 @@ declare const _default: import("vue").DefineComponent<{
32
32
  };
33
33
  color: {
34
34
  default: string;
35
- type: PropType<"success" | "info" | "danger" | "warning">;
35
+ type: PropType<"danger" | "success" | "warning" | "info">;
36
36
  };
37
37
  showIcon: {
38
38
  default: boolean;
@@ -44,7 +44,7 @@ declare const _default: import("vue").DefineComponent<{
44
44
  };
45
45
  }>>, {
46
46
  title: string;
47
- color: "success" | "info" | "danger" | "warning";
47
+ color: "danger" | "success" | "warning" | "info";
48
48
  showIcon: boolean;
49
49
  bordered: boolean;
50
50
  }>;
@@ -1,7 +1,7 @@
1
1
  declare const _default: import("vue").DefineComponent<{}, {
2
2
  dialogs: import("vue").ComputedRef<{
3
3
  id: number;
4
- color: "success" | "info" | "danger" | "warning";
4
+ color: "danger" | "success" | "warning" | "info";
5
5
  title: string;
6
6
  message: string;
7
7
  confirmText: string;
@@ -1,12 +1,12 @@
1
1
  declare const _default: import("vue").DefineComponent<{
2
2
  modelValue: {
3
3
  required: true;
4
- type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
4
+ type: (BooleanConstructor | StringConstructor | NumberConstructor)[];
5
5
  };
6
6
  }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
7
7
  modelValue: {
8
8
  required: true;
9
- type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
9
+ type: (BooleanConstructor | StringConstructor | NumberConstructor)[];
10
10
  };
11
11
  }>>, {}>;
12
12
  export default _default;
@@ -14,7 +14,7 @@ declare const _default: import("vue").DefineComponent<{
14
14
  };
15
15
  color: {
16
16
  default: string;
17
- type: PropType<"danger" | "dark" | "light" | "primary" | "white">;
17
+ type: PropType<"dark" | "light" | "danger" | "primary" | "white">;
18
18
  };
19
19
  }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
20
20
  count: {
@@ -31,10 +31,10 @@ declare const _default: import("vue").DefineComponent<{
31
31
  };
32
32
  color: {
33
33
  default: string;
34
- type: PropType<"danger" | "dark" | "light" | "primary" | "white">;
34
+ type: PropType<"dark" | "light" | "danger" | "primary" | "white">;
35
35
  };
36
36
  }>>, {
37
- color: "danger" | "dark" | "light" | "primary" | "white";
37
+ color: "dark" | "light" | "danger" | "primary" | "white";
38
38
  size: string;
39
39
  maxDigit: number;
40
40
  }>;
@@ -11,7 +11,7 @@ declare const _default: {
11
11
  }> & Omit<Readonly<import("vue").ExtractPropTypes<{
12
12
  color: {
13
13
  required: true;
14
- type: PropType<"success" | "info" | "danger" | "warning">;
14
+ type: PropType<"danger" | "success" | "warning" | "info">;
15
15
  };
16
16
  title: {
17
17
  default: string;
@@ -49,7 +49,7 @@ declare const _default: {
49
49
  $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
50
50
  color: {
51
51
  required: true;
52
- type: PropType<"success" | "info" | "danger" | "warning">;
52
+ type: PropType<"danger" | "success" | "warning" | "info">;
53
53
  };
54
54
  title: {
55
55
  default: string;
@@ -98,7 +98,7 @@ declare const _default: {
98
98
  } & Readonly<import("vue").ExtractPropTypes<{
99
99
  color: {
100
100
  required: true;
101
- type: PropType<"success" | "info" | "danger" | "warning">;
101
+ type: PropType<"danger" | "success" | "warning" | "info">;
102
102
  };
103
103
  title: {
104
104
  default: string;
@@ -126,7 +126,7 @@ declare const _default: {
126
126
  } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
127
127
  color: {
128
128
  required: true;
129
- type: PropType<"success" | "info" | "danger" | "warning">;
129
+ type: PropType<"danger" | "success" | "warning" | "info">;
130
130
  };
131
131
  title: {
132
132
  default: string;
@@ -85,11 +85,11 @@ declare const _default: import("vue").DefineComponent<{
85
85
  required: boolean;
86
86
  type: string;
87
87
  name: string;
88
+ step: number;
88
89
  modelValue: string | number | null;
89
90
  placeholder: string;
90
91
  disabled: boolean;
91
92
  autocomplete: boolean;
92
- step: number;
93
93
  preventSubmit: boolean;
94
94
  }>;
95
95
  export default _default;
@@ -0,0 +1,24 @@
1
+ import { PropType } from 'vue';
2
+ import { NotificationsConfig } from '../types/types';
3
+ declare const _default: import("vue").DefineComponent<{
4
+ notificationsConfig: {
5
+ required: true;
6
+ type: PropType<NotificationsConfig>;
7
+ };
8
+ dark: {
9
+ default: boolean;
10
+ type: BooleanConstructor;
11
+ };
12
+ }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
13
+ notificationsConfig: {
14
+ required: true;
15
+ type: PropType<NotificationsConfig>;
16
+ };
17
+ dark: {
18
+ default: boolean;
19
+ type: BooleanConstructor;
20
+ };
21
+ }>>, {
22
+ dark: boolean;
23
+ }>;
24
+ export default _default;
@@ -0,0 +1,14 @@
1
+ import { Notification } from '@/types/Notification';
2
+ import { PropType } from 'vue';
3
+ declare const _default: import("vue").DefineComponent<{
4
+ notification: {
5
+ required: true;
6
+ type: PropType<Notification>;
7
+ };
8
+ }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
9
+ notification: {
10
+ required: true;
11
+ type: PropType<Notification>;
12
+ };
13
+ }>>, {}>;
14
+ export default _default;
@@ -0,0 +1,114 @@
1
+ declare const _default: {
2
+ new (...args: any[]): {
3
+ $: import("vue").ComponentInternalInstance;
4
+ $data: {};
5
+ $props: Partial<{
6
+ dark: boolean;
7
+ appName: string;
8
+ logoUrl: string;
9
+ }> & Omit<Readonly<import("vue").ExtractPropTypes<{
10
+ appName: {
11
+ default: string;
12
+ type: StringConstructor;
13
+ };
14
+ logoUrl: {
15
+ default: string;
16
+ type: StringConstructor;
17
+ };
18
+ dark: {
19
+ default: boolean;
20
+ type: BooleanConstructor;
21
+ };
22
+ }>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "dark" | "appName" | "logoUrl">;
23
+ $attrs: {
24
+ [x: string]: unknown;
25
+ };
26
+ $refs: {
27
+ [x: string]: unknown;
28
+ };
29
+ $slots: Readonly<{
30
+ [name: string]: import("vue").Slot | undefined;
31
+ }>;
32
+ $root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null;
33
+ $parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null;
34
+ $emit: (event: string, ...args: any[]) => void;
35
+ $el: any;
36
+ $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
37
+ appName: {
38
+ default: string;
39
+ type: StringConstructor;
40
+ };
41
+ logoUrl: {
42
+ default: string;
43
+ type: StringConstructor;
44
+ };
45
+ dark: {
46
+ default: boolean;
47
+ type: BooleanConstructor;
48
+ };
49
+ }>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
50
+ dark: boolean;
51
+ appName: string;
52
+ logoUrl: string;
53
+ }, {}, string> & {
54
+ beforeCreate?: ((() => void) | (() => void)[]) | undefined;
55
+ created?: ((() => void) | (() => void)[]) | undefined;
56
+ beforeMount?: ((() => void) | (() => void)[]) | undefined;
57
+ mounted?: ((() => void) | (() => void)[]) | undefined;
58
+ beforeUpdate?: ((() => void) | (() => void)[]) | undefined;
59
+ updated?: ((() => void) | (() => void)[]) | undefined;
60
+ activated?: ((() => void) | (() => void)[]) | undefined;
61
+ deactivated?: ((() => void) | (() => void)[]) | undefined;
62
+ beforeDestroy?: ((() => void) | (() => void)[]) | undefined;
63
+ beforeUnmount?: ((() => void) | (() => void)[]) | undefined;
64
+ destroyed?: ((() => void) | (() => void)[]) | undefined;
65
+ unmounted?: ((() => void) | (() => void)[]) | undefined;
66
+ renderTracked?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
67
+ renderTriggered?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
68
+ errorCaptured?: (((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null, info: string) => boolean | void) | ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null, info: string) => boolean | void)[]) | undefined;
69
+ };
70
+ $forceUpdate: () => void;
71
+ $nextTick: typeof import("vue").nextTick;
72
+ $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (args_0: R, args_1: R) => any : (...args: any) => any, options?: import("vue").WatchOptions<boolean> | undefined): import("vue").WatchStopHandle;
73
+ } & Readonly<import("vue").ExtractPropTypes<{
74
+ appName: {
75
+ default: string;
76
+ type: StringConstructor;
77
+ };
78
+ logoUrl: {
79
+ default: string;
80
+ type: StringConstructor;
81
+ };
82
+ dark: {
83
+ default: boolean;
84
+ type: BooleanConstructor;
85
+ };
86
+ }>> & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {};
87
+ __isFragment?: undefined;
88
+ __isTeleport?: undefined;
89
+ __isSuspense?: undefined;
90
+ } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
91
+ appName: {
92
+ default: string;
93
+ type: StringConstructor;
94
+ };
95
+ logoUrl: {
96
+ default: string;
97
+ type: StringConstructor;
98
+ };
99
+ dark: {
100
+ default: boolean;
101
+ type: BooleanConstructor;
102
+ };
103
+ }>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
104
+ dark: boolean;
105
+ appName: string;
106
+ logoUrl: string;
107
+ }, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
108
+ $slots: {
109
+ menu: (_: {}) => any;
110
+ navbar: (_: {}) => any;
111
+ default: (_: {}) => any;
112
+ };
113
+ });
114
+ export default _default;
@@ -0,0 +1,182 @@
1
+ import { User } from '@/types/User';
2
+ import { PropType } from 'vue';
3
+ import { ActionItem, ActionSection, NotificationsConfig } from '../types/types';
4
+ declare const _default: {
5
+ new (...args: any[]): {
6
+ $: import("vue").ComponentInternalInstance;
7
+ $data: {};
8
+ $props: Partial<{
9
+ dark: boolean;
10
+ notifications: NotificationsConfig;
11
+ appName: string;
12
+ logoUrl: string;
13
+ }> & Omit<Readonly<import("vue").ExtractPropTypes<{
14
+ appName: {
15
+ default: string;
16
+ type: StringConstructor;
17
+ };
18
+ logoUrl: {
19
+ default: string;
20
+ type: StringConstructor;
21
+ };
22
+ menu: {
23
+ required: true;
24
+ type: PropType<ActionItem[] | ActionSection[]>;
25
+ };
26
+ userMenu: {
27
+ required: true;
28
+ type: PropType<ActionItem[]>;
29
+ };
30
+ user: {
31
+ required: true;
32
+ type: PropType<User>;
33
+ };
34
+ notifications: {
35
+ default: undefined;
36
+ type: PropType<NotificationsConfig>;
37
+ };
38
+ dark: {
39
+ default: boolean;
40
+ type: BooleanConstructor;
41
+ };
42
+ }>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "dark" | "notifications" | "appName" | "logoUrl">;
43
+ $attrs: {
44
+ [x: string]: unknown;
45
+ };
46
+ $refs: {
47
+ [x: string]: unknown;
48
+ };
49
+ $slots: Readonly<{
50
+ [name: string]: import("vue").Slot | undefined;
51
+ }>;
52
+ $root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null;
53
+ $parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null;
54
+ $emit: (event: string, ...args: any[]) => void;
55
+ $el: any;
56
+ $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
57
+ appName: {
58
+ default: string;
59
+ type: StringConstructor;
60
+ };
61
+ logoUrl: {
62
+ default: string;
63
+ type: StringConstructor;
64
+ };
65
+ menu: {
66
+ required: true;
67
+ type: PropType<ActionItem[] | ActionSection[]>;
68
+ };
69
+ userMenu: {
70
+ required: true;
71
+ type: PropType<ActionItem[]>;
72
+ };
73
+ user: {
74
+ required: true;
75
+ type: PropType<User>;
76
+ };
77
+ notifications: {
78
+ default: undefined;
79
+ type: PropType<NotificationsConfig>;
80
+ };
81
+ dark: {
82
+ default: boolean;
83
+ type: BooleanConstructor;
84
+ };
85
+ }>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
86
+ dark: boolean;
87
+ notifications: NotificationsConfig;
88
+ appName: string;
89
+ logoUrl: string;
90
+ }, {}, string> & {
91
+ beforeCreate?: ((() => void) | (() => void)[]) | undefined;
92
+ created?: ((() => void) | (() => void)[]) | undefined;
93
+ beforeMount?: ((() => void) | (() => void)[]) | undefined;
94
+ mounted?: ((() => void) | (() => void)[]) | undefined;
95
+ beforeUpdate?: ((() => void) | (() => void)[]) | undefined;
96
+ updated?: ((() => void) | (() => void)[]) | undefined;
97
+ activated?: ((() => void) | (() => void)[]) | undefined;
98
+ deactivated?: ((() => void) | (() => void)[]) | undefined;
99
+ beforeDestroy?: ((() => void) | (() => void)[]) | undefined;
100
+ beforeUnmount?: ((() => void) | (() => void)[]) | undefined;
101
+ destroyed?: ((() => void) | (() => void)[]) | undefined;
102
+ unmounted?: ((() => void) | (() => void)[]) | undefined;
103
+ renderTracked?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
104
+ renderTriggered?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
105
+ errorCaptured?: (((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null, info: string) => boolean | void) | ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null, info: string) => boolean | void)[]) | undefined;
106
+ };
107
+ $forceUpdate: () => void;
108
+ $nextTick: typeof import("vue").nextTick;
109
+ $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (args_0: R, args_1: R) => any : (...args: any) => any, options?: import("vue").WatchOptions<boolean> | undefined): import("vue").WatchStopHandle;
110
+ } & Readonly<import("vue").ExtractPropTypes<{
111
+ appName: {
112
+ default: string;
113
+ type: StringConstructor;
114
+ };
115
+ logoUrl: {
116
+ default: string;
117
+ type: StringConstructor;
118
+ };
119
+ menu: {
120
+ required: true;
121
+ type: PropType<ActionItem[] | ActionSection[]>;
122
+ };
123
+ userMenu: {
124
+ required: true;
125
+ type: PropType<ActionItem[]>;
126
+ };
127
+ user: {
128
+ required: true;
129
+ type: PropType<User>;
130
+ };
131
+ notifications: {
132
+ default: undefined;
133
+ type: PropType<NotificationsConfig>;
134
+ };
135
+ dark: {
136
+ default: boolean;
137
+ type: BooleanConstructor;
138
+ };
139
+ }>> & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {};
140
+ __isFragment?: undefined;
141
+ __isTeleport?: undefined;
142
+ __isSuspense?: undefined;
143
+ } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
144
+ appName: {
145
+ default: string;
146
+ type: StringConstructor;
147
+ };
148
+ logoUrl: {
149
+ default: string;
150
+ type: StringConstructor;
151
+ };
152
+ menu: {
153
+ required: true;
154
+ type: PropType<ActionItem[] | ActionSection[]>;
155
+ };
156
+ userMenu: {
157
+ required: true;
158
+ type: PropType<ActionItem[]>;
159
+ };
160
+ user: {
161
+ required: true;
162
+ type: PropType<User>;
163
+ };
164
+ notifications: {
165
+ default: undefined;
166
+ type: PropType<NotificationsConfig>;
167
+ };
168
+ dark: {
169
+ default: boolean;
170
+ type: BooleanConstructor;
171
+ };
172
+ }>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
173
+ dark: boolean;
174
+ notifications: NotificationsConfig;
175
+ appName: string;
176
+ logoUrl: string;
177
+ }, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
178
+ $slots: {
179
+ default: (_: {}) => any;
180
+ };
181
+ });
182
+ export default _default;
@@ -0,0 +1,76 @@
1
+ declare const _default: {
2
+ new (...args: any[]): {
3
+ $: import("vue").ComponentInternalInstance;
4
+ $data: {};
5
+ $props: Partial<{
6
+ dark: boolean;
7
+ }> & Omit<Readonly<import("vue").ExtractPropTypes<{
8
+ dark: {
9
+ default: boolean;
10
+ type: BooleanConstructor;
11
+ };
12
+ }>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "dark">;
13
+ $attrs: {
14
+ [x: string]: unknown;
15
+ };
16
+ $refs: {
17
+ [x: string]: unknown;
18
+ };
19
+ $slots: Readonly<{
20
+ [name: string]: import("vue").Slot | undefined;
21
+ }>;
22
+ $root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null;
23
+ $parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null;
24
+ $emit: (event: string, ...args: any[]) => void;
25
+ $el: any;
26
+ $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
27
+ dark: {
28
+ default: boolean;
29
+ type: BooleanConstructor;
30
+ };
31
+ }>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
32
+ dark: boolean;
33
+ }, {}, string> & {
34
+ beforeCreate?: ((() => void) | (() => void)[]) | undefined;
35
+ created?: ((() => void) | (() => void)[]) | undefined;
36
+ beforeMount?: ((() => void) | (() => void)[]) | undefined;
37
+ mounted?: ((() => void) | (() => void)[]) | undefined;
38
+ beforeUpdate?: ((() => void) | (() => void)[]) | undefined;
39
+ updated?: ((() => void) | (() => void)[]) | undefined;
40
+ activated?: ((() => void) | (() => void)[]) | undefined;
41
+ deactivated?: ((() => void) | (() => void)[]) | undefined;
42
+ beforeDestroy?: ((() => void) | (() => void)[]) | undefined;
43
+ beforeUnmount?: ((() => void) | (() => void)[]) | undefined;
44
+ destroyed?: ((() => void) | (() => void)[]) | undefined;
45
+ unmounted?: ((() => void) | (() => void)[]) | undefined;
46
+ renderTracked?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
47
+ renderTriggered?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
48
+ errorCaptured?: (((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null, info: string) => boolean | void) | ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null, info: string) => boolean | void)[]) | undefined;
49
+ };
50
+ $forceUpdate: () => void;
51
+ $nextTick: typeof import("vue").nextTick;
52
+ $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (args_0: R, args_1: R) => any : (...args: any) => any, options?: import("vue").WatchOptions<boolean> | undefined): import("vue").WatchStopHandle;
53
+ } & Readonly<import("vue").ExtractPropTypes<{
54
+ dark: {
55
+ default: boolean;
56
+ type: BooleanConstructor;
57
+ };
58
+ }>> & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {};
59
+ __isFragment?: undefined;
60
+ __isTeleport?: undefined;
61
+ __isSuspense?: undefined;
62
+ } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
63
+ dark: {
64
+ default: boolean;
65
+ type: BooleanConstructor;
66
+ };
67
+ }>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
68
+ dark: boolean;
69
+ }, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
70
+ $slots: {
71
+ navbar: (_: {}) => any;
72
+ mobile: (_: {}) => any;
73
+ default: (_: {}) => any;
74
+ };
75
+ });
76
+ export default _default;