@fundamental-ngx/core 0.58.0-rc.15 → 0.58.0-rc.17

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fundamental-ngx/core",
3
- "version": "0.58.0-rc.15",
3
+ "version": "0.58.0-rc.17",
4
4
  "schematics": "./schematics/collection.json",
5
5
  "ng-update": {
6
6
  "migrations": "./schematics/migrations.json"
@@ -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.15",
27
- "@fundamental-ngx/i18n": "0.58.0-rc.15",
26
+ "@fundamental-ngx/cdk": "0.58.0-rc.17",
27
+ "@fundamental-ngx/i18n": "0.58.0-rc.17",
28
28
  "@sap-theming/theming-base-content": "^11.31.0",
29
29
  "fundamental-styles": "0.40.1",
30
30
  "rxjs": "^7.8.0"
@@ -311,10 +311,6 @@
311
311
  "types": "./rating-indicator/index.d.ts",
312
312
  "default": "./fesm2022/fundamental-ngx-core-rating-indicator.mjs"
313
313
  },
314
- "./resizable-card-layout": {
315
- "types": "./resizable-card-layout/index.d.ts",
316
- "default": "./fesm2022/fundamental-ngx-core-resizable-card-layout.mjs"
317
- },
318
314
  "./scroll-spy": {
319
315
  "types": "./scroll-spy/index.d.ts",
320
316
  "default": "./fesm2022/fundamental-ngx-core-scroll-spy.mjs"
@@ -323,6 +319,10 @@
323
319
  "types": "./scrollbar/index.d.ts",
324
320
  "default": "./fesm2022/fundamental-ngx-core-scrollbar.mjs"
325
321
  },
322
+ "./resizable-card-layout": {
323
+ "types": "./resizable-card-layout/index.d.ts",
324
+ "default": "./fesm2022/fundamental-ngx-core-resizable-card-layout.mjs"
325
+ },
326
326
  "./segmented-button": {
327
327
  "types": "./segmented-button/index.d.ts",
328
328
  "default": "./fesm2022/fundamental-ngx-core-segmented-button.mjs"
@@ -351,17 +351,17 @@
351
351
  "types": "./skeleton/index.d.ts",
352
352
  "default": "./fesm2022/fundamental-ngx-core-skeleton.mjs"
353
353
  },
354
- "./slider": {
355
- "types": "./slider/index.d.ts",
356
- "default": "./fesm2022/fundamental-ngx-core-slider.mjs"
354
+ "./status-indicator": {
355
+ "types": "./status-indicator/index.d.ts",
356
+ "default": "./fesm2022/fundamental-ngx-core-status-indicator.mjs"
357
357
  },
358
358
  "./split-button": {
359
359
  "types": "./split-button/index.d.ts",
360
360
  "default": "./fesm2022/fundamental-ngx-core-split-button.mjs"
361
361
  },
362
- "./status-indicator": {
363
- "types": "./status-indicator/index.d.ts",
364
- "default": "./fesm2022/fundamental-ngx-core-status-indicator.mjs"
362
+ "./slider": {
363
+ "types": "./slider/index.d.ts",
364
+ "default": "./fesm2022/fundamental-ngx-core-slider.mjs"
365
365
  },
366
366
  "./step-input": {
367
367
  "types": "./step-input/index.d.ts",
@@ -375,14 +375,14 @@
375
375
  "types": "./table/index.d.ts",
376
376
  "default": "./fesm2022/fundamental-ngx-core-table.mjs"
377
377
  },
378
- "./tabs": {
379
- "types": "./tabs/index.d.ts",
380
- "default": "./fesm2022/fundamental-ngx-core-tabs.mjs"
381
- },
382
378
  "./tests": {
383
379
  "types": "./tests/index.d.ts",
384
380
  "default": "./fesm2022/fundamental-ngx-core-tests.mjs"
385
381
  },
382
+ "./tabs": {
383
+ "types": "./tabs/index.d.ts",
384
+ "default": "./fesm2022/fundamental-ngx-core-tabs.mjs"
385
+ },
386
386
  "./text": {
387
387
  "types": "./text/index.d.ts",
388
388
  "default": "./fesm2022/fundamental-ngx-core-text.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 {