sprintify-ui 0.0.92 → 0.0.94

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 (62) hide show
  1. package/dist/sprintify-ui.es.js +15391 -6131
  2. package/dist/style.css +1 -1
  3. package/dist/types/src/components/BaseActionItem.vue.d.ts +25 -102
  4. package/dist/types/src/components/BaseApp.vue.d.ts +8 -47
  5. package/dist/types/src/components/BaseAutocomplete.vue.d.ts +90 -326
  6. package/dist/types/src/components/BaseAutocompleteFetch.vue.d.ts +85 -290
  7. package/dist/types/src/components/BaseBadge.vue.d.ts +27 -110
  8. package/dist/types/src/components/BaseBelongsTo.vue.d.ts +89 -294
  9. package/dist/types/src/components/BaseButtonGroup.vue.d.ts +71 -254
  10. package/dist/types/src/components/BaseCard.vue.d.ts +15 -68
  11. package/dist/types/src/components/BaseClipboard.vue.d.ts +15 -68
  12. package/dist/types/src/components/BaseColor.vue.d.ts +79 -0
  13. package/dist/types/src/components/BaseDataIterator.vue.d.ts +82 -258
  14. package/dist/types/src/components/BaseDataTable.vue.d.ts +158 -509
  15. package/dist/types/src/components/BaseDescriptionList.vue.d.ts +8 -47
  16. package/dist/types/src/components/BaseDescriptionListItem.vue.d.ts +9 -48
  17. package/dist/types/src/components/BaseDialog.vue.d.ts +31 -131
  18. package/dist/types/src/components/BaseDropdown.vue.d.ts +28 -110
  19. package/dist/types/src/components/BaseField.vue.d.ts +31 -124
  20. package/dist/types/src/components/BaseFileUploader.vue.d.ts +54 -192
  21. package/dist/types/src/components/BaseForm.vue.d.ts +62 -226
  22. package/dist/types/src/components/BaseHasMany.vue.d.ts +66 -219
  23. package/dist/types/src/components/BaseInput.vue.d.ts +9 -0
  24. package/dist/types/src/components/BaseInputError.vue.d.ts +8 -47
  25. package/dist/types/src/components/BaseLayoutSidebar.vue.d.ts +25 -98
  26. package/dist/types/src/components/BaseLayoutSidebarConfigurable.vue.d.ts +39 -155
  27. package/dist/types/src/components/BaseLayoutStacked.vue.d.ts +17 -70
  28. package/dist/types/src/components/BaseLayoutStackedConfigurable.vue.d.ts +39 -155
  29. package/dist/types/src/components/BaseMediaLibrary.vue.d.ts +63 -234
  30. package/dist/types/src/components/BaseMenu.vue.d.ts +32 -105
  31. package/dist/types/src/components/BaseModalCenter.vue.d.ts +47 -118
  32. package/dist/types/src/components/BaseModalSide.vue.d.ts +29 -118
  33. package/dist/types/src/components/BaseNavbar.vue.d.ts +24 -87
  34. package/dist/types/src/components/BaseRadioGroup.vue.d.ts +53 -194
  35. package/dist/types/src/components/BaseReadMore.vue.d.ts +15 -68
  36. package/dist/types/src/components/BaseRichText.vue.d.ts +92 -0
  37. package/dist/types/src/components/BaseSelect.vue.d.ts +35 -144
  38. package/dist/types/src/components/BaseSideNavigation.vue.d.ts +8 -47
  39. package/dist/types/src/components/BaseSideNavigationItem.vue.d.ts +23 -94
  40. package/dist/types/src/components/BaseSkeleton.vue.d.ts +19 -82
  41. package/dist/types/src/components/BaseSwitch.vue.d.ts +35 -144
  42. package/dist/types/src/components/BaseSystemAlert.vue.d.ts +27 -116
  43. package/dist/types/src/components/BaseTabItem.vue.d.ts +23 -94
  44. package/dist/types/src/components/BaseTable.vue.d.ts +101 -361
  45. package/dist/types/src/components/BaseTableColumn.vue.d.ts +1 -1
  46. package/dist/types/src/components/BaseTabs.vue.d.ts +8 -47
  47. package/dist/types/src/components/BaseTagAutocomplete.vue.d.ts +66 -236
  48. package/dist/types/src/components/BaseTagAutocompleteFetch.vue.d.ts +62 -212
  49. package/dist/types/src/components/index.d.ts +3 -1
  50. package/package.json +5 -1
  51. package/src/components/BaseButtonGroup.vue +2 -2
  52. package/src/components/BaseColor.stories.js +52 -0
  53. package/src/components/BaseColor.vue +98 -0
  54. package/src/components/BaseForm.vue +3 -3
  55. package/src/components/BaseInput.stories.js +52 -0
  56. package/src/components/BaseInput.vue +38 -1
  57. package/src/components/BaseModalCenter.stories.js +5 -0
  58. package/src/components/BaseModalCenter.vue +21 -6
  59. package/src/components/BaseRichText.stories.js +102 -0
  60. package/src/components/BaseRichText.vue +121 -0
  61. package/src/components/BaseTextarea.vue +1 -1
  62. package/src/components/index.ts +4 -0
