@fundamental-ngx/btp 0.48.0-rc.9 → 0.48.0
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/button/nested-button.directive.d.ts +2 -3
- package/esm2022/button/button-type-guard.mjs +3 -3
- package/esm2022/button/nested-button.directive.mjs +8 -7
- package/esm2022/button/tool-header-button.directive.mjs +3 -3
- package/esm2022/navigation/components/navigation/navigation.component.mjs +235 -0
- package/esm2022/navigation/components/navigation-end/navigation-content-end.component.mjs +61 -0
- package/esm2022/navigation/components/navigation-item/navigation-list-item.component.mjs +489 -0
- package/esm2022/navigation/components/navigation-link/navigation-link.component.mjs +135 -0
- package/esm2022/navigation/components/navigation-list/navigation-list.component.mjs +174 -0
- package/esm2022/navigation/components/navigation-more-button/navigation-more-button.component.mjs +140 -0
- package/esm2022/navigation/components/navigation-start/navigation-content-start.component.mjs +152 -0
- package/esm2022/navigation/directives/navigation-list-data-source.directive.mjs +28 -0
- package/esm2022/navigation/directives/navigation-list-item-ref.directive.mjs +101 -0
- package/esm2022/navigation/index.mjs +31 -11
- package/esm2022/navigation/models/navigation-content-container.class.mjs +39 -0
- package/esm2022/navigation/models/navigation-data-source-item.model.mjs +42 -0
- package/esm2022/navigation/models/navigation-item-link.class.mjs +3 -0
- package/esm2022/navigation/models/navigation-list-item.class.mjs +63 -0
- package/esm2022/navigation/models/navigation.class.mjs +3 -0
- package/esm2022/navigation/models/navigation.types.mjs +2 -0
- package/esm2022/navigation/services/navigation.service.mjs +15 -0
- package/esm2022/navigation-menu/lib/navigation-menu-item.component.mjs +23 -7
- package/esm2022/navigation-menu/lib/navigation-menu-popover-control.directive.mjs +3 -3
- package/esm2022/navigation-menu/lib/navigation-menu-popover.component.mjs +3 -3
- package/esm2022/navigation-menu/lib/navigation-menu.component.mjs +4 -4
- package/esm2022/navigation-menu/lib/navigation-menu.module.mjs +4 -4
- package/esm2022/search-field/search-field.component.mjs +5 -5
- package/esm2022/splitter/constants.mjs +5 -0
- package/esm2022/splitter/fundamental-ngx-btp-splitter.mjs +5 -0
- package/esm2022/splitter/index.mjs +11 -0
- package/esm2022/splitter/interfaces/splitter-pane-resize-event.interface.mjs +2 -0
- package/esm2022/splitter/splitter-pagination/splitter-pagination.component.mjs +42 -0
- package/esm2022/splitter/splitter-pane-container/no-default-pane.pipe.mjs +25 -0
- package/esm2022/splitter/splitter-pane-container/splitter-pane-container.component.mjs +369 -0
- package/esm2022/splitter/splitter-pane-container/splitter-pane-container.token.mjs +3 -0
- package/esm2022/splitter/splitter-pane-container/splitter-pane-orientation.enum.mjs +6 -0
- package/esm2022/splitter/splitter-pane-container/splitter-pane.container.mjs +2 -0
- package/esm2022/splitter/splitter-resizer/splitter-resizer.component.mjs +193 -0
- package/esm2022/splitter/splitter-split-pane/splitter-split-pane.component.mjs +133 -0
- package/esm2022/splitter/splitter.component.mjs +54 -0
- package/esm2022/splitter/splitter.module.mjs +45 -0
- package/esm2022/tool-header/components/tool-header/tool-header.component.mjs +29 -26
- package/esm2022/tool-header/components/tool-header-action-separator.component.mjs +3 -3
- package/esm2022/tool-header/components/tool-header-product-switch.component.mjs +3 -3
- package/esm2022/tool-header/directives/tool-header-action-button.directive.mjs +3 -3
- package/esm2022/tool-header/directives/tool-header-action.directive.mjs +3 -3
- package/esm2022/tool-header/directives/tool-header-auto-mode.directive.mjs +4 -4
- package/esm2022/tool-header/directives/tool-header-element.directive.mjs +3 -3
- package/esm2022/tool-header/directives/tool-header-group.directive.mjs +11 -8
- package/esm2022/tool-header/directives/tool-header-logo.directive.mjs +3 -3
- package/esm2022/tool-header/directives/tool-header-user.directive.mjs +3 -3
- package/esm2022/tool-header/tool-header-action.class.mjs +6 -7
- package/esm2022/tool-header/tool-header-component.class.mjs +29 -23
- package/esm2022/tool-layout/directives/tool-layout-container.directive.mjs +3 -3
- package/esm2022/tool-layout/directives/tool-layout-content-container.directive.mjs +3 -3
- package/esm2022/tool-layout/directives/tool-layout-header-container.directive.mjs +3 -3
- package/esm2022/tool-layout/directives/tool-layout-navigation-container.directive.mjs +3 -3
- package/esm2022/tool-layout/tool-layout.component.mjs +4 -4
- package/esm2022/tool-layout/tool-layout.module.mjs +4 -4
- package/fesm2022/fundamental-ngx-btp-button.mjs +13 -12
- package/fesm2022/fundamental-ngx-btp-button.mjs.map +1 -1
- package/fesm2022/fundamental-ngx-btp-navigation-menu.mjs +36 -20
- package/fesm2022/fundamental-ngx-btp-navigation-menu.mjs.map +1 -1
- package/fesm2022/fundamental-ngx-btp-navigation.mjs +1334 -1137
- package/fesm2022/fundamental-ngx-btp-navigation.mjs.map +1 -1
- package/fesm2022/fundamental-ngx-btp-search-field.mjs +4 -4
- package/fesm2022/fundamental-ngx-btp-search-field.mjs.map +1 -1
- package/fesm2022/fundamental-ngx-btp-splitter.mjs +837 -0
- package/fesm2022/fundamental-ngx-btp-splitter.mjs.map +1 -0
- package/fesm2022/fundamental-ngx-btp-tool-header.mjs +93 -79
- package/fesm2022/fundamental-ngx-btp-tool-header.mjs.map +1 -1
- package/fesm2022/fundamental-ngx-btp-tool-layout.mjs +20 -20
- package/fesm2022/fundamental-ngx-btp-tool-layout.mjs.map +1 -1
- package/fundamental-ngx-btp-v0.48.0.tgz +0 -0
- package/navigation/components/navigation/navigation.component.d.ts +105 -0
- package/navigation/components/navigation-end/navigation-content-end.component.d.ts +18 -0
- package/navigation/components/navigation-item/navigation-list-item.component.d.ts +174 -0
- package/navigation/components/navigation-link/navigation-link.component.d.ts +52 -0
- package/navigation/components/navigation-list/navigation-list.component.d.ts +64 -0
- package/navigation/components/navigation-more-button/navigation-more-button.component.d.ts +76 -0
- package/navigation/components/navigation-start/navigation-content-start.component.d.ts +50 -0
- package/navigation/directives/navigation-list-data-source.directive.d.ts +7 -0
- package/navigation/directives/navigation-list-item-ref.directive.d.ts +60 -0
- package/navigation/index.d.ts +21 -10
- package/navigation/models/navigation-content-container.class.d.ts +32 -0
- package/navigation/models/navigation-data-source-item.model.d.ts +32 -0
- package/navigation/models/navigation-item-link.class.d.ts +9 -0
- package/navigation/models/navigation-list-item.class.d.ts +82 -0
- package/navigation/models/navigation.class.d.ts +14 -0
- package/navigation/{navigation.service.d.ts → services/navigation.service.d.ts} +4 -3
- package/navigation-menu/lib/navigation-menu-item.component.d.ts +4 -1
- package/package.json +12 -3
- package/splitter/constants.d.ts +4 -0
- package/splitter/index.d.ts +10 -0
- package/splitter/interfaces/splitter-pane-resize-event.interface.d.ts +5 -0
- package/splitter/splitter-pagination/splitter-pagination.component.d.ts +18 -0
- package/splitter/splitter-pane-container/no-default-pane.pipe.d.ts +10 -0
- package/splitter/splitter-pane-container/splitter-pane-container.component.d.ts +115 -0
- package/splitter/splitter-pane-container/splitter-pane-container.token.d.ts +3 -0
- package/splitter/splitter-pane-container/splitter-pane-orientation.enum.d.ts +5 -0
- package/splitter/splitter-pane-container/splitter-pane.container.d.ts +17 -0
- package/splitter/splitter-resizer/splitter-resizer.component.d.ts +54 -0
- package/splitter/splitter-split-pane/splitter-split-pane.component.d.ts +57 -0
- package/splitter/splitter.component.d.ts +23 -0
- package/splitter/splitter.module.d.ts +16 -0
- package/tool-header/components/tool-header/tool-header.component.d.ts +4 -5
- package/tool-header/directives/tool-header-auto-mode.directive.d.ts +1 -1
- package/tool-header/directives/tool-header-group.directive.d.ts +5 -6
- package/tool-header/tool-header-action.class.d.ts +1 -1
- package/tool-header/tool-header-component.class.d.ts +19 -6
- package/esm2022/navigation/directives/navigation-home.directive.mjs +0 -19
- package/esm2022/navigation/directives/navigation-list-spacer.directive.mjs +0 -24
- package/esm2022/navigation/navigation-component.token.mjs +0 -22
- package/esm2022/navigation/navigation-content-end.component.mjs +0 -62
- package/esm2022/navigation/navigation-content-start.component.mjs +0 -204
- package/esm2022/navigation/navigation-content.token.mjs +0 -3
- package/esm2022/navigation/navigation-link.component.mjs +0 -192
- package/esm2022/navigation/navigation-list/navigation-list-item.component.mjs +0 -424
- package/esm2022/navigation/navigation-list/navigation-list-overflow-item.component.mjs +0 -57
- package/esm2022/navigation/navigation-list/navigation-list.component.mjs +0 -124
- package/esm2022/navigation/navigation-list-component.token.mjs +0 -3
- package/esm2022/navigation/navigation-list-item-component.token.mjs +0 -90
- package/esm2022/navigation/navigation.component.mjs +0 -251
- package/esm2022/navigation/navigation.service.mjs +0 -14
- package/esm2022/navigation/navigation.types.mjs +0 -2
- package/fundamental-ngx-btp-v0.48.0-rc.9.tgz +0 -0
- package/navigation/directives/navigation-home.directive.d.ts +0 -10
- package/navigation/directives/navigation-list-spacer.directive.d.ts +0 -8
- package/navigation/navigation-component.token.d.ts +0 -34
- package/navigation/navigation-content-end.component.d.ts +0 -23
- package/navigation/navigation-content-start.component.d.ts +0 -54
- package/navigation/navigation-content.token.d.ts +0 -11
- package/navigation/navigation-link.component.d.ts +0 -49
- package/navigation/navigation-list/navigation-list-item.component.d.ts +0 -142
- package/navigation/navigation-list/navigation-list-overflow-item.component.d.ts +0 -16
- package/navigation/navigation-list/navigation-list.component.d.ts +0 -60
- package/navigation/navigation-list-component.token.d.ts +0 -17
- package/navigation/navigation-list-item-component.token.d.ts +0 -68
- package/navigation/navigation.component.d.ts +0 -82
- /package/navigation/{navigation.types.d.ts → models/navigation.types.d.ts} +0 -0
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
import { BooleanInput } from '@angular/cdk/coercion';
|
|
2
1
|
import { OnChanges } from '@angular/core';
|
|
3
2
|
import { ButtonTypeGuard } from './button-type-guard';
|
|
4
3
|
import * as i0 from "@angular/core";
|
|
@@ -6,10 +5,10 @@ export declare class NestedButtonDirective extends ButtonTypeGuard implements On
|
|
|
6
5
|
/** Type of the button. In case of fdbNestedButton it is always a `nested` */
|
|
7
6
|
fdType: 'nested' | 'nested-square';
|
|
8
7
|
/** Whether the button should have squared form */
|
|
9
|
-
square:
|
|
8
|
+
square: boolean;
|
|
10
9
|
/** @hidden */
|
|
11
10
|
ngOnChanges(): void;
|
|
12
11
|
static ɵfac: i0.ɵɵFactoryDeclaration<NestedButtonDirective, never>;
|
|
13
12
|
static ɵdir: i0.ɵɵDirectiveDeclaration<NestedButtonDirective, "[fd-button][fdbNestedButton]", never, { "fdType": { "alias": "fdType"; "required": false; }; "square": { "alias": "square"; "required": false; }; }, {}, never, never, true, never>;
|
|
14
|
-
static ngAcceptInputType_square:
|
|
13
|
+
static ngAcceptInputType_square: unknown;
|
|
15
14
|
}
|
|
@@ -16,10 +16,10 @@ export class ButtonTypeGuard {
|
|
|
16
16
|
this._buttonComponent.fdType = this.fdType;
|
|
17
17
|
this._buttonComponent.buildComponentCssClass();
|
|
18
18
|
}
|
|
19
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.
|
|
20
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.0.
|
|
19
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.8", ngImport: i0, type: ButtonTypeGuard, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
20
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.0.8", type: ButtonTypeGuard, usesOnChanges: true, ngImport: i0 }); }
|
|
21
21
|
}
|
|
22
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.
|
|
22
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.8", ngImport: i0, type: ButtonTypeGuard, decorators: [{
|
|
23
23
|
type: Directive
|
|
24
24
|
}] });
|
|
25
25
|
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYnV0dG9uLXR5cGUtZ3VhcmQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9saWJzL2J0cC9idXR0b24vYnV0dG9uLXR5cGUtZ3VhcmQudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFNBQVMsRUFBRSxNQUFNLEVBQXFCLE1BQU0sZUFBZSxDQUFDO0FBQ3JFLE9BQU8sRUFBbUIsbUJBQW1CLEVBQUUsTUFBTSw4QkFBOEIsQ0FBQzs7QUFHcEYsTUFBTSxPQUFnQixlQUFlO0lBRHJDO1FBS0ksY0FBYztRQUNKLHFCQUFnQixHQUFHLE1BQU0sQ0FBa0IsbUJBQW1CLEVBQUUsRUFBRSxJQUFJLEVBQUUsSUFBSSxFQUFFLENBQUMsQ0FBQztLQWE3RjtJQVhHLGNBQWM7SUFDZCxRQUFRO1FBQ0osSUFBSSxDQUFDLGdCQUFnQixDQUFDLE1BQU0sR0FBRyxJQUFJLENBQUMsTUFBYSxDQUFDO1FBQ2xELElBQUksQ0FBQyxnQkFBZ0IsQ0FBQyxzQkFBc0IsRUFBRSxDQUFDO0lBQ25ELENBQUM7SUFFRCxjQUFjO0lBQ2QsV0FBVztRQUNQLElBQUksQ0FBQyxnQkFBZ0IsQ0FBQyxNQUFNLEdBQUcsSUFBSSxDQUFDLE1BQWEsQ0FBQztRQUNsRCxJQUFJLENBQUMsZ0JBQWdCLENBQUMsc0JBQXNCLEVBQUUsQ0FBQztJQUNuRCxDQUFDOzhHQWpCaUIsZUFBZTtrR0FBZixlQUFlOzsyRkFBZixlQUFlO2tCQURwQyxTQUFTIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgRGlyZWN0aXZlLCBpbmplY3QsIE9uQ2hhbmdlcywgT25Jbml0IH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQgeyBCdXR0b25Db21wb25lbnQsIEZEX0JVVFRPTl9DT01QT05FTlQgfSBmcm9tICdAZnVuZGFtZW50YWwtbmd4L2NvcmUvYnV0dG9uJztcblxuQERpcmVjdGl2ZSgpXG5leHBvcnQgYWJzdHJhY3QgY2xhc3MgQnV0dG9uVHlwZUd1YXJkIGltcGxlbWVudHMgT25Jbml0LCBPbkNoYW5nZXMge1xuICAgIC8qKiBUeXBlIG9mIHRoZSBidXR0b24uICovXG4gICAgYWJzdHJhY3QgZmRUeXBlOiBzdHJpbmc7XG5cbiAgICAvKiogQGhpZGRlbiAqL1xuICAgIHByb3RlY3RlZCBfYnV0dG9uQ29tcG9uZW50ID0gaW5qZWN0PEJ1dHRvbkNvbXBvbmVudD4oRkRfQlVUVE9OX0NPTVBPTkVOVCwgeyBob3N0OiB0cnVlIH0pO1xuXG4gICAgLyoqIEBoaWRkZW4gKi9cbiAgICBuZ09uSW5pdCgpOiB2b2lkIHtcbiAgICAgICAgdGhpcy5fYnV0dG9uQ29tcG9uZW50LmZkVHlwZSA9IHRoaXMuZmRUeXBlIGFzIGFueTtcbiAgICAgICAgdGhpcy5fYnV0dG9uQ29tcG9uZW50LmJ1aWxkQ29tcG9uZW50Q3NzQ2xhc3MoKTtcbiAgICB9XG5cbiAgICAvKiogQGhpZGRlbiAqL1xuICAgIG5nT25DaGFuZ2VzKCk6IHZvaWQge1xuICAgICAgICB0aGlzLl9idXR0b25Db21wb25lbnQuZmRUeXBlID0gdGhpcy5mZFR5cGUgYXMgYW55O1xuICAgICAgICB0aGlzLl9idXR0b25Db21wb25lbnQuYnVpbGRDb21wb25lbnRDc3NDbGFzcygpO1xuICAgIH1cbn1cbiJdfQ==
|
|
@@ -1,5 +1,4 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { Directive, Input } from '@angular/core';
|
|
1
|
+
import { Directive, Input, booleanAttribute } from '@angular/core';
|
|
3
2
|
import { ButtonTypeGuard } from './button-type-guard';
|
|
4
3
|
import * as i0 from "@angular/core";
|
|
5
4
|
export class NestedButtonDirective extends ButtonTypeGuard {
|
|
@@ -7,16 +6,18 @@ export class NestedButtonDirective extends ButtonTypeGuard {
|
|
|
7
6
|
super(...arguments);
|
|
8
7
|
/** Type of the button. In case of fdbNestedButton it is always a `nested` */
|
|
9
8
|
this.fdType = 'nested';
|
|
9
|
+
/** Whether the button should have squared form */
|
|
10
|
+
this.square = false;
|
|
10
11
|
}
|
|
11
12
|
/** @hidden */
|
|
12
13
|
ngOnChanges() {
|
|
13
14
|
this.fdType = this.square ? 'nested-square' : 'nested';
|
|
14
15
|
super.ngOnChanges();
|
|
15
16
|
}
|
|
16
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.
|
|
17
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "17.0.
|
|
17
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.8", ngImport: i0, type: NestedButtonDirective, deps: null, target: i0.ɵɵFactoryTarget.Directive }); }
|
|
18
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "17.0.8", type: NestedButtonDirective, isStandalone: true, selector: "[fd-button][fdbNestedButton]", inputs: { fdType: "fdType", square: ["square", "square", booleanAttribute] }, usesInheritance: true, usesOnChanges: true, ngImport: i0 }); }
|
|
18
19
|
}
|
|
19
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.
|
|
20
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.8", ngImport: i0, type: NestedButtonDirective, decorators: [{
|
|
20
21
|
type: Directive,
|
|
21
22
|
args: [{
|
|
22
23
|
selector: '[fd-button][fdbNestedButton]',
|
|
@@ -26,6 +27,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.4", ngImpor
|
|
|
26
27
|
type: Input
|
|
27
28
|
}], square: [{
|
|
28
29
|
type: Input,
|
|
29
|
-
args: [{ transform:
|
|
30
|
+
args: [{ transform: booleanAttribute }]
|
|
30
31
|
}] } });
|
|
31
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
32
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibmVzdGVkLWJ1dHRvbi5kaXJlY3RpdmUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9saWJzL2J0cC9idXR0b24vbmVzdGVkLWJ1dHRvbi5kaXJlY3RpdmUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFNBQVMsRUFBRSxLQUFLLEVBQWEsZ0JBQWdCLEVBQUUsTUFBTSxlQUFlLENBQUM7QUFDOUUsT0FBTyxFQUFFLGVBQWUsRUFBRSxNQUFNLHFCQUFxQixDQUFDOztBQU10RCxNQUFNLE9BQU8scUJBQXNCLFNBQVEsZUFBZTtJQUoxRDs7UUFLSSw2RUFBNkU7UUFFN0UsV0FBTSxHQUErQixRQUFpQixDQUFDO1FBRXZELGtEQUFrRDtRQUVsRCxXQUFNLEdBQUcsS0FBSyxDQUFDO0tBT2xCO0lBTEcsY0FBYztJQUNkLFdBQVc7UUFDUCxJQUFJLENBQUMsTUFBTSxHQUFHLElBQUksQ0FBQyxNQUFNLENBQUMsQ0FBQyxDQUFDLGVBQWUsQ0FBQyxDQUFDLENBQUMsUUFBUSxDQUFDO1FBQ3ZELEtBQUssQ0FBQyxXQUFXLEVBQUUsQ0FBQztJQUN4QixDQUFDOzhHQWJRLHFCQUFxQjtrR0FBckIscUJBQXFCLHlIQU1WLGdCQUFnQjs7MkZBTjNCLHFCQUFxQjtrQkFKakMsU0FBUzttQkFBQztvQkFDUCxRQUFRLEVBQUUsOEJBQThCO29CQUN4QyxVQUFVLEVBQUUsSUFBSTtpQkFDbkI7OEJBSUcsTUFBTTtzQkFETCxLQUFLO2dCQUtOLE1BQU07c0JBREwsS0FBSzt1QkFBQyxFQUFFLFNBQVMsRUFBRSxnQkFBZ0IsRUFBRSIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IERpcmVjdGl2ZSwgSW5wdXQsIE9uQ2hhbmdlcywgYm9vbGVhbkF0dHJpYnV0ZSB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHsgQnV0dG9uVHlwZUd1YXJkIH0gZnJvbSAnLi9idXR0b24tdHlwZS1ndWFyZCc7XG5cbkBEaXJlY3RpdmUoe1xuICAgIHNlbGVjdG9yOiAnW2ZkLWJ1dHRvbl1bZmRiTmVzdGVkQnV0dG9uXScsXG4gICAgc3RhbmRhbG9uZTogdHJ1ZVxufSlcbmV4cG9ydCBjbGFzcyBOZXN0ZWRCdXR0b25EaXJlY3RpdmUgZXh0ZW5kcyBCdXR0b25UeXBlR3VhcmQgaW1wbGVtZW50cyBPbkNoYW5nZXMge1xuICAgIC8qKiBUeXBlIG9mIHRoZSBidXR0b24uIEluIGNhc2Ugb2YgZmRiTmVzdGVkQnV0dG9uIGl0IGlzIGFsd2F5cyBhIGBuZXN0ZWRgICovXG4gICAgQElucHV0KClcbiAgICBmZFR5cGU6ICduZXN0ZWQnIHwgJ25lc3RlZC1zcXVhcmUnID0gJ25lc3RlZCcgYXMgY29uc3Q7XG5cbiAgICAvKiogV2hldGhlciB0aGUgYnV0dG9uIHNob3VsZCBoYXZlIHNxdWFyZWQgZm9ybSAqL1xuICAgIEBJbnB1dCh7IHRyYW5zZm9ybTogYm9vbGVhbkF0dHJpYnV0ZSB9KVxuICAgIHNxdWFyZSA9IGZhbHNlO1xuXG4gICAgLyoqIEBoaWRkZW4gKi9cbiAgICBuZ09uQ2hhbmdlcygpOiB2b2lkIHtcbiAgICAgICAgdGhpcy5mZFR5cGUgPSB0aGlzLnNxdWFyZSA/ICduZXN0ZWQtc3F1YXJlJyA6ICduZXN0ZWQnO1xuICAgICAgICBzdXBlci5uZ09uQ2hhbmdlcygpO1xuICAgIH1cbn1cbiJdfQ==
|
|
@@ -7,10 +7,10 @@ export class ToolHeaderButtonDirective extends ButtonTypeGuard {
|
|
|
7
7
|
/** Type of the button. In case of fdbToolHeaderButton it is always a `tool-header` */
|
|
8
8
|
this.fdType = 'tool-header';
|
|
9
9
|
}
|
|
10
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.
|
|
11
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.0.
|
|
10
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.8", ngImport: i0, type: ToolHeaderButtonDirective, deps: null, target: i0.ɵɵFactoryTarget.Directive }); }
|
|
11
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.0.8", type: ToolHeaderButtonDirective, isStandalone: true, selector: "[fd-button][fdbToolHeaderButton]", inputs: { fdType: "fdType" }, usesInheritance: true, ngImport: i0 }); }
|
|
12
12
|
}
|
|
13
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.
|
|
13
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.8", ngImport: i0, type: ToolHeaderButtonDirective, decorators: [{
|
|
14
14
|
type: Directive,
|
|
15
15
|
args: [{
|
|
16
16
|
selector: '[fd-button][fdbToolHeaderButton]',
|