@alauda/ui 6.1.1-beta → 6.1.1-beta.3

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": "@alauda/ui",
3
- "version": "6.1.1-beta",
3
+ "version": "6.1.1-beta.3",
4
4
  "description": "Angular UI components by Alauda Frontend Team.",
5
5
  "repository": "git+https://github.com/alauda/alauda-ui.git",
6
6
  "author": "Alauda Frontend",
@@ -1,8 +1,10 @@
1
1
  import { CdkRow } from '@angular/cdk/table';
2
- import { TableExpandPanelCellComponent } from './table-cell.component';
2
+ import { AfterContentInit, ElementRef } from '@angular/core';
3
3
  /** Data row template container that contains the cell outlet. Adds the right class and role. */
4
- export declare class TableRowComponent extends CdkRow {
4
+ export declare class TableRowComponent extends CdkRow implements AfterContentInit {
5
+ private readonly elRef;
5
6
  disabled: boolean;
6
7
  hasPanel: boolean;
7
- set panel(panel: TableExpandPanelCellComponent);
8
+ constructor(elRef: ElementRef<HTMLElement>);
9
+ ngAfterContentInit(): void;
8
10
  }
package/theme/_var.scss CHANGED
@@ -35,7 +35,7 @@ $text-button-mini-height: 16px;
35
35
  $text-button-mini-font-size: 12px;
36
36
 
37
37
  // Table
38
- $table-padding: 11px;
38
+ $table-padding: 12px;
39
39
  $table-row-min-height: 58px;
40
40
  $table-cell-padding-v: 15px;
41
41
  $table-cell-padding-h: 10px;