@@ -1,155 +1,36 @@
1
1
  import { User } from '@/types/User';
2
2
  import { PropType } from 'vue';
3
3
  import { ActionItem, ActionSection, NotificationsConfig } from '../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
- }>> & {
43
- "onNotification:click"?: ((...args: any[]) => any) | undefined;
44
- "onNotification:open"?: ((...args: any[]) => any) | undefined;
45
- } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "dark" | "notifications" | "appName" | "logoUrl">;
46
- $attrs: {
47
- [x: string]: unknown;
48
- };
49
- $refs: {
50
- [x: string]: unknown;
51
- };
52
- $slots: Readonly<{
53
- [name: string]: import("vue").Slot | undefined;
54
- }>;
55
- $root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null;
56
- $parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null;
57
- $emit: (event: "notification:click" | "notification:open", ...args: any[]) => void;
58
- $el: any;
59
- $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
60
- appName: {
61
- default: string;
62
- type: StringConstructor;
63
- };
64
- logoUrl: {
65
- default: string;
66
- type: StringConstructor;
67
- };
68
- menu: {
69
- required: true;
70
- type: PropType<ActionItem[] | ActionSection[]>;
71
- };
72
- userMenu: {
73
- required: true;
74
- type: PropType<ActionItem[]>;
75
- };
76
- user: {
77
- required: true;
78
- type: PropType<User>;
79
- };
80
- notifications: {
81
- default: undefined;
82
- type: PropType<NotificationsConfig>;
83
- };
84
- dark: {
85
- default: boolean;
86
- type: BooleanConstructor;
87
- };
88
- }>> & {
89
- "onNotification:click"?: ((...args: any[]) => any) | undefined;
90
- "onNotification:open"?: ((...args: any[]) => any) | undefined;
91
- }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("notification:click" | "notification:open")[], string, {
92
- dark: boolean;
93
- notifications: NotificationsConfig;
94
- appName: string;
95
- logoUrl: string;
96
- }, {}, string> & {
97
- beforeCreate?: ((() => void) | (() => void)[]) | undefined;
98
- created?: ((() => void) | (() => void)[]) | undefined;
99
- beforeMount?: ((() => void) | (() => void)[]) | undefined;
100
- mounted?: ((() => void) | (() => void)[]) | undefined;
101
- beforeUpdate?: ((() => void) | (() => void)[]) | undefined;
102
- updated?: ((() => void) | (() => void)[]) | undefined;
103
- activated?: ((() => void) | (() => void)[]) | undefined;
104
- deactivated?: ((() => void) | (() => void)[]) | undefined;
105
- beforeDestroy?: ((() => void) | (() => void)[]) | undefined;
106
- beforeUnmount?: ((() => void) | (() => void)[]) | undefined;
107
- destroyed?: ((() => void) | (() => void)[]) | undefined;
108
- unmounted?: ((() => void) | (() => void)[]) | undefined;
109
- renderTracked?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
110
- renderTriggered?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
111
- 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;
112
- };
113
- $forceUpdate: () => void;
114
- $nextTick: typeof import("vue").nextTick;
115
- $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;
116
- } & Readonly<import("vue").ExtractPropTypes<{
117
- appName: {
118
- default: string;
119
- type: StringConstructor;
120
- };
121
- logoUrl: {
122
- default: string;
123
- type: StringConstructor;
124
- };
125
- menu: {
126
- required: true;
127
- type: PropType<ActionItem[] | ActionSection[]>;
128
- };
129
- userMenu: {
130
- required: true;
131
- type: PropType<ActionItem[]>;
132
- };
133
- user: {
134
- required: true;
135
- type: PropType<User>;
136
- };
137
- notifications: {
138
- default: undefined;
139
- type: PropType<NotificationsConfig>;
140
- };
141
- dark: {
142
- default: boolean;
143
- type: BooleanConstructor;
144
- };
145
- }>> & {
146
- "onNotification:click"?: ((...args: any[]) => any) | undefined;
147
- "onNotification:open"?: ((...args: any[]) => any) | undefined;
148
- } & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {};
149
- __isFragment?: undefined;
150
- __isTeleport?: undefined;
151
- __isSuspense?: undefined;
152
- } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
4
+ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
5
+ appName: {
6
+ default: string;
7
+ type: StringConstructor;
8
+ };
9
+ logoUrl: {
10
+ default: string;
11
+ type: StringConstructor;
12
+ };
13
+ menu: {
14
+ required: true;
15
+ type: PropType<ActionItem[] | ActionSection[]>;
16
+ };
17
+ userMenu: {
18
+ required: true;
19
+ type: PropType<ActionItem[]>;
20
+ };
21
+ user: {
22
+ required: true;
23
+ type: PropType<User>;
24
+ };
25
+ notifications: {
26
+ default: undefined;
27
+ type: PropType<NotificationsConfig>;
28
+ };
29
+ dark: {
30
+ default: boolean;
31
+ type: BooleanConstructor;
32
+ };
33
+ }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("notification:click" | "notification:open")[], "notification:click" | "notification:open", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
153
34
  appName: {
154
35
  default: string;
155
36
  type: StringConstructor;
@@ -181,14 +62,17 @@ declare const _default: {
181
62
  }>> & {
182
63
  "onNotification:click"?: ((...args: any[]) => any) | undefined;
183
64
  "onNotification:open"?: ((...args: any[]) => any) | undefined;
184
- }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("notification:click" | "notification:open")[], "notification:click" | "notification:open", {
65
+ }, {
185
66
  dark: boolean;
186
67
  notifications: NotificationsConfig;
187
68
  appName: string;
188
69
  logoUrl: string;
189
- }, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
190
- $slots: {
191
- default: (_: {}) => any;
192
- };
193
- });
70
+ }>, {
71
+ default: (_: {}) => any;
72
+ }>;
194
73
  export default _default;
