@apptegy/nuxt-navigation 0.1.82 → 0.1.84
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 +2 -2
- package/dist/module.mjs +2 -2
- package/dist/runtime/components/Nav/Avatar.vue.d.ts +1 -2
- package/dist/runtime/components/Nav/Breadcrumb.vue.d.ts +4 -5
- package/dist/runtime/components/Nav/Header.vue.d.ts +2 -9
- package/dist/runtime/components/Nav/HelpArticles.vue.d.ts +1 -2
- package/dist/runtime/components/Nav/Icons/ApptegyLogo.vue.d.ts +2 -3
- package/dist/runtime/components/Nav/Icons/Pinned.vue.d.ts +1 -2
- package/dist/runtime/components/Nav/Icons/SidebarToggle.vue.d.ts +1 -2
- package/dist/runtime/components/Nav/Icons/ThrillshareLogo.vue.d.ts +1 -2
- package/dist/runtime/components/Nav/Icons/Unpinned.vue.d.ts +1 -2
- package/dist/runtime/components/Nav/Icons/UserDropdownMenu.vue.d.ts +1 -2
- package/dist/runtime/components/Nav/ImpersonateInfoPanel.vue.d.ts +1 -2
- package/dist/runtime/components/Nav/OrgSelect.vue.d.ts +1 -2
- package/dist/runtime/components/Nav/Sidebar.vue +7 -7
- package/dist/runtime/components/Nav/Sidebar.vue.d.ts +7 -8
- package/dist/runtime/components/Nav/SidebarItem.vue.d.ts +5 -6
- package/dist/runtime/components/Nav/SidebarSection.vue.d.ts +4 -5
- package/dist/runtime/components/Nav/SidebarToggle.vue.d.ts +1 -2
- package/dist/runtime/components/Nav/SubMenu.vue.d.ts +2 -3
- package/dist/runtime/components/Nav/SubMenuItem.vue.d.ts +5 -6
- package/dist/runtime/components/Nav/UserDropdown.vue.d.ts +1 -2
- package/dist/runtime/composables/useDropdown.d.ts +1 -1
- package/package.json +2 -2
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
|
|
3
|
+
const module = defineNuxtModule({
|
|
4
4
|
meta: {
|
|
5
5
|
name: "@apptegy/nuxt-navigation",
|
|
6
6
|
compatibility: {
|
|
@@ -22,4 +22,4 @@ const module$1 = defineNuxtModule({
|
|
|
22
22
|
}
|
|
23
23
|
});
|
|
24
24
|
|
|
25
|
-
export { module
|
|
25
|
+
export { module as default };
|
|
@@ -8,6 +8,5 @@ interface IAvatarProps {
|
|
|
8
8
|
*/
|
|
9
9
|
name: string;
|
|
10
10
|
}
|
|
11
|
-
declare const
|
|
12
|
-
declare const _default: typeof __VLS_export;
|
|
11
|
+
declare const _default: import("vue").DefineComponent<IAvatarProps, void, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<IAvatarProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
13
12
|
export default _default;
|
|
@@ -1,10 +1,9 @@
|
|
|
1
|
-
declare var
|
|
1
|
+
declare var __VLS_7: {};
|
|
2
2
|
type __VLS_Slots = {} & {
|
|
3
|
-
default?: (props: typeof
|
|
3
|
+
default?: (props: typeof __VLS_7) => any;
|
|
4
4
|
};
|
|
5
|
-
declare const
|
|
6
|
-
declare const
|
|
7
|
-
declare const _default: typeof __VLS_export;
|
|
5
|
+
declare const __VLS_component: import("vue").DefineComponent<{}, void, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
6
|
+
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
8
7
|
export default _default;
|
|
9
8
|
type __VLS_WithSlots<T, S> = T & {
|
|
10
9
|
new (): {
|
|
@@ -21,15 +21,8 @@ type __VLS_Slots = {} & {
|
|
|
21
21
|
} & {
|
|
22
22
|
'user-controls'?: (props: typeof __VLS_5) => any;
|
|
23
23
|
};
|
|
24
|
-
declare const
|
|
25
|
-
|
|
26
|
-
"user-logout": (...args: any[]) => void;
|
|
27
|
-
}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
28
|
-
"onSelected-option"?: ((...args: any[]) => any) | undefined;
|
|
29
|
-
"onUser-logout"?: ((...args: any[]) => any) | undefined;
|
|
30
|
-
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
31
|
-
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
32
|
-
declare const _default: typeof __VLS_export;
|
|
24
|
+
declare const __VLS_component: import("vue").DefineComponent<__VLS_Props, void, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, any, string, import("vue").PublicProps, any, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
25
|
+
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
33
26
|
export default _default;
|
|
34
27
|
type __VLS_WithSlots<T, S> = T & {
|
|
35
28
|
new (): {
|
|
@@ -5,11 +5,10 @@ interface IHelpArticlesProps {
|
|
|
5
5
|
showHelpArticles: boolean;
|
|
6
6
|
collapsed: boolean;
|
|
7
7
|
}
|
|
8
|
-
declare const
|
|
8
|
+
declare const _default: import("vue").DefineComponent<IHelpArticlesProps, void, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<IHelpArticlesProps> & Readonly<{}>, {
|
|
9
9
|
helpArticleOptions: Array<unknown>;
|
|
10
10
|
settingsRoute: string;
|
|
11
11
|
schoolWebsite: string;
|
|
12
12
|
showHelpArticles: boolean;
|
|
13
13
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
14
|
-
declare const _default: typeof __VLS_export;
|
|
15
14
|
export default _default;
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
declare const
|
|
1
|
+
declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
2
2
|
useLightLogo: {
|
|
3
3
|
type: BooleanConstructor;
|
|
4
4
|
default: boolean;
|
|
5
5
|
};
|
|
6
|
-
}>,
|
|
6
|
+
}>, void, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
7
7
|
useLightLogo: {
|
|
8
8
|
type: BooleanConstructor;
|
|
9
9
|
default: boolean;
|
|
@@ -11,5 +11,4 @@ declare const __VLS_export: import("vue").DefineComponent<import("vue").ExtractP
|
|
|
11
11
|
}>> & Readonly<{}>, {
|
|
12
12
|
useLightLogo: boolean;
|
|
13
13
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
14
|
-
declare const _default: typeof __VLS_export;
|
|
15
14
|
export default _default;
|
|
@@ -1,3 +1,2 @@
|
|
|
1
|
-
declare const
|
|
2
|
-
declare const _default: typeof __VLS_export;
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{}, void, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
3
2
|
export default _default;
|
|
@@ -1,3 +1,2 @@
|
|
|
1
|
-
declare const
|
|
2
|
-
declare const _default: typeof __VLS_export;
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{}, void, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
3
2
|
export default _default;
|
|
@@ -1,3 +1,2 @@
|
|
|
1
|
-
declare const
|
|
2
|
-
declare const _default: typeof __VLS_export;
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{}, void, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
3
2
|
export default _default;
|
|
@@ -1,3 +1,2 @@
|
|
|
1
|
-
declare const
|
|
2
|
-
declare const _default: typeof __VLS_export;
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{}, void, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
3
2
|
export default _default;
|
|
@@ -1,3 +1,2 @@
|
|
|
1
|
-
declare const
|
|
2
|
-
declare const _default: typeof __VLS_export;
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{}, void, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
3
2
|
export default _default;
|
|
@@ -8,6 +8,5 @@ interface ImpersonatedUser {
|
|
|
8
8
|
interface IPanelProps {
|
|
9
9
|
impersonatedUser: ImpersonatedUser;
|
|
10
10
|
}
|
|
11
|
-
declare const
|
|
12
|
-
declare const _default: typeof __VLS_export;
|
|
11
|
+
declare const _default: import("vue").DefineComponent<IPanelProps, void, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<IPanelProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
13
12
|
export default _default;
|
|
@@ -8,10 +8,9 @@ interface IOrgSelectProps {
|
|
|
8
8
|
orgs: Array<IOrg>;
|
|
9
9
|
modelValue: number;
|
|
10
10
|
}
|
|
11
|
-
declare const
|
|
11
|
+
declare const _default: import("vue").DefineComponent<IOrgSelectProps, void, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
12
12
|
"update:model-value": (index: number) => any;
|
|
13
13
|
}, string, import("vue").PublicProps, Readonly<IOrgSelectProps> & Readonly<{
|
|
14
14
|
"onUpdate:model-value"?: ((index: number) => any) | undefined;
|
|
15
15
|
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
16
|
-
declare const _default: typeof __VLS_export;
|
|
17
16
|
export default _default;
|
|
@@ -95,7 +95,7 @@
|
|
|
95
95
|
<script setup>
|
|
96
96
|
import { useSidebar, useBranding, useNuxtApp, ref, watch, computed, onMounted, onBeforeUnmount, nextTick } from "#imports";
|
|
97
97
|
import ApptegyLogo from "./Icons/ApptegyLogo.vue";
|
|
98
|
-
import {
|
|
98
|
+
import { useWindowSize } from "@vueuse/core";
|
|
99
99
|
import Unpinned from "./Icons/Unpinned.vue";
|
|
100
100
|
import Pinned from "./Icons/Pinned.vue";
|
|
101
101
|
const { $t } = useNuxtApp();
|
|
@@ -134,8 +134,8 @@ const brandLogoRef = ref(null);
|
|
|
134
134
|
const brandLogoWidthPx = ref(0);
|
|
135
135
|
let brandLogoResizeObserver = null;
|
|
136
136
|
const _brandLogoWidth = computed(() => brandLogoWidthPx.value);
|
|
137
|
-
const
|
|
138
|
-
const isMobile =
|
|
137
|
+
const { width: windowWidth } = useWindowSize();
|
|
138
|
+
const isMobile = computed(() => windowWidth.value < 600);
|
|
139
139
|
const lockedExpanded = ref(true);
|
|
140
140
|
const allowCollapse = ref(false);
|
|
141
141
|
let focusOutTimeout = null;
|
|
@@ -273,15 +273,15 @@ function lockSidebar() {
|
|
|
273
273
|
.navbar--header .header-actions.collapsed {
|
|
274
274
|
justify-content: center;
|
|
275
275
|
}
|
|
276
|
-
.navbar--logo.big-logo {
|
|
277
|
-
flex-direction: column;
|
|
278
|
-
align-items: flex-start;
|
|
279
|
-
}
|
|
280
276
|
.navbar--logo {
|
|
281
277
|
display: flex;
|
|
282
278
|
align-items: center;
|
|
283
279
|
gap: 8px;
|
|
284
280
|
}
|
|
281
|
+
.navbar--logo.big-logo {
|
|
282
|
+
flex-direction: column;
|
|
283
|
+
align-items: flex-start;
|
|
284
|
+
}
|
|
285
285
|
.navbar--logo .school-name {
|
|
286
286
|
font-size: 16px;
|
|
287
287
|
font-style: normal;
|
|
@@ -21,17 +21,17 @@ interface ISidebarProps {
|
|
|
21
21
|
schoolWebsite: string;
|
|
22
22
|
showCollapseButton?: boolean;
|
|
23
23
|
}
|
|
24
|
-
declare var
|
|
24
|
+
declare var __VLS_6: {}, __VLS_26: {}, __VLS_33: {}, __VLS_45: {};
|
|
25
25
|
type __VLS_Slots = {} & {
|
|
26
|
-
logo?: (props: typeof
|
|
26
|
+
logo?: (props: typeof __VLS_6) => any;
|
|
27
27
|
} & {
|
|
28
|
-
switcher?: (props: typeof
|
|
28
|
+
switcher?: (props: typeof __VLS_26) => any;
|
|
29
29
|
} & {
|
|
30
|
-
default?: (props: typeof
|
|
30
|
+
default?: (props: typeof __VLS_33) => any;
|
|
31
31
|
} & {
|
|
32
|
-
logo?: (props: typeof
|
|
32
|
+
logo?: (props: typeof __VLS_45) => any;
|
|
33
33
|
};
|
|
34
|
-
declare const
|
|
34
|
+
declare const __VLS_component: import("vue").DefineComponent<ISidebarProps, void, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
35
35
|
"toggle-expand": (width: number) => any;
|
|
36
36
|
}, string, import("vue").PublicProps, Readonly<ISidebarProps> & Readonly<{
|
|
37
37
|
"onToggle-expand"?: ((width: number) => any) | undefined;
|
|
@@ -52,8 +52,7 @@ declare const __VLS_base: import("vue").DefineComponent<ISidebarProps, {}, {}, {
|
|
|
52
52
|
isAdmin: boolean;
|
|
53
53
|
showCollapseButton: boolean;
|
|
54
54
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
55
|
-
declare const
|
|
56
|
-
declare const _default: typeof __VLS_export;
|
|
55
|
+
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
57
56
|
export default _default;
|
|
58
57
|
type __VLS_WithSlots<T, S> = T & {
|
|
59
58
|
new (): {
|
|
@@ -4,15 +4,14 @@ type __VLS_Props = {
|
|
|
4
4
|
as?: string;
|
|
5
5
|
name?: string;
|
|
6
6
|
};
|
|
7
|
-
declare var
|
|
7
|
+
declare var __VLS_7: {}, __VLS_14: {};
|
|
8
8
|
type __VLS_Slots = {} & {
|
|
9
|
-
icon?: (props: typeof
|
|
9
|
+
icon?: (props: typeof __VLS_7) => any;
|
|
10
10
|
} & {
|
|
11
|
-
default?: (props: typeof
|
|
11
|
+
default?: (props: typeof __VLS_14) => any;
|
|
12
12
|
};
|
|
13
|
-
declare const
|
|
14
|
-
declare const
|
|
15
|
-
declare const _default: typeof __VLS_export;
|
|
13
|
+
declare const __VLS_component: import("vue").DefineComponent<__VLS_Props, void, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
14
|
+
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
16
15
|
export default _default;
|
|
17
16
|
type __VLS_WithSlots<T, S> = T & {
|
|
18
17
|
new (): {
|
|
@@ -4,13 +4,12 @@ type __VLS_Props = {
|
|
|
4
4
|
active: boolean;
|
|
5
5
|
collapsed: boolean;
|
|
6
6
|
};
|
|
7
|
-
declare var
|
|
7
|
+
declare var __VLS_22: {};
|
|
8
8
|
type __VLS_Slots = {} & {
|
|
9
|
-
default?: (props: typeof
|
|
9
|
+
default?: (props: typeof __VLS_22) => any;
|
|
10
10
|
};
|
|
11
|
-
declare const
|
|
12
|
-
declare const
|
|
13
|
-
declare const _default: typeof __VLS_export;
|
|
11
|
+
declare const __VLS_component: import("vue").DefineComponent<__VLS_Props, void, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
12
|
+
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
14
13
|
export default _default;
|
|
15
14
|
type __VLS_WithSlots<T, S> = T & {
|
|
16
15
|
new (): {
|
|
@@ -1,3 +1,2 @@
|
|
|
1
|
-
declare const
|
|
2
|
-
declare const _default: typeof __VLS_export;
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{}, void, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
3
2
|
export default _default;
|
|
@@ -2,9 +2,8 @@ declare var __VLS_1: {};
|
|
|
2
2
|
type __VLS_Slots = {} & {
|
|
3
3
|
default?: (props: typeof __VLS_1) => any;
|
|
4
4
|
};
|
|
5
|
-
declare const
|
|
6
|
-
declare const
|
|
7
|
-
declare const _default: typeof __VLS_export;
|
|
5
|
+
declare const __VLS_component: import("vue").DefineComponent<{}, void, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
6
|
+
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
8
7
|
export default _default;
|
|
9
8
|
type __VLS_WithSlots<T, S> = T & {
|
|
10
9
|
new (): {
|
|
@@ -1,20 +1,19 @@
|
|
|
1
|
-
declare var
|
|
1
|
+
declare var __VLS_12: {};
|
|
2
2
|
type __VLS_Slots = {} & {
|
|
3
|
-
default?: (props: typeof
|
|
3
|
+
default?: (props: typeof __VLS_12) => any;
|
|
4
4
|
};
|
|
5
|
-
declare const
|
|
5
|
+
declare const __VLS_component: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
6
6
|
icon: {
|
|
7
7
|
type: StringConstructor;
|
|
8
8
|
required: true;
|
|
9
9
|
};
|
|
10
|
-
}>,
|
|
10
|
+
}>, void, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
11
11
|
icon: {
|
|
12
12
|
type: StringConstructor;
|
|
13
13
|
required: true;
|
|
14
14
|
};
|
|
15
15
|
}>> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
16
|
-
declare const
|
|
17
|
-
declare const _default: typeof __VLS_export;
|
|
16
|
+
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
18
17
|
export default _default;
|
|
19
18
|
type __VLS_WithSlots<T, S> = T & {
|
|
20
19
|
new (): {
|
|
@@ -9,10 +9,9 @@ interface IUserDropdown {
|
|
|
9
9
|
url: string;
|
|
10
10
|
}>;
|
|
11
11
|
}
|
|
12
|
-
declare const
|
|
12
|
+
declare const _default: import("vue").DefineComponent<IUserDropdown, void, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
13
13
|
"select-option": (index: number) => any;
|
|
14
14
|
}, string, import("vue").PublicProps, Readonly<IUserDropdown> & Readonly<{
|
|
15
15
|
"onSelect-option"?: ((index: number) => any) | undefined;
|
|
16
16
|
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
17
|
-
declare const _default: typeof __VLS_export;
|
|
18
17
|
export default _default;
|
|
@@ -14,6 +14,6 @@ export declare function useDropdown(options: Array<OptionItem>, dropdownOptionsR
|
|
|
14
14
|
keydownActionsOnTrigger: (event: KeyboardEvent) => void;
|
|
15
15
|
handleKeydown: (event: KeyboardEvent, index: number) => number | undefined;
|
|
16
16
|
handleDropdownSearch: (inputValue: Event) => void;
|
|
17
|
-
debouncedFocus: import("@vueuse/core").
|
|
17
|
+
debouncedFocus: import("@vueuse/core").PromisifyFn<(idx: number) => void>;
|
|
18
18
|
};
|
|
19
19
|
export {};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@apptegy/nuxt-navigation",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.84",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"exports": {
|
|
6
6
|
".": {
|
|
@@ -46,5 +46,5 @@
|
|
|
46
46
|
"vue": "^3.5.13",
|
|
47
47
|
"vue-tsc": "^3.0.3"
|
|
48
48
|
},
|
|
49
|
-
"gitHead": "
|
|
49
|
+
"gitHead": "97655b67d2683cf60fcd1321f80c68c8edcba87a"
|
|
50
50
|
}
|