@brickclay-org/ui 0.0.72 → 0.0.74
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/index.d.ts
CHANGED
|
@@ -652,6 +652,7 @@ declare class BkGrid<T = any> {
|
|
|
652
652
|
columns: TableColumn<T>[];
|
|
653
653
|
result: T[];
|
|
654
654
|
actions: TableAction[];
|
|
655
|
+
customClass: string;
|
|
655
656
|
actionClick: EventEmitter<{
|
|
656
657
|
action: string;
|
|
657
658
|
row: T;
|
|
@@ -676,7 +677,7 @@ declare class BkGrid<T = any> {
|
|
|
676
677
|
getBadge(row: T, column: TableColumn<T>): TableBadge | undefined;
|
|
677
678
|
getIcons(row: T, column: TableColumn<T>): TableIcon[];
|
|
678
679
|
static ɵfac: i0.ɵɵFactoryDeclaration<BkGrid<any>, never>;
|
|
679
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<BkGrid<any>, "bk-grid", never, { "draggable": { "alias": "draggable"; "required": false; }; "columns": { "alias": "columns"; "required": false; }; "result": { "alias": "result"; "required": false; }; "actions": { "alias": "actions"; "required": false; }; }, { "actionClick": "actionClick"; "sortChange": "sortChange"; "dragDropChange": "dragDropChange"; }, never, never, true, never>;
|
|
680
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BkGrid<any>, "bk-grid", never, { "draggable": { "alias": "draggable"; "required": false; }; "columns": { "alias": "columns"; "required": false; }; "result": { "alias": "result"; "required": false; }; "actions": { "alias": "actions"; "required": false; }; "customClass": { "alias": "customClass"; "required": false; }; }, { "actionClick": "actionClick"; "sortChange": "sortChange"; "dragDropChange": "dragDropChange"; }, never, never, true, never>;
|
|
680
681
|
}
|
|
681
682
|
|
|
682
683
|
declare class BkSelect implements ControlValueAccessor {
|