@wra-gov/vue-components 0.33.0 → 0.34.0
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/index.d.ts +3 -1
- package/dist/vue-components.js +69 -65
- package/dist/vue-components.umd.cjs +2 -2
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -26,6 +26,7 @@ id: string;
|
|
|
26
26
|
navigationLinks: NavigationLink[];
|
|
27
27
|
mobileBreakpoint: number;
|
|
28
28
|
menuLabel: string;
|
|
29
|
+
showNavLinks: boolean;
|
|
29
30
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
30
31
|
|
|
31
32
|
declare type __VLS_Props = {
|
|
@@ -62,6 +63,7 @@ declare type __VLS_Props_3 = {
|
|
|
62
63
|
*/
|
|
63
64
|
menuLabel?: string;
|
|
64
65
|
id?: string;
|
|
66
|
+
showNavLinks?: boolean;
|
|
65
67
|
};
|
|
66
68
|
|
|
67
69
|
declare type __VLS_Slots = {} & {
|
|
@@ -157,7 +159,7 @@ export declare type DataTableSort = {
|
|
|
157
159
|
order: "asc" | "desc";
|
|
158
160
|
};
|
|
159
161
|
|
|
160
|
-
declare interface NavigationLink {
|
|
162
|
+
export declare interface NavigationLink {
|
|
161
163
|
label: string;
|
|
162
164
|
href: string;
|
|
163
165
|
ariaLabel: string;
|