@alauda/ui 6.5.2 → 6.5.3-beta

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.5.2",
3
+ "version": "6.5.3-beta",
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",
package/table/index.d.ts CHANGED
@@ -1,3 +1,8 @@
1
+ export * from './new/table.component';
2
+ export * from './new/table-cell.directive';
3
+ export * from './new/table-header-cell.directive';
4
+ export * from './new/table-header-row.component';
5
+ export * from './new/table-row.component';
1
6
  export * from './table.component';
2
7
  export * from './table.module';
3
8
  export * from './table-cell.component';
@@ -0,0 +1,10 @@
1
+ import { CdkCell, CdkColumnDef } from '@angular/cdk/table';
2
+ import { ElementRef } from '@angular/core';
3
+ import * as i0 from "@angular/core";
4
+ /** Cell template container that adds the right classes and role. */
5
+ export declare class NewTableCellDirective extends CdkCell {
6
+ direction: 'row' | 'column';
7
+ constructor(columnDef: CdkColumnDef, elementRef: ElementRef<HTMLElement>);
8
+ static ɵfac: i0.ɵɵFactoryDeclaration<NewTableCellDirective, never>;
9
+ static ɵdir: i0.ɵɵDirectiveDeclaration<NewTableCellDirective, "[auiTableCell]", never, { "direction": "direction"; }, {}, never>;
10
+ }
@@ -0,0 +1,9 @@
1
+ import { CdkColumnDef, CdkHeaderCell } from '@angular/cdk/table';
2
+ import { ElementRef } from '@angular/core';
3
+ import * as i0 from "@angular/core";
4
+ /** Header cell template container that adds the right classes and role. */
5
+ export declare class NewTableHeaderCellDirective extends CdkHeaderCell {
6
+ constructor(columnDef: CdkColumnDef, elementRef: ElementRef<HTMLElement>);
7
+ static ɵfac: i0.ɵɵFactoryDeclaration<NewTableHeaderCellDirective, never>;
8
+ static ɵdir: i0.ɵɵDirectiveDeclaration<NewTableHeaderCellDirective, "[auiTableHeaderCell]", never, {}, {}, never>;
9
+ }
@@ -0,0 +1,7 @@
1
+ import { CdkHeaderRow } from '@angular/cdk/table';
2
+ import * as i0 from "@angular/core";
3
+ /** Header template container that contains the cell outlet. Adds the right class and role. */
4
+ export declare class NewTableHeaderRowComponent extends CdkHeaderRow {
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<NewTableHeaderRowComponent, never>;
6
+ static ɵcmp: i0.ɵɵComponentDeclaration<NewTableHeaderRowComponent, "tr[auiTableHeaderRow]", ["auiTableHeaderRow"], {}, {}, never, never>;
7
+ }
@@ -0,0 +1,13 @@
1
+ import { CdkRow } from '@angular/cdk/table';
2
+ import { AfterContentInit, ElementRef } from '@angular/core';
3
+ import * as i0 from "@angular/core";
4
+ /** Data row template container that contains the cell outlet. Adds the right class and role. */
5
+ export declare class NewTableRowComponent extends CdkRow implements AfterContentInit {
6
+ private readonly elRef;
7
+ disabled: boolean;
8
+ hasPanel: boolean;
9
+ constructor(elRef: ElementRef<HTMLElement>);
10
+ ngAfterContentInit(): void;
11
+ static ɵfac: i0.ɵɵFactoryDeclaration<NewTableRowComponent, never>;
12
+ static ɵcmp: i0.ɵɵComponentDeclaration<NewTableRowComponent, "tr[auiTableRow]", ["auiTableRow"], { "disabled": "disabled"; }, {}, never, never>;
13
+ }
@@ -0,0 +1,17 @@
1
+ import { CdkTable } from '@angular/cdk/table';
2
+ import { AfterContentInit, OnDestroy } from '@angular/core';
3
+ import { TablePlaceholderDefDirective, TablePlaceholderOutletDirective } from '../table-placeholder.directive';
4
+ import * as i0 from "@angular/core";
5
+ export declare class NewTableComponent<T> extends CdkTable<T> implements AfterContentInit, OnDestroy {
6
+ enableScrollWrapper: boolean;
7
+ _placeholderOutlet: TablePlaceholderOutletDirective;
8
+ _placeholderDef: TablePlaceholderDefDirective;
9
+ protected get stickyCssClass(): string;
10
+ protected set stickyCssClass(_: string);
11
+ ngAfterContentInit(): void;
12
+ private _createPlaceholder;
13
+ private _clearPlaceholder;
14
+ ngOnDestroy(): void;
15
+ static ɵfac: i0.ɵɵFactoryDeclaration<NewTableComponent<any>, never>;
16
+ static ɵcmp: i0.ɵɵComponentDeclaration<NewTableComponent<any>, "table[auiTable]", ["auiTable"], { "enableScrollWrapper": "enableScrollWrapper"; }, {}, ["_placeholderDef"], ["caption", "colgroup, col"]>;
17
+ }
@@ -3,20 +3,25 @@ import * as i1 from "./table.component";
3
3
  import * as i2 from "./table-row.component";
4
4
  import * as i3 from "./table-header-row.component";
5
5
  import * as i4 from "./table-cell.component";
