@fundamental-ngx/platform 0.57.10 → 0.57.11
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/icon-tab-bar/index.d.ts
CHANGED
|
@@ -214,6 +214,8 @@ declare class TextTypePopoverComponent extends IconTabBarPopoverBase implements
|
|
|
214
214
|
/** @hidden */
|
|
215
215
|
_popoverTriggers: TriggerConfig[];
|
|
216
216
|
/** @hidden */
|
|
217
|
+
protected readonly _moreLabel: _angular_core.Signal<string>;
|
|
218
|
+
/** @hidden */
|
|
217
219
|
ngOnChanges(changes: SimpleChanges): void;
|
|
218
220
|
/**
|
|
219
221
|
* @hidden
|
|
@@ -459,9 +461,11 @@ declare class IconTabBarPopoverComponent extends IconTabBarPopoverBase {
|
|
|
459
461
|
/**
|
|
460
462
|
* @description Label for button
|
|
461
463
|
*/
|
|
462
|
-
label: string
|
|
464
|
+
label: string | Signal<string>;
|
|
463
465
|
/** Whether to display labels for tab items */
|
|
464
466
|
showItemLabel: boolean;
|
|
467
|
+
/** @hidden */
|
|
468
|
+
protected get _labelText(): string;
|
|
465
469
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<IconTabBarPopoverComponent, never>;
|
|
466
470
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<IconTabBarPopoverComponent, "fdp-icon-tab-bar-popover", never, { "leftSide": { "alias": "leftSide"; "required": false; }; "label": { "alias": "label"; "required": false; }; "showItemLabel": { "alias": "showItemLabel"; "required": false; }; }, {}, never, never, true, never>;
|
|
467
471
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fundamental-ngx/platform",
|
|
3
|
-
"version": "0.57.
|
|
3
|
+
"version": "0.57.11",
|
|
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.57.
|
|
17
|
-
"@fundamental-ngx/core": "0.57.
|
|
18
|
-
"@fundamental-ngx/i18n": "0.57.
|
|
16
|
+
"@fundamental-ngx/cdk": "0.57.11",
|
|
17
|
+
"@fundamental-ngx/core": "0.57.11",
|
|
18
|
+
"@fundamental-ngx/i18n": "0.57.11"
|
|
19
19
|
},
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"fast-deep-equal": "3.1.3",
|
|
@@ -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.57.
|
|
34
|
+
version: `0.57.11`,
|
|
35
35
|
name: '@fundamental-ngx/core'
|
|
36
36
|
});
|
|
37
37
|
const installTaskId = context.addTask(new tasks_1.NodePackageInstallTask({
|