@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/alauda-ui.d.ts +19 -19
- package/alauda-ui.metadata.json +1 -1
- package/bundles/alauda-ui.umd.js +68 -39
- package/bundles/alauda-ui.umd.js.map +1 -1
- package/bundles/alauda-ui.umd.min.js +1 -1
- package/bundles/alauda-ui.umd.min.js.map +1 -1
- package/esm2015/alauda-ui.js +20 -20
- package/esm2015/alauda-ui.ngsummary.json +1 -1
- package/esm2015/table/table-cell.component.js +32 -13
- package/esm2015/table/table-cell.component.ngfactory.js +19 -13
- package/esm2015/table/table-cell.component.ngsummary.json +1 -1
- package/esm2015/table/table.component.js +1 -1
- package/esm2015/table/table.component.scss.ngstyle.js +1 -1
- package/esm2015/table/table.module.js +6 -4
- package/esm2015/table/table.module.ngfactory.js +1 -1
- package/esm2015/table/table.module.ngsummary.json +1 -1
- package/fesm2015/alauda-ui.js +37 -16
- package/fesm2015/alauda-ui.js.map +1 -1
- package/package.json +1 -1
- package/table/table-cell.component.d.ts +5 -2
package/package.json
CHANGED
|
@@ -1,9 +1,12 @@
|
|
|
1
1
|
import { CdkCell } from '@angular/cdk/table';
|
|
2
2
|
import { EventEmitter } from '@angular/core';
|
|
3
|
-
export declare class
|
|
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
|
+
}
|