@apptegy/nuxt-navigation 0.1.119 → 0.1.121
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/module.json +1 -1
- package/dist/module.mjs +2 -2
- package/dist/runtime/components/Nav/Header.vue.d.ts +1 -17
- package/dist/runtime/components/Nav/NotificationItem.vue.d.ts +2 -2
- package/dist/runtime/components/Nav/NotificationsPanel.vue.d.ts +9 -9
- package/dist/runtime/components/Nav/SidebarSection.vue +1 -0
- package/dist/runtime/composables/useSidebar.d.ts +1 -1
- package/dist/runtime/types/index.d.ts +1 -0
- package/package.json +16 -15
package/dist/module.json
CHANGED
package/dist/module.mjs
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { defineNuxtModule, createResolver, addComponentsDir, addImportsDir } from '@nuxt/kit';
|
|
2
2
|
|
|
3
|
-
const module = defineNuxtModule({
|
|
3
|
+
const module$1 = defineNuxtModule({
|
|
4
4
|
meta: {
|
|
5
5
|
name: "@apptegy/nuxt-navigation",
|
|
6
6
|
compatibility: {
|
|
@@ -22,4 +22,4 @@ const module = defineNuxtModule({
|
|
|
22
22
|
}
|
|
23
23
|
});
|
|
24
24
|
|
|
25
|
-
export { module as default };
|
|
25
|
+
export { module$1 as default };
|
|
@@ -27,23 +27,7 @@ type __VLS_Slots = {} & {
|
|
|
27
27
|
} & {
|
|
28
28
|
notifications?: (props: typeof __VLS_15) => any;
|
|
29
29
|
};
|
|
30
|
-
declare const __VLS_component: import("vue").DefineComponent<__VLS_Props, void, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
31
|
-
"selected-option": (...args: any[]) => void;
|
|
32
|
-
"user-logout": (...args: any[]) => void;
|
|
33
|
-
"update:notifications": (...args: any[]) => void;
|
|
34
|
-
"notifications-clear-all": (...args: any[]) => void;
|
|
35
|
-
"notifications-dismiss": (...args: any[]) => void;
|
|
36
|
-
"notifications-select": (...args: any[]) => void;
|
|
37
|
-
"notification-click": (...args: any[]) => void;
|
|
38
|
-
}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
39
|
-
"onSelected-option"?: ((...args: any[]) => any) | undefined;
|
|
40
|
-
"onUser-logout"?: ((...args: any[]) => any) | undefined;
|
|
41
|
-
"onUpdate:notifications"?: ((...args: any[]) => any) | undefined;
|
|
42
|
-
"onNotifications-clear-all"?: ((...args: any[]) => any) | undefined;
|
|
43
|
-
"onNotifications-dismiss"?: ((...args: any[]) => any) | undefined;
|
|
44
|
-
"onNotifications-select"?: ((...args: any[]) => any) | undefined;
|
|
45
|
-
"onNotification-click"?: ((...args: any[]) => any) | undefined;
|
|
46
|
-
}>, {
|
|
30
|
+
declare const __VLS_component: import("vue").DefineComponent<__VLS_Props, void, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, any, string, import("vue").PublicProps, any, {
|
|
47
31
|
notifications: INotificationsHeaderModel | null;
|
|
48
32
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
49
33
|
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
@@ -3,10 +3,10 @@ type __VLS_Props = {
|
|
|
3
3
|
item: INotificationItem;
|
|
4
4
|
};
|
|
5
5
|
declare const _default: import("vue").DefineComponent<__VLS_Props, void, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
6
|
-
select: (item: INotificationItem) => any;
|
|
7
6
|
dismiss: (id: string) => any;
|
|
7
|
+
select: (item: INotificationItem) => any;
|
|
8
8
|
}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
9
|
-
onSelect?: ((item: INotificationItem) => any) | undefined;
|
|
10
9
|
onDismiss?: ((id: string) => any) | undefined;
|
|
10
|
+
onSelect?: ((item: INotificationItem) => any) | undefined;
|
|
11
11
|
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
12
12
|
export default _default;
|
|
@@ -13,11 +13,6 @@ type __VLS_Props = {
|
|
|
13
13
|
mobile?: boolean;
|
|
14
14
|
};
|
|
15
15
|
declare const _default: import("vue").DefineComponent<__VLS_Props, void, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
16
|
-
select: (payload: {
|
|
17
|
-
item: INotificationsPanelData["groups"][number]["notifications"][number];
|
|
18
|
-
tabId: string;
|
|
19
|
-
filterId: string;
|
|
20
|
-
}) => any;
|
|
21
16
|
"update:activeTabId": (id: string) => any;
|
|
22
17
|
"update:activeFilterId": (id: string) => any;
|
|
23
18
|
"update:filterCatalog": (filters: INotificationFilter[]) => any;
|
|
@@ -31,13 +26,13 @@ declare const _default: import("vue").DefineComponent<__VLS_Props, void, {}, {},
|
|
|
31
26
|
tabId: string;
|
|
32
27
|
filterId: string;
|
|
33
28
|
}) => any;
|
|
34
|
-
|
|
35
|
-
}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
36
|
-
onSelect?: ((payload: {
|
|
29
|
+
select: (payload: {
|
|
37
30
|
item: INotificationsPanelData["groups"][number]["notifications"][number];
|
|
38
31
|
tabId: string;
|
|
39
32
|
filterId: string;
|
|
40
|
-
}) => any
|
|
33
|
+
}) => any;
|
|
34
|
+
close: () => any;
|
|
35
|
+
}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
41
36
|
"onUpdate:activeTabId"?: ((id: string) => any) | undefined;
|
|
42
37
|
"onUpdate:activeFilterId"?: ((id: string) => any) | undefined;
|
|
43
38
|
"onUpdate:filterCatalog"?: ((filters: INotificationFilter[]) => any) | undefined;
|
|
@@ -51,6 +46,11 @@ declare const _default: import("vue").DefineComponent<__VLS_Props, void, {}, {},
|
|
|
51
46
|
tabId: string;
|
|
52
47
|
filterId: string;
|
|
53
48
|
}) => any) | undefined;
|
|
49
|
+
onSelect?: ((payload: {
|
|
50
|
+
item: INotificationsPanelData["groups"][number]["notifications"][number];
|
|
51
|
+
tabId: string;
|
|
52
|
+
filterId: string;
|
|
53
|
+
}) => any) | undefined;
|
|
54
54
|
onClose?: (() => any) | undefined;
|
|
55
55
|
}>, {
|
|
56
56
|
loading: boolean;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@apptegy/nuxt-navigation",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.121",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"exports": {
|
|
6
6
|
".": {
|
|
@@ -36,19 +36,20 @@
|
|
|
36
36
|
"primevue": "^4.2.5"
|
|
37
37
|
},
|
|
38
38
|
"devDependencies": {
|
|
39
|
-
"@nuxt/devtools": "
|
|
40
|
-
"@nuxt/eslint-config": "
|
|
41
|
-
"@nuxt/module-builder": "
|
|
42
|
-
"@nuxt/schema": "
|
|
43
|
-
"@nuxt/test-utils": "
|
|
44
|
-
"@types/node": "
|
|
45
|
-
"eslint": "
|
|
46
|
-
"nuxt": "
|
|
39
|
+
"@nuxt/devtools": "^2.6.2",
|
|
40
|
+
"@nuxt/eslint-config": "^1.6.0",
|
|
41
|
+
"@nuxt/module-builder": "^1.0.1",
|
|
42
|
+
"@nuxt/schema": "^3.17.0",
|
|
43
|
+
"@nuxt/test-utils": "^3.17.0",
|
|
44
|
+
"@types/node": "^22.0.0",
|
|
45
|
+
"eslint": "^9.31.0",
|
|
46
|
+
"nuxt": "^3.17.0",
|
|
47
47
|
"primevue": "^4.5.4",
|
|
48
|
-
"sass": "
|
|
49
|
-
"typescript": "
|
|
50
|
-
"vitest": "
|
|
51
|
-
"vue": "
|
|
52
|
-
"vue-tsc": "
|
|
53
|
-
}
|
|
48
|
+
"sass": "^1.89.2",
|
|
49
|
+
"typescript": "~5.8.0",
|
|
50
|
+
"vitest": "^3.2.4",
|
|
51
|
+
"vue": "^3.5.13",
|
|
52
|
+
"vue-tsc": "^3.0.3"
|
|
53
|
+
},
|
|
54
|
+
"gitHead": "82ad905c86fddf3e4037ae98571588d4915209d9"
|
|
54
55
|
}
|