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 {
5252 * @type boolean
5353 */
5454 striped ?: boolean | string ;
55- attributes ?: { [ key : string ] : any } ;
55+
56+ attributes ?: Partial < HTMLTableElement > ;
5657}
5758
5859export interface ITableElementProps {
@@ -66,7 +67,9 @@ export interface ITableElementProps {
6667 * @type Colors
6768 */
6869 color ?: Colors ;
69- _attributes ?: { [ key : string ] : any } ;
70+
71+ /** @deprecated */
72+ _attributes ?: Partial < HTMLTableElement > ;
7073}
7174
7275export interface ITableRowCellProps extends ITableElementProps {
@@ -75,4 +78,7 @@ export interface ITableRowCellProps extends ITableElementProps {
7578 @type boolean
7679 */
7780 active ?: boolean ;
81+
82+ /** @deprecated */
83+ _attributes ?: Partial < HTMLTableCellElement > | Partial < HTMLTableRowElement > ;
7884}
You can’t perform that action at this time.
0 commit comments