@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.
Files changed (140) hide show
  1. package/button/nested-button.directive.d.ts +2 -3
  2. package/esm2022/button/button-type-guard.mjs +3 -3
  3. package/esm2022/button/nested-button.directive.mjs +8 -7
  4. package/esm2022/button/tool-header-button.directive.mjs +3 -3
  5. package/esm2022/navigation/components/navigation/navigation.component.mjs +235 -0
  6. package/esm2022/navigation/components/navigation-end/navigation-content-end.component.mjs +61 -0
  7. package/esm2022/navigation/components/navigation-item/navigation-list-item.component.mjs +489 -0
  8. package/esm2022/navigation/components/navigation-link/navigation-link.component.mjs +135 -0
  9. package/esm2022/navigation/components/navigation-list/navigation-list.component.mjs +174 -0
  10. package/esm2022/navigation/components/navigation-more-button/navigation-more-button.component.mjs +140 -0
  11. package/esm2022/navigation/components/navigation-start/navigation-content-start.component.mjs +152 -0
  12. package/esm2022/navigation/directives/navigation-list-data-source.directive.mjs +28 -0
  13. package/esm2022/navigation/directives/navigation-list-item-ref.directive.mjs +101 -0
  14. package/esm2022/navigation/index.mjs +31 -11
  15. package/esm2022/navigation/models/navigation-content-container.class.mjs +39 -0
  16. package/esm2022/navigation/models/navigation-data-source-item.model.mjs +42 -0
  17. package/esm2022/navigation/models/navigation-item-link.class.mjs +3 -0
  18. package/esm2022/navigation/models/navigation-list-item.class.mjs +63 -0
  19. package/esm2022/navigation/models/navigation.class.mjs +3 -0
  20. package/esm2022/navigation/models/navigation.types.mjs +2 -0
  21. package/esm2022/navigation/services/navigation.service.mjs +15 -0
  22. package/esm2022/navigation-menu/lib/navigation-menu-item.component.mjs +23 -7
  23. package/esm2022/navigation-menu/lib/navigation-menu-popover-control.directive.mjs +3 -3
  24. package/esm2022/navigation-menu/lib/navigation-menu-popover.component.mjs +3 -3
  25. package/esm2022/navigation-menu/lib/navigation-menu.component.mjs +4 -4
  26. package/esm2022/navigation-menu/lib/navigation-menu.module.mjs +4 -4
  27. package/esm2022/search-field/search-field.component.mjs +5 -5
  28. package/esm2022/splitter/constants.mjs +5 -0
  29. package/esm2022/splitter/fundamental-ngx-btp-splitter.mjs +5 -0
  30. package/esm2022/splitter/index.mjs +11 -0
  31. package/esm2022/splitter/interfaces/splitter-pane-resize-event.interface.mjs +2 -0
  32. package/esm2022/splitter/splitter-pagination/splitter-pagination.component.mjs +42 -0
  33. package/esm2022/splitter/splitter-pane-container/no-default-pane.pipe.mjs +25 -0
  34. package/esm2022/splitter/splitter-pane-container/splitter-pane-container.component.mjs +369 -0
  35. package/esm2022/splitter/splitter-pane-container/splitter-pane-container.token.mjs +3 -0
  36. package/esm2022/splitter/splitter-pane-container/splitter-pane-orientation.enum.mjs +6 -0
  37. package/esm2022/splitter/splitter-pane-container/splitter-pane.container.mjs +2 -0
  38. package/esm2022/splitter/splitter-resizer/splitter-resizer.component.mjs +193 -0
  39. package/esm2022/splitter/splitter-split-pane/splitter-split-pane.component.mjs +133 -0
  40. package/esm2022/splitter/splitter.component.mjs +54 -0
  41. package/esm2022/splitter/splitter.module.mjs +45 -0
  42. package/esm2022/tool-header/components/tool-header/tool-header.component.mjs +29 -26
  43. package/esm2022/tool-header/components/tool-header-action-separator.component.mjs +3 -3
  44. package/esm2022/tool-header/components/tool-header-product-switch.component.mjs +3 -3
  45. package/esm2022/tool-header/directives/tool-header-action-button.directive.mjs +3 -3
  46. package/esm2022/tool-header/directives/tool-header-action.directive.mjs +3 -3
  47. package/esm2022/tool-header/directives/tool-header-auto-mode.directive.mjs +4 -4
  48. package/esm2022/tool-header/directives/tool-header-element.directive.mjs +3 -3
  49. package/esm2022/tool-header/directives/tool-header-group.directive.mjs +11 -8
  50. package/esm2022/tool-header/directives/tool-header-logo.directive.mjs +3 -3
  51. package/esm2022/tool-header/directives/tool-header-user.directive.mjs +3 -3
  52. package/esm2022/tool-header/tool-header-action.class.mjs +6 -7
  53. package/esm2022/tool-header/tool-header-component.class.mjs +29 -23
  54. package/esm2022/tool-layout/directives/tool-layout-container.directive.mjs +3 -3
  55. package/esm2022/tool-layout/directives/tool-layout-content-container.directive.mjs +3 -3
  56. package/esm2022/tool-layout/directives/tool-layout-header-container.directive.mjs +3 -3
  57. package/esm2022/tool-layout/directives/tool-layout-navigation-container.directive.mjs +3 -3
  58. package/esm2022/tool-layout/tool-layout.component.mjs +4 -4
  59. package/esm2022/tool-layout/tool-layout.module.mjs +4 -4
  60. package/fesm2022/fundamental-ngx-btp-button.mjs +13 -12
  61. package/fesm2022/fundamental-ngx-btp-button.mjs.map +1 -1
  62. package/fesm2022/fundamental-ngx-btp-navigation-menu.mjs +36 -20
  63. package/fesm2022/fundamental-ngx-btp-navigation-menu.mjs.map +1 -1
  64. package/fesm2022/fundamental-ngx-btp-navigation.mjs +1334 -1137
  65. package/fesm2022/fundamental-ngx-btp-navigation.mjs.map +1 -1
  66. package/fesm2022/fundamental-ngx-btp-search-field.mjs +4 -4
  67. package/fesm2022/fundamental-ngx-btp-search-field.mjs.map +1 -1
  68. package/fesm2022/fundamental-ngx-btp-splitter.mjs +837 -0
  69. package/fesm2022/fundamental-ngx-btp-splitter.mjs.map +1 -0
  70. package/fesm2022/fundamental-ngx-btp-tool-header.mjs +93 -79
  71. package/fesm2022/fundamental-ngx-btp-tool-header.mjs.map +1 -1
  72. package/fesm2022/fundamental-ngx-btp-tool-layout.mjs +20 -20
  73. package/fesm2022/fundamental-ngx-btp-tool-layout.mjs.map +1 -1
  74. package/fundamental-ngx-btp-v0.48.0.tgz +0 -0
  75. package/navigation/components/navigation/navigation.component.d.ts +105 -0
  76. package/navigation/components/navigation-end/navigation-content-end.component.d.ts +18 -0
  77. package/navigation/components/navigation-item/navigation-list-item.component.d.ts +174 -0
  78. package/navigation/components/navigation-link/navigation-link.component.d.ts +52 -0
  79. package/navigation/components/navigation-list/navigation-list.component.d.ts +64 -0
  80. package/navigation/components/navigation-more-button/navigation-more-button.component.d.ts +76 -0
  81. package/navigation/components/navigation-start/navigation-content-start.component.d.ts +50 -0
  82. package/navigation/directives/navigation-list-data-source.directive.d.ts +7 -0
  83. package/navigation/directives/navigation-list-item-ref.directive.d.ts +60 -0
  84. package/navigation/index.d.ts +21 -10
  85. package/navigation/models/navigation-content-container.class.d.ts +32 -0
  86. package/navigation/models/navigation-data-source-item.model.d.ts +32 -0
  87. package/navigation/models/navigation-item-link.class.d.ts +9 -0
  88. package/navigation/models/navigation-list-item.class.d.ts +82 -0
  89. package/navigation/models/navigation.class.d.ts +14 -0
  90. package/navigation/{navigation.service.d.ts → services/navigation.service.d.ts} +4 -3
  91. package/navigation-menu/lib/navigation-menu-item.component.d.ts +4 -1
  92. package/package.json +12 -3
  93. package/splitter/constants.d.ts +4 -0
  94. package/splitter/index.d.ts +10 -0
  95. package/splitter/interfaces/splitter-pane-resize-event.interface.d.ts +5 -0
  96. package/splitter/splitter-pagination/splitter-pagination.component.d.ts +18 -0
  97. package/splitter/splitter-pane-container/no-default-pane.pipe.d.ts +10 -0
  98. package/splitter/splitter-pane-container/splitter-pane-container.component.d.ts +115 -0
  99. package/splitter/splitter-pane-container/splitter-pane-container.token.d.ts +3 -0
  100. package/splitter/splitter-pane-container/splitter-pane-orientation.enum.d.ts +5 -0
  101. package/splitter/splitter-pane-container/splitter-pane.container.d.ts +17 -0
  102. package/splitter/splitter-resizer/splitter-resizer.component.d.ts +54 -0
  103. package/splitter/splitter-split-pane/splitter-split-pane.component.d.ts +57 -0
  104. package/splitter/splitter.component.d.ts +23 -0
  105. package/splitter/splitter.module.d.ts +16 -0
  106. package/tool-header/components/tool-header/tool-header.component.d.ts +4 -5
  107. package/tool-header/directives/tool-header-auto-mode.directive.d.ts +1 -1
  108. package/tool-header/directives/tool-header-group.directive.d.ts +5 -6
  109. package/tool-header/tool-header-action.class.d.ts +1 -1
  110. package/tool-header/tool-header-component.class.d.ts +19 -6
  111. package/esm2022/navigation/directives/navigation-home.directive.mjs +0 -19
  112. package/esm2022/navigation/directives/navigation-list-spacer.directive.mjs +0 -24
  113. package/esm2022/navigation/navigation-component.token.mjs +0 -22
  114. package/esm2022/navigation/navigation-content-end.component.mjs +0 -62
  115. package/esm2022/navigation/navigation-content-start.component.mjs +0 -204
  116. package/esm2022/navigation/navigation-content.token.mjs +0 -3
  117. package/esm2022/navigation/navigation-link.component.mjs +0 -192
  118. package/esm2022/navigation/navigation-list/navigation-list-item.component.mjs +0 -424
  119. package/esm2022/navigation/navigation-list/navigation-list-overflow-item.component.mjs +0 -57
  120. package/esm2022/navigation/navigation-list/navigation-list.component.mjs +0 -124
  121. package/esm2022/navigation/navigation-list-component.token.mjs +0 -3
  122. package/esm2022/navigation/navigation-list-item-component.token.mjs +0 -90
  123. package/esm2022/navigation/navigation.component.mjs +0 -251
  124. package/esm2022/navigation/navigation.service.mjs +0 -14
  125. package/esm2022/navigation/navigation.types.mjs +0 -2
  126. package/fundamental-ngx-btp-v0.48.0-rc.9.tgz +0 -0
  127. package/navigation/directives/navigation-home.directive.d.ts +0 -10
  128. package/navigation/directives/navigation-list-spacer.directive.d.ts +0 -8
  129. package/navigation/navigation-component.token.d.ts +0 -34
  130. package/navigation/navigation-content-end.component.d.ts +0 -23
  131. package/navigation/navigation-content-start.component.d.ts +0 -54
  132. package/navigation/navigation-content.token.d.ts +0 -11
  133. package/navigation/navigation-link.component.d.ts +0 -49
  134. package/navigation/navigation-list/navigation-list-item.component.d.ts +0 -142
  135. package/navigation/navigation-list/navigation-list-overflow-item.component.d.ts +0 -16
  136. package/navigation/navigation-list/navigation-list.component.d.ts +0 -60
  137. package/navigation/navigation-list-component.token.d.ts +0 -17
  138. package/navigation/navigation-list-item-component.token.d.ts +0 -68
  139. package/navigation/navigation.component.d.ts +0 -82
  140. /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: BooleanInput;
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: any;
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.4", ngImport: i0, type: ButtonTypeGuard, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
20
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.0.4", type: ButtonTypeGuard, usesOnChanges: true, ngImport: i0 }); }
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.4", ngImport: i0, type: ButtonTypeGuard, decorators: [{
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 { coerceBooleanProperty } from '@angular/cdk/coercion';
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.4", ngImport: i0, type: NestedButtonDirective, deps: null, target: i0.ɵɵFactoryTarget.Directive }); }
17
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "17.0.4", type: NestedButtonDirective, isStandalone: true, selector: "[fd-button][fdbNestedButton]", inputs: { fdType: "fdType", square: ["square", "square", coerceBooleanProperty] }, usesInheritance: true, usesOnChanges: true, ngImport: i0 }); }
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.4", ngImport: i0, type: NestedButtonDirective, decorators: [{
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: coerceBooleanProperty }]
30
+ args: [{ transform: booleanAttribute }]
30
31
  }] } });
