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,182 @@
1
+ import { User } from '@/types/User';
2
+ import { PropType } from 'vue';
3
+ import { ActionItem, 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[]>;
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[]>;
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[]>;
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[]>;
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;
@@ -6,8 +6,8 @@ declare const _default: {
6
6
  $data: {};
7
7
  $props: Partial<{
8
8
  items: MenuItemInterface[];
9
- menuClass: string;
10
- position: "bottom-left" | "bottom-right";
9
+ menuClass: string | Record<string, any> | unknown[];
10
+ position: "custom" | "bottom-left" | "bottom-right";
11
11
  }> & Omit<Readonly<import("vue").ExtractPropTypes<{
12
12
  items: {
13
13
  default: undefined;
@@ -15,11 +15,11 @@ declare const _default: {
15
15
  };
16
16
  menuClass: {
17
17
  default: string;
18
- type: StringConstructor;
18
+ type: (ObjectConstructor | StringConstructor | ArrayConstructor)[];
19
19
  };
20
20
  position: {
21
21
  default: string;
22
- type: PropType<"bottom-left" | "bottom-right">;
22
+ type: PropType<"custom" | "bottom-left" | "bottom-right">;
23
23
  };
24
24
  }>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "items" | "menuClass" | "position">;
25
25
  $attrs: {
@@ -42,16 +42,16 @@ declare const _default: {
42
42
  };
43
43
  menuClass: {
44
44
  default: string;
45
- type: StringConstructor;
45
+ type: (ObjectConstructor | StringConstructor | ArrayConstructor)[];
46
46
  };
47
47
  position: {
48
48
  default: string;
49
- type: PropType<"bottom-left" | "bottom-right">;
49
+ type: PropType<"custom" | "bottom-left" | "bottom-right">;
50
50
  };
51
51
  }>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
52
52
  items: MenuItemInterface[];
53
- menuClass: string;
54
- position: "bottom-left" | "bottom-right";
53
+ menuClass: string | Record<string, any> | unknown[];
54
+ position: "custom" | "bottom-left" | "bottom-right";
55
55
  }, {}, string> & {
56
56
  beforeCreate?: ((() => void) | (() => void)[]) | undefined;
57
57
  created?: ((() => void) | (() => void)[]) | undefined;
@@ -79,11 +79,11 @@ declare const _default: {
79
79
  };
80
80
  menuClass: {
81
81
  default: string;
82
- type: StringConstructor;
82
+ type: (ObjectConstructor | StringConstructor | ArrayConstructor)[];
83
83
  };
84
84
  position: {
85
85
  default: string;
86
- type: PropType<"bottom-left" | "bottom-right">;
86
+ type: PropType<"custom" | "bottom-left" | "bottom-right">;
87
87
  };
88
88
  }>> & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {};
89
89
  __isFragment?: undefined;
@@ -96,22 +96,24 @@ declare const _default: {
96
96
  };
97
97
  menuClass: {
98
98
  default: string;
99
- type: StringConstructor;
99
+ type: (ObjectConstructor | StringConstructor | ArrayConstructor)[];
100
100
  };
101
101
  position: {
102
102
  default: string;
103
- type: PropType<"bottom-left" | "bottom-right">;
103
+ type: PropType<"custom" | "bottom-left" | "bottom-right">;
104
104
  };
105
105
  }>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
106
106
  items: MenuItemInterface[];
107
- menuClass: string;
108
- position: "bottom-left" | "bottom-right";
107
+ menuClass: string | Record<string, any> | unknown[];
108
+ position: "custom" | "bottom-left" | "bottom-right";
109
109
  }, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
110
110
  $slots: {
111
111
  button: (_: {
112
112
  open: any;
113
113
  }) => any;
114
- items: (_: {}) => any;
114
+ items: (_: {
115
+ items: MenuItemInterface[] | undefined;
116
+ }) => any;
115
117
  };
116
118
  });
117
119
  export default _default;
@@ -18,7 +18,7 @@ declare const _default: import("vue").DefineComponent<{
18
18
  };
19
19
  color: {
20
20
  default: string;
21
- type: PropType<"success" | "danger" | "warning" | "dark" | "light">;
21
+ type: PropType<"dark" | "light" | "danger" | "success" | "warning">;
22
22
  };
23
23
  }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
