@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/esm2020/pagination/pagination.component.mjs +1 -1
- package/esm2020/select/select.component.mjs +4 -2
- package/esm2020/utils/directives/line-clamp/line-clamp.directive.mjs +15 -12
- package/fesm2015/fundamental-ngx-core-pagination.mjs +1 -1
- package/fesm2015/fundamental-ngx-core-pagination.mjs.map +1 -1
- package/fesm2015/fundamental-ngx-core-select.mjs +3 -1
- package/fesm2015/fundamental-ngx-core-select.mjs.map +1 -1
- package/fesm2015/fundamental-ngx-core-utils.mjs +13 -10
- package/fesm2015/fundamental-ngx-core-utils.mjs.map +1 -1
- package/fesm2020/fundamental-ngx-core-pagination.mjs +1 -1
- package/fesm2020/fundamental-ngx-core-pagination.mjs.map +1 -1
- package/fesm2020/fundamental-ngx-core-select.mjs +3 -1
- package/fesm2020/fundamental-ngx-core-select.mjs.map +1 -1
- package/fesm2020/fundamental-ngx-core-utils.mjs +13 -10
- package/fesm2020/fundamental-ngx-core-utils.mjs.map +1 -1
- package/fundamental-ngx-core-v0.36.3-rc.4.tgz +0 -0
- package/package.json +2 -2
- package/select/select.component.d.ts +1 -1
- package/utils/directives/line-clamp/line-clamp.directive.d.ts +4 -2
- package/fundamental-ngx-core-v0.36.3-rc.2.tgz +0 -0
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fundamental-ngx/core",
|
|
3
|
-
"version": "0.36.3-rc.
|
|
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.
|
|
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;
|
|
Binary file
|