@visma-swno/vsn-navigation 1.3.0-beta.4 → 1.3.0-beta.6

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.
@@ -1,6 +1,7 @@
1
1
  import { CSSResult } from 'lit';
2
2
  import { LitElement } from 'lit';
3
3
  import { TemplateResult } from 'lit-html';
4
+ import { VSNSkipToMain } from './vsn-skip-to-main.ts';
4
5
 
5
6
  export declare type AppModules = {
6
7
  /** Current module id (to be ignored from the list of modules) */
@@ -110,6 +111,7 @@ export declare type TreeItem = TreeParent | TreeLeaf;
110
111
 
111
112
  export declare type TreeLeaf = BaseTreeItem & {
112
113
  url: string;
114
+ keywords?: string;
113
115
  };
114
116
 
115
117
  export declare type TreeParent = BaseTreeItem & {
@@ -206,4 +208,6 @@ export declare type VsnNavigation = {
206
208
  feedback?: FeedbackConfig | null;
207
209
  };
208
210
 
211
+ export { VSNSkipToMain }
212
+
209
213
  export { }