@fundamental-ngx/platform 0.57.11 → 0.57.12

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,6 +1,6 @@
1
1
  {
2
2
  "name": "@fundamental-ngx/platform",
3
- "version": "0.57.11",
3
+ "version": "0.57.12",
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.11",
17
- "@fundamental-ngx/core": "0.57.11",
18
- "@fundamental-ngx/i18n": "0.57.11"
16
+ "@fundamental-ngx/cdk": "0.57.12",
17
+ "@fundamental-ngx/core": "0.57.12",
18
+ "@fundamental-ngx/i18n": "0.57.12"
19
19
  },
20
20
  "dependencies": {
21
21
  "fast-deep-equal": "3.1.3",
@@ -33,14 +33,14 @@
33
33
  "types": "./index.d.ts",
34
34
  "default": "./fesm2022/fundamental-ngx-platform.mjs"
35
35
  },
36
- "./button": {
37
- "types": "./button/index.d.ts",
38
- "default": "./fesm2022/fundamental-ngx-platform-button.mjs"
39
- },
40
36
  "./approval-flow": {
41
37
  "types": "./approval-flow/index.d.ts",
42
38
  "default": "./fesm2022/fundamental-ngx-platform-approval-flow.mjs"
43
39
  },
40
+ "./button": {
41
+ "types": "./button/index.d.ts",
42
+ "default": "./fesm2022/fundamental-ngx-platform-button.mjs"
43
+ },
44
44
  "./dynamic-page": {
45
45
  "types": "./dynamic-page/index.d.ts",
46
46
  "default": "./fesm2022/fundamental-ngx-platform-dynamic-page.mjs"
@@ -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.11`,
34
+ version: `0.57.12`,
35
35
  name: '@fundamental-ngx/core'
36
36
  });
37
37
  const installTaskId = context.addTask(new tasks_1.NodePackageInstallTask({
package/table/index.d.ts CHANGED
@@ -2321,8 +2321,6 @@ declare class TableGroupRowComponent<T> extends TableRowDirective implements OnC
2321
2321
  row: TableRow<T>;
2322
2322
  /** Key to column mapping. */
2323
2323
  keyToColumnMap: Map<string, TableColumn>;
2324
- /** Table columns length. */
2325
- tableColumnsLength: number;
2326
2324
  /** Event emitted when group row expansion state needs to be toggled. */
2327
2325
  toggleGroupRow: EventEmitter<TableRow<T>>;
2328
2326
  /** @hidden */
@@ -2334,7 +2332,7 @@ declare class TableGroupRowComponent<T> extends TableRowDirective implements OnC
2334
2332
  /** @hidden */
2335
2333
  ngOnChanges(changes: SimpleChanges): void;
2336
2334
  static ɵfac: i0.ɵɵFactoryDeclaration<TableGroupRowComponent<any>, never>;
2337
- static ɵcmp: i0.ɵɵComponentDeclaration<TableGroupRowComponent<any>, "[fdp-table-group-row]", never, { "rowId": { "alias": "rowId"; "required": false; }; "index": { "alias": "index"; "required": false; }; "height": { "alias": "height"; "required": false; }; "draggable": { "alias": "draggable"; "required": false; }; "row": { "alias": "row"; "required": false; }; "keyToColumnMap": { "alias": "keyToColumnMap"; "required": false; }; "tableColumnsLength": { "alias": "tableColumnsLength"; "required": false; }; }, { "toggleGroupRow": "toggleGroupRow"; }, never, never, true, never>;
2335
+ static ɵcmp: i0.ɵɵComponentDeclaration<TableGroupRowComponent<any>, "[fdp-table-group-row]", never, { "rowId": { "alias": "rowId"; "required": false; }; "index": { "alias": "index"; "required": false; }; "height": { "alias": "height"; "required": false; }; "draggable": { "alias": "draggable"; "required": false; }; "row": { "alias": "row"; "required": false; }; "keyToColumnMap": { "alias": "keyToColumnMap"; "required": false; }; }, { "toggleGroupRow": "toggleGroupRow"; }, never, never, true, never>;
2338
2336
  }
2339
2337
 
2340
2338
  declare class TablePoppingRowComponent<T> extends TableRowDirective {