24
24
  label: {
@@ -39,13 +39,13 @@ declare const _default: import("vue").DefineComponent<{
39
39
  };
40
40
  color: {
41
41
  default: string;
42
- type: PropType<"success" | "danger" | "warning" | "dark" | "light">;
42
+ type: PropType<"dark" | "light" | "danger" | "success" | "warning">;
43
43
  };
44
44
  }>>, {
45
- color: "success" | "danger" | "warning" | "dark" | "light";
46
- icon: string;
47
45
  label: string;
48
- count: number;
49
46
  active: boolean;
47
+ color: "dark" | "light" | "danger" | "success" | "warning";
48
+ icon: string;
49
+ count: number;
50
50
  }>;
51
51
  export default _default;
@@ -3,13 +3,18 @@ declare const _default: {
3
3
  $: import("vue").ComponentInternalInstance;
4
4
  $data: {};
5
5
  $props: Partial<{
6
+ dark: boolean;
6
7
  size: string;
7
8
  }> & Omit<Readonly<import("vue").ExtractPropTypes<{
8
9
  size: {
9
10
  default: string;
10
11
  type: StringConstructor;
11
12
  };
12
- }>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "size">;
13
+ dark: {
14
+ default: boolean;
15
+ type: BooleanConstructor;
16
+ };
17
+ }>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "dark" | "size">;
13
18
  $attrs: {
14
19
  [x: string]: unknown;
15
20
  };
@@ -28,7 +33,12 @@ declare const _default: {
28
33
  default: string;
29
34
  type: StringConstructor;
30
35
  };
36
+ dark: {
37
+ default: boolean;
38
+ type: BooleanConstructor;
39
+ };
31
40
  }>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
41
+ dark: boolean;
32
42
  size: string;
33
43
  }, {}, string> & {
34
44
  beforeCreate?: ((() => void) | (() => void)[]) | undefined;
@@ -55,6 +65,10 @@ declare const _default: {
55
65
  default: string;
56
66
  type: StringConstructor;
57
67
  };
68
+ dark: {
69
+ default: boolean;
70
+ type: BooleanConstructor;
71
+ };
58
72
  }>> & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {};
59
73
  __isFragment?: undefined;
60
74
  __isTeleport?: undefined;
@@ -64,7 +78,12 @@ declare const _default: {
64
78
  default: string;
65
79
  type: StringConstructor;
66
80
  };
81
+ dark: {
82
+ default: boolean;
83
+ type: BooleanConstructor;
84
+ };
67
85
  }>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
86
+ dark: boolean;
68
87
  size: string;
69
88
  }, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
70
89
  $slots: {
@@ -1,80 +1,26 @@
1
1
  import { PropType } from 'vue';
2
2
  import { ActionItem } from '@/types/types';
3
- declare const _default: {
4
- new (...args: any[]): {
5
- $: import("vue").ComponentInternalInstance;
6
- $data: {};
7
- $props: Partial<{}> & Omit<Readonly<import("vue").ExtractPropTypes<{
8
- item: {
9
- required: true;
10
- type: PropType<ActionItem>;
11
- };
12
- }>> & {
13
- onClick?: ((...args: any[]) => any) | undefined;
14
- } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, never>;
15
- $attrs: {
16
- [x: string]: unknown;
17
- };
18
- $refs: {
19
- [x: string]: unknown;
20
- };
21
- $slots: Readonly<{
22
- [name: string]: import("vue").Slot | undefined;
23
- }>;
24
- $root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null;
25
- $parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null;
26
- $emit: (event: "click", ...args: any[]) => void;
27
- $el: any;
28
- $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
29
- item: {
30
- required: true;
31
- type: PropType<ActionItem>;
32
- };
33
- }>> & {
34
- onClick?: ((...args: any[]) => any) | undefined;
35
- }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "click"[], string, {}, {}, string> & {
36
- beforeCreate?: ((() => void) | (() => void)[]) | undefined;
37
- created?: ((() => void) | (() => void)[]) | undefined;
38
- beforeMount?: ((() => void) | (() => void)[]) | undefined;
39
- mounted?: ((() => void) | (() => void)[]) | undefined;
40
- beforeUpdate?: ((() => void) | (() => void)[]) | undefined;
41
- updated?: ((() => void) | (() => void)[]) | undefined;
42
- activated?: ((() => void) | (() => void)[]) | undefined;
43
- deactivated?: ((() => void) | (() => void)[]) | undefined;
44
- beforeDestroy?: ((() => void) | (() => void)[]) | undefined;
45
- beforeUnmount?: ((() => void) | (() => void)[]) | undefined;
46
- destroyed?: ((() => void) | (() => void)[]) | undefined;
47
- unmounted?: ((() => void) | (() => void)[]) | undefined;
48
- renderTracked?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
49
- renderTriggered?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
50
- 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;
51
- };
52
- $forceUpdate: () => void;
53
- $nextTick: typeof import("vue").nextTick;
54
- $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;
55
- } & Readonly<import("vue").ExtractPropTypes<{
56
- item: {
57
- required: true;
58
- type: PropType<ActionItem>;
59
- };
60
- }>> & {
61
- onClick?: ((...args: any[]) => any) | undefined;
62
- } & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {};
63
- __isFragment?: undefined;
64
- __isTeleport?: undefined;
65
- __isSuspense?: undefined;
66
- } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
3
+ declare const _default: import("vue").DefineComponent<{
67
4
  item: {
68
5
  required: true;
69
6
  type: PropType<ActionItem>;
70
7
  };
8
+ dark: {
9
+ default: boolean;
10
+ type: BooleanConstructor;
11
+ };
12
+ }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "click"[], "click", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
13
+ item: {
14
+ required: true;
15
+ type: PropType<ActionItem>;
16
+ };
17
+ dark: {
18
+ default: boolean;
19
+ type: BooleanConstructor;
20
+ };
71
21
  }>> & {
72
22
  onClick?: ((...args: any[]) => any) | undefined;
73
- }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "click"[], "click", {}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
74
- $slots: {
75
- default: (_: {
76
- active: boolean;
77
- }) => any;
78
- };
79
- });
23
+ }, {
24
+ dark: boolean;
25
+ }>;
80
26
  export default _default;
