@alauda/ui 6.0.4-beta.13 → 6.0.4-beta.17

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.0.4-beta.13",
3
+ "version": "6.0.4-beta.17",
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,9 +1,12 @@
1
1
  import { CdkCell } from '@angular/cdk/table';
2
2
  import { EventEmitter } from '@angular/core';
3
- export declare class TableCellComponent extends CdkCell {
3
+ export declare class TableExpandButtonCellComponent extends CdkCell {
4
4
  expand: boolean;
5
5
  disabled: boolean;
6
- template: boolean;
7
6
  expandChange: EventEmitter<any>;
8
7
  get expanded(): string;
9
8
  }
9
+ export declare class TableExpandPanelCellComponent extends CdkCell {
10
+ expand: boolean;
11
+ get expanded(): string;
12
+ }