@fundamental-ngx/btp 0.58.0-rc.8 → 0.58.0-rc.80

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,11 +1,21 @@
1
1
  {
2
2
  "name": "@fundamental-ngx/btp",
3
- "version": "0.58.0-rc.8",
3
+ "version": "0.58.0-rc.80",
4
+ "description": "Fundamental Library for Angular - BTP",
5
+ "license": "Apache-2.0",
6
+ "homepage": "https://sap.github.io/fundamental-ngx",
7
+ "repository": {
8
+ "type": "git",
9
+ "url": "git+https://github.com/SAP/fundamental-ngx.git"
10
+ },
11
+ "engine": {
12
+ "node": ">= 10"
13
+ },
4
14
  "peerDependencies": {
5
15
  "@angular/common": "^20.0.0",
6
16
  "@angular/core": "^20.0.0",
7
- "@fundamental-ngx/cdk": "0.58.0-rc.8",
8
- "@fundamental-ngx/core": "0.58.0-rc.8"
17
+ "@fundamental-ngx/cdk": "0.58.0-rc.80",
18
+ "@fundamental-ngx/core": "0.58.0-rc.80"
9
19
  },
10
20
  "dependencies": {
11
21
  "tslib": "^2.3.0"
@@ -28,14 +38,14 @@
28
38
  "types": "./button/index.d.ts",
29
39
  "default": "./fesm2022/fundamental-ngx-btp-button.mjs"
30
40
  },
31
- "./navigation-menu": {
32
- "types": "./navigation-menu/index.d.ts",
33
- "default": "./fesm2022/fundamental-ngx-btp-navigation-menu.mjs"
34
- },
35
41
  "./navigation": {
36
42
  "types": "./navigation/index.d.ts",
37
43
  "default": "./fesm2022/fundamental-ngx-btp-navigation.mjs"
38
44
  },
45
+ "./navigation-menu": {
46
+ "types": "./navigation-menu/index.d.ts",
47
+ "default": "./fesm2022/fundamental-ngx-btp-navigation-menu.mjs"
48
+ },
39
49
  "./search-field": {
40
50
  "types": "./search-field/index.d.ts",
41
51
  "default": "./fesm2022/fundamental-ngx-btp-search-field.mjs"
@@ -61,6 +61,8 @@ declare class ToolLayoutComponent implements OnChanges, OnInit, CssClassBuilder,
61
61
  * The default (not specified) mode is desktop.
62
62
  */
63
63
  mode: Nullable<FdbViewMode>;
64
+ /** whether to remove the gaps between layout containers */
65
+ noGaps: boolean;
64
66
  /** @hidden */
65
67
  readonly elementRef: ElementRef<HTMLElement>;
66
68
  /** @hidden
@@ -74,7 +76,8 @@ declare class ToolLayoutComponent implements OnChanges, OnInit, CssClassBuilder,
74
76
  /** @hidden */
75
77
  ngOnChanges(): void;
76
78
  static ɵfac: i0.ɵɵFactoryDeclaration<ToolLayoutComponent, never>;
77
- static ɵcmp: i0.ɵɵComponentDeclaration<ToolLayoutComponent, "[fdbToolLayout]", never, { "class": { "alias": "class"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; }, {}, never, ["*"], true, never>;
79
+ static ɵcmp: i0.ɵɵComponentDeclaration<ToolLayoutComponent, "[fdbToolLayout]", never, { "class": { "alias": "class"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; "noGaps": { "alias": "noGaps"; "required": false; }; }, {}, never, ["*"], true, never>;
80
+ static ngAcceptInputType_noGaps: unknown;
78
81
  }
79
82
 
80
83
  declare class ToolLayoutModule {