@@ -15,6 +15,10 @@ declare const _default: import("vue").DefineComponent<{
15
15
  default: undefined;
16
16
  type: NumberConstructor;
17
17
  };
18
+ dark: {
19
+ default: boolean;
20
+ type: BooleanConstructor;
21
+ };
18
22
  }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
19
23
  label: {
20
24
  default: undefined;
@@ -32,10 +36,15 @@ declare const _default: import("vue").DefineComponent<{
32
36
  default: undefined;
33
37
  type: NumberConstructor;
34
38
  };
39
+ dark: {
40
+ default: boolean;
41
+ type: BooleanConstructor;
42
+ };
35
43
  }>>, {
36
- icon: string;
44
+ dark: boolean;
37
45
  label: string;
38
- count: number;
39
46
  active: boolean;
47
+ icon: string;
48
+ count: number;
40
49
  }>;
41
50
  export default _default;
@@ -0,0 +1,26 @@
1
+ import { PropType } from 'vue';
2
+ import { ActionItem } from '@/types/types';
3
+ declare const _default: import("vue").DefineComponent<{
4
+ item: {
5
+ required: true;
6
+ type: PropType<ActionItem>;
7
+ };
8
+ dark: {
9
+ default: boolean;
10
+ type: BooleanConstructor;
11
+ };
12
+ }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "click"[], "click", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
13
+ item: {
14
+ required: true;
15
+ type: PropType<ActionItem>;
16
+ };
17
+ dark: {
18
+ default: boolean;
19
+ type: BooleanConstructor;
20
+ };
21
+ }>> & {
22
+ onClick?: ((...args: any[]) => any) | undefined;
23
+ }, {
24
+ dark: boolean;
25
+ }>;
26
+ export default _default;
@@ -0,0 +1,50 @@
1
+ declare const _default: import("vue").DefineComponent<{
2
+ label: {
3
+ default: undefined;
4
+ type: StringConstructor;
5
+ };
6
+ icon: {
7
+ default: undefined;
8
+ type: StringConstructor;
9
+ };
10
+ active: {
11
+ default: boolean;
12
+ type: BooleanConstructor;
13
+ };
14
+ count: {
15
+ default: undefined;
16
+ type: NumberConstructor;
17
+ };
18
+ dark: {
19
+ default: boolean;
20
+ type: BooleanConstructor;
21
+ };
22
+ }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
23
+ label: {
24
+ default: undefined;
25
+ type: StringConstructor;
26
+ };
27
+ icon: {
28
+ default: undefined;
29
+ type: StringConstructor;
30
+ };
31
+ active: {
32
+ default: boolean;
33
+ type: BooleanConstructor;
34
+ };
35
+ count: {
36
+ default: undefined;
37
+ type: NumberConstructor;
38
+ };
39
+ dark: {
40
+ default: boolean;
41
+ type: BooleanConstructor;
42
+ };
43
+ }>>, {
44
+ dark: boolean;
45
+ label: string;
46
+ active: boolean;
47
+ icon: string;
48
+ count: number;
49
+ }>;
50
+ export default _default;
@@ -6,7 +6,7 @@ declare const _default: import("vue").DefineComponent<{
6
6
  };
