@fundamental-ngx/platform 0.61.4 → 0.61.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.
- package/fesm2022/fundamental-ngx-platform-approval-flow.mjs +1 -1
- package/fesm2022/fundamental-ngx-platform-approval-flow.mjs.map +1 -1
- package/fesm2022/fundamental-ngx-platform-form.mjs +3 -3
- package/fesm2022/fundamental-ngx-platform-form.mjs.map +1 -1
- package/fesm2022/fundamental-ngx-platform-icon-tab-bar.mjs +9 -13
- package/fesm2022/fundamental-ngx-platform-icon-tab-bar.mjs.map +1 -1
- package/package.json +4 -4
- package/schematics/ng-add/index.js +1 -1
- package/types/fundamental-ngx-platform-icon-tab-bar.d.ts +4 -8
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fundamental-ngx/platform",
|
|
3
|
-
"version": "0.61.
|
|
3
|
+
"version": "0.61.5",
|
|
4
4
|
"schematics": "./schematics/collection.json",
|
|
5
5
|
"description": "Fundamental Library for Angular - platform",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -13,9 +13,9 @@
|
|
|
13
13
|
"node": ">= 10"
|
|
14
14
|
},
|
|
15
15
|
"peerDependencies": {
|
|
16
|
-
"@fundamental-ngx/cdk": "0.61.
|
|
17
|
-
"@fundamental-ngx/core": "0.61.
|
|
18
|
-
"@fundamental-ngx/i18n": "0.61.
|
|
16
|
+
"@fundamental-ngx/cdk": "0.61.5",
|
|
17
|
+
"@fundamental-ngx/core": "0.61.5",
|
|
18
|
+
"@fundamental-ngx/i18n": "0.61.5"
|
|
19
19
|
},
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"fast-equals": "^6.0.0",
|
|
@@ -31,7 +31,7 @@ function callCoreSchematic(options) {
|
|
|
31
31
|
(0, dependencies_1.addPackageJsonDependency)(tree, {
|
|
32
32
|
type: dependencies_1.NodeDependencyType.Default,
|
|
33
33
|
// Will be replaced with the real version during sync-version script run
|
|
34
|
-
version: `0.61.
|
|
34
|
+
version: `0.61.5`,
|
|
35
35
|
name: '@fundamental-ngx/core'
|
|
36
36
|
});
|
|
37
37
|
const installTaskId = context.addTask(new tasks_1.NodePackageInstallTask({
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import * as _fundamental_ngx_platform_icon_tab_bar from '@fundamental-ngx/platform/icon-tab-bar';
|
|
2
2
|
import * as _angular_core from '@angular/core';
|
|
3
|
-
import { TemplateRef, Signal, InputSignal, InputSignalWithTransform, OnChanges, ChangeDetectorRef, QueryList, ElementRef, EventEmitter, SimpleChanges, OnInit, AfterViewInit, OnDestroy
|
|
3
|
+
import { TemplateRef, Signal, InputSignal, InputSignalWithTransform, OnChanges, ChangeDetectorRef, QueryList, ElementRef, EventEmitter, SimpleChanges, OnInit, AfterViewInit, OnDestroy } from '@angular/core';
|
|
4
4
|
import * as _fundamental_ngx_cdk_utils from '@fundamental-ngx/cdk/utils';
|
|
5
5
|
import { NullableObject, FdkAsyncProperty, Nullable, OverflowListDirective, HasElementRef, ContentDensityService } from '@fundamental-ngx/cdk/utils';
|
|
6
6
|
import { Point, DragRef, DragDrop } from '@angular/cdk/drag-drop';
|
|
@@ -286,17 +286,13 @@ declare abstract class IconTabBarBase implements OnInit, OnChanges, AfterViewIni
|
|
|
286
286
|
readonly _inDynamicPage: boolean;
|
|
287
287
|
/** @hidden */
|
|
288
288
|
protected readonly _cd: ChangeDetectorRef;
|
|
289
|
-
/** @
|
|
290
|
-
protected
|
|
289
|
+
/** @hidden */
|
|
290
|
+
protected _destroyed: boolean;
|
|
291
291
|
/** @hidden */
|
|
292
292
|
private _tabs;
|
|
293
293
|
/** @hidden */
|
|
294
294
|
private _densityMode;
|
|
295
295
|
/** @hidden */
|
|
296
|
-
private _destroyRef;
|
|
297
|
-
/** @hidden */
|
|
298
|
-
private _destroyed;
|
|
299
|
-
/** @hidden */
|
|
300
296
|
ngOnChanges(changes: SimpleChanges): void;
|
|
301
297
|
/** @hidden */
|
|
302
298
|
ngOnInit(): void;
|
|
@@ -538,7 +534,7 @@ declare class IconTabBarProcessTypeComponent extends ClosableIconTabBar {
|
|
|
538
534
|
* @param selectedItem
|
|
539
535
|
* @description select extra item inside popover
|
|
540
536
|
*/
|
|
541
|
-
_selectExtraItem(selectedItem: IconTabBarItem):
|
|
537
|
+
_selectExtraItem(selectedItem: IconTabBarItem): void;
|
|
542
538
|
/**
|
|
543
539
|
* @hidden
|
|
544
540
|
* @param extraItems
|