@fundamental-ngx/core 0.58.3 → 0.58.5
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.
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as i0 from '@angular/core';
|
|
2
|
-
import { ElementRef, EventEmitter, ChangeDetectorRef, DestroyRef, AfterViewInit, OnInit, TemplateRef,
|
|
2
|
+
import { ElementRef, EventEmitter, ChangeDetectorRef, DestroyRef, Injector, AfterViewInit, OnInit, TemplateRef, ViewContainerRef, InjectionToken } from '@angular/core';
|
|
3
3
|
import * as i2 from '@fundamental-ngx/cdk/data-source';
|
|
4
4
|
import { BaseDataSource, AbstractDataProvider, MatchingStrategy, DataProvider, DataSourceDirective, DataSourceParser } from '@fundamental-ngx/cdk/data-source';
|
|
5
5
|
import * as i1 from '@fundamental-ngx/cdk/forms';
|
|
@@ -119,6 +119,8 @@ declare abstract class BaseMultiCombobox<T = any> {
|
|
|
119
119
|
/** @Hidden */
|
|
120
120
|
protected readonly _destroyRef: DestroyRef;
|
|
121
121
|
/** @hidden */
|
|
122
|
+
protected readonly _injector: Injector;
|
|
123
|
+
/** @hidden */
|
|
122
124
|
protected _dataSource: FdMultiComboboxAcceptableDataSource<T>;
|
|
123
125
|
/** @hidden */
|
|
124
126
|
protected _inputTextValue: string;
|
|
@@ -146,6 +148,8 @@ declare abstract class BaseMultiCombobox<T = any> {
|
|
|
146
148
|
/** @hidden */
|
|
147
149
|
private _dataSourceChanged;
|
|
148
150
|
/** @hidden */
|
|
151
|
+
private readonly popover;
|
|
152
|
+
/** @hidden */
|
|
149
153
|
writeValue(value: T[]): void;
|
|
150
154
|
/**
|
|
151
155
|
* Used to change the value of a control.
|
|
@@ -227,7 +231,7 @@ declare abstract class BaseMultiCombobox<T = any> {
|
|
|
227
231
|
declare const FD_MAP_LIMIT: InjectionToken<number>;
|
|
228
232
|
declare class MultiComboboxComponent<T = any> extends BaseMultiCombobox<T> implements AfterViewInit, OnInit {
|
|
229
233
|
private readonly _elementRef;
|
|
230
|
-
|
|
234
|
+
protected readonly _injector: Injector;
|
|
231
235
|
private readonly _viewContainerRef;
|
|
232
236
|
private readonly _dynamicComponentService;
|
|
233
237
|
private readonly _focusTrapService;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fundamental-ngx/core",
|
|
3
|
-
"version": "0.58.
|
|
3
|
+
"version": "0.58.5",
|
|
4
4
|
"schematics": "./schematics/collection.json",
|
|
5
5
|
"ng-update": {
|
|
6
6
|
"migrations": "./schematics/migrations.json"
|
|
@@ -23,8 +23,8 @@
|
|
|
23
23
|
"@angular/forms": "^20.0.0",
|
|
24
24
|
"@angular/platform-browser": "^20.0.0",
|
|
25
25
|
"@angular/router": "^20.0.0",
|
|
26
|
-
"@fundamental-ngx/cdk": "0.58.
|
|
27
|
-
"@fundamental-ngx/i18n": "0.58.
|
|
26
|
+
"@fundamental-ngx/cdk": "0.58.5",
|
|
27
|
+
"@fundamental-ngx/i18n": "0.58.5",
|
|
28
28
|
"@sap-theming/theming-base-content": "^11.31.0",
|
|
29
29
|
"fundamental-styles": "0.40.1",
|
|
30
30
|
"rxjs": "^7.8.0"
|
|
@@ -47,10 +47,6 @@
|
|
|
47
47
|
"types": "./index.d.ts",
|
|
48
48
|
"default": "./fesm2022/fundamental-ngx-core.mjs"
|
|
49
49
|
},
|
|
50
|
-
"./action-sheet": {
|
|
51
|
-
"types": "./action-sheet/index.d.ts",
|
|
52
|
-
"default": "./fesm2022/fundamental-ngx-core-action-sheet.mjs"
|
|
53
|
-
},
|
|
54
50
|
"./action-bar": {
|
|
55
51
|
"types": "./action-bar/index.d.ts",
|
|
56
52
|
"default": "./fesm2022/fundamental-ngx-core-action-bar.mjs"
|
|
@@ -59,6 +55,10 @@
|
|
|
59
55
|
"types": "./avatar/index.d.ts",
|
|
60
56
|
"default": "./fesm2022/fundamental-ngx-core-avatar.mjs"
|
|
61
57
|
},
|
|
58
|
+
"./action-sheet": {
|
|
59
|
+
"types": "./action-sheet/index.d.ts",
|
|
60
|
+
"default": "./fesm2022/fundamental-ngx-core-action-sheet.mjs"
|
|
61
|
+
},
|
|
62
62
|
"./avatar-group": {
|
|
63
63
|
"types": "./avatar-group/index.d.ts",
|
|
64
64
|
"default": "./fesm2022/fundamental-ngx-core-avatar-group.mjs"
|