74
+ type __VLS_WithTemplateSlots<T, S> = T & {
75
+ new (): {
76
+ $slots: S;
77
+ };
78
+ };
@@ -1,76 +1,23 @@
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<{
1
+ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
63
2
  dark: {
64
3
  default: boolean;
65
4
  type: BooleanConstructor;
66
5
  };
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;
6
+ }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
7
+ dark: {
8
+ default: boolean;
9
+ type: BooleanConstructor;
74
10
  };
75
- });
11
+ }>>, {
12
+ dark: boolean;
13
+ }>, {
14
+ navbar: (_: {}) => any;
15
+ mobile: (_: {}) => any;
16
+ default: (_: {}) => any;
17
+ }>;
76
18
  export default _default;
19
+ type __VLS_WithTemplateSlots<T, S> = T & {
20
+ new (): {
21
+ $slots: S;
22
+ };
23
+ };
@@ -1,155 +1,36 @@
1
1
  import { User } from '@/types/User';
2
2
  import { PropType } from 'vue';
3
3
  import { ActionItem, NotificationsConfig } from '../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[]>;
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
- }>> & {
43
- "onNotification:click"?: ((...args: any[]) => any) | undefined;
44
- "onNotification:open"?: ((...args: any[]) => any) | undefined;
45
- } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "dark" | "notifications" | "appName" | "logoUrl">;
46
- $attrs: {
47
- [x: string]: unknown;
48
- };
49
- $refs: {
50
- [x: string]: unknown;
51
- };
52
- $slots: Readonly<{
53
- [name: string]: import("vue").Slot | undefined;
54
- }>;
55
- $root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null;
56
- $parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null;
57
- $emit: (event: "notification:click" | "notification:open", ...args: any[]) => void;
58
- $el: any;
59
- $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
60
- appName: {
61
- default: string;
62
- type: StringConstructor;
63
- };
64
- logoUrl: {
65
- default: string;
66
- type: StringConstructor;
67
- };
68
- menu: {
69
- required: true;
70
- type: PropType<ActionItem[]>;
71
- };
72
- userMenu: {
73
- required: true;
74
- type: PropType<ActionItem[]>;
75
- };
76
- user: {
77
- required: true;
78
- type: PropType<User>;
79
- };
80
- notifications: {
81
- default: undefined;
82
- type: PropType<NotificationsConfig>;
83
- };
84
- dark: {
85
- default: boolean;
86
- type: BooleanConstructor;
87
- };
88
- }>> & {
89
- "onNotification:click"?: ((...args: any[]) => any) | undefined;
90
- "onNotification:open"?: ((...args: any[]) => any) | undefined;
91
- }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("notification:click" | "notification:open")[], string, {
92
- dark: boolean;
93
- notifications: NotificationsConfig;
94
- appName: string;
95
- logoUrl: string;
96
- }, {}, string> & {
97
- beforeCreate?: ((() => void) | (() => void)[]) | undefined;
98
- created?: ((() => void) | (() => void)[]) | undefined;
99
- beforeMount?: ((() => void) | (() => void)[]) | undefined;
100
- mounted?: ((() => void) | (() => void)[]) | undefined;
101
- beforeUpdate?: ((() => void) | (() => void)[]) | undefined;
102
- updated?: ((() => void) | (() => void)[]) | undefined;
103
- activated?: ((() => void) | (() => void)[]) | undefined;
104
- deactivated?: ((() => void) | (() => void)[]) | undefined;
105
- beforeDestroy?: ((() => void) | (() => void)[]) | undefined;
106
- beforeUnmount?: ((() => void) | (() => void)[]) | undefined;
107
- destroyed?: ((() => void) | (() => void)[]) | undefined;
108
- unmounted?: ((() => void) | (() => void)[]) | undefined;
109
- renderTracked?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
110
- renderTriggered?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
111
- 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;
112
- };
113
- $forceUpdate: () => void;
114
- $nextTick: typeof import("vue").nextTick;
115
- $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;
116
- } & Readonly<import("vue").ExtractPropTypes<{
117
- appName: {
118
- default: string;
119
- type: StringConstructor;
120
- };
121
- logoUrl: {
122
- default: string;
123
- type: StringConstructor;
124
- };
125
- menu: {
126
- required: true;
127
- type: PropType<ActionItem[]>;
128
- };
129
- userMenu: {
130
- required: true;
131
- type: PropType<ActionItem[]>;
132
- };
133
- user: {
134
- required: true;
135
- type: PropType<User>;
136
- };
137
- notifications: {
138
- default: undefined;
139
- type: PropType<NotificationsConfig>;
140
- };
141
- dark: {
142
- default: boolean;
143
- type: BooleanConstructor;
144
- };
145
- }>> & {
146
- "onNotification:click"?: ((...args: any[]) => any) | undefined;
147
- "onNotification:open"?: ((...args: any[]) => any) | undefined;
148
- } & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {};
149
- __isFragment?: undefined;
150
- __isTeleport?: undefined;
151
- __isSuspense?: undefined;
152
- } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
4
+ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
5
+ appName: {
6
+ default: string;
7
+ type: StringConstructor;
8
+ };
9
+ logoUrl: {
10
+ default: string;
11
+ type: StringConstructor;
12
+ };
13
+ menu: {
14
+ required: true;
15
+ type: PropType<ActionItem[]>;
16
+ };
17
+ userMenu: {
18
+ required: true;
19
+ type: PropType<ActionItem[]>;
20
+ };
21
+ user: {
22
+ required: true;
23
+ type: PropType<User>;
24
+ };
25
+ notifications: {
26
+ default: undefined;
27
+ type: PropType<NotificationsConfig>;
28
+ };
29
+ dark: {
30
+ default: boolean;
31
+ type: BooleanConstructor;
32
+ };
33
+ }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("notification:click" | "notification:open")[], "notification:click" | "notification:open", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
153
34
  appName: {
154
35
  default: string;
155
36
  type: StringConstructor;
@@ -181,14 +62,17 @@ declare const _default: {
181
62
  }>> & {
182
63
  "onNotification:click"?: ((...args: any[]) => any) | undefined;
183
64
  "onNotification:open"?: ((...args: any[]) => any) | undefined;
184
- }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("notification:click" | "notification:open")[], "notification:click" | "notification:open", {
65
+ }, {
185
66
  dark: boolean;
186
67
  notifications: NotificationsConfig;
187
68
  appName: string;
188
69
  logoUrl: string;
189
- }, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
190
- $slots: {
191
- default: (_: {}) => any;
192
- };
193
- });
70
+ }>, {
71
+ default: (_: {}) => any;
72
+ }>;
194
73
  export default _default;
74
+ type __VLS_WithTemplateSlots<T, S> = T & {
75
+ new (): {
76
+ $slots: S;
77
+ };
78
+ };