@fundamental-ngx/core 0.58.0-rc.4 → 0.58.0-rc.41

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.
@@ -424,6 +424,8 @@ declare class NotificationConfig<T = any> {
424
424
  * @default true
425
425
  */
426
426
  shouldTrapFocus?: boolean;
427
+ /** Whether to dismiss the notification on router navigation start. */
428
+ closeOnNavigation?: boolean;
427
429
  }
428
430
 
429
431
  declare class NotificationContainer {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fundamental-ngx/core",
3
- "version": "0.58.0-rc.4",
3
+ "version": "0.58.0-rc.41",
4
4
  "schematics": "./schematics/collection.json",
5
5
  "ng-update": {
6
6
  "migrations": "./schematics/migrations.json"
@@ -10,7 +10,7 @@
10
10
  "homepage": "https://sap.github.io/fundamental-ngx",
11
11
  "repository": {
12
12
  "type": "git",
13
- "url": "https://github.com/SAP/fundamental-ngx"
13
+ "url": "git+https://github.com/SAP/fundamental-ngx.git"
14
14
  },
15
15
  "engine": {
16
16
  "node": ">= 10"
@@ -23,8 +23,8 @@
23
23
  "@angular/forms": "^20.0.0",
24
24
  "@angular/platform-browser": "^20.0.0",
25
25
  "@angular/router": "^20.0.0",
26
- "@fundamental-ngx/cdk": "0.58.0-rc.4",
27
- "@fundamental-ngx/i18n": "0.58.0-rc.4",
26
+ "@fundamental-ngx/cdk": "0.58.0-rc.41",
27
+ "@fundamental-ngx/i18n": "0.58.0-rc.41",
28
28
  "@sap-theming/theming-base-content": "^11.31.0",
29
29
  "fundamental-styles": "0.40.1",
30
30
  "rxjs": "^7.8.0"
@@ -251,14 +251,14 @@
251
251
  "types": "./nested-list/index.d.ts",
252
252
  "default": "./fesm2022/fundamental-ngx-core-nested-list.mjs"
253
253
  },
254
- "./object-attribute": {
255
- "types": "./object-attribute/index.d.ts",
256
- "default": "./fesm2022/fundamental-ngx-core-object-attribute.mjs"
257
- },
258
254
  "./notification": {
259
255
  "types": "./notification/index.d.ts",
260
256
  "default": "./fesm2022/fundamental-ngx-core-notification.mjs"
261
257
  },
258
+ "./object-attribute": {
259
+ "types": "./object-attribute/index.d.ts",
260
+ "default": "./fesm2022/fundamental-ngx-core-object-attribute.mjs"
261
+ },
262
262
  "./object-identifier": {
263
263
  "types": "./object-identifier/index.d.ts",
264
264
  "default": "./fesm2022/fundamental-ngx-core-object-identifier.mjs"
@@ -2,7 +2,7 @@ import { Nullable, ColorAccent } from '@fundamental-ngx/cdk/utils';
2
2
  import { MenuComponent } from '@fundamental-ngx/core/menu';
3
3
  import { Placement, PopoverFillMode, SearchComponent } from '@fundamental-ngx/core/shared';
4
4
  import * as i0 from '@angular/core';
5
- import { ElementRef, AfterContentChecked, QueryList, EventEmitter, OnInit, OnDestroy, AfterViewInit, AfterContentInit, InjectionToken } from '@angular/core';
5
+ import { ElementRef, AfterContentChecked, QueryList, EventEmitter, OnInit, OnDestroy, AfterViewInit, AfterContentInit, TemplateRef, InjectionToken } from '@angular/core';
6
6
  import { IconFont } from '@fundamental-ngx/core/icon';
7
7
  import { ComboboxInterface } from '@fundamental-ngx/core/combobox';
8
8
  import { ProductSwitchComponent } from '@fundamental-ngx/core/product-switch';
@@ -483,6 +483,12 @@ declare class ShellbarComponent implements AfterContentInit, AfterViewInit, OnDe
483
483
  get groupFlex(): Nullable<ShellbarGroupFlexOptions>;
484
484
  /** Whether to show the navigation button. */
485
485
  showNavigationButton: boolean;
486
+ /**
487
+ * Custom template for navigation button. When provided, this template will be rendered instead of the default button.
488
+ * Use this when you need to render a complex component like a popover with a button inside.
489
+ * The template should handle its own click events and accessibility attributes.
490
+ */
491
+ navigationButtonTemplate: TemplateRef<any> | null;
486
492
  /** Whether to show the back button. */
487
493
  showBackButton: boolean;
488
494
  /** Label for the navigation button. */
@@ -588,7 +594,7 @@ declare class ShellbarComponent implements AfterContentInit, AfterViewInit, OnDe
588
594
  /** @hidden */
589
595
  private _detachSearch;
590
596
  static ɵfac: i0.ɵɵFactoryDeclaration<ShellbarComponent, never>;
591
- static ɵcmp: i0.ɵɵComponentDeclaration<ShellbarComponent, "fd-shellbar", never, { "size": { "alias": "size"; "required": false; }; "breakpoints": { "alias": "breakpoints"; "required": false; }; "sideNav": { "alias": "sideNav"; "required": false; }; "groupFlex": { "alias": "groupFlex"; "required": false; }; "showNavigationButton": { "alias": "showNavigationButton"; "required": false; }; "showBackButton": { "alias": "showBackButton"; "required": false; }; "navigationButtonLabel": { "alias": "navigationButtonLabel"; "required": false; }; "backButtonLabel": { "alias": "backButtonLabel"; "required": false; }; }, { "navigationButtonClicked": "navigationButtonClicked"; "backButtonClicked": "backButtonClicked"; }, ["comboboxComponent", "contextArea", "branding", "_actions", "searchComponent", "buttons"], ["fd-shellbar-branding", "[fd-shellbar-side-nav]", "fd-shellbar-logo", "fd-shellbar-title", "fd-product-menu", "fd-shellbar-subtitle", "fd-shellbar-separator", "fd-shellbar-context-area", "*", "fd-shellbar-actions"], true, never>;
597
+ static ɵcmp: i0.ɵɵComponentDeclaration<ShellbarComponent, "fd-shellbar", never, { "size": { "alias": "size"; "required": false; }; "breakpoints": { "alias": "breakpoints"; "required": false; }; "sideNav": { "alias": "sideNav"; "required": false; }; "groupFlex": { "alias": "groupFlex"; "required": false; }; "showNavigationButton": { "alias": "showNavigationButton"; "required": false; }; "navigationButtonTemplate": { "alias": "navigationButtonTemplate"; "required": false; }; "showBackButton": { "alias": "showBackButton"; "required": false; }; "navigationButtonLabel": { "alias": "navigationButtonLabel"; "required": false; }; "backButtonLabel": { "alias": "backButtonLabel"; "required": false; }; }, { "navigationButtonClicked": "navigationButtonClicked"; "backButtonClicked": "backButtonClicked"; }, ["comboboxComponent", "contextArea", "branding", "_actions", "searchComponent", "buttons"], ["fd-shellbar-branding", "[fd-shellbar-side-nav]", "fd-shellbar-logo", "fd-shellbar-title", "fd-product-menu", "fd-shellbar-subtitle", "fd-shellbar-separator", "fd-shellbar-context-area", "*", "fd-shellbar-actions"], true, never>;
592
598
  }
593
599
 
594
600
  declare class ShellbarModule {