File tree Expand file tree Collapse file tree 1 file changed +8
-2
lines changed
projects/coreui-angular/src/lib/table Expand file tree Collapse file tree 1 file changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -52,7 +52,8 @@ export interface ITable {
52
52
* @type boolean
53
53
*/
54
54
striped ?: boolean | string ;
55
- attributes ?: { [ key : string ] : any } ;
55
+
56
+ attributes ?: Partial < HTMLTableElement > ;
56
57
}
57
58
58
59
export interface ITableElementProps {
@@ -66,7 +67,9 @@ export interface ITableElementProps {
66
67
* @type Colors
67
68
*/
68
69
color ?: Colors ;
69
- _attributes ?: { [ key : string ] : any } ;
70
+
71
+ /** @deprecated */
72
+ _attributes ?: Partial < HTMLTableElement > ;
70
73
}
71
74
72
75
export interface ITableRowCellProps extends ITableElementProps {
@@ -75,4 +78,7 @@ export interface ITableRowCellProps extends ITableElementProps {
75
78
@type boolean
76
79
*/
77
80
active ?: boolean ;
81
+
82
+ /** @deprecated */
83
+ _attributes ?: Partial < HTMLTableCellElement > | Partial < HTMLTableRowElement > ;
78
84
}
You can’t perform that action at this time.
0 commit comments