6
- import * as i5 from "./table-cell.directive";
7
- import * as i6 from "./table-cell-def.directive";
8
- import * as i7 from "./table-header-cell.directive";
9
- import * as i8 from "./table-row-def.directive";
10
- import * as i9 from "./table-header-row-def.directive";
11
- import * as i10 from "./table-header-cell-def.directive";
12
- import * as i11 from "./table-column-def.directive";
13
- import * as i12 from "./table-scroll.directive";
14
- import * as i13 from "./table-placeholder.directive";
15
- import * as i14 from "@angular/common";
16
- import * as i15 from "../icon/icon.module";
17
- import * as i16 from "@angular/cdk/table";
6
+ import * as i5 from "./new/table.component";
7
+ import * as i6 from "./new/table-header-row.component";
8
+ import * as i7 from "./new/table-row.component";
9
+ import * as i8 from "./table-cell.directive";
10
+ import * as i9 from "./table-cell-def.directive";
11
+ import * as i10 from "./table-header-cell.directive";
12
+ import * as i11 from "./table-row-def.directive";
13
+ import * as i12 from "./table-header-row-def.directive";
14
+ import * as i13 from "./table-header-cell-def.directive";
15
+ import * as i14 from "./table-column-def.directive";
16
+ import * as i15 from "./table-scroll.directive";
17
+ import * as i16 from "./table-placeholder.directive";
18
+ import * as i17 from "./new/table-cell.directive";
19
+ import * as i18 from "./new/table-header-cell.directive";
20
+ import * as i19 from "@angular/common";
21
+ import * as i20 from "../icon/icon.module";
22
+ import * as i21 from "@angular/cdk/table";
18
23
  export declare class TableModule {
19
24
  static ɵfac: i0.ɵɵFactoryDeclaration<TableModule, never>;
20
- static ɵmod: i0.ɵɵNgModuleDeclaration<TableModule, [typeof i1.TableComponent, typeof i2.TableRowComponent, typeof i3.TableHeaderRowComponent, typeof i4.TableExpandButtonCellComponent, typeof i4.TableExpandPanelCellComponent, typeof i5.TableCellDirective, typeof i6.TableCellDefDirective, typeof i7.TableHeaderCellDirective, typeof i8.TableRowDefDirective, typeof i9.TableHeaderRowDefDirective, typeof i10.TableHeaderCellDefDirective, typeof i11.TableColumnDefDirective, typeof i12.TableScrollableDirective, typeof i13.TablePlaceholderOutletDirective, typeof i13.TablePlaceholderDefDirective, typeof i12.TableScrollWrapperDirective], [typeof i14.CommonModule, typeof i15.IconModule, typeof i16.CdkTableModule], [typeof i1.TableComponent, typeof i2.TableRowComponent, typeof i3.TableHeaderRowComponent, typeof i4.TableExpandButtonCellComponent, typeof i4.TableExpandPanelCellComponent, typeof i5.TableCellDirective, typeof i6.TableCellDefDirective, typeof i7.TableHeaderCellDirective, typeof i8.TableRowDefDirective, typeof i9.TableHeaderRowDefDirective, typeof i10.TableHeaderCellDefDirective, typeof i11.TableColumnDefDirective, typeof i12.TableScrollableDirective, typeof i13.TablePlaceholderOutletDirective, typeof i13.TablePlaceholderDefDirective, typeof i12.TableScrollWrapperDirective]>;
25
+ static ɵmod: i0.ɵɵNgModuleDeclaration<TableModule, [typeof i1.TableComponent, typeof i2.TableRowComponent, typeof i3.TableHeaderRowComponent, typeof i4.TableExpandButtonCellComponent, typeof i4.TableExpandPanelCellComponent, typeof i5.NewTableComponent, typeof i6.NewTableHeaderRowComponent, typeof i7.NewTableRowComponent, typeof i8.TableCellDirective, typeof i9.TableCellDefDirective, typeof i10.TableHeaderCellDirective, typeof i11.TableRowDefDirective, typeof i12.TableHeaderRowDefDirective, typeof i13.TableHeaderCellDefDirective, typeof i14.TableColumnDefDirective, typeof i15.TableScrollableDirective, typeof i16.TablePlaceholderOutletDirective, typeof i16.TablePlaceholderDefDirective, typeof i15.TableScrollWrapperDirective, typeof i17.NewTableCellDirective, typeof i18.NewTableHeaderCellDirective], [typeof i19.CommonModule, typeof i20.IconModule, typeof i21.CdkTableModule], [typeof i1.TableComponent, typeof i2.TableRowComponent, typeof i3.TableHeaderRowComponent, typeof i4.TableExpandButtonCellComponent, typeof i4.TableExpandPanelCellComponent, typeof i5.NewTableComponent, typeof i6.NewTableHeaderRowComponent, typeof i7.NewTableRowComponent, typeof i8.TableCellDirective, typeof i9.TableCellDefDirective, typeof i10.TableHeaderCellDirective, typeof i11.TableRowDefDirective, typeof i12.TableHeaderRowDefDirective, typeof i13.TableHeaderCellDefDirective, typeof i14.TableColumnDefDirective, typeof i15.TableScrollableDirective, typeof i16.TablePlaceholderOutletDirective, typeof i16.TablePlaceholderDefDirective, typeof i15.TableScrollWrapperDirective, typeof i17.NewTableCellDirective, typeof i18.NewTableHeaderCellDirective]>;
21
26
  static ɵinj: i0.ɵɵInjectorDeclaration<TableModule>;
22
27
  }