7
7
  color: {
8
8
  default: string;
9
- type: PropType<"success" | "info" | "danger" | "warning" | "dark" | "light" | "primary">;
9
+ type: PropType<"dark" | "light" | "danger" | "success" | "warning" | "info" | "primary">;
10
10
  };
11
11
  size: {
12
12
  default: string;
@@ -30,7 +30,7 @@ declare const _default: import("vue").DefineComponent<{
30
30
  };
31
31
  color: {
32
32
  default: string;
33
- type: PropType<"success" | "info" | "danger" | "warning" | "dark" | "light" | "primary">;
33
+ type: PropType<"dark" | "light" | "danger" | "success" | "warning" | "info" | "primary">;
34
34
  };
35
35
  size: {
36
36
  default: string;
@@ -39,7 +39,7 @@ declare const _default: import("vue").DefineComponent<{
39
39
  }>> & {
40
40
  "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
41
41
  }, {
42
- color: "success" | "info" | "danger" | "warning" | "dark" | "light" | "primary";
42
+ color: "dark" | "light" | "danger" | "success" | "warning" | "info" | "primary";
43
43
  modelValue: boolean;
44
44
  size: "base" | "xs" | "sm" | "lg" | "xl";
45
45
  }>;
@@ -5,8 +5,8 @@ declare const _default: {
5
5
  $: import("vue").ComponentInternalInstance;
6
6
  $data: {};
7
7
  $props: Partial<{
8
- color: "success" | "info" | "danger" | "warning";
9
8
  to: RouteLocationRaw | undefined;
9
+ color: "danger" | "success" | "warning" | "info";
10
10
  action: () => Promise<void> | void;
11
11
  closable: boolean;
12
12
  }> & Omit<Readonly<import("vue").ExtractPropTypes<{
@@ -20,7 +20,7 @@ declare const _default: {
20
20
  };
21
21
  color: {
22
22
  default: string;
23
- type: PropType<"success" | "info" | "danger" | "warning">;
23
+ type: PropType<"danger" | "success" | "warning" | "info">;
24
24
  };
25
25
  closable: {
26
26
  default: boolean;
@@ -28,7 +28,7 @@ declare const _default: {
28
28
  };
29
29
  }>> & {
30
30
  onClose?: ((...args: any[]) => any) | undefined;
31
- } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "color" | "to" | "action" | "closable">;
31
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "to" | "color" | "action" | "closable">;
32
32
  $attrs: {
33
33
  [x: string]: unknown;
34
34
  };
@@ -53,7 +53,7 @@ declare const _default: {
53
53
  };
54
54
  color: {
55
55
  default: string;
56
- type: PropType<"success" | "info" | "danger" | "warning">;
56
+ type: PropType<"danger" | "success" | "warning" | "info">;
57
57
  };
58
58
  closable: {
59
59
  default: boolean;
@@ -62,8 +62,8 @@ declare const _default: {
62
62
  }>> & {
63
63
  onClose?: ((...args: any[]) => any) | undefined;
64
64
  }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "close"[], string, {
65
- color: "success" | "info" | "danger" | "warning";
66
65
  to: RouteLocationRaw | undefined;
66
+ color: "danger" | "success" | "warning" | "info";
67
67
  action: () => Promise<void> | void;
68
68
  closable: boolean;
69
69
  }, {}, string> & {
@@ -97,7 +97,7 @@ declare const _default: {
97
97
  };
98
98
  color: {
99
99
  default: string;
100
- type: PropType<"success" | "info" | "danger" | "warning">;
100
+ type: PropType<"danger" | "success" | "warning" | "info">;
101
101
  };
102
102
  closable: {
103
103
  default: boolean;
@@ -120,7 +120,7 @@ declare const _default: {
120
120
  };
121
121
  color: {
122
122
  default: string;
123
- type: PropType<"success" | "info" | "danger" | "warning">;
123
+ type: PropType<"danger" | "success" | "warning" | "info">;
124
124
  };
125
125
  closable: {
126
126
  default: boolean;
@@ -129,8 +129,8 @@ declare const _default: {
129
129
  }>> & {
130
130
  onClose?: ((...args: any[]) => any) | undefined;
131
131
  }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "close"[], "close", {
132
- color: "success" | "info" | "danger" | "warning";
133
132
  to: RouteLocationRaw | undefined;
133
+ color: "danger" | "success" | "warning" | "info";
134
134
  action: () => Promise<void> | void;
135
135
  closable: boolean;
136
136
  }, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {