@visma-swno/vsn-navigation 1.4.0-beta.9 → 1.5.0-beta.1

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.
@@ -147,6 +147,8 @@ export declare class VSNNavigation extends LitElement {
147
147
  helpUrl?: string;
148
148
  /** Configuration for the feedback component */
149
149
  feedback: FeedbackConfig | null;
150
+ /** Keep the module switcher permanently open (non-closable). Default false. */
151
+ moduleSwitcherAlwaysOpen: boolean;
150
152
  /** Show notification icon in the top bar */
151
153
  showNotification: boolean;
152
154
  /** Notification icon shows active state */
@@ -177,7 +179,8 @@ export declare class VSNNavigation extends LitElement {
177
179
  updated(changed: Map<string, unknown>): void;
178
180
  connectedCallback(): void;
179
181
  disconnectedCallback(): void;
180
- /** CTRL+O (Cmd+O on Mac) opens the side-bar and focuses the search field (if enabled). */
182
+ /** Toggles the side-bar: opens and focuses search when closed, closes when open.
183
+ * Shortcut: Cmd+O on Mac (Ctrl+O also accepted as a Safari fallback); Ctrl+O on all other platforms. */
181
184
  private _onShortcut;
182
185
  private _onEscape;
183
186
  private _onTopBarClick;
@@ -206,6 +209,8 @@ export declare type VsnNavigation = {
206
209
  auth?: VsnAuth;
207
210
  /** Configuration for the feedback component */
208
211
  feedback?: FeedbackConfig | null;
212
+ /** Keep the module switcher permanently open (non-closable). Default false. */
213
+ moduleSwitcherAlwaysOpen?: boolean;
209
214
  };
210
215
 
211
216
  export declare class VSNSkipToMain extends LitElement {