31
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibmVzdGVkLWJ1dHRvbi5kaXJlY3RpdmUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9saWJzL2J0cC9idXR0b24vbmVzdGVkLWJ1dHRvbi5kaXJlY3RpdmUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFnQixxQkFBcUIsRUFBRSxNQUFNLHVCQUF1QixDQUFDO0FBQzVFLE9BQU8sRUFBRSxTQUFTLEVBQUUsS0FBSyxFQUFhLE1BQU0sZUFBZSxDQUFDO0FBQzVELE9BQU8sRUFBRSxlQUFlLEVBQUUsTUFBTSxxQkFBcUIsQ0FBQzs7QUFNdEQsTUFBTSxPQUFPLHFCQUFzQixTQUFRLGVBQWU7SUFKMUQ7O1FBS0ksNkVBQTZFO1FBRTdFLFdBQU0sR0FBK0IsUUFBaUIsQ0FBQztLQVcxRDtJQUxHLGNBQWM7SUFDZCxXQUFXO1FBQ1AsSUFBSSxDQUFDLE1BQU0sR0FBRyxJQUFJLENBQUMsTUFBTSxDQUFDLENBQUMsQ0FBQyxlQUFlLENBQUMsQ0FBQyxDQUFDLFFBQVEsQ0FBQztRQUN2RCxLQUFLLENBQUMsV0FBVyxFQUFFLENBQUM7SUFDeEIsQ0FBQzs4R0FiUSxxQkFBcUI7a0dBQXJCLHFCQUFxQix5SEFNVixxQkFBcUI7OzJGQU5oQyxxQkFBcUI7a0JBSmpDLFNBQVM7bUJBQUM7b0JBQ1AsUUFBUSxFQUFFLDhCQUE4QjtvQkFDeEMsVUFBVSxFQUFFLElBQUk7aUJBQ25COzhCQUlHLE1BQU07c0JBREwsS0FBSztnQkFLTixNQUFNO3NCQURMLEtBQUs7dUJBQUMsRUFBRSxTQUFTLEVBQUUscUJBQXFCLEVBQUUiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBCb29sZWFuSW5wdXQsIGNvZXJjZUJvb2xlYW5Qcm9wZXJ0eSB9IGZyb20gJ0Bhbmd1bGFyL2Nkay9jb2VyY2lvbic7XG5pbXBvcnQgeyBEaXJlY3RpdmUsIElucHV0LCBPbkNoYW5nZXMgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7IEJ1dHRvblR5cGVHdWFyZCB9IGZyb20gJy4vYnV0dG9uLXR5cGUtZ3VhcmQnO1xuXG5ARGlyZWN0aXZlKHtcbiAgICBzZWxlY3RvcjogJ1tmZC1idXR0b25dW2ZkYk5lc3RlZEJ1dHRvbl0nLFxuICAgIHN0YW5kYWxvbmU6IHRydWVcbn0pXG5leHBvcnQgY2xhc3MgTmVzdGVkQnV0dG9uRGlyZWN0aXZlIGV4dGVuZHMgQnV0dG9uVHlwZUd1YXJkIGltcGxlbWVudHMgT25DaGFuZ2VzIHtcbiAgICAvKiogVHlwZSBvZiB0aGUgYnV0dG9uLiBJbiBjYXNlIG9mIGZkYk5lc3RlZEJ1dHRvbiBpdCBpcyBhbHdheXMgYSBgbmVzdGVkYCAqL1xuICAgIEBJbnB1dCgpXG4gICAgZmRUeXBlOiAnbmVzdGVkJyB8ICduZXN0ZWQtc3F1YXJlJyA9ICduZXN0ZWQnIGFzIGNvbnN0O1xuXG4gICAgLyoqIFdoZXRoZXIgdGhlIGJ1dHRvbiBzaG91bGQgaGF2ZSBzcXVhcmVkIGZvcm0gKi9cbiAgICBASW5wdXQoeyB0cmFuc2Zvcm06IGNvZXJjZUJvb2xlYW5Qcm9wZXJ0eSB9KVxuICAgIHNxdWFyZTogQm9vbGVhbklucHV0O1xuXG4gICAgLyoqIEBoaWRkZW4gKi9cbiAgICBuZ09uQ2hhbmdlcygpOiB2b2lkIHtcbiAgICAgICAgdGhpcy5mZFR5cGUgPSB0aGlzLnNxdWFyZSA/ICduZXN0ZWQtc3F1YXJlJyA6ICduZXN0ZWQnO1xuICAgICAgICBzdXBlci5uZ09uQ2hhbmdlcygpO1xuICAgIH1cbn1cbiJdfQ==
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.4", ngImport: i0, type: ToolHeaderButtonDirective, deps: null, target: i0.ɵɵFactoryTarget.Directive }); }
11
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.0.4", type: ToolHeaderButtonDirective, isStandalone: true, selector: "[fd-button][fdbToolHeaderButton]", inputs: { fdType: "fdType" }, usesInheritance: true, ngImport: i0 }); }
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.4", ngImport: i0, type: ToolHeaderButtonDirective, decorators: [{
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]',