UNPKG

@memberjunction/ng-shared

Version:

MemberJunction: MJ Explorer Angular Shared Package - utility functions and other reusable elements used across other MJ Angular packages within the MJ Explorer App - do not use outside of MJ Explorer.

28 lines 820 B
/** * Options for controlling navigation behavior */ export interface NavigationOptions { /** * Force creation of a new tab instead of replacing temporary tabs * If not specified, the NavigationService will use global shift-key detection */ forceNewTab?: boolean; /** * Create the tab as a pinned (permanent) tab */ pinTab?: boolean; /** * Focus the tab after creation (default: true) */ focusTab?: boolean; /** * Replace the currently active tab instead of creating a new one */ replaceActive?: boolean; /** * Initial values to populate when creating a new record. * Should be a plain object with field names as keys. */ newRecordValues?: Record<string, unknown>; } //# sourceMappingURL=navigation.interfaces.d.ts.map