@fundamental-ngx/core 0.36.3-rc.2 → 0.36.3-rc.4

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.36.3-rc.2",
3
+ "version": "0.36.3-rc.4",
4
4
  "schematics": "./schematics/collection.json",
5
5
  "description": "Fundamental Library for Angular - core",
6
6
  "license": "Apache-2.0",
@@ -25,7 +25,7 @@
25
25
  "@sap-theming/theming-base-content": "11.1.40",
26
26
  "focus-trap": "6.7.3",
27
27
  "fundamental-styles": "0.25.0-rc.47",
28
- "@fundamental-ngx/i18n": "0.36.3-rc.2",
28
+ "@fundamental-ngx/i18n": "0.36.3-rc.4",
29
29
  "fast-deep-equal": "3.1.3",
30
30
  "lodash-es": "4.17.21",
31
31
  "tslib": "^2.0.0",
@@ -265,5 +265,5 @@ export declare class SelectComponent implements ControlValueAccessor, SelectInte
265
265
  /** @hidden */
266
266
  private _setupMobileMode;
267
267
  static ɵfac: i0.ɵɵFactoryDeclaration<SelectComponent, [{ attribute: "tabindex"; }, { optional: true; }, null, null, null, { optional: true; }, { optional: true; self: true; }, { optional: true; }, null]>;
268
- static ɵcmp: i0.ɵɵComponentDeclaration<SelectComponent, "fd-select", never, { "controlId": "controlId"; "state": "state"; "mobile": "mobile"; "stateMessage": "stateMessage"; "disabled": "disabled"; "required": "required"; "readonly": "readonly"; "placeholder": "placeholder"; "value": "value"; "extendedBodyTemplate": "extendedBodyTemplate"; "maxHeight": "maxHeight"; "glyph": "glyph"; "closeOnOutsideClick": "closeOnOutsideClick"; "fillControlMode": "fillControlMode"; "controlTemplate": "controlTemplate"; "appendTo": "appendTo"; "unselectMissingOption": "unselectMissingOption"; "typeaheadDebounceInterval": "typeaheadDebounceInterval"; "ariaLabelledBy": "ariaLabelledBy"; "ariaLabel": "ariaLabel"; "mobileConfig": "mobileConfig"; "inline": "inline"; }, { "isOpenChange": "isOpenChange"; "valueChange": "valueChange"; }, ["_options"], ["*"], false>;
268
+ static ɵcmp: i0.ɵɵComponentDeclaration<SelectComponent, "fd-select", never, { "controlId": "controlId"; "state": "state"; "mobile": "mobile"; "stateMessage": "stateMessage"; "disabled": "disabled"; "required": "required"; "readonly": "readonly"; "placeholder": "placeholder"; "value": "value"; "extendedBodyTemplate": "extendedBodyTemplate"; "maxHeight": "maxHeight"; "glyph": "glyph"; "closeOnOutsideClick": "closeOnOutsideClick"; "fillControlMode": "fillControlMode"; "controlTemplate": "controlTemplate"; "appendTo": "appendTo"; "unselectMissingOption": "unselectMissingOption"; "typeaheadDebounceInterval": "typeaheadDebounceInterval"; "ariaLabelledBy": "ariaLabelledBy"; "ariaLabel": "ariaLabel"; "mobileConfig": "mobileConfig"; "inline": "inline"; "compareWith": "compareWith"; }, { "isOpenChange": "isOpenChange"; "valueChange": "valueChange"; }, ["_options"], ["*"], false>;
269
269
  }
@@ -1,4 +1,4 @@
1
- import { ElementRef, EventEmitter, AfterViewInit, OnDestroy, OnChanges, Renderer2 } from '@angular/core';
1
+ import { ElementRef, EventEmitter, AfterViewInit, OnDestroy, OnChanges, Renderer2, ChangeDetectorRef } from '@angular/core';
2
2
  import { Nullable } from '@fundamental-ngx/core/shared';
3
3
  import * as i0 from "@angular/core";
4
4
  export declare class LineClampTargetDirective implements OnChanges, AfterViewInit {
@@ -27,6 +27,7 @@ export declare class LineClampTargetDirective implements OnChanges, AfterViewIni
27
27
  export declare class LineClampDirective implements OnChanges, AfterViewInit, OnDestroy {
28
28
  private readonly _elementRef;
29
29
  private readonly _renderer;
30
+ private readonly _cdRef;
30
31
  /**
31
32
  * Count lines for clamping
32
33
  */
@@ -49,12 +50,13 @@ export declare class LineClampDirective implements OnChanges, AfterViewInit, OnD
49
50
  /** @hidden */
50
51
  private _lineCount;
51
52
  /** @hidden */
52
- constructor(_elementRef: ElementRef, _renderer: Renderer2);
53
53
  /**
54
54
  * Root native element of clamping box
55
55
  */
56
56
  get rootElement(): HTMLElement;
57
57
  /** @hidden */
58
+ constructor(_elementRef: ElementRef, _renderer: Renderer2, _cdRef: ChangeDetectorRef);
59
+ /** @hidden */
58
60
  ngAfterViewInit(): void;
59
61
  /** @hidden */
60
62
  ngOnDestroy(): void;