@fundamental-ngx/btp 0.58.0-rc.7 → 0.58.0-rc.70
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/fesm2022/fundamental-ngx-btp-navigation.mjs +975 -163
- package/fesm2022/fundamental-ngx-btp-navigation.mjs.map +1 -1
- package/fesm2022/fundamental-ngx-btp-tool-header.mjs +3 -3
- package/fesm2022/fundamental-ngx-btp-tool-header.mjs.map +1 -1
- package/fesm2022/fundamental-ngx-btp-tool-layout.mjs +14 -4
- package/fesm2022/fundamental-ngx-btp-tool-layout.mjs.map +1 -1
- package/navigation/index.d.ts +275 -63
- package/package.json +13 -3
- package/tool-layout/index.d.ts +4 -1
|
@@ -484,7 +484,7 @@ class ToolHeaderComponent extends ToolHeaderComponentClass {
|
|
|
484
484
|
return injector;
|
|
485
485
|
}
|
|
486
486
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.4", ngImport: i0, type: ToolHeaderComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
487
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.1.4", type: ToolHeaderComponent, isStandalone: true, selector: "fdb-tool-header", inputs: { productName: "productName", secondTitle: "secondTitle", _mode: ["mode", "_mode"], _orientation: ["orientation", "_orientation"], showMenuButton: ["showMenuButton", "showMenuButton", booleanAttribute], showVoiceInputAction: ["showVoiceInputAction", "showVoiceInputAction", booleanAttribute] }, outputs: { menuClick: "menuClick", menuExpand: "menuExpand", menuCollapse: "menuCollapse", microphoneClick: "microphoneClick", logoClick: "logoClick" }, host: { listeners: { "document:click": "_onClick($event)", "document:keydown.control.k": "_onKeyDown(
|
|
487
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.1.4", type: ToolHeaderComponent, isStandalone: true, selector: "fdb-tool-header", inputs: { productName: "productName", secondTitle: "secondTitle", _mode: ["mode", "_mode"], _orientation: ["orientation", "_orientation"], showMenuButton: ["showMenuButton", "showMenuButton", booleanAttribute], showVoiceInputAction: ["showVoiceInputAction", "showVoiceInputAction", booleanAttribute] }, outputs: { menuClick: "menuClick", menuExpand: "menuExpand", menuCollapse: "menuCollapse", microphoneClick: "microphoneClick", logoClick: "logoClick" }, host: { listeners: { "document:click": "_onClick($event)", "document:keydown.control.k": "_onKeyDown()", "document:keydown.meta.k": "_onKeyDown()" }, properties: { "class.fd-tool-header--menu": "showMenuButton" }, classAttribute: "fd-tool-header" }, providers: [
|
|
488
488
|
contentDensityObserverProviders(),
|
|
489
489
|
{
|
|
490
490
|
provide: ToolHeaderComponentClass,
|
|
@@ -571,10 +571,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.4", ngImpor
|
|
|
571
571
|
args: ['document:click', ['$event']]
|
|
572
572
|
}], _onKeyDown: [{
|
|
573
573
|
type: HostListener,
|
|
574
|
-
args: ['document:keydown.control.k'
|
|
574
|
+
args: ['document:keydown.control.k']
|
|
575
575
|
}, {
|
|
576
576
|
type: HostListener,
|
|
577
|
-
args: ['document:keydown.meta.k'
|
|
577
|
+
args: ['document:keydown.meta.k']
|
|
578
578
|
}] } });
|
|
579
579
|
|
|
580
580
|
class ToolHeaderActionDirective extends ToolHeaderActionClass {
|